]>
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) |
aff3eaa0 | 158 | M: Alexander Aring <aar@pengutronix.de> |
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 | ||
67543e50 | 208 | |
91952bc0 AP |
209 | A8293 MEDIA DRIVER |
210 | M: Antti Palosaari <crope@iki.fi> | |
211 | L: linux-media@vger.kernel.org | |
a825eaec | 212 | W: https://linuxtv.org |
91952bc0 AP |
213 | W: http://palosaari.fi/linux/ |
214 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
215 | T: git git://linuxtv.org/anttip/media_tree.git | |
216 | S: Maintained | |
217 | F: drivers/media/dvb-frontends/a8293* | |
218 | ||
e2d1d6c0 | 219 | AACRAID SCSI RAID DRIVER |
2a81ffdd | 220 | M: Adaptec OEM Raid Solutions <aacraid@microsemi.com> |
e2d1d6c0 RD |
221 | L: linux-scsi@vger.kernel.org |
222 | W: http://www.adaptec.com/ | |
1da177e4 | 223 | S: Supported |
679655da JP |
224 | F: Documentation/scsi/aacraid.txt |
225 | F: drivers/scsi/aacraid/ | |
1da177e4 | 226 | |
ea8f8fc8 JT |
227 | ABI/API |
228 | L: linux-api@vger.kernel.org | |
ea8f8fc8 | 229 | F: include/linux/syscalls.h |
ea8f8fc8 JT |
230 | F: kernel/sys_ni.c |
231 | ||
249e3c85 | 232 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 233 | M: Hans de Goede <hdegoede@redhat.com> |
968ce1b1 | 234 | L: linux-hwmon@vger.kernel.org |
f2b84bbc | 235 | S: Maintained |
679655da | 236 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 237 | |
249e3c85 | 238 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 239 | M: Alistair John Strachan <alistair@devzero.co.uk> |
968ce1b1 | 240 | L: linux-hwmon@vger.kernel.org |
249e3c85 | 241 | S: Maintained |
679655da | 242 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 243 | |
1b06d64f WBG |
244 | ACCES 104-DIO-48E GPIO DRIVER |
245 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
246 | L: linux-gpio@vger.kernel.org | |
247 | S: Maintained | |
248 | F: drivers/gpio/gpio-104-dio-48e.c | |
249 | ||
6ddcf9b4 WBG |
250 | ACCES 104-IDI-48 GPIO DRIVER |
251 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
252 | L: linux-gpio@vger.kernel.org | |
253 | S: Maintained | |
254 | F: drivers/gpio/gpio-104-idi-48.c | |
255 | ||
e2558989 WBG |
256 | ACCES 104-IDIO-16 GPIO DRIVER |
257 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
258 | L: linux-gpio@vger.kernel.org | |
259 | S: Maintained | |
260 | F: drivers/gpio/gpio-104-idio-16.c | |
261 | ||
28e5d3bb WBG |
262 | ACCES 104-QUAD-8 IIO DRIVER |
263 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
264 | L: linux-iio@vger.kernel.org | |
265 | S: Maintained | |
266 | F: drivers/iio/counter/104-quad-8.c | |
267 | ||
02e74fc0 WBG |
268 | ACCES PCI-IDIO-16 GPIO DRIVER |
269 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
270 | L: linux-gpio@vger.kernel.org | |
271 | S: Maintained | |
272 | F: drivers/gpio/gpio-pci-idio-16.c | |
273 | ||
1da177e4 | 274 | ACENIC DRIVER |
8b58be88 | 275 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
276 | L: linux-acenic@sunsite.dk |
277 | S: Maintained | |
531c4f89 | 278 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 279 | |
e86435eb | 280 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 281 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 282 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
283 | W: http://piie.net/?section=acerhdf |
284 | S: Maintained | |
285 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 286 | |
745a5d21 | 287 | ACER WMI LAPTOP EXTRAS |
182ae55c | 288 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 289 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 290 | S: Maintained |
679655da | 291 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 292 | |
1da177e4 | 293 | ACPI |
9c3646d1 | 294 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 295 | M: Len Brown <lenb@kernel.org> |
6968e50c | 296 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
297 | W: https://01.org/linux-acpi |
298 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
299 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
68656443 | 300 | B: https://bugzilla.kernel.org |
8b59a454 | 301 | S: Supported |
679655da JP |
302 | F: drivers/acpi/ |
303 | F: drivers/pnp/pnpacpi/ | |
304 | F: include/linux/acpi.h | |
43368e74 | 305 | F: include/acpi/ |
3a75ef0c | 306 | F: Documentation/acpi/ |
89ca78a0 | 307 | F: Documentation/ABI/testing/sysfs-bus-acpi |
0bf54fcd | 308 | F: Documentation/ABI/testing/configfs-acpi |
15fd830d BH |
309 | F: drivers/pci/*acpi* |
310 | F: drivers/pci/*/*acpi* | |
311 | F: drivers/pci/*/*/*acpi* | |
3a75ef0c | 312 | F: tools/power/acpi/ |
8b59a454 | 313 | |
3774929d RW |
314 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
315 | M: Robert Moore <robert.moore@intel.com> | |
316 | M: Lv Zheng <lv.zheng@intel.com> | |
9c3646d1 | 317 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
3774929d RW |
318 | L: linux-acpi@vger.kernel.org |
319 | L: devel@acpica.org | |
320 | W: https://acpica.org/ | |
321 | W: https://github.com/acpica/acpica/ | |
322 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
323 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
68656443 RW |
324 | B: https://bugzilla.kernel.org |
325 | B: https://bugs.acpica.org | |
3774929d RW |
326 | S: Supported |
327 | F: drivers/acpi/acpica/ | |
328 | F: include/acpi/ | |
2754c447 | 329 | F: tools/power/acpi/ |
3774929d | 330 | |
8b59a454 | 331 | ACPI FAN DRIVER |
8b58be88 | 332 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 333 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 334 | W: https://01.org/linux-acpi |
68656443 | 335 | B: https://bugzilla.kernel.org |
8b59a454 | 336 | S: Supported |
679655da | 337 | F: drivers/acpi/fan.c |
1da177e4 | 338 | |
daeb2016 LP |
339 | ACPI FOR ARM64 (ACPI/arm64) |
340 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
341 | M: Hanjun Guo <hanjun.guo@linaro.org> | |
342 | M: Sudeep Holla <sudeep.holla@arm.com> | |
343 | L: linux-acpi@vger.kernel.org | |
344 | S: Maintained | |
345 | F: drivers/acpi/arm64 | |
346 | ||
8b59a454 | 347 | ACPI THERMAL DRIVER |
8b58be88 | 348 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 349 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 350 | W: https://01.org/linux-acpi |
68656443 | 351 | B: https://bugzilla.kernel.org |
8b59a454 | 352 | S: Supported |
679655da | 353 | F: drivers/acpi/*thermal* |
998be20f | 354 | |
359acec8 | 355 | ACPI VIDEO DRIVER |
8b58be88 | 356 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 357 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 358 | W: https://01.org/linux-acpi |
68656443 | 359 | B: https://bugzilla.kernel.org |
8b59a454 | 360 | S: Supported |
86f98a3a | 361 | F: drivers/acpi/acpi_video.c |
998be20f | 362 | |
bff431e4 | 363 | ACPI WMI DRIVER |
d0944853 | 364 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 365 | S: Orphan |
679655da | 366 | F: drivers/platform/x86/wmi.c |
bff431e4 | 367 | |
2f39d519 | 368 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 369 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
370 | W: http://wiki.parisc-linux.org/AD1889 |
371 | L: linux-parisc@vger.kernel.org | |
372 | S: Maintained | |
679655da | 373 | F: sound/pci/ad1889.* |
2f39d519 | 374 | |
527a1a83 MH |
375 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
376 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 377 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 378 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
379 | S: Supported |
380 | F: drivers/misc/ad525x_dpot.c | |
381 | ||
382 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
383 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 384 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 385 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
386 | S: Supported |
387 | F: drivers/regulator/ad5398.c | |
388 | ||
389 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
390 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 391 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 392 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
393 | S: Supported |
394 | F: drivers/input/misc/ad714x.c | |
395 | ||
396 | AD7877 TOUCHSCREEN DRIVER | |
397 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 398 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 399 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
400 | S: Supported |
401 | F: drivers/input/touchscreen/ad7877.c | |
402 | ||
403 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
404 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 405 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 406 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
407 | S: Supported |
408 | F: drivers/input/touchscreen/ad7879.c | |
409 | ||
1330b0dc | 410 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
e5f6450c | 411 | M: Jiri Kosina <jikos@kernel.org> |
1330b0dc JK |
412 | S: Maintained |
413 | ||
7302b9d9 MH |
414 | ADF7242 IEEE 802.15.4 RADIO DRIVER |
415 | M: Michael Hennerich <michael.hennerich@analog.com> | |
416 | W: https://wiki.analog.com/ADF7242 | |
417 | W: http://ez.analog.com/community/linux-device-drivers | |
418 | L: linux-wpan@vger.kernel.org | |
419 | S: Supported | |
420 | F: drivers/net/ieee802154/adf7242.c | |
421 | F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt | |
422 | ||
1da177e4 | 423 | ADM1025 HARDWARE MONITOR DRIVER |
d8130624 | 424 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 425 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 426 | S: Maintained |
679655da JP |
427 | F: Documentation/hwmon/adm1025 |
428 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 429 | |
cae2caae | 430 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 431 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
968ce1b1 | 432 | L: linux-hwmon@vger.kernel.org |
cae2caae | 433 | S: Maintained |
679655da | 434 | F: drivers/hwmon/adm1029.c |
cae2caae | 435 | |
cc0b88cf | 436 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 437 | L: linux-wireless@vger.kernel.org |
491b26b4 | 438 | W: http://wireless.kernel.org/ |
e71bcbd0 | 439 | S: Orphan |
d4a17304 | 440 | F: drivers/net/wireless/admtek/adm8211.* |
cc0b88cf | 441 | |
e8e31622 SA |
442 | ADP1653 FLASH CONTROLLER DRIVER |
443 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
444 | L: linux-media@vger.kernel.org | |
445 | S: Maintained | |
446 | F: drivers/media/i2c/adp1653.c | |
b5dcee22 | 447 | F: include/media/i2c/adp1653.h |
e8e31622 | 448 | |
527a1a83 MH |
449 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
450 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 451 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 452 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
453 | S: Supported |
454 | F: drivers/mfd/adp5520.c | |
455 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 456 | F: drivers/leds/leds-adp5520.c |
77278d50 | 457 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
458 | F: drivers/input/keyboard/adp5520-keys.c |
459 | ||
460 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
461 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 462 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 463 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
464 | S: Supported |
465 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 466 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
467 | |
468 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
469 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 470 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 471 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
472 | S: Supported |
473 | F: drivers/video/backlight/adp8860_bl.c | |
474 | ||
8c22a8f5 DE |
475 | ADS1015 HARDWARE MONITOR DRIVER |
476 | M: Dirk Eibach <eibach@gdsys.de> | |
968ce1b1 | 477 | L: linux-hwmon@vger.kernel.org |
8c22a8f5 DE |
478 | S: Maintained |
479 | F: Documentation/hwmon/ads1015 | |
480 | F: drivers/hwmon/ads1015.c | |
481 | F: include/linux/i2c/ads1015.h | |
482 | ||
1da177e4 | 483 | ADT746X FAN DRIVER |
8b58be88 | 484 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 485 | S: Maintained |
679655da | 486 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 487 | |
b058b859 | 488 | ADT7475 HARDWARE MONITOR DRIVER |
d8130624 | 489 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 490 | L: linux-hwmon@vger.kernel.org |
b058b859 JD |
491 | S: Maintained |
492 | F: Documentation/hwmon/adt7475 | |
493 | F: drivers/hwmon/adt7475.c | |
494 | ||
527a1a83 MH |
495 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
496 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 497 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 498 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
499 | S: Supported |
500 | F: drivers/input/misc/adxl34x.c | |
501 | ||
8c6af9e1 | 502 | ADVANSYS SCSI DRIVER |
8b58be88 | 503 | M: Matthew Wilcox <matthew@wil.cx> |
d8130624 | 504 | M: Hannes Reinecke <hare@suse.com> |
8c6af9e1 MW |
505 | L: linux-scsi@vger.kernel.org |
506 | S: Maintained | |
679655da JP |
507 | F: Documentation/scsi/advansys.txt |
508 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 509 | |
1da177e4 | 510 | AEDSP16 DRIVER |
8b58be88 | 511 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 512 | S: Maintained |
679655da | 513 | F: sound/oss/aedsp16.c |
1da177e4 | 514 | |
91952bc0 AP |
515 | AF9013 MEDIA DRIVER |
516 | M: Antti Palosaari <crope@iki.fi> | |
517 | L: linux-media@vger.kernel.org | |
a825eaec | 518 | W: https://linuxtv.org |
91952bc0 AP |
519 | W: http://palosaari.fi/linux/ |
520 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
521 | T: git git://linuxtv.org/anttip/media_tree.git | |
522 | S: Maintained | |
523 | F: drivers/media/dvb-frontends/af9013* | |
524 | ||
525 | AF9033 MEDIA DRIVER | |
526 | M: Antti Palosaari <crope@iki.fi> | |
527 | L: linux-media@vger.kernel.org | |
a825eaec | 528 | W: https://linuxtv.org |
91952bc0 AP |
529 | W: http://palosaari.fi/linux/ |
530 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
531 | T: git git://linuxtv.org/anttip/media_tree.git | |
532 | S: Maintained | |
533 | F: drivers/media/dvb-frontends/af9033* | |
534 | ||
1da177e4 | 535 | AFFS FILE SYSTEM |
6cf515e1 GU |
536 | L: linux-fsdevel@vger.kernel.org |
537 | S: Orphan | |
679655da JP |
538 | F: Documentation/filesystems/affs.txt |
539 | F: fs/affs/ | |
1da177e4 | 540 | |
e2d1d6c0 | 541 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 542 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
543 | L: linux-afs@lists.infradead.org |
544 | S: Supported | |
679655da JP |
545 | F: fs/afs/ |
546 | F: include/net/af_rxrpc.h | |
547 | F: net/rxrpc/af_rxrpc.c | |
ee84595a | 548 | W: https://www.infradead.org/~dhowells/kafs/ |
e2d1d6c0 | 549 | |
1da177e4 | 550 | AGPGART DRIVER |
8b58be88 | 551 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 552 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 553 | S: Maintained |
679655da JP |
554 | F: drivers/char/agp/ |
555 | F: include/linux/agp* | |
c117ab84 | 556 | F: include/uapi/linux/agp* |
1da177e4 LT |
557 | |
558 | AHA152X SCSI DRIVER | |
8b58be88 | 559 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
560 | L: linux-scsi@vger.kernel.org |
561 | S: Maintained | |
679655da JP |
562 | F: drivers/scsi/aha152x* |
563 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 564 | |
64624d4f | 565 | AIC7XXX / AIC79XX SCSI DRIVER |
d8130624 | 566 | M: Hannes Reinecke <hare@suse.com> |
64624d4f | 567 | L: linux-scsi@vger.kernel.org |
1da177e4 | 568 | S: Maintained |
679655da | 569 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 570 | |
450500ad HV |
571 | AIMSLAB FM RADIO RECEIVER DRIVER |
572 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
573 | L: linux-media@vger.kernel.org | |
574 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 575 | W: https://linuxtv.org |
450500ad HV |
576 | S: Maintained |
577 | F: drivers/media/radio/radio-aimslab* | |
578 | ||
e2d1d6c0 | 579 | AIO |
8b58be88 | 580 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
581 | L: linux-aio@kvack.org |
582 | S: Supported | |
679655da JP |
583 | F: fs/aio.c |
584 | F: include/linux/*aio*.h | |
e2d1d6c0 | 585 | |
469d4ec8 AP |
586 | AIRSPY MEDIA DRIVER |
587 | M: Antti Palosaari <crope@iki.fi> | |
588 | L: linux-media@vger.kernel.org | |
a825eaec | 589 | W: https://linuxtv.org |
469d4ec8 AP |
590 | W: http://palosaari.fi/linux/ |
591 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
592 | T: git git://linuxtv.org/anttip/media_tree.git | |
593 | S: Maintained | |
594 | F: drivers/media/usb/airspy/ | |
595 | ||
b9567027 LS |
596 | ALACRITECH GIGABIT ETHERNET DRIVER |
597 | M: Lino Sanfilippo <LinoSanfilippo@gmx.de> | |
598 | S: Maintained | |
599 | F: drivers/net/ethernet/alacritech/* | |
600 | ||
1da177e4 | 601 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 602 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 603 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
604 | W: http://www.linux-usb.org/SpeedTouch/ |
605 | S: Maintained | |
679655da JP |
606 | F: drivers/usb/atm/speedtch.c |
607 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 608 | |
272f133a | 609 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 610 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 611 | S: Maintained |
679655da | 612 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 613 | |
4a4e5787 | 614 | ALI1563 I2C DRIVER |
8b58be88 | 615 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 616 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 617 | S: Maintained |
679655da JP |
618 | F: Documentation/i2c/busses/i2c-ali1563 |
619 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 620 | |
bc368798 LC |
621 | ALLWINNER SECURITY SYSTEM |
622 | M: Corentin Labbe <clabbe.montjoie@gmail.com> | |
623 | L: linux-crypto@vger.kernel.org | |
624 | S: Maintained | |
625 | F: drivers/crypto/sunxi-ss/ | |
626 | ||
1da177e4 | 627 | ALPHA PORT |
8b58be88 | 628 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 629 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 630 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 631 | S: Odd Fixes |
a9406699 | 632 | L: linux-alpha@vger.kernel.org |
679655da | 633 | F: arch/alpha/ |
1da177e4 | 634 | |
30172936 PR |
635 | ALPS PS/2 TOUCHPAD DRIVER |
636 | R: Pali Rohár <pali.rohar@gmail.com> | |
637 | F: drivers/input/mouse/alps.* | |
638 | ||
f62092f6 LFT |
639 | ALTERA MAILBOX DRIVER |
640 | M: Ley Foon Tan <lftan@altera.com> | |
641 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
642 | S: Maintained | |
643 | F: drivers/mailbox/mailbox-altera.c | |
644 | ||
c5abbba9 THL |
645 | ALTERA PIO DRIVER |
646 | M: Tien Hock Loh <thloh@altera.com> | |
647 | L: linux-gpio@vger.kernel.org | |
648 | S: Maintained | |
649 | F: drivers/gpio/gpio-altera.c | |
650 | ||
8ce064bf | 651 | ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT |
06c177cb | 652 | M: Thor Thayer <thor.thayer@linux.intel.com> |
8ce064bf TT |
653 | S: Maintained |
654 | F: drivers/gpio/gpio-altera-a10sr.c | |
655 | F: drivers/mfd/altera-a10sr.c | |
656 | F: include/linux/mfd/altera-a10sr.h | |
657 | ||
16b8b922 | 658 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
c53fed07 | 659 | M: Vince Bridgers <vbridger@opensource.altera.com> |
16b8b922 VB |
660 | L: netdev@vger.kernel.org |
661 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
662 | S: Maintained | |
663 | F: drivers/net/ethernet/altera/ | |
664 | ||
adf9251f TK |
665 | ALTERA UART/JTAG UART SERIAL DRIVERS |
666 | M: Tobias Klauser <tklauser@distanz.ch> | |
667 | L: linux-serial@vger.kernel.org | |
61bd0943 | 668 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
669 | S: Maintained |
670 | F: drivers/tty/serial/altera_uart.c | |
671 | F: drivers/tty/serial/altera_jtaguart.c | |
672 | F: include/linux/altera_uart.h | |
673 | F: include/linux/altera_jtaguart.h | |
674 | ||
1738cd3e NB |
675 | AMAZON ETHERNET DRIVERS |
676 | M: Netanel Belgazal <netanel@annapurnalabs.com> | |
677 | R: Saeed Bishara <saeed@annapurnalabs.com> | |
678 | R: Zorik Machulsky <zorik@annapurnalabs.com> | |
679 | L: netdev@vger.kernel.org | |
680 | S: Supported | |
681 | F: Documentation/networking/ena.txt | |
682 | F: drivers/net/ethernet/amazon/ | |
683 | ||
f4875e12 TL |
684 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
685 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
29e9330f | 686 | M: Gary Hook <gary.hook@amd.com> |
f4875e12 TL |
687 | L: linux-crypto@vger.kernel.org |
688 | S: Supported | |
689 | F: drivers/crypto/ccp/ | |
690 | F: include/linux/ccp.h | |
691 | ||
512d1027 | 692 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
96818b58 | 693 | M: Huang Rui <ray.huang@amd.com> |
968ce1b1 | 694 | L: linux-hwmon@vger.kernel.org |
96818b58 | 695 | S: Supported |
512d1027 AH |
696 | F: Documentation/hwmon/fam15h_power |
697 | F: drivers/hwmon/fam15h_power.c | |
698 | ||
167a675a | 699 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
67d76710 | 700 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
b4731977 | 701 | S: Orphan |
faf2e1db | 702 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 703 | |
f90b8116 | 704 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 705 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 706 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
707 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
708 | S: Supported | |
679655da JP |
709 | F: drivers/char/hw_random/geode-rng.c |
710 | F: drivers/crypto/geode* | |
8a61f013 | 711 | F: drivers/video/fbdev/geode/ |
679655da | 712 | F: arch/x86/include/asm/geode.h |
f90b8116 | 713 | |
919ee7dd | 714 | AMD IOMMU (AMD-VI) |
e4110568 | 715 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 716 | L: iommu@lists.linux-foundation.org |
525b233c | 717 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 718 | S: Maintained |
b2c16391 JP |
719 | F: drivers/iommu/amd_iommu*.[ch] |
720 | F: include/linux/amd-iommu.h | |
919ee7dd | 721 | |
16423d67 | 722 | AMD KFD |
1241e0b4 | 723 | M: Oded Gabbay <oded.gabbay@gmail.com> |
49e7d9df JP |
724 | L: dri-devel@lists.freedesktop.org |
725 | T: git git://people.freedesktop.org/~gabbayo/linux.git | |
726 | S: Supported | |
130e0371 OG |
727 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c |
728 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | |
32c22e99 | 729 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c |
ff758a12 | 730 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c |
49e7d9df | 731 | F: drivers/gpu/drm/amd/amdkfd/ |
04df25d1 OG |
732 | F: drivers/gpu/drm/amd/include/cik_structs.h |
733 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h | |
ff758a12 | 734 | F: drivers/gpu/drm/amd/include/vi_structs.h |
49e7d9df JP |
735 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
736 | F: drivers/gpu/drm/radeon/radeon_kfd.h | |
737 | F: include/uapi/linux/kfd_ioctl.h | |
16423d67 | 738 | |
2510eb74 SS |
739 | AMD SEATTLE DEVICE TREE SUPPORT |
740 | M: Brijesh Singh <brijeshkumar.singh@amd.com> | |
741 | M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> | |
742 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
743 | S: Supported | |
744 | F: arch/arm64/boot/dts/amd/ | |
745 | ||
45198c7b LT |
746 | AMD XGBE DRIVER |
747 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
748 | L: netdev@vger.kernel.org | |
749 | S: Supported | |
750 | F: drivers/net/ethernet/amd/xgbe/ | |
08b8940e | 751 | F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi |
45198c7b | 752 | |
284f42b6 | 753 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 754 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 755 | S: Supported |
bd5f47ec | 756 | F: drivers/macintosh/ams/ |
284f42b6 | 757 | |
531fca16 HV |
758 | ANALOG DEVICES INC AD9389B DRIVER |
759 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
760 | L: linux-media@vger.kernel.org | |
761 | S: Maintained | |
762 | F: drivers/media/i2c/ad9389b* | |
763 | ||
614b4384 LPC |
764 | ANALOG DEVICES INC ADV7180 DRIVER |
765 | M: Lars-Peter Clausen <lars@metafoo.de> | |
766 | L: linux-media@vger.kernel.org | |
767 | W: http://ez.analog.com/community/linux-device-drivers | |
768 | S: Supported | |
769 | F: drivers/media/i2c/adv7180.c | |
770 | ||
c40ddfa3 HV |
771 | ANALOG DEVICES INC ADV7511 DRIVER |
772 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
773 | L: linux-media@vger.kernel.org | |
774 | S: Maintained | |
775 | F: drivers/media/i2c/adv7511* | |
776 | ||
531fca16 HV |
777 | ANALOG DEVICES INC ADV7604 DRIVER |
778 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
779 | L: linux-media@vger.kernel.org | |
780 | S: Maintained | |
781 | F: drivers/media/i2c/adv7604* | |
782 | ||
c40ddfa3 HV |
783 | ANALOG DEVICES INC ADV7842 DRIVER |
784 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
785 | L: linux-media@vger.kernel.org | |
786 | S: Maintained | |
787 | F: drivers/media/i2c/adv7842* | |
788 | ||
527a1a83 | 789 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 790 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 791 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 792 | W: http://wiki.analog.com/ |
a4edbc10 | 793 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 794 | S: Supported |
39c9d199 | 795 | F: sound/soc/codecs/adau* |
cc52688a | 796 | F: sound/soc/codecs/adav* |
4bdef3bd | 797 | F: sound/soc/codecs/ad1* |
ae48f5ef | 798 | F: sound/soc/codecs/ad7* |
4bdef3bd | 799 | F: sound/soc/codecs/ssm* |
40216ce7 | 800 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 801 | |
527a1a83 | 802 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 803 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
527a1a83 MH |
804 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
805 | W: http://blackfin.uclinux.org/ | |
806 | S: Supported | |
807 | F: sound/soc/blackfin/* | |
7d1f9018 | 808 | |
4ce72abc LPC |
809 | ANALOG DEVICES INC IIO DRIVERS |
810 | M: Lars-Peter Clausen <lars@metafoo.de> | |
811 | M: Michael Hennerich <Michael.Hennerich@analog.com> | |
812 | W: http://wiki.analog.com/ | |
813 | W: http://ez.analog.com/community/linux-device-drivers | |
814 | S: Supported | |
815 | F: drivers/iio/*/ad* | |
816 | X: drivers/iio/*/adjd* | |
817 | F: drivers/staging/iio/*/ad* | |
d5d4602e | 818 | F: drivers/staging/iio/trigger/iio-trig-bfin-timer.c |
527a1a83 | 819 | |
0e3b67b3 LPC |
820 | ANALOG DEVICES INC DMA DRIVERS |
821 | M: Lars-Peter Clausen <lars@metafoo.de> | |
822 | W: http://ez.analog.com/community/linux-device-drivers | |
823 | S: Supported | |
824 | F: drivers/dma/dma-axi-dmac.c | |
825 | ||
27eb6622 RH |
826 | ANDROID CONFIG FRAGMENTS |
827 | M: Rob Herring <robh@kernel.org> | |
828 | S: Supported | |
829 | F: kernel/configs/android* | |
830 | ||
41c9e95d GK |
831 | ANDROID DRIVERS |
832 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
27682407 | 833 | M: Arve Hjønnevåg <arve@android.com> |
41c9e95d | 834 | M: Riley Andrews <riandrews@android.com> |
0e4a566b | 835 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
41c9e95d GK |
836 | L: devel@driverdev.osuosl.org |
837 | S: Supported | |
838 | F: drivers/android/ | |
839 | F: drivers/staging/android/ | |
840 | ||
d03c023e LA |
841 | ANDROID ION DRIVER |
842 | M: Laura Abbott <labbott@redhat.com> | |
843 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
844 | L: devel@driverdev.osuosl.org | |
845 | S: Supported | |
e9d766b9 | 846 | F: Documentation/devicetree/bindings/staging/ion/ |
d03c023e LA |
847 | F: drivers/staging/android/ion |
848 | F: drivers/staging/android/uapi/ion.h | |
849 | F: drivers/staging/android/uapi/ion_test.h | |
850 | ||
42269063 | 851 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 852 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 853 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 854 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 855 | S: Maintained |
679655da | 856 | F: sound/aoa/ |
42269063 | 857 | |
4075a283 | 858 | APEX EMBEDDED SYSTEMS STX104 IIO DRIVER |
97a445da WBG |
859 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
860 | L: linux-iio@vger.kernel.org | |
861 | S: Maintained | |
4075a283 | 862 | F: drivers/iio/adc/stx104.c |
97a445da | 863 | |
1da177e4 | 864 | APM DRIVER |
e5f6450c | 865 | M: Jiri Kosina <jikos@kernel.org> |
81024fc4 | 866 | S: Odd fixes |
9f273c24 | 867 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git |
679655da JP |
868 | F: arch/x86/kernel/apm_32.c |
869 | F: include/linux/apm_bios.h | |
c117ab84 | 870 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 871 | F: drivers/char/apm-emulation.c |
1da177e4 | 872 | |
bd7aa4b2 | 873 | APPLE BCM5974 MULTITOUCH DRIVER |
75dd112a | 874 | M: Henrik Rydberg <rydberg@bitmath.org> |
bd7aa4b2 | 875 | L: linux-input@vger.kernel.org |
75dd112a | 876 | S: Odd fixes |
679655da | 877 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 878 | |
6f2fad74 | 879 | APPLE SMC DRIVER |
75dd112a | 880 | M: Henrik Rydberg <rydberg@bitmath.org> |
968ce1b1 | 881 | L: linux-hwmon@vger.kernel.org |
75dd112a | 882 | S: Odd fixes |
679655da | 883 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 884 | |
1da177e4 | 885 | APPLETALK NETWORK LAYER |
0c59d281 ACM |
886 | L: netdev@vger.kernel.org |
887 | S: Odd fixes | |
679655da JP |
888 | F: drivers/net/appletalk/ |
889 | F: net/appletalk/ | |
1da177e4 | 890 | |
21c75328 DD |
891 | APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT |
892 | M: Duc Dang <dhdang@apm.com> | |
893 | S: Supported | |
894 | F: arch/arm64/boot/dts/apm/ | |
895 | ||
24299502 IS |
896 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
897 | M: Iyappan Subramanian <isubramanian@apm.com> | |
898 | M: Keyur Chudgar <kchudgar@apm.com> | |
24299502 IS |
899 | S: Supported |
900 | F: drivers/net/ethernet/apm/xgene/ | |
2efccc60 | 901 | F: drivers/net/phy/mdio-xgene.c |
24299502 | 902 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt |
2efccc60 | 903 | F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt |
24299502 | 904 | |
fd3a628e TN |
905 | APPLIED MICRO (APM) X-GENE SOC PMU |
906 | M: Tai Nguyen <ttnguyen@apm.com> | |
907 | S: Supported | |
908 | F: drivers/perf/xgene_pmu.c | |
909 | F: Documentation/perf/xgene-pmu.txt | |
910 | F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt | |
911 | ||
62a37dc7 LP |
912 | APTINA CAMERA SENSOR PLL |
913 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
914 | L: linux-media@vger.kernel.org | |
915 | S: Maintained | |
916 | F: drivers/media/i2c/aptina-pll.* | |
917 | ||
1154ea7d | 918 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 919 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 920 | S: Maintained |
8a61f013 JH |
921 | F: drivers/video/fbdev/arcfb.c |
922 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 923 | |
c38f6ac7 MG |
924 | ARCNET NETWORK LAYER |
925 | M: Michael Grzeschik <m.grzeschik@pengutronix.de> | |
926 | L: netdev@vger.kernel.org | |
927 | S: Maintained | |
928 | F: drivers/net/arcnet/ | |
929 | F: include/uapi/linux/if_arcnet.h | |
930 | ||
71d298ce AB |
931 | ARC PGU DRM DRIVER |
932 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
933 | S: Supported | |
934 | F: drivers/gpu/drm/arc/ | |
935 | F: Documentation/devicetree/bindings/display/snps,arcpgu.txt | |
936 | ||
588deb61 MR |
937 | ARM ARCHITECTED TIMER DRIVER |
938 | M: Mark Rutland <mark.rutland@arm.com> | |
939 | M: Marc Zyngier <marc.zyngier@arm.com> | |
940 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
941 | S: Maintained | |
942 | F: arch/arm/include/asm/arch_timer.h | |
943 | F: arch/arm64/include/asm/arch_timer.h | |
944 | F: drivers/clocksource/arm_arch_timer.c | |
945 | ||
c5a906a5 LD |
946 | ARM HDLCD DRM DRIVER |
947 | M: Liviu Dudau <liviu.dudau@arm.com> | |
948 | S: Supported | |
59ba2422 | 949 | F: drivers/gpu/drm/arm/hdlcd_* |
c5a906a5 LD |
950 | F: Documentation/devicetree/bindings/display/arm,hdlcd.txt |
951 | ||
59ba2422 LD |
952 | ARM MALI-DP DRM DRIVER |
953 | M: Liviu Dudau <liviu.dudau@arm.com> | |
954 | M: Brian Starkey <brian.starkey@arm.com> | |
955 | M: Mali DP Maintainers <malidp@foss.arm.com> | |
956 | S: Supported | |
957 | F: drivers/gpu/drm/arm/ | |
958 | F: Documentation/devicetree/bindings/display/arm,malidp.txt | |
959 | ||
1da177e4 | 960 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 961 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 962 | S: Maintained |
679655da JP |
963 | F: arch/arm/lib/floppydma.S |
964 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 965 | |
6f96521f WD |
966 | ARM PMU PROFILING AND DEBUGGING |
967 | M: Will Deacon <will.deacon@arm.com> | |
55d5c4ab | 968 | M: Mark Rutland <mark.rutland@arm.com> |
6f96521f | 969 | S: Maintained |
55d5c4ab | 970 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dd06a84b | 971 | F: arch/arm*/kernel/perf_* |
6f96521f | 972 | F: arch/arm/oprofile/common.c |
dd06a84b MR |
973 | F: arch/arm*/kernel/hw_breakpoint.c |
974 | F: arch/arm*/include/asm/hw_breakpoint.h | |
975 | F: arch/arm*/include/asm/perf_event.h | |
55d5c4ab | 976 | F: drivers/perf/* |
fa8ad788 | 977 | F: include/linux/perf/arm_pmu.h |
55d5c4ab | 978 | F: Documentation/devicetree/bindings/arm/pmu.txt |
6f96521f | 979 | |
d4275354 | 980 | ARM PORT |
54176cc6 | 981 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 982 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 983 | W: http://www.armlinux.org.uk/ |
d4275354 | 984 | S: Maintained |
0d7f4f05 | 985 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git |
d4275354 RK |
986 | F: arch/arm/ |
987 | ||
d323c243 SB |
988 | ARM SUB-ARCHITECTURES |
989 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 990 | S: Maintained |
d323c243 SB |
991 | F: arch/arm/mach-*/ |
992 | F: arch/arm/plat-*/ | |
993 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
994 | ||
cefbf4ea | 995 | ARM PRIMECELL AACI PL041 DRIVER |
54176cc6 | 996 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
997 | S: Maintained |
998 | F: sound/arm/aaci.* | |
999 | ||
1000 | ARM PRIMECELL CLCD PL110 DRIVER | |
54176cc6 | 1001 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea | 1002 | S: Maintained |
8a61f013 | 1003 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
1004 | |
1005 | ARM PRIMECELL KMI PL050 DRIVER | |
54176cc6 | 1006 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
1007 | S: Maintained |
1008 | F: drivers/input/serio/ambakmi.* | |
1009 | F: include/linux/amba/kmi.h | |
1010 | ||
2761f5c2 | 1011 | ARM PRIMECELL MMCI PL180/1 DRIVER |
54176cc6 | 1012 | M: Russell King <linux@armlinux.org.uk> |
08a5c9a2 | 1013 | S: Maintained |
679655da | 1014 | F: drivers/mmc/host/mmci.* |
2f748aaa | 1015 | F: include/linux/amba/mmci.h |
2761f5c2 | 1016 | |
1b4304e5 | 1017 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
54176cc6 | 1018 | M: Russell King <linux@armlinux.org.uk> |
1b4304e5 RK |
1019 | S: Maintained |
1020 | F: drivers/tty/serial/amba-pl01*.c | |
1021 | F: include/linux/amba/serial.h | |
2761f5c2 | 1022 | |
cefbf4ea | 1023 | ARM PRIMECELL BUS SUPPORT |
54176cc6 | 1024 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
1025 | S: Maintained |
1026 | F: drivers/amba/ | |
1027 | F: include/linux/amba/bus.h | |
1028 | ||
2b7a52a4 | 1029 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 1030 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1031 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1032 | S: Maintained |
1033 | ||
9c784f95 | 1034 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 1035 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 1036 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
1037 | S: Maintained |
1038 | ||
2b7a52a4 | 1039 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 1040 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1041 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1042 | S: Maintained |
1043 | ||
5c6dcd7f | 1044 | ARM/Allwinner sunXi SoC support |
1b106699 | 1045 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
5c6dcd7f | 1046 | M: Chen-Yu Tsai <wens@csie.org> |
1b106699 MR |
1047 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1048 | S: Maintained | |
5c6dcd7f | 1049 | N: sun[x456789]i |
c1efda12 | 1050 | F: arch/arm/boot/dts/ntc-gr8* |
6bc37fac | 1051 | F: arch/arm64/boot/dts/allwinner/ |
60b0f380 MR |
1052 | |
1053 | ARM/Allwinner SoC Clock Support | |
1054 | M: Emilio López <emilio@elopez.com.ar> | |
1055 | S: Maintained | |
1056 | F: drivers/clk/sunxi/ | |
1b106699 | 1057 | |
79318452 | 1058 | ARM/Amlogic Meson SoC support |
7c1e3876 | 1059 | M: Carlo Caione <carlo@caione.org> |
6683d91c | 1060 | M: Kevin Hilman <khilman@baylibre.com> |
7c1e3876 | 1061 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6683d91c | 1062 | L: linux-amlogic@lists.infradead.org |
79318452 | 1063 | W: http://linux-meson.com/ |
7c1e3876 | 1064 | S: Maintained |
79318452 CC |
1065 | F: arch/arm/mach-meson/ |
1066 | F: arch/arm/boot/dts/meson* | |
6683d91c KH |
1067 | F: arch/arm64/boot/dts/amlogic/ |
1068 | F: drivers/pinctrl/meson/ | |
51c5d844 | 1069 | F: drivers/mmc/host/meson* |
79318452 | 1070 | N: meson |
7c1e3876 | 1071 | |
eff506fa TZ |
1072 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
1073 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> | |
a9e5547b | 1074 | M: Antoine Tenart <antoine.tenart@free-electrons.com> |
4d2bf027 | 1075 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eff506fa TZ |
1076 | S: Maintained |
1077 | F: arch/arm/mach-alpine/ | |
a9e5547b AT |
1078 | F: arch/arm/boot/dts/alpine* |
1079 | F: arch/arm64/boot/dts/al/ | |
1080 | F: drivers/*/*alpine* | |
eff506fa | 1081 | |
5255034d LP |
1082 | ARM/ARTPEC MACHINE SUPPORT |
1083 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
1084 | M: Lars Persson <lars.persson@axis.com> | |
1085 | M: Niklas Cassel <niklas.cassel@axis.com> | |
1086 | S: Maintained | |
1087 | L: linux-arm-kernel@axis.com | |
1088 | F: arch/arm/mach-artpec | |
1089 | F: arch/arm/boot/dts/artpec6* | |
33b8ac91 | 1090 | F: drivers/clk/axis |
5255034d | 1091 | |
8c2ed9bc JS |
1092 | ARM/ASPEED MACHINE SUPPORT |
1093 | M: Joel Stanley <joel@jms.id.au> | |
1094 | S: Maintained | |
1095 | F: arch/arm/mach-aspeed/ | |
1096 | F: arch/arm/boot/dts/aspeed-* | |
1097 | F: drivers/*/*aspeed* | |
1098 | ||
8dca5ce8 | 1099 | ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT |
e085b9d8 | 1100 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
d68b35f8 | 1101 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
c1fc8675 | 1102 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
efc03ecb | 1103 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
c1fc8675 | 1104 | W: http://www.linux4sam.org |
9f273c24 | 1105 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git |
c1fc8675 NF |
1106 | S: Supported |
1107 | F: arch/arm/mach-at91/ | |
f0a0a58e | 1108 | F: include/soc/at91/ |
70e389cc MB |
1109 | F: arch/arm/boot/dts/at91*.dts |
1110 | F: arch/arm/boot/dts/at91*.dtsi | |
1111 | F: arch/arm/boot/dts/sama*.dts | |
1112 | F: arch/arm/boot/dts/sama*.dtsi | |
5f58c970 | 1113 | F: arch/arm/include/debug/at91.S |
d4a89c7d | 1114 | |
6e05dd4e BB |
1115 | ARM/ATMEL AT91 Clock Support |
1116 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
1117 | S: Maintained | |
1118 | F: drivers/clk/at91 | |
1119 | ||
986cf2e9 | 1120 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 1121 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
1122 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1123 | S: Maintained | |
1124 | F: arch/arm/mach-highbank/ | |
e68d7c14 RH |
1125 | F: arch/arm/boot/dts/highbank.dts |
1126 | F: arch/arm/boot/dts/ecx-*.dts* | |
986cf2e9 | 1127 | |
d94f944e | 1128 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 1129 | M: Krzysztof Halasa <khalasa@piap.pl> |
d94f944e AV |
1130 | S: Maintained |
1131 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 1132 | |
4863dea3 SG |
1133 | ARM/CAVIUM THUNDER NETWORK DRIVER |
1134 | M: Sunil Goutham <sgoutham@cavium.com> | |
1135 | M: Robert Richter <rric@kernel.org> | |
1136 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1137 | S: Supported | |
322e5cc5 | 1138 | F: drivers/net/ethernet/cavium/thunder/ |
4863dea3 | 1139 | |
386ab516 AS |
1140 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
1141 | M: Alexander Shiyan <shc_work@mail.ru> | |
1142 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1143 | S: Odd Fixes | |
b8ba3874 | 1144 | N: clps711x |
386ab516 | 1145 | |
2b7a52a4 | 1146 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 1147 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 1148 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 1149 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 1150 | S: Maintained |
d19d3667 HS |
1151 | F: arch/arm/mach-ep93xx/ |
1152 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
1153 | |
1154 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 1155 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1156 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1157 | S: Maintained |
1158 | ||
d4275354 | 1159 | ARM/CLKDEV SUPPORT |
54176cc6 | 1160 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1161 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 1162 | S: Maintained |
0d7f4f05 | 1163 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev |
d4275354 | 1164 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 1165 | F: drivers/clk/clkdev.c |
d4275354 | 1166 | |
d48134e7 | 1167 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 1168 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 1169 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
1170 | S: Maintained |
1171 | ||
94150095 HF |
1172 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
1173 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
1174 | S: Maintained | |
1175 | F: arch/arm/mach-ep93xx/micro9.c | |
1176 | ||
a06ae860 PP |
1177 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
1178 | M: Mathieu Poirier <mathieu.poirier@linaro.org> | |
1179 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1180 | S: Maintained | |
01081f5a | 1181 | F: drivers/hwtracing/coresight/* |
a06ae860 PP |
1182 | F: Documentation/trace/coresight.txt |
1183 | F: Documentation/devicetree/bindings/arm/coresight.txt | |
7a25ec8e | 1184 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
7e21b0d5 | 1185 | F: tools/perf/arch/arm/util/pmu.c |
a818c563 MP |
1186 | F: tools/perf/arch/arm/util/auxtrace.c |
1187 | F: tools/perf/arch/arm/util/cs-etm.c | |
1188 | F: tools/perf/arch/arm/util/cs-etm.h | |
1189 | F: tools/perf/util/cs-etm.h | |
a06ae860 | 1190 | |
1da177e4 | 1191 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 1192 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
1193 | S: Maintained |
1194 | ||
881a95f9 | 1195 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 1196 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1197 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
b60e23ba | 1198 | T: git git://github.com/ulli-kroll/linux.git |
162500b3 | 1199 | S: Maintained |
f49afbb5 | 1200 | F: arch/arm/mach-gemini/ |
98a9bb5b | 1201 | F: drivers/rtc/rtc-gemini.c |
881a95f9 | 1202 | |
a990cbd8 | 1203 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 1204 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 1205 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 1206 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 | 1207 | S: Maintained |
e68d7c14 | 1208 | F: arch/arm/boot/dts/prima2* |
a990cbd8 | 1209 | F: arch/arm/mach-prima2/ |
4a9c44f1 | 1210 | F: drivers/clk/sirf/ |
05f30e8d | 1211 | F: drivers/clocksource/timer-prima2.c |
5833ac98 | 1212 | F: drivers/clocksource/timer-atlas7.c |
f8505ef5 | 1213 | N: [^a-z]sirf |
a990cbd8 | 1214 | |
c9d862c4 BS |
1215 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
1216 | M: Baruch Siach <baruch@tkos.co.il> | |
1217 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1218 | S: Maintained | |
cde137aa | 1219 | F: arch/arm/boot/dts/cx92755* |
c9d862c4 BS |
1220 | N: digicolor |
1221 | ||
d4275354 | 1222 | ARM/EBSA110 MACHINE SUPPORT |
54176cc6 | 1223 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1224 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1225 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1226 | S: Maintained |
1227 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 1228 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 1229 | |
4721f3ce UKK |
1230 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
1231 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
1232 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1233 | S: Maintained | |
1234 | N: efm32 | |
1235 | ||
a9da4f7e | 1236 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
d9bd2645 SS |
1237 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
1238 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a9da4f7e | 1239 | S: Maintained |
cafc2265 | 1240 | F: arch/arm/mach-pxa/ezx.c |
a9da4f7e | 1241 | |
6a915af9 | 1242 | ARM/FARADAY FA526 PORT |
162500b3 | 1243 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1244 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 1245 | S: Maintained |
1fa7e547 | 1246 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 1247 | F: arch/arm/mm/*-fa* |
6a915af9 | 1248 | |
d4275354 | 1249 | ARM/FOOTBRIDGE ARCHITECTURE |
54176cc6 | 1250 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1251 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1252 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1253 | S: Maintained |
1254 | F: arch/arm/include/asm/hardware/dec21285.h | |
1255 | F: arch/arm/mach-footbridge/ | |
1256 | ||
86183a5f | 1257 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
7609ea2a | 1258 | M: Shawn Guo <shawnguo@kernel.org> |
8b58be88 | 1259 | M: Sascha Hauer <kernel@pengutronix.de> |
b046302a | 1260 | R: Fabio Estevam <fabio.estevam@nxp.com> |
efc03ecb | 1261 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 1262 | S: Maintained |
f1c12837 | 1263 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 1264 | F: arch/arm/mach-imx/ |
ce515a6b | 1265 | F: arch/arm/mach-mxs/ |
2a82f95c | 1266 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 1267 | F: arch/arm/configs/imx*_defconfig |
cf20968a SG |
1268 | F: drivers/clk/imx/ |
1269 | F: include/soc/imx/ | |
86183a5f | 1270 | |
142109d2 | 1271 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
7609ea2a | 1272 | M: Shawn Guo <shawnguo@kernel.org> |
142109d2 SA |
1273 | M: Sascha Hauer <kernel@pengutronix.de> |
1274 | R: Stefan Agner <stefan@agner.ch> | |
1275 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1276 | S: Maintained | |
1277 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git | |
1278 | F: arch/arm/mach-imx/*vf610* | |
1279 | F: arch/arm/boot/dts/vf* | |
1280 | ||
2b7a52a4 | 1281 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 1282 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1283 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1284 | S: Maintained |
1285 | ||
90b8fc34 | 1286 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1287 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 1288 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
1289 | S: Maintained |
1290 | ||
ef47d5f0 | 1291 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1292 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
1293 | M: Paul Parsons <lost.distance@yahoo.com> |
1294 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
1295 | S: Maintained |
1296 | F: arch/arm/mach-pxa/hx4700.c | |
1297 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1298 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1299 | |
4dfad069 WX |
1300 | ARM/HISILICON SOC SUPPORT |
1301 | M: Wei Xu <xuwei5@hisilicon.com> | |
1302 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1303 | W: http://www.hisilicon.com | |
1304 | S: Supported | |
1305 | T: git git://github.com/hisilicon/linux-hisi.git | |
1306 | F: arch/arm/mach-hisi/ | |
e68d7c14 RH |
1307 | F: arch/arm/boot/dts/hi3* |
1308 | F: arch/arm/boot/dts/hip* | |
1309 | F: arch/arm/boot/dts/hisi* | |
1310 | F: arch/arm64/boot/dts/hisilicon/ | |
4dfad069 | 1311 | |
21f37bc3 | 1312 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1313 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1314 | W: www.jlime.com |
1315 | S: Maintained | |
084bad91 KE |
1316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1317 | F: arch/arm/mach-sa1100/jornada720.c | |
1318 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1319 | |
5e767ab9 JMC |
1320 | ARM/IGEP MACHINE SUPPORT |
1321 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1322 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1323 | L: linux-omap@vger.kernel.org | |
1324 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1325 | S: Maintained | |
06ff74fd | 1326 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1327 | |
403d2971 MV |
1328 | ARM/INCOME PXA270 SUPPORT |
1329 | M: Marek Vasut <marek.vasut@gmail.com> | |
1330 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1331 | S: Maintained | |
ec154082 | 1332 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1333 | |
2b7a52a4 | 1334 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1335 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1336 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1337 | S: Maintained |
e2bdb176 DW |
1338 | |
1339 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1340 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
08223d80 | 1341 | S: Orphan |
2b7a52a4 LB |
1342 | |
1343 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1344 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1345 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1346 | S: Maintained |
2b7a52a4 LB |
1347 | |
1348 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1349 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1350 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1351 | S: Maintained |
2b7a52a4 | 1352 | |
2b7a52a4 | 1353 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1354 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1355 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1356 | S: Maintained |
1357 | ||
dfdd8cc9 KH |
1358 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1359 | M: Imre Kaloz <kaloz@openwrt.org> | |
5529c2cd | 1360 | M: Krzysztof Halasa <khalasa@piap.pl> |
baea7b94 | 1361 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1362 | S: Maintained |
1363 | F: arch/arm/mach-ixp4xx/ | |
1364 | ||
838553c5 | 1365 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1366 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1367 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1368 | S: Maintained | |
1369 | F: arch/arm/mach-pxa/stargate2.c | |
1370 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1371 | ||
2b7a52a4 | 1372 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1373 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1374 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1375 | S: Maintained |
2b7a52a4 LB |
1376 | |
1377 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1378 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1379 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1380 | S: Maintained |
1381 | ||
1154f858 | 1382 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
97215800 | 1383 | M: Santosh Shilimkar <ssantosh@kernel.org> |
1154f858 SS |
1384 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1385 | S: Maintained | |
1386 | F: arch/arm/mach-keystone/ | |
5edafc29 | 1387 | F: arch/arm/boot/dts/keystone-* |
317929cd | 1388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1389 | |
bc6aa566 | 1390 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
97215800 | 1391 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1392 | L: linux-kernel@vger.kernel.org |
1393 | S: Maintained | |
1394 | F: drivers/clk/keystone/ | |
1395 | ||
1396 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
97215800 | 1397 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1398 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1399 | L: linux-kernel@vger.kernel.org | |
1400 | S: Maintained | |
1401 | F: drivers/clocksource/timer-keystone.c | |
1402 | ||
1403 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
97215800 | 1404 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1405 | L: linux-kernel@vger.kernel.org |
1406 | S: Maintained | |
1407 | F: drivers/power/reset/keystone-reset.c | |
1408 | ||
1409 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
97215800 | 1410 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1411 | L: linux-kernel@vger.kernel.org |
1412 | S: Maintained | |
1413 | F: drivers/memory/*emif* | |
1414 | ||
8cb555b6 CM |
1415 | ARM/LG1K ARCHITECTURE |
1416 | M: Chanho Min <chanho.min@lge.com> | |
1417 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1418 | S: Maintained | |
1419 | F: arch/arm64/boot/dts/lg/ | |
1420 | ||
2b7a52a4 | 1421 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1422 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1423 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1424 | S: Maintained |
1425 | ||
3143875f JE |
1426 | ARM/LPC18XX ARCHITECTURE |
1427 | M: Joachim Eastwood <manabian@gmail.com> | |
1428 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1429 | S: Maintained | |
19c1c32c JE |
1430 | F: arch/arm/boot/dts/lpc43* |
1431 | F: drivers/clk/nxp/clk-lpc18xx* | |
1432 | F: drivers/clocksource/time-lpc32xx.c | |
1433 | F: drivers/i2c/busses/i2c-lpc2k.c | |
1434 | F: drivers/memory/pl172.c | |
1435 | F: drivers/mtd/spi-nor/nxp-spifi.c | |
1436 | F: drivers/rtc/rtc-lpc24xx.c | |
3143875f JE |
1437 | N: lpc18xx |
1438 | ||
15e4f7da | 1439 | ARM/LPC32XX SOC SUPPORT |
8d5a6b42 VZ |
1440 | M: Vladimir Zapolskiy <vz@mleia.com> |
1441 | M: Sylvain Lemieux <slemieux.tyco@gmail.com> | |
15e4f7da | 1442 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8d5a6b42 | 1443 | T: git git://github.com/vzapolskiy/linux-lpc32xx.git |
15e4f7da | 1444 | S: Maintained |
2377f9fd | 1445 | F: arch/arm/boot/dts/lpc32* |
15e4f7da | 1446 | F: arch/arm/mach-lpc32xx/ |
2377f9fd VZ |
1447 | F: drivers/i2c/busses/i2c-pnx.c |
1448 | F: drivers/net/ethernet/nxp/lpc_eth.c | |
1449 | F: drivers/usb/host/ohci-nxp.c | |
1450 | F: drivers/watchdog/pnx4008_wdt.c | |
1451 | N: lpc32xx | |
15e4f7da | 1452 | |
3b886171 | 1453 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1454 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1455 | S: Maintained |
1456 | ||
1f664ab7 | 1457 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support |
75f41273 TP |
1458 | M: Jason Cooper <jason@lakedaemon.net> |
1459 | M: Andrew Lunn <andrew@lunn.ch> | |
1460 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1461 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1462 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1463 | S: Maintained | |
1464 | F: arch/arm/mach-mvebu/ | |
59ec9671 | 1465 | F: drivers/rtc/rtc-armada38x.c |
31c17ac9 GC |
1466 | F: arch/arm/boot/dts/armada* |
1467 | F: arch/arm/boot/dts/kirkwood* | |
dcc3068a | 1468 | F: arch/arm64/boot/dts/marvell/armada* |
9f123def | 1469 | F: drivers/cpufreq/mvebu-cpufreq.c |
e269777f | 1470 | F: arch/arm/configs/mvebu_*_defconfig |
75f41273 | 1471 | |
40f4978b | 1472 | ARM/Marvell Berlin SoC support |
70e1a28f | 1473 | M: Jisheng Zhang <jszhang@marvell.com> |
40f4978b SH |
1474 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
1475 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1476 | S: Maintained | |
1477 | F: arch/arm/mach-berlin/ | |
31c17ac9 | 1478 | F: arch/arm/boot/dts/berlin* |
e68d7c14 | 1479 | F: arch/arm64/boot/dts/marvell/berlin* |
31c17ac9 | 1480 | |
40f4978b | 1481 | |
4cfab57e | 1482 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1483 | M: Jason Cooper <jason@lakedaemon.net> |
1484 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1485 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
bfda4031 | 1486 | M: Gregory Clement <gregory.clement@free-electrons.com> |
efc03ecb | 1487 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1488 | S: Maintained |
1489 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1490 | F: arch/arm/mach-mv78xx0/ |
1491 | F: arch/arm/mach-orion5x/ | |
1492 | F: arch/arm/plat-orion/ | |
31c17ac9 GC |
1493 | F: arch/arm/boot/dts/dove* |
1494 | F: arch/arm/boot/dts/orion5x* | |
1495 | ||
3b886171 | 1496 | |
d69ac131 AC |
1497 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1498 | M: Alexander Clouter <alex@digriz.org.uk> | |
1499 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1500 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1501 | S: Maintained | |
1502 | F: arch/arm/mach-orion5x/ts78xx-* | |
1503 | ||
e557959d NA |
1504 | ARM/OXNAS platform support |
1505 | M: Neil Armstrong <narmstrong@baylibre.com> | |
1506 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
d6fbd37b | 1507 | L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers) |
e557959d NA |
1508 | S: Maintained |
1509 | F: arch/arm/mach-oxnas/ | |
52c468fb | 1510 | F: arch/arm/boot/dts/ox8*.dtsi |
e557959d | 1511 | F: arch/arm/boot/dts/wd-mbwe.dts |
52c468fb | 1512 | F: arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts |
e557959d NA |
1513 | N: oxnas |
1514 | ||
607b8fc9 EH |
1515 | ARM/Mediatek RTC DRIVER |
1516 | M: Eddie Huang <eddie.huang@mediatek.com> | |
1517 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1518 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1519 | S: Maintained | |
1520 | F: drivers/rtc/rtc-mt6397.c | |
1521 | ||
e54951c8 MB |
1522 | ARM/Mediatek SoC support |
1523 | M: Matthias Brugger <matthias.bgg@gmail.com> | |
1524 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
17b199d6 | 1525 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
e54951c8 MB |
1526 | S: Maintained |
1527 | F: arch/arm/boot/dts/mt6* | |
44e4e5fb | 1528 | F: arch/arm/boot/dts/mt7* |
e54951c8 MB |
1529 | F: arch/arm/boot/dts/mt8* |
1530 | F: arch/arm/mach-mediatek/ | |
44e4e5fb | 1531 | F: arch/arm64/boot/dts/mediatek/ |
e54951c8 MB |
1532 | N: mtk |
1533 | K: mediatek | |
1534 | ||
0f8669e3 CY |
1535 | ARM/Mediatek USB3 PHY DRIVER |
1536 | M: Chunfeng Yun <chunfeng.yun@mediatek.com> | |
1537 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1538 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1539 | S: Maintained | |
1540 | F: drivers/phy/phy-mt65xx-usb3.c | |
1541 | ||
adcb079f AB |
1542 | ARM/MICREL KS8695 ARCHITECTURE |
1543 | M: Greg Ungerer <gerg@uclinux.org> | |
1544 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1545 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1546 | S: Odd Fixes |
1547 | ||
d78ff0a5 | 1548 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1549 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1550 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1551 | F: arch/arm/mach-pxa/mioa701.c |
1552 | S: Maintained | |
1553 | ||
9624dfe6 | 1554 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1555 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1556 | S: Maintained |
1557 | ||
e0ee9851 | 1558 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1559 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1560 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1561 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1562 | S: Maintained | |
1563 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1564 | F: drivers/pinctrl/nomadik/ |
87572880 | 1565 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1566 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1567 | |
9d76295a | 1568 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1569 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1570 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1571 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1572 | S: Supported | |
1573 | ||
8459c159 | 1574 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1575 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1576 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1577 | S: Maintained |
1578 | ||
5d783a2d | 1579 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1580 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1581 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1582 | W: http://hackndev.com |
1583 | S: Maintained | |
933d35f0 JP |
1584 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1585 | F: arch/arm/mach-pxa/palmtx.c | |
1586 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1587 | F: arch/arm/mach-pxa/palmt5.c | |
1588 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1589 | F: arch/arm/mach-pxa/palmld.c | |
1590 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1591 | F: arch/arm/mach-pxa/palmte2.c | |
1592 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1593 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1594 | |
b57fe924 | 1595 | ARM/PALM TREO SUPPORT |
d8130624 | 1596 | M: Tomas Cech <sleep_walker@suse.com> |
75280787 | 1597 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1598 | W: http://hackndev.com |
1599 | S: Maintained | |
b57fe924 JP |
1600 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1601 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1602 | |
c49e1e63 | 1603 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1604 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1605 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1606 | W: http://hackndev.com |
1607 | S: Maintained | |
933d35f0 JP |
1608 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1609 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1610 | |
1da177e4 | 1611 | ARM/PLEB SUPPORT |
8b58be88 | 1612 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1613 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1614 | S: Maintained | |
1615 | ||
1616 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1617 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1618 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1619 | W: http://www.armlinux.org.uk/ |
1da177e4 LT |
1620 | S: Maintained |
1621 | ||
8fc1b0f8 | 1622 | ARM/QUALCOMM SUPPORT |
bbeaa595 AG |
1623 | M: Andy Gross <andy.gross@linaro.org> |
1624 | M: David Brown <david.brown@linaro.org> | |
8fc1b0f8 | 1625 | L: linux-arm-msm@vger.kernel.org |
f5d3af9d | 1626 | L: linux-soc@vger.kernel.org |
8fc1b0f8 | 1627 | S: Maintained |
0ff50d60 | 1628 | F: Documentation/devicetree/bindings/soc/qcom/ |
0c4cbf9e BA |
1629 | F: arch/arm/boot/dts/qcom-*.dts |
1630 | F: arch/arm/boot/dts/qcom-*.dtsi | |
8fc1b0f8 | 1631 | F: arch/arm/mach-qcom/ |
e68d7c14 | 1632 | F: arch/arm64/boot/dts/qcom/* |
5482cefa | 1633 | F: drivers/i2c/busses/i2c-qup.c |
39a3366a | 1634 | F: drivers/clk/qcom/ |
4fb1a420 | 1635 | F: drivers/pinctrl/qcom/ |
472cef34 | 1636 | F: drivers/dma/qcom/ |
f5d3af9d | 1637 | F: drivers/soc/qcom/ |
5482cefa | 1638 | F: drivers/spi/spi-qup.c |
c0c89faf SB |
1639 | F: drivers/tty/serial/msm_serial.h |
1640 | F: drivers/tty/serial/msm_serial.c | |
1641 | F: drivers/*/pm8???-* | |
1642 | F: drivers/mfd/ssbi.c | |
916f743d | 1643 | F: drivers/firmware/qcom_scm.c |
bbeaa595 | 1644 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git |
8fc1b0f8 | 1645 | |
2b7a52a4 | 1646 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1647 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1648 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1649 | S: Maintained |
1650 | ||
b138e119 SH |
1651 | ARM/RENESAS ARM64 ARCHITECTURE |
1652 | M: Simon Horman <horms@verge.net.au> | |
1653 | M: Magnus Damm <magnus.damm@gmail.com> | |
1926e54f SH |
1654 | L: linux-renesas-soc@vger.kernel.org |
1655 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ | |
b138e119 SH |
1656 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
1657 | S: Supported | |
1658 | F: arch/arm64/boot/dts/renesas/ | |
be32bcbb GU |
1659 | F: drivers/soc/renesas/ |
1660 | F: include/linux/soc/renesas/ | |
b138e119 | 1661 | |
d4275354 | 1662 | ARM/RISCPC ARCHITECTURE |
54176cc6 | 1663 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1664 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1665 | W: http://www.armlinux.org.uk/ |
d4275354 | 1666 | S: Maintained |
d4275354 RK |
1667 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1668 | F: arch/arm/include/asm/hardware/ioc.h | |
1669 | F: arch/arm/include/asm/hardware/iomd.h | |
1670 | F: arch/arm/include/asm/hardware/memc.h | |
1671 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1672 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1673 | F: drivers/net/ethernet/i825xx/ether1* |
1674 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1675 | F: drivers/scsi/arm/ |
1676 | ||
08ddbb0a HS |
1677 | ARM/Rockchip SoC support |
1678 | M: Heiko Stuebner <heiko@sntech.de> | |
1679 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1680 | L: linux-rockchip@lists.infradead.org |
9f273c24 | 1681 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git |
08ddbb0a | 1682 | S: Maintained |
541555e9 | 1683 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1684 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1685 | F: drivers/clk/rockchip/ |
1686 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1687 | F: drivers/*/*rockchip* |
541555e9 HS |
1688 | F: drivers/*/*/*rockchip* |
1689 | F: sound/soc/rockchip/ | |
b4331b43 | 1690 | N: rockchip |
08ddbb0a | 1691 | |
5bfb937c KK |
1692 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
1693 | M: Kukjin Kim <kgene@kernel.org> | |
326dce07 | 1694 | M: Krzysztof Kozlowski <krzk@kernel.org> |
29617e1c | 1695 | R: Javier Martinez Canillas <javier@osg.samsung.com> |
efc03ecb | 1696 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1697 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
6f96d639 | 1698 | Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/ |
b21477f9 | 1699 | S: Maintained |
6f0589c8 | 1700 | F: arch/arm/boot/dts/s3c* |
e68d7c14 RH |
1701 | F: arch/arm/boot/dts/s5p* |
1702 | F: arch/arm/boot/dts/samsung* | |
6f0589c8 | 1703 | F: arch/arm/boot/dts/exynos* |
d97236e6 | 1704 | F: arch/arm64/boot/dts/exynos/ |
482ce512 | 1705 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1706 | F: arch/arm/mach-s3c24*/ |
1707 | F: arch/arm/mach-s3c64xx/ | |
5bfb937c KK |
1708 | F: arch/arm/mach-s5p*/ |
1709 | F: arch/arm/mach-exynos*/ | |
1c03274d KK |
1710 | F: drivers/*/*s3c24* |
1711 | F: drivers/*/*/*s3c24* | |
1712 | F: drivers/*/*s3c64xx* | |
1713 | F: drivers/*/*s5pv210* | |
ffd51977 | 1714 | F: drivers/memory/samsung/* |
bf50ddcd | 1715 | F: drivers/soc/samsung/* |
d6b9aea6 KK |
1716 | F: Documentation/arm/Samsung/ |
1717 | F: Documentation/devicetree/bindings/arm/samsung/ | |
1718 | F: Documentation/devicetree/bindings/sram/samsung-sram.txt | |
1719 | F: Documentation/devicetree/bindings/power/pd-samsung.txt | |
33d43cdd | 1720 | N: exynos |
f556cb07 | 1721 | |
10ffa964 KP |
1722 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1723 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1724 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1725 | S: Maintained | |
004bbd3c | 1726 | F: arch/arm/mach-s5pv210/ |
10ffa964 | 1727 | |
3ce4ccb6 KD |
1728 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1729 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 KD |
1730 | M: Kamil Debski <kamil@wypas.org> |
1731 | M: Andrzej Hajda <a.hajda@samsung.com> | |
3ce4ccb6 KD |
1732 | L: linux-arm-kernel@lists.infradead.org |
1733 | L: linux-media@vger.kernel.org | |
1734 | S: Maintained | |
1735 | F: drivers/media/platform/s5p-g2d/ | |
1736 | ||
e6a476fd MS |
1737 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1738 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 | 1739 | M: Kamil Debski <kamil@wypas.org> |
6305902c | 1740 | M: Jeongtae Park <jtp.park@samsung.com> |
774e0362 | 1741 | M: Andrzej Hajda <a.hajda@samsung.com> |
e6a476fd MS |
1742 | L: linux-arm-kernel@lists.infradead.org |
1743 | L: linux-media@vger.kernel.org | |
1744 | S: Maintained | |
934455d7 | 1745 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1746 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd | 1747 | |
1bcbf6f4 KD |
1748 | ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT |
1749 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1750 | L: linux-arm-kernel@lists.infradead.org | |
1751 | L: linux-media@vger.kernel.org | |
1752 | S: Maintained | |
78fc853b | 1753 | F: drivers/staging/media/platform/s5p-cec/ |
1bcbf6f4 | 1754 | |
7d9f9bf4 AP |
1755 | ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT |
1756 | M: Andrzej Pietrasiewicz <andrzej.p@samsung.com> | |
305335b9 | 1757 | M: Jacek Anaszewski <jacek.anaszewski@gmail.com> |
7d9f9bf4 AP |
1758 | L: linux-arm-kernel@lists.infradead.org |
1759 | L: linux-media@vger.kernel.org | |
1760 | S: Maintained | |
1761 | F: drivers/media/platform/s5p-jpeg/ | |
1762 | ||
d48d38e8 | 1763 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1764 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 | 1765 | M: Magnus Damm <magnus.damm@gmail.com> |
4a121096 | 1766 | L: linux-renesas-soc@vger.kernel.org |
4a121096 | 1767 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ |
5e212598 | 1768 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1769 | S: Supported |
0b514fdb SH |
1770 | F: arch/arm/boot/dts/emev2* |
1771 | F: arch/arm/boot/dts/r7s* | |
1772 | F: arch/arm/boot/dts/r8a* | |
1773 | F: arch/arm/boot/dts/sh* | |
0b514fdb | 1774 | F: arch/arm/configs/shmobile_defconfig |
7a2071c5 | 1775 | F: arch/arm/include/debug/renesas-scif.S |
d48d38e8 | 1776 | F: arch/arm/mach-shmobile/ |
be32bcbb GU |
1777 | F: drivers/soc/renesas/ |
1778 | F: include/linux/soc/renesas/ | |
d48d38e8 | 1779 | |
66314223 | 1780 | ARM/SOCFPGA ARCHITECTURE |
08b3b33f | 1781 | M: Dinh Nguyen <dinguyen@kernel.org> |
66314223 DN |
1782 | S: Maintained |
1783 | F: arch/arm/mach-socfpga/ | |
efadb751 DN |
1784 | F: arch/arm/boot/dts/socfpga* |
1785 | F: arch/arm/configs/socfpga_defconfig | |
e68d7c14 | 1786 | F: arch/arm64/boot/dts/altera/ |
ba2b7d0a | 1787 | W: http://www.rocketboards.org |
efadb751 | 1788 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
66314223 DN |
1789 | |
1790 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
08b3b33f | 1791 | M: Dinh Nguyen <dinguyen@kernel.org> |
66314223 DN |
1792 | S: Maintained |
1793 | F: drivers/clk/socfpga/ | |
1794 | ||
71bcada8 | 1795 | ARM/SOCFPGA EDAC SUPPORT |
06c177cb | 1796 | M: Thor Thayer <thor.thayer@linux.intel.com> |
71bcada8 TT |
1797 | S: Maintained |
1798 | F: drivers/edac/altera_edac. | |
1799 | ||
65ebcc11 | 1800 | ARM/STI ARCHITECTURE |
a92177ea | 1801 | M: Patrice Chotard <patrice.chotard@st.com> |
65ebcc11 SK |
1802 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1803 | L: kernel@stlinux.com | |
1804 | W: http://www.stlinux.com | |
1805 | S: Maintained | |
1806 | F: arch/arm/mach-sti/ | |
a92177ea | 1807 | F: arch/arm/boot/dts/sti* |
b8e31bf3 | 1808 | F: drivers/char/hw_random/st-rng.c |
a92177ea | 1809 | F: drivers/clocksource/arm_global_timer.c |
82805d1b | 1810 | F: drivers/clocksource/clksrc_st_lpc.c |
1d4b42bc | 1811 | F: drivers/cpufreq/sti-cpufreq.c |
6da0f216 | 1812 | F: drivers/dma/st_fdma* |
a92177ea | 1813 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1814 | F: drivers/media/rc/st_rc.c |
95d66b16 | 1815 | F: drivers/media/platform/sti/c8sectpfe/ |
f53b2bff | 1816 | F: drivers/mmc/host/sdhci-st.c |
e95cf393 | 1817 | F: drivers/phy/phy-miphy28lp.c |
6da969a5 | 1818 | F: drivers/phy/phy-stih407-usb.c |
346e2e4a | 1819 | F: drivers/pinctrl/pinctrl-st.c |
aac22524 | 1820 | F: drivers/remoteproc/st_remoteproc.c |
c9d7cc3e | 1821 | F: drivers/remoteproc/st_slim_rproc.c |
346e2e4a | 1822 | F: drivers/reset/sti/ |
db4112e6 | 1823 | F: drivers/rtc/rtc-st-lpc.c |
346e2e4a | 1824 | F: drivers/tty/serial/st-asc.c |
eb11adab | 1825 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1826 | F: drivers/usb/host/ehci-st.c |
1827 | F: drivers/usb/host/ohci-st.c | |
db4112e6 | 1828 | F: drivers/watchdog/st_lpc_wdt.c |
daac6f86 | 1829 | F: drivers/ata/ahci_st.c |
c9d7cc3e | 1830 | F: include/linux/remoteproc/st_slim_rproc.h |
65ebcc11 | 1831 | |
ee6e7879 MC |
1832 | ARM/STM32 ARCHITECTURE |
1833 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> | |
8ca2cf2c | 1834 | M: Alexandre Torgue <alexandre.torgue@st.com> |
ee6e7879 MC |
1835 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1836 | S: Maintained | |
1837 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git | |
1838 | N: stm32 | |
1839 | F: drivers/clocksource/armv7m_systick.c | |
1840 | ||
d6de5b02 MG |
1841 | ARM/TANGO ARCHITECTURE |
1842 | M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com> | |
1843 | L: linux-arm-kernel@lists.infradead.org | |
1844 | S: Maintained | |
e2bd0d37 | 1845 | N: tango |
d6de5b02 | 1846 | |
2b7a52a4 | 1847 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1848 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1849 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1850 | S: Maintained |
1851 | ||
1bbd7089 | 1852 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1853 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1854 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1855 | S: Maintained | |
1856 | ||
2b7a52a4 | 1857 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1858 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1859 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1860 | S: Maintained |
1861 | ||
98ad6e3b | 1862 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1863 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1864 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1865 | W: http://www.mcuos.com |
1866 | S: Maintained | |
4e89e8f6 | 1867 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1868 | F: drivers/input/keyboard/w90p910_keypad.c |
1869 | F: drivers/input/touchscreen/w90p910_ts.c | |
1870 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1871 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1872 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1873 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1874 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1875 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1876 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1877 | |
54274d71 | 1878 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1879 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1880 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1881 | S: Supported | |
1882 | F: arch/arm/mach-u300/ | |
9affbd24 | 1883 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1884 | F: drivers/i2c/busses/i2c-stu300.c |
1885 | F: drivers/rtc/rtc-coh901331.c | |
1886 | F: drivers/watchdog/coh901327_wdt.c | |
1887 | F: drivers/dma/coh901318* | |
87572880 LW |
1888 | F: drivers/mfd/ab3100* |
1889 | F: drivers/rtc/rtc-ab3100.c | |
1890 | F: drivers/rtc/rtc-coh901331.c | |
1891 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1892 | |
3d00d04f MY |
1893 | ARM/UNIPHIER ARCHITECTURE |
1894 | M: Masahiro Yamada <yamada.masahiro@socionext.com> | |
1895 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
becc8d3c | 1896 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git |
3d00d04f | 1897 | S: Maintained |
a3ff83d2 | 1898 | F: arch/arm/boot/dts/uniphier* |
e7ecbc05 | 1899 | F: arch/arm/include/asm/hardware/cache-uniphier.h |
3d00d04f | 1900 | F: arch/arm/mach-uniphier/ |
e7ecbc05 | 1901 | F: arch/arm/mm/cache-uniphier.c |
e1a0ebc8 | 1902 | F: arch/arm64/boot/dts/socionext/ |
4b7f48d3 | 1903 | F: drivers/bus/uniphier-system-bus.c |
734d82f4 | 1904 | F: drivers/clk/uniphier/ |
dd6fd4a3 | 1905 | F: drivers/i2c/busses/i2c-uniphier* |
a3ff83d2 | 1906 | F: drivers/pinctrl/uniphier/ |
54e991b5 | 1907 | F: drivers/reset/reset-uniphier.c |
a3ff83d2 | 1908 | F: drivers/tty/serial/8250/8250_uniphier.c |
3d00d04f MY |
1909 | N: uniphier |
1910 | ||
87572880 | 1911 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1912 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1913 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1914 | S: Maintained | |
1915 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1916 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1917 | F: drivers/dma/ste_dma40* |
e4651a9f | 1918 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1919 | F: drivers/mfd/abx500* |
1920 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1921 | F: drivers/mfd/dbx500* |
1922 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1923 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1924 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1925 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1926 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1927 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1928 | |
e93fde28 UH |
1929 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1930 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1931 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1932 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1933 | S: Maintained | |
1934 | F: drivers/clk/ux500/ | |
e93fde28 | 1935 | |
740d93b1 PM |
1936 | ARM/VERSATILE EXPRESS PLATFORM |
1937 | M: Liviu Dudau <liviu.dudau@arm.com> | |
1938 | M: Sudeep Holla <sudeep.holla@arm.com> | |
1939 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
1940 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1941 | S: Maintained | |
1942 | F: arch/arm/boot/dts/vexpress* | |
e68d7c14 | 1943 | F: arch/arm64/boot/dts/arm/ |
740d93b1 PM |
1944 | F: arch/arm/mach-vexpress/ |
1945 | F: */*/vexpress* | |
7e8f403f | 1946 | F: */*/*/vexpress* |
740d93b1 PM |
1947 | F: drivers/clk/versatile/clk-vexpress-osc.c |
1948 | F: drivers/clocksource/versatile.c | |
46a600ea | 1949 | N: mps2 |
740d93b1 | 1950 | |
d4275354 | 1951 | ARM/VFP SUPPORT |
54176cc6 | 1952 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1953 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1954 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1955 | S: Maintained |
1956 | F: arch/arm/vfp/ | |
1957 | ||
e66b6d8e MV |
1958 | ARM/VOIPAC PXA270 SUPPORT |
1959 | M: Marek Vasut <marek.vasut@gmail.com> | |
1960 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1961 | S: Maintained | |
1962 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1963 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1964 | |
04529fe2 TP |
1965 | ARM/VT8500 ARM ARCHITECTURE |
1966 | M: Tony Prisk <linux@prisktech.co.nz> | |
1967 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1968 | S: Maintained | |
1969 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1970 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1971 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1972 | F: drivers/mmc/host/wmt-sdmmc.c |
1973 | F: drivers/pwm/pwm-vt8500.c | |
1974 | F: drivers/rtc/rtc-vt8500.c | |
1975 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1976 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1977 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1978 | F: drivers/video/fbdev/vt8500lcdfb.* |
1979 | F: drivers/video/fbdev/wm8505fb* | |
1980 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1981 | |
e66b6d8e MV |
1982 | ARM/ZIPIT Z2 SUPPORT |
1983 | M: Marek Vasut <marek.vasut@gmail.com> | |
1984 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1985 | S: Maintained | |
1986 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1987 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1988 | |
5ecc4b53 JN |
1989 | ARM/ZTE ARCHITECTURE |
1990 | M: Jun Nie <jun.nie@linaro.org> | |
15e2dcd6 | 1991 | M: Baoyou Xie <baoyou.xie@linaro.org> |
5ecc4b53 JN |
1992 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1993 | S: Maintained | |
1994 | F: arch/arm/mach-zx/ | |
1995 | F: drivers/clk/zte/ | |
8041311c | 1996 | F: drivers/reset/reset-zx2967.c |
15e2dcd6 | 1997 | F: drivers/soc/zte/ |
5ecc4b53 JN |
1998 | F: Documentation/devicetree/bindings/arm/zte.txt |
1999 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt | |
8041311c | 2000 | F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt |
15e2dcd6 BX |
2001 | F: Documentation/devicetree/bindings/soc/zte/ |
2002 | F: include/dt-bindings/soc/zx*.h | |
5ecc4b53 | 2003 | |
51f29d44 MS |
2004 | ARM/ZYNQ ARCHITECTURE |
2005 | M: Michal Simek <michal.simek@xilinx.com> | |
f0fd9ad8 | 2006 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
51f29d44 MS |
2007 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2008 | W: http://wiki.xilinx.com | |
d6448b76 | 2009 | T: git https://github.com/Xilinx/linux-xlnx.git |
51f29d44 MS |
2010 | S: Supported |
2011 | F: arch/arm/mach-zynq/ | |
bd2a337a | 2012 | F: drivers/cpuidle/cpuidle-zynq.c |
fb9d4959 | 2013 | F: drivers/block/xsysace.c |
c2fd4e38 MS |
2014 | N: zynq |
2015 | N: xilinx | |
2016 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 2017 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 2018 | F: drivers/mmc/host/sdhci-of-arasan.c |
ae9b56e3 | 2019 | F: drivers/edac/synopsys_edac.c |
51f29d44 | 2020 | |
48ec83bc | 2021 | ARM SMMU DRIVERS |
b8f9879e | 2022 | M: Will Deacon <will.deacon@arm.com> |
c8bff3a6 | 2023 | R: Robin Murphy <robin.murphy@arm.com> |
b8f9879e WD |
2024 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2025 | S: Maintained | |
2026 | F: drivers/iommu/arm-smmu.c | |
48ec83bc | 2027 | F: drivers/iommu/arm-smmu-v3.c |
e1d3c0fd | 2028 | F: drivers/iommu/io-pgtable-arm.c |
c8bff3a6 | 2029 | F: drivers/iommu/io-pgtable-arm-v7s.c |
b8f9879e | 2030 | |
38074229 CM |
2031 | ARM64 PORT (AARCH64 ARCHITECTURE) |
2032 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 2033 | M: Will Deacon <will.deacon@arm.com> |
38074229 | 2034 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9f273c24 | 2035 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git |
38074229 CM |
2036 | S: Maintained |
2037 | F: arch/arm64/ | |
d19766ec | 2038 | F: Documentation/arm64/ |
38074229 | 2039 | |
9d7005f9 LP |
2040 | AS3645A LED FLASH CONTROLLER DRIVER |
2041 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
2042 | L: linux-media@vger.kernel.org | |
2043 | T: git git://linuxtv.org/media_tree.git | |
2044 | S: Maintained | |
2045 | F: drivers/media/i2c/as3645a.c | |
b5dcee22 | 2046 | F: include/media/i2c/as3645a.h |
9d7005f9 | 2047 | |
7c94a8b2 LW |
2048 | ASAHI KASEI AK8974 DRIVER |
2049 | M: Linus Walleij <linus.walleij@linaro.org> | |
2050 | L: linux-iio@vger.kernel.org | |
2051 | W: http://www.akm.com/ | |
2052 | S: Supported | |
2053 | F: drivers/iio/magnetometer/ak8974.c | |
2054 | ||
d58de038 GJ |
2055 | ASC7621 HARDWARE MONITOR DRIVER |
2056 | M: George Joseph <george.joseph@fairview5.com> | |
968ce1b1 | 2057 | L: linux-hwmon@vger.kernel.org |
d58de038 GJ |
2058 | S: Maintained |
2059 | F: Documentation/hwmon/asc7621 | |
2060 | F: drivers/hwmon/asc7621.c | |
2061 | ||
b229ece9 | 2062 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 2063 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 2064 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 2065 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 2066 | W: http://acpi4asus.sf.net |
85091b71 | 2067 | S: Maintained |
b229ece9 CC |
2068 | F: drivers/platform/x86/asus*.c |
2069 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 2070 | |
f6a6bbae JPRV |
2071 | ASUS WIRELESS RADIO CONTROL DRIVER |
2072 | M: João Paulo Rechi Vita <jprvita@gmail.com> | |
2073 | L: platform-driver-x86@vger.kernel.org | |
2074 | S: Maintained | |
2075 | F: drivers/platform/x86/asus-wireless.c | |
2076 | ||
75aeddd1 DH |
2077 | ASYMMETRIC KEYS |
2078 | M: David Howells <dhowells@redhat.com> | |
2079 | L: keyrings@vger.kernel.org | |
2080 | S: Maintained | |
2081 | F: Documentation/crypto/asymmetric-keys.txt | |
2082 | F: include/linux/verification.h | |
2083 | F: include/crypto/public_key.h | |
2084 | F: include/crypto/pkcs7.h | |
2085 | F: crypto/asymmetric_keys/ | |
2086 | ||
953a6479 | 2087 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 2088 | R: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 2089 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 2090 | S: Odd fixes |
679655da JP |
2091 | F: Documentation/crypto/async-tx-api.txt |
2092 | F: crypto/async_tx/ | |
2093 | F: drivers/dma/ | |
2094 | F: include/linux/dmaengine.h | |
2095 | F: include/linux/async_tx.h | |
b3e5f263 | 2096 | |
a1867d36 | 2097 | AT24 EEPROM DRIVER |
14d77c4d | 2098 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
2099 | L: linux-i2c@vger.kernel.org |
2100 | S: Maintained | |
2101 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 2102 | F: include/linux/platform_data/at24.h |
a1867d36 | 2103 | |
e7839f25 | 2104 | ATA OVER ETHERNET (AOE) DRIVER |
fb903811 EC |
2105 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
2106 | W: http://www.openaoe.org/ | |
1da177e4 | 2107 | S: Supported |
679655da JP |
2108 | F: Documentation/aoe/ |
2109 | F: drivers/block/aoe/ | |
1da177e4 | 2110 | |
aad7a211 AB |
2111 | ATHEROS 71XX/9XXX GPIO DRIVER |
2112 | M: Alban Bedel <albeu@free.fr> | |
2113 | W: https://github.com/AlbanBedel/linux | |
2114 | T: git git://github.com/AlbanBedel/linux | |
2115 | S: Maintained | |
2116 | F: drivers/gpio/gpio-ath79.c | |
2117 | F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt | |
2118 | ||
9a10a870 | 2119 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 2120 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
2121 | L: linux-wireless@vger.kernel.org |
2122 | S: Supported | |
2123 | F: drivers/net/wireless/ath/* | |
2124 | ||
fa1c114f | 2125 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
2126 | M: Jiri Slaby <jirislaby@gmail.com> |
2127 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 2128 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f | 2129 | L: linux-wireless@vger.kernel.org |
72c706b7 | 2130 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 2131 | S: Maintained |
fa451753 | 2132 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 2133 | |
12e62d6f KV |
2134 | ATHEROS ATH6KL WIRELESS DRIVER |
2135 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
2136 | L: linux-wireless@vger.kernel.org | |
2137 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
9f273c24 | 2138 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
12e62d6f KV |
2139 | S: Supported |
2140 | F: drivers/net/wireless/ath/ath6kl/ | |
2141 | ||
2be7d22f | 2142 | WILOCITY WIL6210 WIRELESS DRIVER |
23ba8a66 | 2143 | M: Maya Erez <qca_merez@qca.qualcomm.com> |
2be7d22f VK |
2144 | L: linux-wireless@vger.kernel.org |
2145 | L: wil6210@qca.qualcomm.com | |
2146 | S: Supported | |
2147 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
2148 | F: drivers/net/wireless/ath/wil6210/ | |
dba4b74d | 2149 | F: include/uapi/linux/wil6210_uapi.h |
2be7d22f | 2150 | |
1d7e1e6b CL |
2151 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
2152 | M: Christian Lamparter <chunkeey@googlemail.com> | |
2153 | L: linux-wireless@vger.kernel.org | |
2154 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
2155 | S: Maintained | |
2156 | F: drivers/net/wireless/ath/carl9170/ | |
2157 | ||
2c2a6172 LT |
2158 | ATK0110 HWMON DRIVER |
2159 | M: Luca Tettamanti <kronos.it@gmail.com> | |
968ce1b1 | 2160 | L: linux-hwmon@vger.kernel.org |
2c2a6172 LT |
2161 | S: Maintained |
2162 | F: drivers/hwmon/asus_atk0110.c | |
2163 | ||
6f69a6d7 | 2164 | ATI_REMOTE2 DRIVER |
8b58be88 | 2165 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 2166 | S: Maintained |
679655da | 2167 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 2168 | |
7ae115b4 | 2169 | ATLX ETHERNET DRIVERS |
8b58be88 | 2170 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 2171 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 2172 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
2173 | W: http://sourceforge.net/projects/atl1 |
2174 | W: http://atl1.sourceforge.net | |
2175 | S: Maintained | |
2b133ad6 | 2176 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 2177 | |
1da177e4 | 2178 | ATM |
366c1bd1 | 2179 | M: Chas Williams <3chas3@gmail.com> |
476604de | 2180 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 2181 | L: netdev@vger.kernel.org |
1da177e4 LT |
2182 | W: http://linux-atm.sourceforge.net |
2183 | S: Maintained | |
679655da JP |
2184 | F: drivers/atm/ |
2185 | F: include/linux/atm* | |
c117ab84 | 2186 | F: include/uapi/linux/atm* |
1da177e4 | 2187 | |
04ac2f46 | 2188 | ATMEL AT91 / AT32 MCI DRIVER |
420a3879 | 2189 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
04ac2f46 NF |
2190 | S: Maintained |
2191 | F: drivers/mmc/host/atmel-mci.c | |
04ac2f46 | 2192 | |
f80cb488 | 2193 | ATMEL AT91 SAMA5D2-Compatible Shutdown Controller |
e085b9d8 | 2194 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
f80cb488 NF |
2195 | S: Supported |
2196 | F: drivers/power/reset/at91-sama5d2_shdwc.c | |
2197 | ||
b9cd7a25 | 2198 | ATMEL SAMA5D2 ADC DRIVER |
420a3879 | 2199 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
b9cd7a25 LD |
2200 | L: linux-iio@vger.kernel.org |
2201 | S: Supported | |
2202 | F: drivers/iio/adc/at91-sama5d2_adc.c | |
2203 | ||
dfae90ed | 2204 | ATMEL Audio ALSA driver |
e085b9d8 | 2205 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
dfae90ed BS |
2206 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
2207 | S: Supported | |
2208 | F: sound/soc/atmel | |
2209 | ||
6bd0f436 | 2210 | ATMEL XDMA DRIVER |
420a3879 | 2211 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
6bd0f436 LD |
2212 | L: linux-arm-kernel@lists.infradead.org |
2213 | L: dmaengine@vger.kernel.org | |
2214 | S: Supported | |
2215 | F: drivers/dma/at_xdmac.c | |
2216 | ||
888f2804 | 2217 | ATMEL I2C DRIVER |
420a3879 | 2218 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
888f2804 LD |
2219 | L: linux-i2c@vger.kernel.org |
2220 | S: Supported | |
2221 | F: drivers/i2c/busses/i2c-at91.c | |
2222 | ||
15515545 | 2223 | ATMEL ISI DRIVER |
420a3879 | 2224 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
15515545 JW |
2225 | L: linux-media@vger.kernel.org |
2226 | S: Supported | |
f2294c2d | 2227 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
2228 | F: include/media/atmel-isi.h |
2229 | ||
8f4c79ce | 2230 | ATMEL LCDFB DRIVER |
e085b9d8 | 2231 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
c69f677c | 2232 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 2233 | S: Maintained |
8a61f013 | 2234 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 2235 | F: include/video/atmel_lcdc.h |
8f4c79ce | 2236 | |
89e5785f | 2237 | ATMEL MACB ETHERNET DRIVER |
e085b9d8 | 2238 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
89e5785f | 2239 | S: Supported |
9f2f381f | 2240 | F: drivers/net/ethernet/cadence/ |
89e5785f | 2241 | |
5cbac98a | 2242 | ATMEL NAND DRIVER |
50cb2efa NF |
2243 | M: Wenyou Yang <wenyou.yang@atmel.com> |
2244 | M: Josh Wu <rainyfeeling@outlook.com> | |
5cbac98a JW |
2245 | L: linux-mtd@lists.infradead.org |
2246 | S: Supported | |
2247 | F: drivers/mtd/nand/atmel_nand* | |
2248 | ||
05c441ef | 2249 | ATMEL SDMMC DRIVER |
420a3879 | 2250 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
05c441ef | 2251 | L: linux-mmc@vger.kernel.org |
2252 | S: Supported | |
2253 | F: drivers/mmc/host/sdhci-of-at91.c | |
2254 | ||
754ce4f2 | 2255 | ATMEL SPI DRIVER |
e085b9d8 | 2256 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
754ce4f2 | 2257 | S: Supported |
9df92e6c | 2258 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 2259 | |
0ef09015 | 2260 | ATMEL SSC DRIVER |
e085b9d8 | 2261 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
0ef09015 BS |
2262 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2263 | S: Supported | |
2264 | F: drivers/misc/atmel-ssc.c | |
2265 | F: include/linux/atmel-ssc.h | |
2266 | ||
e9cb1c5a | 2267 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
e085b9d8 | 2268 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
e9cb1c5a NF |
2269 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2270 | S: Supported | |
2271 | F: drivers/misc/atmel_tclib.c | |
2272 | F: drivers/clocksource/tcb_clksrc.c | |
2273 | ||
914a3f3b | 2274 | ATMEL USBA UDC DRIVER |
e085b9d8 | 2275 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
a02875a6 | 2276 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
914a3f3b | 2277 | S: Supported |
faf2e1db | 2278 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 2279 | |
1da177e4 | 2280 | ATMEL WIRELESS DRIVER |
8b58be88 | 2281 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 2282 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
2283 | W: http://www.thekelleys.org.uk/atmel |
2284 | W: http://atmelwlandriver.sourceforge.net/ | |
2285 | S: Maintained | |
30fe0f9b | 2286 | F: drivers/net/wireless/atmel/atmel* |
1da177e4 | 2287 | |
a14c0f8f | 2288 | ATMEL MAXTOUCH DRIVER |
aaf578e1 ND |
2289 | M: Nick Dyer <nick@shmanahar.org> |
2290 | T: git git://github.com/ndyer/linux.git | |
2291 | S: Maintained | |
a14c0f8f ND |
2292 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt |
2293 | F: drivers/input/touchscreen/atmel_mxt_ts.c | |
2294 | F: include/linux/platform_data/atmel_mxt_ts.h | |
2295 | ||
26780d9e | 2296 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
2297 | M: Bradley Grove <linuxdrivers@attotech.com> |
2298 | L: linux-scsi@vger.kernel.org | |
2299 | W: http://www.attotech.com | |
2300 | S: Supported | |
2301 | F: drivers/scsi/esas2r | |
26780d9e | 2302 | |
bc6e17b8 SS |
2303 | ATUSB IEEE 802.15.4 RADIO DRIVER |
2304 | M: Stefan Schmidt <stefan@osg.samsung.com> | |
2305 | L: linux-wpan@vger.kernel.org | |
2306 | S: Maintained | |
2307 | F: drivers/net/ieee802154/atusb.c | |
2308 | F: drivers/net/ieee802154/atusb.h | |
2309 | F: drivers/net/ieee802154/at86rf230.h | |
2310 | ||
a92b7b80 | 2311 | AUDIT SUBSYSTEM |
915f389d | 2312 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 2313 | M: Eric Paris <eparis@redhat.com> |
915f389d | 2314 | L: linux-audit@redhat.com (moderated for non-subscribers) |
ad3f9a22 | 2315 | W: http://people.redhat.com/sgrubb/audit/ |
915f389d | 2316 | T: git git://git.infradead.org/users/pcmoore/audit |
a92b7b80 | 2317 | S: Maintained |
679655da | 2318 | F: include/linux/audit.h |
c117ab84 | 2319 | F: include/uapi/linux/audit.h |
679655da | 2320 | F: kernel/audit* |
a92b7b80 | 2321 | |
70e84049 | 2322 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 2323 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2324 | W: http://miguelojeda.es/auxdisplay.htm |
2325 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2326 | S: Maintained |
679655da JP |
2327 | F: drivers/auxdisplay/ |
2328 | F: include/linux/cfag12864b.h | |
70e84049 | 2329 | |
5f97f7f9 | 2330 | AVR32 ARCHITECTURE |
e336f61f HCE |
2331 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2332 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 2333 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 2334 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 2335 | W: http://avrfreaks.net/ |
e336f61f | 2336 | S: Maintained |
679655da | 2337 | F: arch/avr32/ |
5f97f7f9 HS |
2338 | |
2339 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
2340 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2341 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
2342 | S: Maintained | |
679655da | 2343 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 2344 | |
1da177e4 | 2345 | AX.25 NETWORK LAYER |
8b58be88 | 2346 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 2347 | L: linux-hams@vger.kernel.org |
d34cb28a | 2348 | W: http://www.linux-ax25.org/ |
1da177e4 | 2349 | S: Maintained |
c117ab84 | 2350 | F: include/uapi/linux/ax25.h |
679655da JP |
2351 | F: include/net/ax25.h |
2352 | F: net/ax25/ | |
1da177e4 | 2353 | |
c821d301 PR |
2354 | AXENTIA ASOC DRIVERS |
2355 | M: Peter Rosin <peda@axentia.se> | |
2356 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2357 | S: Maintained | |
2358 | F: Documentation/devicetree/bindings/sound/axentia,* | |
aa431124 | 2359 | F: sound/soc/atmel/tse850-pcm5142.c |
c821d301 | 2360 | |
21dd0ece PR |
2361 | AXENTIA ARM DEVICES |
2362 | M: Peter Rosin <peda@axentia.se> | |
2363 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2364 | S: Maintained | |
2365 | F: Documentation/devicetree/bindings/arm/axentia.txt | |
2366 | F: arch/arm/boot/dts/at91-linea.dtsi | |
2367 | F: arch/arm/boot/dts/at91-tse850-3.dts | |
2368 | ||
d5269395 | 2369 | AZ6007 DVB DRIVER |
5dc8a864 MCC |
2370 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2371 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d5269395 | 2372 | L: linux-media@vger.kernel.org |
a825eaec | 2373 | W: https://linuxtv.org |
d5269395 MCC |
2374 | T: git git://linuxtv.org/media_tree.git |
2375 | S: Maintained | |
2376 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
2377 | ||
6777376e HV |
2378 | AZTECH FM RADIO RECEIVER DRIVER |
2379 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2380 | L: linux-media@vger.kernel.org | |
2381 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2382 | W: https://linuxtv.org |
6777376e HV |
2383 | S: Maintained |
2384 | F: drivers/media/radio/radio-aztech* | |
2385 | ||
e2d1d6c0 | 2386 | B43 WIRELESS DRIVER |
e2d1d6c0 | 2387 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2388 | L: b43-dev@lists.infradead.org |
491b26b4 | 2389 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
8a72ed6f | 2390 | S: Odd Fixes |
58619b14 | 2391 | F: drivers/net/wireless/broadcom/b43/ |
e2d1d6c0 RD |
2392 | |
2393 | B43LEGACY WIRELESS DRIVER | |
8b58be88 | 2394 | M: Larry Finger <Larry.Finger@lwfinger.net> |
e2d1d6c0 | 2395 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2396 | L: b43-dev@lists.infradead.org |
491b26b4 | 2397 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 2398 | S: Maintained |
423e3ce3 | 2399 | F: drivers/net/wireless/broadcom/b43legacy/ |
e2d1d6c0 | 2400 | |
300abeb5 | 2401 | BACKLIGHT CLASS/SUBSYSTEM |
70d14fcf | 2402 | M: Lee Jones <lee.jones@linaro.org> |
80e5d455 LJ |
2403 | M: Daniel Thompson <daniel.thompson@linaro.org> |
2404 | M: Jingoo Han <jingoohan1@gmail.com> | |
9f273c24 | 2405 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git |
300abeb5 | 2406 | S: Maintained |
679655da JP |
2407 | F: drivers/video/backlight/ |
2408 | F: include/linux/backlight.h | |
80e5d455 LJ |
2409 | F: include/linux/pwm_backlight.h |
2410 | F: Documentation/devicetree/bindings/leds/backlight | |
300abeb5 | 2411 | |
c6c8fea2 | 2412 | BATMAN ADVANCED |
207df49e | 2413 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 2414 | M: Simon Wunderlich <sw@simonwunderlich.de> |
ca8e940c | 2415 | M: Antonio Quartulli <a@unstable.cc> |
1584f41f | 2416 | L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers) |
7b5e7396 | 2417 | W: https://www.open-mesh.org/ |
8b823170 | 2418 | Q: https://patchwork.open-mesh.org/project/batman/list/ |
c6c8fea2 | 2419 | S: Maintained |
286ddfb0 SE |
2420 | F: Documentation/ABI/testing/sysfs-class-net-batman-adv |
2421 | F: Documentation/ABI/testing/sysfs-class-net-mesh | |
2422 | F: Documentation/networking/batman-adv.txt | |
09748a22 | 2423 | F: include/uapi/linux/batman_adv.h |
c6c8fea2 SE |
2424 | F: net/batman-adv/ |
2425 | ||
e2d1d6c0 | 2426 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 2427 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
2428 | L: linux-hams@vger.kernel.org |
2429 | W: http://www.baycom.org/~tom/ham/ham.html | |
2430 | S: Maintained | |
679655da | 2431 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 2432 | |
cafe5635 | 2433 | BCACHE (BLOCK LAYER CACHE) |
d1aa1ab3 | 2434 | M: Kent Overstreet <kent.overstreet@gmail.com> |
cafe5635 KO |
2435 | L: linux-bcache@vger.kernel.org |
2436 | W: http://bcache.evilpiepirate.org | |
4d1034eb | 2437 | S: Orphan |
cafe5635 KO |
2438 | F: drivers/md/bcache/ |
2439 | ||
04bd844a HV |
2440 | BDISP ST MEDIA DRIVER |
2441 | M: Fabien Dessenne <fabien.dessenne@st.com> | |
2442 | L: linux-media@vger.kernel.org | |
2443 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2444 | W: https://linuxtv.org |
04bd844a HV |
2445 | S: Supported |
2446 | F: drivers/media/platform/sti/bdisp | |
2447 | ||
f34b87e4 HF |
2448 | DELTA ST MEDIA DRIVER |
2449 | M: Hugues Fruchet <hugues.fruchet@st.com> | |
2450 | L: linux-media@vger.kernel.org | |
2451 | T: git git://linuxtv.org/media_tree.git | |
2452 | W: https://linuxtv.org | |
2453 | S: Supported | |
2454 | F: drivers/media/platform/sti/delta | |
2455 | ||
e2d1d6c0 | 2456 | BEFS FILE SYSTEM |
db4ad036 LB |
2457 | M: Luis de Bethencourt <luisbg@osg.samsung.com> |
2458 | M: Salah Triki <salah.triki@gmail.com> | |
2459 | S: Maintained | |
2460 | T: git git://github.com/luisbg/linux-befs.git | |
679655da JP |
2461 | F: Documentation/filesystems/befs.txt |
2462 | F: fs/befs/ | |
e2d1d6c0 | 2463 | |
564ee360 | 2464 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
49e7d9df JP |
2465 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
2466 | L: netdev@vger.kernel.org | |
2467 | S: Maintained | |
2468 | F: drivers/net/ethernet/ec_bhf.c | |
564ee360 | 2469 | |
e2d1d6c0 | 2470 | BFS FILE SYSTEM |
8b58be88 | 2471 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 2472 | S: Maintained |
679655da JP |
2473 | F: Documentation/filesystems/bfs.txt |
2474 | F: fs/bfs/ | |
c117ab84 | 2475 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 2476 | |
1394f032 | 2477 | BLACKFIN ARCHITECTURE |
a4edbc10 | 2478 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 2479 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 2480 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
2481 | W: http://blackfin.uclinux.org |
2482 | S: Supported | |
679655da | 2483 | F: arch/blackfin/ |
566da5b2 | 2484 | |
e190d6b1 | 2485 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 2486 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
2487 | W: http://blackfin.uclinux.org |
2488 | S: Supported | |
7b35f033 | 2489 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 2490 | |
566da5b2 | 2491 | BLACKFIN RTC DRIVER |
b3fe92b0 | 2492 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
2493 | W: http://blackfin.uclinux.org |
2494 | S: Supported | |
679655da | 2495 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 2496 | |
936ed49a | 2497 | BLACKFIN SDH DRIVER |
109ec8c3 | 2498 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2499 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
2500 | W: http://blackfin.uclinux.org |
2501 | S: Supported | |
2502 | F: drivers/mmc/host/bfin_sdh.c | |
2503 | ||
1394f032 | 2504 | BLACKFIN SERIAL DRIVER |
8b58be88 | 2505 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2506 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
2507 | W: http://blackfin.uclinux.org |
2508 | S: Supported | |
8460241e | 2509 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 2510 | |
1e6d320f | 2511 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 2512 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
2513 | W: http://blackfin.uclinux.org |
2514 | S: Supported | |
679655da | 2515 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 2516 | |
d24ecfcc | 2517 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 2518 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2519 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
d24ecfcc BW |
2520 | W: http://blackfin.uclinux.org/ |
2521 | S: Supported | |
679655da | 2522 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 2523 | |
1e204377 SJ |
2524 | BLACKFIN MEDIA DRIVER |
2525 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
b3fe92b0 | 2526 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e204377 SJ |
2527 | W: http://blackfin.uclinux.org/ |
2528 | S: Supported | |
2529 | F: drivers/media/platform/blackfin/ | |
2530 | F: drivers/media/i2c/adv7183* | |
2531 | F: drivers/media/i2c/vs6624* | |
2532 | ||
b54cf35a JSM |
2533 | BLINKM RGB LED DRIVER |
2534 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
2535 | S: Maintained | |
2536 | F: drivers/leds/leds-blinkm.c | |
2537 | ||
1da177e4 | 2538 | BLOCK LAYER |
8b58be88 | 2539 | M: Jens Axboe <axboe@kernel.dk> |
82c426e0 | 2540 | L: linux-block@vger.kernel.org |
08deed1e | 2541 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 2542 | S: Maintained |
679655da | 2543 | F: block/ |
ae11f7ef | 2544 | F: kernel/trace/blktrace.c |
88459642 | 2545 | F: lib/sbitmap.c |
1da177e4 | 2546 | |
2b54aaef | 2547 | BLOCK2MTD DRIVER |
8b58be88 | 2548 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
2549 | L: linux-mtd@lists.infradead.org |
2550 | S: Maintained | |
679655da | 2551 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 2552 | |
63fbd24e | 2553 | BLUETOOTH DRIVERS |
8b58be88 | 2554 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2555 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2556 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 2557 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 2558 | W: http://www.bluez.org/ |
22e7a424 MH |
2559 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2560 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2561 | S: Maintained |
679655da | 2562 | F: drivers/bluetooth/ |
1da177e4 | 2563 | |
63fbd24e | 2564 | BLUETOOTH SUBSYSTEM |
8b58be88 | 2565 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2566 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2567 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
2568 | L: linux-bluetooth@vger.kernel.org |
2569 | W: http://www.bluez.org/ | |
22e7a424 MH |
2570 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2571 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2572 | S: Maintained |
679655da JP |
2573 | F: net/bluetooth/ |
2574 | F: include/net/bluetooth/ | |
1da177e4 LT |
2575 | |
2576 | BONDING DRIVER | |
79b30750 | 2577 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 2578 | M: Veaceslav Falico <vfalico@gmail.com> |
da29838d | 2579 | M: Andy Gospodarek <andy@greyhouse.net> |
a6c36ee6 | 2580 | L: netdev@vger.kernel.org |
ce00f85c JC |
2581 | W: http://sourceforge.net/projects/bonding/ |
2582 | S: Supported | |
679655da | 2583 | F: drivers/net/bonding/ |
c117ab84 | 2584 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2585 | |
b5f4df34 AS |
2586 | BPF (Safe dynamic programs and tools) |
2587 | M: Alexei Starovoitov <ast@kernel.org> | |
2588 | L: netdev@vger.kernel.org | |
2589 | L: linux-kernel@vger.kernel.org | |
2590 | S: Supported | |
2591 | F: kernel/bpf/ | |
5aa5bd14 DB |
2592 | F: tools/testing/selftests/bpf/ |
2593 | F: lib/test_bpf.c | |
b5f4df34 | 2594 | |
39105890 | 2595 | BROADCOM B44 10/100 ETHERNET DRIVER |
75c9510b | 2596 | M: Michael Chan <michael.chan@broadcom.com> |
39105890 GZ |
2597 | L: netdev@vger.kernel.org |
2598 | S: Supported | |
adfc5217 | 2599 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2600 | |
967dd82f FF |
2601 | BROADCOM B53 ETHERNET SWITCH DRIVER |
2602 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2603 | L: netdev@vger.kernel.org | |
2604 | L: openwrt-devel@lists.openwrt.org (subscribers-only) | |
2605 | S: Supported | |
2606 | F: drivers/net/dsa/b53/* | |
2607 | F: include/linux/platform_data/b53.h | |
2608 | ||
32ec90d5 FF |
2609 | BROADCOM GENET ETHERNET DRIVER |
2610 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2611 | L: netdev@vger.kernel.org | |
2612 | S: Supported | |
2613 | F: drivers/net/ethernet/broadcom/genet/ | |
2614 | ||
948c51e6 | 2615 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
67f0160f MY |
2616 | M: Rasesh Mody <rasesh.mody@cavium.com> |
2617 | M: Harish Patil <harish.patil@cavium.com> | |
2618 | M: Dept-GELinuxNICDev@cavium.com | |
948c51e6 MC |
2619 | L: netdev@vger.kernel.org |
2620 | S: Supported | |
adfc5217 JK |
2621 | F: drivers/net/ethernet/broadcom/bnx2.* |
2622 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 2623 | |
4d9d2cb0 | 2624 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
67f0160f MY |
2625 | M: Yuval Mintz <Yuval.Mintz@cavium.com> |
2626 | M: Ariel Elior <ariel.elior@cavium.com> | |
2627 | M: everest-linux-l2@cavium.com | |
4d9d2cb0 ET |
2628 | L: netdev@vger.kernel.org |
2629 | S: Supported | |
adfc5217 | 2630 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2631 | |
3f0d80b6 MC |
2632 | BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER |
2633 | M: Michael Chan <michael.chan@broadcom.com> | |
2634 | L: netdev@vger.kernel.org | |
2635 | S: Supported | |
2636 | F: drivers/net/ethernet/broadcom/bnxt/ | |
2637 | ||
90f4c594 | 2638 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
f18cf050 | 2639 | M: Florian Fainelli <f.fainelli@gmail.com> |
d3cc2e86 FF |
2640 | M: Ray Jui <rjui@broadcom.com> |
2641 | M: Scott Branden <sbranden@broadcom.com> | |
086f4704 | 2642 | M: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2643 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 | 2644 | S: Maintained |
ccf62f5a JM |
2645 | N: bcm281* |
2646 | N: bcm113* | |
2647 | N: bcm216* | |
2648 | N: kona | |
af4b8e37 | 2649 | F: arch/arm/mach-bcm/ |
af4b8e37 | 2650 | |
9209bec4 | 2651 | BROADCOM BCM2835 ARM ARCHITECTURE |
f680f25c | 2652 | M: Stephen Warren <swarren@wwwdotorg.org> |
8bcdd929 | 2653 | M: Lee Jones <lee@kernel.org> |
10b9e887 | 2654 | M: Eric Anholt <eric@anholt.net> |
f680f25c | 2655 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
82481129 | 2656 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
902dcd14 | 2657 | T: git git://github.com/anholt/linux |
f680f25c | 2658 | S: Maintained |
9209bec4 | 2659 | N: bcm2835 |
4a5a7a66 | 2660 | F: drivers/staging/vc04_services |
f680f25c | 2661 | |
5564f092 RM |
2662 | BROADCOM BCM47XX MIPS ARCHITECTURE |
2663 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2664 | M: Rafał Miłecki <zajec5@gmail.com> | |
2665 | L: linux-mips@linux-mips.org | |
2666 | S: Maintained | |
7ad2410c | 2667 | F: Documentation/devicetree/bindings/mips/brcm/ |
5564f092 RM |
2668 | F: arch/mips/bcm47xx/* |
2669 | F: arch/mips/include/asm/mach-bcm47xx/* | |
2670 | ||
9209bec4 | 2671 | BROADCOM BCM5301X ARM ARCHITECTURE |
5b293ebe | 2672 | M: Hauke Mehrtens <hauke@hauke-m.de> |
1a50cd8a RM |
2673 | M: Rafał Miłecki <zajec5@gmail.com> |
2674 | M: bcm-kernel-feedback-list@broadcom.com | |
5b293ebe HM |
2675 | L: linux-arm-kernel@lists.infradead.org |
2676 | S: Maintained | |
2677 | F: arch/arm/mach-bcm/bcm_5301x.c | |
1a50cd8a | 2678 | F: arch/arm/boot/dts/bcm5301x*.dtsi |
5b293ebe HM |
2679 | F: arch/arm/boot/dts/bcm470* |
2680 | ||
4ebd5047 RM |
2681 | BROADCOM BCM53573 ARM ARCHITECTURE |
2682 | M: Rafał Miłecki <rafal@milecki.pl> | |
2683 | L: linux-arm-kernel@lists.infradead.org | |
2684 | S: Maintained | |
2685 | F: arch/arm/boot/dts/bcm53573* | |
2686 | F: arch/arm/boot/dts/bcm47189* | |
2687 | ||
e076e962 FF |
2688 | BROADCOM BCM63XX ARM ARCHITECTURE |
2689 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2690 | M: bcm-kernel-feedback-list@broadcom.com |
20de823e | 2691 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
20de823e | 2692 | T: git git://github.com/broadcom/stblinux.git |
e076e962 | 2693 | S: Maintained |
d6f4e76e | 2694 | N: bcm63xx |
e076e962 | 2695 | |
7110e227 KC |
2696 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
2697 | M: Kevin Cernekee <cernekee@gmail.com> | |
2698 | L: linux-usb@vger.kernel.org | |
2699 | S: Maintained | |
2700 | F: drivers/usb/gadget/udc/bcm63xx_udc.* | |
2701 | ||
2df94fd6 | 2702 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2df94fd6 | 2703 | M: Brian Norris <computersforpeace@gmail.com> |
3b4b6fe9 FF |
2704 | M: Gregory Fong <gregory.0xf0@gmail.com> |
2705 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2706 | M: bcm-kernel-feedback-list@broadcom.com |
2df94fd6 | 2707 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2708 | T: git git://github.com/broadcom/stblinux.git |
2df94fd6 BN |
2709 | S: Maintained |
2710 | F: arch/arm/mach-bcm/*brcmstb* | |
2711 | F: arch/arm/boot/dts/bcm7*.dts* | |
e36661e4 | 2712 | F: drivers/bus/brcmstb_gisb.c |
5009a289 | 2713 | N: brcmstb |
2df94fd6 | 2714 | |
70371cef KC |
2715 | BROADCOM BMIPS MIPS ARCHITECTURE |
2716 | M: Kevin Cernekee <cernekee@gmail.com> | |
2717 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2718 | L: linux-mips@linux-mips.org | |
eb6725d0 | 2719 | T: git git://github.com/broadcom/stblinux.git |
70371cef KC |
2720 | S: Maintained |
2721 | F: arch/mips/bmips/* | |
2722 | F: arch/mips/include/asm/mach-bmips/* | |
2723 | F: arch/mips/kernel/*bmips* | |
338808de | 2724 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
c7c42ec2 | 2725 | F: drivers/irqchip/irq-bcm63* |
70371cef KC |
2726 | F: drivers/irqchip/irq-bcm7* |
2727 | F: drivers/irqchip/irq-brcmstb* | |
3271e610 | 2728 | F: include/linux/bcm963xx_nvram.h |
8fce60b8 | 2729 | F: include/linux/bcm963xx_tag.h |
70371cef | 2730 | |
20bb5505 MM |
2731 | BROADCOM BMIPS CPUFREQ DRIVER |
2732 | M: Markus Mayer <mmayer@broadcom.com> | |
2733 | M: bcm-kernel-feedback-list@broadcom.com | |
2734 | L: linux-pm@vger.kernel.org | |
2735 | S: Maintained | |
2736 | F: drivers/cpufreq/bmips-cpufreq.c | |
2737 | ||
948c51e6 | 2738 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
ccad0993 | 2739 | M: Siva Reddy Kallam <siva.kallam@broadcom.com> |
23629477 | 2740 | M: Prashant Sreedharan <prashant@broadcom.com> |
8b58be88 | 2741 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
2742 | L: netdev@vger.kernel.org |
2743 | S: Supported | |
adfc5217 | 2744 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2745 | |
a9533e7e | 2746 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2a734451 AS |
2747 | M: Arend van Spriel <arend.vanspriel@broadcom.com> |
2748 | M: Franky Lin <franky.lin@broadcom.com> | |
2749 | M: Hante Meuleman <hante.meuleman@broadcom.com> | |
a9533e7e | 2750 | L: linux-wireless@vger.kernel.org |
2a734451 | 2751 | L: brcm80211-dev-list.pdl@broadcom.com |
a9533e7e | 2752 | S: Supported |
05491d2c | 2753 | F: drivers/net/wireless/broadcom/brcm80211/ |
a9533e7e | 2754 | |
9958d6f9 | 2755 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2756 | M: QLogic-Storage-Upstream@qlogic.com |
9958d6f9 BPG |
2757 | L: linux-scsi@vger.kernel.org |
2758 | S: Supported | |
2759 | F: drivers/scsi/bnx2fc/ | |
2760 | ||
6a6b5ad0 | 2761 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2762 | M: QLogic-Storage-Upstream@qlogic.com |
6a6b5ad0 EW |
2763 | L: linux-scsi@vger.kernel.org |
2764 | S: Supported | |
2765 | F: drivers/scsi/bnx2i/ | |
2766 | ||
63f37ddf | 2767 | BROADCOM IPROC ARM ARCHITECTURE |
36c0237f SB |
2768 | M: Ray Jui <rjui@broadcom.com> |
2769 | M: Scott Branden <sbranden@broadcom.com> | |
63f37ddf | 2770 | M: Jon Mason <jonmason@broadcom.com> |
086f4704 | 2771 | M: bcm-kernel-feedback-list@broadcom.com |
36c0237f | 2772 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2773 | T: git git://github.com/broadcom/cygnus-linux.git |
36c0237f SB |
2774 | S: Maintained |
2775 | N: iproc | |
2776 | N: cygnus | |
5c161242 | 2777 | N: bcm[-_]nsp |
36c0237f SB |
2778 | N: bcm9113* |
2779 | N: bcm9583* | |
63f37ddf JM |
2780 | N: bcm9585* |
2781 | N: bcm9586* | |
2782 | N: bcm988312 | |
36c0237f | 2783 | N: bcm113* |
63f37ddf JM |
2784 | N: bcm583* |
2785 | N: bcm585* | |
2786 | N: bcm586* | |
2787 | N: bcm88312 | |
d76e21b8 | 2788 | F: arch/arm64/boot/dts/broadcom/ns2* |
5c161242 JM |
2789 | F: drivers/clk/bcm/clk-ns* |
2790 | F: drivers/pinctrl/bcm/pinctrl-ns* | |
36c0237f | 2791 | |
3b0213d5 GF |
2792 | BROADCOM BRCMSTB GPIO DRIVER |
2793 | M: Gregory Fong <gregory.0xf0@gmail.com> | |
9c2abe2f | 2794 | L: bcm-kernel-feedback-list@broadcom.com |
3b0213d5 GF |
2795 | S: Supported |
2796 | F: drivers/gpio/gpio-brcmstb.c | |
2797 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt | |
2798 | ||
7b7f588b | 2799 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2800 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2801 | L: bcm-kernel-feedback-list@broadcom.com |
2802 | S: Supported | |
2803 | F: drivers/gpio/gpio-bcm-kona.c | |
1db12cde | 2804 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
7b7f588b | 2805 | |
f6e734a8 RM |
2806 | BROADCOM NVRAM DRIVER |
2807 | M: Rafał Miłecki <zajec5@gmail.com> | |
2808 | L: linux-mips@linux-mips.org | |
2809 | S: Maintained | |
2810 | F: drivers/firmware/broadcom/* | |
2811 | ||
02787daa BN |
2812 | BROADCOM STB NAND FLASH DRIVER |
2813 | M: Brian Norris <computersforpeace@gmail.com> | |
1ddaa021 | 2814 | M: Kamal Dasu <kdasu.kdev@gmail.com> |
02787daa | 2815 | L: linux-mtd@lists.infradead.org |
1285734c | 2816 | L: bcm-kernel-feedback-list@broadcom.com |
02787daa BN |
2817 | S: Maintained |
2818 | F: drivers/mtd/nand/brcmnand/ | |
2819 | ||
bb446b57 MM |
2820 | BROADCOM STB AVS CPUFREQ DRIVER |
2821 | M: Markus Mayer <mmayer@broadcom.com> | |
2822 | M: bcm-kernel-feedback-list@broadcom.com | |
2823 | L: linux-pm@vger.kernel.org | |
2824 | S: Maintained | |
2825 | F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt | |
de322e08 | 2826 | F: drivers/cpufreq/brcmstb* |
bb446b57 | 2827 | |
c9678d86 RM |
2828 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2829 | M: Rafał Miłecki <zajec5@gmail.com> | |
2830 | L: linux-wireless@vger.kernel.org | |
2831 | S: Maintained | |
2832 | F: drivers/bcma/ | |
2833 | F: include/linux/bcma/ | |
2834 | ||
b8302205 FF |
2835 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2836 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2837 | L: netdev@vger.kernel.org | |
2838 | S: Supported | |
2839 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2840 | ||
42515e61 | 2841 | BROADCOM VULCAN ARM64 SOC |
3483b163 | 2842 | M: Jayachandran C. <c.jayachandran@gmail.com> |
086f4704 | 2843 | M: bcm-kernel-feedback-list@broadcom.com |
42515e61 | 2844 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
42515e61 J |
2845 | S: Maintained |
2846 | F: arch/arm64/boot/dts/broadcom/vulcan* | |
2847 | ||
592e8b32 SX |
2848 | BROADCOM NETXTREME-E ROCE DRIVER |
2849 | M: Selvin Xavier <selvin.xavier@broadcom.com> | |
2850 | M: Devesh Sharma <devesh.sharma@broadcom.com> | |
2851 | M: Somnath Kotur <somnath.kotur@broadcom.com> | |
2852 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> | |
2853 | L: linux-rdma@vger.kernel.org | |
2854 | W: http://www.broadcom.com | |
2855 | S: Supported | |
2856 | F: drivers/infiniband/hw/bnxt_re/ | |
2857 | F: include/uapi/rdma/bnxt_re-abi.h | |
2858 | ||
7725ccfd | 2859 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2860 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2861 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2862 | L: linux-scsi@vger.kernel.org |
2863 | S: Supported | |
2864 | F: drivers/scsi/bfa/ | |
7725ccfd | 2865 | |
8b230ed8 | 2866 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
67f0160f MY |
2867 | M: Rasesh Mody <rasesh.mody@cavium.com> |
2868 | M: Sudarsana Kalluru <sudarsana.kalluru@cavium.com> | |
2869 | M: Dept-GELinuxNICDev@cavium.com | |
8b230ed8 RM |
2870 | L: netdev@vger.kernel.org |
2871 | S: Supported | |
f844a0ea | 2872 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2873 | |
5cdf7f76 | 2874 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2875 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2876 | L: linux-scsi@vger.kernel.org |
2877 | S: Supported | |
679655da JP |
2878 | F: block/bsg.c |
2879 | F: include/linux/bsg.h | |
c117ab84 | 2880 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2881 | |
af39917d CL |
2882 | BT87X AUDIO DRIVER |
2883 | M: Clemens Ladisch <clemens@ladisch.de> | |
2884 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2885 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2886 | S: Maintained | |
2887 | F: Documentation/sound/alsa/Bt87x.txt | |
2888 | F: sound/pci/bt87x.c | |
2889 | ||
ff1d5c2f | 2890 | BT8XXGPIO DRIVER |
eb032b98 | 2891 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2892 | W: http://bu3sch.de/btgpio.php |
2893 | S: Maintained | |
72dbb705 | 2894 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2895 | |
eb1eb04f | 2896 | BTRFS FILE SYSTEM |
c0778e25 CM |
2897 | M: Chris Mason <clm@fb.com> |
2898 | M: Josef Bacik <jbacik@fb.com> | |
d8130624 | 2899 | M: David Sterba <dsterba@suse.com> |
eb1eb04f JP |
2900 | L: linux-btrfs@vger.kernel.org |
2901 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2902 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2903 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2904 | S: Maintained |
679655da JP |
2905 | F: Documentation/filesystems/btrfs.txt |
2906 | F: fs/btrfs/ | |
eb1eb04f | 2907 | |
1da177e4 | 2908 | BTTV VIDEO4LINUX DRIVER |
5dc8a864 MCC |
2909 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2910 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
661263b5 | 2911 | L: linux-media@vger.kernel.org |
a825eaec | 2912 | W: https://linuxtv.org |
275ffde4 | 2913 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2914 | S: Odd fixes |
618cd932 | 2915 | F: Documentation/media/v4l-drivers/bttv* |
90d72ac6 | 2916 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2917 | |
1f34923c KA |
2918 | BUSLOGIC SCSI DRIVER |
2919 | M: Khalid Aziz <khalid@gonehiking.org> | |
2920 | L: linux-scsi@vger.kernel.org | |
2921 | S: Maintained | |
2922 | F: drivers/scsi/BusLogic.* | |
2923 | F: drivers/scsi/FlashPoint.* | |
2924 | ||
af39917d CL |
2925 | C-MEDIA CMI8788 DRIVER |
2926 | M: Clemens Ladisch <clemens@ladisch.de> | |
2927 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2928 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2929 | S: Maintained | |
2930 | F: sound/pci/oxygen/ | |
2931 | ||
2141355f MS |
2932 | C6X ARCHITECTURE |
2933 | M: Mark Salter <msalter@redhat.com> | |
2934 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2935 | L: linux-c6x-dev@linux-c6x.org | |
2936 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2937 | S: Maintained | |
2938 | F: arch/c6x/ | |
2939 | ||
a5432f5a | 2940 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2941 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 2942 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
2943 | S: Supported |
2944 | F: Documentation/filesystems/caching/cachefiles.txt | |
2945 | F: fs/cachefiles/ | |
2946 | ||
c815ca39 HV |
2947 | CADET FM/AM RADIO RECEIVER DRIVER |
2948 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2949 | L: linux-media@vger.kernel.org | |
2950 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2951 | W: https://linuxtv.org |
c815ca39 HV |
2952 | S: Maintained |
2953 | F: drivers/media/radio/radio-cadet* | |
2954 | ||
77d5140f | 2955 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2956 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2957 | L: linux-media@vger.kernel.org |
275ffde4 | 2958 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2959 | S: Maintained |
618cd932 | 2960 | F: Documentation/media/v4l-drivers/cafe_ccic* |
90d72ac6 | 2961 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2962 | |
201b6bab | 2963 | CAIF NETWORK LAYER |
5c574f50 | 2964 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2965 | L: netdev@vger.kernel.org |
2966 | S: Supported | |
2967 | F: Documentation/networking/caif/ | |
2968 | F: drivers/net/caif/ | |
c117ab84 | 2969 | F: include/uapi/linux/caif/ |
201b6bab JP |
2970 | F: include/net/caif/ |
2971 | F: net/caif/ | |
2972 | ||
77dac90f | 2973 | CALGARY x86-64 IOMMU |
a6921c29 JM |
2974 | M: Muli Ben-Yehuda <mulix@mulix.org> |
2975 | M: Jon Mason <jdmason@kudzu.us> | |
2976 | L: iommu@lists.linux-foundation.org | |
77dac90f | 2977 | S: Maintained |
679655da JP |
2978 | F: arch/x86/kernel/pci-calgary_64.c |
2979 | F: arch/x86/kernel/tce_64.c | |
2980 | F: arch/x86/include/asm/calgary.h | |
2981 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2982 | |
e2d1d6c0 | 2983 | CAN NETWORK LAYER |
8d15d386 | 2984 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
f7214cf2 | 2985 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2986 | L: linux-can@vger.kernel.org |
84b0d715 | 2987 | W: https://github.com/linux-can |
870482a4 MKB |
2988 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2989 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
e2d1d6c0 | 2990 | S: Maintained |
f35f6c8f | 2991 | F: Documentation/networking/can.txt |
8d15d386 | 2992 | F: net/can/ |
8d15d386 | 2993 | F: include/linux/can/core.h |
c117ab84 CEB |
2994 | F: include/uapi/linux/can.h |
2995 | F: include/uapi/linux/can/bcm.h | |
2996 | F: include/uapi/linux/can/raw.h | |
2997 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2998 | |
4261a204 | 2999 | CAN NETWORK DRIVERS |
8b58be88 | 3000 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 3001 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 3002 | L: linux-can@vger.kernel.org |
84b0d715 | 3003 | W: https://github.com/linux-can |
870482a4 MKB |
3004 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
3005 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
4261a204 | 3006 | S: Maintained |
3636876a | 3007 | F: Documentation/devicetree/bindings/net/can/ |
8d15d386 OH |
3008 | F: drivers/net/can/ |
3009 | F: include/linux/can/dev.h | |
8d15d386 | 3010 | F: include/linux/can/platform/ |
c117ab84 CEB |
3011 | F: include/uapi/linux/can/error.h |
3012 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 3013 | |
95d16c72 | 3014 | CAPABILITIES |
39baa7e6 | 3015 | M: Serge Hallyn <serge@hallyn.com> |
95d16c72 | 3016 | L: linux-security-module@vger.kernel.org |
6305902c | 3017 | S: Supported |
95d16c72 | 3018 | F: include/linux/capability.h |
c117ab84 | 3019 | F: include/uapi/linux/capability.h |
6305902c | 3020 | F: security/commoncap.c |
38a94118 | 3021 | F: kernel/capability.c |
95d16c72 | 3022 | |
b84894c7 KT |
3023 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
3024 | M: Kevin Tsai <ktsai@capellamicro.com> | |
3025 | S: Maintained | |
3026 | F: drivers/iio/light/cm* | |
8c27ceff | 3027 | F: Documentation/devicetree/bindings/i2c/trivial-admin-guide/devices.rst |
b84894c7 | 3028 | |
971d33cb J |
3029 | CAVIUM THUNDERX2 ARM64 SOC |
3030 | M: Jayachandran C <jnair@caviumnetworks.com> | |
3031 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
3032 | S: Maintained | |
3033 | F: arch/arm64/boot/dts/cavium/thunder-99xx* | |
3034 | F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt | |
3035 | ||
f9484852 JG |
3036 | CAVIUM I2C DRIVER |
3037 | M: Jan Glauber <jglauber@cavium.com> | |
3038 | M: David Daney <david.daney@cavium.com> | |
3039 | W: http://www.cavium.com | |
3040 | S: Supported | |
3041 | F: drivers/i2c/busses/i2c-octeon* | |
3042 | F: drivers/i2c/busses/i2c-thunderx* | |
3043 | ||
f21fb3ed RV |
3044 | CAVIUM LIQUIDIO NETWORK DRIVER |
3045 | M: Derek Chickles <derek.chickles@caviumnetworks.com> | |
3046 | M: Satanand Burla <satananda.burla@caviumnetworks.com> | |
3047 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> | |
3048 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> | |
3049 | L: netdev@vger.kernel.org | |
3050 | W: http://www.cavium.com | |
3051 | S: Supported | |
f21fb3ed RV |
3052 | F: drivers/net/ethernet/cavium/liquidio/ |
3053 | ||
62ad8b5c GC |
3054 | CAVIUM OCTEON-TX CRYPTO DRIVER |
3055 | M: George Cherian <george.cherian@cavium.com> | |
3056 | L: linux-crypto@vger.kernel.org | |
3057 | W: http://www.cavium.com | |
3058 | S: Supported | |
3059 | F: drivers/crypto/cavium/cpt/ | |
3060 | ||
ef0bbac3 VB |
3061 | CC2520 IEEE-802.15.4 RADIO DRIVER |
3062 | M: Varka Bhadram <varkabhadram@gmail.com> | |
3063 | L: linux-wpan@vger.kernel.org | |
3064 | S: Maintained | |
3065 | F: drivers/net/ieee802154/cc2520.c | |
3066 | F: include/linux/spi/cc2520.h | |
3067 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt | |
3068 | ||
ca684386 HV |
3069 | CEC DRIVER |
3070 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
3071 | L: linux-media@vger.kernel.org | |
3072 | T: git git://linuxtv.org/media_tree.git | |
3073 | W: http://linuxtv.org | |
3074 | S: Supported | |
104eda6d | 3075 | F: Documentation/media/kapi/cec-core.rst |
618cd932 | 3076 | F: Documentation/media/uapi/cec |
104eda6d | 3077 | F: drivers/media/cec/ |
ca684386 HV |
3078 | F: drivers/media/cec-edid.c |
3079 | F: drivers/media/rc/keymaps/rc-cec.c | |
3080 | F: include/media/cec.h | |
3081 | F: include/media/cec-edid.h | |
104eda6d HV |
3082 | F: include/uapi/linux/cec.h |
3083 | F: include/uapi/linux/cec-funcs.h | |
ca684386 | 3084 | |
b8154542 | 3085 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 3086 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 | 3087 | L: linuxppc-dev@lists.ozlabs.org |
b8154542 AB |
3088 | W: http://www.ibm.com/developerworks/power/cell/ |
3089 | S: Supported | |
679655da | 3090 | F: arch/powerpc/include/asm/cell*.h |
679655da | 3091 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 3092 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
3093 | F: arch/powerpc/oprofile/*cell* |
3094 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 3095 | |
398ecff5 SW |
3096 | CEPH COMMON CODE (LIBCEPH) |
3097 | M: Ilya Dryomov <idryomov@gmail.com> | |
e43cdb56 | 3098 | M: "Yan, Zheng" <zyan@redhat.com> |
0f5417ce | 3099 | M: Sage Weil <sage@redhat.com> |
82593f87 | 3100 | L: ceph-devel@vger.kernel.org |
09d90327 | 3101 | W: http://ceph.com/ |
fb99f881 | 3102 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
6e67b7ae | 3103 | T: git git://github.com/ceph/ceph-client.git |
9030aaf9 | 3104 | S: Supported |
14430813 JP |
3105 | F: net/ceph/ |
3106 | F: include/linux/ceph/ | |
3107 | F: include/linux/crush/ | |
9030aaf9 | 3108 | |
398ecff5 SW |
3109 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
3110 | M: "Yan, Zheng" <zyan@redhat.com> | |
3111 | M: Sage Weil <sage@redhat.com> | |
3112 | M: Ilya Dryomov <idryomov@gmail.com> | |
3113 | L: ceph-devel@vger.kernel.org | |
3114 | W: http://ceph.com/ | |
3115 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 3116 | T: git git://github.com/ceph/ceph-client.git |
398ecff5 SW |
3117 | S: Supported |
3118 | F: Documentation/filesystems/ceph.txt | |
3119 | F: fs/ceph/ | |
3120 | ||
cfc411e7 DH |
3121 | CERTIFICATE HANDLING: |
3122 | M: David Howells <dhowells@redhat.com> | |
3123 | M: David Woodhouse <dwmw2@infradead.org> | |
d8d80386 | 3124 | L: keyrings@vger.kernel.org |
cfc411e7 DH |
3125 | S: Maintained |
3126 | F: Documentation/module-signing.txt | |
3127 | F: certs/ | |
d8d80386 | 3128 | F: scripts/sign-file.c |
cfc411e7 DH |
3129 | F: scripts/extract-cert.c |
3130 | ||
18332a80 | 3131 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 3132 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 3133 | S: Orphan |
679655da JP |
3134 | F: Documentation/usb/WUSB-Design-overview.txt |
3135 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
3136 | F: drivers/usb/host/hwa-hc.c |
3137 | F: drivers/usb/host/whci/ | |
679655da JP |
3138 | F: drivers/usb/wusbcore/ |
3139 | F: include/linux/usb/wusb* | |
18332a80 | 3140 | |
c4d7e510 RG |
3141 | HT16K33 LED CONTROLLER DRIVER |
3142 | M: Robin van der Gracht <robin@protonic.nl> | |
3143 | S: Maintained | |
3144 | F: drivers/auxdisplay/ht16k33.c | |
3145 | F: Documentation/devicetree/bindings/display/ht16k33.txt | |
3146 | ||
70e84049 | 3147 | CFAG12864B LCD DRIVER |
8b58be88 | 3148 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
3149 | W: http://miguelojeda.es/auxdisplay.htm |
3150 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 3151 | S: Maintained |
679655da JP |
3152 | F: drivers/auxdisplay/cfag12864b.c |
3153 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
3154 | |
3155 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 3156 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
3157 | W: http://miguelojeda.es/auxdisplay.htm |
3158 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 3159 | S: Maintained |
679655da JP |
3160 | F: drivers/auxdisplay/cfag12864bfb.c |
3161 | F: include/linux/cfag12864b.h | |
70e84049 | 3162 | |
704232c2 | 3163 | CFG80211 and NL80211 |
8b58be88 | 3164 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 3165 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
3166 | W: http://wireless.kernel.org/ |
3167 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
3168 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 3169 | S: Maintained |
c117ab84 | 3170 | F: include/uapi/linux/nl80211.h |
679655da JP |
3171 | F: include/net/cfg80211.h |
3172 | F: net/wireless/* | |
3173 | X: net/wireless/wext* | |
704232c2 | 3174 | |
46e64261 GKH |
3175 | CHAR and MISC DRIVERS |
3176 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 3177 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 3178 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 3179 | S: Supported |
46e64261 GKH |
3180 | F: drivers/char/* |
3181 | F: drivers/misc/* | |
471322a8 | 3182 | F: include/linux/miscdevice.h |
46e64261 | 3183 | |
0a920b5b | 3184 | CHECKPATCH |
8b58be88 | 3185 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
3186 | M: Joe Perches <joe@perches.com> |
3187 | S: Maintained | |
679655da | 3188 | F: scripts/checkpatch.pl |
0a920b5b | 3189 | |
f8407f26 HW |
3190 | CHINESE DOCUMENTATION |
3191 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 3192 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
3193 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
3194 | S: Maintained | |
f5ff9b63 | 3195 | F: Documentation/translations/zh_CN/ |
f8407f26 | 3196 | |
2721ea2c | 3197 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
60d77b3d | 3198 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 3199 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
2721ea2c AS |
3200 | L: linux-usb@vger.kernel.org |
3201 | S: Maintained | |
3202 | F: drivers/usb/chipidea/ | |
3203 | ||
a93ad65d HG |
3204 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
3205 | M: Hans de Goede <hdegoede@redhat.com> | |
3206 | L: linux-input@vger.kernel.org | |
3207 | S: Maintained | |
3208 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | |
3209 | F: drivers/input/touchscreen/chipone_icn8318.c | |
3210 | ||
ab043105 OJ |
3211 | CHROME HARDWARE PLATFORM SUPPORT |
3212 | M: Olof Johansson <olof@lixom.net> | |
3213 | S: Maintained | |
9f273c24 | 3214 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git |
ab043105 OJ |
3215 | F: drivers/platform/chrome/ |
3216 | ||
641cb85e | 3217 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 3218 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 3219 | M: Sujith Sankar <ssujith@cisco.com> |
c327e8f4 | 3220 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
5c6652f5 | 3221 | M: Neel Patel <neepatel@cisco.com> |
7063fbf2 | 3222 | S: Supported |
a6a5580c | 3223 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 3224 | |
e3cf00d0 | 3225 | CISCO VIC LOW LATENCY NIC DRIVER |
35ef4a9e DG |
3226 | M: Christian Benvenuti <benve@cisco.com> |
3227 | M: Dave Goodell <dgoodell@cisco.com> | |
b75f0050 | 3228 | S: Supported |
35ef4a9e | 3229 | F: drivers/infiniband/hw/usnic/ |
e3cf00d0 | 3230 | |
2b7a52a4 | 3231 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 3232 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
3233 | L: netdev@vger.kernel.org |
3234 | S: Maintained | |
57d0b7a0 | 3235 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 3236 | |
3d4cfdc9 MB |
3237 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
3238 | M: Brian Austin <brian.austin@cirrus.com> | |
3239 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
3240 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3241 | S: Maintained | |
3242 | F: sound/soc/codecs/cs* | |
3243 | ||
94574d9a KRW |
3244 | CLEANCACHE API |
3245 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3246 | L: linux-kernel@vger.kernel.org | |
3247 | S: Maintained | |
3248 | F: mm/cleancache.c | |
3249 | F: include/linux/cleancache.h | |
3250 | ||
d4275354 | 3251 | CLK API |
54176cc6 | 3252 | M: Russell King <linux@armlinux.org.uk> |
aa571b14 | 3253 | L: linux-clk@vger.kernel.org |
37417046 | 3254 | S: Maintained |
d4275354 RK |
3255 | F: include/linux/clk.h |
3256 | ||
9222d247 JS |
3257 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
3258 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3259 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 3260 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
3261 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
3262 | S: Supported | |
3263 | F: drivers/clocksource | |
3264 | ||
5df6d737 | 3265 | CISCO FCOE HBA DRIVER |
6593ccd8 SK |
3266 | M: Satish Kharat <satishkh@cisco.com> |
3267 | M: Sesidhar Baddela <sebaddel@cisco.com> | |
3268 | M: Karan Tilak Kumar <kartilak@cisco.com> | |
5df6d737 AJ |
3269 | L: linux-scsi@vger.kernel.org |
3270 | S: Supported | |
2a99921a | 3271 | F: drivers/scsi/fnic/ |
5df6d737 | 3272 | |
c8806b6c | 3273 | CISCO SCSI HBA DRIVER |
6593ccd8 | 3274 | M: Karan Tilak Kumar <kartilak@cisco.com> |
c8806b6c NM |
3275 | M: Sesidhar Baddela <sebaddel@cisco.com> |
3276 | L: linux-scsi@vger.kernel.org | |
3277 | S: Supported | |
3278 | F: drivers/scsi/snic/ | |
3279 | ||
529aa8cb TLSC |
3280 | CMPC ACPI DRIVER |
3281 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
3282 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 3283 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
3284 | S: Supported |
3285 | F: drivers/platform/x86/classmate-laptop.c | |
3286 | ||
85756a06 HV |
3287 | COBALT MEDIA DRIVER |
3288 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
3289 | L: linux-media@vger.kernel.org | |
3290 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3291 | W: https://linuxtv.org |
85756a06 HV |
3292 | S: Supported |
3293 | F: drivers/media/pci/cobalt/ | |
3294 | ||
74425eee | 3295 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 3296 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 3297 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 3298 | M: Nicolas Palix <nicolas.palix@imag.fr> |
d8130624 | 3299 | M: Michal Marek <mmarek@suse.com> |
26de9c26 | 3300 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 3301 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
3302 | W: http://coccinelle.lip6.fr/ |
3303 | S: Supported | |
4b9033a3 | 3304 | F: Documentation/dev-tools/coccinelle.rst |
74425eee NP |
3305 | F: scripts/coccinelle/ |
3306 | F: scripts/coccicheck | |
3307 | ||
1da177e4 | 3308 | CODA FILE SYSTEM |
8b58be88 | 3309 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
3310 | M: coda@cs.cmu.edu |
3311 | L: codalist@coda.cs.cmu.edu | |
3312 | W: http://www.coda.cs.cmu.edu/ | |
3313 | S: Maintained | |
679655da JP |
3314 | F: Documentation/filesystems/coda.txt |
3315 | F: fs/coda/ | |
3316 | F: include/linux/coda*.h | |
c117ab84 | 3317 | F: include/uapi/linux/coda*.h |
1da177e4 | 3318 | |
0b14261e PZ |
3319 | CODA V4L2 MEM2MEM DRIVER |
3320 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
3321 | L: linux-media@vger.kernel.org | |
3322 | S: Maintained | |
3323 | F: Documentation/devicetree/bindings/media/coda.txt | |
3324 | F: drivers/media/platform/coda/ | |
3325 | ||
7704addb | 3326 | COMMON CLK FRAMEWORK |
a85fa007 | 3327 | M: Michael Turquette <mturquette@baylibre.com> |
f956165f | 3328 | M: Stephen Boyd <sboyd@codeaurora.org> |
aa571b14 | 3329 | L: linux-clk@vger.kernel.org |
22d61acf | 3330 | Q: http://patchwork.kernel.org/project/linux-clk/list/ |
baeb0d9b | 3331 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
7704addb | 3332 | S: Maintained |
ae4185cd | 3333 | F: Documentation/devicetree/bindings/clock/ |
60bea3b5 SW |
3334 | F: drivers/clk/ |
3335 | X: drivers/clk/clkdev.c | |
7704addb | 3336 | F: include/linux/clk-pr* |
60bea3b5 | 3337 | F: include/linux/clk/ |
7704addb | 3338 | |
e2d1d6c0 | 3339 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 3340 | M: Steve French <sfrench@samba.org> |
51223df6 | 3341 | L: linux-cifs@vger.kernel.org |
d1f28953 | 3342 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 3343 | W: http://linux-cifs.samba.org/ |
bb1d5dda | 3344 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
e2d1d6c0 | 3345 | S: Supported |
ec421a71 | 3346 | F: Documentation/filesystems/cifs/ |
679655da | 3347 | F: fs/cifs/ |
e2d1d6c0 | 3348 | |
1da177e4 | 3349 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 3350 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3351 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3352 | S: Maintained |
679655da | 3353 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
3354 | |
3355 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 3356 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3357 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3358 | S: Maintained |
679655da | 3359 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
3360 | |
3361 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 3362 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3363 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3364 | S: Maintained |
679655da | 3365 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 3366 | |
5411552c | 3367 | COMPAL LAPTOP SUPPORT |
8b58be88 | 3368 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 3369 | L: platform-driver-x86@vger.kernel.org |
5411552c | 3370 | S: Maintained |
679655da | 3371 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 3372 | |
949be0f7 | 3373 | CONEXANT ACCESSRUNNER USB DRIVER |
9ae5e3bc SA |
3374 | L: accessrunner-general@lists.sourceforge.net |
3375 | W: http://accessrunner.sourceforge.net/ | |
44243ef4 | 3376 | S: Orphan |
679655da | 3377 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 3378 | |
e2d1d6c0 | 3379 | CONFIGFS |
d6351db2 | 3380 | M: Joel Becker <jlbec@evilplan.org> |
1609bac8 CH |
3381 | M: Christoph Hellwig <hch@lst.de> |
3382 | T: git git://git.infradead.org/users/hch/configfs.git | |
e2d1d6c0 | 3383 | S: Supported |
679655da JP |
3384 | F: fs/configfs/ |
3385 | F: include/linux/configfs.h | |
e2d1d6c0 | 3386 | |
acb9c1b2 | 3387 | CONNECTOR |
8b58be88 | 3388 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
3389 | L: netdev@vger.kernel.org |
3390 | S: Maintained | |
3391 | F: drivers/connector/ | |
3392 | ||
a3e3354d | 3393 | CONTROL GROUP (CGROUP) |
860ca0e6 | 3394 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 3395 | M: Li Zefan <lizefan@huawei.com> |
4d205676 | 3396 | M: Johannes Weiner <hannes@cmpxchg.org> |
12340313 | 3397 | L: cgroups@vger.kernel.org |
860ca0e6 | 3398 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 3399 | S: Maintained |
4b16b0c0 | 3400 | F: Documentation/cgroup* |
679655da JP |
3401 | F: include/linux/cgroup* |
3402 | F: kernel/cgroup* | |
a3e3354d TH |
3403 | |
3404 | CONTROL GROUP - CPUSET | |
3405 | M: Li Zefan <lizefan@huawei.com> | |
3406 | L: cgroups@vger.kernel.org | |
3407 | W: http://www.bullopensource.org/cpuset/ | |
3408 | W: http://oss.sgi.com/projects/cpusets/ | |
3409 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
3410 | S: Maintained | |
4b16b0c0 | 3411 | F: Documentation/cgroup-v1/cpusets.txt |
a3e3354d TH |
3412 | F: include/linux/cpuset.h |
3413 | F: kernel/cpuset.c | |
3414 | ||
3415 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
3416 | M: Johannes Weiner <hannes@cmpxchg.org> | |
fbd7dc74 | 3417 | M: Michal Hocko <mhocko@kernel.org> |
c4e29738 | 3418 | M: Vladimir Davydov <vdavydov.dev@gmail.com> |
a3e3354d TH |
3419 | L: cgroups@vger.kernel.org |
3420 | L: linux-mm@kvack.org | |
3421 | S: Maintained | |
3422 | F: mm/memcontrol.c | |
5d1ea48b | 3423 | F: mm/swap_cgroup.c |
fb3a0fb6 | 3424 | |
bebe4678 | 3425 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 3426 | M: Fenghua Yu <fenghua.yu@intel.com> |
968ce1b1 | 3427 | L: linux-hwmon@vger.kernel.org |
bebe4678 | 3428 | S: Maintained |
679655da JP |
3429 | F: Documentation/hwmon/coretemp |
3430 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 3431 | |
1da177e4 | 3432 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 3433 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
3434 | W: http://www.fi.muni.cz/~kas/cosa/ |
3435 | S: Maintained | |
679655da | 3436 | F: drivers/net/wan/cosa* |
1da177e4 | 3437 | |
4371ee35 | 3438 | CPMAC ETHERNET DRIVER |
9dd4aaef | 3439 | M: Florian Fainelli <f.fainelli@gmail.com> |
4371ee35 FF |
3440 | L: netdev@vger.kernel.org |
3441 | S: Maintained | |
b544dbac | 3442 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 3443 | |
1da177e4 | 3444 | CPU FREQUENCY DRIVERS |
9c3646d1 | 3445 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
45c009a9 | 3446 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 3447 | L: linux-pm@vger.kernel.org |
1da177e4 | 3448 | S: Maintained |
27209d91 VK |
3449 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
3450 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
993e5483 | 3451 | B: https://bugzilla.kernel.org |
dabe73cb | 3452 | F: Documentation/cpu-freq/ |
679655da JP |
3453 | F: drivers/cpufreq/ |
3454 | F: include/linux/cpufreq.h | |
0a7d2cd7 | 3455 | F: tools/testing/selftests/cpufreq/ |
1da177e4 | 3456 | |
8a67f0ef VK |
3457 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
3458 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 3459 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
3460 | L: linux-pm@vger.kernel.org |
3461 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
3462 | S: Maintained | |
3463 | F: drivers/cpufreq/arm_big_little.h | |
3464 | F: drivers/cpufreq/arm_big_little.c | |
3465 | F: drivers/cpufreq/arm_big_little_dt.c | |
3466 | ||
14d2c34c | 3467 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
3468 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
3469 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3470 | L: linux-pm@vger.kernel.org | |
3471 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 3472 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
3473 | S: Maintained |
3474 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 3475 | |
0c570c18 BZ |
3476 | CPUIDLE DRIVER - ARM EXYNOS |
3477 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
3478 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3479 | M: Kukjin Kim <kgene@kernel.org> | |
3480 | L: linux-pm@vger.kernel.org | |
3481 | L: linux-samsung-soc@vger.kernel.org | |
3482 | S: Supported | |
3483 | F: drivers/cpuidle/cpuidle-exynos.c | |
3484 | F: arch/arm/mach-exynos/pm.c | |
3485 | ||
a8e39c35 | 3486 | CPUIDLE DRIVERS |
9c3646d1 | 3487 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
a8e39c35 DL |
3488 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
3489 | L: linux-pm@vger.kernel.org | |
3490 | S: Maintained | |
cea8321c | 3491 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2ed38cbe | 3492 | B: https://bugzilla.kernel.org |
a8e39c35 DL |
3493 | F: drivers/cpuidle/* |
3494 | F: include/linux/cpuidle.h | |
3495 | ||
1da177e4 | 3496 | CPUID/MSR DRIVER |
8b58be88 | 3497 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 3498 | S: Maintained |
679655da JP |
3499 | F: arch/x86/kernel/cpuid.c |
3500 | F: arch/x86/kernel/msr.c | |
1da177e4 | 3501 | |
7fe2f639 | 3502 | CPU POWER MONITORING SUBSYSTEM |
d8130624 | 3503 | M: Thomas Renninger <trenn@suse.com> |
103f1790 | 3504 | L: linux-pm@vger.kernel.org |
7fe2f639 | 3505 | S: Maintained |
14430813 | 3506 | F: tools/power/cpupower/ |
7fe2f639 | 3507 | |
1da177e4 | 3508 | CRAMFS FILESYSTEM |
ce00f85c | 3509 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 3510 | S: Orphan / Obsolete |
679655da JP |
3511 | F: Documentation/filesystems/cramfs.txt |
3512 | F: fs/cramfs/ | |
1da177e4 LT |
3513 | |
3514 | CRIS PORT | |
8b58be88 JP |
3515 | M: Mikael Starvik <starvik@axis.com> |
3516 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 3517 | L: linux-cris-kernel@axis.com |
1da177e4 | 3518 | W: http://developer.axis.com |
9f273c24 | 3519 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git |
1da177e4 | 3520 | S: Maintained |
679655da | 3521 | F: arch/cris/ |
df621252 | 3522 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
3523 | |
3524 | CRYPTO API | |
8b58be88 JP |
3525 | M: Herbert Xu <herbert@gondor.apana.org.au> |
3526 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 3527 | L: linux-crypto@vger.kernel.org |
9f273c24 | 3528 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git |
54e5881d | 3529 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 3530 | S: Maintained |
679655da | 3531 | F: Documentation/crypto/ |
fe1c445b | 3532 | F: Documentation/devicetree/bindings/crypto/ |
2ca87a17 | 3533 | F: Documentation/DocBook/crypto-API.tmpl |
679655da JP |
3534 | F: arch/*/crypto/ |
3535 | F: crypto/ | |
3536 | F: drivers/crypto/ | |
3537 | F: include/crypto/ | |
ff330f73 | 3538 | F: include/linux/crypto* |
1da177e4 | 3539 | |
5b07bd57 | 3540 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 3541 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
3542 | L: linux-crypto@vger.kernel.org |
3543 | S: Maintained | |
51a2228a JP |
3544 | F: crypto/ansi_cprng.c |
3545 | F: crypto/rng.c | |
5b07bd57 | 3546 | |
fc279cc2 HV |
3547 | CS3308 MEDIA DRIVER |
3548 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3549 | L: linux-media@vger.kernel.org | |
3550 | T: git git://linuxtv.org/media_tree.git | |
3551 | W: http://linuxtv.org | |
3552 | S: Odd Fixes | |
3553 | F: drivers/media/i2c/cs3308.c | |
3554 | F: drivers/media/i2c/cs3308.h | |
3555 | ||
9b4ffa48 | 3556 | CS5535 Audio ALSA driver |
8b58be88 | 3557 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 3558 | S: Maintained |
679655da | 3559 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 3560 | |
a910e4a9 | 3561 | CW1200 WLAN driver |
b75f0050 JP |
3562 | M: Solomon Peachy <pizza@shaftnet.org> |
3563 | S: Maintained | |
560424e9 | 3564 | F: drivers/net/wireless/st/cw1200/ |
a910e4a9 | 3565 | |
6d8425b1 | 3566 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 3567 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 3568 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 3569 | L: linux-media@vger.kernel.org |
275ffde4 | 3570 | T: git git://linuxtv.org/media_tree.git |
a825eaec | 3571 | W: https://linuxtv.org |
30e10993 | 3572 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 3573 | S: Maintained |
618cd932 | 3574 | F: Documentation/media/v4l-drivers/cx18* |
90d72ac6 | 3575 | F: drivers/media/pci/cx18/ |
6c0f0359 | 3576 | F: include/uapi/linux/ivtv* |
6d8425b1 | 3577 | |
3f101d91 HV |
3578 | CX2341X MPEG ENCODER HELPER MODULE |
3579 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3580 | L: linux-media@vger.kernel.org | |
3581 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3582 | W: https://linuxtv.org |
3f101d91 | 3583 | S: Maintained |
c368360b | 3584 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
3585 | F: include/media/cx2341x* |
3586 | ||
b8fe6e2c PB |
3587 | CX24120 MEDIA DRIVER |
3588 | M: Jemma Denson <jdenson@gmail.com> | |
3589 | M: Patrick Boettcher <patrick.boettcher@posteo.de> | |
3590 | L: linux-media@vger.kernel.org | |
a825eaec | 3591 | W: https://linuxtv.org |
b8fe6e2c PB |
3592 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3593 | S: Maintained | |
3594 | F: drivers/media/dvb-frontends/cx24120* | |
3595 | ||
20357578 | 3596 | CX88 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
3597 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
3598 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
20357578 | 3599 | L: linux-media@vger.kernel.org |
a825eaec | 3600 | W: https://linuxtv.org |
20357578 MCC |
3601 | T: git git://linuxtv.org/media_tree.git |
3602 | S: Odd fixes | |
618cd932 | 3603 | F: Documentation/media/v4l-drivers/cx88* |
20357578 | 3604 | F: drivers/media/pci/cx88/ |
6d8425b1 | 3605 | |
91952bc0 AP |
3606 | CXD2820R MEDIA DRIVER |
3607 | M: Antti Palosaari <crope@iki.fi> | |
3608 | L: linux-media@vger.kernel.org | |
a825eaec | 3609 | W: https://linuxtv.org |
91952bc0 AP |
3610 | W: http://palosaari.fi/linux/ |
3611 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3612 | T: git git://linuxtv.org/anttip/media_tree.git | |
3613 | S: Maintained | |
3614 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 3615 | |
e5ec3789 | 3616 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 3617 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
3618 | L: netdev@vger.kernel.org |
3619 | W: http://www.chelsio.com | |
3620 | S: Supported | |
f7917c00 | 3621 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 | 3622 | |
d8ae3c33 | 3623 | CXGB3 ISCSI DRIVER (CXGB3I) |
49e7d9df JP |
3624 | M: Karen Xie <kxie@chelsio.com> |
3625 | L: linux-scsi@vger.kernel.org | |
3626 | W: http://www.chelsio.com | |
3627 | S: Supported | |
3628 | F: drivers/scsi/cxgbi/cxgb3i | |
d8ae3c33 | 3629 | |
e5ec3789 | 3630 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
8b58be88 | 3631 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 3632 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
3633 | W: http://www.openfabrics.org |
3634 | S: Supported | |
679655da | 3635 | F: drivers/infiniband/hw/cxgb3/ |
a85fb338 | 3636 | F: include/uapi/rdma/cxgb3-abi.h |
e5ec3789 | 3637 | |
be4c9bad | 3638 | CXGB4 ETHERNET DRIVER (CXGB4) |
59cfa789 | 3639 | M: Ganesh Goudar <ganeshgr@chelsio.com> |
be4c9bad RD |
3640 | L: netdev@vger.kernel.org |
3641 | W: http://www.chelsio.com | |
3642 | S: Supported | |
f7917c00 | 3643 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad | 3644 | |
d8ae3c33 | 3645 | CXGB4 ISCSI DRIVER (CXGB4I) |
49e7d9df JP |
3646 | M: Karen Xie <kxie@chelsio.com> |
3647 | L: linux-scsi@vger.kernel.org | |
3648 | W: http://www.chelsio.com | |
3649 | S: Supported | |
3650 | F: drivers/scsi/cxgbi/cxgb4i | |
d8ae3c33 | 3651 | |
be4c9bad RD |
3652 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
3653 | M: Steve Wise <swise@chelsio.com> | |
3654 | L: linux-rdma@vger.kernel.org | |
3655 | W: http://www.openfabrics.org | |
3656 | S: Supported | |
3657 | F: drivers/infiniband/hw/cxgb4/ | |
e44ee2fd | 3658 | F: include/uapi/rdma/cxgb4-abi.h |
be4c9bad | 3659 | |
5c20a5c7 CL |
3660 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
3661 | M: Casey Leedom <leedom@chelsio.com> | |
3662 | L: netdev@vger.kernel.org | |
3663 | W: http://www.chelsio.com | |
3664 | S: Supported | |
f7917c00 | 3665 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 3666 | |
a9282d01 IM |
3667 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
3668 | M: Ian Munsie <imunsie@au1.ibm.com> | |
9d82fd2f | 3669 | M: Frederic Barrat <fbarrat@linux.vnet.ibm.com> |
a9282d01 IM |
3670 | L: linuxppc-dev@lists.ozlabs.org |
3671 | S: Supported | |
9d82fd2f | 3672 | F: arch/powerpc/platforms/powernv/pci-cxl.c |
a9282d01 | 3673 | F: drivers/misc/cxl/ |
ec249dd8 | 3674 | F: include/misc/cxl* |
a9282d01 IM |
3675 | F: include/uapi/misc/cxl.h |
3676 | F: Documentation/powerpc/cxl.txt | |
a9282d01 IM |
3677 | F: Documentation/ABI/testing/sysfs-class-cxl |
3678 | ||
11f43ae7 MO |
3679 | CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER |
3680 | M: Manoj N. Kumar <manoj@linux.vnet.ibm.com> | |
3681 | M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> | |
b2c0627c | 3682 | M: Uma Krishnan <ukrishn@linux.vnet.ibm.com> |
11f43ae7 MO |
3683 | L: linux-scsi@vger.kernel.org |
3684 | S: Supported | |
3685 | F: drivers/scsi/cxlflash/ | |
3686 | F: include/uapi/scsi/cxlflash_ioctls.h | |
3687 | F: Documentation/powerpc/cxlflash.txt | |
3688 | ||
b52b97a3 GC |
3689 | STMMAC ETHERNET DRIVER |
3690 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
91979b9d | 3691 | M: Alexandre Torgue <alexandre.torgue@st.com> |
b52b97a3 GC |
3692 | L: netdev@vger.kernel.org |
3693 | W: http://www.stlinux.com | |
3694 | S: Supported | |
7ac6653a | 3695 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 3696 | |
1da177e4 | 3697 | CYBERPRO FB DRIVER |
54176cc6 | 3698 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 3699 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 3700 | W: http://www.armlinux.org.uk/ |
1da177e4 | 3701 | S: Maintained |
8a61f013 | 3702 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 3703 | |
1da177e4 | 3704 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 3705 | W: http://www.cyclades.com/ |
d459883e | 3706 | S: Orphan |
c897401b | 3707 | F: drivers/tty/cyclades.c |
679655da | 3708 | F: include/linux/cyclades.h |
c117ab84 | 3709 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
3710 | |
3711 | CYCLADES PC300 DRIVER | |
1da177e4 | 3712 | W: http://www.cyclades.com/ |
d459883e | 3713 | S: Orphan |
679655da | 3714 | F: drivers/net/wan/pc300* |
1da177e4 | 3715 | |
402f6ae4 AP |
3716 | CYPRESS_FIRMWARE MEDIA DRIVER |
3717 | M: Antti Palosaari <crope@iki.fi> | |
3718 | L: linux-media@vger.kernel.org | |
a825eaec | 3719 | W: https://linuxtv.org |
402f6ae4 AP |
3720 | W: http://palosaari.fi/linux/ |
3721 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3722 | T: git git://linuxtv.org/anttip/media_tree.git | |
3723 | S: Maintained | |
3724 | F: drivers/media/common/cypress_firmware* | |
3725 | ||
e3ae3525 | 3726 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 3727 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 3728 | L: linux-input@vger.kernel.org |
be9a6f40 | 3729 | S: Supported |
6305902c JP |
3730 | F: drivers/input/touchscreen/cyttsp* |
3731 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 3732 | |
aaaf5fbf JK |
3733 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
3734 | M: Joshua Kinard <kumba@gentoo.org> | |
3735 | S: Maintained | |
3736 | F: drivers/rtc/rtc-ds1685.c | |
3737 | F: include/linux/rtc/ds1685.h | |
3738 | ||
1da177e4 | 3739 | DAMA SLAVE for AX.25 |
8b58be88 | 3740 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
3741 | W: http://yaina.de/jreuter/ |
3742 | W: http://www.qsl.net/dl1bke/ | |
3743 | L: linux-hams@vger.kernel.org | |
3744 | S: Maintained | |
679655da JP |
3745 | F: net/ax25/af_ax25.c |
3746 | F: net/ax25/ax25_dev.c | |
3747 | F: net/ax25/ax25_ds_* | |
3748 | F: net/ax25/ax25_in.c | |
3749 | F: net/ax25/ax25_out.c | |
3750 | F: net/ax25/ax25_timer.c | |
3751 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 3752 | |
e2d1d6c0 | 3753 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 3754 | L: netdev@vger.kernel.org |
5ff77428 | 3755 | S: Orphan |
679655da | 3756 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 3757 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
3758 | |
3759 | DC390/AM53C974 SCSI driver | |
d8130624 | 3760 | M: Hannes Reinecke <hare@suse.com> |
71bd849d | 3761 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 3762 | S: Maintained |
71bd849d | 3763 | F: drivers/scsi/am53c974.c |
e2d1d6c0 | 3764 | |
1da177e4 | 3765 | DC395x SCSI driver |
61eee9a7 | 3766 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
3767 | M: Ali Akcaagac <aliakc@web.de> |
3768 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 3769 | L: dc395x@twibble.org |
cf015e9f JP |
3770 | W: http://twibble.org/dist/dc395x/ |
3771 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 3772 | S: Maintained |
679655da JP |
3773 | F: Documentation/scsi/dc395x.txt |
3774 | F: drivers/scsi/dc395x.* | |
1da177e4 | 3775 | |
eb8edb08 | 3776 | DCCP PROTOCOL |
a89d030e | 3777 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 3778 | L: dccp@vger.kernel.org |
c996d8b9 | 3779 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 3780 | S: Maintained |
679655da | 3781 | F: include/linux/dccp.h |
c117ab84 | 3782 | F: include/uapi/linux/dccp.h |
679655da JP |
3783 | F: include/linux/tfrc.h |
3784 | F: net/dccp/ | |
eb8edb08 | 3785 | |
1da177e4 | 3786 | DECnet NETWORK LAYER |
1da177e4 LT |
3787 | W: http://linux-decnet.sourceforge.net |
3788 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 3789 | S: Orphan |
679655da JP |
3790 | F: Documentation/networking/decnet.txt |
3791 | F: net/decnet/ | |
1da177e4 | 3792 | |
ebff05b9 MR |
3793 | DECSTATION PLATFORM SUPPORT |
3794 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
3795 | L: linux-mips@linux-mips.org | |
3796 | W: http://www.linux-mips.org/wiki/DECstation | |
3797 | S: Maintained | |
3798 | F: arch/mips/dec/ | |
3799 | F: arch/mips/include/asm/dec/ | |
3800 | F: arch/mips/include/asm/mach-dec/ | |
3801 | ||
1da177e4 | 3802 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 3803 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 3804 | S: Maintained |
33f810b2 | 3805 | F: drivers/net/fddi/defxx.* |
1da177e4 | 3806 | |
ad8f07cc | 3807 | DELL LAPTOP DRIVER |
8b58be88 | 3808 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3809 | M: Pali Rohár <pali.rohar@gmail.com> |
d0944853 | 3810 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 3811 | S: Maintained |
679655da | 3812 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 3813 | |
817a5cdb PR |
3814 | DELL LAPTOP RBTN DRIVER |
3815 | M: Pali Rohár <pali.rohar@gmail.com> | |
3816 | S: Maintained | |
3817 | F: drivers/platform/x86/dell-rbtn.* | |
3818 | ||
cdbff611 PR |
3819 | DELL LAPTOP FREEFALL DRIVER |
3820 | M: Pali Rohár <pali.rohar@gmail.com> | |
3821 | S: Maintained | |
3822 | F: drivers/platform/x86/dell-smo8800.c | |
3823 | ||
1da177e4 | 3824 | DELL LAPTOP SMM DRIVER |
a5afba16 | 3825 | M: Pali Rohár <pali.rohar@gmail.com> |
ef3522f7 | 3826 | S: Maintained |
a5afba16 | 3827 | F: drivers/hwmon/dell-smm-hwmon.c |
c117ab84 | 3828 | F: include/uapi/linux/i8k.h |
1da177e4 | 3829 | |
90563ec4 | 3830 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 3831 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 3832 | S: Maintained |
679655da JP |
3833 | F: Documentation/dcdbas.txt |
3834 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 3835 | |
0b3f6109 | 3836 | DELL WMI EXTRAS DRIVER |
8b58be88 | 3837 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3838 | M: Pali Rohár <pali.rohar@gmail.com> |
0b3f6109 | 3839 | S: Maintained |
36b3a96f | 3840 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 3841 | |
5efc75e3 | 3842 | DESIGNWARE USB2 DRD IP DRIVER |
16272ae7 | 3843 | M: John Youn <johnyoun@synopsys.com> |
5efc75e3 | 3844 | L: linux-usb@vger.kernel.org |
18f340f9 | 3845 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 3846 | S: Maintained |
197ba5f4 | 3847 | F: drivers/usb/dwc2/ |
5efc75e3 | 3848 | |
94ab23dd | 3849 | DESIGNWARE USB3 DRD IP DRIVER |
a55f6286 | 3850 | M: Felipe Balbi <balbi@kernel.org> |
94ab23dd | 3851 | L: linux-usb@vger.kernel.org |
94ab23dd FB |
3852 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
3853 | S: Maintained | |
3854 | F: drivers/usb/dwc3/ | |
3855 | ||
833c9545 JB |
3856 | DEVICE COREDUMP (DEV_COREDUMP) |
3857 | M: Johannes Berg <johannes@sipsolutions.net> | |
3858 | L: linux-kernel@vger.kernel.org | |
3859 | S: Maintained | |
3860 | F: drivers/base/devcoredump.c | |
3861 | F: include/linux/devcoredump.h | |
3862 | ||
89d07767 KP |
3863 | DEVICE FREQUENCY (DEVFREQ) |
3864 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3865 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9932ef3c | 3866 | R: Chanwoo Choi <cw00.choi@samsung.com> |
88476d34 | 3867 | L: linux-pm@vger.kernel.org |
6a3cd722 | 3868 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git |
89d07767 KP |
3869 | S: Maintained |
3870 | F: drivers/devfreq/ | |
6a3cd722 CC |
3871 | F: include/linux/devfreq.h |
3872 | F: Documentation/devicetree/bindings/devfreq/ | |
89d07767 | 3873 | |
7dbded06 CC |
3874 | DEVICE FREQUENCY EVENT (DEVFREQ-EVENT) |
3875 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3876 | L: linux-pm@vger.kernel.org | |
3877 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3878 | S: Supported | |
3879 | F: drivers/devfreq/event/ | |
3880 | F: drivers/devfreq/devfreq-event.c | |
3881 | F: include/linux/devfreq-event.h | |
3882 | F: Documentation/devicetree/bindings/devfreq/event/ | |
89d07767 | 3883 | |
490b864b CC |
3884 | BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS |
3885 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3886 | L: linux-pm@vger.kernel.org | |
3887 | L: linux-samsung-soc@vger.kernel.org | |
3888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3889 | S: Maintained | |
3890 | F: drivers/devfreq/exynos-bus.c | |
3891 | F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt | |
3892 | ||
1da177e4 | 3893 | DEVICE NUMBER REGISTRY |
8b58be88 | 3894 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 3895 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
3896 | S: Maintained |
3897 | ||
e2d1d6c0 | 3898 | DEVICE-MAPPER (LVM) |
854ecaad | 3899 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 3900 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 3901 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
3902 | L: dm-devel@redhat.com |
3903 | W: http://sources.redhat.com/dm | |
8a6e2535 | 3904 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 3905 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 3906 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 3907 | S: Maintained |
679655da JP |
3908 | F: Documentation/device-mapper/ |
3909 | F: drivers/md/dm* | |
854ecaad | 3910 | F: drivers/md/persistent-data/ |
679655da JP |
3911 | F: include/linux/device-mapper.h |
3912 | F: include/linux/dm-*.h | |
8504eed3 | 3913 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 3914 | |
bfcd3a46 JP |
3915 | DEVLINK |
3916 | M: Jiri Pirko <jiri@mellanox.com> | |
3917 | L: netdev@vger.kernel.org | |
3918 | S: Supported | |
3919 | F: net/core/devlink.c | |
3920 | F: include/net/devlink.h | |
3921 | F: include/uapi/linux/devlink.h | |
3922 | ||
c0d995aa OST |
3923 | DIALOG SEMICONDUCTOR DRIVERS |
3924 | M: Support Opensource <support.opensource@diasemi.com> | |
3925 | W: http://www.dialog-semiconductor.com/products | |
3926 | S: Supported | |
3927 | F: Documentation/hwmon/da90?? | |
047cfd01 | 3928 | F: Documentation/devicetree/bindings/mfd/da90*.txt |
4eeb08b4 | 3929 | F: Documentation/devicetree/bindings/regulator/da92*.txt |
7c933772 | 3930 | F: Documentation/devicetree/bindings/sound/da[79]*.txt |
c0d995aa OST |
3931 | F: drivers/gpio/gpio-da90??.c |
3932 | F: drivers/hwmon/da90??-hwmon.c | |
7be72c2c | 3933 | F: drivers/iio/adc/da91??-*.c |
c0d995aa OST |
3934 | F: drivers/input/misc/da90??_onkey.c |
3935 | F: drivers/input/touchscreen/da9052_tsi.c | |
3936 | F: drivers/leds/leds-da90??.c | |
3937 | F: drivers/mfd/da903x.c | |
3938 | F: drivers/mfd/da90??-*.c | |
7be72c2c | 3939 | F: drivers/mfd/da91??-*.c |
8c0984e5 SR |
3940 | F: drivers/power/supply/da9052-battery.c |
3941 | F: drivers/power/supply/da91??-*.c | |
c0d995aa OST |
3942 | F: drivers/regulator/da903x.c |
3943 | F: drivers/regulator/da9???-regulator.[ch] | |
3944 | F: drivers/rtc/rtc-da90??.c | |
3945 | F: drivers/video/backlight/da90??_bl.c | |
3946 | F: drivers/watchdog/da90??_wdt.c | |
3947 | F: include/linux/mfd/da903x.h | |
3948 | F: include/linux/mfd/da9052/ | |
3949 | F: include/linux/mfd/da9055/ | |
047cfd01 | 3950 | F: include/linux/mfd/da9062/ |
c0d995aa | 3951 | F: include/linux/mfd/da9063/ |
7be72c2c | 3952 | F: include/linux/mfd/da9150/ |
4eeb08b4 | 3953 | F: include/linux/regulator/da9211.h |
c0d995aa OST |
3954 | F: include/sound/da[79]*.h |
3955 | F: sound/soc/codecs/da[79]*.[ch] | |
3956 | ||
6ea5dcdf WBG |
3957 | DIAMOND SYSTEMS GPIO-MM GPIO DRIVER |
3958 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
3959 | L: linux-gpio@vger.kernel.org | |
3960 | S: Maintained | |
3961 | F: drivers/gpio/gpio-gpio-mm.c | |
3962 | ||
599aa697 LL |
3963 | DIGI NEO AND CLASSIC PCI PRODUCTS |
3964 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 3965 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
3966 | L: driverdev-devel@linuxdriverproject.org |
3967 | S: Maintained | |
3968 | F: drivers/staging/dgnc/ | |
3969 | ||
335d7c58 | 3970 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 3971 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
3972 | L: linux-i2c@vger.kernel.org |
3973 | S: Maintained | |
3974 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
3975 | ||
d475c634 | 3976 | DIRECT ACCESS (DAX) |
e057541a RZ |
3977 | M: Matthew Wilcox <mawilcox@microsoft.com> |
3978 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
d475c634 MW |
3979 | L: linux-fsdevel@vger.kernel.org |
3980 | S: Supported | |
3981 | F: fs/dax.c | |
e057541a RZ |
3982 | F: include/linux/dax.h |
3983 | F: include/trace/events/fs_dax.h | |
d475c634 | 3984 | |
e7839f25 | 3985 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 3986 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 3987 | S: Maintained |
679655da JP |
3988 | F: Documentation/filesystems/dnotify.txt |
3989 | F: fs/notify/dnotify/ | |
3990 | F: include/linux/dnotify.h | |
1da177e4 LT |
3991 | |
3992 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 3993 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
3994 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
3995 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
3996 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
3997 | S: Maintained | |
3998 | ||
4480f15b | 3999 | DISKQUOTA |
d8130624 | 4000 | M: Jan Kara <jack@suse.com> |
1da177e4 | 4001 | S: Maintained |
679655da JP |
4002 | F: Documentation/filesystems/quota.txt |
4003 | F: fs/quota/ | |
4004 | F: include/linux/quota*.h | |
c117ab84 | 4005 | F: include/uapi/linux/quota*.h |
1da177e4 | 4006 | |
702686ad BT |
4007 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
4008 | M: Bernie Thompson <bernie@plugable.com> | |
4009 | L: linux-fbdev@vger.kernel.org | |
4010 | S: Maintained | |
4011 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 4012 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
4013 | F: include/video/udlfb.h |
4014 | F: Documentation/fb/udlfb.txt | |
4015 | ||
e7839f25 | 4016 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
4017 | M: Christine Caulfield <ccaulfie@redhat.com> |
4018 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 4019 | L: cluster-devel@redhat.com |
5be7b50f | 4020 | W: http://sources.redhat.com/cluster/ |
9f273c24 | 4021 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git |
5be7b50f | 4022 | S: Supported |
679655da | 4023 | F: fs/dlm/ |
5be7b50f | 4024 | |
53b6b3e0 SS |
4025 | DMA BUFFER SHARING FRAMEWORK |
4026 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
4027 | S: Maintained | |
4028 | L: linux-media@vger.kernel.org | |
4029 | L: dri-devel@lists.freedesktop.org | |
8ada6d2d | 4030 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
35fac7e3 | 4031 | F: drivers/dma-buf/ |
e46d12c6 JP |
4032 | F: include/linux/dma-buf* |
4033 | F: include/linux/reservation.h | |
4034 | F: include/linux/*fence.h | |
e7e21c72 | 4035 | F: Documentation/driver-api/dma-buf.rst |
0b46fcdb | 4036 | T: git git://anongit.freedesktop.org/drm/drm-misc |
53b6b3e0 | 4037 | |
c483e065 GP |
4038 | SYNC FILE FRAMEWORK |
4039 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
4040 | R: Gustavo Padovan <gustavo@padovan.org> | |
4041 | S: Maintained | |
4042 | L: linux-media@vger.kernel.org | |
4043 | L: dri-devel@lists.freedesktop.org | |
c5ec903d | 4044 | F: drivers/dma-buf/sync_* |
376e5f54 | 4045 | F: drivers/dma-buf/dma-fence* |
c5ec903d | 4046 | F: drivers/dma-buf/sw_sync.c |
c483e065 | 4047 | F: include/linux/sync_file.h |
c5ec903d | 4048 | F: include/uapi/linux/sync_file.h |
c483e065 | 4049 | F: Documentation/sync_file.txt |
0b46fcdb | 4050 | T: git git://anongit.freedesktop.org/drm/drm-misc |
c483e065 | 4051 | |
b3e5f263 | 4052 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 4053 | M: Vinod Koul <vinod.koul@intel.com> |
17b59560 VK |
4054 | L: dmaengine@vger.kernel.org |
4055 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 4056 | S: Maintained |
679655da | 4057 | F: drivers/dma/ |
0ce3c066 | 4058 | F: include/linux/dmaengine.h |
c56d329e | 4059 | F: Documentation/devicetree/bindings/dma/ |
979a281e VK |
4060 | F: Documentation/dmaengine/ |
4061 | T: git git://git.infradead.org/users/vkoul/slave-dma.git | |
248a9dc3 | 4062 | |
b825037d | 4063 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 4064 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 4065 | L: linux-hwmon@vger.kernel.org |
b825037d | 4066 | S: Maintained |
679655da JP |
4067 | F: Documentation/hwmon/dme1737 |
4068 | F: drivers/hwmon/dme1737.c | |
b825037d | 4069 | |
1f31e1b1 | 4070 | DMI/SMBIOS SUPPORT |
d8130624 | 4071 | M: Jean Delvare <jdelvare@suse.com> |
1f31e1b1 | 4072 | S: Maintained |
d4aeef93 | 4073 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
d7f96f97 | 4074 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
1f31e1b1 JD |
4075 | F: drivers/firmware/dmi-id.c |
4076 | F: drivers/firmware/dmi_scan.c | |
4077 | F: include/linux/dmi.h | |
4078 | ||
7d2c86b5 | 4079 | DOCUMENTATION |
ad3118b9 | 4080 | M: Jonathan Corbet <corbet@lwn.net> |
795fb7e7 JD |
4081 | L: linux-doc@vger.kernel.org |
4082 | S: Maintained | |
679655da | 4083 | F: Documentation/ |
42f41ecf JC |
4084 | F: scripts/docproc.c |
4085 | F: scripts/kernel-doc* | |
97be078b RD |
4086 | X: Documentation/ABI/ |
4087 | X: Documentation/devicetree/ | |
933a46b8 JC |
4088 | X: Documentation/acpi |
4089 | X: Documentation/power | |
4090 | X: Documentation/spi | |
618cd932 | 4091 | X: Documentation/media |
c51edfb1 | 4092 | T: git git://git.lwn.net/linux.git docs-next |
abbaeff3 | 4093 | |
1da177e4 | 4094 | DOUBLETALK DRIVER |
8b58be88 | 4095 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
4096 | L: blinux-list@redhat.com |
4097 | S: Maintained | |
679655da JP |
4098 | F: drivers/char/dtlk.c |
4099 | F: include/linux/dtlk.h | |
1da177e4 | 4100 | |
e2d1d6c0 | 4101 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 4102 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
4103 | L: linux-scsi@vger.kernel.org |
4104 | W: http://www.adaptec.com/ | |
4105 | S: Maintained | |
679655da JP |
4106 | F: drivers/scsi/dpt* |
4107 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 4108 | |
b411b363 | 4109 | DRBD DRIVER |
bc2c049d RK |
4110 | M: Philipp Reisner <philipp.reisner@linbit.com> |
4111 | M: Lars Ellenberg <lars.ellenberg@linbit.com> | |
4112 | L: drbd-dev@lists.linbit.com | |
28b8e8d4 | 4113 | W: http://www.drbd.org |
bc2c049d RK |
4114 | T: git git://git.linbit.com/linux-drbd.git |
4115 | T: git git://git.linbit.com/drbd-8.4.git | |
28b8e8d4 JP |
4116 | S: Supported |
4117 | F: drivers/block/drbd/ | |
4118 | F: lib/lru_cache.c | |
4119 | F: Documentation/blockdev/drbd/ | |
b411b363 | 4120 | |
dc7dfcd8 | 4121 | DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS |
879a5a00 | 4122 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 4123 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 4124 | S: Supported |
679655da | 4125 | F: Documentation/kobject.txt |
7cfc51b9 | 4126 | F: drivers/base/ |
87544653 | 4127 | F: fs/debugfs/ |
dc7dfcd8 WS |
4128 | F: fs/kernfs/ |
4129 | F: fs/sysfs/ | |
87544653 | 4130 | F: include/linux/debugfs.h |
dc7dfcd8 | 4131 | F: include/linux/kobj* |
679655da | 4132 | F: lib/kobj* |
1da177e4 LT |
4133 | |
4134 | DRM DRIVERS | |
8b58be88 | 4135 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 4136 | L: dri-devel@lists.freedesktop.org |
b0447888 | 4137 | T: git git://people.freedesktop.org/~airlied/linux |
51b06f9f | 4138 | B: https://bugs.freedesktop.org/ |
5fc41a70 | 4139 | C: irc://chat.freenode.net/dri-devel |
1da177e4 | 4140 | S: Maintained |
679655da | 4141 | F: drivers/gpu/drm/ |
433e3b34 | 4142 | F: drivers/gpu/vga/ |
d28ab95b GU |
4143 | F: Documentation/devicetree/bindings/display/ |
4144 | F: Documentation/devicetree/bindings/gpu/ | |
4145 | F: Documentation/devicetree/bindings/video/ | |
621c5474 | 4146 | F: Documentation/gpu/ |
850e9411 | 4147 | F: include/drm/ |
c117ab84 | 4148 | F: include/uapi/drm/ |
1da177e4 | 4149 | |
d52ea7e3 DV |
4150 | DRM DRIVERS AND MISC GPU PATCHES |
4151 | M: Daniel Vetter <daniel.vetter@intel.com> | |
4152 | M: Jani Nikula <jani.nikula@linux.intel.com> | |
4153 | M: Sean Paul <seanpaul@chromium.org> | |
b7a2a230 | 4154 | W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html |
d52ea7e3 DV |
4155 | S: Maintained |
4156 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
4157 | F: Documentation/gpu/ | |
4158 | F: drivers/gpu/vga/ | |
4159 | F: drivers/gpu/drm/* | |
4160 | F: include/drm/drm* | |
4161 | F: include/uapi/drm/drm* | |
4162 | ||
c842b693 EV |
4163 | DRM DRIVER FOR AST SERVER GRAPHICS CHIPS |
4164 | M: Dave Airlie <airlied@redhat.com> | |
4165 | S: Odd Fixes | |
4166 | F: drivers/gpu/drm/ast/ | |
4167 | ||
5620f47d DV |
4168 | DRM DRIVERS FOR BRIDGE CHIPS |
4169 | M: Archit Taneja <architt@codeaurora.org> | |
4170 | S: Maintained | |
4171 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
4172 | F: drivers/gpu/drm/bridge/ | |
4173 | ||
c842b693 EV |
4174 | DRM DRIVER FOR BOCHS VIRTUAL GPU |
4175 | M: Gerd Hoffmann <kraxel@redhat.com> | |
0c19f97f GH |
4176 | L: virtualization@lists.linux-foundation.org |
4177 | T: git git://git.kraxel.org/linux drm-qemu | |
4178 | S: Maintained | |
c842b693 EV |
4179 | F: drivers/gpu/drm/bochs/ |
4180 | ||
4181 | DRM DRIVER FOR QEMU'S CIRRUS DEVICE | |
4182 | M: Dave Airlie <airlied@redhat.com> | |
0c19f97f GH |
4183 | M: Gerd Hoffmann <kraxel@redhat.com> |
4184 | L: virtualization@lists.linux-foundation.org | |
4185 | T: git git://git.kraxel.org/linux drm-qemu | |
af3076e6 GH |
4186 | S: Obsolete |
4187 | W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ | |
c842b693 EV |
4188 | F: drivers/gpu/drm/cirrus/ |
4189 | ||
c26a4017 | 4190 | RADEON and AMDGPU DRM DRIVERS |
566f5939 AD |
4191 | M: Alex Deucher <alexander.deucher@amd.com> |
4192 | M: Christian König <christian.koenig@amd.com> | |
7f4c4f80 | 4193 | L: amd-gfx@lists.freedesktop.org |
566f5939 AD |
4194 | T: git git://people.freedesktop.org/~agd5f/linux |
4195 | S: Supported | |
4196 | F: drivers/gpu/drm/radeon/ | |
74c97375 | 4197 | F: include/uapi/drm/radeon_drm.h |
c26a4017 | 4198 | F: drivers/gpu/drm/amd/ |
74c97375 | 4199 | F: include/uapi/drm/amdgpu_drm.h |
566f5939 | 4200 | |
03e255b9 TR |
4201 | DRM PANEL DRIVERS |
4202 | M: Thierry Reding <thierry.reding@gmail.com> | |
4203 | L: dri-devel@lists.freedesktop.org | |
4204 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
4205 | S: Maintained | |
4206 | F: drivers/gpu/drm/drm_panel.c | |
4207 | F: drivers/gpu/drm/panel/ | |
4208 | F: include/drm/drm_panel.h | |
2d799dde | 4209 | F: Documentation/devicetree/bindings/display/panel/ |
03e255b9 | 4210 | |
8daf7473 | 4211 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
cbce7107 | 4212 | M: Daniel Vetter <daniel.vetter@intel.com> |
47f95647 | 4213 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 4214 | L: intel-gfx@lists.freedesktop.org |
7564fde3 | 4215 | W: https://01.org/linuxgraphics/ |
51b06f9f | 4216 | B: https://01.org/linuxgraphics/documentation/how-report-bugs |
5fc41a70 | 4217 | C: irc://chat.freenode.net/intel-gfx |
47f95647 | 4218 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 4219 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 4220 | S: Supported |
14430813 | 4221 | F: drivers/gpu/drm/i915/ |
8daf7473 | 4222 | F: include/drm/i915* |
baceac3a | 4223 | F: include/uapi/drm/i915_drm.h |
621c5474 | 4224 | F: Documentation/gpu/i915.rst |
8daf7473 | 4225 | |
66a46e9d ZW |
4226 | INTEL GVT-g DRIVERS (Intel GPU Virtualization) |
4227 | M: Zhenyu Wang <zhenyuw@linux.intel.com> | |
4228 | M: Zhi Wang <zhi.a.wang@intel.com> | |
ba7addcd | 4229 | L: intel-gvt-dev@lists.freedesktop.org |
66a46e9d ZW |
4230 | L: intel-gfx@lists.freedesktop.org |
4231 | W: https://01.org/igvt-g | |
4232 | T: git https://github.com/01org/gvt-linux.git | |
4233 | S: Supported | |
4234 | F: drivers/gpu/drm/i915/gvt/ | |
4235 | ||
99763bb8 BB |
4236 | DRM DRIVERS FOR ATMEL HLCDC |
4237 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
4238 | L: dri-devel@lists.freedesktop.org | |
4239 | S: Supported | |
4240 | F: drivers/gpu/drm/atmel-hlcdc/ | |
4241 | F: Documentation/devicetree/bindings/drm/atmel/ | |
4242 | ||
bf1139df MR |
4243 | DRM DRIVERS FOR ALLWINNER A10 |
4244 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
4245 | L: dri-devel@lists.freedesktop.org | |
4246 | S: Supported | |
4247 | F: drivers/gpu/drm/sun4i/ | |
4248 | F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt | |
4249 | ||
1de7ac68 NA |
4250 | DRM DRIVERS FOR AMLOGIC SOCS |
4251 | M: Neil Armstrong <narmstrong@baylibre.com> | |
4252 | L: dri-devel@lists.freedesktop.org | |
4253 | L: linux-amlogic@lists.infradead.org | |
4254 | W: http://linux-meson.com/ | |
4255 | S: Supported | |
4256 | F: drivers/gpu/drm/meson/ | |
4257 | F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt | |
4258 | ||
398a6d4a KP |
4259 | DRM DRIVERS FOR EXYNOS |
4260 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
4261 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
4262 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
4263 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 4264 | L: dri-devel@lists.freedesktop.org |
25a58030 | 4265 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 4266 | S: Supported |
14430813 | 4267 | F: drivers/gpu/drm/exynos/ |
8fb9b15b EV |
4268 | F: include/uapi/drm/exynos_drm.h |
4269 | F: Documentation/devicetree/bindings/display/exynos/ | |
398a6d4a | 4270 | |
b55a1b9c | 4271 | DRM DRIVERS FOR FREESCALE DCU |
bc66757a | 4272 | M: Stefan Agner <stefan@agner.ch> |
b55a1b9c JW |
4273 | M: Alison Wang <alison.wang@freescale.com> |
4274 | L: dri-devel@lists.freedesktop.org | |
4275 | S: Supported | |
4276 | F: drivers/gpu/drm/fsl-dcu/ | |
2d799dde | 4277 | F: Documentation/devicetree/bindings/display/fsl,dcu.txt |
fb127b79 | 4278 | F: Documentation/devicetree/bindings/display/fsl,tcon.txt |
2d799dde | 4279 | F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt |
b55a1b9c | 4280 | |
0a3d775f PZ |
4281 | DRM DRIVERS FOR FREESCALE IMX |
4282 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
4283 | L: dri-devel@lists.freedesktop.org | |
4284 | S: Maintained | |
4285 | F: drivers/gpu/drm/imx/ | |
ef739aa4 | 4286 | F: drivers/gpu/ipu-v3/ |
2d799dde | 4287 | F: Documentation/devicetree/bindings/display/imx/ |
0a3d775f | 4288 | |
ba2199a6 PJ |
4289 | DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets) |
4290 | M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> | |
4291 | L: dri-devel@lists.freedesktop.org | |
4292 | T: git git://github.com/patjak/drm-gma500 | |
4293 | S: Maintained | |
5ff18e42 | 4294 | F: drivers/gpu/drm/gma500/ |
ba2199a6 | 4295 | |
c84ffde9 XL |
4296 | DRM DRIVERS FOR HISILICON |
4297 | M: Xinliang Liu <z.liuxinliang@hisilicon.com> | |
4b4b40a0 | 4298 | M: Rongrong Zou <zourongrong@gmail.com> |
c84ffde9 XL |
4299 | R: Xinwei Kong <kong.kongxinwei@hisilicon.com> |
4300 | R: Chen Feng <puck.chen@hisilicon.com> | |
4301 | L: dri-devel@lists.freedesktop.org | |
4302 | T: git git://github.com/xin3liang/linux.git | |
4303 | S: Maintained | |
4304 | F: drivers/gpu/drm/hisilicon/ | |
4305 | F: Documentation/devicetree/bindings/display/hisilicon/ | |
4306 | ||
399516ab EV |
4307 | DRM DRIVER FOR INTEL I810 VIDEO CARDS |
4308 | S: Orphan / Obsolete | |
4309 | F: drivers/gpu/drm/i810/ | |
4310 | F: include/uapi/drm/i810_drm.h | |
4311 | ||
37b2a214 CH |
4312 | DRM DRIVERS FOR MEDIATEK |
4313 | M: CK Hu <ck.hu@mediatek.com> | |
4314 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
4315 | L: dri-devel@lists.freedesktop.org | |
4316 | S: Supported | |
4317 | F: drivers/gpu/drm/mediatek/ | |
4318 | F: Documentation/devicetree/bindings/display/mediatek/ | |
4319 | ||
1f47e6cb NT |
4320 | DRM DRIVER FOR MI0283QT |
4321 | M: Noralf Trønnes <noralf@tronnes.org> | |
4322 | S: Maintained | |
4323 | F: drivers/gpu/drm/tinydrm/mi0283qt.c | |
4324 | F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt | |
4325 | ||
06346451 EV |
4326 | DRM DRIVER FOR MSM ADRENO GPU |
4327 | M: Rob Clark <robdclark@gmail.com> | |
4328 | L: linux-arm-msm@vger.kernel.org | |
4329 | L: dri-devel@lists.freedesktop.org | |
4330 | L: freedreno@lists.freedesktop.org | |
4331 | T: git git://people.freedesktop.org/~robclark/linux | |
4332 | S: Maintained | |
4333 | F: drivers/gpu/drm/msm/ | |
4334 | F: include/uapi/drm/msm_drm.h | |
4335 | F: Documentation/devicetree/bindings/display/msm/ | |
4336 | ||
fad89bb3 EV |
4337 | DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS |
4338 | M: Ben Skeggs <bskeggs@redhat.com> | |
4339 | L: dri-devel@lists.freedesktop.org | |
4340 | L: nouveau@lists.freedesktop.org | |
4341 | T: git git://github.com/skeggsb/linux | |
4342 | S: Supported | |
4343 | F: drivers/gpu/drm/nouveau/ | |
4344 | F: include/uapi/drm/nouveau_drm.h | |
ba2199a6 | 4345 | |
bd3b49f2 | 4346 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 | 4347 | M: Thierry Reding <thierry.reding@gmail.com> |
bd3b49f2 TR |
4348 | L: dri-devel@lists.freedesktop.org |
4349 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 4350 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 4351 | S: Supported |
dee8268f | 4352 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 4353 | F: drivers/gpu/host1x/ |
e1e90644 | 4354 | F: include/linux/host1x.h |
a5ad7a63 | 4355 | F: include/uapi/drm/tegra_drm.h |
2d799dde | 4356 | F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt |
bd3b49f2 | 4357 | |
399516ab EV |
4358 | DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS |
4359 | S: Orphan / Obsolete | |
4360 | F: drivers/gpu/drm/mga/ | |
4361 | F: include/uapi/drm/mga_drm.h | |
4362 | ||
c842b693 EV |
4363 | DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS |
4364 | M: Dave Airlie <airlied@redhat.com> | |
4365 | S: Odd Fixes | |
4366 | F: drivers/gpu/drm/mgag200/ | |
4367 | ||
399516ab EV |
4368 | DRM DRIVER FOR RAGE 128 VIDEO CARDS |
4369 | S: Orphan / Obsolete | |
4370 | F: drivers/gpu/drm/r128/ | |
4371 | F: include/uapi/drm/r128_drm.h | |
4372 | ||
a284e9d1 LP |
4373 | DRM DRIVERS FOR RENESAS |
4374 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
4375 | L: dri-devel@lists.freedesktop.org | |
4a121096 | 4376 | L: linux-renesas-soc@vger.kernel.org |
2392ccd4 | 4377 | T: git git://linuxtv.org/pinchartl/fbdev |
a284e9d1 LP |
4378 | S: Supported |
4379 | F: drivers/gpu/drm/rcar-du/ | |
4380 | F: drivers/gpu/drm/shmobile/ | |
a284e9d1 | 4381 | F: include/linux/platform_data/shmob_drm.h |
33be436d | 4382 | F: Documentation/devicetree/bindings/display/renesas,du.txt |
a284e9d1 | 4383 | |
c842b693 EV |
4384 | DRM DRIVER FOR QXL VIRTUAL GPU |
4385 | M: Dave Airlie <airlied@redhat.com> | |
0c19f97f GH |
4386 | M: Gerd Hoffmann <kraxel@redhat.com> |
4387 | L: virtualization@lists.linux-foundation.org | |
4388 | T: git git://git.kraxel.org/linux drm-qemu | |
4389 | S: Maintained | |
c842b693 EV |
4390 | F: drivers/gpu/drm/qxl/ |
4391 | F: include/uapi/drm/qxl_drm.h | |
a284e9d1 | 4392 | |
625e0346 HS |
4393 | DRM DRIVERS FOR ROCKCHIP |
4394 | M: Mark Yao <mark.yao@rock-chips.com> | |
4395 | L: dri-devel@lists.freedesktop.org | |
4396 | S: Maintained | |
4397 | F: drivers/gpu/drm/rockchip/ | |
f253f7eb | 4398 | F: Documentation/devicetree/bindings/display/rockchip/ |
625e0346 | 4399 | |
399516ab EV |
4400 | DRM DRIVER FOR SAVAGE VIDEO CARDS |
4401 | S: Orphan / Obsolete | |
4402 | F: drivers/gpu/drm/savage/ | |
4403 | F: include/uapi/drm/savage_drm.h | |
4404 | ||
4405 | DRM DRIVER FOR SIS VIDEO CARDS | |
4406 | S: Orphan / Obsolete | |
4407 | F: drivers/gpu/drm/sis/ | |
4408 | F: include/uapi/drm/sis_drm.h | |
625e0346 | 4409 | |
7f11c476 BG |
4410 | DRM DRIVERS FOR STI |
4411 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
4412 | M: Vincent Abriou <vincent.abriou@st.com> | |
4413 | L: dri-devel@lists.freedesktop.org | |
4414 | T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git | |
4415 | S: Maintained | |
4416 | F: drivers/gpu/drm/sti | |
2d799dde | 4417 | F: Documentation/devicetree/bindings/display/st,stih4xx.txt |
7f11c476 | 4418 | |
399516ab EV |
4419 | DRM DRIVER FOR TDFX VIDEO CARDS |
4420 | S: Orphan / Obsolete | |
4421 | F: drivers/gpu/drm/tdfx/ | |
4422 | ||
c842b693 EV |
4423 | DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS |
4424 | M: Dave Airlie <airlied@redhat.com> | |
4425 | S: Odd Fixes | |
4426 | F: drivers/gpu/drm/udl/ | |
4427 | ||
8bb0bce9 LS |
4428 | DRM DRIVERS FOR VIVANTE GPU IP |
4429 | M: Lucas Stach <l.stach@pengutronix.de> | |
54176cc6 | 4430 | R: Russell King <linux+etnaviv@armlinux.org.uk> |
8bb0bce9 | 4431 | R: Christian Gmeiner <christian.gmeiner@gmail.com> |
c4ae94a3 | 4432 | L: etnaviv@lists.freedesktop.org |
8bb0bce9 LS |
4433 | L: dri-devel@lists.freedesktop.org |
4434 | S: Maintained | |
8a9257a0 EV |
4435 | F: drivers/gpu/drm/etnaviv/ |
4436 | F: include/uapi/drm/etnaviv_drm.h | |
4437 | F: Documentation/devicetree/bindings/display/etnaviv/ | |
8bb0bce9 | 4438 | |
c4291702 EV |
4439 | DRM DRIVER FOR VMWARE VIRTUAL GPU |
4440 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
4441 | M: Sinclair Yeh <syeh@vmware.com> | |
4442 | M: Thomas Hellstrom <thellstrom@vmware.com> | |
4443 | L: dri-devel@lists.freedesktop.org | |
4444 | T: git git://people.freedesktop.org/~syeh/repos_linux | |
4445 | T: git git://people.freedesktop.org/~thomash/linux | |
4446 | S: Supported | |
4447 | F: drivers/gpu/drm/vmwgfx/ | |
4448 | F: include/uapi/drm/vmwgfx_drm.h | |
4449 | ||
8636d452 EA |
4450 | DRM DRIVERS FOR VC4 |
4451 | M: Eric Anholt <eric@anholt.net> | |
4452 | T: git git://github.com/anholt/linux | |
4453 | S: Supported | |
4454 | F: drivers/gpu/drm/vc4/ | |
4455 | F: include/uapi/drm/vc4_drm.h | |
4456 | F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt | |
8bb0bce9 | 4457 | |
5ef330a7 TV |
4458 | DRM DRIVERS FOR TI OMAP |
4459 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
4460 | L: dri-devel@lists.freedesktop.org | |
4461 | S: Maintained | |
4462 | F: drivers/gpu/drm/omapdrm/ | |
4463 | F: Documentation/devicetree/bindings/display/ti/ | |
4464 | ||
adb314ed TV |
4465 | DRM DRIVERS FOR TI LCDC |
4466 | M: Jyri Sarha <jsarha@ti.com> | |
4467 | R: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
4468 | L: dri-devel@lists.freedesktop.org | |
4469 | S: Maintained | |
4470 | F: drivers/gpu/drm/tilcdc/ | |
4471 | F: Documentation/devicetree/bindings/display/tilcdc/ | |
4472 | ||
dbb01037 SG |
4473 | DRM DRIVERS FOR ZTE ZX |
4474 | M: Shawn Guo <shawnguo@kernel.org> | |
4475 | L: dri-devel@lists.freedesktop.org | |
4476 | S: Maintained | |
4477 | F: drivers/gpu/drm/zte/ | |
4478 | F: Documentation/devicetree/bindings/display/zte,vou.txt | |
4479 | ||
598df1ac AK |
4480 | DSBR100 USB FM RADIO DRIVER |
4481 | M: Alexey Klimov <klimov.linux@gmail.com> | |
4482 | L: linux-media@vger.kernel.org | |
4483 | T: git git://linuxtv.org/media_tree.git | |
4484 | S: Maintained | |
4485 | F: drivers/media/radio/dsbr100.c | |
4486 | ||
1da177e4 | 4487 | DSCC4 DRIVER |
8b58be88 | 4488 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 4489 | L: netdev@vger.kernel.org |
1da177e4 | 4490 | S: Maintained |
679655da | 4491 | F: drivers/net/wan/dscc4.c |
1da177e4 | 4492 | |
cc11b140 HV |
4493 | DT3155 MEDIA DRIVER |
4494 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4495 | L: linux-media@vger.kernel.org | |
4496 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 4497 | W: https://linuxtv.org |
cc11b140 HV |
4498 | S: Odd Fixes |
4499 | F: drivers/media/pci/dt3155/ | |
4500 | ||
91952bc0 AP |
4501 | DVB_USB_AF9015 MEDIA DRIVER |
4502 | M: Antti Palosaari <crope@iki.fi> | |
4503 | L: linux-media@vger.kernel.org | |
a825eaec | 4504 | W: https://linuxtv.org |
91952bc0 AP |
4505 | W: http://palosaari.fi/linux/ |
4506 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4507 | T: git git://linuxtv.org/anttip/media_tree.git | |
4508 | S: Maintained | |
4509 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
4510 | ||
4511 | DVB_USB_AF9035 MEDIA DRIVER | |
4512 | M: Antti Palosaari <crope@iki.fi> | |
4513 | L: linux-media@vger.kernel.org | |
a825eaec | 4514 | W: https://linuxtv.org |
91952bc0 AP |
4515 | W: http://palosaari.fi/linux/ |
4516 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4517 | T: git git://linuxtv.org/anttip/media_tree.git | |
4518 | S: Maintained | |
4519 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
4520 | ||
4521 | DVB_USB_ANYSEE MEDIA DRIVER | |
4522 | M: Antti Palosaari <crope@iki.fi> | |
4523 | L: linux-media@vger.kernel.org | |
a825eaec | 4524 | W: https://linuxtv.org |
91952bc0 AP |
4525 | W: http://palosaari.fi/linux/ |
4526 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4527 | T: git git://linuxtv.org/anttip/media_tree.git | |
4528 | S: Maintained | |
4529 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
4530 | ||
4531 | DVB_USB_AU6610 MEDIA DRIVER | |
4532 | M: Antti Palosaari <crope@iki.fi> | |
4533 | L: linux-media@vger.kernel.org | |
a825eaec | 4534 | W: https://linuxtv.org |
91952bc0 AP |
4535 | W: http://palosaari.fi/linux/ |
4536 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4537 | T: git git://linuxtv.org/anttip/media_tree.git | |
4538 | S: Maintained | |
4539 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
4540 | ||
4541 | DVB_USB_CE6230 MEDIA DRIVER | |
4542 | M: Antti Palosaari <crope@iki.fi> | |
4543 | L: linux-media@vger.kernel.org | |
a825eaec | 4544 | W: https://linuxtv.org |
91952bc0 AP |
4545 | W: http://palosaari.fi/linux/ |
4546 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4547 | T: git git://linuxtv.org/anttip/media_tree.git | |
4548 | S: Maintained | |
4549 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
4550 | ||
d099dea2 MK |
4551 | DVB_USB_CXUSB MEDIA DRIVER |
4552 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4553 | L: linux-media@vger.kernel.org | |
a825eaec | 4554 | W: https://linuxtv.org |
d099dea2 MK |
4555 | W: http://github.com/mkrufky |
4556 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4557 | T: git git://linuxtv.org/media_tree.git | |
4558 | S: Maintained | |
9819da66 | 4559 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 4560 | |
91952bc0 | 4561 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
4562 | M: Antti Palosaari <crope@iki.fi> |
4563 | L: linux-media@vger.kernel.org | |
a825eaec | 4564 | W: https://linuxtv.org |
91952bc0 AP |
4565 | W: http://palosaari.fi/linux/ |
4566 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4567 | T: git git://linuxtv.org/anttip/media_tree.git | |
4568 | S: Maintained | |
91952bc0 | 4569 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 4570 | |
5560983b | 4571 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
4572 | M: Antti Palosaari <crope@iki.fi> |
4573 | L: linux-media@vger.kernel.org | |
a825eaec | 4574 | W: https://linuxtv.org |
91952bc0 AP |
4575 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
4576 | T: git git://linuxtv.org/anttip/media_tree.git | |
4577 | S: Maintained | |
5560983b | 4578 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 4579 | |
8856f5f2 MK |
4580 | DVB_USB_MXL111SF MEDIA DRIVER |
4581 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4582 | L: linux-media@vger.kernel.org | |
a825eaec | 4583 | W: https://linuxtv.org |
8856f5f2 MK |
4584 | W: http://github.com/mkrufky |
4585 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4586 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
4587 | S: Maintained | |
4588 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
4589 | ||
91952bc0 AP |
4590 | DVB_USB_RTL28XXU MEDIA DRIVER |
4591 | M: Antti Palosaari <crope@iki.fi> | |
4592 | L: linux-media@vger.kernel.org | |
a825eaec | 4593 | W: https://linuxtv.org |
91952bc0 AP |
4594 | W: http://palosaari.fi/linux/ |
4595 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4596 | T: git git://linuxtv.org/anttip/media_tree.git | |
4597 | S: Maintained | |
4598 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
4599 | ||
4600 | DVB_USB_V2 MEDIA DRIVER | |
4601 | M: Antti Palosaari <crope@iki.fi> | |
4602 | L: linux-media@vger.kernel.org | |
a825eaec | 4603 | W: https://linuxtv.org |
91952bc0 AP |
4604 | W: http://palosaari.fi/linux/ |
4605 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4606 | T: git git://linuxtv.org/anttip/media_tree.git | |
4607 | S: Maintained | |
4608 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
4609 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
4610 | ||
ac0ac38f | 4611 | DYNAMIC DEBUG |
5c4a97d1 | 4612 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
4613 | S: Maintained |
4614 | F: lib/dynamic_debug.c | |
4615 | F: include/linux/dynamic_debug.h | |
4616 | ||
789c7048 | 4617 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 4618 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 4619 | S: Maintained |
df621252 | 4620 | F: drivers/tty/serial/dz.* |
789c7048 | 4621 | |
f17effbe MF |
4622 | E3X0 POWER BUTTON DRIVER |
4623 | M: Moritz Fischer <moritz.fischer@ettus.com> | |
4624 | L: usrp-users@lists.ettus.com | |
4625 | W: http://www.ettus.com | |
4626 | S: Supported | |
4627 | F: drivers/input/misc/e3x0-button.c | |
4628 | F: Documentation/devicetree/bindings/input/e3x0-button.txt | |
4629 | ||
91952bc0 AP |
4630 | E4000 MEDIA DRIVER |
4631 | M: Antti Palosaari <crope@iki.fi> | |
4632 | L: linux-media@vger.kernel.org | |
a825eaec | 4633 | W: https://linuxtv.org |
91952bc0 AP |
4634 | W: http://palosaari.fi/linux/ |
4635 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4636 | T: git git://linuxtv.org/anttip/media_tree.git | |
4637 | S: Maintained | |
4638 | F: drivers/media/tuners/e4000* | |
4639 | ||
1da177e4 | 4640 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 4641 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
4642 | L: linux-scsi@vger.kernel.org |
4643 | S: Maintained | |
679655da | 4644 | F: drivers/scsi/eata.c |
1da177e4 | 4645 | |
91952bc0 AP |
4646 | EC100 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/dvb-frontends/ec100* | |
4655 | ||
237fead6 | 4656 | ECRYPT FILE SYSTEM |
0de9adf2 | 4657 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 4658 | L: ecryptfs@vger.kernel.org |
24a923e4 | 4659 | W: http://ecryptfs.org |
6dc7516e | 4660 | W: https://launchpad.net/ecryptfs |
9f273c24 | 4661 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git |
237fead6 | 4662 | S: Supported |
679655da JP |
4663 | F: Documentation/filesystems/ecryptfs.txt |
4664 | F: fs/ecryptfs/ | |
237fead6 | 4665 | |
da9bb1d2 | 4666 | EDAC-CORE |
aa15aa0e | 4667 | M: Borislav Petkov <bp@alien8.de> |
5dc8a864 MCC |
4668 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4669 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
91445c72 | 4670 | L: linux-edac@vger.kernel.org |
07cd6bf5 FW |
4671 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next |
4672 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next | |
8c2a6a40 | 4673 | S: Supported |
b73bbad3 MCC |
4674 | F: Documentation/admin-guide/ras.rst |
4675 | F: Documentation/driver-api/edac.rst | |
91445c72 | 4676 | F: drivers/edac/ |
679655da | 4677 | F: include/linux/edac.h |
0e438e3f | 4678 | |
c476c23b | 4679 | EDAC-AMD64 |
487ba8e8 | 4680 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 4681 | L: linux-edac@vger.kernel.org |
487ba8e8 | 4682 | S: Maintained |
c476c23b BP |
4683 | F: drivers/edac/amd64_edac* |
4684 | ||
836dae5d | 4685 | EDAC-CALXEDA |
836dae5d RR |
4686 | M: Robert Richter <rric@kernel.org> |
4687 | L: linux-edac@vger.kernel.org | |
836dae5d RR |
4688 | S: Maintained |
4689 | F: drivers/edac/highbank* | |
4690 | ||
f65aad41 RB |
4691 | EDAC-CAVIUM |
4692 | M: Ralf Baechle <ralf@linux-mips.org> | |
4693 | M: David Daney <david.daney@cavium.com> | |
4694 | L: linux-edac@vger.kernel.org | |
4695 | L: linux-mips@linux-mips.org | |
f65aad41 RB |
4696 | S: Supported |
4697 | F: drivers/edac/octeon_edac* | |
4698 | ||
0e438e3f | 4699 | EDAC-E752X |
8b58be88 | 4700 | M: Mark Gross <mark.gross@intel.com> |
91445c72 | 4701 | L: linux-edac@vger.kernel.org |
0e438e3f | 4702 | S: Maintained |
679655da | 4703 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
4704 | |
4705 | EDAC-E7XXX | |
91445c72 | 4706 | L: linux-edac@vger.kernel.org |
0e438e3f | 4707 | S: Maintained |
679655da | 4708 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 4709 | |
7d136731 BP |
4710 | EDAC-FSL_DDR |
4711 | M: York Sun <york.sun@nxp.com> | |
4712 | L: linux-edac@vger.kernel.org | |
4713 | S: Maintained | |
4714 | F: drivers/edac/fsl_ddr_edac.* | |
4715 | ||
77c5f5d2 | 4716 | EDAC-GHES |
5dc8a864 MCC |
4717 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4718 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
77c5f5d2 | 4719 | L: linux-edac@vger.kernel.org |
77c5f5d2 | 4720 | S: Maintained |
2caa67a6 | 4721 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 4722 | |
6bc78404 | 4723 | EDAC-I82443BXGX |
8b58be88 | 4724 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4725 | L: linux-edac@vger.kernel.org |
6bc78404 | 4726 | S: Maintained |
679655da | 4727 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
4728 | |
4729 | EDAC-I3000 | |
91445c72 | 4730 | L: linux-edac@vger.kernel.org |
c91d9075 | 4731 | S: Orphan |
679655da | 4732 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
4733 | |
4734 | EDAC-I5000 | |
91445c72 | 4735 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4736 | S: Maintained |
679655da | 4737 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 4738 | |
44c12cb2 | 4739 | EDAC-I5400 |
5dc8a864 MCC |
4740 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4741 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4742 | L: linux-edac@vger.kernel.org |
44c12cb2 | 4743 | S: Maintained |
679655da | 4744 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 4745 | |
3c9c92b6 | 4746 | EDAC-I7300 |
5dc8a864 MCC |
4747 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4748 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
3c9c92b6 | 4749 | L: linux-edac@vger.kernel.org |
3c9c92b6 MCC |
4750 | S: Maintained |
4751 | F: drivers/edac/i7300_edac.c | |
4752 | ||
67c89316 | 4753 | EDAC-I7CORE |
5dc8a864 MCC |
4754 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4755 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4756 | L: linux-edac@vger.kernel.org |
67c89316 | 4757 | S: Maintained |
70aff0ce | 4758 | F: drivers/edac/i7core_edac.c |
67c89316 | 4759 | |
ba9a5918 | 4760 | EDAC-I82975X |
8b58be88 | 4761 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 4762 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 4763 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4764 | S: Maintained |
679655da | 4765 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 4766 | |
791b4706 JB |
4767 | EDAC-IE31200 |
4768 | M: Jason Baron <jbaron@akamai.com> | |
4769 | L: linux-edac@vger.kernel.org | |
791b4706 JB |
4770 | S: Maintained |
4771 | F: drivers/edac/ie31200_edac.c | |
4772 | ||
ccdfb979 | 4773 | EDAC-MPC85XX |
30c7469b | 4774 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
ccdfb979 | 4775 | L: linux-edac@vger.kernel.org |
ccdfb979 JT |
4776 | S: Maintained |
4777 | F: drivers/edac/mpc85xx_edac.[ch] | |
4778 | ||
ba9a5918 | 4779 | EDAC-PASEMI |
8b58be88 | 4780 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 4781 | L: linux-edac@vger.kernel.org |
6bc78404 | 4782 | S: Maintained |
679655da | 4783 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 4784 | |
0e438e3f | 4785 | EDAC-R82600 |
8b58be88 | 4786 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4787 | L: linux-edac@vger.kernel.org |
0e438e3f | 4788 | S: Maintained |
679655da | 4789 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 4790 | |
4d096ca7 | 4791 | EDAC-SBRIDGE |
5dc8a864 MCC |
4792 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4793 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
4d096ca7 | 4794 | L: linux-edac@vger.kernel.org |
4d096ca7 MCC |
4795 | S: Maintained |
4796 | F: drivers/edac/sb_edac.c | |
4797 | ||
4ec656bd TL |
4798 | EDAC-SKYLAKE |
4799 | M: Tony Luck <tony.luck@intel.com> | |
4800 | L: linux-edac@vger.kernel.org | |
4801 | S: Maintained | |
4802 | F: drivers/edac/skx_edac.c | |
4803 | ||
995e1de4 LH |
4804 | EDAC-XGENE |
4805 | APPLIED MICRO (APM) X-GENE SOC EDAC | |
4806 | M: Loc Ho <lho@apm.com> | |
4807 | S: Supported | |
4808 | F: drivers/edac/xgene_edac.c | |
4809 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt | |
4810 | ||
af39917d CL |
4811 | EDIROL UA-101/UA-1000 DRIVER |
4812 | M: Clemens Ladisch <clemens@ladisch.de> | |
4813 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4814 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4815 | S: Maintained | |
4816 | F: sound/usb/misc/ua101.c | |
4817 | ||
1f7df953 | 4818 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
825fcfce | 4819 | M: Matt Fleming <matt@codeblueprint.co.uk> |
6026ed2f | 4820 | M: Ard Biesheuvel <ard.biesheuvel@linaro.org> |
1f7df953 | 4821 | L: linux-efi@vger.kernel.org |
6026ed2f | 4822 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git |
1f7df953 | 4823 | S: Maintained |
fb2efb5c | 4824 | F: Documentation/efi-stub.txt |
f135a176 | 4825 | F: arch/*/kernel/efi.c |
1f7df953 | 4826 | F: arch/x86/boot/compressed/eboot.[ch] |
f135a176 | 4827 | F: arch/*/include/asm/efi.h |
e8dfe6d8 MF |
4828 | F: arch/x86/platform/efi/ |
4829 | F: drivers/firmware/efi/ | |
1f7df953 | 4830 | F: include/linux/efi*.h |
f135a176 AB |
4831 | F: arch/arm/boot/compressed/efi-header.S |
4832 | F: arch/arm64/kernel/efi-entry.S | |
1f7df953 | 4833 | |
d68772b7 MF |
4834 | EFI VARIABLE FILESYSTEM |
4835 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
4836 | M: Jeremy Kerr <jk@ozlabs.org> | |
825fcfce | 4837 | M: Matt Fleming <matt@codeblueprint.co.uk> |
d68772b7 MF |
4838 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
4839 | L: linux-efi@vger.kernel.org | |
4840 | S: Maintained | |
4841 | F: fs/efivarfs/ | |
4842 | ||
85a00d9b PJ |
4843 | EFIFB FRAMEBUFFER DRIVER |
4844 | L: linux-fbdev@vger.kernel.org | |
4845 | M: Peter Jones <pjones@redhat.com> | |
4846 | S: Maintained | |
8a61f013 | 4847 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 4848 | |
ff6301da IH |
4849 | EFI TEST DRIVER |
4850 | L: linux-efi@vger.kernel.org | |
4851 | M: Ivan Hu <ivan.hu@canonical.com> | |
4852 | M: Matt Fleming <matt@codeblueprint.co.uk> | |
4853 | S: Maintained | |
4854 | F: drivers/firmware/efi/test/ | |
4855 | ||
0bee8d28 JT |
4856 | EFS FILESYSTEM |
4857 | W: http://aeschi.ch.eu.org/efs/ | |
4858 | S: Orphan | |
679655da | 4859 | F: fs/efs/ |
0bee8d28 | 4860 | |
aa8a9e25 | 4861 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
97b04197 | 4862 | M: Douglas Miller <dougmill@linux.vnet.ibm.com> |
aa8a9e25 BL |
4863 | L: netdev@vger.kernel.org |
4864 | S: Maintained | |
9aa32835 | 4865 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 4866 | |
f0319efe | 4867 | EM28XX VIDEO4LINUX DRIVER |
5dc8a864 MCC |
4868 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4869 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
f0319efe | 4870 | L: linux-media@vger.kernel.org |
a825eaec | 4871 | W: https://linuxtv.org |
f0319efe MCC |
4872 | T: git git://linuxtv.org/media_tree.git |
4873 | S: Maintained | |
4874 | F: drivers/media/usb/em28xx/ | |
618cd932 | 4875 | F: Documentation/media/v4l-drivers/em28xx* |
f0319efe | 4876 | |
3e3a7d66 | 4877 | EMBEDDED LINUX |
8b58be88 JP |
4878 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
4879 | M: Matt Mackall <mpm@selenic.com> | |
4880 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
4881 | L: linux-embedded@vger.kernel.org |
4882 | S: Maintained | |
4883 | ||
b8aca0c1 JS |
4884 | EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER |
4885 | M: James Smart <james.smart@broadcom.com> | |
4886 | M: Dick Kennedy <dick.kennedy@broadcom.com> | |
ce00f85c | 4887 | L: linux-scsi@vger.kernel.org |
b8aca0c1 | 4888 | W: http://www.broadcom.com |
ce00f85c | 4889 | S: Supported |
679655da | 4890 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 4891 | |
5f5bac82 | 4892 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 4893 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
4894 | S: Maintained |
4895 | F: drivers/misc/cb710/ | |
4896 | F: drivers/mmc/host/cb710-mmc.* | |
4897 | F: include/linux/cb710.h | |
4898 | ||
931e39a1 ML |
4899 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
4900 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
4901 | S: Maintained | |
2a837449 | 4902 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 4903 | |
d5ca9006 | 4904 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 4905 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 4906 | S: Maintained |
084bad91 | 4907 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 4908 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 4909 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 4910 | |
38df6492 ME |
4911 | ET131X NETWORK DRIVER |
4912 | M: Mark Einon <mark.einon@gmail.com> | |
4913 | S: Odd Fixes | |
4914 | F: drivers/net/ethernet/agere/ | |
4915 | ||
1da177e4 | 4916 | ETHERNET BRIDGE |
adbbf69d | 4917 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 4918 | L: bridge@lists.linux-foundation.org (moderated for non-subscribers) |
4c325313 | 4919 | L: netdev@vger.kernel.org |
c996d8b9 | 4920 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 4921 | S: Maintained |
679655da JP |
4922 | F: include/linux/netfilter_bridge/ |
4923 | F: net/bridge/ | |
1da177e4 | 4924 | |
22f08ad9 FF |
4925 | ETHERNET PHY LIBRARY |
4926 | M: Florian Fainelli <f.fainelli@gmail.com> | |
4927 | L: netdev@vger.kernel.org | |
4928 | S: Maintained | |
4929 | F: include/linux/phy.h | |
4930 | F: include/linux/phy_fixed.h | |
4931 | F: drivers/net/phy/ | |
4932 | F: Documentation/networking/phy.txt | |
4933 | F: drivers/of/of_mdio.c | |
4934 | F: drivers/of/of_net.c | |
4935 | ||
1da177e4 | 4936 | EXT2 FILE SYSTEM |
d8130624 | 4937 | M: Jan Kara <jack@suse.com> |
72be2ccf | 4938 | L: linux-ext4@vger.kernel.org |
1da177e4 | 4939 | S: Maintained |
679655da JP |
4940 | F: Documentation/filesystems/ext2.txt |
4941 | F: fs/ext2/ | |
4942 | F: include/linux/ext2* | |
1da177e4 | 4943 | |
72be2ccf | 4944 | EXT4 FILE SYSTEM |
8b58be88 | 4945 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 4946 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 4947 | L: linux-ext4@vger.kernel.org |
08a225f1 | 4948 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 4949 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
9f273c24 | 4950 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git |
1da177e4 | 4951 | S: Maintained |
679655da JP |
4952 | F: Documentation/filesystems/ext4.txt |
4953 | F: fs/ext4/ | |
1da177e4 | 4954 | |
c5532b09 | 4955 | Extended Verification Module (EVM) |
74dd744f MZ |
4956 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
4957 | L: linux-ima-devel@lists.sourceforge.net | |
4958 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
4959 | S: Supported |
4960 | F: security/integrity/evm/ | |
4961 | ||
df6b3cfe MH |
4962 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
4963 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
4964 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
4965 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 4966 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
4967 | S: Maintained |
4968 | F: drivers/extcon/ | |
cd2c3e7f CC |
4969 | F: include/linux/extcon/ |
4970 | F: include/linux/extcon.h | |
df6b3cfe | 4971 | F: Documentation/extcon/ |
cd2c3e7f | 4972 | F: Documentation/devicetree/bindings/extcon/ |
df6b3cfe | 4973 | |
e2a75c44 | 4974 | EXYNOS DP DRIVER |
b7701755 | 4975 | M: Jingoo Han <jingoohan1@gmail.com> |
e2a75c44 JH |
4976 | L: dri-devel@lists.freedesktop.org |
4977 | S: Maintained | |
4978 | F: drivers/gpu/drm/exynos/exynos_dp* | |
4979 | ||
9b93a409 MS |
4980 | EXYNOS SYSMMU (IOMMU) driver |
4981 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
4982 | L: iommu@lists.linux-foundation.org | |
4983 | S: Maintained | |
4984 | F: drivers/iommu/exynos-iommu.c | |
4985 | ||
4a66d3fe NC |
4986 | EZchip NPS platform support |
4987 | M: Noam Camus <noamc@ezchip.com> | |
4988 | S: Supported | |
4989 | F: arch/arc/plat-eznps | |
4990 | F: arch/arc/boot/dts/eznps.dts | |
4991 | ||
e53004e2 | 4992 | F71805F HARDWARE MONITORING DRIVER |
d8130624 | 4993 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 4994 | L: linux-hwmon@vger.kernel.org |
e53004e2 | 4995 | S: Maintained |
679655da JP |
4996 | F: Documentation/hwmon/f71805f |
4997 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 4998 | |
eea977ed MB |
4999 | FC0011 TUNER DRIVER |
5000 | M: Michael Buesch <m@bues.ch> | |
5001 | L: linux-media@vger.kernel.org | |
5002 | S: Maintained | |
ccae7af2 MCC |
5003 | F: drivers/media/tuners/fc0011.h |
5004 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 5005 | |
91952bc0 AP |
5006 | FC2580 MEDIA DRIVER |
5007 | M: Antti Palosaari <crope@iki.fi> | |
5008 | L: linux-media@vger.kernel.org | |
a825eaec | 5009 | W: https://linuxtv.org |
91952bc0 AP |
5010 | W: http://palosaari.fi/linux/ |
5011 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5012 | T: git git://linuxtv.org/anttip/media_tree.git | |
5013 | S: Maintained | |
5014 | F: drivers/media/tuners/fc2580* | |
eea977ed | 5015 | |
88b2dbdb EP |
5016 | FANOTIFY |
5017 | M: Eric Paris <eparis@redhat.com> | |
5018 | S: Maintained | |
5019 | F: fs/notify/fanotify/ | |
5020 | F: include/linux/fanotify.h | |
c117ab84 | 5021 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 5022 | |
1da177e4 | 5023 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 5024 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
5025 | W: http://www.farsite.co.uk/ |
5026 | S: Supported | |
679655da | 5027 | F: drivers/net/wan/farsync.* |
1da177e4 | 5028 | |
c5408b88 | 5029 | FAULT INJECTION SUPPORT |
8b58be88 | 5030 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 5031 | S: Supported |
679655da JP |
5032 | F: Documentation/fault-injection/ |
5033 | F: lib/fault-inject.c | |
c5408b88 | 5034 | |
053e514f NT |
5035 | FBTFT Framebuffer drivers |
5036 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
053e514f NT |
5037 | S: Maintained |
5038 | F: drivers/staging/fbtft/ | |
5039 | ||
cae727db | 5040 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
49a75815 | 5041 | M: Johannes Thumshirn <jth@kernel.org> |
f4aaea6d | 5042 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
5043 | W: www.Open-FCoE.org |
5044 | S: Supported | |
5045 | F: drivers/scsi/libfc/ | |
5046 | F: drivers/scsi/fcoe/ | |
5047 | F: include/scsi/fc/ | |
5048 | F: include/scsi/libfc.h | |
5049 | F: include/scsi/libfcoe.h | |
c117ab84 | 5050 | F: include/uapi/scsi/fc/ |
cae727db | 5051 | |
e2d1d6c0 | 5052 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 5053 | M: Jeff Layton <jlayton@poochiereds.net> |
9c3646d1 | 5054 | M: "J. Bruce Fields" <bfields@fieldses.org> |
e2d1d6c0 | 5055 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 5056 | S: Maintained |
679655da JP |
5057 | F: include/linux/fcntl.h |
5058 | F: include/linux/fs.h | |
c117ab84 CEB |
5059 | F: include/uapi/linux/fcntl.h |
5060 | F: include/uapi/linux/fs.h | |
679655da JP |
5061 | F: fs/fcntl.c |
5062 | F: fs/locks.c | |
1da177e4 | 5063 | |
e2d1d6c0 | 5064 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 5065 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 5066 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 5067 | S: Maintained |
679655da | 5068 | F: fs/* |
173acc7c | 5069 | |
b26e0ed4 | 5070 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 5071 | M: Riku Voipio <riku.voipio@iki.fi> |
968ce1b1 | 5072 | L: linux-hwmon@vger.kernel.org |
b26e0ed4 | 5073 | S: Maintained |
d5ca6918 JP |
5074 | F: drivers/hwmon/f75375s.c |
5075 | F: include/linux/f75375s.h | |
b26e0ed4 | 5076 | |
a331b0c3 CL |
5077 | FIREWIRE AUDIO DRIVERS |
5078 | M: Clemens Ladisch <clemens@ladisch.de> | |
5079 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
5080 | T: git git://git.alsa-project.org/alsa-kernel.git | |
5081 | S: Maintained | |
5082 | F: sound/firewire/ | |
5083 | ||
eb86ec51 SR |
5084 | FIREWIRE MEDIA DRIVERS (firedtv) |
5085 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
5086 | L: linux-media@vger.kernel.org | |
5087 | L: linux1394-devel@lists.sourceforge.net | |
5088 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
5089 | S: Maintained | |
5090 | F: drivers/media/firewire/ | |
5091 | ||
a511ce33 CB |
5092 | FIREWIRE SBP-2 TARGET |
5093 | M: Chris Boot <bootc@bootc.net> | |
5094 | L: linux-scsi@vger.kernel.org | |
5095 | L: target-devel@vger.kernel.org | |
5096 | L: linux1394-devel@lists.sourceforge.net | |
5097 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
5098 | S: Maintained | |
5099 | F: drivers/target/sbp/ | |
5100 | ||
7d2c86b5 | 5101 | FIREWIRE SUBSYSTEM |
8b58be88 | 5102 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 5103 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 5104 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 5105 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 5106 | S: Maintained |
679655da | 5107 | F: drivers/firewire/ |
8f06ce3b SR |
5108 | F: include/linux/firewire.h |
5109 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 5110 | F: tools/firewire/ |
e2d1d6c0 RD |
5111 | |
5112 | FIRMWARE LOADER (request_firmware) | |
39e68089 | 5113 | M: Ming Lei <ming.lei@canonical.com> |
e7604239 | 5114 | M: Luis R. Rodriguez <mcgrof@kernel.org> |
39e68089 ML |
5115 | L: linux-kernel@vger.kernel.org |
5116 | S: Maintained | |
679655da JP |
5117 | F: Documentation/firmware_class/ |
5118 | F: drivers/base/firmware*.c | |
5119 | F: include/linux/firmware.h | |
e2d1d6c0 | 5120 | |
f730e3dc | 5121 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
5122 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
5123 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
5124 | S: Maintained | |
5125 | F: drivers/block/rsxx/ | |
5126 | ||
8206f664 | 5127 | FLOPPY DRIVER |
e5f6450c | 5128 | M: Jiri Kosina <jikos@kernel.org> |
8206f664 JK |
5129 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
5130 | S: Odd fixes | |
5131 | F: drivers/block/floppy.c | |
5132 | ||
9c9f32ed AR |
5133 | FMC SUBSYSTEM |
5134 | M: Alessandro Rubini <rubini@gnudd.com> | |
5135 | W: http://www.ohwr.org/projects/fmc-bus | |
5136 | S: Supported | |
5137 | F: drivers/fmc/ | |
5138 | F: include/linux/fmc*.h | |
5139 | F: include/linux/ipmi-fru.h | |
5140 | K: fmc_d.*register | |
5141 | ||
3c0ed7d5 AT |
5142 | FPGA MANAGER FRAMEWORK |
5143 | M: Alan Tull <atull@opensource.altera.com> | |
dd7d664a | 5144 | R: Moritz Fischer <moritz.fischer@ettus.com> |
7f1a5f04 | 5145 | L: linux-fpga@vger.kernel.org |
3c0ed7d5 | 5146 | S: Maintained |
e4998077 | 5147 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git |
3c0ed7d5 AT |
5148 | F: drivers/fpga/ |
5149 | F: include/linux/fpga/fpga-mgr.h | |
5150 | W: http://www.rocketboards.org | |
5151 | ||
e2d1d6c0 | 5152 | FPU EMULATOR |
8b58be88 | 5153 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 5154 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 5155 | S: Maintained |
679655da | 5156 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
5157 | |
5158 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 5159 | L: netdev@vger.kernel.org |
c173bfac | 5160 | S: Orphan |
679655da JP |
5161 | F: drivers/net/wan/dlci.c |
5162 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
5163 | |
5164 | FRAMEBUFFER LAYER | |
04f6152d | 5165 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
c69f677c | 5166 | L: linux-fbdev@vger.kernel.org |
04f6152d | 5167 | T: git git://github.com/bzolnier/linux.git |
b22fe37b | 5168 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
04f6152d | 5169 | S: Maintained |
679655da | 5170 | F: Documentation/fb/ |
b22fe37b PM |
5171 | F: drivers/video/ |
5172 | F: include/video/ | |
679655da | 5173 | F: include/linux/fb.h |
c117ab84 CEB |
5174 | F: include/uapi/video/ |
5175 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 5176 | |
93aafb6d HG |
5177 | FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER |
5178 | M: Horia Geantă <horia.geanta@nxp.com> | |
5179 | M: Dan Douglass <dan.douglass@nxp.com> | |
5180 | L: linux-crypto@vger.kernel.org | |
5181 | S: Maintained | |
5182 | F: drivers/crypto/caam/ | |
5183 | F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt | |
5184 | ||
a57c188e | 5185 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 5186 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 5187 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 5188 | S: Maintained |
8a61f013 | 5189 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 5190 | |
e2d1d6c0 | 5191 | FREESCALE DMA DRIVER |
8b58be88 JP |
5192 | M: Li Yang <leoli@freescale.com> |
5193 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 5194 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 5195 | S: Maintained |
679655da | 5196 | F: drivers/dma/fsldma.* |
e2d1d6c0 | 5197 | |
44248aff HX |
5198 | FREESCALE GPMI NAND DRIVER |
5199 | M: Han Xu <han.xu@nxp.com> | |
5200 | L: linux-mtd@lists.infradead.org | |
5201 | S: Maintained | |
5202 | F: drivers/mtd/nand/gpmi-nand/* | |
5203 | ||
e2d1d6c0 | 5204 | FREESCALE I2C CPM DRIVER |
8b58be88 | 5205 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 5206 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 5207 | L: linux-i2c@vger.kernel.org |
0d2b405a | 5208 | S: Maintained |
679655da | 5209 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 5210 | |
60e8c5ab | 5211 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 5212 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 5213 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 5214 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 5215 | S: Maintained |
bad985a1 | 5216 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 5217 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 5218 | |
4d8e2cef | 5219 | FREESCALE QUAD SPI DRIVER |
38714fbd | 5220 | M: Han Xu <han.xu@nxp.com> |
4d8e2cef HX |
5221 | L: linux-mtd@lists.infradead.org |
5222 | S: Maintained | |
5223 | F: drivers/mtd/spi-nor/fsl-quadspi.c | |
5224 | ||
4689a6b1 | 5225 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
5226 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
5227 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 5228 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
5229 | L: netdev@vger.kernel.org |
5230 | S: Maintained | |
ec21e2ec | 5231 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 5232 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 5233 | |
63a0a00b NA |
5234 | FREESCALE IMX / MXC FEC DRIVER |
5235 | M: Fugang Duan <fugang.duan@nxp.com> | |
5236 | L: netdev@vger.kernel.org | |
5237 | S: Maintained | |
5238 | F: drivers/net/ethernet/freescale/fec_main.c | |
5239 | F: drivers/net/ethernet/freescale/fec_ptp.c | |
5240 | F: drivers/net/ethernet/freescale/fec.h | |
5241 | F: Documentation/devicetree/bindings/net/fsl-fec.txt | |
5242 | ||
2fbfadb5 MB |
5243 | FREESCALE QORIQ DPAA FMAN DRIVER |
5244 | M: Madalin Bucur <madalin.bucur@nxp.com> | |
5245 | L: netdev@vger.kernel.org | |
5246 | S: Maintained | |
5247 | F: drivers/net/ethernet/freescale/fman | |
5248 | F: Documentation/devicetree/bindings/powerpc/fsl/fman.txt | |
5249 | ||
63f4b4b0 MB |
5250 | FREESCALE QORIQ DPAA ETHERNET DRIVER |
5251 | M: Madalin Bucur <madalin.bucur@nxp.com> | |
5252 | L: netdev@vger.kernel.org | |
5253 | S: Maintained | |
5254 | F: drivers/net/ethernet/freescale/dpaa | |
5255 | ||
1b48706f | 5256 | FREESCALE SOC DRIVERS |
5257 | M: Scott Wood <oss@buserror.net> | |
5258 | L: linuxppc-dev@lists.ozlabs.org | |
5259 | L: linux-arm-kernel@lists.infradead.org | |
5260 | S: Maintained | |
5261 | F: drivers/soc/fsl/ | |
5262 | F: include/linux/fsl/ | |
5263 | ||
d9e9d82c | 5264 | FREESCALE QUICC ENGINE LIBRARY |
1b48706f | 5265 | M: Qiang Zhao <qiang.zhao@nxp.com> |
a4724ed6 | 5266 | L: linuxppc-dev@lists.ozlabs.org |
1b48706f | 5267 | S: Maintained |
7aa1aa6e ZQ |
5268 | F: drivers/soc/fsl/qe/ |
5269 | F: include/soc/fsl/*qe*.h | |
5270 | F: include/soc/fsl/*ucc*.h | |
d9e9d82c | 5271 | |
b55ef929 | 5272 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 5273 | M: Li Yang <leoli@freescale.com> |
6372594a | 5274 | L: linux-usb@vger.kernel.org |
a4724ed6 | 5275 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 5276 | S: Maintained |
faf2e1db | 5277 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 5278 | |
beaf53bf | 5279 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 5280 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 5281 | L: netdev@vger.kernel.org |
a4724ed6 | 5282 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 5283 | S: Maintained |
ec21e2ec | 5284 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 5285 | |
abb1ed7b CM |
5286 | FREESCALE eTSEC ETHERNET DRIVER (GIANFAR) |
5287 | M: Claudiu Manoil <claudiu.manoil@freescale.com> | |
5288 | L: netdev@vger.kernel.org | |
5289 | S: Maintained | |
5290 | F: drivers/net/ethernet/freescale/gianfar* | |
5291 | X: drivers/net/ethernet/freescale/gianfar_ptp.c | |
5292 | F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt | |
5293 | ||
c19b6d24 ZQ |
5294 | FREESCALE QUICC ENGINE UCC HDLC DRIVER |
5295 | M: Zhao Qiang <qiang.zhao@nxp.com> | |
5296 | L: netdev@vger.kernel.org | |
5297 | L: linuxppc-dev@lists.ozlabs.org | |
5298 | S: Maintained | |
5299 | F: drivers/net/wan/fsl_ucc_hdlc* | |
5300 | ||
d9e9d82c | 5301 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 5302 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 5303 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5304 | S: Maintained |
df621252 | 5305 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
5306 | |
5307 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 5308 | M: Timur Tabi <timur@tabi.org> |
dc85950a | 5309 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
b4b98297 | 5310 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
aeea2fdd | 5311 | R: Fabio Estevam <fabio.estevam@nxp.com> |
93711660 | 5312 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 5313 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5314 | S: Maintained |
69aefcea | 5315 | F: sound/soc/fsl/fsl* |
dc85950a | 5316 | F: sound/soc/fsl/imx* |
69aefcea | 5317 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 5318 | |
1da177e4 | 5319 | FREEVXFS FILESYSTEM |
8b58be88 | 5320 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
5321 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
5322 | S: Maintained | |
679655da | 5323 | F: fs/freevxfs/ |
1da177e4 | 5324 | |
71038f52 | 5325 | FREEZER |
49db1903 | 5326 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5327 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5328 | L: linux-pm@vger.kernel.org |
71038f52 | 5329 | S: Supported |
679655da JP |
5330 | F: Documentation/power/freezing-of-tasks.txt |
5331 | F: include/linux/freezer.h | |
5332 | F: kernel/freezer.c | |
71038f52 | 5333 | |
839a1f79 KRW |
5334 | FRONTSWAP API |
5335 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
5336 | L: linux-kernel@vger.kernel.org | |
5337 | S: Maintained | |
5338 | F: mm/frontswap.c | |
5339 | F: include/linux/frontswap.h | |
5340 | ||
a5432f5a | 5341 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 5342 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 5343 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
5344 | S: Supported |
5345 | F: Documentation/filesystems/caching/ | |
5346 | F: fs/fscache/ | |
5347 | F: include/linux/fscache*.h | |
5348 | ||
598c7d7a TT |
5349 | FS-CRYPTO: FILE SYSTEM LEVEL ENCRYPTION SUPPORT |
5350 | M: Theodore Y. Ts'o <tytso@mit.edu> | |
5351 | M: Jaegeuk Kim <jaegeuk@kernel.org> | |
c1b22129 | 5352 | L: linux-fsdevel@vger.kernel.org |
598c7d7a TT |
5353 | S: Supported |
5354 | F: fs/crypto/ | |
46f47e48 | 5355 | F: include/linux/fscrypt*.h |
598c7d7a | 5356 | |
f58ad8f5 | 5357 | F2FS FILE SYSTEM |
9b29d481 | 5358 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
95129296 | 5359 | M: Chao Yu <yuchao0@huawei.com> |
f58ad8f5 | 5360 | L: linux-f2fs-devel@lists.sourceforge.net |
95129296 | 5361 | W: https://f2fs.wiki.kernel.org/ |
f58ad8f5 JK |
5362 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git |
5363 | S: Maintained | |
5364 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 5365 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
5366 | F: fs/f2fs/ |
5367 | F: include/linux/f2fs_fs.h | |
62d43eeb | 5368 | F: include/trace/events/f2fs.h |
f58ad8f5 | 5369 | |
5ab7ffea | 5370 | FUJITSU FR-V (FRV) PORT |
0cf0305f | 5371 | S: Orphan |
679655da | 5372 | F: arch/frv/ |
1da177e4 | 5373 | |
20b93734 | 5374 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 5375 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 5376 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 5377 | S: Maintained |
679655da | 5378 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 5379 | |
4da621b6 HK |
5380 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
5381 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
5382 | M: Heungjun Kim <riverful.kim@samsung.com> | |
5383 | L: linux-media@vger.kernel.org | |
5384 | S: Maintained | |
90d72ac6 | 5385 | F: drivers/media/i2c/m5mols/ |
b5dcee22 | 5386 | F: include/media/i2c/m5mols.h |
4da621b6 | 5387 | |
2d24c490 RG |
5388 | FUJITSU TABLET EXTRAS |
5389 | M: Robert Gerlach <khnz@gmx.de> | |
5390 | L: platform-driver-x86@vger.kernel.org | |
5391 | S: Maintained | |
5392 | F: drivers/platform/x86/fujitsu-tablet.c | |
5393 | ||
04578f17 | 5394 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 5395 | M: Miklos Szeredi <miklos@szeredi.hu> |
4441f63a | 5396 | L: linux-fsdevel@vger.kernel.org |
04578f17 | 5397 | W: http://fuse.sourceforge.net/ |
0a30f612 | 5398 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
04578f17 | 5399 | S: Maintained |
679655da | 5400 | F: fs/fuse/ |
c117ab84 | 5401 | F: include/uapi/linux/fuse.h |
0a30f612 | 5402 | F: Documentation/filesystems/fuse.txt |
04578f17 | 5403 | |
1da177e4 | 5404 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 5405 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 5406 | L: linux-scsi@vger.kernel.org |
baaea1dc | 5407 | S: Odd Fixes (e.g., new signatures) |
679655da | 5408 | F: drivers/scsi/fdomain.* |
1da177e4 | 5409 | |
6b90bd4b ER |
5410 | GCC PLUGINS |
5411 | M: Kees Cook <keescook@chromium.org> | |
5412 | R: Emese Revfy <re.emese@gmail.com> | |
5413 | L: kernel-hardening@lists.openwall.com | |
5414 | S: Maintained | |
5415 | F: scripts/gcc-plugins/ | |
5416 | F: scripts/gcc-plugin.sh | |
68fdc678 | 5417 | F: scripts/Makefile.gcc-plugins |
6b90bd4b ER |
5418 | F: Documentation/gcc-plugins.txt |
5419 | ||
d8e2162c PO |
5420 | GCOV BASED KERNEL PROFILING |
5421 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
5422 | S: Maintained | |
5423 | F: kernel/gcov/ | |
2584bab2 | 5424 | F: Documentation/dev-tools/gcov.rst |
d8e2162c | 5425 | |
1da177e4 | 5426 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 5427 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
5428 | L: linux-scsi@vger.kernel.org |
5429 | W: http://www.icp-vortex.com/ | |
5430 | S: Supported | |
679655da | 5431 | F: drivers/scsi/gdt* |
1da177e4 | 5432 | |
158daf16 JK |
5433 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
5434 | M: Jan Kiszka <jan.kiszka@siemens.com> | |
e10af132 | 5435 | M: Kieran Bingham <kieran@bingham.xyz> |
158daf16 JK |
5436 | S: Supported |
5437 | F: scripts/gdb/ | |
5438 | ||
3169a1c7 HV |
5439 | GEMTEK FM RADIO RECEIVER DRIVER |
5440 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5441 | L: linux-media@vger.kernel.org | |
5442 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5443 | W: https://linuxtv.org |
3169a1c7 HV |
5444 | S: Maintained |
5445 | F: drivers/media/radio/radio-gemtek* | |
5446 | ||
1c23af90 | 5447 | GENERIC GPIO I2C DRIVER |
880b0e26 | 5448 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 5449 | S: Supported |
679655da JP |
5450 | F: drivers/i2c/busses/i2c-gpio.c |
5451 | F: include/linux/i2c-gpio.h | |
1c23af90 | 5452 | |
92ed1a76 PK |
5453 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
5454 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
5455 | L: linux-i2c@vger.kernel.org | |
5456 | S: Supported | |
e7065e20 JD |
5457 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
5458 | F: include/linux/i2c-mux-gpio.h | |
5459 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 5460 | |
9251ce95 | 5461 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 5462 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
5463 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
5464 | S: Maintained | |
679655da JP |
5465 | F: drivers/net/wan/c101.c |
5466 | F: drivers/net/wan/hd6457* | |
5467 | F: drivers/net/wan/hdlc* | |
5468 | F: drivers/net/wan/n2.c | |
5469 | F: drivers/net/wan/pc300too.c | |
5470 | F: drivers/net/wan/pci200syn.c | |
5471 | F: drivers/net/wan/wanxl* | |
1da177e4 | 5472 | |
1527aab6 | 5473 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 5474 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
5475 | L: linux-arch@vger.kernel.org |
5476 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
5477 | S: Maintained | |
14430813 JP |
5478 | F: include/asm-generic/ |
5479 | F: include/uapi/asm-generic/ | |
1527aab6 | 5480 | |
ff764963 KVA |
5481 | GENERIC PHY FRAMEWORK |
5482 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
5483 | L: linux-kernel@vger.kernel.org | |
5484 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
5485 | S: Supported | |
5486 | F: drivers/phy/ | |
5487 | F: include/linux/phy/ | |
5488 | ||
eea97aed KH |
5489 | GENERIC PM DOMAINS |
5490 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
5491 | M: Kevin Hilman <khilman@kernel.org> | |
5492 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
5493 | L: linux-pm@vger.kernel.org | |
5494 | S: Supported | |
5495 | F: drivers/base/power/domain*.c | |
5496 | F: include/linux/pm_domain.h | |
5497 | ||
ccb86a69 | 5498 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 5499 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 5500 | L: kvm@vger.kernel.org |
ccb86a69 MT |
5501 | S: Supported |
5502 | F: drivers/uio/uio_pci_generic.c | |
5503 | ||
f8f1ec73 JP |
5504 | GET_MAINTAINER SCRIPT |
5505 | M: Joe Perches <joe@perches.com> | |
5506 | S: Maintained | |
5507 | F: scripts/get_maintainer.pl | |
5508 | ||
a7d5afe8 GKB |
5509 | GENWQE (IBM Generic Workqueue Card) |
5510 | M: Frank Haverkamp <haver@linux.vnet.ibm.com> | |
5511 | M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> | |
5512 | S: Supported | |
5513 | F: drivers/misc/genwqe/ | |
5514 | ||
5be7b50f | 5515 | GFS2 FILE SYSTEM |
8b58be88 | 5516 | M: Steven Whitehouse <swhiteho@redhat.com> |
28666d6d | 5517 | M: Bob Peterson <rpeterso@redhat.com> |
a4644184 | 5518 | L: cluster-devel@redhat.com |
5be7b50f | 5519 | W: http://sources.redhat.com/cluster/ |
28666d6d | 5520 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
5be7b50f | 5521 | S: Supported |
679655da JP |
5522 | F: Documentation/filesystems/gfs2*.txt |
5523 | F: fs/gfs2/ | |
c117ab84 | 5524 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 5525 | |
0a34eb8f | 5526 | GIGASET ISDN DRIVERS |
6b096fde | 5527 | M: Paul Bolle <pebolle@tiscali.nl> |
0a34eb8f HL |
5528 | L: gigaset307x-common@lists.sourceforge.net |
5529 | W: http://gigaset307x.sourceforge.net/ | |
6b096fde | 5530 | S: Odd Fixes |
679655da JP |
5531 | F: Documentation/isdn/README.gigaset |
5532 | F: drivers/isdn/gigaset/ | |
c117ab84 | 5533 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 5534 | |
7eea35fe JP |
5535 | GO7007 MPEG CODEC |
5536 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
5537 | L: linux-media@vger.kernel.org | |
5538 | S: Maintained | |
5539 | F: drivers/media/usb/go7007/ | |
5540 | ||
ca96ea86 BN |
5541 | GOODIX TOUCHSCREEN |
5542 | M: Bastien Nocera <hadess@hadess.net> | |
5543 | L: linux-input@vger.kernel.org | |
5544 | S: Maintained | |
5545 | F: drivers/input/touchscreen/goodix.c | |
5546 | ||
a6a1cf3d BJZ |
5547 | GPIO MOCKUP DRIVER |
5548 | M: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> | |
5549 | L: linux-gpio@vger.kernel.org | |
5550 | S: Maintained | |
5551 | F: drivers/gpio/gpio-mockup.c | |
5552 | F: tools/testing/selftests/gpio/ | |
5553 | ||
a0dc00b4 | 5554 | GPIO SUBSYSTEM |
e4651a9f | 5555 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 5556 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 5557 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
5558 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
5559 | S: Maintained | |
cd97a449 | 5560 | F: Documentation/devicetree/bindings/gpio/ |
f2fa75cd | 5561 | F: Documentation/gpio/ |
40c159b7 | 5562 | F: Documentation/ABI/testing/gpio-cdev |
fe95046e | 5563 | F: Documentation/ABI/obsolete/sysfs-gpio |
a0dc00b4 | 5564 | F: drivers/gpio/ |
bdc6e95e AC |
5565 | F: include/linux/gpio/ |
5566 | F: include/linux/gpio.h | |
9b692346 | 5567 | F: include/asm-generic/gpio.h |
3c702e99 | 5568 | F: include/uapi/linux/gpio.h |
6d591c46 | 5569 | F: tools/gpio/ |
a0dc00b4 | 5570 | |
71a6d0af HW |
5571 | GRE DEMULTIPLEXER DRIVER |
5572 | M: Dmitry Kozlov <xeb@mail.ru> | |
5573 | L: netdev@vger.kernel.org | |
5574 | S: Maintained | |
11c26770 JP |
5575 | F: net/ipv4/gre_demux.c |
5576 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
5577 | F: include/net/gre.h |
5578 | ||
d4c41139 | 5579 | GRETH 10/100/1G Ethernet MAC device driver |
bbdd09eb | 5580 | M: Andreas Larsson <andreas@gaisler.com> |
d4c41139 KG |
5581 | L: netdev@vger.kernel.org |
5582 | S: Maintained | |
a31a96ad | 5583 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 5584 | |
629c1fb5 GKH |
5585 | GREYBUS SUBSYSTEM |
5586 | M: Johan Hovold <johan@kernel.org> | |
5587 | M: Alex Elder <elder@kernel.org> | |
5588 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
5589 | S: Maintained | |
5590 | F: drivers/staging/greybus/ | |
01d0f715 | 5591 | L: greybus-dev@lists.linaro.org |
629c1fb5 | 5592 | |
926706c5 VA |
5593 | GREYBUS AUDIO PROTOCOLS DRIVERS |
5594 | M: Vaibhav Agarwal <vaibhav.sr@gmail.com> | |
88638cf1 | 5595 | M: Mark Greer <mgreer@animalcreek.com> |
926706c5 | 5596 | S: Maintained |
544a6944 MG |
5597 | F: drivers/staging/greybus/audio_apbridgea.c |
5598 | F: drivers/staging/greybus/audio_apbridgea.h | |
926706c5 | 5599 | F: drivers/staging/greybus/audio_codec.c |
544a6944 MG |
5600 | F: drivers/staging/greybus/audio_codec.h |
5601 | F: drivers/staging/greybus/audio_gb.c | |
5602 | F: drivers/staging/greybus/audio_manager.c | |
5603 | F: drivers/staging/greybus/audio_manager.h | |
5604 | F: drivers/staging/greybus/audio_manager_module.c | |
5605 | F: drivers/staging/greybus/audio_manager_private.h | |
5606 | F: drivers/staging/greybus/audio_manager_sysfs.c | |
926706c5 VA |
5607 | F: drivers/staging/greybus/audio_module.c |
5608 | F: drivers/staging/greybus/audio_topology.c | |
5609 | ||
2bbadafb RMS |
5610 | GREYBUS PROTOCOLS DRIVERS |
5611 | M: Rui Miguel Silva <rmfrfs@gmail.com> | |
5612 | S: Maintained | |
5613 | F: drivers/staging/greybus/sdio.c | |
5614 | F: drivers/staging/greybus/light.c | |
5615 | F: drivers/staging/greybus/gpio.c | |
5616 | F: drivers/staging/greybus/power_supply.c | |
5617 | F: drivers/staging/greybus/spi.c | |
5618 | F: drivers/staging/greybus/spilib.c | |
5619 | ||
7d700518 BD |
5620 | GREYBUS PROTOCOLS DRIVERS |
5621 | M: Bryan O'Donoghue <pure.logic@nexus-software.ie> | |
5622 | S: Maintained | |
5623 | F: drivers/staging/greybus/loopback.c | |
5624 | F: drivers/staging/greybus/timesync.c | |
5625 | F: drivers/staging/greybus/timesync_platform.c | |
5626 | ||
5bd16350 VK |
5627 | GREYBUS PROTOCOLS DRIVERS |
5628 | M: Viresh Kumar <vireshk@kernel.org> | |
5629 | S: Maintained | |
5630 | F: drivers/staging/greybus/authentication.c | |
5631 | F: drivers/staging/greybus/bootrom.c | |
5632 | F: drivers/staging/greybus/firmware.h | |
5633 | F: drivers/staging/greybus/fw-core.c | |
5634 | F: drivers/staging/greybus/fw-download.c | |
5635 | F: drivers/staging/greybus/fw-managament.c | |
5636 | F: drivers/staging/greybus/greybus_authentication.h | |
5637 | F: drivers/staging/greybus/greybus_firmware.h | |
5638 | F: drivers/staging/greybus/hid.c | |
5639 | F: drivers/staging/greybus/i2c.c | |
5640 | F: drivers/staging/greybus/spi.c | |
5641 | F: drivers/staging/greybus/spilib.c | |
5642 | F: drivers/staging/greybus/spilib.h | |
5643 | ||
8d904fe5 DL |
5644 | GREYBUS PROTOCOLS DRIVERS |
5645 | M: David Lin <dtwlin@gmail.com> | |
5646 | S: Maintained | |
5647 | F: drivers/staging/greybus/uart.c | |
5648 | F: drivers/staging/greybus/log.c | |
5649 | ||
92b8bd96 VH |
5650 | GREYBUS PLATFORM DRIVERS |
5651 | M: Vaibhav Hiremath <hvaibhav.linux@gmail.com> | |
5652 | S: Maintained | |
5653 | F: drivers/staging/greybus/arche-platform.c | |
5654 | F: drivers/staging/greybus/arche-apb-ctrl.c | |
5655 | F: drivers/staging/greybus/arche_platform.h | |
5656 | ||
7aae6e2d CAC |
5657 | GS1662 VIDEO SERIALIZER |
5658 | M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr> | |
5659 | L: linux-media@vger.kernel.org | |
5660 | T: git git://linuxtv.org/media_tree.git | |
5661 | S: Maintained | |
5662 | F: drivers/media/spi/gs1662.c | |
5663 | ||
e8deeae2 | 5664 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 5665 | M: Frank Zago <frank@zago.net> |
661263b5 | 5666 | L: linux-media@vger.kernel.org |
275ffde4 | 5667 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5668 | S: Maintained |
0c0d06ca | 5669 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 5670 | |
4b3fa3c4 OL |
5671 | GSPCA GL860 SUBDRIVER |
5672 | M: Olivier Lorin <o.lorin@laposte.net> | |
5673 | L: linux-media@vger.kernel.org | |
275ffde4 | 5674 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 5675 | S: Maintained |
0c0d06ca | 5676 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 5677 | |
e8deeae2 | 5678 | GSPCA M5602 SUBDRIVER |
8b58be88 | 5679 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 5680 | L: linux-media@vger.kernel.org |
275ffde4 | 5681 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5682 | S: Maintained |
0c0d06ca | 5683 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
5684 | |
5685 | GSPCA PAC207 SONIXB SUBDRIVER | |
c0936df4 | 5686 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5687 | L: linux-media@vger.kernel.org |
275ffde4 | 5688 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5689 | S: Odd Fixes |
0c0d06ca | 5690 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 5691 | |
261982f1 | 5692 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 5693 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 5694 | L: linux-media@vger.kernel.org |
275ffde4 | 5695 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 5696 | S: Maintained |
0c0d06ca | 5697 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 5698 | |
e8deeae2 | 5699 | GSPCA T613 SUBDRIVER |
8b58be88 | 5700 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 5701 | L: linux-media@vger.kernel.org |
275ffde4 | 5702 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5703 | S: Maintained |
0c0d06ca | 5704 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
5705 | |
5706 | GSPCA USB WEBCAM DRIVER | |
c0936df4 | 5707 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5708 | L: linux-media@vger.kernel.org |
275ffde4 | 5709 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5710 | S: Odd Fixes |
0c0d06ca | 5711 | F: drivers/media/usb/gspca/ |
e8deeae2 | 5712 | |
bed45f79 PN |
5713 | GTP (GPRS Tunneling Protocol) |
5714 | M: Pablo Neira Ayuso <pablo@netfilter.org> | |
5715 | M: Harald Welte <laforge@gnumonks.org> | |
5716 | L: osmocom-net-gprs@lists.osmocom.org | |
5717 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git | |
5718 | S: Maintained | |
5719 | F: drivers/net/gtp.c | |
5720 | ||
584ec979 | 5721 | GUID PARTITION TABLE (GPT) |
4f973c63 | 5722 | M: Davidlohr Bueso <dave@stgolabs.net> |
584ec979 DB |
5723 | L: linux-efi@vger.kernel.org |
5724 | S: Maintained | |
5725 | F: block/partitions/efi.* | |
5726 | ||
aa3c598b | 5727 | STK1160 USB VIDEO CAPTURE DRIVER |
3259aa57 | 5728 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
aa3c598b | 5729 | L: linux-media@vger.kernel.org |
275ffde4 | 5730 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
5731 | S: Maintained |
5732 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 5733 | |
4e456b86 YS |
5734 | H8/300 ARCHITECTURE |
5735 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
b992c768 | 5736 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
4e456b86 YS |
5737 | W: http://uclinux-h8.sourceforge.jp |
5738 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git | |
5739 | S: Maintained | |
5740 | F: arch/h8300/ | |
5741 | F: drivers/clocksource/h8300_*.c | |
5742 | F: drivers/clk/h8300/ | |
5743 | F: drivers/irqchip/irq-renesas-h8*.c | |
5744 | ||
71a6d0af HW |
5745 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
5746 | M: Frank Seidel <frank@f-seidel.de> | |
5747 | L: platform-driver-x86@vger.kernel.org | |
5748 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
5749 | S: Maintained | |
5750 | F: drivers/platform/x86/hdaps.c | |
5751 | ||
48fc9e26 HV |
5752 | HDPVR USB VIDEO ENCODER DRIVER |
5753 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5754 | L: linux-media@vger.kernel.org | |
5755 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5756 | W: https://linuxtv.org |
48fc9e26 | 5757 | S: Odd Fixes |
14430813 | 5758 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 5759 | |
71a6d0af | 5760 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 5761 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 5762 | L: linux-mm@kvack.org |
71a6d0af HW |
5763 | S: Maintained |
5764 | F: mm/memory-failure.c | |
5765 | F: mm/hwpoison-inject.c | |
5766 | ||
5767 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
5768 | L: linuxppc-dev@lists.ozlabs.org | |
5769 | S: Odd Fixes | |
5770 | F: drivers/tty/hvc/ | |
5771 | ||
e5ab1477 AP |
5772 | HACKRF MEDIA DRIVER |
5773 | M: Antti Palosaari <crope@iki.fi> | |
5774 | L: linux-media@vger.kernel.org | |
a825eaec | 5775 | W: https://linuxtv.org |
e5ab1477 AP |
5776 | W: http://palosaari.fi/linux/ |
5777 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5778 | T: git git://linuxtv.org/anttip/media_tree.git | |
5779 | S: Maintained | |
5780 | F: drivers/media/usb/hackrf/ | |
5781 | ||
5b543965 | 5782 | HARDWARE MONITORING |
d8130624 | 5783 | M: Jean Delvare <jdelvare@suse.com> |
ca462085 | 5784 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
5785 | L: linux-hwmon@vger.kernel.org |
5786 | W: http://hwmon.wiki.kernel.org/ | |
a94ef4ed | 5787 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
885374e3 | 5788 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 5789 | S: Maintained |
047f4ec2 | 5790 | F: Documentation/hwmon/ |
679655da | 5791 | F: drivers/hwmon/ |
047f4ec2 | 5792 | F: include/linux/hwmon*.h |
5b543965 | 5793 | |
844dd05f | 5794 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
5795 | M: Matt Mackall <mpm@selenic.com> |
5796 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3eda7167 | 5797 | L: linux-crypto@vger.kernel.org |
c0d0787b | 5798 | S: Odd fixes |
f6c60b15 | 5799 | F: Documentation/devicetree/bindings/rng/ |
679655da JP |
5800 | F: Documentation/hw_random.txt |
5801 | F: drivers/char/hw_random/ | |
5802 | F: include/linux/hw_random.h | |
844dd05f | 5803 | |
8b37fcfc OBC |
5804 | HARDWARE SPINLOCK CORE |
5805 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 5806 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 5807 | L: linux-remoteproc@vger.kernel.org |
8b37fcfc | 5808 | S: Maintained |
9f273c24 | 5809 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git |
2dbd8585 | 5810 | F: Documentation/devicetree/bindings/hwlock/ |
8b37fcfc | 5811 | F: Documentation/hwspinlock.txt |
2dbd8585 | 5812 | F: drivers/hwspinlock/ |
8b37fcfc OBC |
5813 | F: include/linux/hwspinlock.h |
5814 | ||
1da177e4 | 5815 | HARMONY SOUND DRIVER |
ac6aecbf | 5816 | L: linux-parisc@vger.kernel.org |
1da177e4 | 5817 | S: Maintained |
679655da | 5818 | F: sound/parisc/harmony.* |
1da177e4 | 5819 | |
214de83e | 5820 | HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER |
4cfccbda | 5821 | M: Jimmy Vance <jimmy.vance@hpe.com> |
214de83e BB |
5822 | S: Supported |
5823 | F: Documentation/watchdog/hpwdt.txt | |
5824 | F: drivers/watchdog/hpwdt.c | |
5825 | ||
9257aa49 | 5826 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
a0a268ad | 5827 | M: Don Brace <don.brace@microsemi.com> |
a0a268ad | 5828 | L: esc.storagedev@microsemi.com |
693373db | 5829 | L: linux-scsi@vger.kernel.org |
9257aa49 SC |
5830 | S: Supported |
5831 | F: Documentation/scsi/hpsa.txt | |
5832 | F: drivers/scsi/hpsa*.[ch] | |
5833 | F: include/linux/cciss*.h | |
c117ab84 | 5834 | F: include/uapi/linux/cciss*.h |
9257aa49 | 5835 | |
e2d1d6c0 | 5836 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
516fdcea | 5837 | M: Don Brace <don.brace@microsemi.com> |
516fdcea | 5838 | L: esc.storagedev@microsemi.com |
693373db | 5839 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 5840 | S: Supported |
679655da JP |
5841 | F: Documentation/blockdev/cciss.txt |
5842 | F: drivers/block/cciss* | |
5843 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 5844 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 5845 | |
f48ad614 DD |
5846 | HFI1 DRIVER |
5847 | M: Mike Marciniszyn <mike.marciniszyn@intel.com> | |
5848 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
5849 | L: linux-rdma@vger.kernel.org | |
5850 | S: Supported | |
5851 | F: drivers/infiniband/hw/hfi1 | |
5852 | ||
1da177e4 | 5853 | HFS FILESYSTEM |
6cf515e1 GU |
5854 | L: linux-fsdevel@vger.kernel.org |
5855 | S: Orphan | |
679655da JP |
5856 | F: Documentation/filesystems/hfs.txt |
5857 | F: fs/hfs/ | |
1da177e4 | 5858 | |
ef575f47 GU |
5859 | HFSPLUS FILESYSTEM |
5860 | L: linux-fsdevel@vger.kernel.org | |
5861 | S: Orphan | |
5862 | F: Documentation/filesystems/hfsplus.txt | |
5863 | F: fs/hfsplus/ | |
5864 | ||
1da177e4 | 5865 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 5866 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
5867 | L: linux-nvidia@lists.surfsouth.com |
5868 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
5869 | S: Maintained | |
8a61f013 | 5870 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 5871 | |
4480f15b | 5872 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 5873 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5874 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5875 | L: linux-pm@vger.kernel.org |
68656443 | 5876 | B: https://bugzilla.kernel.org |
e2d1d6c0 | 5877 | S: Supported |
679655da JP |
5878 | F: arch/x86/power/ |
5879 | F: drivers/base/power/ | |
5880 | F: kernel/power/ | |
5881 | F: include/linux/suspend.h | |
5882 | F: include/linux/freezer.h | |
5883 | F: include/linux/pm.h | |
679655da | 5884 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 5885 | |
4ef4caad | 5886 | HID CORE LAYER |
e5f6450c | 5887 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 5888 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
eb76c5c0 | 5889 | L: linux-input@vger.kernel.org |
54e5881d | 5890 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 5891 | S: Maintained |
679655da JP |
5892 | F: drivers/hid/ |
5893 | F: include/linux/hid* | |
c117ab84 | 5894 | F: include/uapi/linux/hid* |
4ef4caad | 5895 | |
30ee72f0 | 5896 | HID SENSOR HUB DRIVERS |
e5f6450c | 5897 | M: Jiri Kosina <jikos@kernel.org> |
30ee72f0 SP |
5898 | M: Jonathan Cameron <jic23@kernel.org> |
5899 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
5900 | L: linux-input@vger.kernel.org | |
5901 | L: linux-iio@vger.kernel.org | |
5902 | S: Maintained | |
5903 | F: Documentation/hid/hid-sensor* | |
5904 | F: drivers/hid/hid-sensor-* | |
5905 | F: drivers/iio/*/hid-* | |
5906 | F: include/linux/hid-sensor-* | |
5907 | ||
38bed542 | 5908 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 5909 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 5910 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 5911 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 5912 | S: Maintained |
679655da | 5913 | F: Documentation/timers/ |
5cee9645 | 5914 | F: kernel/time/hrtimer.c |
88606e80 TG |
5915 | F: kernel/time/clockevents.c |
5916 | F: kernel/time/tick*.* | |
5917 | F: kernel/time/timer_*.c | |
05ed8490 | 5918 | F: include/linux/clockchips.h |
679655da | 5919 | F: include/linux/hrtimer.h |
38bed542 | 5920 | |
1da177e4 | 5921 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 5922 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 5923 | S: Orphan |
679655da JP |
5924 | F: drivers/net/hamradio/dmascc.c |
5925 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 5926 | |
ede1e6f8 | 5927 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 5928 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
5929 | W: http://www.highpoint-tech.com |
5930 | S: Supported | |
679655da JP |
5931 | F: Documentation/scsi/hptiop.txt |
5932 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 5933 | |
1da177e4 | 5934 | HIPPI |
8b58be88 | 5935 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
5936 | L: linux-hippi@sunsite.dk |
5937 | S: Maintained | |
679655da | 5938 | F: include/linux/hippidevice.h |
c117ab84 | 5939 | F: include/uapi/linux/if_hippi.h |
679655da | 5940 | F: net/802/hippi.c |
ff5a3b50 | 5941 | F: drivers/net/hippi/ |
1da177e4 | 5942 | |
b30d74e4 DH |
5943 | HISILICON NETWORK SUBSYSTEM DRIVER |
5944 | M: Yisen Zhuang <yisen.zhuang@huawei.com> | |
5945 | M: Salil Mehta <salil.mehta@huawei.com> | |
5946 | L: netdev@vger.kernel.org | |
5947 | W: http://www.hisilicon.com | |
5948 | S: Maintained | |
5949 | F: drivers/net/ethernet/hisilicon/ | |
5950 | F: Documentation/devicetree/bindings/net/hisilicon*.txt | |
5951 | ||
66a9bae6 | 5952 | HISILICON ROCE DRIVER |
5953 | M: Lijun Ou <oulijun@huawei.com> | |
5954 | M: Wei Hu(Xavier) <xavier.huwei@huawei.com> | |
5955 | L: linux-rdma@vger.kernel.org | |
5956 | S: Maintained | |
5957 | F: drivers/infiniband/hw/hns/ | |
5958 | F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt | |
5959 | ||
16c6c252 JG |
5960 | HISILICON SAS Controller |
5961 | M: John Garry <john.garry@huawei.com> | |
5962 | W: http://www.hisilicon.com | |
5963 | S: Supported | |
5964 | F: drivers/scsi/hisi_sas/ | |
5965 | F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt | |
5966 | ||
ff1d2767 | 5967 | HOST AP DRIVER |
8b58be88 | 5968 | M: Jouni Malinen <j@w1.fi> |
724c6b35 | 5969 | L: linux-wireless@vger.kernel.org |
ffd74aca JM |
5970 | W: http://w1.fi/hostap-driver.html |
5971 | S: Obsolete | |
eb4f98d5 | 5972 | F: drivers/net/wireless/intersil/hostap/ |
ff1d2767 | 5973 | |
dd8cd779 | 5974 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 5975 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 5976 | S: Orphan |
679655da | 5977 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 5978 | |
e2d1d6c0 | 5979 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 5980 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5981 | S: Maintained |
7e25d724 | 5982 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 5983 | |
7d2c86b5 | 5984 | HPET: High Precision Event Timers driver |
8b58be88 | 5985 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 5986 | S: Maintained |
679655da JP |
5987 | F: Documentation/timers/hpet.txt |
5988 | F: drivers/char/hpet.c | |
5989 | F: include/linux/hpet.h | |
c117ab84 | 5990 | F: include/uapi/linux/hpet.h |
b9b0332f | 5991 | |
e07b5d79 | 5992 | HPET: x86 |
9e06f631 | 5993 | S: Orphan |
679655da JP |
5994 | F: arch/x86/kernel/hpet.c |
5995 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 5996 | |
1da177e4 | 5997 | HPFS FILESYSTEM |
8b58be88 | 5998 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
5999 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
6000 | S: Maintained | |
679655da | 6001 | F: fs/hpfs/ |
1da177e4 | 6002 | |
3441cded | 6003 | HSI SUBSYSTEM |
56459ea9 SR |
6004 | M: Sebastian Reichel <sre@kernel.org> |
6005 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
6006 | S: Maintained |
6007 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
70fc1f54 | 6008 | F: Documentation/device-drivers/serial-interfaces.rst |
3441cded SR |
6009 | F: drivers/hsi/ |
6010 | F: include/linux/hsi/ | |
6011 | F: include/uapi/linux/hsi/ | |
6012 | ||
7d2c86b5 | 6013 | HSO 3G MODEM DRIVER |
0bf09c39 BS |
6014 | L: linux-usb@vger.kernel.org |
6015 | S: Orphan | |
679655da | 6016 | F: drivers/net/usb/hso.c |
11cd29b0 | 6017 | |
19990e29 AB |
6018 | HSR NETWORK PROTOCOL |
6019 | M: Arvid Brodin <arvid.brodin@alten.se> | |
6020 | L: netdev@vger.kernel.org | |
6021 | S: Maintained | |
6022 | F: net/hsr/ | |
6023 | ||
5a18c343 | 6024 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 6025 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
6026 | L: linux-input@vger.kernel.org |
6027 | S: Maintained | |
679655da | 6028 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 6029 | |
1da177e4 | 6030 | HUGETLB FILESYSTEM |
6d49e352 | 6031 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 6032 | S: Maintained |
679655da | 6033 | F: fs/hugetlbfs/ |
1da177e4 | 6034 | |
fe713d60 JCT |
6035 | HVA ST MEDIA DRIVER |
6036 | M: Jean-Christophe Trotin <jean-christophe.trotin@st.com> | |
6037 | L: linux-media@vger.kernel.org | |
6038 | T: git git://linuxtv.org/media_tree.git | |
6039 | W: https://linuxtv.org | |
6040 | S: Supported | |
6041 | F: drivers/media/platform/sti/hva | |
6042 | ||
05183189 | 6043 | Hyper-V CORE AND DRIVERS |
9c3646d1 | 6044 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
05183189 | 6045 | M: Haiyang Zhang <haiyangz@microsoft.com> |
421463b8 | 6046 | M: Stephen Hemminger <sthemmin@microsoft.com> |
05183189 S |
6047 | L: devel@linuxdriverproject.org |
6048 | S: Maintained | |
a4162747 HZ |
6049 | F: arch/x86/include/asm/mshyperv.h |
6050 | F: arch/x86/include/uapi/asm/hyperv.h | |
6051 | F: arch/x86/kernel/cpu/mshyperv.c | |
8730046c | 6052 | F: arch/x86/hyperv |
05183189 | 6053 | F: drivers/hid/hid-hyperv.c |
a4162747 | 6054 | F: drivers/hv/ |
f92ca80b | 6055 | F: drivers/input/serio/hyperv-keyboard.c |
4daace0d | 6056 | F: drivers/pci/host/pci-hyperv.c |
05183189 | 6057 | F: drivers/net/hyperv/ |
a4162747 | 6058 | F: drivers/scsi/storvsc_drv.c |
95096f2f | 6059 | F: drivers/uio/uio_hv_generic.c |
8a61f013 | 6060 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
6061 | F: include/linux/hyperv.h |
6062 | F: tools/hv/ | |
54bf725e | 6063 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
05183189 | 6064 | |
7724fd04 PR |
6065 | I2C MUXES |
6066 | M: Peter Rosin <peda@axentia.se> | |
6067 | L: linux-i2c@vger.kernel.org | |
6068 | S: Maintained | |
2254d24a | 6069 | F: Documentation/i2c/i2c-topology |
7724fd04 PR |
6070 | F: Documentation/i2c/muxes/ |
6071 | F: Documentation/devicetree/bindings/i2c/i2c-mux* | |
e8813c15 | 6072 | F: Documentation/devicetree/bindings/i2c/i2c-arb* |
0ac8eb64 | 6073 | F: Documentation/devicetree/bindings/i2c/i2c-gate* |
7724fd04 PR |
6074 | F: drivers/i2c/i2c-mux.c |
6075 | F: drivers/i2c/muxes/ | |
6076 | F: include/linux/i2c-mux.h | |
6077 | ||
d85c8a6a | 6078 | I2C OVER PARALLEL PORT |
d8130624 | 6079 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
6080 | L: linux-i2c@vger.kernel.org |
6081 | S: Maintained | |
6082 | F: Documentation/i2c/busses/i2c-parport | |
6083 | F: Documentation/i2c/busses/i2c-parport-light | |
6084 | F: drivers/i2c/busses/i2c-parport.c | |
6085 | F: drivers/i2c/busses/i2c-parport-light.c | |
6086 | ||
6087 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
d8130624 | 6088 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
6089 | L: linux-i2c@vger.kernel.org |
6090 | S: Maintained | |
6091 | F: Documentation/i2c/busses/i2c-ali1535 | |
6092 | F: Documentation/i2c/busses/i2c-ali1563 | |
6093 | F: Documentation/i2c/busses/i2c-ali15x3 | |
6094 | F: Documentation/i2c/busses/i2c-amd756 | |
6095 | F: Documentation/i2c/busses/i2c-amd8111 | |
6096 | F: Documentation/i2c/busses/i2c-i801 | |
6097 | F: Documentation/i2c/busses/i2c-nforce2 | |
6098 | F: Documentation/i2c/busses/i2c-piix4 | |
6099 | F: Documentation/i2c/busses/i2c-sis5595 | |
6100 | F: Documentation/i2c/busses/i2c-sis630 | |
6101 | F: Documentation/i2c/busses/i2c-sis96x | |
6102 | F: Documentation/i2c/busses/i2c-via | |
6103 | F: Documentation/i2c/busses/i2c-viapro | |
6104 | F: drivers/i2c/busses/i2c-ali1535.c | |
6105 | F: drivers/i2c/busses/i2c-ali1563.c | |
6106 | F: drivers/i2c/busses/i2c-ali15x3.c | |
6107 | F: drivers/i2c/busses/i2c-amd756.c | |
6108 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
6109 | F: drivers/i2c/busses/i2c-amd8111.c | |
6110 | F: drivers/i2c/busses/i2c-i801.c | |
6111 | F: drivers/i2c/busses/i2c-isch.c | |
6112 | F: drivers/i2c/busses/i2c-nforce2.c | |
6113 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
6114 | F: drivers/i2c/busses/i2c-piix4.c | |
6115 | F: drivers/i2c/busses/i2c-sis5595.c | |
6116 | F: drivers/i2c/busses/i2c-sis630.c | |
6117 | F: drivers/i2c/busses/i2c-sis96x.c | |
6118 | F: drivers/i2c/busses/i2c-via.c | |
6119 | F: drivers/i2c/busses/i2c-viapro.c | |
6120 | ||
cb7f07a4 NH |
6121 | I2C/SMBUS ISMT DRIVER |
6122 | M: Seth Heasley <seth.heasley@intel.com> | |
6123 | M: Neil Horman <nhorman@tuxdriver.com> | |
6124 | L: linux-i2c@vger.kernel.org | |
6125 | F: drivers/i2c/busses/i2c-ismt.c | |
6126 | F: Documentation/i2c/busses/i2c-ismt | |
6127 | ||
6ea884db | 6128 | I2C/SMBUS STUB DRIVER |
d8130624 | 6129 | M: Jean Delvare <jdelvare@suse.com> |
846557d3 | 6130 | L: linux-i2c@vger.kernel.org |
6ea884db | 6131 | S: Maintained |
8547a5bc | 6132 | F: drivers/i2c/i2c-stub.c |
6ea884db | 6133 | |
5b543965 | 6134 | I2C SUBSYSTEM |
14d77c4d | 6135 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 6136 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
6137 | W: https://i2c.wiki.kernel.org/ |
6138 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 6139 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 6140 | S: Maintained |
40ed1b4c | 6141 | F: Documentation/devicetree/bindings/i2c/ |
679655da JP |
6142 | F: Documentation/i2c/ |
6143 | F: drivers/i2c/ | |
630bc46e | 6144 | F: drivers/i2c/*/ |
679655da | 6145 | F: include/linux/i2c.h |
03b70d62 | 6146 | F: include/linux/i2c-*.h |
c117ab84 CEB |
6147 | F: include/uapi/linux/i2c.h |
6148 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 6149 | |
4560d677 WS |
6150 | I2C ACPI SUPPORT |
6151 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
6152 | L: linux-i2c@vger.kernel.org | |
6153 | L: linux-acpi@vger.kernel.org | |
6154 | S: Maintained | |
4560d677 | 6155 | |
d85c8a6a | 6156 | I2C-TAOS-EVM DRIVER |
d8130624 | 6157 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
6158 | L: linux-i2c@vger.kernel.org |
6159 | S: Maintained | |
6160 | F: Documentation/i2c/busses/i2c-taos-evm | |
6161 | F: drivers/i2c/busses/i2c-taos-evm.c | |
6162 | ||
e8c76eed | 6163 | I2C-TINY-USB DRIVER |
8b58be88 | 6164 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 6165 | L: linux-i2c@vger.kernel.org |
932d1872 | 6166 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 6167 | S: Maintained |
679655da | 6168 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 6169 | |
1da177e4 | 6170 | i386 BOOT CODE |
8b58be88 | 6171 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 6172 | S: Maintained |
679655da | 6173 | F: arch/x86/boot/ |
1da177e4 LT |
6174 | |
6175 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 6176 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 6177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
6178 | S: Maintained |
6179 | ||
1da177e4 | 6180 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
6181 | M: Tony Luck <tony.luck@intel.com> |
6182 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 6183 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 6184 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 6185 | S: Maintained |
679655da | 6186 | F: arch/ia64/ |
1da177e4 | 6187 | |
4cd38750 LDSB |
6188 | IBM Power VMX Cryptographic instructions |
6189 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> | |
5cd01fe1 | 6190 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
4cd38750 LDSB |
6191 | L: linux-crypto@vger.kernel.org |
6192 | S: Supported | |
6193 | F: drivers/crypto/vmx/Makefile | |
6194 | F: drivers/crypto/vmx/Kconfig | |
6195 | F: drivers/crypto/vmx/vmx.c | |
6196 | F: drivers/crypto/vmx/aes* | |
6197 | F: drivers/crypto/vmx/ghash* | |
6198 | F: drivers/crypto/vmx/ppc-xlate.pl | |
6199 | ||
956c203c | 6200 | IBM Power in-Nest Crypto Acceleration |
4cd38750 | 6201 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
5cd01fe1 | 6202 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
956c203c KY |
6203 | L: linux-crypto@vger.kernel.org |
6204 | S: Supported | |
28bceeaa DS |
6205 | F: drivers/crypto/nx/Makefile |
6206 | F: drivers/crypto/nx/Kconfig | |
6207 | F: drivers/crypto/nx/nx-aes* | |
6208 | F: drivers/crypto/nx/nx-sha* | |
6209 | F: drivers/crypto/nx/nx.* | |
6210 | F: drivers/crypto/nx/nx_csbcpb.h | |
6211 | F: drivers/crypto/nx/nx_debugfs.h | |
956c203c | 6212 | |
0e16aafb | 6213 | IBM Power 842 compression accelerator |
41656aa7 | 6214 | M: Dan Streetman <ddstreet@ieee.org> |
0e16aafb | 6215 | S: Supported |
28bceeaa DS |
6216 | F: drivers/crypto/nx/Makefile |
6217 | F: drivers/crypto/nx/Kconfig | |
7011a122 | 6218 | F: drivers/crypto/nx/nx-842* |
2da572c9 | 6219 | F: include/linux/sw842.h |
2062c5b6 | 6220 | F: crypto/842.c |
2da572c9 | 6221 | F: lib/842/ |
0e16aafb | 6222 | |
1da177e4 | 6223 | IBM Power Linux RAID adapter |
8b58be88 | 6224 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 6225 | S: Supported |
679655da | 6226 | F: drivers/scsi/ipr.* |
1da177e4 | 6227 | |
9d348af4 | 6228 | IBM Power Virtual Ethernet Device Driver |
eddd63a6 | 6229 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
9d348af4 SL |
6230 | L: netdev@vger.kernel.org |
6231 | S: Supported | |
9aa32835 | 6232 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 6233 | |
032c5e82 TF |
6234 | IBM Power SRIOV Virtual NIC Device Driver |
6235 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> | |
6236 | M: John Allen <jallen@linux.vnet.ibm.com> | |
6237 | L: netdev@vger.kernel.org | |
6238 | S: Supported | |
6239 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
6240 | ||
e6babec6 | 6241 | IBM Power Virtual SCSI Device Drivers |
bcbde52b | 6242 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
4b7652cc RJ |
6243 | L: linux-scsi@vger.kernel.org |
6244 | S: Supported | |
e6babec6 | 6245 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
88a678bb BL |
6246 | F: include/scsi/viosrp.h |
6247 | ||
6248 | IBM Power Virtual SCSI Device Target Driver | |
6249 | M: Bryant G. Ly <bryantly@linux.vnet.ibm.com> | |
6250 | M: Michael Cyr <mikecyr@linux.vnet.ibm.com> | |
6251 | L: linux-scsi@vger.kernel.org | |
6252 | L: target-devel@vger.kernel.org | |
6253 | S: Supported | |
6254 | F: drivers/scsi/ibmvscsi_tgt/ | |
e6babec6 NF |
6255 | |
6256 | IBM Power Virtual FC Device Drivers | |
44b4dad9 | 6257 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
e6babec6 NF |
6258 | L: linux-scsi@vger.kernel.org |
6259 | S: Supported | |
6260 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 6261 | |
1da177e4 | 6262 | IBM ServeRAID RAID DRIVER |
f9213e78 | 6263 | S: Orphan |
679655da | 6264 | F: drivers/scsi/ips.* |
1da177e4 | 6265 | |
6ed9f9c4 PT |
6266 | ICH LPC AND GPIO DRIVER |
6267 | M: Peter Tyser <ptyser@xes-inc.com> | |
6268 | S: Maintained | |
6269 | F: drivers/mfd/lpc_ich.c | |
6270 | F: drivers/gpio/gpio-ich.c | |
6271 | ||
3e1aec4e MV |
6272 | IDT VersaClock 5 CLOCK DRIVER |
6273 | M: Marek Vasut <marek.vasut@gmail.com> | |
6274 | S: Maintained | |
6275 | F: drivers/clk/clk-versaclock5.c | |
6276 | ||
1e7106fc | 6277 | IDE SUBSYSTEM |
8b58be88 | 6278 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 6279 | L: linux-ide@vger.kernel.org |
8a6e2535 | 6280 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 6281 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 6282 | S: Maintained |
679655da JP |
6283 | F: Documentation/ide/ |
6284 | F: drivers/ide/ | |
6285 | F: include/linux/ide.h | |
1da177e4 | 6286 | |
6cb8c13d IP |
6287 | IDEAPAD LAPTOP EXTRAS DRIVER |
6288 | M: Ike Panhc <ike.pan@canonical.com> | |
6289 | L: platform-driver-x86@vger.kernel.org | |
6290 | W: http://launchpad.net/ideapad-laptop | |
6291 | S: Maintained | |
6292 | F: drivers/platform/x86/ideapad-laptop.c | |
6293 | ||
1ea4c161 AM |
6294 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
6295 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
6296 | L: linux-input@vger.kernel.org | |
6297 | W: https://github.com/o2genum/ideapad-slidebar | |
6298 | S: Maintained | |
6299 | F: drivers/input/misc/ideapad_slidebar.c | |
6300 | ||
0f861e8c | 6301 | IDE/ATAPI DRIVERS |
487ba8e8 | 6302 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 6303 | L: linux-ide@vger.kernel.org |
c404c199 | 6304 | S: Maintained |
679655da JP |
6305 | F: Documentation/cdrom/ide-cd |
6306 | F: drivers/ide/ide-cd* | |
1da177e4 | 6307 | |
02cf2286 | 6308 | IEEE 802.15.4 SUBSYSTEM |
aff3eaa0 | 6309 | M: Alexander Aring <aar@pengutronix.de> |
5cc92049 | 6310 | M: Stefan Schmidt <stefan@osg.samsung.com> |
ebef9c12 | 6311 | L: linux-wpan@vger.kernel.org |
aff3eaa0 AA |
6312 | W: http://wpan.cakelab.org/ |
6313 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git | |
6314 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
02cf2286 SL |
6315 | S: Maintained |
6316 | F: net/ieee802154/ | |
68653359 | 6317 | F: net/mac802154/ |
251741b1 | 6318 | F: drivers/net/ieee802154/ |
580947d3 AA |
6319 | F: include/linux/nl802154.h |
6320 | F: include/linux/ieee802154.h | |
6321 | F: include/net/nl802154.h | |
6322 | F: include/net/mac802154.h | |
6323 | F: include/net/af_ieee802154.h | |
6324 | F: include/net/cfg802154.h | |
6325 | F: include/net/ieee802154_netdev.h | |
ebef9c12 | 6326 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 6327 | |
1ce84604 YG |
6328 | IFE PROTOCOL |
6329 | M: Yotam Gigi <yotamg@mellanox.com> | |
6330 | M: Jamal Hadi Salim <jhs@mojatatu.com> | |
6331 | F: net/ife | |
6332 | F: include/net/ife.h | |
6333 | F: include/uapi/linux/ife.h | |
6334 | ||
b1c97193 SY |
6335 | IGORPLUG-USB IR RECEIVER |
6336 | M: Sean Young <sean@mess.org> | |
6337 | L: linux-media@vger.kernel.org | |
6338 | S: Maintained | |
6339 | F: drivers/media/rc/igorplugusb.c | |
6340 | ||
40ad4a30 SY |
6341 | IGUANAWORKS USB IR TRANSCEIVER |
6342 | M: Sean Young <sean@mess.org> | |
6343 | L: linux-media@vger.kernel.org | |
6344 | S: Maintained | |
6345 | F: drivers/media/rc/iguanair.c | |
6346 | ||
ed13134b PR |
6347 | IIO DIGITAL POTENTIOMETER DAC |
6348 | M: Peter Rosin <peda@axentia.se> | |
6349 | L: linux-iio@vger.kernel.org | |
6350 | S: Maintained | |
7fde1484 | 6351 | F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac |
ed13134b | 6352 | F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt |
7fde1484 | 6353 | F: drivers/iio/dac/dpot-dac.c |
ed13134b | 6354 | |
e778aa14 PR |
6355 | IIO ENVELOPE DETECTOR |
6356 | M: Peter Rosin <peda@axentia.se> | |
6357 | L: linux-iio@vger.kernel.org | |
6358 | S: Maintained | |
b475f80b | 6359 | F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector |
e778aa14 | 6360 | F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt |
b475f80b | 6361 | F: drivers/iio/adc/envelope-detector.c |
e778aa14 | 6362 | |
9545f86e | 6363 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 6364 | M: Jonathan Cameron <jic23@kernel.org> |
f0d61161 LPC |
6365 | R: Hartmut Knaack <knaack.h@gmx.de> |
6366 | R: Lars-Peter Clausen <lars@metafoo.de> | |
6fca5aa8 | 6367 | R: Peter Meerwald-Stadler <pmeerw@pmeerw.net> |
9545f86e | 6368 | L: linux-iio@vger.kernel.org |
21d41655 | 6369 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git |
9545f86e | 6370 | S: Maintained |
866b148a | 6371 | F: Documentation/devicetree/bindings/iio/ |
03e7c251 | 6372 | F: drivers/iio/ |
9545f86e | 6373 | F: drivers/staging/iio/ |
8fe671fc | 6374 | F: include/linux/iio/ |
817020cf | 6375 | F: tools/iio/ |
9545f86e | 6376 | |
65519263 SG |
6377 | IKANOS/ADI EAGLE ADSL USB DRIVER |
6378 | M: Matthieu Castet <castet.matthieu@free.fr> | |
6379 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
6380 | S: Maintained | |
6381 | F: drivers/usb/atm/ueagle-atm.c | |
6382 | ||
8ef3ff27 PB |
6383 | IMGTEC ASCII LCD DRIVER |
6384 | M: Paul Burton <paul.burton@imgtec.com> | |
6385 | S: Maintained | |
6386 | F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt | |
0cad855f | 6387 | F: drivers/auxdisplay/img-ascii-lcd.c |
8ef3ff27 | 6388 | |
e89ab51f GR |
6389 | INA209 HARDWARE MONITOR DRIVER |
6390 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6391 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
6392 | S: Maintained |
6393 | F: Documentation/hwmon/ina209 | |
6394 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
6395 | F: drivers/hwmon/ina209.c | |
6396 | ||
6397 | INA2XX HARDWARE MONITOR DRIVER | |
6398 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6399 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
6400 | S: Maintained |
6401 | F: Documentation/hwmon/ina2xx | |
6402 | F: drivers/hwmon/ina2xx.c | |
6403 | F: include/linux/platform_data/ina2xx.h | |
6404 | ||
14dc124f SIG |
6405 | INDUSTRY PACK SUBSYSTEM (IPACK) |
6406 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
6407 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
6408 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
6409 | L: industrypack-devel@lists.sourceforge.net | |
6410 | W: http://industrypack.sourceforge.net | |
6411 | S: Maintained | |
6412 | F: drivers/ipack/ | |
6413 | ||
8adc53fd ZLK |
6414 | INGENIC JZ4780 DMA Driver |
6415 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | |
6416 | S: Maintained | |
6417 | F: drivers/dma/dma-jz4780.c | |
6418 | ||
87cf40e6 HH |
6419 | INGENIC JZ4780 NAND DRIVER |
6420 | M: Harvey Hunt <harveyhuntnexus@gmail.com> | |
6421 | L: linux-mtd@lists.infradead.org | |
6422 | S: Maintained | |
6423 | F: drivers/mtd/nand/jz4780_* | |
6424 | ||
aa7168f4 | 6425 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 6426 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
bfd33c4b | 6427 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
74dd744f MZ |
6428 | L: linux-ima-devel@lists.sourceforge.net |
6429 | L: linux-ima-user@lists.sourceforge.net | |
6430 | L: linux-security-module@vger.kernel.org | |
9f273c24 | 6431 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git |
aa7168f4 | 6432 | S: Supported |
679655da | 6433 | F: security/integrity/ima/ |
aa7168f4 | 6434 | |
9a4ea5a9 JH |
6435 | IMGTEC IR DECODER DRIVER |
6436 | M: James Hogan <james.hogan@imgtec.com> | |
6437 | S: Maintained | |
6438 | F: drivers/media/rc/img-ir/ | |
6439 | ||
1da177e4 | 6440 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 6441 | L: linux-fbdev@vger.kernel.org |
843393d3 | 6442 | S: Orphan |
8a61f013 | 6443 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
6444 | |
6445 | INFINIBAND SUBSYSTEM | |
b6b2bbe6 | 6446 | M: Doug Ledford <dledford@redhat.com> |
8b58be88 JP |
6447 | M: Sean Hefty <sean.hefty@intel.com> |
6448 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 6449 | L: linux-rdma@vger.kernel.org |
605841f5 | 6450 | W: http://www.openfabrics.org/ |
8a6e2535 | 6451 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
2936ae04 | 6452 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
1da177e4 | 6453 | S: Supported |
679655da JP |
6454 | F: Documentation/infiniband/ |
6455 | F: drivers/infiniband/ | |
c117ab84 | 6456 | F: include/uapi/linux/if_infiniband.h |
954138dc YD |
6457 | F: include/uapi/rdma/ |
6458 | F: include/rdma/ | |
1da177e4 | 6459 | |
c9f04f58 | 6460 | INOTIFY |
8b58be88 JP |
6461 | M: John McCutchan <john@johnmccutchan.com> |
6462 | M: Robert Love <rlove@rlove.org> | |
6463 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 6464 | S: Maintained |
679655da JP |
6465 | F: Documentation/filesystems/inotify.txt |
6466 | F: fs/notify/inotify/ | |
6467 | F: include/linux/inotify.h | |
c117ab84 | 6468 | F: include/uapi/linux/inotify.h |
c9f04f58 | 6469 | |
e2d1d6c0 | 6470 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 | 6471 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
e2d1d6c0 | 6472 | L: linux-input@vger.kernel.org |
8a6e2535 | 6473 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 6474 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 6475 | S: Maintained |
679655da | 6476 | F: drivers/input/ |
f4eea7e2 | 6477 | F: include/linux/input.h |
c117ab84 | 6478 | F: include/uapi/linux/input.h |
f4eea7e2 | 6479 | F: include/linux/input/ |
e52d8398 | 6480 | F: Documentation/devicetree/bindings/input/ |
e2d1d6c0 | 6481 | |
3267a87f | 6482 | INPUT MULTITOUCH (MT) PROTOCOL |
75dd112a | 6483 | M: Henrik Rydberg <rydberg@bitmath.org> |
3267a87f | 6484 | L: linux-input@vger.kernel.org |
75dd112a | 6485 | S: Odd fixes |
3267a87f | 6486 | F: Documentation/input/multi-touch-protocol.txt |
7f9c2454 | 6487 | F: drivers/input/input-mt.c |
3267a87f HR |
6488 | K: \b(ABS|SYN)_MT_ |
6489 | ||
97fa99a3 JY |
6490 | INTEL ASoC BDW/HSW DRIVERS |
6491 | M: Jie Yang <yang.jie@linux.intel.com> | |
e5747e40 | 6492 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
97fa99a3 | 6493 | S: Supported |
e8e1225d JP |
6494 | F: sound/soc/intel/common/sst-dsp* |
6495 | F: sound/soc/intel/common/sst-firmware.c | |
6496 | F: sound/soc/intel/boards/broadwell.c | |
6497 | F: sound/soc/intel/haswell/ | |
97fa99a3 | 6498 | |
4ac13e17 DJ |
6499 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
6500 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 6501 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 6502 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
6503 | T: git git://git.code.sf.net/p/intel-sas/isci |
6504 | S: Supported | |
4ac13e17 | 6505 | F: drivers/scsi/isci/ |
4ac13e17 | 6506 | |
ecc83e52 AH |
6507 | INTEL HID EVENT DRIVER |
6508 | M: Alex Hung <alex.hung@canonical.com> | |
6509 | L: platform-driver-x86@vger.kernel.org | |
6510 | S: Maintained | |
6511 | F: drivers/platform/x86/intel-hid.c | |
6512 | ||
332e0812 AK |
6513 | INTEL VIRTUAL BUTTON DRIVER |
6514 | M: AceLan Kao <acelan.kao@canonical.com> | |
6515 | L: platform-driver-x86@vger.kernel.org | |
6516 | S: Maintained | |
6517 | F: drivers/platform/x86/intel-vbtn.c | |
6518 | ||
26717172 | 6519 | INTEL IDLE DRIVER |
6af33995 | 6520 | M: Jacob Pan <jacob.jun.pan@linux.intel.com> |
26717172 | 6521 | M: Len Brown <lenb@kernel.org> |
bf1c138e | 6522 | L: linux-pm@vger.kernel.org |
08deed1e | 6523 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
2ed38cbe | 6524 | B: https://bugzilla.kernel.org |
26717172 LB |
6525 | S: Supported |
6526 | F: drivers/idle/intel_idle.c | |
6527 | ||
8fb861fa SP |
6528 | INTEL INTEGRATED SENSOR HUB DRIVER |
6529 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
6530 | M: Jiri Kosina <jikos@kernel.org> | |
6531 | L: linux-input@vger.kernel.org | |
6532 | S: Maintained | |
6533 | F: drivers/hid/intel-ish-hid/ | |
6534 | ||
7c1ac18d | 6535 | INTEL PSTATE DRIVER |
58ac1f62 SP |
6536 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
6537 | M: Len Brown <lenb@kernel.org> | |
7c1ac18d KCA |
6538 | L: linux-pm@vger.kernel.org |
6539 | S: Supported | |
6540 | F: drivers/cpufreq/intel_pstate.c | |
6541 | ||
9eb8ef74 | 6542 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
d8e38754 | 6543 | M: Maik Broemme <mbroemme@libmpq.org> |
c69f677c | 6544 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6545 | S: Maintained |
679655da | 6546 | F: Documentation/fb/intelfb.txt |
8a61f013 | 6547 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 6548 | |
1da177e4 | 6549 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 6550 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 6551 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6552 | S: Maintained |
8a61f013 | 6553 | F: drivers/video/fbdev/i810/ |
1da177e4 | 6554 | |
f4a9bc4c | 6555 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 6556 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 6557 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 6558 | W: https://01.org/linux-acpi |
f4a9bc4c | 6559 | S: Supported |
679655da | 6560 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 6561 | |
248a9dc3 | 6562 | INTEL I/OAT DMA DRIVER |
18ebd564 | 6563 | M: Dave Jiang <dave.jiang@intel.com> |
08223d80 | 6564 | R: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
6565 | L: dmaengine@vger.kernel.org |
6566 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
6567 | S: Supported | |
679655da | 6568 | F: drivers/dma/ioat* |
248a9dc3 | 6569 | |
6c8909b4 | 6570 | INTEL IOMMU (VT-d) |
8b58be88 | 6571 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 6572 | L: iommu@lists.linux-foundation.org |
54e5881d | 6573 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 6574 | S: Supported |
3fb39615 | 6575 | F: drivers/iommu/intel-iommu.c |
679655da | 6576 | F: include/linux/intel-iommu.h |
6c8909b4 | 6577 | |
b3e5f263 | 6578 | INTEL IOP-ADMA DMA DRIVER |
08223d80 | 6579 | R: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 6580 | S: Odd fixes |
679655da | 6581 | F: drivers/dma/iop-adma.c |
b3e5f263 | 6582 | |
9251ce95 | 6583 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
5529c2cd | 6584 | M: Krzysztof Halasa <khalasa@piap.pl> |
9251ce95 | 6585 | S: Maintained |
679655da JP |
6586 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
6587 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
6588 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
6589 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 6590 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 6591 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 6592 | |
844dd05f | 6593 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 6594 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 6595 | S: Maintained |
679655da | 6596 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 6597 | |
2f302324 | 6598 | INTEL ETHERNET DRIVERS |
8b58be88 | 6599 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
eff471b1 | 6600 | L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers) |
f6fde11a | 6601 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 6602 | W: http://e1000.sourceforge.net/ |
2f302324 JK |
6603 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
6604 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git | |
6605 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git | |
1da177e4 | 6606 | S: Supported |
0d164401 JK |
6607 | F: Documentation/networking/e100.txt |
6608 | F: Documentation/networking/e1000.txt | |
6609 | F: Documentation/networking/e1000e.txt | |
6610 | F: Documentation/networking/igb.txt | |
6611 | F: Documentation/networking/igbvf.txt | |
6612 | F: Documentation/networking/ixgb.txt | |
6613 | F: Documentation/networking/ixgbe.txt | |
6614 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 6615 | F: Documentation/networking/i40e.txt |
105bf2fe | 6616 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 6617 | F: drivers/net/ethernet/intel/ |
bc90d291 | 6618 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 6619 | |
6e4de866 FL |
6620 | INTEL RDMA RNIC DRIVER |
6621 | M: Faisal Latif <faisal.latif@intel.com> | |
3b9d9650 | 6622 | M: Shiraz Saleem <shiraz.saleem@intel.com> |
6e4de866 FL |
6623 | L: linux-rdma@vger.kernel.org |
6624 | S: Supported | |
6625 | F: drivers/infiniband/hw/i40iw/ | |
6626 | ||
224f9e6d AS |
6627 | INTEL MERRIFIELD GPIO DRIVER |
6628 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
6629 | L: linux-gpio@vger.kernel.org | |
6630 | S: Maintained | |
6631 | F: drivers/gpio/gpio-merrifield.c | |
6632 | ||
0963d59b LW |
6633 | INTEL-MID GPIO DRIVER |
6634 | M: David Cohen <david.a.cohen@linux.intel.com> | |
6635 | L: linux-gpio@vger.kernel.org | |
6636 | S: Maintained | |
6637 | F: drivers/gpio/gpio-intel-mid.c | |
6638 | ||
ca907a90 SY |
6639 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
6640 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 6641 | L: linux-wireless@vger.kernel.org |
ca907a90 | 6642 | S: Maintained |
679655da | 6643 | F: Documentation/networking/README.ipw2100 |
679655da | 6644 | F: Documentation/networking/README.ipw2200 |
367a1092 | 6645 | F: drivers/net/wireless/intel/ipw2x00/ |
826d2abe | 6646 | |
5760b0a5 AS |
6647 | INTEL(R) TRACE HUB |
6648 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
6649 | S: Supported | |
6650 | F: Documentation/trace/intel_th.txt | |
6651 | F: drivers/hwtracing/intel_th/ | |
6652 | ||
4bd96a7a | 6653 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
74b18e17 | 6654 | M: Ning Sun <ning.sun@intel.com> |
4bd96a7a SW |
6655 | L: tboot-devel@lists.sourceforge.net |
6656 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 6657 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
6658 | S: Supported |
6659 | F: Documentation/intel_txt.txt | |
6660 | F: include/linux/tboot.h | |
6661 | F: arch/x86/kernel/tboot.c | |
6662 | ||
8a70da82 | 6663 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 6664 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 6665 | M: linux-wimax@intel.com |
49e7d9df | 6666 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
6667 | S: Supported |
6668 | W: http://linuxwimax.org | |
679655da JP |
6669 | F: Documentation/wimax/README.i2400m |
6670 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 6671 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 6672 | |
1c0ce89c SG |
6673 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
6674 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 6675 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 6676 | S: Supported |
7ac9a364 | 6677 | F: drivers/net/wireless/intel/iwlegacy/ |
efa3144e | 6678 | |
b481de9c | 6679 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 6680 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 6681 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
af5e964f | 6682 | M: Luca Coelho <luciano.coelho@intel.com> |
7b9aebf0 | 6683 | M: Intel Linux Wireless <linuxwifi@intel.com> |
b481de9c | 6684 | L: linux-wireless@vger.kernel.org |
b481de9c | 6685 | W: http://intellinuxwireless.org |
b62ff718 | 6686 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 6687 | S: Supported |
e705c121 | 6688 | F: drivers/net/wireless/intel/iwlwifi/ |
b481de9c | 6689 | |
de8fe023 TW |
6690 | INTEL MANAGEMENT ENGINE (mei) |
6691 | M: Tomas Winkler <tomas.winkler@intel.com> | |
6692 | L: linux-kernel@vger.kernel.org | |
6693 | S: Supported | |
c117ab84 | 6694 | F: include/uapi/linux/mei.h |
5069288b | 6695 | F: include/linux/mei_cl_bus.h |
de8fe023 | 6696 | F: drivers/misc/mei/* |
222818c3 | 6697 | F: drivers/watchdog/mei_wdt.c |
e07950a1 | 6698 | F: Documentation/misc-devices/mei/* |
986b891a | 6699 | F: samples/mei/* |
de8fe023 | 6700 | |
50ceb98b SD |
6701 | INTEL MIC DRIVERS (mic) |
6702 | M: Sudeep Dutt <sudeep.dutt@intel.com> | |
6703 | M: Ashutosh Dixit <ashutosh.dixit@intel.com> | |
6704 | S: Supported | |
6705 | W: https://github.com/sudeepdutt/mic | |
6706 | W: http://software.intel.com/en-us/mic-developer | |
6707 | F: include/linux/mic_bus.h | |
6708 | F: include/linux/scif.h | |
6709 | F: include/uapi/linux/mic_common.h | |
6710 | F: include/uapi/linux/mic_ioctl.h | |
9f273c24 | 6711 | F: include/uapi/linux/scif_ioctl.h |
50ceb98b SD |
6712 | F: drivers/misc/mic/ |
6713 | F: drivers/dma/mic_x100_dma.c | |
6714 | F: drivers/dma/mic_x100_dma.h | |
9f273c24 | 6715 | F: Documentation/mic/ |
50ceb98b | 6716 | |
fdca4f16 | 6717 | INTEL PMC/P-Unit IPC DRIVER |
0a8b8353 | 6718 | M: Zha Qipeng<qipeng.zha@intel.com> |
6719 | L: platform-driver-x86@vger.kernel.org | |
6720 | S: Maintained | |
6721 | F: drivers/platform/x86/intel_pmc_ipc.c | |
fdca4f16 | 6722 | F: drivers/platform/x86/intel_punit_ipc.c |
0a8b8353 | 6723 | F: arch/x86/include/asm/intel_pmc_ipc.h |
fdca4f16 | 6724 | F: arch/x86/include/asm/intel_punit_ipc.h |
0a8b8353 | 6725 | |
378f956e SKC |
6726 | INTEL TELEMETRY DRIVER |
6727 | M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com> | |
6728 | L: platform-driver-x86@vger.kernel.org | |
6729 | S: Maintained | |
378f956e | 6730 | F: arch/x86/include/asm/intel_telemetry.h |
f1fc3cd8 | 6731 | F: drivers/platform/x86/intel_telemetry* |
0a8b8353 | 6732 | |
b740d2e9 RB |
6733 | INTEL PMC CORE DRIVER |
6734 | M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com> | |
6735 | M: Vishwanath Somayaji <vishwanath.somayaji@intel.com> | |
6736 | L: platform-driver-x86@vger.kernel.org | |
6737 | S: Maintained | |
6738 | F: arch/x86/include/asm/pmc_core.h | |
6739 | F: drivers/platform/x86/intel_pmc_core* | |
6740 | ||
3904b28e LW |
6741 | INVENSENSE MPU-3050 GYROSCOPE DRIVER |
6742 | M: Linus Walleij <linus.walleij@linaro.org> | |
6743 | L: linux-iio@vger.kernel.org | |
6744 | S: Maintained | |
6745 | F: drivers/iio/gyro/mpu3050* | |
6746 | F: Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt | |
6747 | ||
cb109a0e | 6748 | IOC3 ETHERNET DRIVER |
8b58be88 | 6749 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
6750 | L: linux-mips@linux-mips.org |
6751 | S: Maintained | |
8862bf1e | 6752 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 6753 | |
cb109a0e | 6754 | IOC3 SERIAL DRIVER |
8b58be88 | 6755 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 6756 | L: linux-serial@vger.kernel.org |
cb109a0e | 6757 | S: Maintained |
df621252 | 6758 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 6759 | |
0b6e8569 SW |
6760 | IOMMU DRIVERS |
6761 | M: Joerg Roedel <joro@8bytes.org> | |
6762 | L: iommu@lists.linux-foundation.org | |
6763 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
6764 | S: Maintained | |
efcd94c0 | 6765 | F: Documentation/devicetree/bindings/iommu/ |
0b6e8569 SW |
6766 | F: drivers/iommu/ |
6767 | ||
4480f15b | 6768 | IP MASQUERADING |
8b58be88 | 6769 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 6770 | S: Maintained |
679655da | 6771 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 6772 | |
4409ebe9 | 6773 | IPMI SUBSYSTEM |
8b58be88 | 6774 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 6775 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
6776 | W: http://openipmi.sourceforge.net/ |
6777 | S: Supported | |
679655da JP |
6778 | F: Documentation/IPMI.txt |
6779 | F: drivers/char/ipmi/ | |
6780 | F: include/linux/ipmi* | |
c117ab84 | 6781 | F: include/uapi/linux/ipmi* |
4409ebe9 | 6782 | |
2d800897 KW |
6783 | QCOM AUDIO (ASoC) DRIVERS |
6784 | M: Patrick Lai <plai@codeaurora.org> | |
6785 | M: Banajit Goswami <bgoswami@codeaurora.org> | |
6786 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
6787 | S: Supported | |
6788 | F: sound/soc/qcom/ | |
6789 | ||
e2d1d6c0 | 6790 | IPS SCSI RAID DRIVER |
8b58be88 | 6791 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
6792 | L: linux-scsi@vger.kernel.org |
6793 | W: http://www.adaptec.com/ | |
6794 | S: Maintained | |
679655da | 6795 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
6796 | |
6797 | IPVS | |
8b58be88 JP |
6798 | M: Wensong Zhang <wensong@linux-vs.org> |
6799 | M: Simon Horman <horms@verge.net.au> | |
6800 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 6801 | L: netdev@vger.kernel.org |
e2d1d6c0 | 6802 | L: lvs-devel@vger.kernel.org |
1da177e4 | 6803 | S: Maintained |
9f273c24 FW |
6804 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git |
6805 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git | |
679655da | 6806 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 6807 | F: include/net/ip_vs.h |
c117ab84 | 6808 | F: include/uapi/linux/ip_vs.h |
679655da | 6809 | F: net/netfilter/ipvs/ |
1da177e4 | 6810 | |
e7839f25 | 6811 | IPWIRELESS DRIVER |
e5f6450c | 6812 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 6813 | M: David Sterba <dsterba@suse.com> |
92094aa0 | 6814 | S: Odd Fixes |
282361a0 | 6815 | F: drivers/tty/ipwireless/ |
099dc4fb | 6816 | |
e2d1d6c0 | 6817 | IPX NETWORK LAYER |
e2d1d6c0 | 6818 | L: netdev@vger.kernel.org |
0c59d281 | 6819 | S: Odd fixes |
679655da | 6820 | F: include/net/ipx.h |
c117ab84 | 6821 | F: include/uapi/linux/ipx.h |
679655da | 6822 | F: net/ipx/ |
e2d1d6c0 | 6823 | |
1da177e4 | 6824 | IRDA SUBSYSTEM |
8b58be88 | 6825 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 6826 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 6827 | L: netdev@vger.kernel.org |
1da177e4 | 6828 | W: http://irda.sourceforge.net/ |
f353976d | 6829 | S: Maintained |
e0057975 | 6830 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
6831 | F: Documentation/networking/irda.txt |
6832 | F: drivers/net/irda/ | |
6833 | F: include/net/irda/ | |
6834 | F: net/irda/ | |
1da177e4 | 6835 | |
a800c7cc TG |
6836 | IRQ SUBSYSTEM |
6837 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 6838 | L: linux-kernel@vger.kernel.org |
a800c7cc | 6839 | S: Maintained |
75fc2d37 | 6840 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 6841 | F: kernel/irq/ |
2ed9fd28 JC |
6842 | |
6843 | IRQCHIP DRIVERS | |
6844 | M: Thomas Gleixner <tglx@linutronix.de> | |
6845 | M: Jason Cooper <jason@lakedaemon.net> | |
54d9ffc4 | 6846 | M: Marc Zyngier <marc.zyngier@arm.com> |
2ed9fd28 JC |
6847 | L: linux-kernel@vger.kernel.org |
6848 | S: Maintained | |
6849 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
6850 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
5b5a9069 | 6851 | F: Documentation/devicetree/bindings/interrupt-controller/ |
edd96900 | 6852 | F: drivers/irqchip/ |
a800c7cc | 6853 | |
7ab3a837 | 6854 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
b09dec2c | 6855 | M: Marc Zyngier <marc.zyngier@arm.com> |
7ab3a837 | 6856 | S: Maintained |
b09dec2c | 6857 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
7ab3a837 GL |
6858 | F: Documentation/IRQ-domain.txt |
6859 | F: include/linux/irqdomain.h | |
6860 | F: kernel/irq/irqdomain.c | |
b09dec2c | 6861 | F: kernel/irq/msi.c |
7ab3a837 | 6862 | |
ad7afc38 WBG |
6863 | ISA |
6864 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
6865 | S: Maintained | |
6866 | F: Documentation/isa.txt | |
6867 | F: drivers/base/isa.c | |
6868 | F: include/linux/isa.h | |
6869 | ||
e2d1d6c0 | 6870 | ISAPNP |
8b58be88 | 6871 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 6872 | S: Maintained |
679655da JP |
6873 | F: Documentation/isapnp.txt |
6874 | F: drivers/pnp/isapnp/ | |
6875 | F: include/linux/isapnp.h | |
e2d1d6c0 | 6876 | |
d39b8420 HV |
6877 | ISA RADIO MODULE |
6878 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6879 | L: linux-media@vger.kernel.org | |
6880 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6881 | W: https://linuxtv.org |
d39b8420 HV |
6882 | S: Maintained |
6883 | F: drivers/media/radio/radio-isa* | |
6884 | ||
71a6d0af HW |
6885 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
6886 | M: Peter Jones <pjones@redhat.com> | |
6887 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
6888 | S: Maintained | |
6889 | F: drivers/firmware/iscsi_ibft* | |
6890 | ||
14816b1e | 6891 | ISCSI |
623290a2 LD |
6892 | M: Lee Duncan <lduncan@suse.com> |
6893 | M: Chris Leech <cleech@redhat.com> | |
14816b1e | 6894 | L: open-iscsi@googlegroups.com |
623290a2 | 6895 | W: www.open-iscsi.com |
14816b1e | 6896 | S: Maintained |
679655da JP |
6897 | F: drivers/scsi/*iscsi* |
6898 | F: include/scsi/*iscsi* | |
14816b1e | 6899 | |
1e65eb42 OG |
6900 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
6901 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
e7d2c25d | 6902 | M: Sagi Grimberg <sagi@grimberg.me> |
1e65eb42 OG |
6903 | M: Roi Dayan <roid@mellanox.com> |
6904 | L: linux-rdma@vger.kernel.org | |
6905 | S: Supported | |
6906 | W: http://www.openfabrics.org | |
6907 | W: www.open-iscsi.org | |
6908 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 6909 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 6910 | |
2b70e5fd | 6911 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
e7d2c25d | 6912 | M: Sagi Grimberg <sagi@grimberg.me> |
2b70e5fd SG |
6913 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
6914 | L: linux-rdma@vger.kernel.org | |
6915 | L: target-devel@vger.kernel.org | |
6916 | S: Supported | |
6917 | W: http://www.linux-iscsi.org | |
6918 | F: drivers/infiniband/ulp/isert | |
6919 | ||
1da177e4 | 6920 | ISDN SUBSYSTEM |
8b58be88 | 6921 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 6922 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 6923 | L: netdev@vger.kernel.org |
1da177e4 | 6924 | W: http://www.isdn4linux.de |
54e5881d | 6925 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 6926 | S: Maintained |
679655da JP |
6927 | F: Documentation/isdn/ |
6928 | F: drivers/isdn/ | |
6929 | F: include/linux/isdn.h | |
6930 | F: include/linux/isdn/ | |
c117ab84 CEB |
6931 | F: include/uapi/linux/isdn.h |
6932 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
6933 | |
6934 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 6935 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 6936 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
6937 | W: http://www.melware.de |
6938 | S: Maintained | |
679655da | 6939 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 6940 | |
d624870f | 6941 | IT87 HARDWARE MONITORING DRIVER |
d8130624 | 6942 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 6943 | L: linux-hwmon@vger.kernel.org |
d624870f JD |
6944 | S: Maintained |
6945 | F: Documentation/hwmon/it87 | |
6946 | F: drivers/hwmon/it87.c | |
6947 | ||
d7104bff AP |
6948 | IT913X MEDIA DRIVER |
6949 | M: Antti Palosaari <crope@iki.fi> | |
6950 | L: linux-media@vger.kernel.org | |
a825eaec | 6951 | W: https://linuxtv.org |
d7104bff AP |
6952 | W: http://palosaari.fi/linux/ |
6953 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6954 | T: git git://linuxtv.org/anttip/media_tree.git | |
6955 | S: Maintained | |
249c697e | 6956 | F: drivers/media/tuners/it913x* |
d7104bff | 6957 | |
91821ff3 | 6958 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 6959 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 6960 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 6961 | L: linux-media@vger.kernel.org |
275ffde4 | 6962 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
6963 | W: http://www.ivtvdriver.org |
6964 | S: Maintained | |
618cd932 | 6965 | F: Documentation/media/v4l-drivers/ivtv* |
90d72ac6 | 6966 | F: drivers/media/pci/ivtv/ |
c117ab84 | 6967 | F: include/uapi/linux/ivtv* |
91821ff3 | 6968 | |
68620bdd MP |
6969 | IX2505V MEDIA DRIVER |
6970 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6971 | L: linux-media@vger.kernel.org | |
a825eaec | 6972 | W: https://linuxtv.org |
68620bdd MP |
6973 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
6974 | S: Maintained | |
6975 | F: drivers/media/dvb-frontends/ix2505v* | |
6976 | ||
4453d736 GR |
6977 | JC42.4 TEMPERATURE SENSOR DRIVER |
6978 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6979 | L: linux-hwmon@vger.kernel.org |
4453d736 GR |
6980 | S: Maintained |
6981 | F: drivers/hwmon/jc42.c | |
6982 | F: Documentation/hwmon/jc42 | |
6983 | ||
e2d1d6c0 | 6984 | JFS FILESYSTEM |
3256f80f | 6985 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
6986 | L: jfs-discussion@lists.sourceforge.net |
6987 | W: http://jfs.sourceforge.net/ | |
54e5881d | 6988 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 6989 | S: Maintained |
679655da JP |
6990 | F: Documentation/filesystems/jfs.txt |
6991 | F: fs/jfs/ | |
e2d1d6c0 | 6992 | |
95252236 | 6993 | JME NETWORK DRIVER |
8b58be88 | 6994 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
6995 | L: netdev@vger.kernel.org |
6996 | S: Maintained | |
63d24a0e | 6997 | F: drivers/net/ethernet/jme.* |
95252236 | 6998 | |
1da177e4 | 6999 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 7000 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
7001 | L: linux-mtd@lists.infradead.org |
7002 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 7003 | S: Maintained |
679655da | 7004 | F: fs/jffs2/ |
c117ab84 | 7005 | F: include/uapi/linux/jffs2.h |
1da177e4 | 7006 | |
d183e11a TT |
7007 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
7008 | M: "Theodore Ts'o" <tytso@mit.edu> | |
c290ea01 | 7009 | M: Jan Kara <jack@suse.com> |
d183e11a TT |
7010 | L: linux-ext4@vger.kernel.org |
7011 | S: Maintained | |
7012 | F: fs/jbd2/ | |
7013 | F: include/linux/jbd2.h | |
ae0718f8 | 7014 | |
207dab5f MU |
7015 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
7016 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> | |
7017 | L: linux-media@vger.kernel.org | |
7018 | S: Maintained | |
7019 | F: drivers/media/platform/rcar_jpu.c | |
7020 | ||
fd8b6cb4 | 7021 | JSM Neo PCI based serial card |
df247081 | 7022 | M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> |
fd8b6cb4 BL |
7023 | L: linux-serial@vger.kernel.org |
7024 | S: Maintained | |
df621252 | 7025 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 7026 | |
af39917d CL |
7027 | K10TEMP HARDWARE MONITORING DRIVER |
7028 | M: Clemens Ladisch <clemens@ladisch.de> | |
968ce1b1 | 7029 | L: linux-hwmon@vger.kernel.org |
af39917d CL |
7030 | S: Maintained |
7031 | F: Documentation/hwmon/k10temp | |
7032 | F: drivers/hwmon/k10temp.c | |
7033 | ||
4660cb35 | 7034 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 7035 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 7036 | L: linux-hwmon@vger.kernel.org |
ae0718f8 | 7037 | S: Maintained |
679655da JP |
7038 | F: Documentation/hwmon/k8temp |
7039 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 7040 | |
0ba1d91d AR |
7041 | KASAN |
7042 | M: Andrey Ryabinin <aryabinin@virtuozzo.com> | |
7043 | R: Alexander Potapenko <glider@google.com> | |
7044 | R: Dmitry Vyukov <dvyukov@google.com> | |
7045 | L: kasan-dev@googlegroups.com | |
7046 | S: Maintained | |
7047 | F: arch/*/include/asm/kasan.h | |
7048 | F: arch/*/mm/kasan_init* | |
2757aafa | 7049 | F: Documentation/dev-tools/kasan.rst |
64f8ebaf | 7050 | F: include/linux/kasan*.h |
0ba1d91d AR |
7051 | F: lib/test_kasan.c |
7052 | F: mm/kasan/ | |
7053 | F: scripts/Makefile.kasan | |
7054 | ||
1da177e4 | 7055 | KCONFIG |
5eb1f99e | 7056 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 7057 | L: linux-kbuild@vger.kernel.org |
cea8321c | 7058 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 7059 | S: Maintained |
679655da JP |
7060 | F: Documentation/kbuild/kconfig-language.txt |
7061 | F: scripts/kconfig/ | |
1da177e4 | 7062 | |
ea6c2089 | 7063 | KDUMP |
f871f191 VG |
7064 | M: Dave Young <dyoung@redhat.com> |
7065 | M: Baoquan He <bhe@redhat.com> | |
7066 | R: Vivek Goyal <vgoyal@redhat.com> | |
34633993 | 7067 | L: kexec@lists.infradead.org |
ea6c2089 VG |
7068 | W: http://lse.sourceforge.net/kdump/ |
7069 | S: Maintained | |
80811493 | 7070 | F: Documentation/kdump/ |
ea6c2089 | 7071 | |
f41bf02f HV |
7072 | KEENE FM RADIO TRANSMITTER DRIVER |
7073 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7074 | L: linux-media@vger.kernel.org | |
7075 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7076 | W: https://linuxtv.org |
f41bf02f HV |
7077 | S: Maintained |
7078 | F: drivers/media/radio/radio-keene* | |
7079 | ||
1da177e4 | 7080 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 7081 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 7082 | L: autofs@vger.kernel.org |
1da177e4 | 7083 | S: Maintained |
679655da | 7084 | F: fs/autofs4/ |
1da177e4 | 7085 | |
70fb7ba6 | 7086 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
d8130624 | 7087 | M: Michal Marek <mmarek@suse.com> |
08deed1e JP |
7088 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
7089 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 7090 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 7091 | S: Maintained |
679655da JP |
7092 | F: Documentation/kbuild/ |
7093 | F: Makefile | |
7094 | F: scripts/Makefile.* | |
70fb7ba6 MM |
7095 | F: scripts/basic/ |
7096 | F: scripts/mk* | |
7097 | F: scripts/package/ | |
1da177e4 LT |
7098 | |
7099 | KERNEL JANITORS | |
c3000e03 | 7100 | L: kernel-janitors@vger.kernel.org |
10466f5a | 7101 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 7102 | S: Odd Fixes |
1da177e4 | 7103 | |
e8b43555 | 7104 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 7105 | M: "J. Bruce Fields" <bfields@fieldses.org> |
883985f6 | 7106 | M: Jeff Layton <jlayton@poochiereds.net> |
16141c02 | 7107 | L: linux-nfs@vger.kernel.org |
1da177e4 | 7108 | W: http://nfs.sourceforge.net/ |
9f273c24 | 7109 | T: git git://linux-nfs.org/~bfields/linux.git |
98fac23f | 7110 | S: Supported |
679655da | 7111 | F: fs/nfsd/ |
c117ab84 | 7112 | F: include/uapi/linux/nfsd/ |
679655da JP |
7113 | F: fs/lockd/ |
7114 | F: fs/nfs_common/ | |
7115 | F: net/sunrpc/ | |
7116 | F: include/linux/lockd/ | |
7117 | F: include/linux/sunrpc/ | |
c117ab84 | 7118 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 7119 | |
13b122b3 SK |
7120 | KERNEL SELFTEST FRAMEWORK |
7121 | M: Shuah Khan <shuahkh@osg.samsung.com> | |
90effdcd | 7122 | M: Shuah Khan <shuah@kernel.org> |
64f00850 | 7123 | L: linux-kselftest@vger.kernel.org |
13b122b3 SK |
7124 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest |
7125 | S: Maintained | |
7126 | F: tools/testing/selftests | |
7127 | ||
426d62e2 | 7128 | KERNEL VIRTUAL MACHINE (KVM) |
c93a64fe | 7129 | M: Paolo Bonzini <pbonzini@redhat.com> |
3d8e15dd | 7130 | M: Radim Krčmář <rkrcmar@redhat.com> |
1fc9d2bf | 7131 | L: kvm@vger.kernel.org |
e3e58478 | 7132 | W: http://www.linux-kvm.org |
a94b40a6 | 7133 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 7134 | S: Supported |
c93a64fe PB |
7135 | F: Documentation/*/kvm*.txt |
7136 | F: Documentation/virtual/kvm/ | |
679655da | 7137 | F: arch/*/kvm/ |
1662e862 CB |
7138 | F: arch/x86/kernel/kvm.c |
7139 | F: arch/x86/kernel/kvmclock.c | |
679655da JP |
7140 | F: arch/*/include/asm/kvm* |
7141 | F: include/linux/kvm* | |
c117ab84 | 7142 | F: include/uapi/linux/kvm* |
679655da | 7143 | F: virt/kvm/ |
6d0a1a61 | 7144 | F: tools/kvm/ |
426d62e2 | 7145 | |
ad8003d3 | 7146 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 7147 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf | 7148 | L: kvm@vger.kernel.org |
038161de | 7149 | W: http://www.linux-kvm.org/ |
7de609c8 | 7150 | S: Maintained |
679655da | 7151 | F: arch/x86/include/asm/svm.h |
679655da | 7152 | F: arch/x86/kvm/svm.c |
426d62e2 | 7153 | |
513014b7 | 7154 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
d8130624 | 7155 | M: Alexander Graf <agraf@suse.com> |
1fc9d2bf | 7156 | L: kvm-ppc@vger.kernel.org |
038161de | 7157 | W: http://www.linux-kvm.org/ |
6a7f972d | 7158 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 7159 | S: Supported |
679655da JP |
7160 | F: arch/powerpc/include/asm/kvm* |
7161 | F: arch/powerpc/kvm/ | |
513014b7 | 7162 | |
85f8fffe | 7163 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 7164 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 7165 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
7166 | L: linux-s390@vger.kernel.org |
7167 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9f273c24 | 7168 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git |
85f8fffe | 7169 | S: Supported |
679655da JP |
7170 | F: Documentation/s390/kvm.txt |
7171 | F: arch/s390/include/asm/kvm* | |
80811493 | 7172 | F: arch/s390/kvm/ |
85f8fffe | 7173 | |
a749474d | 7174 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 7175 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
7176 | M: Marc Zyngier <marc.zyngier@arm.com> |
7177 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
7178 | L: kvmarm@lists.cs.columbia.edu |
7179 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
1b1ebe82 | 7180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git |
0f4ca79e | 7181 | S: Supported |
a749474d CD |
7182 | F: arch/arm/include/uapi/asm/kvm* |
7183 | F: arch/arm/include/asm/kvm* | |
7184 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
7185 | F: virt/kvm/arm/ |
7186 | F: include/kvm/arm_* | |
a749474d | 7187 | |
6394a3ec | 7188 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 7189 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
7190 | M: Marc Zyngier <marc.zyngier@arm.com> |
7191 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7192 | L: kvmarm@lists.cs.columbia.edu | |
7193 | S: Maintained | |
7194 | F: arch/arm64/include/uapi/asm/kvm* | |
7195 | F: arch/arm64/include/asm/kvm* | |
7196 | F: arch/arm64/kvm/ | |
7197 | ||
bfd3d532 JH |
7198 | KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips) |
7199 | M: James Hogan <james.hogan@imgtec.com> | |
7200 | L: linux-mips@linux-mips.org | |
7201 | S: Supported | |
7202 | F: arch/mips/include/uapi/asm/kvm* | |
7203 | F: arch/mips/include/asm/kvm* | |
7204 | F: arch/mips/kvm/ | |
7205 | ||
dc009d92 | 7206 | KEXEC |
8b58be88 | 7207 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 7208 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 7209 | L: kexec@lists.infradead.org |
dc009d92 | 7210 | S: Maintained |
679655da | 7211 | F: include/linux/kexec.h |
c117ab84 | 7212 | F: include/uapi/linux/kexec.h |
10540a69 | 7213 | F: kernel/kexec* |
dc009d92 | 7214 | |
e971461f DH |
7215 | KEYS/KEYRINGS: |
7216 | M: David Howells <dhowells@redhat.com> | |
aa62efff | 7217 | L: keyrings@vger.kernel.org |
e971461f | 7218 | S: Maintained |
d410fa4e | 7219 | F: Documentation/security/keys.txt |
e971461f DH |
7220 | F: include/linux/key.h |
7221 | F: include/linux/key-type.h | |
75aeddd1 DH |
7222 | F: include/linux/keyctl.h |
7223 | F: include/uapi/linux/keyctl.h | |
e971461f DH |
7224 | F: include/keys/ |
7225 | F: security/keys/ | |
7226 | ||
7f3c68be | 7227 | KEYS-TRUSTED |
74dd744f MZ |
7228 | M: David Safford <safford@us.ibm.com> |
7229 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be | 7230 | L: linux-security-module@vger.kernel.org |
aa62efff | 7231 | L: keyrings@vger.kernel.org |
7f3c68be | 7232 | S: Supported |
d410fa4e | 7233 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
7234 | F: include/keys/trusted-type.h |
7235 | F: security/keys/trusted.c | |
7236 | F: security/keys/trusted.h | |
7237 | ||
7238 | KEYS-ENCRYPTED | |
74dd744f MZ |
7239 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
7240 | M: David Safford <safford@us.ibm.com> | |
7f3c68be | 7241 | L: linux-security-module@vger.kernel.org |
aa62efff | 7242 | L: keyrings@vger.kernel.org |
7f3c68be | 7243 | S: Supported |
d410fa4e | 7244 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 7245 | F: include/keys/encrypted-type.h |
19c90aa6 | 7246 | F: security/keys/encrypted-keys/ |
7f3c68be | 7247 | |
5b778dad | 7248 | KGDB / KDB /debug_core |
8b58be88 | 7249 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 7250 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 | 7251 | L: kgdb-bugreport@lists.sourceforge.net |
9f273c24 | 7252 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git |
e3e2aaf7 | 7253 | S: Maintained |
679655da JP |
7254 | F: Documentation/DocBook/kgdb.tmpl |
7255 | F: drivers/misc/kgdbts.c | |
df621252 | 7256 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 7257 | F: include/linux/kdb.h |
679655da | 7258 | F: include/linux/kgdb.h |
4063eb5f | 7259 | F: kernel/debug/ |
e3e2aaf7 | 7260 | |
456db8cc | 7261 | KMEMCHECK |
8b58be88 | 7262 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 7263 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 7264 | S: Maintained |
9c296b46 | 7265 | F: Documentation/dev-tools/kmemcheck.rst |
410d7a97 JP |
7266 | F: arch/x86/include/asm/kmemcheck.h |
7267 | F: arch/x86/mm/kmemcheck/ | |
7268 | F: include/linux/kmemcheck.h | |
7269 | F: mm/kmemcheck.c | |
b9ce08c0 | 7270 | |
c3bb4d24 | 7271 | KMEMLEAK |
8b58be88 | 7272 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 | 7273 | S: Maintained |
ca90a7a3 | 7274 | F: Documentation/dev-tools/kmemleak.rst |
c3bb4d24 CM |
7275 | F: include/linux/kmemleak.h |
7276 | F: mm/kmemleak.c | |
7277 | F: mm/kmemleak-test.c | |
7278 | ||
89559a61 | 7279 | KPROBES |
a320817c | 7280 | M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> |
8b58be88 JP |
7281 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
7282 | M: "David S. Miller" <davem@davemloft.net> | |
353def94 | 7283 | M: Masami Hiramatsu <mhiramat@kernel.org> |
89559a61 | 7284 | S: Maintained |
679655da JP |
7285 | F: Documentation/kprobes.txt |
7286 | F: include/linux/kprobes.h | |
7d134b2c | 7287 | F: include/asm-generic/kprobes.h |
679655da | 7288 | F: kernel/kprobes.c |
89559a61 | 7289 | |
70e84049 | 7290 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 7291 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
7292 | W: http://miguelojeda.es/auxdisplay.htm |
7293 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 7294 | S: Maintained |
679655da JP |
7295 | F: Documentation/auxdisplay/ks0108 |
7296 | F: drivers/auxdisplay/ks0108.c | |
7297 | F: include/linux/ks0108.h | |
70e84049 | 7298 | |
1b69c6d0 DA |
7299 | L3MDEV |
7300 | M: David Ahern <dsa@cumulusnetworks.com> | |
7301 | L: netdev@vger.kernel.org | |
7302 | S: Maintained | |
7303 | F: net/l3mdev | |
7304 | F: include/net/l3mdev.h | |
7305 | ||
9ca44355 | 7306 | LANTIQ MIPS ARCHITECTURE |
bdb40e8e | 7307 | M: John Crispin <john@phrozen.org> |
9ca44355 JC |
7308 | L: linux-mips@linux-mips.org |
7309 | S: Maintained | |
7310 | F: arch/mips/lantiq | |
7311 | ||
1da177e4 | 7312 | LAPB module |
1da177e4 | 7313 | L: linux-x25@vger.kernel.org |
bf9915cc | 7314 | S: Orphan |
679655da JP |
7315 | F: Documentation/networking/lapb-module.txt |
7316 | F: include/*/lapb.h | |
7317 | F: net/lapb/ | |
1da177e4 LT |
7318 | |
7319 | LASI 53c700 driver for PARISC | |
8b58be88 | 7320 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
7321 | L: linux-scsi@vger.kernel.org |
7322 | S: Maintained | |
679655da JP |
7323 | F: Documentation/scsi/53c700.txt |
7324 | F: drivers/scsi/53c700* | |
1da177e4 | 7325 | |
263de9b5 | 7326 | LED SUBSYSTEM |
8b58be88 | 7327 | M: Richard Purdie <rpurdie@rpsys.net> |
305335b9 | 7328 | M: Jacek Anaszewski <jacek.anaszewski@gmail.com> |
dbfa048d | 7329 | M: Pavel Machek <pavel@ucw.cz> |
aa69cb8c | 7330 | L: linux-leds@vger.kernel.org |
b8926ba0 | 7331 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
263de9b5 | 7332 | S: Maintained |
85c90368 | 7333 | F: Documentation/devicetree/bindings/leds/ |
679655da JP |
7334 | F: drivers/leds/ |
7335 | F: include/linux/leds.h | |
263de9b5 | 7336 | |
b0461a44 | 7337 | LEGACY EEPROM DRIVER |
d8130624 | 7338 | M: Jean Delvare <jdelvare@suse.com> |
b0461a44 JD |
7339 | S: Maintained |
7340 | F: Documentation/misc-devices/eeprom | |
7341 | F: drivers/misc/eeprom/eeprom.c | |
7342 | ||
1da177e4 | 7343 | LEGO USB Tower driver |
8b58be88 | 7344 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
7345 | L: legousb-devel@lists.sourceforge.net |
7346 | W: http://legousb.sourceforge.net/ | |
7347 | S: Maintained | |
679655da | 7348 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 7349 | |
055616a8 MK |
7350 | LG2160 MEDIA DRIVER |
7351 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7352 | L: linux-media@vger.kernel.org | |
a825eaec | 7353 | W: https://linuxtv.org |
055616a8 MK |
7354 | W: http://github.com/mkrufky |
7355 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7356 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7357 | S: Maintained | |
7358 | F: drivers/media/dvb-frontends/lg2160.* | |
7359 | ||
6f0e7725 MK |
7360 | LGDT3305 MEDIA DRIVER |
7361 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7362 | L: linux-media@vger.kernel.org | |
a825eaec | 7363 | W: https://linuxtv.org |
6f0e7725 MK |
7364 | W: http://github.com/mkrufky |
7365 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7366 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7367 | S: Maintained | |
7368 | F: drivers/media/dvb-frontends/lgdt3305.* | |
7369 | ||
568a17ff | 7370 | LGUEST |
8b58be88 | 7371 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 7372 | L: lguest@lists.ozlabs.org |
568a17ff | 7373 | W: http://lguest.ozlabs.org/ |
72e91863 | 7374 | S: Odd Fixes |
070f420b | 7375 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
7376 | F: arch/x86/lguest/ |
7377 | F: drivers/lguest/ | |
7378 | F: include/linux/lguest*.h | |
070f420b | 7379 | F: tools/lguest/ |
568a17ff | 7380 | |
32ac7cb2 TH |
7381 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
7382 | M: Tejun Heo <tj@kernel.org> | |
7383 | L: linux-ide@vger.kernel.org | |
7384 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7385 | S: Maintained | |
7386 | F: drivers/ata/ | |
7387 | F: include/linux/ata.h | |
7388 | F: include/linux/libata.h | |
d2abf98e | 7389 | F: Documentation/devicetree/bindings/ata/ |
32ac7cb2 TH |
7390 | |
7391 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER | |
da89947b | 7392 | M: Viresh Kumar <vireshk@kernel.org> |
32ac7cb2 TH |
7393 | L: linux-ide@vger.kernel.org |
7394 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7395 | S: Maintained | |
7396 | F: include/linux/pata_arasan_cf_data.h | |
7397 | F: drivers/ata/pata_arasan_cf.c | |
7398 | ||
c7fa056c BZ |
7399 | LIBATA PATA DRIVERS |
7400 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
7401 | M: Tejun Heo <tj@kernel.org> | |
7402 | L: linux-ide@vger.kernel.org | |
7403 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7404 | S: Maintained | |
7405 | F: drivers/ata/pata_*.c | |
7406 | F: drivers/ata/ata_generic.c | |
7407 | ||
32ac7cb2 TH |
7408 | LIBATA SATA AHCI PLATFORM devices support |
7409 | M: Hans de Goede <hdegoede@redhat.com> | |
7410 | M: Tejun Heo <tj@kernel.org> | |
7411 | L: linux-ide@vger.kernel.org | |
7412 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7413 | S: Maintained | |
7414 | F: drivers/ata/ahci_platform.c | |
7415 | F: drivers/ata/libahci_platform.c | |
7416 | F: include/linux/ahci_platform.h | |
7417 | ||
7418 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER | |
7419 | M: Mikael Pettersson <mikpelinux@gmail.com> | |
7420 | L: linux-ide@vger.kernel.org | |
7421 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7422 | S: Maintained | |
7423 | F: drivers/ata/sata_promise.* | |
7424 | ||
1acd437c SL |
7425 | LIBLOCKDEP |
7426 | M: Sasha Levin <sasha.levin@oracle.com> | |
7427 | S: Maintained | |
7428 | F: tools/lib/lockdep/ | |
7429 | ||
bc30196f DW |
7430 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM |
7431 | M: Dan Williams <dan.j.williams@intel.com> | |
7432 | L: linux-nvdimm@lists.01.org | |
7433 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
9f273c24 | 7434 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git |
bc30196f DW |
7435 | S: Supported |
7436 | F: drivers/nvdimm/* | |
7437 | F: include/linux/nd.h | |
7438 | F: include/linux/libnvdimm.h | |
7439 | F: include/uapi/linux/ndctl.h | |
7440 | ||
7441 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER | |
7442 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
7443 | L: linux-nvdimm@lists.01.org | |
7444 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7445 | S: Supported | |
7446 | F: drivers/nvdimm/blk.c | |
7447 | F: drivers/nvdimm/region_devs.c | |
7448 | F: drivers/acpi/nfit* | |
7449 | ||
7450 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE | |
7451 | M: Vishal Verma <vishal.l.verma@intel.com> | |
7452 | L: linux-nvdimm@lists.01.org | |
7453 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7454 | S: Supported | |
7455 | F: drivers/nvdimm/btt* | |
7456 | ||
7457 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER | |
7458 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
7459 | L: linux-nvdimm@lists.01.org | |
7460 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7461 | S: Supported | |
7462 | F: drivers/nvdimm/pmem.c | |
b864bc17 | 7463 | F: include/linux/pmem.h |
40603526 | 7464 | F: arch/*/include/asm/pmem.h |
bc30196f | 7465 | |
cd9e9808 MB |
7466 | LIGHTNVM PLATFORM SUPPORT |
7467 | M: Matias Bjorling <mb@lightnvm.io> | |
7468 | W: http://github/OpenChannelSSD | |
4ead1a25 | 7469 | L: linux-block@vger.kernel.org |
cd9e9808 MB |
7470 | S: Maintained |
7471 | F: drivers/lightnvm/ | |
7472 | F: include/linux/lightnvm.h | |
7473 | F: include/uapi/linux/lightnvm.h | |
7474 | ||
852bb9f5 | 7475 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
7476 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
7477 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 7478 | M: Michael Ellerman <mpe@ellerman.id.au> |
ad654f25 | 7479 | W: https://github.com/linuxppc/linux/wiki |
a4724ed6 | 7480 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 7481 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
9958084a | 7482 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
1da177e4 | 7483 | S: Supported |
a4271583 SS |
7484 | F: Documentation/ABI/stable/sysfs-firmware-opal-* |
7485 | F: Documentation/devicetree/bindings/powerpc/opal/ | |
7486 | F: Documentation/devicetree/bindings/rtc/rtc-opal.txt | |
7487 | F: Documentation/devicetree/bindings/i2c/i2c-opal.txt | |
11c34c7d JP |
7488 | F: Documentation/powerpc/ |
7489 | F: arch/powerpc/ | |
ef69b03d ME |
7490 | F: drivers/char/tpm/tpm_ibmvtpm* |
7491 | F: drivers/crypto/nx/ | |
7492 | F: drivers/crypto/vmx/ | |
a4271583 | 7493 | F: drivers/i2c/busses/i2c-opal.c |
ef69b03d ME |
7494 | F: drivers/net/ethernet/ibm/ibmveth.* |
7495 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
66725152 | 7496 | F: drivers/pci/hotplug/pnv_php.c |
ef69b03d | 7497 | F: drivers/pci/hotplug/rpa* |
a4271583 | 7498 | F: drivers/rtc/rtc-opal.c |
ef69b03d | 7499 | F: drivers/scsi/ibmvscsi/ |
a4271583 | 7500 | F: drivers/tty/hvc/hvc_opal.c |
ad654f25 | 7501 | F: tools/testing/selftests/powerpc |
ef69b03d ME |
7502 | N: /pmac |
7503 | N: powermac | |
7504 | N: powernv | |
7505 | N: [^a-z0-9]ps3 | |
7506 | N: pseries | |
1da177e4 LT |
7507 | |
7508 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 7509 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 7510 | W: http://www.penguinppc.org/ |
a4724ed6 | 7511 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7512 | S: Maintained |
11c34c7d JP |
7513 | F: arch/powerpc/platforms/powermac/ |
7514 | F: drivers/macintosh/ | |
1da177e4 | 7515 | |
77a76369 | 7516 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 7517 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 7518 | L: linuxppc-dev@lists.ozlabs.org |
cba5b1c6 | 7519 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 7520 | S: Maintained |
11c34c7d JP |
7521 | F: arch/powerpc/platforms/512x/ |
7522 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
7523 | |
7524 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
49e7d9df | 7525 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 7526 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 7527 | W: http://www.penguinppc.org/ |
a4724ed6 | 7528 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7529 | S: Maintained |
11c34c7d JP |
7530 | F: arch/powerpc/platforms/40x/ |
7531 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 7532 | |
260c02a9 | 7533 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 7534 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 7535 | S: Orphan |
11c34c7d JP |
7536 | F: arch/powerpc/*/*virtex* |
7537 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 7538 | |
e93adf1e | 7539 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 7540 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
e93adf1e | 7541 | W: http://www.penguinppc.org/ |
a4724ed6 | 7542 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 7543 | S: Maintained |
a2b1f7c8 | 7544 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 7545 | |
1da177e4 | 7546 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
44451d4d | 7547 | M: Scott Wood <oss@buserror.net> |
8b58be88 | 7548 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 7549 | W: http://www.penguinppc.org/ |
a4724ed6 | 7550 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 7551 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 7552 | S: Maintained |
11c34c7d | 7553 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 7554 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 7555 | |
ab06ff3a | 7556 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
a4724ed6 | 7557 | L: linuxppc-dev@lists.ozlabs.org |
56a5b8da | 7558 | S: Orphan |
11c34c7d JP |
7559 | F: arch/powerpc/platforms/pasemi/ |
7560 | F: drivers/*/*pasemi* | |
7561 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 7562 | |
1da177e4 | 7563 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 7564 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 7565 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
7566 | S: Supported |
7567 | ||
a23ce6da HW |
7568 | LIS3LV02D ACCELEROMETER DRIVER |
7569 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
7570 | S: Maintained | |
ff606677 JD |
7571 | F: Documentation/misc-devices/lis3lv02d |
7572 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 7573 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 7574 | |
b700e7f0 SJ |
7575 | LIVE PATCHING |
7576 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
06e1c170 | 7577 | M: Jessica Yu <jeyu@redhat.com> |
e5f6450c | 7578 | M: Jiri Kosina <jikos@kernel.org> |
06e1c170 JP |
7579 | M: Miroslav Benes <mbenes@suse.cz> |
7580 | R: Petr Mladek <pmladek@suse.com> | |
b700e7f0 SJ |
7581 | S: Maintained |
7582 | F: kernel/livepatch/ | |
7583 | F: include/linux/livepatch.h | |
7584 | F: arch/x86/include/asm/livepatch.h | |
7585 | F: arch/x86/kernel/livepatch.c | |
5e4e3844 | 7586 | F: Documentation/livepatch/ |
b700e7f0 | 7587 | F: Documentation/ABI/testing/sysfs-kernel-livepatch |
13d1cf7e | 7588 | F: samples/livepatch/ |
b700e7f0 | 7589 | L: live-patching@vger.kernel.org |
74d50da3 | 7590 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
b700e7f0 | 7591 | |
ea861d73 KC |
7592 | LINUX KERNEL DUMP TEST MODULE (LKDTM) |
7593 | M: Kees Cook <keescook@chromium.org> | |
7594 | S: Maintained | |
426f3a53 | 7595 | F: drivers/misc/lkdtm* |
ea861d73 | 7596 | |
e2d1d6c0 | 7597 | LLC (802.2) |
0c59d281 ACM |
7598 | L: netdev@vger.kernel.org |
7599 | S: Odd fixes | |
679655da | 7600 | F: include/linux/llc.h |
c117ab84 | 7601 | F: include/uapi/linux/llc.h |
679655da JP |
7602 | F: include/net/llc* |
7603 | F: net/llc/ | |
e2d1d6c0 | 7604 | |
4e233cbe AD |
7605 | LM73 HARDWARE MONITOR DRIVER |
7606 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
968ce1b1 | 7607 | L: linux-hwmon@vger.kernel.org |
4e233cbe AD |
7608 | S: Maintained |
7609 | F: drivers/hwmon/lm73.c | |
7610 | ||
156e2d1a | 7611 | LM78 HARDWARE MONITOR DRIVER |
d8130624 | 7612 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7613 | L: linux-hwmon@vger.kernel.org |
156e2d1a JD |
7614 | S: Maintained |
7615 | F: Documentation/hwmon/lm78 | |
7616 | F: drivers/hwmon/lm78.c | |
7617 | ||
1da177e4 | 7618 | LM83 HARDWARE MONITOR DRIVER |
d8130624 | 7619 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7620 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7621 | S: Maintained |
679655da JP |
7622 | F: Documentation/hwmon/lm83 |
7623 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
7624 | |
7625 | LM90 HARDWARE MONITOR DRIVER | |
d8130624 | 7626 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7627 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7628 | S: Maintained |
679655da | 7629 | F: Documentation/hwmon/lm90 |
aae7bce4 | 7630 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 7631 | F: drivers/hwmon/lm90.c |
87d08b11 | 7632 | F: include/dt-bindings/thermal/lm90.h |
1da177e4 | 7633 | |
917cc4e6 GR |
7634 | LM95234 HARDWARE MONITOR DRIVER |
7635 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7636 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
7637 | S: Maintained |
7638 | F: Documentation/hwmon/lm95234 | |
7639 | F: drivers/hwmon/lm95234.c | |
7640 | ||
68620bdd MP |
7641 | LME2510 MEDIA DRIVER |
7642 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7643 | L: linux-media@vger.kernel.org | |
a825eaec | 7644 | W: https://linuxtv.org |
68620bdd MP |
7645 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7646 | S: Maintained | |
7647 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
7648 | ||
d4c3be70 | 7649 | LOCKING PRIMITIVES |
8b58be88 JP |
7650 | M: Peter Zijlstra <peterz@infradead.org> |
7651 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 7652 | L: linux-kernel@vger.kernel.org |
d4c3be70 | 7653 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core |
512e67f9 | 7654 | S: Maintained |
d4c3be70 | 7655 | F: Documentation/locking/ |
679655da | 7656 | F: include/linux/lockdep.h |
d4c3be70 IM |
7657 | F: include/linux/spinlock*.h |
7658 | F: arch/*/include/asm/spinlock*.h | |
7659 | F: include/linux/rwlock*.h | |
7660 | F: include/linux/mutex*.h | |
7661 | F: arch/*/include/asm/mutex*.h | |
7662 | F: include/linux/rwsem*.h | |
7663 | F: arch/*/include/asm/rwsem.h | |
7664 | F: include/linux/seqlock.h | |
7665 | F: lib/locking*.[ch] | |
7486d6da | 7666 | F: kernel/locking/ |
512e67f9 | 7667 | |
dde33348 | 7668 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 7669 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
7670 | L: linux-ntfs-dev@lists.sourceforge.net |
7671 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 7672 | S: Maintained |
679655da | 7673 | F: Documentation/ldm.txt |
20d16fef | 7674 | F: block/partitions/ldm.* |
1da177e4 | 7675 | |
c87e34ef | 7676 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
9495e835 SS |
7677 | M: Sathya Prakash <sathya.prakash@broadcom.com> |
7678 | M: Chaitra P B <chaitra.basappa@broadcom.com> | |
7679 | M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com> | |
7680 | L: MPT-FusionLinux.pdl@broadcom.com | |
c87e34ef | 7681 | L: linux-scsi@vger.kernel.org |
9495e835 | 7682 | W: http://www.avagotech.com/support/ |
c87e34ef | 7683 | S: Supported |
679655da | 7684 | F: drivers/message/fusion/ |
500c152a | 7685 | F: drivers/scsi/mpt2sas/ |
7686 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 7687 | |
1da177e4 | 7688 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 7689 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
7690 | L: linux-scsi@vger.kernel.org |
7691 | S: Maintained | |
679655da | 7692 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 7693 | |
e5f5c99a GR |
7694 | LTC4261 HARDWARE MONITOR DRIVER |
7695 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7696 | L: linux-hwmon@vger.kernel.org |
e5f5c99a GR |
7697 | S: Maintained |
7698 | F: Documentation/hwmon/ltc4261 | |
7699 | F: drivers/hwmon/ltc4261.c | |
7700 | ||
81365c31 | 7701 | LTP (Linux Test Project) |
28b8e8d4 | 7702 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 7703 | M: Cyril Hrubis <chrubis@suse.cz> |
0526109a | 7704 | M: Wanlong Gao <wanlong.gao@gmail.com> |
f2eb7f6f CH |
7705 | M: Jan Stancek <jstancek@redhat.com> |
7706 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
7707 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
0526109a | 7708 | L: ltp@lists.linux.it (subscribers-only) |
f2eb7f6f | 7709 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 7710 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
7711 | S: Maintained |
7712 | ||
c12a54b3 | 7713 | M32R ARCHITECTURE |
c12a54b3 | 7714 | W: http://www.linux-m32r.org/ |
b4174867 | 7715 | S: Orphan |
679655da | 7716 | F: arch/m32r/ |
c12a54b3 | 7717 | |
1da177e4 | 7718 | M68K ARCHITECTURE |
8b58be88 | 7719 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
7720 | L: linux-m68k@lists.linux-m68k.org |
7721 | W: http://www.linux-m68k.org/ | |
54e5881d | 7722 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 7723 | S: Maintained |
679655da | 7724 | F: arch/m68k/ |
9db35182 | 7725 | F: drivers/zorro/ |
1da177e4 LT |
7726 | |
7727 | M68K ON APPLE MACINTOSH | |
8b58be88 | 7728 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 7729 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 7730 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 7731 | S: Maintained |
9db35182 | 7732 | F: arch/m68k/mac/ |
1da177e4 LT |
7733 | |
7734 | M68K ON HP9000/300 | |
8b58be88 | 7735 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
7736 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
7737 | S: Maintained | |
679655da | 7738 | F: arch/m68k/hp300/ |
1da177e4 | 7739 | |
74425546 AP |
7740 | M88DS3103 MEDIA DRIVER |
7741 | M: Antti Palosaari <crope@iki.fi> | |
7742 | L: linux-media@vger.kernel.org | |
a825eaec | 7743 | W: https://linuxtv.org |
74425546 AP |
7744 | W: http://palosaari.fi/linux/ |
7745 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7746 | T: git git://linuxtv.org/anttip/media_tree.git | |
7747 | S: Maintained | |
7748 | F: drivers/media/dvb-frontends/m88ds3103* | |
7749 | ||
68620bdd MP |
7750 | M88RS2000 MEDIA DRIVER |
7751 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7752 | L: linux-media@vger.kernel.org | |
a825eaec | 7753 | W: https://linuxtv.org |
68620bdd MP |
7754 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7755 | S: Maintained | |
7756 | F: drivers/media/dvb-frontends/m88rs2000* | |
7757 | ||
07a092fa | 7758 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
7759 | M: Alexey Klimov <klimov.linux@gmail.com> |
7760 | L: linux-media@vger.kernel.org | |
7761 | T: git git://linuxtv.org/media_tree.git | |
7762 | S: Maintained | |
7763 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 7764 | |
64a327a7 | 7765 | MAC80211 |
8b58be88 | 7766 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 7767 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7768 | W: http://wireless.kernel.org/ |
ce466579 JB |
7769 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
7770 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 7771 | S: Maintained |
679655da JP |
7772 | F: Documentation/networking/mac80211-injection.txt |
7773 | F: include/net/mac80211.h | |
7774 | F: net/mac80211/ | |
2af8c4dc | 7775 | F: drivers/net/wireless/mac80211_hwsim.[ch] |
64a327a7 | 7776 | |
b863ceb7 | 7777 | MACVLAN DRIVER |
8b58be88 | 7778 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
7779 | L: netdev@vger.kernel.org |
7780 | S: Maintained | |
679655da JP |
7781 | F: drivers/net/macvlan.c |
7782 | F: include/linux/if_macvlan.h | |
b863ceb7 | 7783 | |
2b6d83e2 JB |
7784 | MAILBOX API |
7785 | M: Jassi Brar <jassisinghbrar@gmail.com> | |
7786 | L: linux-kernel@vger.kernel.org | |
7787 | S: Maintained | |
7788 | F: drivers/mailbox/ | |
7789 | F: include/linux/mailbox_client.h | |
7790 | F: include/linux/mailbox_controller.h | |
7791 | ||
faf1668c | 7792 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 7793 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 7794 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 7795 | L: linux-man@vger.kernel.org |
1b53dc74 | 7796 | S: Maintained |
faf1668c | 7797 | |
daa10170 RB |
7798 | MARDUK (CREATOR CI40) DEVICE TREE SUPPORT |
7799 | M: Rahul Bedarkar <rahul.bedarkar@imgtec.com> | |
7800 | L: linux-mips@linux-mips.org | |
7801 | S: Maintained | |
7802 | F: arch/mips/boot/dts/img/pistachio_marduk.dts | |
7803 | ||
0d3cd4b6 VD |
7804 | MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER |
7805 | M: Andrew Lunn <andrew@lunn.ch> | |
7806 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
b26bff6e | 7807 | L: netdev@vger.kernel.org |
0d3cd4b6 VD |
7808 | S: Maintained |
7809 | F: drivers/net/dsa/mv88e6xxx/ | |
b26bff6e | 7810 | F: Documentation/devicetree/bindings/net/dsa/marvell.txt |
0d3cd4b6 | 7811 | |
8427defd | 7812 | MARVELL ARMADA DRM SUPPORT |
0d7f4f05 | 7813 | M: Russell King <linux@armlinux.org.uk> |
8427defd | 7814 | S: Maintained |
0d7f4f05 RK |
7815 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel |
7816 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes | |
8427defd | 7817 | F: drivers/gpu/drm/armada/ |
4418833e EV |
7818 | F: include/uapi/drm/armada_drm.h |
7819 | F: Documentation/devicetree/bindings/display/armada/ | |
8427defd | 7820 | |
c4d007bc TP |
7821 | MARVELL CRYPTO DRIVER |
7822 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
7823 | M: Arnaud Ebalard <arno@natisbad.org> | |
7824 | F: drivers/crypto/marvell/ | |
7825 | S: Maintained | |
7826 | L: linux-crypto@vger.kernel.org | |
7827 | ||
44c14c1d | 7828 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
7829 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 7830 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 7831 | L: netdev@vger.kernel.org |
7832 | S: Maintained | |
7833 | F: drivers/net/ethernet/marvell/sk* | |
7834 | ||
74cda169 | 7835 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 7836 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 7837 | S: Orphan |
f988d640 | 7838 | F: drivers/net/wireless/marvell/libertas/ |
74cda169 | 7839 | |
b60d6975 | 7840 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 7841 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 7842 | L: netdev@vger.kernel.org |
f5ca8502 | 7843 | S: Maintained |
527a6266 | 7844 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 7845 | F: include/linux/mv643xx.h |
1da177e4 | 7846 | |
370b8ed9 TP |
7847 | MARVELL MVNETA ETHERNET DRIVER |
7848 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
7849 | L: netdev@vger.kernel.org | |
7850 | S: Maintained | |
7851 | F: drivers/net/ethernet/marvell/mvneta.* | |
7852 | ||
fcad584d | 7853 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 | 7854 | M: Amitkumar Karwar <akarwar@marvell.com> |
550795fc | 7855 | M: Nishant Sarmukadam <nishants@marvell.com> |
fcad584d BZ |
7856 | L: linux-wireless@vger.kernel.org |
7857 | S: Maintained | |
277b024e | 7858 | F: drivers/net/wireless/marvell/mwifiex/ |
fcad584d | 7859 | |
a2c3f656 | 7860 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 7861 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 7862 | L: linux-wireless@vger.kernel.org |
16345910 | 7863 | S: Odd Fixes |
de60f1dc | 7864 | F: drivers/net/wireless/marvell/mwl8k.c |
a2c3f656 | 7865 | |
2a69567b | 7866 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 7867 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 7868 | S: Odd Fixes |
1fa7e547 | 7869 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 7870 | |
1da177e4 | 7871 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 7872 | L: linux-fbdev@vger.kernel.org |
52653199 | 7873 | S: Orphan |
8a61f013 | 7874 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 7875 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 7876 | |
ca462085 GR |
7877 | MAX16065 HARDWARE MONITOR DRIVER |
7878 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7879 | L: linux-hwmon@vger.kernel.org |
ca462085 GR |
7880 | S: Maintained |
7881 | F: Documentation/hwmon/max16065 | |
7882 | F: drivers/hwmon/max16065.c | |
7883 | ||
1f61cab8 GR |
7884 | MAX20751 HARDWARE MONITOR DRIVER |
7885 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7886 | L: linux-hwmon@vger.kernel.org |
1f61cab8 GR |
7887 | S: Maintained |
7888 | F: Documentation/hwmon/max20751 | |
7889 | F: drivers/hwmon/max20751.c | |
7890 | ||
d20620de | 7891 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
968ce1b1 | 7892 | L: linux-hwmon@vger.kernel.org |
34924b23 | 7893 | S: Orphan |
679655da JP |
7894 | F: Documentation/hwmon/max6650 |
7895 | F: drivers/hwmon/max6650.c | |
d20620de | 7896 | |
e89ab51f GR |
7897 | MAX6697 HARDWARE MONITOR DRIVER |
7898 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7899 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
7900 | S: Maintained |
7901 | F: Documentation/hwmon/max6697 | |
7902 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
7903 | F: drivers/hwmon/max6697.c | |
7904 | F: include/linux/platform_data/max6697.h | |
7905 | ||
3b2af7f7 PR |
7906 | MAX9860 MONO AUDIO VOICE CODEC DRIVER |
7907 | M: Peter Rosin <peda@axentia.se> | |
7908 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7909 | S: Maintained | |
7910 | F: Documentation/devicetree/bindings/sound/max9860.txt | |
7911 | F: sound/soc/codecs/max9860.* | |
7912 | ||
f8f847b5 | 7913 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
326dce07 KK |
7914 | M: Krzysztof Kozlowski <krzk@kernel.org> |
7915 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
f8f847b5 KK |
7916 | L: linux-pm@vger.kernel.org |
7917 | S: Supported | |
8c0984e5 SR |
7918 | F: drivers/power/supply/max14577_charger.c |
7919 | F: drivers/power/supply/max77693_charger.c | |
f8f847b5 | 7920 | |
3811405e JMC |
7921 | MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS |
7922 | M: Javier Martinez Canillas <javier@osg.samsung.com> | |
7923 | L: linux-kernel@vger.kernel.org | |
7924 | S: Supported | |
96173cc6 | 7925 | F: drivers/*/*max77802*.c |
3811405e JMC |
7926 | F: Documentation/devicetree/bindings/*/*max77802.txt |
7927 | F: include/dt-bindings/*/*max77802.h | |
7928 | ||
befeb596 KK |
7929 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
7930 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
326dce07 KK |
7931 | M: Krzysztof Kozlowski <krzk@kernel.org> |
7932 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
befeb596 KK |
7933 | L: linux-kernel@vger.kernel.org |
7934 | S: Supported | |
86cf635a | 7935 | F: drivers/*/max14577*.c |
0998a436 | 7936 | F: drivers/*/max77686*.c |
86cf635a | 7937 | F: drivers/*/max77693*.c |
befeb596 KK |
7938 | F: drivers/extcon/extcon-max14577.c |
7939 | F: drivers/extcon/extcon-max77693.c | |
7940 | F: drivers/rtc/rtc-max77686.c | |
7941 | F: drivers/clk/clk-max77686.c | |
7942 | F: Documentation/devicetree/bindings/mfd/max14577.txt | |
377452f4 | 7943 | F: Documentation/devicetree/bindings/*/max77686.txt |
befeb596 KK |
7944 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
7945 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt | |
7946 | F: include/linux/mfd/max14577*.h | |
7947 | F: include/linux/mfd/max77686*.h | |
7948 | F: include/linux/mfd/max77693*.h | |
7949 | ||
9be3c9a5 HV |
7950 | MAXIRADIO FM RADIO RECEIVER DRIVER |
7951 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7952 | L: linux-media@vger.kernel.org | |
7953 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7954 | W: https://linuxtv.org |
9be3c9a5 HV |
7955 | S: Maintained |
7956 | F: drivers/media/radio/radio-maxiradio* | |
7957 | ||
c05dc2cc PR |
7958 | MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER |
7959 | M: Peter Rosin <peda@axentia.se> | |
7960 | L: linux-iio@vger.kernel.org | |
7961 | S: Maintained | |
2704e300 | 7962 | F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531 |
c05dc2cc PR |
7963 | F: drivers/iio/potentiometer/mcp4531.c |
7964 | ||
3b8df5fd WBG |
7965 | MEASUREMENT COMPUTING CIO-DAC IIO DRIVER |
7966 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
7967 | L: linux-iio@vger.kernel.org | |
7968 | S: Maintained | |
7969 | F: drivers/iio/dac/cio-dac.c | |
7970 | ||
7b49235e LP |
7971 | MEDIA DRIVERS FOR RENESAS - FCP |
7972 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7973 | L: linux-media@vger.kernel.org | |
7974 | L: linux-renesas-soc@vger.kernel.org | |
7975 | T: git git://linuxtv.org/media_tree.git | |
7976 | S: Supported | |
7977 | F: Documentation/devicetree/bindings/media/renesas,fcp.txt | |
7978 | F: drivers/media/platform/rcar-fcp.c | |
7979 | F: include/media/rcar-fcp.h | |
7980 | ||
4710b752 KB |
7981 | MEDIA DRIVERS FOR RENESAS - FDP1 |
7982 | M: Kieran Bingham <kieran@bingham.xyz> | |
7983 | L: linux-media@vger.kernel.org | |
7984 | L: linux-renesas-soc@vger.kernel.org | |
7985 | T: git git://linuxtv.org/media_tree.git | |
7986 | S: Supported | |
7987 | F: Documentation/devicetree/bindings/media/renesas,fdp1.txt | |
7988 | F: drivers/media/platform/rcar_fdp1.c | |
7989 | ||
474cde66 NS |
7990 | MEDIA DRIVERS FOR RENESAS - VIN |
7991 | M: Niklas Söderlund <niklas.soderlund@ragnatech.se> | |
7992 | L: linux-media@vger.kernel.org | |
7993 | L: linux-renesas-soc@vger.kernel.org | |
7994 | T: git git://linuxtv.org/media_tree.git | |
7995 | S: Supported | |
7996 | F: Documentation/devicetree/bindings/media/rcar_vin.txt | |
7997 | F: drivers/media/platform/rcar-vin/ | |
7998 | ||
6f32a8c9 LP |
7999 | MEDIA DRIVERS FOR RENESAS - VSP1 |
8000 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
8001 | L: linux-media@vger.kernel.org | |
4a121096 | 8002 | L: linux-renesas-soc@vger.kernel.org |
6f32a8c9 LP |
8003 | T: git git://linuxtv.org/media_tree.git |
8004 | S: Supported | |
8005 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt | |
8006 | F: drivers/media/platform/vsp1/ | |
8007 | ||
fae2080a AO |
8008 | MEDIA DRIVERS FOR HELENE |
8009 | M: Abylay Ospan <aospan@netup.ru> | |
8010 | L: linux-media@vger.kernel.org | |
8011 | W: https://linuxtv.org | |
8012 | W: http://netup.tv/ | |
8013 | T: git git://linuxtv.org/media_tree.git | |
8014 | S: Supported | |
8015 | F: drivers/media/dvb-frontends/helene* | |
8016 | ||
dacf9ce8 KS |
8017 | MEDIA DRIVERS FOR ASCOT2E |
8018 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 8019 | M: Abylay Ospan <aospan@netup.ru> |
dacf9ce8 | 8020 | L: linux-media@vger.kernel.org |
a825eaec | 8021 | W: https://linuxtv.org |
dacf9ce8 KS |
8022 | W: http://netup.tv/ |
8023 | T: git git://linuxtv.org/media_tree.git | |
8024 | S: Supported | |
8025 | F: drivers/media/dvb-frontends/ascot2e* | |
8026 | ||
a6dc60ff KS |
8027 | MEDIA DRIVERS FOR CXD2841ER |
8028 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 8029 | M: Abylay Ospan <aospan@netup.ru> |
a6dc60ff | 8030 | L: linux-media@vger.kernel.org |
a825eaec | 8031 | W: https://linuxtv.org |
a6dc60ff KS |
8032 | W: http://netup.tv/ |
8033 | T: git git://linuxtv.org/media_tree.git | |
8034 | S: Supported | |
8035 | F: drivers/media/dvb-frontends/cxd2841er* | |
8036 | ||
a5d32b35 KS |
8037 | MEDIA DRIVERS FOR HORUS3A |
8038 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 8039 | M: Abylay Ospan <aospan@netup.ru> |
a5d32b35 | 8040 | L: linux-media@vger.kernel.org |
a825eaec | 8041 | W: https://linuxtv.org |
a5d32b35 KS |
8042 | W: http://netup.tv/ |
8043 | T: git git://linuxtv.org/media_tree.git | |
8044 | S: Supported | |
8045 | F: drivers/media/dvb-frontends/horus3a* | |
8046 | ||
e025273b KS |
8047 | MEDIA DRIVERS FOR LNBH25 |
8048 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 8049 | M: Abylay Ospan <aospan@netup.ru> |
e025273b | 8050 | L: linux-media@vger.kernel.org |
a825eaec | 8051 | W: https://linuxtv.org |
e025273b KS |
8052 | W: http://netup.tv/ |
8053 | T: git git://linuxtv.org/media_tree.git | |
8054 | S: Supported | |
8055 | F: drivers/media/dvb-frontends/lnbh25* | |
8056 | ||
52b1eaf4 KS |
8057 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
8058 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 8059 | M: Abylay Ospan <aospan@netup.ru> |
52b1eaf4 | 8060 | L: linux-media@vger.kernel.org |
a825eaec | 8061 | W: https://linuxtv.org |
52b1eaf4 KS |
8062 | W: http://netup.tv/ |
8063 | T: git git://linuxtv.org/media_tree.git | |
8064 | S: Supported | |
8065 | F: drivers/media/pci/netup_unidvb/* | |
8066 | ||
127c49ae | 8067 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
5dc8a864 MCC |
8068 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
8069 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
127c49ae JP |
8070 | P: LinuxTV.org Project |
8071 | L: linux-media@vger.kernel.org | |
a825eaec | 8072 | W: https://linuxtv.org |
8a6e2535 | 8073 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 8074 | T: git git://linuxtv.org/media_tree.git |
127c49ae | 8075 | S: Maintained |
618cd932 | 8076 | F: Documentation/media/ |
127c49ae | 8077 | F: drivers/media/ |
ffe06198 | 8078 | F: drivers/staging/media/ |
eb4b0ec7 | 8079 | F: include/linux/platform_data/media/ |
127c49ae | 8080 | F: include/media/ |
6c0f0359 MCC |
8081 | F: include/uapi/linux/dvb/ |
8082 | F: include/uapi/linux/videodev2.h | |
8083 | F: include/uapi/linux/media.h | |
8084 | F: include/uapi/linux/v4l2-* | |
8085 | F: include/uapi/linux/meye.h | |
8086 | F: include/uapi/linux/ivtv* | |
8087 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 8088 | |
0c272fc9 JC |
8089 | MEDIATEK ETHERNET DRIVER |
8090 | M: Felix Fietkau <nbd@openwrt.org> | |
8091 | M: John Crispin <blogic@openwrt.org> | |
8092 | L: netdev@vger.kernel.org | |
8093 | S: Maintained | |
8094 | F: drivers/net/ethernet/mediatek/ | |
8095 | ||
67712beb TL |
8096 | MEDIATEK MEDIA DRIVER |
8097 | M: Tiffany Lin <tiffany.lin@mediatek.com> | |
8098 | M: Andrew-CT Chen <andrew-ct.chen@mediatek.com> | |
8099 | S: Supported | |
8100 | F: drivers/media/platform/mtk-vcodec/ | |
8101 | F: drivers/media/platform/mtk-vpu/ | |
8102 | F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt | |
8103 | F: Documentation/devicetree/bindings/media/mediatek-vpu.txt | |
8104 | ||
fc96ec0d MT |
8105 | MEDIATEK MDP DRIVER |
8106 | M: Minghsiu Tsai <minghsiu.tsai@mediatek.com> | |
8107 | M: Houlong Wei <houlong.wei@mediatek.com> | |
8108 | M: Andrew-CT Chen <andrew-ct.chen@mediatek.com> | |
8109 | S: Supported | |
8110 | F: drivers/media/platform/mtk-mdp/ | |
8111 | F: drivers/media/platform/mtk-vpu/ | |
8112 | F: Documentation/devicetree/bindings/media/mediatek-mdp.txt | |
8113 | ||
c869f77d JK |
8114 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
8115 | M: Jakub Kicinski <kubakici@wp.pl> | |
8116 | L: linux-wireless@vger.kernel.org | |
8117 | S: Maintained | |
8118 | F: drivers/net/wireless/mediatek/mt7601u/ | |
8119 | ||
e399065b | 8120 | MEGARAID SCSI/SAS DRIVERS |
295dde2f KD |
8121 | M: Kashyap Desai <kashyap.desai@broadcom.com> |
8122 | M: Sumit Saxena <sumit.saxena@broadcom.com> | |
8123 | M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com> | |
8124 | L: megaraidlinux.pdl@broadcom.com | |
baaea1dc | 8125 | L: linux-scsi@vger.kernel.org |
295dde2f | 8126 | W: http://www.avagotech.com/support/ |
ce00f85c | 8127 | S: Maintained |
679655da JP |
8128 | F: Documentation/scsi/megaraid.txt |
8129 | F: drivers/scsi/megaraid.* | |
8130 | F: drivers/scsi/megaraid/ | |
757e0108 | 8131 | |
ff43f433 SJ |
8132 | MELFAS MIP4 TOUCHSCREEN DRIVER |
8133 | M: Sangwon Jee <jeesw@melfas.com> | |
8134 | W: http://www.melfas.com | |
8135 | S: Supported | |
8136 | F: drivers/input/touchscreen/melfas_mip4.c | |
8137 | F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt | |
8138 | ||
2c46c9d5 | 8139 | MELLANOX ETHERNET DRIVER (mlx4_en) |
c40e4096 | 8140 | M: Tariq Toukan <tariqt@mellanox.com> |
b75f0050 | 8141 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
8142 | S: Supported |
8143 | W: http://www.mellanox.com | |
8144 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8145 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
8146 | ||
e7523a49 OG |
8147 | MELLANOX ETHERNET DRIVER (mlx5e) |
8148 | M: Saeed Mahameed <saeedm@mellanox.com> | |
8149 | L: netdev@vger.kernel.org | |
8150 | S: Supported | |
8151 | W: http://www.mellanox.com | |
8152 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8153 | F: drivers/net/ethernet/mellanox/mlx5/core/en_* | |
8154 | ||
93c1edb2 JP |
8155 | MELLANOX ETHERNET SWITCH DRIVERS |
8156 | M: Jiri Pirko <jiri@mellanox.com> | |
8157 | M: Ido Schimmel <idosch@mellanox.com> | |
8158 | L: netdev@vger.kernel.org | |
8159 | S: Supported | |
8160 | W: http://www.mellanox.com | |
8161 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8162 | F: drivers/net/ethernet/mellanox/mlxsw/ | |
8163 | ||
6bec23bf | 8164 | MELLANOX MLXCPLD I2C AND MUX DRIVER |
c02b7bf5 VP |
8165 | M: Vadim Pasternak <vadimp@mellanox.com> |
8166 | M: Michael Shych <michaelsh@mellanox.com> | |
8167 | L: linux-i2c@vger.kernel.org | |
8168 | S: Supported | |
6bec23bf | 8169 | F: drivers/i2c/busses/i2c-mlxcpld.c |
c02b7bf5 | 8170 | F: drivers/i2c/muxes/i2c-mux-mlxcpld.c |
6bec23bf | 8171 | F: Documentation/i2c/busses/i2c-mlxcpld |
c02b7bf5 | 8172 | |
be4fdf99 VP |
8173 | MELLANOX MLXCPLD LED DRIVER |
8174 | M: Vadim Pasternak <vadimp@mellanox.com> | |
8175 | L: linux-leds@vger.kernel.org | |
8176 | S: Supported | |
8177 | F: drivers/leds/leds-mlxcpld.c | |
8178 | F: Documentation/leds/leds-mlxcpld.txt | |
8179 | ||
58cbbee2 VP |
8180 | MELLANOX PLATFORM DRIVER |
8181 | M: Vadim Pasternak <vadimp@mellanox.com> | |
8182 | L: platform-driver-x86@vger.kernel.org | |
8183 | S: Supported | |
6613d18e | 8184 | F: drivers/platform/x86/mlx-platform.c |
58cbbee2 | 8185 | |
30488704 VP |
8186 | MELLANOX MLX CPLD HOTPLUG DRIVER |
8187 | M: Vadim Pasternak <vadimp@mellanox.com> | |
8188 | L: platform-driver-x86@vger.kernel.org | |
8189 | S: Supported | |
8190 | F: drivers/platform/x86/mlxcpld-hotplug.c | |
8191 | F: include/linux/platform_data/mlxcpld-hotplug.h | |
8192 | ||
8700e3e7 MS |
8193 | SOFT-ROCE DRIVER (rxe) |
8194 | M: Moni Shoua <monis@mellanox.com> | |
8195 | L: linux-rdma@vger.kernel.org | |
8196 | S: Supported | |
8197 | W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home | |
8198 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
701b4bf6 | 8199 | F: drivers/infiniband/sw/rxe/ |
8700e3e7 MS |
8200 | F: include/uapi/rdma/rdma_user_rxe.h |
8201 | ||
5b25b13a MD |
8202 | MEMBARRIER SUPPORT |
8203 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
8204 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
8205 | L: linux-kernel@vger.kernel.org | |
8206 | S: Supported | |
8207 | F: kernel/membarrier.c | |
8208 | F: include/uapi/linux/membarrier.h | |
8209 | ||
70ea91f1 SR |
8210 | MEMORY MANAGEMENT |
8211 | L: linux-mm@kvack.org | |
70ea91f1 SR |
8212 | W: http://www.linux-mm.org |
8213 | S: Maintained | |
679655da | 8214 | F: include/linux/mm.h |
551450bb CS |
8215 | F: include/linux/gfp.h |
8216 | F: include/linux/mmzone.h | |
8217 | F: include/linux/memory_hotplug.h | |
8218 | F: include/linux/vmalloc.h | |
679655da | 8219 | F: mm/ |
70ea91f1 | 8220 | |
f4e9ce66 | 8221 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 8222 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 8223 | M: Brian Norris <computersforpeace@gmail.com> |
30656167 BB |
8224 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
8225 | M: Marek Vasut <marek.vasut@gmail.com> | |
8226 | M: Richard Weinberger <richard@nod.at> | |
8227 | M: Cyrille Pitchen <cyrille.pitchen@atmel.com> | |
1da177e4 | 8228 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
8229 | W: http://www.linux-mtd.infradead.org/ |
8230 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 8231 | T: git git://git.infradead.org/linux-mtd.git |
ab95eac9 | 8232 | T: git git://git.infradead.org/l2-mtd.git |
1da177e4 | 8233 | S: Maintained |
becc7ae5 | 8234 | F: Documentation/devicetree/bindings/mtd/ |
679655da JP |
8235 | F: drivers/mtd/ |
8236 | F: include/linux/mtd/ | |
c117ab84 | 8237 | F: include/uapi/mtd/ |
1da177e4 | 8238 | |
26c57ef1 | 8239 | MEN A21 WATCHDOG DRIVER |
30c7469b | 8240 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
26c57ef1 | 8241 | L: linux-watchdog@vger.kernel.org |
30c7469b | 8242 | S: Maintained |
26c57ef1 JT |
8243 | F: drivers/watchdog/mena21_wdt.c |
8244 | ||
3764e82e | 8245 | MEN CHAMELEON BUS (mcb) |
30c7469b JT |
8246 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
8247 | S: Maintained | |
3764e82e JT |
8248 | F: drivers/mcb/ |
8249 | F: include/linux/mcb.h | |
b9f2f459 | 8250 | F: Documentation/men-chameleon-bus.txt |
3764e82e | 8251 | |
48b490d2 AW |
8252 | MEN F21BMC (Board Management Controller) |
8253 | M: Andreas Werner <andreas.werner@men.de> | |
8254 | S: Supported | |
8255 | F: drivers/mfd/menf21bmc.c | |
8256 | F: drivers/watchdog/menf21bmc_wdt.c | |
8257 | F: drivers/leds/leds-menf21bmc.c | |
8258 | F: drivers/hwmon/menf21bmc_hwmon.c | |
8259 | F: Documentation/hwmon/menf21bmc | |
8260 | ||
12285945 JH |
8261 | METAG ARCHITECTURE |
8262 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 8263 | L: linux-metag@vger.kernel.org |
9f273c24 | 8264 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git |
f23d0e24 | 8265 | S: Odd Fixes |
12285945 JH |
8266 | F: arch/metag/ |
8267 | F: Documentation/metag/ | |
8268 | F: Documentation/devicetree/bindings/metag/ | |
2d799dde | 8269 | F: Documentation/devicetree/bindings/interrupt-controller/img,* |
a2c5d4ed | 8270 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
8271 | F: drivers/irqchip/irq-metag.c |
8272 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 8273 | F: drivers/tty/metag_da.c |
12285945 | 8274 | |
c6375b0a | 8275 | MICROBLAZE ARCHITECTURE |
8b58be88 | 8276 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
8277 | W: http://www.monstr.eu/fdt/ |
8278 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
8279 | S: Supported | |
0a8c7914 | 8280 | F: arch/microblaze/ |
1da177e4 | 8281 | |
5615c371 NF |
8282 | MICROCHIP / ATMEL AT91 / AT32 SERIAL DRIVER |
8283 | M: Richard Genoud <richard.genoud@gmail.com> | |
8284 | S: Maintained | |
8285 | F: drivers/tty/serial/atmel_serial.c | |
8286 | F: include/linux/atmel_serial.h | |
8287 | ||
f53243b5 NF |
8288 | MICROCHIP / ATMEL DMA DRIVER |
8289 | M: Ludovic Desroches <ludovic.desroches@microchip.com> | |
8290 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8291 | L: dmaengine@vger.kernel.org | |
8292 | S: Supported | |
8293 | F: drivers/dma/at_hdmac.c | |
8294 | F: drivers/dma/at_hdmac_regs.h | |
8295 | F: include/linux/platform_data/dma-atmel.h | |
8296 | ||
71fb2c74 SW |
8297 | MICROCHIP / ATMEL ISC DRIVER |
8298 | M: Songjun Wu <songjun.wu@microchip.com> | |
8299 | L: linux-media@vger.kernel.org | |
8300 | S: Supported | |
8301 | F: drivers/media/platform/atmel/atmel-isc.c | |
8302 | F: drivers/media/platform/atmel/atmel-isc-regs.h | |
8303 | F: devicetree/bindings/media/atmel-isc.txt | |
8304 | ||
3ec72a2a RL |
8305 | MICROCHIP USB251XB DRIVER |
8306 | M: Richard Leitner <richard.leitner@skidata.com> | |
8307 | L: linux-usb@vger.kernel.org | |
8308 | S: Maintained | |
8309 | F: drivers/usb/misc/usb251xb.c | |
3ec72a2a RL |
8310 | F: Documentation/devicetree/bindings/usb/usb251xb.txt |
8311 | ||
2508a45a CY |
8312 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
8313 | M: Chen Yu <yu.c.chen@intel.com> | |
8314 | L: platform-driver-x86@vger.kernel.org | |
8315 | S: Supported | |
8316 | F: drivers/platform/x86/surfacepro3_button.c | |
8317 | ||
1da177e4 | 8318 | MICROTEK X6 SCANNER |
61eee9a7 | 8319 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 8320 | S: Maintained |
679655da | 8321 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
8322 | |
8323 | MIPS | |
8b58be88 | 8324 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 8325 | L: linux-mips@linux-mips.org |
6097050d | 8326 | W: http://www.linux-mips.org/ |
b05e988e | 8327 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 8328 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 8329 | S: Supported |
f46d92e8 | 8330 | F: Documentation/devicetree/bindings/mips/ |
679655da JP |
8331 | F: Documentation/mips/ |
8332 | F: arch/mips/ | |
1da177e4 | 8333 | |
413ef3f6 KC |
8334 | MIPS/LOONGSON1 ARCHITECTURE |
8335 | M: Keguang Zhang <keguang.zhang@gmail.com> | |
8336 | L: linux-mips@linux-mips.org | |
8337 | S: Maintained | |
8338 | F: arch/mips/loongson32/ | |
8339 | F: arch/mips/include/asm/mach-loongson32/ | |
8340 | F: drivers/*/*loongson1* | |
8341 | F: drivers/*/*/*loongson1* | |
8342 | ||
08b7620a HV |
8343 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
8344 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8345 | L: linux-media@vger.kernel.org | |
8346 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 8347 | W: https://linuxtv.org |
08b7620a HV |
8348 | S: Odd Fixes |
8349 | F: drivers/media/radio/radio-miropcm20* | |
8350 | ||
c09befcb OG |
8351 | MELLANOX MLX4 core VPI driver |
8352 | M: Yishai Hadas <yishaih@mellanox.com> | |
e126ba97 EC |
8353 | L: netdev@vger.kernel.org |
8354 | L: linux-rdma@vger.kernel.org | |
8355 | W: http://www.mellanox.com | |
8356 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
c09befcb OG |
8357 | S: Supported |
8358 | F: drivers/net/ethernet/mellanox/mlx4/ | |
8359 | F: include/linux/mlx4/ | |
9ce28a20 | 8360 | F: include/uapi/rdma/mlx4-abi.h |
c09befcb OG |
8361 | |
8362 | MELLANOX MLX4 IB driver | |
8363 | M: Yishai Hadas <yishaih@mellanox.com> | |
8364 | L: linux-rdma@vger.kernel.org | |
8365 | W: http://www.mellanox.com | |
e126ba97 | 8366 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
c09befcb OG |
8367 | S: Supported |
8368 | F: drivers/infiniband/hw/mlx4/ | |
8369 | F: include/linux/mlx4/ | |
8370 | ||
595a4d8f | 8371 | MELLANOX MLX5 core VPI driver |
45788f1f | 8372 | M: Saeed Mahameed <saeedm@mellanox.com> |
595a4d8f OG |
8373 | M: Matan Barak <matanb@mellanox.com> |
8374 | M: Leon Romanovsky <leonro@mellanox.com> | |
e126ba97 EC |
8375 | L: netdev@vger.kernel.org |
8376 | L: linux-rdma@vger.kernel.org | |
8377 | W: http://www.mellanox.com | |
8378 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
e126ba97 EC |
8379 | S: Supported |
8380 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
8381 | F: include/linux/mlx5/ | |
3085e29e | 8382 | F: include/uapi/rdma/mlx5-abi.h |
e126ba97 | 8383 | |
595a4d8f OG |
8384 | MELLANOX MLX5 IB driver |
8385 | M: Matan Barak <matanb@mellanox.com> | |
8386 | M: Leon Romanovsky <leonro@mellanox.com> | |
b75f0050 JP |
8387 | L: linux-rdma@vger.kernel.org |
8388 | W: http://www.mellanox.com | |
8389 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
b75f0050 | 8390 | S: Supported |
b75f0050 | 8391 | F: drivers/infiniband/hw/mlx5/ |
595a4d8f | 8392 | F: include/linux/mlx5/ |
e126ba97 | 8393 | |
764589b6 CM |
8394 | MELEXIS MLX90614 DRIVER |
8395 | M: Crt Mori <cmo@melexis.com> | |
8396 | L: linux-iio@vger.kernel.org | |
8397 | W: http://www.melexis.com | |
8398 | S: Supported | |
8399 | F: drivers/iio/temperature/mlx90614.c | |
8400 | ||
6c223761 KB |
8401 | MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi) |
8402 | M: Don Brace <don.brace@microsemi.com> | |
8403 | L: esc.storagedev@microsemi.com | |
8404 | L: linux-scsi@vger.kernel.org | |
8405 | S: Supported | |
8406 | F: drivers/scsi/smartpqi/smartpqi*.[ch] | |
8407 | F: drivers/scsi/smartpqi/Kconfig | |
8408 | F: drivers/scsi/smartpqi/Makefile | |
8409 | F: include/linux/cciss*.h | |
8410 | F: include/uapi/linux/cciss*.h | |
425b490b | 8411 | F: Documentation/scsi/smartpqi.txt |
6c223761 | 8412 | |
0ce277e4 AP |
8413 | MN88472 MEDIA DRIVER |
8414 | M: Antti Palosaari <crope@iki.fi> | |
8415 | L: linux-media@vger.kernel.org | |
a825eaec | 8416 | W: https://linuxtv.org |
0ce277e4 AP |
8417 | W: http://palosaari.fi/linux/ |
8418 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
0ce277e4 | 8419 | S: Maintained |
94d0eaa4 | 8420 | F: drivers/media/dvb-frontends/mn88472* |
0ce277e4 | 8421 | |
4f4d238f AP |
8422 | MN88473 MEDIA DRIVER |
8423 | M: Antti Palosaari <crope@iki.fi> | |
8424 | L: linux-media@vger.kernel.org | |
a825eaec | 8425 | W: https://linuxtv.org |
4f4d238f AP |
8426 | W: http://palosaari.fi/linux/ |
8427 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4f4d238f | 8428 | S: Maintained |
877ba50b | 8429 | F: drivers/media/dvb-frontends/mn88473* |
4f4d238f | 8430 | |
1da177e4 | 8431 | MODULE SUPPORT |
a467a672 | 8432 | M: Jessica Yu <jeyu@redhat.com> |
8b58be88 | 8433 | M: Rusty Russell <rusty@rustcorp.com.au> |
0d4ec784 | 8434 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next |
1da177e4 | 8435 | S: Maintained |
679655da JP |
8436 | F: include/linux/module.h |
8437 | F: kernel/module.c | |
1da177e4 LT |
8438 | |
8439 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 8440 | W: http://popies.net/meye/ |
b7788e13 | 8441 | S: Orphan |
618cd932 | 8442 | F: Documentation/media/v4l-drivers/meye* |
90d72ac6 | 8443 | F: drivers/media/pci/meye/ |
6c0f0359 | 8444 | F: include/uapi/linux/meye.h |
1da177e4 | 8445 | |
b9705b60 | 8446 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 8447 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 8448 | S: Maintained |
679655da | 8449 | F: Documentation/serial/moxa-smartio |
c897401b | 8450 | F: drivers/tty/mxser.* |
d735410a | 8451 | |
889b2f87 AK |
8452 | MR800 AVERMEDIA USB FM RADIO DRIVER |
8453 | M: Alexey Klimov <klimov.linux@gmail.com> | |
8454 | L: linux-media@vger.kernel.org | |
8455 | T: git git://linuxtv.org/media_tree.git | |
8456 | S: Maintained | |
8457 | F: drivers/media/radio/radio-mr800.c | |
8458 | ||
d7155691 AO |
8459 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
8460 | M: Alan Ott <alan@signal11.us> | |
8461 | L: linux-wpan@vger.kernel.org | |
8462 | S: Maintained | |
8463 | F: drivers/net/ieee802154/mrf24j40.c | |
2e6fd648 | 8464 | F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt |
d7155691 | 8465 | |
8c4c731a | 8466 | MSI LAPTOP SUPPORT |
182ae55c | 8467 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 8468 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 8469 | S: Maintained |
679655da | 8470 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 8471 | |
0f1006b1 | 8472 | MSI WMI SUPPORT |
d0944853 | 8473 | L: platform-driver-x86@vger.kernel.org |
5ee7041e | 8474 | S: Orphan |
0f1006b1 AA |
8475 | F: drivers/platform/x86/msi-wmi.c |
8476 | ||
19a628a0 AP |
8477 | MSI001 MEDIA DRIVER |
8478 | M: Antti Palosaari <crope@iki.fi> | |
8479 | L: linux-media@vger.kernel.org | |
a825eaec | 8480 | W: https://linuxtv.org |
19a628a0 AP |
8481 | W: http://palosaari.fi/linux/ |
8482 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8483 | T: git git://linuxtv.org/anttip/media_tree.git | |
8484 | S: Maintained | |
0185e197 | 8485 | F: drivers/media/tuners/msi001* |
19a628a0 | 8486 | |
7570589d | 8487 | MSI2500 MEDIA DRIVER |
2c57213f AP |
8488 | M: Antti Palosaari <crope@iki.fi> |
8489 | L: linux-media@vger.kernel.org | |
a825eaec | 8490 | W: https://linuxtv.org |
2c57213f AP |
8491 | W: http://palosaari.fi/linux/ |
8492 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8493 | T: git git://linuxtv.org/anttip/media_tree.git | |
8494 | S: Maintained | |
7570589d | 8495 | F: drivers/media/usb/msi2500/ |
2c57213f | 8496 | |
159eeea4 RJ |
8497 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
8498 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
8499 | L: linux-mtd@lists.infradead.org | |
8500 | S: Maintained | |
8501 | F: drivers/mtd/devices/docg3* | |
8502 | ||
62a37dc7 | 8503 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
8504 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8505 | L: linux-media@vger.kernel.org | |
8506 | T: git git://linuxtv.org/media_tree.git | |
8507 | S: Maintained | |
8508 | F: drivers/media/i2c/mt9m032.c | |
b5dcee22 | 8509 | F: include/media/i2c/mt9m032.h |
0e837fb9 | 8510 | |
62a37dc7 | 8511 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
8512 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8513 | L: linux-media@vger.kernel.org | |
8514 | T: git git://linuxtv.org/media_tree.git | |
8515 | S: Maintained | |
8516 | F: drivers/media/i2c/mt9p031.c | |
b5dcee22 | 8517 | F: include/media/i2c/mt9p031.h |
0e837fb9 | 8518 | |
62a37dc7 | 8519 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
8520 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8521 | L: linux-media@vger.kernel.org | |
8522 | T: git git://linuxtv.org/media_tree.git | |
8523 | S: Maintained | |
8524 | F: drivers/media/i2c/mt9t001.c | |
b5dcee22 | 8525 | F: include/media/i2c/mt9t001.h |
0e837fb9 | 8526 | |
62a37dc7 | 8527 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
8528 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8529 | L: linux-media@vger.kernel.org | |
8530 | T: git git://linuxtv.org/media_tree.git | |
8531 | S: Maintained | |
f2272e13 | 8532 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
0e837fb9 | 8533 | F: drivers/media/i2c/mt9v032.c |
b5dcee22 | 8534 | F: include/media/i2c/mt9v032.h |
0e837fb9 | 8535 | |
4e0d13cb | 8536 | MULTIFUNCTION DEVICES (MFD) |
f7d3210e | 8537 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 8538 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 8539 | S: Supported |
80366127 | 8540 | F: Documentation/devicetree/bindings/mfd/ |
679655da | 8541 | F: drivers/mfd/ |
55b5940d | 8542 | F: include/linux/mfd/ |
29a0729d | 8543 | F: include/dt-bindings/mfd/ |
4e0d13cb | 8544 | |
5c4e6f13 | 8545 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
e18eaf8f | 8546 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 8547 | L: linux-mmc@vger.kernel.org |
82bb095e | 8548 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git |
245feaa6 | 8549 | S: Maintained |
2810984b | 8550 | F: Documentation/devicetree/bindings/mmc/ |
679655da JP |
8551 | F: drivers/mmc/ |
8552 | F: include/linux/mmc/ | |
c117ab84 | 8553 | F: include/uapi/linux/mmc/ |
baca2da4 | 8554 | |
15a0580c | 8555 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 8556 | S: Orphan |
679655da JP |
8557 | F: drivers/mmc/host/mmc_spi.c |
8558 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 8559 | |
1da177e4 | 8560 | MULTISOUND SOUND DRIVER |
8b58be88 | 8561 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 8562 | S: Maintained |
679655da JP |
8563 | F: Documentation/sound/oss/MultiSound |
8564 | F: sound/oss/msnd* | |
1da177e4 | 8565 | |
d735410a | 8566 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 8567 | S: Orphan |
c897401b | 8568 | F: drivers/tty/isicom.c |
679655da | 8569 | F: include/linux/isicom.h |
d735410a | 8570 | |
550a7375 | 8571 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
3b243519 | 8572 | M: Bin Liu <b-liu@ti.com> |
795fb7e7 | 8573 | L: linux-usb@vger.kernel.org |
43b416e5 | 8574 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 8575 | S: Maintained |
679655da | 8576 | F: drivers/usb/musb/ |
550a7375 | 8577 | |
ea0af5f6 MK |
8578 | MXL5007T MEDIA DRIVER |
8579 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8580 | L: linux-media@vger.kernel.org | |
a825eaec | 8581 | W: https://linuxtv.org |
ea0af5f6 MK |
8582 | W: http://github.com/mkrufky |
8583 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8584 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8585 | S: Maintained | |
8586 | F: drivers/media/tuners/mxl5007t.* | |
8587 | ||
45d59d70 MV |
8588 | MXSFB DRM DRIVER |
8589 | M: Marek Vasut <marex@denx.de> | |
8590 | S: Supported | |
8591 | F: drivers/gpu/drm/mxsfb/ | |
8592 | F: Documentation/devicetree/bindings/display/mxsfb-drm.txt | |
8593 | ||
2d3cf588 | 8594 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 8595 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 8596 | L: netdev@vger.kernel.org |
205057ae | 8597 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 8598 | S: Supported |
93f7848b | 8599 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 8600 | |
9df4f913 BB |
8601 | NAND FLASH SUBSYSTEM |
8602 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
8603 | R: Richard Weinberger <richard@nod.at> | |
8604 | L: linux-mtd@lists.infradead.org | |
8605 | W: http://www.linux-mtd.infradead.org/ | |
8606 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
8607 | T: git git://github.com/linux-nand/linux.git | |
8608 | S: Maintained | |
8609 | F: drivers/mtd/nand/ | |
8610 | F: include/linux/mtd/nand*.h | |
8611 | ||
1da177e4 | 8612 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 8613 | S: Orphan |
d9fb9f38 | 8614 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 8615 | |
23dc05a3 DM |
8616 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
8617 | M: Daniel Mack <zonque@gmail.com> | |
8618 | S: Maintained | |
e5747e40 | 8619 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
23dc05a3 DM |
8620 | W: http://www.native-instruments.com |
8621 | F: sound/usb/caiaq/ | |
8622 | ||
1da177e4 | 8623 | NCP FILESYSTEM |
52653199 PV |
8624 | M: Petr Vandrovec <petr@vandrovec.name> |
8625 | S: Odd Fixes | |
679655da | 8626 | F: fs/ncpfs/ |
1da177e4 | 8627 | |
a79b0322 FT |
8628 | NCR 5380 SCSI DRIVERS |
8629 | M: Finn Thain <fthain@telegraphics.com.au> | |
8630 | M: Michael Schmitz <schmitzmic@gmail.com> | |
8631 | L: linux-scsi@vger.kernel.org | |
8632 | S: Maintained | |
8633 | F: Documentation/scsi/g_NCR5380.txt | |
8634 | F: drivers/scsi/NCR5380.* | |
8635 | F: drivers/scsi/arm/cumana_1.c | |
8636 | F: drivers/scsi/arm/oak.c | |
a79b0322 FT |
8637 | F: drivers/scsi/atari_scsi.* |
8638 | F: drivers/scsi/dmx3191d.c | |
a79b0322 | 8639 | F: drivers/scsi/g_NCR5380.* |
a79b0322 | 8640 | F: drivers/scsi/mac_scsi.* |
a79b0322 FT |
8641 | F: drivers/scsi/sun3_scsi.* |
8642 | F: drivers/scsi/sun3_scsi_vme.c | |
a79b0322 | 8643 | |
1da177e4 | 8644 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 8645 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
8646 | L: linux-scsi@vger.kernel.org |
8647 | S: Maintained | |
679655da | 8648 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 8649 | |
4aa3eb4c GR |
8650 | NCT6775 HARDWARE MONITOR DRIVER |
8651 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 8652 | L: linux-hwmon@vger.kernel.org |
4aa3eb4c GR |
8653 | S: Maintained |
8654 | F: Documentation/hwmon/nct6775 | |
8655 | F: drivers/hwmon/nct6775.c | |
8656 | ||
3c2d774c | 8657 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 8658 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 8659 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 8660 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
8661 | S: Supported |
8662 | F: drivers/infiniband/hw/nes/ | |
c546b2a3 | 8663 | F: include/uapi/rdma/nes-abi.h |
3c2d774c | 8664 | |
be2f2e84 | 8665 | NETEM NETWORK EMULATOR |
adbbf69d | 8666 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 8667 | L: netem@lists.linux-foundation.org (moderated for non-subscribers) |
be2f2e84 | 8668 | S: Maintained |
679655da | 8669 | F: net/sched/sch_netem.c |
be2f2e84 | 8670 | |
b2f5a051 | 8671 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 8672 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 8673 | L: netdev@vger.kernel.org |
4a58448b | 8674 | S: Supported |
679655da | 8675 | F: Documentation/networking/s2io.txt |
b2f5a051 | 8676 | F: Documentation/networking/vxge.txt |
86387e1a | 8677 | F: drivers/net/ethernet/neterion/ |
4a58448b | 8678 | |
fc52497e | 8679 | NETFILTER |
0e05e192 | 8680 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
42010ed0 | 8681 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d | 8682 | L: netfilter-devel@vger.kernel.org |
82b98543 | 8683 | L: coreteam@netfilter.org |
1da177e4 LT |
8684 | W: http://www.netfilter.org/ |
8685 | W: http://www.iptables.org/ | |
42010ed0 PNA |
8686 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
8687 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
8688 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 8689 | S: Supported |
679655da JP |
8690 | F: include/linux/netfilter* |
8691 | F: include/linux/netfilter/ | |
8692 | F: include/net/netfilter/ | |
c117ab84 CEB |
8693 | F: include/uapi/linux/netfilter* |
8694 | F: include/uapi/linux/netfilter/ | |
679655da JP |
8695 | F: net/*/netfilter.c |
8696 | F: net/*/netfilter/ | |
8697 | F: net/netfilter/ | |
91c269a0 | 8698 | F: net/bridge/br_netfilter*.c |
1da177e4 | 8699 | |
4cc67735 | 8700 | NETLABEL |
87a0874c | 8701 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
8702 | W: http://netlabel.sf.net |
8703 | L: netdev@vger.kernel.org | |
87a0874c | 8704 | S: Maintained |
80811493 | 8705 | F: Documentation/netlabel/ |
679655da JP |
8706 | F: include/net/netlabel.h |
8707 | F: net/netlabel/ | |
4cc67735 | 8708 | |
1da177e4 | 8709 | NETROM NETWORK LAYER |
8b58be88 | 8710 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 8711 | L: linux-hams@vger.kernel.org |
d34cb28a | 8712 | W: http://www.linux-ax25.org/ |
1da177e4 | 8713 | S: Maintained |
679655da | 8714 | F: include/net/netrom.h |
c117ab84 | 8715 | F: include/uapi/linux/netrom.h |
679655da | 8716 | F: net/netrom/ |
1da177e4 | 8717 | |
4c352362 JK |
8718 | NETRONOME ETHERNET DRIVERS |
8719 | M: Jakub Kicinski <jakub.kicinski@netronome.com> | |
4c352362 JK |
8720 | L: oss-drivers@netronome.com |
8721 | S: Maintained | |
8722 | F: drivers/net/ethernet/netronome/ | |
8723 | ||
5ddb88c0 | 8724 | NETWORK BLOCK DEVICE (NBD) |
1e668f4e | 8725 | M: Josef Bacik <jbacik@fb.com> |
1da177e4 | 8726 | S: Maintained |
1e668f4e | 8727 | L: linux-block@vger.kernel.org |
5e4b269b | 8728 | L: nbd-general@lists.sourceforge.net |
679655da JP |
8729 | F: Documentation/blockdev/nbd.txt |
8730 | F: drivers/block/nbd.c | |
c117ab84 | 8731 | F: include/uapi/linux/nbd.h |
1da177e4 | 8732 | |
6e43650c NH |
8733 | NETWORK DROP MONITOR |
8734 | M: Neil Horman <nhorman@tuxdriver.com> | |
8735 | L: netdev@vger.kernel.org | |
8736 | S: Maintained | |
8737 | W: https://fedorahosted.org/dropwatch/ | |
8738 | F: net/core/drop_monitor.c | |
8739 | ||
3ed6e498 AL |
8740 | NETWORKING [DSA] |
8741 | M: Andrew Lunn <andrew@lunn.ch> | |
8742 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
8743 | M: Florian Fainelli <f.fainelli@gmail.com> | |
8744 | S: Maintained | |
8745 | F: net/dsa/ | |
8746 | F: include/net/dsa.h | |
8747 | F: drivers/net/dsa/ | |
8748 | ||
1da177e4 | 8749 | NETWORKING [GENERAL] |
8b58be88 | 8750 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 8751 | L: netdev@vger.kernel.org |
b1e8fd54 | 8752 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 8753 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
8754 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
8755 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 8756 | S: Maintained |
679655da JP |
8757 | F: net/ |
8758 | F: include/net/ | |
018d21ed JP |
8759 | F: include/linux/in.h |
8760 | F: include/linux/net.h | |
8761 | F: include/linux/netdevice.h | |
c117ab84 CEB |
8762 | F: include/uapi/linux/in.h |
8763 | F: include/uapi/linux/net.h | |
8764 | F: include/uapi/linux/netdevice.h | |
0c7aecd4 | 8765 | F: include/uapi/linux/net_namespace.h |
7e814a6c | 8766 | F: tools/net/ |
f4e53f9a | 8767 | F: tools/testing/selftests/net/ |
335a67d2 | 8768 | F: lib/random32.c |
1da177e4 LT |
8769 | |
8770 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
8771 | M: "David S. Miller" <davem@davemloft.net> |
8772 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
8773 | M: James Morris <jmorris@namei.org> |
8774 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
8775 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 8776 | L: netdev@vger.kernel.org |
08deed1e | 8777 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 8778 | S: Maintained |
679655da JP |
8779 | F: net/ipv4/ |
8780 | F: net/ipv6/ | |
8781 | F: include/net/ip* | |
0a14842f | 8782 | F: arch/x86/net/* |
1da177e4 | 8783 | |
73b7656c DM |
8784 | NETWORKING [IPSEC] |
8785 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
8786 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
8787 | M: "David S. Miller" <davem@davemloft.net> | |
8788 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
8789 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
8790 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 8791 | S: Maintained |
5826bdd1 | 8792 | F: net/core/flow.c |
73b7656c DM |
8793 | F: net/xfrm/ |
8794 | F: net/key/ | |
8795 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
8796 | F: net/ipv4/esp4.c |
8797 | F: net/ipv4/ah4.c | |
8798 | F: net/ipv4/ipcomp.c | |
8799 | F: net/ipv4/ip_vti.c | |
73b7656c | 8800 | F: net/ipv6/xfrm* |
d1fc5024 SK |
8801 | F: net/ipv6/esp6.c |
8802 | F: net/ipv6/ah6.c | |
8803 | F: net/ipv6/ipcomp6.c | |
8804 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
8805 | F: include/uapi/linux/xfrm.h |
8806 | F: include/net/xfrm.h | |
8807 | ||
10e2ff1c | 8808 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 8809 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
8810 | L: netdev@vger.kernel.org |
8811 | S: Maintained | |
8812 | ||
29f8f632 | 8813 | NETWORKING [WIRELESS] |
2cb4abd1 | 8814 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 8815 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
29f8f632 | 8816 | |
788873ac JP |
8817 | NETWORKING DRIVERS |
8818 | L: netdev@vger.kernel.org | |
8819 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 8820 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
8821 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
8822 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac | 8823 | S: Odd Fixes |
156f4fbc | 8824 | F: Documentation/devicetree/bindings/net/ |
788873ac | 8825 | F: drivers/net/ |
018d21ed | 8826 | F: include/linux/if_* |
0b63bf1f | 8827 | F: include/linux/netdevice.h |
0b63bf1f JD |
8828 | F: include/linux/etherdevice.h |
8829 | F: include/linux/fcdevice.h | |
8830 | F: include/linux/fddidevice.h | |
8831 | F: include/linux/hippidevice.h | |
8832 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
8833 | F: include/uapi/linux/if_* |
8834 | F: include/uapi/linux/netdevice.h | |
788873ac | 8835 | |
0e324cf6 JL |
8836 | NETWORKING DRIVERS (WIRELESS) |
8837 | M: Kalle Valo <kvalo@codeaurora.org> | |
8838 | L: linux-wireless@vger.kernel.org | |
8839 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
9f273c24 FW |
8840 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git |
8841 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git | |
0e324cf6 | 8842 | S: Maintained |
182fd9ee | 8843 | F: Documentation/devicetree/bindings/net/wireless/ |
0e324cf6 JL |
8844 | F: drivers/net/wireless/ |
8845 | ||
3d396eb1 | 8846 | NETXEN (1/10) GbE SUPPORT |
67f0160f MY |
8847 | M: Manish Chopra <manish.chopra@cavium.com> |
8848 | M: Rahul Verma <rahul.verma@cavium.com> | |
8849 | M: Dept-GELinuxNICDev@cavium.com | |
3d396eb1 | 8850 | L: netdev@vger.kernel.org |
3d396eb1 | 8851 | S: Supported |
aa43c215 | 8852 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 8853 | |
6423d30f AAJ |
8854 | NFC SUBSYSTEM |
8855 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
8856 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
8857 | M: Samuel Ortiz <sameo@linux.intel.com> | |
8858 | L: linux-wireless@vger.kernel.org | |
1eb3b216 | 8859 | L: linux-nfc@lists.01.org (subscribers-only) |
0293ba20 | 8860 | S: Supported |
6423d30f | 8861 | F: net/nfc/ |
55eb94f9 | 8862 | F: include/net/nfc/ |
c117ab84 | 8863 | F: include/uapi/linux/nfc.h |
6423d30f | 8864 | F: drivers/nfc/ |
397d6497 CR |
8865 | F: include/linux/platform_data/nfcmrvl.h |
8866 | F: include/linux/platform_data/nxp-nci.h | |
08eaa1e0 | 8867 | F: include/linux/platform_data/pn544.h |
397d6497 CR |
8868 | F: include/linux/platform_data/st21nfca.h |
8869 | F: include/linux/platform_data/st-nci.h | |
7ebb88e5 | 8870 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 8871 | |
e8b43555 | 8872 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 8873 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
0e3b137f | 8874 | M: Anna Schumaker <anna.schumaker@netapp.com> |
78f58153 TM |
8875 | L: linux-nfs@vger.kernel.org |
8876 | W: http://client.linux-nfs.org | |
cd7b996a | 8877 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 8878 | S: Maintained |
679655da JP |
8879 | F: fs/lockd/ |
8880 | F: fs/nfs/ | |
8881 | F: fs/nfs_common/ | |
8882 | F: net/sunrpc/ | |
8883 | F: include/linux/lockd/ | |
8884 | F: include/linux/nfs* | |
8885 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
8886 | F: include/uapi/linux/nfs* |
8887 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 8888 | |
85ef9cea | 8889 | NILFS2 FILESYSTEM |
e2126935 | 8890 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 8891 | L: linux-nilfs@vger.kernel.org |
f9472265 | 8892 | W: http://nilfs.sourceforge.net/ |
9e92e516 | 8893 | W: http://nilfs.osdn.jp/ |
e2126935 | 8894 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 8895 | S: Supported |
679655da JP |
8896 | F: Documentation/filesystems/nilfs2.txt |
8897 | F: fs/nilfs2/ | |
c35c7ac5 | 8898 | F: include/trace/events/nilfs2.h |
e63e88bc RK |
8899 | F: include/uapi/linux/nilfs2_api.h |
8900 | F: include/uapi/linux/nilfs2_ondisk.h | |
85ef9cea | 8901 | |
1da177e4 | 8902 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 8903 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
8904 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
8905 | S: Maintained | |
679655da JP |
8906 | F: Documentation/scsi/NinjaSCSI.txt |
8907 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
8908 | |
8909 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
8910 | M: GOTO Masanori <gotom@debian.or.jp> |
8911 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
8912 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
8913 | S: Maintained | |
679655da JP |
8914 | F: Documentation/scsi/NinjaSCSI.txt |
8915 | F: drivers/scsi/nsp32* | |
1da177e4 | 8916 | |
383b8fb9 LFT |
8917 | NIOS2 ARCHITECTURE |
8918 | M: Ley Foon Tan <lftan@altera.com> | |
8919 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
0094dc40 | 8920 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
383b8fb9 LFT |
8921 | S: Maintained |
8922 | F: arch/nios2/ | |
8923 | ||
21b5a1c3 PM |
8924 | NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS) |
8925 | M: Pavel Machek <pavel@ucw.cz> | |
8926 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
8927 | L: linux-media@vger.kernel.org | |
8928 | S: Maintained | |
8929 | F: drivers/media/i2c/et8ek8 | |
8930 | F: drivers/media/i2c/ad5820.c | |
8931 | ||
e5360224 PM |
8932 | NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS) |
8933 | M: Pavel Machek <pavel@ucw.cz> | |
8934 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
8935 | L: linux-media@vger.kernel.org | |
8936 | S: Maintained | |
8937 | F: drivers/media/i2c/et8ek8 | |
8938 | F: drivers/media/i2c/ad5820.c | |
8939 | ||
2a6afddb | 8940 | NOKIA N900 POWER SUPPLY DRIVERS |
e35a49b1 | 8941 | R: Pali Rohár <pali.rohar@gmail.com> |
2a6afddb | 8942 | F: include/linux/power/bq2415x_charger.h |
081bab21 | 8943 | F: include/linux/power/bq27xxx_battery.h |
2a6afddb | 8944 | F: include/linux/power/isp1704_charger.h |
8c0984e5 SR |
8945 | F: drivers/power/supply/bq2415x_charger.c |
8946 | F: drivers/power/supply/bq27xxx_battery.c | |
8947 | F: drivers/power/supply/bq27xxx_battery_i2c.c | |
8948 | F: drivers/power/supply/isp1704_charger.c | |
8949 | F: drivers/power/supply/rx51_battery.c | |
2a6afddb | 8950 | |
a1bd3bae | 8951 | NTB DRIVER CORE |
9ef6bf6c JM |
8952 | M: Jon Mason <jdmason@kudzu.us> |
8953 | M: Dave Jiang <dave.jiang@intel.com> | |
a1bd3bae | 8954 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
5e9fd733 | 8955 | L: linux-ntb@googlegroups.com |
fce8a7bb | 8956 | S: Supported |
2984411f JM |
8957 | W: https://github.com/jonmason/ntb/wiki |
8958 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 8959 | F: drivers/ntb/ |
548c237c | 8960 | F: drivers/net/ntb_netdev.c |
fce8a7bb | 8961 | F: include/linux/ntb.h |
a1bd3bae | 8962 | F: include/linux/ntb_transport.h |
a9c59ef7 | 8963 | F: tools/testing/selftests/ntb/ |
fce8a7bb | 8964 | |
e26a5843 AH |
8965 | NTB INTEL DRIVER |
8966 | M: Jon Mason <jdmason@kudzu.us> | |
8967 | M: Dave Jiang <dave.jiang@intel.com> | |
5e9fd733 | 8968 | L: linux-ntb@googlegroups.com |
e26a5843 AH |
8969 | S: Supported |
8970 | W: https://github.com/jonmason/ntb/wiki | |
8971 | T: git git://github.com/jonmason/ntb.git | |
8972 | F: drivers/ntb/hw/intel/ | |
fce8a7bb | 8973 | |
a1b36958 | 8974 | NTB AMD DRIVER |
bc034e52 | 8975 | M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com> |
a1b36958 XY |
8976 | L: linux-ntb@googlegroups.com |
8977 | S: Supported | |
8978 | F: drivers/ntb/hw/amd/ | |
8979 | ||
1da177e4 | 8980 | NTFS FILESYSTEM |
2818ef50 | 8981 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 8982 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 8983 | W: http://www.tuxera.com/ |
e6f4dee7 | 8984 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 8985 | S: Supported |
679655da JP |
8986 | F: Documentation/filesystems/ntfs.txt |
8987 | F: fs/ntfs/ | |
1da177e4 | 8988 | |
9eb8ef74 | 8989 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 8990 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 8991 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 8992 | S: Maintained |
8a61f013 JH |
8993 | F: drivers/video/fbdev/riva/ |
8994 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 8995 | |
79461681 | 8996 | NVM EXPRESS DRIVER |
b3975e94 JF |
8997 | M: Keith Busch <keith.busch@intel.com> |
8998 | M: Jens Axboe <axboe@fb.com> | |
b508fc35 CH |
8999 | M: Christoph Hellwig <hch@lst.de> |
9000 | M: Sagi Grimberg <sagi@grimberg.me> | |
79461681 | 9001 | L: linux-nvme@lists.infradead.org |
b508fc35 CH |
9002 | T: git://git.infradead.org/nvme.git |
9003 | W: http://git.infradead.org/nvme.git | |
79461681 | 9004 | S: Supported |
57dacad5 | 9005 | F: drivers/nvme/host/ |
79461681 | 9006 | F: include/linux/nvme.h |
b508fc35 | 9007 | F: include/uapi/linux/nvme_ioctl.h |
79461681 | 9008 | |
a07b4970 CH |
9009 | NVM EXPRESS TARGET DRIVER |
9010 | M: Christoph Hellwig <hch@lst.de> | |
9011 | M: Sagi Grimberg <sagi@grimberg.me> | |
9012 | L: linux-nvme@lists.infradead.org | |
b508fc35 CH |
9013 | T: git://git.infradead.org/nvme.git |
9014 | W: http://git.infradead.org/nvme.git | |
a07b4970 CH |
9015 | S: Supported |
9016 | F: drivers/nvme/target/ | |
9017 | ||
b1ad1475 JS |
9018 | NVM EXPRESS FC TRANSPORT DRIVERS |
9019 | M: James Smart <james.smart@broadcom.com> | |
9020 | L: linux-nvme@lists.infradead.org | |
9021 | S: Supported | |
9022 | F: include/linux/nvme-fc.h | |
d6d20012 | 9023 | F: include/linux/nvme-fc-driver.h |
e399441d | 9024 | F: drivers/nvme/host/fc.c |
c5343203 | 9025 | F: drivers/nvme/target/fc.c |
475d0fe7 | 9026 | F: drivers/nvme/target/fcloop.c |
b1ad1475 | 9027 | |
aee4b9bd SK |
9028 | NVMEM FRAMEWORK |
9029 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | |
9030 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
9031 | S: Maintained | |
9032 | F: drivers/nvmem/ | |
9033 | F: Documentation/devicetree/bindings/nvmem/ | |
9034 | F: include/linux/nvmem-consumer.h | |
9035 | F: include/linux/nvmem-provider.h | |
9036 | ||
dece4585 CP |
9037 | NXP-NCI NFC DRIVER |
9038 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> | |
9039 | R: Charles Gorand <charles.gorand@effinnov.com> | |
9040 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
9041 | S: Supported | |
9042 | F: drivers/nfc/nxp-nci | |
9043 | ||
f50d7146 | 9044 | NXP TDA998X DRM DRIVER |
0d7f4f05 | 9045 | M: Russell King <linux@armlinux.org.uk> |
f50d7146 | 9046 | S: Supported |
0d7f4f05 RK |
9047 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel |
9048 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes | |
f50d7146 RK |
9049 | F: drivers/gpu/drm/i2c/tda998x_drv.c |
9050 | F: include/drm/i2c/tda998x.h | |
9051 | ||
fbace43e PR |
9052 | NXP TFA9879 DRIVER |
9053 | M: Peter Rosin <peda@axentia.se> | |
9054 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
9055 | S: Maintained | |
9056 | F: sound/soc/codecs/tfa9879* | |
9057 | ||
442f04c3 JP |
9058 | OBJTOOL |
9059 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
9060 | S: Supported | |
9061 | F: tools/objtool/ | |
9062 | ||
57b6bfcf TL |
9063 | OMAP1 SUPPORT |
9064 | M: Aaro Koskinen <aaro.koskinen@iki.fi> | |
9065 | M: Tony Lindgren <tony@atomide.com> | |
9066 | L: linux-omap@vger.kernel.org | |
9067 | Q: http://patchwork.kernel.org/project/linux-omap/list/ | |
9068 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git | |
9069 | S: Maintained | |
9070 | F: arch/arm/mach-omap1/ | |
9071 | F: arch/arm/plat-omap/ | |
9072 | F: arch/arm/configs/omap1_defconfig | |
9073 | F: drivers/i2c/busses/i2c-omap.c | |
9074 | F: include/linux/i2c-omap.h | |
9075 | ||
9076 | OMAP2+ SUPPORT | |
0e24bdd4 | 9077 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
9078 | L: linux-omap@vger.kernel.org |
9079 | W: http://www.muru.com/linux/omap/ | |
9080 | W: http://linux.omap.com/ | |
8a6e2535 | 9081 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 9082 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 9083 | S: Maintained |
57b6bfcf TL |
9084 | F: arch/arm/mach-omap2/ |
9085 | F: arch/arm/plat-omap/ | |
026da812 | 9086 | F: arch/arm/configs/omap2plus_defconfig |
046d0a37 | 9087 | F: drivers/i2c/busses/i2c-omap.c |
dc68cd11 FB |
9088 | F: drivers/irqchip/irq-omap-intc.c |
9089 | F: drivers/mfd/*omap*.c | |
9090 | F: drivers/mfd/menelaus.c | |
9091 | F: drivers/mfd/palmas.c | |
9092 | F: drivers/mfd/tps65217.c | |
9093 | F: drivers/mfd/tps65218.c | |
9094 | F: drivers/mfd/tps65910.c | |
9095 | F: drivers/mfd/twl-core.[ch] | |
9096 | F: drivers/mfd/twl4030*.c | |
9097 | F: drivers/mfd/twl6030*.c | |
9098 | F: drivers/mfd/twl6040*.c | |
9099 | F: drivers/regulator/palmas-regulator*.c | |
9100 | F: drivers/regulator/pbias-regulator.c | |
9101 | F: drivers/regulator/tps65217-regulator.c | |
9102 | F: drivers/regulator/tps65218-regulator.c | |
9103 | F: drivers/regulator/tps65910-regulator.c | |
9104 | F: drivers/regulator/twl-regulator.c | |
cac28ae6 | 9105 | F: drivers/regulator/twl6030-regulator.c |
046d0a37 | 9106 | F: include/linux/i2c-omap.h |
f5525786 | 9107 | |
50f29fbd | 9108 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 9109 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
9110 | M: Tony Lindgren <tony@atomide.com> |
9111 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 9112 | L: devicetree@vger.kernel.org |
50f29fbd TL |
9113 | S: Maintained |
9114 | F: arch/arm/boot/dts/*omap* | |
9115 | F: arch/arm/boot/dts/*am3* | |
05eb20fa NM |
9116 | F: arch/arm/boot/dts/*am4* |
9117 | F: arch/arm/boot/dts/*am5* | |
9118 | F: arch/arm/boot/dts/*dra7* | |
50f29fbd | 9119 | |
f5525786 | 9120 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 9121 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
9122 | L: linux-omap@vger.kernel.org |
9123 | S: Maintained | |
9124 | F: arch/arm/*omap*/*clock* | |
9125 | ||
9126 | OMAP POWER MANAGEMENT SUPPORT | |
3cf2efd5 | 9127 | M: Kevin Hilman <khilman@kernel.org> |
f5525786 TL |
9128 | L: linux-omap@vger.kernel.org |
9129 | S: Maintained | |
9130 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 9131 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 9132 | |
d21db568 | 9133 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
ff2de822 | 9134 | M: Rajendra Nayak <rnayak@codeaurora.org> |
692ab1f3 PW |
9135 | M: Paul Walmsley <paul@pwsan.com> |
9136 | L: linux-omap@vger.kernel.org | |
9137 | S: Maintained | |
d21db568 | 9138 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 9139 | |
f5525786 | 9140 | OMAP AUDIO SUPPORT |
6c284903 | 9141 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 9142 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
e5747e40 | 9143 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
f5525786 TL |
9144 | L: linux-omap@vger.kernel.org |
9145 | S: Maintained | |
9146 | F: sound/soc/omap/ | |
9147 | ||
18640193 TL |
9148 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
9149 | M: Roger Quadros <rogerq@ti.com> | |
9150 | M: Tony Lindgren <tony@atomide.com> | |
9151 | L: linux-omap@vger.kernel.org | |
9152 | S: Maintained | |
9153 | F: drivers/memory/omap-gpmc.c | |
9154 | F: arch/arm/mach-omap2/*gpmc* | |
9155 | ||
f5525786 | 9156 | OMAP FRAMEBUFFER SUPPORT |
830e6384 | 9157 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 9158 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
9159 | L: linux-omap@vger.kernel.org |
9160 | S: Maintained | |
8a61f013 | 9161 | F: drivers/video/fbdev/omap/ |
f5525786 | 9162 | |
676eec0d | 9163 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 9164 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 9165 | L: linux-omap@vger.kernel.org |
676eec0d | 9166 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 9167 | S: Maintained |
8a61f013 | 9168 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
9169 | F: Documentation/arm/OMAP/DSS |
9170 | ||
8b37fcfc OBC |
9171 | OMAP HARDWARE SPINLOCK SUPPORT |
9172 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
9173 | L: linux-omap@vger.kernel.org | |
9174 | S: Maintained | |
9175 | F: drivers/hwspinlock/omap_hwspinlock.c | |
8b37fcfc | 9176 | |
f5525786 | 9177 | OMAP MMC SUPPORT |
8b58be88 | 9178 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
9179 | L: linux-omap@vger.kernel.org |
9180 | S: Maintained | |
653f41b5 MC |
9181 | F: drivers/mmc/host/omap.c |
9182 | ||
9183 | OMAP HS MMC SUPPORT | |
0a4585c6 | 9184 | L: linux-mmc@vger.kernel.org |
653f41b5 | 9185 | L: linux-omap@vger.kernel.org |
dfa5d196 | 9186 | S: Orphan |
653f41b5 | 9187 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
9188 | |
9189 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 9190 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
9191 | S: Maintained |
9192 | F: drivers/char/hw_random/omap-rng.c | |
9193 | ||
f400c82e | 9194 | OMAP HWMOD SUPPORT |
cdb55ab0 | 9195 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
9196 | M: Paul Walmsley <paul@pwsan.com> |
9197 | L: linux-omap@vger.kernel.org | |
9198 | S: Maintained | |
8fc8b12b | 9199 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e | 9200 | |
8633fb30 PW |
9201 | OMAP HWMOD DATA |
9202 | M: Paul Walmsley <paul@pwsan.com> | |
9203 | L: linux-omap@vger.kernel.org | |
9204 | S: Maintained | |
9205 | F: arch/arm/mach-omap2/omap_hwmod*data* | |
9206 | ||
f400c82e | 9207 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
cdb55ab0 | 9208 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
9209 | L: linux-omap@vger.kernel.org |
9210 | S: Maintained | |
9211 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
9212 | ||
0db83ced | 9213 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
9214 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
9215 | L: linux-media@vger.kernel.org | |
9216 | S: Maintained | |
7eec52db | 9217 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
90d72ac6 | 9218 | F: drivers/media/platform/omap3isp/ |
0db83ced | 9219 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 9220 | |
f5525786 | 9221 | OMAP USB SUPPORT |
f5525786 TL |
9222 | L: linux-usb@vger.kernel.org |
9223 | L: linux-omap@vger.kernel.org | |
3b243519 | 9224 | S: Orphan |
a16fbd65 JP |
9225 | F: drivers/usb/*/*omap* |
9226 | F: arch/arm/*omap*/usb* | |
f5525786 | 9227 | |
6d994710 | 9228 | OMAP GPIO DRIVER |
fe643528 | 9229 | M: Grygorii Strashko <grygorii.strashko@ti.com> |
97215800 | 9230 | M: Santosh Shilimkar <ssantosh@kernel.org> |
3cf2efd5 | 9231 | M: Kevin Hilman <khilman@kernel.org> |
6d994710 KH |
9232 | L: linux-omap@vger.kernel.org |
9233 | S: Maintained | |
fe643528 | 9234 | F: Documentation/devicetree/bindings/gpio/gpio-omap.txt |
6d994710 KH |
9235 | F: drivers/gpio/gpio-omap.c |
9236 | ||
c351e290 MJ |
9237 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
9238 | M: Mark Jackson <mpfj@newflow.co.uk> | |
9239 | L: linux-omap@vger.kernel.org | |
9240 | S: Maintained | |
9241 | F: arch/arm/boot/dts/am335x-nano.dts | |
9242 | ||
0ad122d9 | 9243 | OMFS FILESYSTEM |
8b58be88 | 9244 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
9245 | L: linux-karma-devel@lists.sourceforge.net |
9246 | S: Maintained | |
679655da JP |
9247 | F: Documentation/filesystems/omfs.txt |
9248 | F: fs/omfs/ | |
0ad122d9 | 9249 | |
c1986ee9 | 9250 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 9251 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 9252 | S: Maintained |
679655da JP |
9253 | F: drivers/char/pcmcia/cm4000_cs.c |
9254 | F: include/linux/cm4000_cs.h | |
c117ab84 | 9255 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 9256 | |
77c44ab1 | 9257 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 9258 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 9259 | S: Maintained |
679655da | 9260 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 9261 | |
77d5140f | 9262 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 9263 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 9264 | L: linux-media@vger.kernel.org |
275ffde4 | 9265 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 9266 | S: Maintained |
90d72ac6 | 9267 | F: drivers/media/i2c/ov7670.c |
77d5140f | 9268 | |
431bca73 | 9269 | ONENAND FLASH DRIVER |
8b58be88 | 9270 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
9271 | L: linux-mtd@lists.infradead.org |
9272 | S: Maintained | |
679655da JP |
9273 | F: drivers/mtd/onenand/ |
9274 | F: include/linux/mtd/onenand*.h | |
431bca73 | 9275 | |
1da177e4 | 9276 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 9277 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
9278 | L: osst-users@lists.sourceforge.net |
9279 | L: linux-scsi@vger.kernel.org | |
9280 | S: Maintained | |
f7269cfc JD |
9281 | F: Documentation/scsi/osst.txt |
9282 | F: drivers/scsi/osst.* | |
9283 | F: drivers/scsi/osst_*.h | |
9284 | F: drivers/scsi/st.h | |
1da177e4 | 9285 | |
e2d1d6c0 | 9286 | OPENCORES I2C BUS DRIVER |
8b58be88 | 9287 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 9288 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 9289 | S: Maintained |
679655da JP |
9290 | F: Documentation/i2c/busses/i2c-ocores |
9291 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 9292 | |
860c44c1 | 9293 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5d3ad8a6 | 9294 | M: Rob Herring <robh+dt@kernel.org> |
c8fb70a3 | 9295 | M: Frank Rowand <frowand.list@gmail.com> |
d0fb18c5 | 9296 | L: devicetree@vger.kernel.org |
a7fefe9f | 9297 | W: http://www.devicetree.org/ |
fcdec35e | 9298 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
860c44c1 | 9299 | S: Maintained |
f8828205 | 9300 | F: drivers/of/ |
860c44c1 | 9301 | F: include/linux/of*.h |
f8828205 | 9302 | F: scripts/dtc/ |
860c44c1 | 9303 | |
f8828205 | 9304 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 9305 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 | 9306 | M: Mark Rutland <mark.rutland@arm.com> |
f8828205 | 9307 | L: devicetree@vger.kernel.org |
9f273c24 | 9308 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
fcdec35e | 9309 | Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/ |
f8828205 GL |
9310 | S: Maintained |
9311 | F: Documentation/devicetree/ | |
9312 | F: arch/*/boot/dts/ | |
9313 | F: include/dt-bindings/ | |
9314 | ||
2bb65f56 PA |
9315 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
9316 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> | |
9317 | L: devicetree@vger.kernel.org | |
9318 | S: Maintained | |
9319 | F: Documentation/devicetree/dynamic-resolution-notes.txt | |
9320 | F: Documentation/devicetree/overlay-notes.txt | |
9321 | F: drivers/of/overlay.c | |
9322 | F: drivers/of/resolver.c | |
9323 | ||
19f9d392 JB |
9324 | OPENRISC ARCHITECTURE |
9325 | M: Jonas Bonn <jonas@southpole.se> | |
d01e1f35 SH |
9326 | M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> |
9327 | M: Stafford Horne <shorne@gmail.com> | |
9dfc96d7 | 9328 | T: git git://github.com/openrisc/linux.git |
d01e1f35 SH |
9329 | L: openrisc@lists.librecores.org |
9330 | W: http://openrisc.io | |
19f9d392 | 9331 | S: Maintained |
14430813 | 9332 | F: arch/openrisc/ |
19f9d392 | 9333 | |
ccb1352e | 9334 | OPENVSWITCH |
4f337ed5 | 9335 | M: Pravin Shelar <pshelar@nicira.com> |
b422da7c | 9336 | L: netdev@vger.kernel.org |
ccb1352e JG |
9337 | L: dev@openvswitch.org |
9338 | W: http://openvswitch.org | |
ccb1352e JG |
9339 | S: Maintained |
9340 | F: net/openvswitch/ | |
b422da7c | 9341 | F: include/uapi/linux/openvswitch.h |
ccb1352e | 9342 | |
875fa6fb VK |
9343 | OPERATING PERFORMANCE POINTS (OPP) |
9344 | M: Viresh Kumar <vireshk@kernel.org> | |
9345 | M: Nishanth Menon <nm@ti.com> | |
9346 | M: Stephen Boyd <sboyd@codeaurora.org> | |
9347 | L: linux-pm@vger.kernel.org | |
9348 | S: Maintained | |
9349 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git | |
9350 | F: drivers/base/power/opp/ | |
9351 | F: include/linux/pm_opp.h | |
9352 | F: Documentation/power/opp.txt | |
9353 | F: Documentation/devicetree/bindings/opp/ | |
9354 | ||
af39917d CL |
9355 | OPL4 DRIVER |
9356 | M: Clemens Ladisch <clemens@ladisch.de> | |
9357 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
9358 | T: git git://git.alsa-project.org/alsa-kernel.git | |
9359 | S: Maintained | |
9360 | F: sound/drivers/opl4/ | |
9361 | ||
1da177e4 | 9362 | OPROFILE |
4cf7e718 | 9363 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
9364 | L: oprofile-list@lists.sf.net |
9365 | S: Maintained | |
81c4a8a6 | 9366 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
9367 | F: arch/*/oprofile/ |
9368 | F: drivers/oprofile/ | |
9369 | F: include/linux/oprofile.h | |
1da177e4 | 9370 | |
e2d1d6c0 | 9371 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
0a966fa8 | 9372 | M: Mark Fasheh <mfasheh@versity.com> |
d6351db2 | 9373 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 | 9374 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
01945fa2 | 9375 | W: http://ocfs2.wiki.kernel.org |
e2d1d6c0 | 9376 | S: Supported |
679655da JP |
9377 | F: Documentation/filesystems/ocfs2.txt |
9378 | F: Documentation/filesystems/dlmfs.txt | |
9379 | F: fs/ocfs2/ | |
e2d1d6c0 | 9380 | |
1da177e4 | 9381 | ORINOCO DRIVER |
724c6b35 | 9382 | L: linux-wireless@vger.kernel.org |
491b26b4 | 9383 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 9384 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 9385 | S: Orphan |
2be45b66 | 9386 | F: drivers/net/wireless/intersil/orinoco/ |
1da177e4 | 9387 | |
42c55aa8 | 9388 | OSD LIBRARY and FILESYSTEM |
fadc0752 | 9389 | M: Boaz Harrosh <ooo@electrozaur.com> |
f1f6630b | 9390 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
9391 | L: osd-dev@open-osd.org |
9392 | W: http://open-osd.org | |
54e5881d | 9393 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 9394 | S: Maintained |
42c55aa8 | 9395 | F: drivers/scsi/osd/ |
6b6f0b6c | 9396 | F: include/scsi/osd_* |
42c55aa8 | 9397 | F: fs/exofs/ |
68274794 | 9398 | |
ef94b186 | 9399 | OVERLAY FILESYSTEM |
7c37fbda | 9400 | M: Miklos Szeredi <miklos@szeredi.hu> |
1d113735 MS |
9401 | L: linux-unionfs@vger.kernel.org |
9402 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git | |
7c37fbda | 9403 | S: Supported |
1d113735 | 9404 | F: fs/overlayfs/ |
7c37fbda NB |
9405 | F: Documentation/filesystems/overlayfs.txt |
9406 | ||
85096169 MM |
9407 | ORANGEFS FILESYSTEM |
9408 | M: Mike Marshall <hubcap@omnibond.com> | |
b39c3cf4 | 9409 | L: pvfs2-developers@beowulf-underground.org (subscribers-only) |
85096169 MM |
9410 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git |
9411 | S: Supported | |
9412 | F: fs/orangefs/ | |
9413 | F: Documentation/filesystems/orangefs.txt | |
9414 | ||
e2d1d6c0 | 9415 | P54 WIRELESS DRIVER |
084cb0fe | 9416 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 9417 | L: linux-wireless@vger.kernel.org |
084cb0fe | 9418 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 9419 | S: Maintained |
d3466830 | 9420 | F: drivers/net/wireless/intersil/p54/ |
e2d1d6c0 | 9421 | |
f5cd7872 | 9422 | PA SEMI ETHERNET DRIVER |
f5cd7872 | 9423 | L: netdev@vger.kernel.org |
56a5b8da | 9424 | S: Orphan |
ded19add | 9425 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 9426 | |
beb58aa3 | 9427 | PA SEMI SMBUS DRIVER |
846557d3 | 9428 | L: linux-i2c@vger.kernel.org |
56a5b8da | 9429 | S: Orphan |
679655da | 9430 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 9431 | |
48fc267e SK |
9432 | PADATA PARALLEL EXECUTION MECHANISM |
9433 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
9434 | L: linux-crypto@vger.kernel.org |
9435 | S: Maintained | |
9436 | F: kernel/padata.c | |
9437 | F: include/linux/padata.h | |
9438 | F: Documentation/padata.txt | |
9439 | ||
709ee531 | 9440 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 9441 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 9442 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 9443 | S: Maintained |
679655da | 9444 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 9445 | |
368dd5ac | 9446 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 | 9447 | M: David Howells <dhowells@redhat.com> |
4fa97181 DH |
9448 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
9449 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
9450 | S: Maintained | |
679655da JP |
9451 | F: Documentation/mn10300/ |
9452 | F: arch/mn10300/ | |
4fa97181 | 9453 | |
305b37bd KS |
9454 | PARALLEL LCD/KEYPAD PANEL DRIVER |
9455 | M: Willy Tarreau <willy@haproxy.com> | |
9456 | M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com> | |
9457 | S: Odd Fixes | |
9458 | F: Documentation/misc-devices/lcd-panel-cgram.txt | |
9459 | F: drivers/misc/panel.c | |
9460 | ||
64dfff03 SM |
9461 | PARALLEL PORT SUBSYSTEM |
9462 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
80567564 | 9463 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
3dd1a329 | 9464 | L: linux-parport@lists.infradead.org (subscribers-only) |
64dfff03 | 9465 | S: Maintained |
679655da JP |
9466 | F: drivers/parport/ |
9467 | F: include/linux/parport*.h | |
9468 | F: drivers/char/ppdev.c | |
c117ab84 | 9469 | F: include/uapi/linux/ppdev.h |
64dfff03 | 9470 | F: Documentation/parport*.txt |
1da177e4 | 9471 | |
4cdf6bc2 | 9472 | PARAVIRT_OPS INTERFACE |
d633180c | 9473 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
9474 | M: Chris Wright <chrisw@sous-sol.org> |
9475 | M: Alok Kataria <akataria@vmware.com> | |
9476 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 9477 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 9478 | S: Supported |
a2e19991 | 9479 | F: Documentation/virtual/paravirt_ops.txt |
679655da JP |
9480 | F: arch/*/kernel/paravirt* |
9481 | F: arch/*/include/asm/paravirt.h | |
47ae4b05 | 9482 | F: include/linux/hypervisor.h |
4cdf6bc2 | 9483 | |
e2d1d6c0 | 9484 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 9485 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 | 9486 | L: linux-parport@lists.infradead.org (subscribers-only) |
e2d1d6c0 | 9487 | S: Maintained |
679655da JP |
9488 | F: Documentation/blockdev/paride.txt |
9489 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
9490 | |
9491 | PARISC ARCHITECTURE | |
b8828770 | 9492 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 9493 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
9494 | L: linux-parisc@vger.kernel.org |
9495 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 9496 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 9497 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 9498 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 9499 | S: Maintained |
679655da | 9500 | F: arch/parisc/ |
2b6bac9e | 9501 | F: Documentation/parisc/ |
679655da | 9502 | F: drivers/parisc/ |
2b6bac9e HD |
9503 | F: drivers/char/agp/parisc-agp.c |
9504 | F: drivers/input/serio/gscps2.c | |
9505 | F: drivers/parport/parport_gsc.* | |
9506 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 9507 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
9508 | F: drivers/video/console/sti* |
9509 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 9510 | |
44091d29 JP |
9511 | PARMAN |
9512 | M: Jiri Pirko <jiri@mellanox.com> | |
9513 | L: netdev@vger.kernel.org | |
9514 | S: Supported | |
9515 | F: lib/parman.c | |
9516 | F: lib/test_parman.c | |
9517 | F: include/linux/parman.h | |
9518 | ||
1662d32c | 9519 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 9520 | M: Jim Cromie <jim.cromie@gmail.com> |
968ce1b1 | 9521 | L: linux-hwmon@vger.kernel.org |
1662d32c | 9522 | S: Maintained |
679655da JP |
9523 | F: Documentation/hwmon/pc87360 |
9524 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
9525 | |
9526 | PC8736x GPIO DRIVER | |
8b58be88 | 9527 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9528 | S: Maintained |
679655da | 9529 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 9530 | |
1ad107fd | 9531 | PC87427 HARDWARE MONITORING DRIVER |
d8130624 | 9532 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 9533 | L: linux-hwmon@vger.kernel.org |
1ad107fd JD |
9534 | S: Maintained |
9535 | F: Documentation/hwmon/pc87427 | |
9536 | F: drivers/hwmon/pc87427.c | |
9537 | ||
b26e0ed4 | 9538 | PCA9532 LED DRIVER |
8b58be88 | 9539 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 9540 | S: Maintained |
d5ca6918 JP |
9541 | F: drivers/leds/leds-pca9532.c |
9542 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 9543 | |
5ce914a8 | 9544 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 9545 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
9546 | L: linux-i2c@vger.kernel.org |
9547 | S: Maintained | |
b4f0b74e | 9548 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 9549 | |
3971dae5 | 9550 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 9551 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
9552 | S: Maintained |
9553 | F: drivers/firmware/pcdp.* | |
9554 | ||
065c6359 | 9555 | PCI ERROR RECOVERY |
6305902c | 9556 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 9557 | L: linux-pci@vger.kernel.org |
065c6359 | 9558 | S: Supported |
679655da | 9559 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 9560 | |
78c1cffd RC |
9561 | PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC |
9562 | M: Russell Currey <ruscur@russell.cc> | |
9563 | L: linuxppc-dev@lists.ozlabs.org | |
9564 | S: Supported | |
9565 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
9566 | F: arch/powerpc/kernel/eeh*.c | |
9567 | F: arch/powerpc/platforms/*/eeh*.c | |
9568 | F: arch/powerpc/include/*/eeh*.h | |
9569 | ||
1da177e4 | 9570 | PCI SUBSYSTEM |
5ac3a6d2 | 9571 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 9572 | L: linux-pci@vger.kernel.org |
99662dd1 | 9573 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 9574 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 9575 | S: Supported |
92a1fe2e | 9576 | F: Documentation/devicetree/bindings/pci/ |
679655da JP |
9577 | F: Documentation/PCI/ |
9578 | F: drivers/pci/ | |
9579 | F: include/linux/pci* | |
6b49ee49 | 9580 | F: arch/x86/pci/ |
cad01f91 | 9581 | F: arch/x86/kernel/quirks.c |
1da177e4 | 9582 | |
eaa6111b LFT |
9583 | PCI DRIVER FOR ALTERA PCIE IP |
9584 | M: Ley Foon Tan <lftan@altera.com> | |
9585 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
9586 | L: linux-pci@vger.kernel.org | |
9587 | S: Supported | |
9588 | F: Documentation/devicetree/bindings/pci/altera-pcie.txt | |
9589 | F: drivers/pci/host/pcie-altera.c | |
9590 | ||
b7e78170 RH |
9591 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
9592 | M: Rob Herring <robh@kernel.org> | |
9593 | L: linux-pci@vger.kernel.org | |
9594 | L: linux-arm-kernel@lists.infradead.org | |
9595 | S: Maintained | |
9596 | F: Documentation/devicetree/bindings/pci/versatile.txt | |
9597 | F: drivers/pci/host/pci-versatile.c | |
9598 | ||
3dc9d38c TP |
9599 | PCI DRIVER FOR ARMADA 8K |
9600 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
9601 | L: linux-pci@vger.kernel.org | |
9602 | L: linux-arm-kernel@lists.infradead.org | |
9603 | S: Maintained | |
9604 | F: Documentation/devicetree/bindings/pci/pci-armada8k.txt | |
950bf638 | 9605 | F: drivers/pci/dwc/pcie-armada8k.c |
3dc9d38c | 9606 | |
5f6b6ccd TI |
9607 | PCI DRIVER FOR APPLIEDMICRO XGENE |
9608 | M: Tanmay Inamdar <tinamdar@apm.com> | |
9609 | L: linux-pci@vger.kernel.org | |
9610 | L: linux-arm-kernel@lists.infradead.org | |
9611 | S: Maintained | |
9612 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt | |
9613 | F: drivers/pci/host/pci-xgene.c | |
9614 | ||
62d0ff83 ML |
9615 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
9616 | M: Minghuan Lian <minghuan.Lian@freescale.com> | |
9617 | M: Mingkai Hu <mingkai.hu@freescale.com> | |
9618 | M: Roy Zang <tie-fei.zang@freescale.com> | |
9619 | L: linuxppc-dev@lists.ozlabs.org | |
9620 | L: linux-pci@vger.kernel.org | |
9621 | L: linux-arm-kernel@lists.infradead.org | |
9622 | S: Maintained | |
950bf638 | 9623 | F: drivers/pci/dwc/*layerscape* |
62d0ff83 | 9624 | |
f0b75693 | 9625 | PCI DRIVER FOR IMX6 |
286fbaef | 9626 | M: Richard Zhu <hongxing.zhu@nxp.com> |
1ba55f55 | 9627 | M: Lucas Stach <l.stach@pengutronix.de> |
f0b75693 BH |
9628 | L: linux-pci@vger.kernel.org |
9629 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9630 | S: Maintained | |
12e46064 | 9631 | F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt |
950bf638 | 9632 | F: drivers/pci/dwc/*imx6* |
f0b75693 | 9633 | |
0c4ffcfe MK |
9634 | PCI DRIVER FOR TI KEYSTONE |
9635 | M: Murali Karicheri <m-karicheri2@ti.com> | |
9636 | L: linux-pci@vger.kernel.org | |
9637 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9638 | S: Maintained | |
950bf638 | 9639 | F: drivers/pci/dwc/*keystone* |
0c4ffcfe | 9640 | |
f0b75693 BH |
9641 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
9642 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
9643 | M: Jason Cooper <jason@lakedaemon.net> | |
9644 | L: linux-pci@vger.kernel.org | |
9645 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9646 | S: Maintained | |
9647 | F: drivers/pci/host/*mvebu* | |
9648 | ||
8c39d710 TP |
9649 | PCI DRIVER FOR AARDVARK (Marvell Armada 3700) |
9650 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
9651 | L: linux-pci@vger.kernel.org | |
9652 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9653 | S: Maintained | |
441106d9 | 9654 | F: Documentation/devicetree/bindings/pci/aardvark-pci.txt |
8c39d710 TP |
9655 | F: drivers/pci/host/pci-aardvark.c |
9656 | ||
0447cfd7 TR |
9657 | PCI DRIVER FOR NVIDIA TEGRA |
9658 | M: Thierry Reding <thierry.reding@gmail.com> | |
9659 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 9660 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
9661 | S: Supported |
9662 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
9663 | F: drivers/pci/host/pci-tegra.c | |
9664 | ||
47ff3de9 KVA |
9665 | PCI DRIVER FOR TI DRA7XX |
9666 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
9667 | L: linux-omap@vger.kernel.org | |
9668 | L: linux-pci@vger.kernel.org | |
9669 | S: Supported | |
9670 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
950bf638 | 9671 | F: drivers/pci/dwc/pci-dra7xx.c |
47ff3de9 | 9672 | |
f0b75693 BH |
9673 | PCI DRIVER FOR RENESAS R-CAR |
9674 | M: Simon Horman <horms@verge.net.au> | |
9675 | L: linux-pci@vger.kernel.org | |
4a121096 | 9676 | L: linux-renesas-soc@vger.kernel.org |
f0b75693 BH |
9677 | S: Maintained |
9678 | F: drivers/pci/host/*rcar* | |
9679 | ||
4af82255 | 9680 | PCI DRIVER FOR SAMSUNG EXYNOS |
b7701755 | 9681 | M: Jingoo Han <jingoohan1@gmail.com> |
4af82255 | 9682 | L: linux-pci@vger.kernel.org |
f0b75693 BH |
9683 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9684 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 | 9685 | S: Maintained |
950bf638 | 9686 | F: drivers/pci/dwc/pci-exynos.c |
4af82255 | 9687 | |
f0b75693 | 9688 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
b7701755 | 9689 | M: Jingoo Han <jingoohan1@gmail.com> |
fc2480f9 | 9690 | M: Joao Pinto <Joao.Pinto@synopsys.com> |
5a3aa2a8 JP |
9691 | L: linux-pci@vger.kernel.org |
9692 | S: Maintained | |
9693 | F: Documentation/devicetree/bindings/pci/designware-pcie.txt | |
950bf638 | 9694 | F: drivers/pci/dwc/*designware* |
5a3aa2a8 | 9695 | |
cf28855b WD |
9696 | PCI DRIVER FOR GENERIC OF HOSTS |
9697 | M: Will Deacon <will.deacon@arm.com> | |
9698 | L: linux-pci@vger.kernel.org | |
9699 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9700 | S: Maintained | |
9701 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
4e64dbe2 | 9702 | F: drivers/pci/host/pci-host-common.c |
cf28855b WD |
9703 | F: drivers/pci/host/pci-host-generic.c |
9704 | ||
185a383a KB |
9705 | PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD) |
9706 | M: Keith Busch <keith.busch@intel.com> | |
9707 | L: linux-pci@vger.kernel.org | |
9708 | S: Supported | |
bc79c985 | 9709 | F: drivers/pci/host/vmd.c |
185a383a | 9710 | |
51b66a6c | 9711 | PCIE DRIVER FOR ST SPEAR13XX |
110baab1 | 9712 | M: Pratyush Anand <pratyush.anand@gmail.com> |
51b66a6c | 9713 | L: linux-pci@vger.kernel.org |
110baab1 | 9714 | S: Maintained |
950bf638 | 9715 | F: drivers/pci/dwc/*spear* |
51b66a6c | 9716 | |
af1169b4 LFT |
9717 | PCI MSI DRIVER FOR ALTERA MSI IP |
9718 | M: Ley Foon Tan <lftan@altera.com> | |
9719 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
9720 | L: linux-pci@vger.kernel.org | |
9721 | S: Supported | |
9722 | F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt | |
9723 | F: drivers/pci/host/pcie-altera-msi.c | |
51b66a6c | 9724 | |
dcd19de3 DD |
9725 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
9726 | M: Duc Dang <dhdang@apm.com> | |
9727 | L: linux-pci@vger.kernel.org | |
9728 | L: linux-arm-kernel@lists.infradead.org | |
9729 | S: Maintained | |
9730 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt | |
9731 | F: drivers/pci/host/pci-xgene-msi.c | |
9732 | ||
a3cbfae1 NC |
9733 | PCIE DRIVER FOR AXIS ARTPEC |
9734 | M: Niklas Cassel <niklas.cassel@axis.com> | |
9735 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9736 | L: linux-arm-kernel@axis.com | |
9737 | L: linux-pci@vger.kernel.org | |
9738 | S: Maintained | |
9739 | F: Documentation/devicetree/bindings/pci/axis,artpec* | |
950bf638 | 9740 | F: drivers/pci/dwc/*artpec* |
a3cbfae1 | 9741 | |
500a1d9a ZW |
9742 | PCIE DRIVER FOR HISILICON |
9743 | M: Zhou Wang <wangzhou1@hisilicon.com> | |
5930fe4e | 9744 | M: Gabriele Paoloni <gabriele.paoloni@huawei.com> |
500a1d9a ZW |
9745 | L: linux-pci@vger.kernel.org |
9746 | S: Maintained | |
9747 | F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt | |
950bf638 | 9748 | F: drivers/pci/dwc/pcie-hisi.c |
500a1d9a | 9749 | |
e77f847d SL |
9750 | PCIE DRIVER FOR ROCKCHIP |
9751 | M: Shawn Lin <shawn.lin@rock-chips.com> | |
9752 | M: Wenrui Li <wenrui.li@rock-chips.com> | |
9753 | L: linux-pci@vger.kernel.org | |
9754 | L: linux-rockchip@lists.infradead.org | |
9755 | S: Maintained | |
9756 | F: Documentation/devicetree/bindings/pci/rockchip-pcie.txt | |
9757 | F: drivers/pci/host/pcie-rockchip.c | |
9758 | ||
82a82383 SV |
9759 | PCIE DRIVER FOR QUALCOMM MSM |
9760 | M: Stanimir Varbanov <svarbanov@mm-sol.com> | |
9761 | L: linux-pci@vger.kernel.org | |
9762 | L: linux-arm-msm@vger.kernel.org | |
9763 | S: Maintained | |
950bf638 | 9764 | F: drivers/pci/dwc/*qcom* |
82a82383 | 9765 | |
f12b76e5 DD |
9766 | PCIE DRIVER FOR CAVIUM THUNDERX |
9767 | M: David Daney <david.daney@cavium.com> | |
9768 | L: linux-pci@vger.kernel.org | |
9769 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9770 | S: Supported | |
9771 | F: Documentation/devicetree/bindings/pci/pci-thunder-* | |
9772 | F: drivers/pci/host/pci-thunder-* | |
9773 | ||
1da177e4 | 9774 | PCMCIA SUBSYSTEM |
4230dfc9 | 9775 | P: Linux PCMCIA Team |
f5df5881 | 9776 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 9777 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
9f273c24 | 9778 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git |
4230dfc9 | 9779 | S: Maintained |
679655da | 9780 | F: Documentation/pcmcia/ |
a67cd548 | 9781 | F: tools/pcmcia/ |
679655da JP |
9782 | F: drivers/pcmcia/ |
9783 | F: include/pcmcia/ | |
1da177e4 LT |
9784 | |
9785 | PCNET32 NETWORK DRIVER | |
227fb925 | 9786 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 9787 | L: netdev@vger.kernel.org |
1da177e4 | 9788 | S: Maintained |
b955f6ca | 9789 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 9790 | |
48fc267e SK |
9791 | PCRYPT PARALLEL CRYPTO ENGINE |
9792 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
9793 | L: linux-crypto@vger.kernel.org | |
9794 | S: Maintained | |
9795 | F: crypto/pcrypt.c | |
9796 | F: include/crypto/pcrypt.h | |
9797 | ||
e72df0b8 TH |
9798 | PER-CPU MEMORY ALLOCATOR |
9799 | M: Tejun Heo <tj@kernel.org> | |
93e205a7 | 9800 | M: Christoph Lameter <cl@linux.com> |
e72df0b8 TH |
9801 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
9802 | S: Maintained | |
9803 | F: include/linux/percpu*.h | |
9804 | F: mm/percpu*.c | |
9805 | F: arch/*/include/asm/percpu.h | |
9806 | ||
ad4ecbcb | 9807 | PER-TASK DELAY ACCOUNTING |
185e595f | 9808 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 9809 | S: Maintained |
679655da JP |
9810 | F: include/linux/delayacct.h |
9811 | F: kernel/delayacct.c | |
ad4ecbcb | 9812 | |
57c0c15b | 9813 | PERFORMANCE EVENTS SUBSYSTEM |
daecbd26 | 9814 | M: Peter Zijlstra <peterz@infradead.org> |
dd9b238c | 9815 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 9816 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
a54d690e | 9817 | R: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
981c3a4f | 9818 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9819 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 9820 | S: Supported |
d53e8365 | 9821 | F: kernel/events/* |
a003236c | 9822 | F: include/linux/perf_event.h |
c117ab84 | 9823 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
9824 | F: arch/*/kernel/perf_event*.c |
9825 | F: arch/*/kernel/*/perf_event*.c | |
9826 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 9827 | F: arch/*/include/asm/perf_event.h |
a003236c | 9828 | F: arch/*/kernel/perf_callchain.c |
b0a434fb | 9829 | F: arch/*/events/* |
a003236c | 9830 | F: tools/perf/ |
6c0b3244 | 9831 | |
dd49d0f5 | 9832 | PERSONALITY HANDLING |
8b58be88 | 9833 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
9834 | L: linux-abi-devel@lists.sourceforge.net |
9835 | S: Maintained | |
679655da | 9836 | F: include/linux/personality.h |
c117ab84 | 9837 | F: include/uapi/linux/personality.h |
dd49d0f5 | 9838 | |
838e7a03 | 9839 | PHONET PROTOCOL |
2a06b40f | 9840 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
9841 | S: Supported |
9842 | F: Documentation/networking/phonet.txt | |
9843 | F: include/linux/phonet.h | |
9844 | F: include/net/phonet/ | |
c117ab84 | 9845 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
9846 | F: net/phonet/ |
9847 | ||
1da177e4 | 9848 | PHRAM MTD DRIVER |
8b58be88 | 9849 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
9850 | L: linux-mtd@lists.infradead.org |
9851 | S: Maintained | |
679655da | 9852 | F: drivers/mtd/devices/phram.c |
1da177e4 | 9853 | |
efdbb10e BP |
9854 | PICOLCD HID DRIVER |
9855 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
9856 | L: linux-input@vger.kernel.org | |
9857 | S: Maintained | |
9858 | F: drivers/hid/hid-picolcd* | |
9859 | ||
a53bfa07 JI |
9860 | PICOXCELL SUPPORT |
9861 | M: Jamie Iles <jamie@jamieiles.com> | |
9862 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9863 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
9864 | S: Supported | |
b8733987 | 9865 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 9866 | F: arch/arm/mach-picoxcell/ |
b8733987 | 9867 | F: drivers/crypto/picoxcell* |
a53bfa07 | 9868 | |
2744e8af LW |
9869 | PIN CONTROL SUBSYSTEM |
9870 | M: Linus Walleij <linus.walleij@linaro.org> | |
c11f042b | 9871 | L: linux-gpio@vger.kernel.org |
dbe752a3 | 9872 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
2744e8af | 9873 | S: Maintained |
9feeed94 | 9874 | F: Documentation/devicetree/bindings/pinctrl/ |
fefb6245 | 9875 | F: Documentation/pinctrl.txt |
07f29ba6 | 9876 | F: drivers/pinctrl/ |
8e406fe4 | 9877 | F: include/linux/pinctrl/ |
2744e8af | 9878 | |
2201bbb8 JCPV |
9879 | PIN CONTROLLER - ATMEL AT91 |
9880 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
9881 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9882 | S: Maintained | |
c654b6bf | 9883 | F: drivers/pinctrl/pinctrl-at91.* |
2201bbb8 | 9884 | |
33d3690c | 9885 | PIN CONTROLLER - ATMEL AT91 PIO4 |
420a3879 | 9886 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
33d3690c LD |
9887 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9888 | L: linux-gpio@vger.kernel.org | |
9889 | S: Supported | |
9890 | F: drivers/pinctrl/pinctrl-at91-pio4.* | |
9891 | ||
cbd1b652 MW |
9892 | PIN CONTROLLER - INTEL |
9893 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
9894 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
9895 | S: Maintained | |
9896 | F: drivers/pinctrl/intel/ | |
2201bbb8 | 9897 | |
9963b536 LP |
9898 | PIN CONTROLLER - RENESAS |
9899 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1a4ca6dd | 9900 | M: Geert Uytterhoeven <geert+renesas@glider.be> |
4a121096 | 9901 | L: linux-renesas-soc@vger.kernel.org |
9963b536 LP |
9902 | S: Maintained |
9903 | F: drivers/pinctrl/sh-pfc/ | |
9904 | ||
b75e60d6 | 9905 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 9906 | M: Tomasz Figa <tomasz.figa@gmail.com> |
326dce07 | 9907 | M: Krzysztof Kozlowski <krzk@kernel.org> |
44b03c10 | 9908 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
b75e60d6 DA |
9909 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9910 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9911 | S: Maintained | |
9b5b33f6 | 9912 | F: drivers/pinctrl/samsung/ |
5db7e3bb KK |
9913 | F: include/dt-bindings/pinctrl/samsung.h |
9914 | F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt | |
b75e60d6 | 9915 | |
13cbd906 TL |
9916 | PIN CONTROLLER - SINGLE |
9917 | M: Tony Lindgren <tony@atomide.com> | |
9918 | M: Haojian Zhuang <haojian.zhuang@linaro.org> | |
9919 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9920 | L: linux-omap@vger.kernel.org | |
9921 | S: Maintained | |
9922 | F: drivers/pinctrl/pinctrl-single.c | |
9923 | ||
deda8287 | 9924 | PIN CONTROLLER - ST SPEAR |
da89947b | 9925 | M: Viresh Kumar <vireshk@kernel.org> |
deda8287 VK |
9926 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9927 | W: http://www.st.com/spear | |
9928 | S: Maintained | |
8e406fe4 | 9929 | F: drivers/pinctrl/spear/ |
deda8287 | 9930 | |
11a1cf34 JH |
9931 | PISTACHIO SOC SUPPORT |
9932 | M: James Hartley <james.hartley@imgtec.com> | |
9933 | M: Ionela Voinescu <ionela.voinescu@imgtec.com> | |
9934 | L: linux-mips@linux-mips.org | |
9935 | S: Maintained | |
9936 | F: arch/mips/pistachio/ | |
9937 | F: arch/mips/include/asm/mach-pistachio/ | |
d774a589 | 9938 | F: arch/mips/boot/dts/img/pistachio* |
11a1cf34 JH |
9939 | F: arch/mips/configs/pistachio*_defconfig |
9940 | ||
249a6771 | 9941 | PKTCDVD DRIVER |
5a8b187c JA |
9942 | S: Orphan |
9943 | M: linux-block@vger.kernel.org | |
679655da JP |
9944 | F: drivers/block/pktcdvd.c |
9945 | F: include/linux/pktcdvd.h | |
c117ab84 | 9946 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 9947 | |
b31d8273 G |
9948 | PKUNITY SOC DRIVERS |
9949 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
9950 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
9951 | S: Maintained | |
ceebf4d5 | 9952 | T: git git://github.com/gxt/linux.git |
b31d8273 | 9953 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 9954 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 9955 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 9956 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 9957 | |
9d2ecfb7 | 9958 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 9959 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
9960 | L: linux-hwmon@vger.kernel.org |
9961 | W: http://hwmon.wiki.kernel.org/ | |
9d2ecfb7 GR |
9962 | W: http://www.roeck-us.net/linux/drivers/ |
9963 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
9964 | S: Maintained | |
9965 | F: Documentation/hwmon/pmbus | |
9966 | F: drivers/hwmon/pmbus/ | |
9967 | F: include/linux/i2c/pmbus.h | |
9968 | ||
89a36810 | 9969 | PMC SIERRA MaxRAID DRIVER |
89a36810 AR |
9970 | L: linux-scsi@vger.kernel.org |
9971 | W: http://www.pmc-sierra.com/ | |
3cdea4d7 | 9972 | S: Orphan |
89a36810 AR |
9973 | F: drivers/scsi/pmcraid.* |
9974 | ||
dbf9bfe6 | 9975 | PMC SIERRA PM8001 DRIVER |
d32477e2 | 9976 | M: Jack Wang <jinpu.wang@profitbricks.com> |
dbf9bfe6 | 9977 | M: lindar_liu@usish.com |
f5a7b525 | 9978 | L: pmchba@pmcs.com |
dbf9bfe6 | 9979 | L: linux-scsi@vger.kernel.org |
9980 | S: Supported | |
9981 | F: drivers/scsi/pm8001/ | |
9982 | ||
1da177e4 | 9983 | POSIX CLOCKS and TIMERS |
8b58be88 | 9984 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 9985 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9986 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 9987 | S: Maintained |
679655da JP |
9988 | F: fs/timerfd.c |
9989 | F: include/linux/timer* | |
5cee9645 | 9990 | F: kernel/time/*timer* |
1da177e4 | 9991 | |
7b06a6d7 RW |
9992 | POWER MANAGEMENT CORE |
9993 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
9994 | L: linux-pm@vger.kernel.org | |
9995 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
68656443 | 9996 | B: https://bugzilla.kernel.org |
7b06a6d7 RW |
9997 | S: Supported |
9998 | F: drivers/base/power/ | |
9999 | F: include/linux/pm.h | |
10000 | F: include/linux/pm_* | |
10001 | F: include/linux/powercap.h | |
10002 | F: drivers/powercap/ | |
10003 | ||
3be86148 | 10004 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 10005 | M: Sebastian Reichel <sre@kernel.org> |
ad8464a2 | 10006 | L: linux-pm@vger.kernel.org |
58db9505 | 10007 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git |
3be86148 | 10008 | S: Maintained |
f3332532 | 10009 | F: Documentation/devicetree/bindings/power/supply/ |
679655da | 10010 | F: include/linux/power_supply.h |
8c0984e5 | 10011 | F: drivers/power/supply/ |
3be86148 | 10012 | |
514f161a MR |
10013 | POWER STATE COORDINATION INTERFACE (PSCI) |
10014 | M: Mark Rutland <mark.rutland@arm.com> | |
10015 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
10016 | L: linux-arm-kernel@lists.infradead.org | |
10017 | S: Maintained | |
32d53d1b | 10018 | F: drivers/firmware/psci*.c |
514f161a MR |
10019 | F: include/linux/psci.h |
10020 | F: include/uapi/linux/psci.h | |
10021 | ||
43a1dd9b SJS |
10022 | POWERNV OPERATOR PANEL LCD DISPLAY DRIVER |
10023 | M: Suraj Jitindar Singh <sjitindarsingh@gmail.com> | |
10024 | L: linuxppc-dev@lists.ozlabs.org | |
10025 | S: Maintained | |
10026 | F: drivers/char/powernv-op-panel.c | |
10027 | ||
1da177e4 | 10028 | PNP SUPPORT |
9c3646d1 | 10029 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
1da177e4 | 10030 | S: Maintained |
679655da | 10031 | F: drivers/pnp/ |
1da177e4 LT |
10032 | |
10033 | PPP PROTOCOL DRIVERS AND COMPRESSORS | |
8b58be88 | 10034 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
10035 | L: linux-ppp@vger.kernel.org |
10036 | S: Maintained | |
224cf5ad | 10037 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
10038 | |
10039 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 10040 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 10041 | S: Maintained |
679655da | 10042 | F: net/atm/pppoatm.c |
c117ab84 | 10043 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
10044 | |
10045 | PPP OVER ETHERNET | |
8b58be88 | 10046 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 10047 | S: Maintained |
224cf5ad JK |
10048 | F: drivers/net/ppp/pppoe.c |
10049 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 10050 | |
a6d2370b | 10051 | PPP OVER L2TP |
8b58be88 | 10052 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 10053 | S: Maintained |
90ca28d1 | 10054 | F: net/l2tp/l2tp_ppp.c |
679655da | 10055 | F: include/linux/if_pppol2tp.h |
c117ab84 | 10056 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 10057 | |
eae9d2ba | 10058 | PPS SUPPORT |
8b58be88 | 10059 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
10060 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
10061 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
10062 | S: Maintained | |
cabaaf41 JP |
10063 | F: Documentation/pps/ |
10064 | F: drivers/pps/ | |
10065 | F: include/linux/pps*.h | |
eae9d2ba | 10066 | |
71a6d0af HW |
10067 | PPTP DRIVER |
10068 | M: Dmitry Kozlov <xeb@mail.ru> | |
10069 | L: netdev@vger.kernel.org | |
10070 | S: Maintained | |
224cf5ad | 10071 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
10072 | W: http://sourceforge.net/projects/accel-pptp |
10073 | ||
1da177e4 | 10074 | PREEMPTIBLE KERNEL |
8b58be88 | 10075 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
10076 | L: kpreempt-tech@lists.sourceforge.net |
10077 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
10078 | S: Supported | |
679655da JP |
10079 | F: Documentation/preempt-locking.txt |
10080 | F: include/linux/preempt.h | |
1da177e4 | 10081 | |
548cf34b PM |
10082 | PRINTK |
10083 | M: Petr Mladek <pmladek@suse.com> | |
10084 | M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com> | |
10085 | R: Steven Rostedt <rostedt@goodmis.org> | |
10086 | S: Maintained | |
10087 | F: kernel/printk/ | |
10088 | F: include/linux/printk.h | |
10089 | ||
1da177e4 | 10090 | PRISM54 WIRELESS DRIVER |
8b58be88 | 10091 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 10092 | L: linux-wireless@vger.kernel.org |
9ef80804 | 10093 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 10094 | S: Obsolete |
c12edfe2 | 10095 | F: drivers/net/wireless/intersil/prism54/ |
1da177e4 | 10096 | |
02c18891 | 10097 | PS3 NETWORK SUPPORT |
b809b9ca | 10098 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 10099 | L: netdev@vger.kernel.org |
a14ab6b6 | 10100 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 10101 | S: Maintained |
8df158ac | 10102 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 10103 | |
f58a9d17 | 10104 | PS3 PLATFORM SUPPORT |
b809b9ca | 10105 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 | 10106 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 10107 | S: Maintained |
679655da JP |
10108 | F: arch/powerpc/boot/ps3* |
10109 | F: arch/powerpc/include/asm/lv1call.h | |
10110 | F: arch/powerpc/include/asm/ps3*.h | |
10111 | F: arch/powerpc/platforms/ps3/ | |
10112 | F: drivers/*/ps3* | |
10113 | F: drivers/ps3/ | |
fec629b8 | 10114 | F: drivers/rtc/rtc-ps3.c |
679655da | 10115 | F: drivers/usb/host/*ps3.c |
fec629b8 | 10116 | F: sound/ppc/snd_ps3* |
f58a9d17 | 10117 | |
cffb4add | 10118 | PS3VRAM DRIVER |
8b58be88 | 10119 | M: Jim Paris <jim@jtan.com> |
3715a5d0 | 10120 | M: Geoff Levand <geoff@infradead.org> |
a14ab6b6 | 10121 | L: linuxppc-dev@lists.ozlabs.org |
cffb4add | 10122 | S: Maintained |
8a3977cb | 10123 | F: drivers/block/ps3vram.c |
cffb4add | 10124 | |
6ae0a628 YG |
10125 | PSAMPLE PACKET SAMPLING SUPPORT: |
10126 | M: Yotam Gigi <yotamg@mellanox.com> | |
10127 | S: Maintained | |
10128 | F: net/psample | |
10129 | F: include/net/psample.h | |
10130 | F: include/uapi/linux/psample.h | |
10131 | ||
8defe599 | 10132 | PSTORE FILESYSTEM |
fc1b326e | 10133 | M: Kees Cook <keescook@chromium.org> |
9d5e2a02 | 10134 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 | 10135 | M: Colin Cross <ccross@android.com> |
8defe599 AV |
10136 | M: Tony Luck <tony.luck@intel.com> |
10137 | S: Maintained | |
fc1b326e | 10138 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore |
8defe599 AV |
10139 | F: fs/pstore/ |
10140 | F: include/linux/pstore* | |
04851772 | 10141 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 | 10142 | F: drivers/acpi/apei/erst.c |
fc1b326e KC |
10143 | F: Documentation/admin-guide/ramoops.rst |
10144 | F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt | |
10145 | K: \b(pstore|ramoops) | |
8defe599 | 10146 | |
7fbc415d RC |
10147 | PTP HARDWARE CLOCK SUPPORT |
10148 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 10149 | L: netdev@vger.kernel.org |
7fbc415d RC |
10150 | S: Maintained |
10151 | W: http://linuxptp.sourceforge.net/ | |
10152 | F: Documentation/ABI/testing/sysfs-ptp | |
10153 | F: Documentation/ptp/* | |
0ecb3cdd | 10154 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
10155 | F: drivers/net/phy/dp83640* |
10156 | F: drivers/ptp/* | |
10157 | F: include/linux/ptp_cl* | |
10158 | ||
cf94a4d1 | 10159 | PTRACE SUPPORT |
e846ee5f | 10160 | M: Roland McGrath <roland@hack.frob.com> |
8b58be88 | 10161 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
10162 | S: Maintained |
10163 | F: include/asm-generic/syscall.h | |
10164 | F: include/linux/ptrace.h | |
10165 | F: include/linux/regset.h | |
10166 | F: include/linux/tracehook.h | |
c117ab84 | 10167 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
10168 | F: kernel/ptrace.c |
10169 | ||
3e9d7ba7 HV |
10170 | PULSE8-CEC DRIVER |
10171 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10172 | L: linux-media@vger.kernel.org | |
10173 | T: git git://linuxtv.org/media_tree.git | |
10174 | S: Maintained | |
104eda6d | 10175 | F: drivers/media/usb/pulse8-cec/* |
3e9d7ba7 | 10176 | |
8320204a | 10177 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 10178 | M: Mike Isely <isely@pobox.com> |
16e9495d | 10179 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 10180 | L: linux-media@vger.kernel.org |
8320204a | 10181 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 10182 | T: git git://linuxtv.org/media_tree.git |
8320204a | 10183 | S: Maintained |
618cd932 | 10184 | F: Documentation/media/v4l-drivers/pvrusb2* |
0c0d06ca | 10185 | F: drivers/media/usb/pvrusb2/ |
8320204a | 10186 | |
39532e6c | 10187 | PWC WEBCAM DRIVER |
c0936df4 | 10188 | M: Hans Verkuil <hverkuil@xs4all.nl> |
39532e6c HG |
10189 | L: linux-media@vger.kernel.org |
10190 | T: git git://linuxtv.org/media_tree.git | |
c0936df4 | 10191 | S: Odd Fixes |
39532e6c HG |
10192 | F: drivers/media/usb/pwc/* |
10193 | ||
93c090b3 | 10194 | PWM FAN DRIVER |
774e0362 | 10195 | M: Kamil Debski <kamil@wypas.org> |
0faf7dd5 | 10196 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
968ce1b1 | 10197 | L: linux-hwmon@vger.kernel.org |
93c090b3 KD |
10198 | S: Supported |
10199 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |
10200 | F: Documentation/hwmon/pwm-fan | |
10201 | F: drivers/hwmon/pwm-fan.c | |
10202 | ||
200efedd | 10203 | PWM SUBSYSTEM |
aa3495f7 TR |
10204 | M: Thierry Reding <thierry.reding@gmail.com> |
10205 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 10206 | S: Maintained |
006e854f | 10207 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
10208 | F: Documentation/pwm.txt |
10209 | F: Documentation/devicetree/bindings/pwm/ | |
10210 | F: include/linux/pwm.h | |
0c2498f1 | 10211 | F: drivers/pwm/ |
a140b98d TR |
10212 | F: drivers/video/backlight/pwm_bl.c |
10213 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 10214 | |
30ec261e | 10215 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 10216 | M: Daniel Mack <daniel@zonque.org> |
a323f664 | 10217 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
8da5e302 | 10218 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 10219 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 | 10220 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 10221 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 10222 | S: Maintained |
e68d7c14 | 10223 | F: arch/arm/boot/dts/pxa* |
679655da | 10224 | F: arch/arm/mach-pxa/ |
820439f1 | 10225 | F: drivers/dma/pxa* |
679655da | 10226 | F: drivers/pcmcia/pxa2xx* |
1403ead9 | 10227 | F: drivers/pinctrl/pxa/ |
9df92e6c | 10228 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 10229 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 10230 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 10231 | F: sound/arm/pxa* |
14430813 | 10232 | F: sound/soc/pxa/ |
1da177e4 | 10233 | |
f3154a46 RJ |
10234 | PXA GPIO DRIVER |
10235 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
10236 | L: linux-gpio@vger.kernel.org | |
10237 | S: Maintained | |
10238 | F: drivers/gpio/gpio-pxa.c | |
10239 | ||
ec64d3bf EG |
10240 | PXA3xx NAND FLASH DRIVER |
10241 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
10242 | L: linux-mtd@lists.infradead.org | |
10243 | S: Maintained | |
9a67f099 | 10244 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 10245 | |
3f640c61 | 10246 | MMP SUPPORT |
8b58be88 | 10247 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 10248 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 10249 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
10250 | T: git git://github.com/hzhuang1/linux.git |
10251 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 10252 | S: Maintained |
e68d7c14 | 10253 | F: arch/arm/boot/dts/mmp* |
3f640c61 | 10254 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 10255 | |
272f133a PO |
10256 | PXA MMCI DRIVER |
10257 | S: Orphan | |
10258 | ||
57f63bc8 | 10259 | PXA RTC DRIVER |
8b58be88 | 10260 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
10261 | L: rtc-linux@googlegroups.com |
10262 | S: Maintained | |
10263 | ||
cea4001a | 10264 | QAT DRIVER |
90ab5a81 TS |
10265 | M: Giovanni Cabiddu <giovanni.cabiddu@intel.com> |
10266 | M: Salvatore Benedetto <salvatore.benedetto@intel.com> | |
49e7d9df JP |
10267 | L: qat-linux@intel.com |
10268 | S: Supported | |
10269 | F: drivers/crypto/qat/ | |
cea4001a | 10270 | |
52a09a04 | 10271 | QIB DRIVER |
8473c603 | 10272 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
10273 | L: linux-rdma@vger.kernel.org |
10274 | S: Supported | |
10275 | F: drivers/infiniband/hw/qib/ | |
10276 | ||
5e9772b9 JS |
10277 | QLOGIC QLA1280 SCSI DRIVER |
10278 | M: Michael Reed <mdr@sgi.com> | |
10279 | L: linux-scsi@vger.kernel.org | |
10280 | S: Maintained | |
10281 | F: drivers/scsi/qla1280.[ch] | |
10282 | ||
1da177e4 | 10283 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 10284 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
10285 | L: linux-scsi@vger.kernel.org |
10286 | S: Supported | |
679655da JP |
10287 | F: Documentation/scsi/LICENSE.qla2xxx |
10288 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 10289 | |
883c98fe | 10290 | QLOGIC QLA4XXX iSCSI DRIVER |
1018b8b9 | 10291 | M: QLogic-Storage-Upstream@qlogic.com |
883c98fe RA |
10292 | L: linux-scsi@vger.kernel.org |
10293 | S: Supported | |
bacfb81b | 10294 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
10295 | F: drivers/scsi/qla4xxx/ |
10296 | ||
5a4faa87 | 10297 | QLOGIC QLA3XXX NETWORK DRIVER |
67f0160f | 10298 | M: Dept-GELinuxNICDev@cavium.com |
5a4faa87 RM |
10299 | L: netdev@vger.kernel.org |
10300 | S: Supported | |
679655da | 10301 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 10302 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 10303 | |
0ec00f03 | 10304 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
67f0160f MY |
10305 | M: Harish Patil <harish.patil@cavium.com> |
10306 | M: Manish Chopra <manish.chopra@cavium.com> | |
10307 | M: Dept-GELinuxNICDev@cavium.com | |
0ec00f03 AKS |
10308 | L: netdev@vger.kernel.org |
10309 | S: Supported | |
aa43c215 | 10310 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 10311 | |
c4e84bde | 10312 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
67f0160f MY |
10313 | M: Harish Patil <harish.patil@cavium.com> |
10314 | M: Manish Chopra <manish.chopra@cavium.com> | |
10315 | M: Dept-GELinuxNICDev@cavium.com | |
c4e84bde RM |
10316 | L: netdev@vger.kernel.org |
10317 | S: Supported | |
aa43c215 | 10318 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 10319 | |
fe56b9e6 | 10320 | QLOGIC QL4xxx ETHERNET DRIVER |
67f0160f MY |
10321 | M: Yuval Mintz <Yuval.Mintz@cavium.com> |
10322 | M: Ariel Elior <Ariel.Elior@cavium.com> | |
10323 | M: everest-linux-l2@cavium.com | |
fe56b9e6 YM |
10324 | L: netdev@vger.kernel.org |
10325 | S: Supported | |
10326 | F: drivers/net/ethernet/qlogic/qed/ | |
10327 | F: include/linux/qed/ | |
10328 | F: drivers/net/ethernet/qlogic/qede/ | |
10329 | ||
ace7f46b MR |
10330 | QLOGIC QL41xxx ISCSI DRIVER |
10331 | M: QLogic-Storage-Upstream@cavium.com | |
10332 | L: linux-scsi@vger.kernel.org | |
10333 | S: Supported | |
10334 | F: drivers/scsi/qedi/ | |
10335 | ||
61d8658b DC |
10336 | QLOGIC QL41xxx FCOE DRIVER |
10337 | M: QLogic-Storage-Upstream@cavium.com | |
10338 | L: linux-scsi@vger.kernel.org | |
10339 | S: Supported | |
10340 | F: drivers/scsi/qedf/ | |
10341 | ||
1da177e4 | 10342 | QNX4 FILESYSTEM |
8b58be88 | 10343 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
10344 | W: http://www.alarsen.net/linux/qnx4fs/ |
10345 | S: Maintained | |
80811493 | 10346 | F: fs/qnx4/ |
c117ab84 CEB |
10347 | F: include/uapi/linux/qnx4_fs.h |
10348 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 10349 | |
d8b97569 | 10350 | QORIQ DPAA2 FSL-MC BUS DRIVER |
f40c60db SY |
10351 | M: Stuart Yoder <stuyoder@gmail.com> |
10352 | M: Laurentiu Tudor <laurentiu.tudor@nxp.com> | |
d8b97569 SY |
10353 | L: linux-kernel@vger.kernel.org |
10354 | S: Maintained | |
10355 | F: drivers/staging/fsl-mc/ | |
10356 | ||
91952bc0 AP |
10357 | QT1010 MEDIA DRIVER |
10358 | M: Antti Palosaari <crope@iki.fi> | |
10359 | L: linux-media@vger.kernel.org | |
a825eaec | 10360 | W: https://linuxtv.org |
91952bc0 AP |
10361 | W: http://palosaari.fi/linux/ |
10362 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10363 | T: git git://linuxtv.org/anttip/media_tree.git | |
10364 | S: Maintained | |
10365 | F: drivers/media/tuners/qt1010* | |
10366 | ||
966fb5ec SM |
10367 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
10368 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
10369 | L: linux-wireless@vger.kernel.org | |
966fb5ec SM |
10370 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
10371 | S: Supported | |
10372 | F: drivers/net/wireless/ath/ath9k/ | |
10373 | ||
2ea0ffcb KV |
10374 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
10375 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
10376 | L: ath10k@lists.infradead.org | |
10377 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
9f273c24 | 10378 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
2ea0ffcb KV |
10379 | S: Supported |
10380 | F: drivers/net/wireless/ath/ath10k/ | |
10381 | ||
b9b17deb TT |
10382 | QUALCOMM EMAC GIGABIT ETHERNET DRIVER |
10383 | M: Timur Tabi <timur@codeaurora.org> | |
10384 | L: netdev@vger.kernel.org | |
10385 | S: Supported | |
10386 | F: drivers/net/ethernet/qualcomm/emac/ | |
10387 | ||
4f4567cf RK |
10388 | QUALCOMM HEXAGON ARCHITECTURE |
10389 | M: Richard Kuo <rkuo@codeaurora.org> | |
10390 | L: linux-hexagon@vger.kernel.org | |
9f273c24 | 10391 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git |
4f4567cf RK |
10392 | S: Supported |
10393 | F: arch/hexagon/ | |
10394 | ||
8e84c258 EK |
10395 | QUALCOMM WCN36XX WIRELESS DRIVER |
10396 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
10397 | L: wcn36xx@lists.infradead.org | |
10398 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
10399 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
10400 | S: Supported | |
10401 | F: drivers/net/wireless/ath/wcn36xx/ | |
10402 | ||
eeca9a67 MT |
10403 | QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT |
10404 | M: Gabriel Somlo <somlo@cmu.edu> | |
10405 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
10406 | L: qemu-devel@nongnu.org | |
10407 | S: Maintained | |
10408 | F: drivers/firmware/qemu_fw_cfg.c | |
10409 | ||
602adf40 | 10410 | RADOS BLOCK DEVICE (RBD) |
0f5417ce SW |
10411 | M: Ilya Dryomov <idryomov@gmail.com> |
10412 | M: Sage Weil <sage@redhat.com> | |
527a88b9 | 10413 | M: Alex Elder <elder@kernel.org> |
398ecff5 | 10414 | L: ceph-devel@vger.kernel.org |
09d90327 SW |
10415 | W: http://ceph.com/ |
10416 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 10417 | T: git git://github.com/ceph/ceph-client.git |
602adf40 | 10418 | S: Supported |
398ecff5 | 10419 | F: Documentation/ABI/testing/sysfs-bus-rbd |
602adf40 YS |
10420 | F: drivers/block/rbd.c |
10421 | F: drivers/block/rbd_types.h | |
10422 | ||
1da177e4 | 10423 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 10424 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 10425 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 10426 | S: Maintained |
8a61f013 | 10427 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 10428 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 10429 | |
c6c9b34c | 10430 | RADIOSHARK RADIO DRIVER |
c0936df4 | 10431 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
10432 | L: linux-media@vger.kernel.org |
10433 | T: git git://linuxtv.org/media_tree.git | |
10434 | S: Maintained | |
10435 | F: drivers/media/radio/radio-shark.c | |
10436 | ||
10437 | RADIOSHARK2 RADIO DRIVER | |
c0936df4 | 10438 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
10439 | L: linux-media@vger.kernel.org |
10440 | T: git git://linuxtv.org/media_tree.git | |
10441 | S: Maintained | |
10442 | F: drivers/media/radio/radio-shark2.c | |
10443 | F: drivers/media/radio/radio-tea5777.c | |
10444 | ||
1da177e4 | 10445 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 10446 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 10447 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 10448 | S: Maintained |
8a61f013 | 10449 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 10450 | |
a0fd81a9 | 10451 | RALINK MIPS ARCHITECTURE |
bdb40e8e | 10452 | M: John Crispin <john@phrozen.org> |
a0fd81a9 JC |
10453 | L: linux-mips@linux-mips.org |
10454 | S: Maintained | |
10455 | F: arch/mips/ralink | |
10456 | ||
e7839f25 | 10457 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 10458 | P: rt2x00 project |
b182427e | 10459 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
f198f98e | 10460 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 10461 | L: linux-wireless@vger.kernel.org |
95ea3627 | 10462 | S: Maintained |
33aca94d | 10463 | F: drivers/net/wireless/ralink/rt2x00/ |
95ea3627 | 10464 | |
9db5579b | 10465 | RAMDISK RAM BLOCK DEVICE DRIVER |
ea7618ec | 10466 | M: Jens Axboe <axboe@kernel.dk> |
9db5579b | 10467 | S: Maintained |
679655da JP |
10468 | F: Documentation/blockdev/ramdisk.txt |
10469 | F: drivers/block/brd.c | |
9db5579b | 10470 | |
9e95ce27 | 10471 | RANDOM NUMBER DRIVER |
0624bcaa | 10472 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 10473 | S: Maintained |
679655da | 10474 | F: drivers/char/random.c |
9e95ce27 | 10475 | |
394b701c | 10476 | RAPIDIO SUBSYSTEM |
8b58be88 | 10477 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 10478 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 10479 | S: Maintained |
679655da | 10480 | F: drivers/rapidio/ |
394b701c | 10481 | |
e2d1d6c0 | 10482 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 10483 | L: linux-wireless@vger.kernel.org |
f52a5490 | 10484 | S: Orphan |
679655da | 10485 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
10486 | |
10487 | RCUTORTURE MODULE | |
e0198b29 | 10488 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 10489 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 10490 | L: linux-kernel@vger.kernel.org |
f9094d8e | 10491 | S: Supported |
08deed1e | 10492 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 10493 | F: Documentation/RCU/torture.txt |
34e2d560 | 10494 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 10495 | |
c87b9c60 PM |
10496 | RCUTORTURE TEST FRAMEWORK |
10497 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 10498 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
10499 | R: Steven Rostedt <rostedt@goodmis.org> |
10500 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 10501 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 10502 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
10503 | S: Supported |
10504 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
10505 | F: tools/testing/selftests/rcutorture | |
10506 | ||
c1f766b5 | 10507 | RDC R-321X SoC |
8b58be88 | 10508 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
10509 | S: Maintained |
10510 | ||
db17f395 | 10511 | RDC R6040 FAST ETHERNET DRIVER |
35566e96 | 10512 | M: Florian Fainelli <f.fainelli@gmail.com> |
db17f395 FF |
10513 | L: netdev@vger.kernel.org |
10514 | S: Maintained | |
58565a35 | 10515 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 10516 | |
a09ed661 | 10517 | RDS - RELIABLE DATAGRAM SOCKETS |
72f26eee | 10518 | M: Santosh Shilimkar <santosh.shilimkar@oracle.com> |
10519 | L: netdev@vger.kernel.org | |
10520 | L: linux-rdma@vger.kernel.org | |
fbb5a558 | 10521 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
72f26eee | 10522 | W: https://oss.oracle.com/projects/rds/ |
a09ed661 | 10523 | S: Supported |
679655da | 10524 | F: net/rds/ |
72f26eee | 10525 | F: Documentation/networking/rds.txt |
a09ed661 | 10526 | |
0194621b DD |
10527 | RDMAVT - RDMA verbs software |
10528 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
10529 | L: linux-rdma@vger.kernel.org | |
10530 | S: Supported | |
10531 | F: drivers/infiniband/sw/rdmavt | |
10532 | ||
48553d10 FY |
10533 | RDT - RESOURCE ALLOCATION |
10534 | M: Fenghua Yu <fenghua.yu@intel.com> | |
10535 | L: linux-kernel@vger.kernel.org | |
10536 | S: Supported | |
10537 | F: arch/x86/kernel/cpu/intel_rdt* | |
10538 | F: arch/x86/include/asm/intel_rdt* | |
10539 | F: Documentation/x86/intel_rdt* | |
10540 | ||
595182bc | 10541 | READ-COPY UPDATE (RCU) |
8b58be88 | 10542 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 10543 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
10544 | R: Steven Rostedt <rostedt@goodmis.org> |
10545 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 10546 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 10547 | L: linux-kernel@vger.kernel.org |
9fab9787 | 10548 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 10549 | S: Supported |
08deed1e | 10550 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 10551 | F: Documentation/RCU/ |
9fab9787 | 10552 | X: Documentation/RCU/torture.txt |
f9094d8e | 10553 | F: include/linux/rcu* |
4102adab PM |
10554 | X: include/linux/srcu.h |
10555 | F: kernel/rcu/ | |
34e2d560 | 10556 | X: kernel/torture.c |
595182bc | 10557 | |
0c86edc0 | 10558 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 10559 | M: Alessandro Zummo <a.zummo@towertech.it> |
7c6f84f8 | 10560 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
76465493 | 10561 | L: rtc-linux@googlegroups.com |
8a6e2535 | 10562 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
4733f397 | 10563 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
0c86edc0 | 10564 | S: Maintained |
7af6a2e1 | 10565 | F: Documentation/devicetree/bindings/rtc/ |
679655da JP |
10566 | F: Documentation/rtc.txt |
10567 | F: drivers/rtc/ | |
10568 | F: include/linux/rtc.h | |
c117ab84 | 10569 | F: include/uapi/linux/rtc.h |
fe23c336 AB |
10570 | F: include/linux/rtc/ |
10571 | F: include/linux/platform_data/rtc-* | |
10572 | F: tools/testing/selftests/timers/rtctest.c | |
0c86edc0 | 10573 | |
0e400c53 MB |
10574 | REALTEK AUDIO CODECS |
10575 | M: Bard Liao <bardliao@realtek.com> | |
10576 | M: Oder Chiou <oder_chiou@realtek.com> | |
10577 | S: Maintained | |
10578 | F: sound/soc/codecs/rt* | |
10579 | F: include/sound/rt*.h | |
10580 | ||
1da177e4 | 10581 | REISERFS FILE SYSTEM |
76c4e5ea | 10582 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 10583 | S: Supported |
679655da | 10584 | F: fs/reiserfs/ |
1da177e4 | 10585 | |
b83a313b | 10586 | REGISTER MAP ABSTRACTION |
b02e48f2 | 10587 | M: Mark Brown <broonie@kernel.org> |
dd060bc9 | 10588 | L: linux-kernel@vger.kernel.org |
b83a313b MB |
10589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
10590 | S: Supported | |
9398a639 | 10591 | F: Documentation/devicetree/bindings/regmap/ |
b83a313b MB |
10592 | F: drivers/base/regmap/ |
10593 | F: include/linux/regmap.h | |
10594 | ||
400e64df OBC |
10595 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
10596 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 10597 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 10598 | L: linux-remoteproc@vger.kernel.org |
6bb697b6 | 10599 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df | 10600 | S: Maintained |
15ebc72d | 10601 | F: Documentation/devicetree/bindings/remoteproc/ |
400e64df | 10602 | F: Documentation/remoteproc.txt |
15ebc72d | 10603 | F: drivers/remoteproc/ |
6fc26488 | 10604 | F: include/linux/remoteproc.h |
400e64df | 10605 | |
d8115db5 OBC |
10606 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
10607 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 10608 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 10609 | L: linux-remoteproc@vger.kernel.org |
d8115db5 OBC |
10610 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git |
10611 | S: Maintained | |
10612 | F: drivers/rpmsg/ | |
10613 | F: Documentation/rpmsg.txt | |
10614 | F: include/linux/rpmsg.h | |
38c6fc32 | 10615 | F: include/linux/rpmsg/ |
d8115db5 | 10616 | |
fedc81e7 GU |
10617 | RENESAS CLOCK DRIVERS |
10618 | M: Geert Uytterhoeven <geert+renesas@glider.be> | |
10619 | L: linux-renesas-soc@vger.kernel.org | |
10620 | S: Supported | |
10621 | F: drivers/clk/renesas/ | |
10622 | ||
8e6569af SS |
10623 | RENESAS ETHERNET DRIVERS |
10624 | R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | |
10625 | L: netdev@vger.kernel.org | |
4a121096 | 10626 | L: linux-renesas-soc@vger.kernel.org |
8e6569af SS |
10627 | F: drivers/net/ethernet/renesas/ |
10628 | F: include/linux/sh_eth.h | |
10629 | ||
059c53b3 MV |
10630 | RENESAS R-CAR GYROADC DRIVER |
10631 | M: Marek Vasut <marek.vasut@gmail.com> | |
10632 | L: linux-iio@vger.kernel.org | |
10633 | S: Supported | |
10634 | F: drivers/iio/adc/rcar_gyro_adc.c | |
10635 | ||
3e46c397 YS |
10636 | RENESAS USB2 PHY DRIVER |
10637 | M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | |
4a121096 | 10638 | L: linux-renesas-soc@vger.kernel.org |
3e46c397 YS |
10639 | S: Maintained |
10640 | F: drivers/phy/phy-rcar-gen3-usb2.c | |
10641 | ||
1b0fe6be PZ |
10642 | RESET CONTROLLER FRAMEWORK |
10643 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
9f273c24 | 10644 | T: git git://git.pengutronix.de/git/pza/linux |
1b0fe6be PZ |
10645 | S: Maintained |
10646 | F: drivers/reset/ | |
10647 | F: Documentation/devicetree/bindings/reset/ | |
b2f6dd7b | 10648 | F: include/dt-bindings/reset/ |
1b0fe6be PZ |
10649 | F: include/linux/reset.h |
10650 | F: include/linux/reset-controller.h | |
10651 | ||
e0897645 | 10652 | RFKILL |
8b58be88 | 10653 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 10654 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
10655 | W: http://wireless.kernel.org/ |
10656 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
10657 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 10658 | S: Maintained |
505c9247 | 10659 | F: Documentation/rfkill.txt |
80811493 | 10660 | F: net/rfkill/ |
e0897645 | 10661 | |
933685ca TG |
10662 | RHASHTABLE |
10663 | M: Thomas Graf <tgraf@suug.ch> | |
39ec406d | 10664 | M: Herbert Xu <herbert@gondor.apana.org.au> |
933685ca TG |
10665 | L: netdev@vger.kernel.org |
10666 | S: Maintained | |
10667 | F: lib/rhashtable.c | |
10668 | F: include/linux/rhashtable.h | |
10669 | ||
67e054e9 ML |
10670 | RICOH SMARTMEDIA/XD DRIVER |
10671 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
10672 | S: Maintained | |
21c26f50 JP |
10673 | F: drivers/mtd/nand/r852.c |
10674 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 10675 | |
92634125 ML |
10676 | RICOH R5C592 MEMORYSTICK DRIVER |
10677 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
10678 | S: Maintained | |
10679 | F: drivers/memstick/host/r592.* | |
10680 | ||
27f1d2f9 SA |
10681 | ROCCAT DRIVERS |
10682 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
10683 | W: http://sourceforge.net/projects/roccat/ | |
10684 | S: Maintained | |
10685 | F: drivers/hid/hid-roccat* | |
10686 | F: include/linux/hid-roccat* | |
10687 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
10688 | ||
4b8ac966 JP |
10689 | ROCKER DRIVER |
10690 | M: Jiri Pirko <jiri@resnulli.us> | |
4b8ac966 JP |
10691 | L: netdev@vger.kernel.org |
10692 | S: Supported | |
10693 | F: drivers/net/ethernet/rocker/ | |
10694 | ||
1da177e4 LT |
10695 | ROCKETPORT DRIVER |
10696 | P: Comtrol Corp. | |
1da177e4 LT |
10697 | W: http://www.comtrol.com |
10698 | S: Maintained | |
679655da | 10699 | F: Documentation/serial/rocket.txt |
c897401b | 10700 | F: drivers/tty/rocket* |
1da177e4 | 10701 | |
7645c2f4 KC |
10702 | ROCKETPORT EXPRESS/INFINITY DRIVER |
10703 | M: Kevin Cernekee <cernekee@gmail.com> | |
10704 | L: linux-serial@vger.kernel.org | |
10705 | S: Odd Fixes | |
10706 | F: drivers/tty/serial/rp2.* | |
10707 | ||
1da177e4 | 10708 | ROSE NETWORK LAYER |
8b58be88 | 10709 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 10710 | L: linux-hams@vger.kernel.org |
d34cb28a | 10711 | W: http://www.linux-ax25.org/ |
1da177e4 | 10712 | S: Maintained |
679655da | 10713 | F: include/net/rose.h |
c117ab84 | 10714 | F: include/uapi/linux/rose.h |
679655da | 10715 | F: net/rose/ |
1da177e4 | 10716 | |
91952bc0 AP |
10717 | RTL2830 MEDIA DRIVER |
10718 | M: Antti Palosaari <crope@iki.fi> | |
10719 | L: linux-media@vger.kernel.org | |
a825eaec | 10720 | W: https://linuxtv.org |
91952bc0 AP |
10721 | W: http://palosaari.fi/linux/ |
10722 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10723 | T: git git://linuxtv.org/anttip/media_tree.git | |
10724 | S: Maintained | |
10725 | F: drivers/media/dvb-frontends/rtl2830* | |
10726 | ||
27a0aacf AP |
10727 | RTL2832 MEDIA DRIVER |
10728 | M: Antti Palosaari <crope@iki.fi> | |
10729 | L: linux-media@vger.kernel.org | |
a825eaec | 10730 | W: https://linuxtv.org |
27a0aacf AP |
10731 | W: http://palosaari.fi/linux/ |
10732 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10733 | T: git git://linuxtv.org/anttip/media_tree.git | |
10734 | S: Maintained | |
10735 | F: drivers/media/dvb-frontends/rtl2832* | |
10736 | ||
ba6e6f6e AP |
10737 | RTL2832_SDR MEDIA DRIVER |
10738 | M: Antti Palosaari <crope@iki.fi> | |
10739 | L: linux-media@vger.kernel.org | |
a825eaec | 10740 | W: https://linuxtv.org |
ba6e6f6e AP |
10741 | W: http://palosaari.fi/linux/ |
10742 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10743 | T: git git://linuxtv.org/anttip/media_tree.git | |
10744 | S: Maintained | |
b4bb1c28 | 10745 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 10746 | |
59840488 | 10747 | RTL8180 WIRELESS DRIVER |
605bebe2 | 10748 | L: linux-wireless@vger.kernel.org |
491b26b4 | 10749 | W: http://wireless.kernel.org/ |
54e5881d | 10750 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7be6ff65 | 10751 | S: Orphan |
62141726 | 10752 | F: drivers/net/wireless/realtek/rtl818x/rtl8180/ |
605bebe2 | 10753 | |
59840488 | 10754 | RTL8187 WIRELESS DRIVER |
9f0939bf | 10755 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
10756 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
10757 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 10758 | L: linux-wireless@vger.kernel.org |
491b26b4 | 10759 | W: http://wireless.kernel.org/ |
54e5881d | 10760 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 10761 | S: Maintained |
62141726 | 10762 | F: drivers/net/wireless/realtek/rtl818x/rtl8187/ |
59840488 | 10763 | |
3cf0c8ad LF |
10764 | RTL8192CE WIRELESS DRIVER |
10765 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
10766 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
10767 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 10768 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
10769 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
10770 | S: Maintained | |
62141726 KV |
10771 | F: drivers/net/wireless/realtek/rtlwifi/ |
10772 | F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ | |
59840488 | 10773 | |
26f1fad2 | 10774 | RTL8XXXU WIRELESS DRIVER (rtl8xxxu) |
1ee83789 | 10775 | M: Jes Sorensen <Jes.Sorensen@gmail.com> |
26f1fad2 | 10776 | L: linux-wireless@vger.kernel.org |
171a900c | 10777 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel |
26f1fad2 JS |
10778 | S: Maintained |
10779 | F: drivers/net/wireless/realtek/rtl8xxxu/ | |
10780 | ||
9eb8ef74 | 10781 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 10782 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 10783 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 10784 | S: Maintained |
8a61f013 | 10785 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 10786 | |
1da177e4 | 10787 | S390 |
8b58be88 JP |
10788 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
10789 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
d58140cc | 10790 | L: linux-s390@vger.kernel.org |
5238da45 | 10791 | W: http://www.ibm.com/developerworks/linux/linux390/ |
9f273c24 | 10792 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git |
5238da45 | 10793 | S: Supported |
679655da | 10794 | F: arch/s390/ |
a968cd3e | 10795 | F: drivers/s390/ |
3bfe6858 JN |
10796 | F: Documentation/s390/ |
10797 | F: Documentation/DocBook/s390* | |
5238da45 | 10798 | |
322986ca SO |
10799 | S390 COMMON I/O LAYER |
10800 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
10801 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
10802 | L: linux-s390@vger.kernel.org | |
10803 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10804 | S: Supported | |
10805 | F: drivers/s390/cio/ | |
10806 | ||
10807 | S390 DASD DRIVER | |
38b7f07a SH |
10808 | M: Stefan Haberland <sth@linux.vnet.ibm.com> |
10809 | M: Jan Hoeppner <hoeppner@linux.vnet.ibm.com> | |
322986ca SO |
10810 | L: linux-s390@vger.kernel.org |
10811 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10812 | S: Supported | |
10813 | F: drivers/s390/block/dasd* | |
10814 | F: block/partitions/ibm.c | |
10815 | ||
5238da45 | 10816 | S390 NETWORK DRIVERS |
f0c59aff | 10817 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
d58140cc | 10818 | L: linux-s390@vger.kernel.org |
5238da45 HC |
10819 | W: http://www.ibm.com/developerworks/linux/linux390/ |
10820 | S: Supported | |
679655da | 10821 | F: drivers/s390/net/ |
5238da45 | 10822 | |
322986ca SO |
10823 | S390 PCI SUBSYSTEM |
10824 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
10825 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
10826 | L: linux-s390@vger.kernel.org | |
10827 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10828 | S: Supported | |
10829 | F: arch/s390/pci/ | |
10830 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
10831 | ||
feed9b62 | 10832 | S390 ZCRYPT DRIVER |
cb9c6385 | 10833 | M: Harald Freudenberger <freude@de.ibm.com> |
feed9b62 | 10834 | L: linux-s390@vger.kernel.org |
a968cd3e | 10835 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 10836 | S: Supported |
d5ca6918 | 10837 | F: drivers/s390/crypto/ |
feed9b62 | 10838 | |
5238da45 | 10839 | S390 ZFCP DRIVER |
d38e19d0 | 10840 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
d58140cc | 10841 | L: linux-s390@vger.kernel.org |
5238da45 | 10842 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 10843 | S: Supported |
679655da | 10844 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 10845 | |
dd96df2c | 10846 | S390 IUCV NETWORK LAYER |
f0c59aff | 10847 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
dd96df2c UB |
10848 | L: linux-s390@vger.kernel.org |
10849 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10850 | S: Supported | |
679655da JP |
10851 | F: drivers/s390/net/*iucv* |
10852 | F: include/net/iucv/ | |
10853 | F: net/iucv/ | |
dd96df2c | 10854 | |
8128f23c GS |
10855 | S390 IOMMU (PCI) |
10856 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
10857 | L: linux-s390@vger.kernel.org | |
10858 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10859 | S: Supported | |
10860 | F: drivers/iommu/s390-iommu.c | |
10861 | ||
4dde7f75 | 10862 | S3C24XX SD/MMC Driver |
8b58be88 | 10863 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 10864 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 10865 | S: Supported |
679655da | 10866 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 10867 | |
1f15a229 HV |
10868 | SAA6588 RDS RECEIVER DRIVER |
10869 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10870 | L: linux-media@vger.kernel.org | |
10871 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10872 | W: https://linuxtv.org |
1f15a229 HV |
10873 | S: Odd Fixes |
10874 | F: drivers/media/i2c/saa6588* | |
10875 | ||
98ed12e6 | 10876 | SAA7134 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
10877 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
10878 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
98ed12e6 | 10879 | L: linux-media@vger.kernel.org |
a825eaec | 10880 | W: https://linuxtv.org |
98ed12e6 MCC |
10881 | T: git git://linuxtv.org/media_tree.git |
10882 | S: Odd fixes | |
618cd932 | 10883 | F: Documentation/media/v4l-drivers/saa7134* |
98ed12e6 MCC |
10884 | F: drivers/media/pci/saa7134/ |
10885 | ||
1da177e4 | 10886 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 10887 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 10888 | L: linux-media@vger.kernel.org |
275ffde4 | 10889 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 10890 | S: Maintained |
90d72ac6 MCC |
10891 | F: drivers/media/common/saa7146/ |
10892 | F: drivers/media/pci/saa7146/ | |
10893 | F: include/media/saa7146* | |
1da177e4 | 10894 | |
92304a40 | 10895 | SAMSUNG LAPTOP DRIVER |
5909c654 | 10896 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
10897 | L: platform-driver-x86@vger.kernel.org |
10898 | S: Maintained | |
10899 | F: drivers/platform/x86/samsung-laptop.c | |
10900 | ||
4a109cc0 | 10901 | SAMSUNG AUDIO (ASoC) DRIVERS |
326dce07 | 10902 | M: Krzysztof Kozlowski <krzk@kernel.org> |
250b6851 | 10903 | M: Sangbeom Kim <sbkim73@samsung.com> |
09a01028 | 10904 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
4a109cc0 MB |
10905 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10906 | S: Supported | |
14430813 | 10907 | F: sound/soc/samsung/ |
4a109cc0 | 10908 | |
0d89a28b | 10909 | SAMSUNG FRAMEBUFFER DRIVER |
b7701755 | 10910 | M: Jingoo Han <jingoohan1@gmail.com> |
0d89a28b JH |
10911 | L: linux-fbdev@vger.kernel.org |
10912 | S: Maintained | |
8a61f013 | 10913 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 10914 | |
b40f0632 | 10915 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
f69d3a17 | 10916 | M: Sangbeom Kim <sbkim73@samsung.com> |
326dce07 KK |
10917 | M: Krzysztof Kozlowski <krzk@kernel.org> |
10918 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
f69d3a17 | 10919 | L: linux-kernel@vger.kernel.org |
b40f0632 | 10920 | L: linux-samsung-soc@vger.kernel.org |
f69d3a17 SK |
10921 | S: Supported |
10922 | F: drivers/mfd/sec*.c | |
10923 | F: drivers/regulator/s2m*.c | |
10924 | F: drivers/regulator/s5m*.c | |
b40f0632 KK |
10925 | F: drivers/clk/clk-s2mps11.c |
10926 | F: drivers/rtc/rtc-s5m.c | |
f69d3a17 | 10927 | F: include/linux/mfd/samsung/ |
a13c7c51 KK |
10928 | F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt |
10929 | F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt | |
27383ca9 | 10930 | F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt |
a13c7c51 | 10931 | F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt |
f69d3a17 | 10932 | |
038f5c4b SN |
10933 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
10934 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10935 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
10936 | L: linux-media@vger.kernel.org | |
10937 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
10938 | S: Supported | |
10939 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 10940 | |
6fd86ab2 SN |
10941 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
10942 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
10943 | L: linux-media@vger.kernel.org | |
10944 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10945 | S: Maintained | |
10946 | F: drivers/media/platform/s3c-camif/ | |
d647f0b7 | 10947 | F: include/media/drv-intf/s3c_camif.h |
6fd86ab2 | 10948 | |
b84ef24e AH |
10949 | SAMSUNG S5C73M3 CAMERA DRIVER |
10950 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10951 | M: Andrzej Hajda <a.hajda@samsung.com> | |
10952 | L: linux-media@vger.kernel.org | |
10953 | S: Supported | |
10954 | F: drivers/media/i2c/s5c73m3/* | |
10955 | ||
7d459937 AH |
10956 | SAMSUNG S5K5BAF CAMERA DRIVER |
10957 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10958 | M: Andrzej Hajda <a.hajda@samsung.com> | |
10959 | L: linux-media@vger.kernel.org | |
10960 | S: Supported | |
10961 | F: drivers/media/i2c/s5k5baf.c | |
10962 | ||
c04c674f RB |
10963 | SAMSUNG S3FWRN5 NFC DRIVER |
10964 | M: Robert Baldyga <r.baldyga@samsung.com> | |
079c2652 | 10965 | M: Krzysztof Opasiak <k.opasiak@samsung.com> |
c04c674f RB |
10966 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
10967 | S: Supported | |
10968 | F: drivers/nfc/s3fwrn5 | |
10969 | ||
310e39c9 | 10970 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
10971 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
10972 | M: Tomasz Figa <tomasz.figa@gmail.com> | |
490583f0 | 10973 | M: Chanwoo Choi <cw00.choi@samsung.com> |
310e39c9 TF |
10974 | S: Supported |
10975 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10976 | F: drivers/clk/samsung/ | |
490583f0 CC |
10977 | F: include/dt-bindings/clock/exynos*.h |
10978 | F: Documentation/devicetree/bindings/clock/exynos*.txt | |
310e39c9 | 10979 | |
2e365a70 AS |
10980 | SAMSUNG SPI DRIVERS |
10981 | M: Kukjin Kim <kgene@kernel.org> | |
10982 | M: Krzysztof Kozlowski <krzk@kernel.org> | |
10983 | M: Andi Shyti <andi.shyti@samsung.com> | |
10984 | L: linux-spi@vger.kernel.org | |
10985 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10986 | S: Maintained | |
10987 | F: Documentation/devicetree/bindings/spi/spi-samsung.txt | |
10988 | F: drivers/spi/spi-s3c* | |
10989 | F: include/linux/platform_data/spi-s3c64xx.h | |
10990 | ||
66890ed6 BA |
10991 | SAMSUNG SXGBE DRIVERS |
10992 | M: Byungho An <bh74.an@samsung.com> | |
10993 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
10994 | M: Vipul Pandya <vipul.pandya@samsung.com> |
10995 | S: Supported | |
10996 | L: netdev@vger.kernel.org | |
10997 | F: drivers/net/ethernet/samsung/sxgbe/ | |
10998 | ||
93c537af | 10999 | SAMSUNG THERMAL DRIVER |
0faf7dd5 | 11000 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
93c537af LM |
11001 | L: linux-pm@vger.kernel.org |
11002 | L: linux-samsung-soc@vger.kernel.org | |
11003 | S: Supported | |
9f273c24 | 11004 | T: git https://github.com/lmajewski/linux-samsung-thermal.git |
93c537af LM |
11005 | F: drivers/thermal/samsung/ |
11006 | ||
e296cd32 | 11007 | SAMSUNG USB2 PHY DRIVER |
774e0362 KD |
11008 | M: Kamil Debski <kamil@wypas.org> |
11009 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
e296cd32 KD |
11010 | L: linux-kernel@vger.kernel.org |
11011 | S: Supported | |
11012 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
11013 | F: Documentation/phy/samsung-usb2.txt | |
11014 | F: drivers/phy/phy-exynos4210-usb2.c | |
11015 | F: drivers/phy/phy-exynos4x12-usb2.c | |
11016 | F: drivers/phy/phy-exynos5250-usb2.c | |
11017 | F: drivers/phy/phy-s5pv210-usb2.c | |
11018 | F: drivers/phy/phy-samsung-usb2.c | |
11019 | F: drivers/phy/phy-samsung-usb2.h | |
11020 | ||
ca749e2a | 11021 | SERIAL DRIVERS |
5e30bbb7 | 11022 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 11023 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 11024 | S: Maintained |
30743257 | 11025 | F: Documentation/devicetree/bindings/serial/ |
14430813 | 11026 | F: drivers/tty/serial/ |
ca749e2a | 11027 | |
cd6484e1 RH |
11028 | SERIAL DEVICE BUS |
11029 | M: Rob Herring <robh@kernel.org> | |
11030 | L: linux-serial@vger.kernel.org | |
11031 | S: Maintained | |
11032 | F: Documentation/devicetree/bindings/serial/slave-device.txt | |
11033 | F: drivers/tty/serdev/ | |
11034 | F: include/linux/serdev.h | |
11035 | ||
fa5dc29c SY |
11036 | SERIAL IR RECEIVER |
11037 | M: Sean Young <sean@mess.org> | |
11038 | L: linux-media@vger.kernel.org | |
11039 | S: Maintained | |
11040 | F: drivers/media/rc/serial_ir.c | |
11041 | ||
49fc9361 BG |
11042 | STI CEC DRIVER |
11043 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
11044 | L: kernel@stlinux.com | |
11045 | S: Maintained | |
11046 | F: drivers/staging/media/st-cec/ | |
11047 | F: Documentation/devicetree/bindings/media/stih-cec.txt | |
11048 | ||
ac713874 UB |
11049 | SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS |
11050 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> | |
11051 | L: linux-s390@vger.kernel.org | |
11052 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
11053 | S: Supported | |
11054 | F: net/smc/ | |
11055 | ||
aecb7b64 | 11056 | SYNOPSYS DESIGNWARE DMAC DRIVER |
da89947b | 11057 | M: Viresh Kumar <vireshk@kernel.org> |
337ae47c | 11058 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 | 11059 | S: Maintained |
1fb200d6 | 11060 | F: include/linux/dma/dw.h |
3d598f47 | 11061 | F: include/linux/platform_data/dma-dw.h |
61a76496 | 11062 | F: drivers/dma/dw/ |
aecb7b64 | 11063 | |
fc531d98 | 11064 | SYNOPSYS DESIGNWARE I2C DRIVER |
fc531d98 | 11065 | M: Jarkko Nikula <jarkko.nikula@linux.intel.com> |
d0781b98 AS |
11066 | R: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
11067 | R: Mika Westerberg <mika.westerberg@linux.intel.com> | |
fc531d98 WS |
11068 | L: linux-i2c@vger.kernel.org |
11069 | S: Maintained | |
11070 | F: drivers/i2c/busses/i2c-designware-* | |
11071 | F: include/linux/platform_data/i2c-designware.h | |
11072 | ||
f9e37137 | 11073 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
f9e37137 SJ |
11074 | M: Jaehoon Chung <jh80.chung@samsung.com> |
11075 | L: linux-mmc@vger.kernel.org | |
11076 | S: Maintained | |
f9e37137 SJ |
11077 | F: drivers/mmc/host/dw_mmc* |
11078 | ||
a961e698 AS |
11079 | SYSTEM TRACE MODULE CLASS |
11080 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
11081 | S: Maintained | |
e787bc46 | 11082 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git |
a961e698 AS |
11083 | F: Documentation/trace/stm.txt |
11084 | F: drivers/hwtracing/stm/ | |
11085 | F: include/linux/stm.h | |
11086 | F: include/uapi/linux/stm.h | |
11087 | ||
1db121d6 AN |
11088 | THUNDERBOLT DRIVER |
11089 | M: Andreas Noever <andreas.noever@gmail.com> | |
11090 | S: Maintained | |
11091 | F: drivers/thunderbolt/ | |
11092 | ||
e35a49b1 SR |
11093 | TI BQ27XXX POWER SUPPLY DRIVER |
11094 | R: Andrew F. Davis <afd@ti.com> | |
11095 | F: include/linux/power/bq27xxx_battery.h | |
8c0984e5 SR |
11096 | F: drivers/power/supply/bq27xxx_battery.c |
11097 | F: drivers/power/supply/bq27xxx_battery_i2c.c | |
e35a49b1 | 11098 | |
34db37c6 | 11099 | TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER |
50363737 | 11100 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 11101 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 11102 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 11103 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
11104 | S: Supported |
11105 | F: include/linux/clocksource.h | |
11106 | F: include/linux/time.h | |
11107 | F: include/linux/timex.h | |
c117ab84 CEB |
11108 | F: include/uapi/linux/time.h |
11109 | F: include/uapi/linux/timex.h | |
88606e80 TG |
11110 | F: kernel/time/clocksource.c |
11111 | F: kernel/time/time*.c | |
34db37c6 | 11112 | F: kernel/time/alarmtimer.c |
88606e80 | 11113 | F: kernel/time/ntp.c |
7fe5f1c1 | 11114 | F: tools/testing/selftests/timers/ |
88606e80 | 11115 | |
1da177e4 | 11116 | SC1200 WDT DRIVER |
b300645a | 11117 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 11118 | S: Maintained |
679655da | 11119 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
11120 | |
11121 | SCHEDULER | |
dd9b238c | 11122 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 11123 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 11124 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 11125 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 11126 | S: Maintained |
95c0d71d | 11127 | F: kernel/sched/ |
679655da | 11128 | F: include/linux/sched.h |
c117ab84 | 11129 | F: include/uapi/linux/sched.h |
c2eb505b | 11130 | F: include/linux/wait.h |
1da177e4 | 11131 | |
6bcf6737 | 11132 | SCORE ARCHITECTURE |
ed38665e | 11133 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 11134 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 11135 | W: http://www.sunplus.com |
6bcf6737 | 11136 | S: Supported |
a2681a75 | 11137 | F: arch/score/ |
6bcf6737 | 11138 | |
f2ed287b LR |
11139 | SCR24X CHIP CARD INTERFACE DRIVER |
11140 | M: Lubomir Rintel <lkundrak@v3.sk> | |
11141 | S: Supported | |
11142 | F: drivers/char/pcmcia/scr24x_cs.c | |
11143 | ||
80f390ea SH |
11144 | SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers |
11145 | M: Sudeep Holla <sudeep.holla@arm.com> | |
11146 | L: linux-arm-kernel@lists.infradead.org | |
11147 | S: Maintained | |
11148 | F: Documentation/devicetree/bindings/arm/arm,scpi.txt | |
cd52c2a4 | 11149 | F: drivers/clk/clk-scpi.c |
8def3103 | 11150 | F: drivers/cpufreq/scpi-cpufreq.c |
8cb7cf56 SH |
11151 | F: drivers/firmware/arm_scpi.c |
11152 | F: include/linux/scpi_protocol.h | |
80f390ea | 11153 | |
1da177e4 | 11154 | SCSI CDROM DRIVER |
8b58be88 | 11155 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
11156 | L: linux-scsi@vger.kernel.org |
11157 | W: http://www.kernel.dk | |
11158 | S: Maintained | |
679655da | 11159 | F: drivers/scsi/sr* |
1da177e4 | 11160 | |
fb50a83d | 11161 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
3453bddb | 11162 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
fb50a83d RD |
11163 | L: linux-rdma@vger.kernel.org |
11164 | S: Supported | |
11165 | W: http://www.openfabrics.org | |
11166 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
11167 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
11168 | F: drivers/infiniband/ulp/srp/ | |
11169 | F: include/scsi/srp.h | |
11170 | ||
1da177e4 | 11171 | SCSI SG DRIVER |
8b58be88 | 11172 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 11173 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 11174 | W: http://sg.danny.cz/sg |
1da177e4 | 11175 | S: Maintained |
59ab3c93 | 11176 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
11177 | F: drivers/scsi/sg.c |
11178 | F: include/scsi/sg.h | |
1da177e4 LT |
11179 | |
11180 | SCSI SUBSYSTEM | |
7ee7895c | 11181 | M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com> |
0351b8f8 | 11182 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
f4ab421b MP |
11183 | M: "Martin K. Petersen" <martin.petersen@oracle.com> |
11184 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git | |
11185 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 11186 | S: Maintained |
2c99a314 | 11187 | F: Documentation/devicetree/bindings/scsi/ |
679655da JP |
11188 | F: drivers/scsi/ |
11189 | F: include/scsi/ | |
1da177e4 LT |
11190 | |
11191 | SCSI TAPE DRIVER | |
8b58be88 | 11192 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
11193 | L: linux-scsi@vger.kernel.org |
11194 | S: Maintained | |
679655da | 11195 | F: Documentation/scsi/st.txt |
f7269cfc JD |
11196 | F: drivers/scsi/st.* |
11197 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
11198 | |
11199 | SCTP PROTOCOL | |
8b6efb75 | 11200 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 11201 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 11202 | L: linux-sctp@vger.kernel.org |
5f85813c | 11203 | W: http://lksctp.sourceforge.net |
8b6efb75 | 11204 | S: Maintained |
679655da JP |
11205 | F: Documentation/networking/sctp.txt |
11206 | F: include/linux/sctp.h | |
4d58c025 | 11207 | F: include/uapi/linux/sctp.h |
679655da JP |
11208 | F: include/net/sctp/ |
11209 | F: net/sctp/ | |
1da177e4 LT |
11210 | |
11211 | SCx200 CPU SUPPORT | |
8b58be88 | 11212 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 11213 | S: Odd Fixes |
679655da | 11214 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 11215 | F: arch/x86/platform/scx200/ |
679655da JP |
11216 | F: drivers/watchdog/scx200_wdt.c |
11217 | F: drivers/i2c/busses/scx200* | |
11218 | F: drivers/mtd/maps/scx200_docflash.c | |
11219 | F: include/linux/scx200.h | |
1662d32c JC |
11220 | |
11221 | SCx200 GPIO DRIVER | |
8b58be88 | 11222 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 11223 | S: Maintained |
679655da JP |
11224 | F: drivers/char/scx200_gpio.c |
11225 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
11226 | |
11227 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 11228 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 11229 | S: Maintained |
679655da | 11230 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 11231 | |
6a36913a | 11232 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 11233 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
11234 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
11235 | S: Maintained | |
679655da | 11236 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 11237 | |
e7839f25 | 11238 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
ddfe954d | 11239 | M: Adrian Hunter <adrian.hunter@intel.com> |
7a241d6e | 11240 | L: linux-mmc@vger.kernel.org |
ddfe954d UH |
11241 | T: git git://git.infradead.org/users/ahunter/linux-sdhci.git |
11242 | S: Maintained | |
11243 | F: drivers/mmc/host/sdhci* | |
11244 | F: include/linux/mmc/sdhci* | |
e2d1d6c0 | 11245 | |
c04f9d61 KC |
11246 | SECURE COMPUTING |
11247 | M: Kees Cook <keescook@chromium.org> | |
a0cfd75f KC |
11248 | R: Andy Lutomirski <luto@amacapital.net> |
11249 | R: Will Drewry <wad@chromium.org> | |
c04f9d61 KC |
11250 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
11251 | S: Supported | |
11252 | F: kernel/seccomp.c | |
11253 | F: include/uapi/linux/seccomp.h | |
11254 | F: include/linux/seccomp.h | |
c99ee51a | 11255 | F: tools/testing/selftests/seccomp/* |
c04f9d61 KC |
11256 | K: \bsecure_computing |
11257 | K: \bTIF_SECCOMP\b | |
11258 | ||
476bf3d6 AC |
11259 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER |
11260 | M: Al Cooper <alcooperx@gmail.com> | |
11261 | L: linux-mmc@vger.kernel.org | |
11262 | L: bcm-kernel-feedback-list@broadcom.com | |
11263 | S: Maintained | |
11264 | F: drivers/mmc/host/sdhci-brcmstb* | |
11265 | ||
0d1bb41a | 11266 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 11267 | M: Ben Dooks <ben-linux@fluff.org> |
dc524882 | 11268 | M: Jaehoon Chung <jh80.chung@samsung.com> |
7a241d6e | 11269 | L: linux-mmc@vger.kernel.org |
0d1bb41a | 11270 | S: Maintained |
dc524882 | 11271 | F: drivers/mmc/host/sdhci-s3c* |
0d1bb41a | 11272 | |
c63b3cba | 11273 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
da89947b | 11274 | M: Viresh Kumar <vireshk@kernel.org> |
c63b3cba VK |
11275 | L: linux-mmc@vger.kernel.org |
11276 | S: Maintained | |
11277 | F: drivers/mmc/host/sdhci-spear.c | |
11278 | ||
455a7b23 SB |
11279 | SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER |
11280 | M: Scott Bauer <scott.bauer@intel.com> | |
11281 | M: Jonathan Derrick <jonathan.derrick@intel.com> | |
11282 | M: Rafael Antognolli <rafael.antognolli@intel.com> | |
0222967b | 11283 | L: linux-block@vger.kernel.org |
455a7b23 SB |
11284 | S: Supported |
11285 | F: block/sed* | |
11286 | F: block/opal_proto.h | |
11287 | F: include/linux/sed* | |
11288 | F: include/uapi/linux/sed* | |
11289 | ||
8711cca2 | 11290 | SECURITY SUBSYSTEM |
9b45c0d2 | 11291 | M: James Morris <james.l.morris@oracle.com> |
9c3646d1 | 11292 | M: "Serge E. Hallyn" <serge@hallyn.com> |
8711cca2 | 11293 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 11294 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 11295 | W: http://kernsec.org/ |
8711cca2 | 11296 | S: Supported |
7d2c86b5 | 11297 | F: security/ |
8711cca2 | 11298 | |
1da177e4 | 11299 | SECURITY CONTACT |
8b58be88 | 11300 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
11301 | S: Supported |
11302 | ||
11303 | SELINUX SECURITY MODULE | |
e0238b4c | 11304 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 11305 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 11306 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 11307 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 11308 | W: http://selinuxproject.org |
5a5f2acf | 11309 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 11310 | S: Supported |
679655da JP |
11311 | F: include/linux/selinux* |
11312 | F: security/selinux/ | |
6bde95ce | 11313 | F: scripts/selinux/ |
1da177e4 | 11314 | |
c1c124e9 JJ |
11315 | APPARMOR SECURITY MODULE |
11316 | M: John Johansen <john.johansen@canonical.com> | |
11317 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
11318 | W: apparmor.wiki.kernel.org | |
11319 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
11320 | S: Supported | |
11321 | F: security/apparmor/ | |
11322 | ||
9b091556 KC |
11323 | LOADPIN SECURITY MODULE |
11324 | M: Kees Cook <keescook@chromium.org> | |
11325 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin | |
11326 | S: Supported | |
11327 | F: security/loadpin/ | |
11328 | ||
730daa16 KC |
11329 | YAMA SECURITY MODULE |
11330 | M: Kees Cook <keescook@chromium.org> | |
11331 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip | |
11332 | S: Supported | |
11333 | F: security/yama/ | |
11334 | ||
cef2cf07 | 11335 | SENSABLE PHANTOM |
8b58be88 | 11336 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 11337 | S: Maintained |
679655da | 11338 | F: drivers/misc/phantom.c |
c117ab84 | 11339 | F: include/uapi/linux/phantom.h |
cef2cf07 | 11340 | |
2a1e8447 JB |
11341 | Emulex 10Gbps iSCSI - OneConnect DRIVER |
11342 | M: Subbu Seetharaman <subbu.seetharaman@broadcom.com> | |
11343 | M: Ketan Mukadam <ketan.mukadam@broadcom.com> | |
11344 | M: Jitendra Bhivare <jitendra.bhivare@broadcom.com> | |
3387f656 | 11345 | L: linux-scsi@vger.kernel.org |
2a1e8447 | 11346 | W: http://www.broadcom.com |
3387f656 JP |
11347 | S: Supported |
11348 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 11349 | |
d2ee76fa | 11350 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net) |
aa7b4537 SP |
11351 | M: Sathya Perla <sathya.perla@broadcom.com> |
11352 | M: Ajit Khaparde <ajit.khaparde@broadcom.com> | |
aa7b4537 SP |
11353 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> |
11354 | M: Somnath Kotur <somnath.kotur@broadcom.com> | |
7d2c86b5 | 11355 | L: netdev@vger.kernel.org |
fea3af67 | 11356 | W: http://www.emulex.com |
7d2c86b5 | 11357 | S: Supported |
9aebddd1 | 11358 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 11359 | |
d2928a8c | 11360 | EMULEX ONECONNECT ROCE DRIVER |
2b8e7333 LN |
11361 | M: Selvin Xavier <selvin.xavier@avagotech.com> |
11362 | M: Devesh Sharma <devesh.sharma@avagotech.com> | |
d2928a8c SX |
11363 | L: linux-rdma@vger.kernel.org |
11364 | W: http://www.emulex.com | |
11365 | S: Supported | |
11366 | F: drivers/infiniband/hw/ocrdma/ | |
a7fe7380 | 11367 | F: include/uapi/rdma/ocrdma-abi.h |
d2928a8c | 11368 | |
8ceee660 | 11369 | SFC NETWORK DRIVER |
c06f51ea | 11370 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
e00f8017 BK |
11371 | M: Edward Cree <ecree@solarflare.com> |
11372 | M: Bert Kenward <bkenward@solarflare.com> | |
c06f51ea | 11373 | L: netdev@vger.kernel.org |
8ceee660 | 11374 | S: Supported |
874aeea5 | 11375 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 11376 | |
e2d1d6c0 | 11377 | SGI GRU DRIVER |
cc883afc | 11378 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 11379 | S: Maintained |
679655da | 11380 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
11381 | |
11382 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 11383 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
11384 | L: linux-ia64@vger.kernel.org |
11385 | S: Supported | |
679655da | 11386 | F: Documentation/ia64/serial.txt |
df621252 | 11387 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 11388 | F: include/linux/ioc?.h |
e2d1d6c0 | 11389 | |
75312619 | 11390 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
11391 | M: Cliff Whickman <cpw@sgi.com> |
11392 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 11393 | S: Maintained |
679655da | 11394 | F: drivers/misc/sgi-xp/ |
75312619 | 11395 | |
46eacf3b AP |
11396 | SI2157 MEDIA DRIVER |
11397 | M: Antti Palosaari <crope@iki.fi> | |
11398 | L: linux-media@vger.kernel.org | |
a825eaec | 11399 | W: https://linuxtv.org |
46eacf3b AP |
11400 | W: http://palosaari.fi/linux/ |
11401 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11402 | T: git git://linuxtv.org/anttip/media_tree.git | |
11403 | S: Maintained | |
11404 | F: drivers/media/tuners/si2157* | |
11405 | ||
75e2d5ba AP |
11406 | SI2168 MEDIA DRIVER |
11407 | M: Antti Palosaari <crope@iki.fi> | |
11408 | L: linux-media@vger.kernel.org | |
a825eaec | 11409 | W: https://linuxtv.org |
75e2d5ba AP |
11410 | W: http://palosaari.fi/linux/ |
11411 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11412 | T: git git://linuxtv.org/anttip/media_tree.git | |
11413 | S: Maintained | |
11414 | F: drivers/media/dvb-frontends/si2168* | |
11415 | ||
49cc629d HV |
11416 | SI470X FM RADIO RECEIVER I2C DRIVER |
11417 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11418 | L: linux-media@vger.kernel.org | |
11419 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11420 | W: https://linuxtv.org |
49cc629d HV |
11421 | S: Odd Fixes |
11422 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
11423 | ||
11424 | SI470X FM RADIO RECEIVER USB DRIVER | |
11425 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11426 | L: linux-media@vger.kernel.org | |
11427 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11428 | W: https://linuxtv.org |
49cc629d HV |
11429 | S: Maintained |
11430 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
11431 | F: drivers/media/radio/si470x/radio-si470x.h | |
11432 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
11433 | ||
c937ca03 EV |
11434 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
11435 | M: Eduardo Valentin <edubezval@gmail.com> | |
11436 | L: linux-media@vger.kernel.org | |
11437 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11438 | W: https://linuxtv.org |
c937ca03 | 11439 | S: Odd Fixes |
99995ded | 11440 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
11441 | |
11442 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
11443 | M: Eduardo Valentin <edubezval@gmail.com> | |
11444 | L: linux-media@vger.kernel.org | |
11445 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11446 | W: https://linuxtv.org |
c937ca03 | 11447 | S: Odd Fixes |
99995ded DR |
11448 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
11449 | ||
11450 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
11451 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11452 | L: linux-media@vger.kernel.org | |
11453 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11454 | W: https://linuxtv.org |
99995ded DR |
11455 | S: Maintained |
11456 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 11457 | |
beb91d46 | 11458 | SIANO DVB DRIVER |
5dc8a864 MCC |
11459 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11460 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
beb91d46 | 11461 | L: linux-media@vger.kernel.org |
a825eaec | 11462 | W: https://linuxtv.org |
beb91d46 MCC |
11463 | T: git git://linuxtv.org/media_tree.git |
11464 | S: Odd fixes | |
11465 | F: drivers/media/common/siano/ | |
beb91d46 | 11466 | F: drivers/media/usb/siano/ |
beb91d46 | 11467 | F: drivers/media/usb/siano/ |
14430813 | 11468 | F: drivers/media/mmc/siano/ |
beb91d46 | 11469 | |
cef9dd85 HG |
11470 | SILEAD TOUCHSCREEN DRIVER |
11471 | M: Hans de Goede <hdegoede@redhat.com> | |
11472 | L: linux-input@vger.kernel.org | |
11473 | L: platform-driver-x86@vger.kernel.org | |
11474 | S: Maintained | |
11475 | F: drivers/input/touchscreen/silead.c | |
11476 | F: drivers/platform/x86/silead_dmi.c | |
11477 | ||
6f15b602 HG |
11478 | SIMPLEFB FB DRIVER |
11479 | M: Hans de Goede <hdegoede@redhat.com> | |
11480 | L: linux-fbdev@vger.kernel.org | |
11481 | S: Maintained | |
2d799dde | 11482 | F: Documentation/devicetree/bindings/display/simple-framebuffer.txt |
6f15b602 HG |
11483 | F: drivers/video/fbdev/simplefb.c |
11484 | F: include/linux/platform_data/simplefb.h | |
11485 | ||
b618b69c | 11486 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 11487 | L: linux-media@vger.kernel.org |
bb60fcb2 | 11488 | S: Orphan |
b618b69c | 11489 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
11490 | |
11491 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 11492 | L: linux-media@vger.kernel.org |
bb60fcb2 | 11493 | S: Orphan |
b618b69c | 11494 | F: drivers/media/platform/sh_vou.c |
d647f0b7 | 11495 | F: include/media/drv-intf/sh_vou.h |
b618b69c | 11496 | |
6349d997 | 11497 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 11498 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
11499 | L: sfi-devel@simplefirmware.org |
11500 | W: http://simplefirmware.org/ | |
11501 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 11502 | S: Supported |
943fc810 | 11503 | F: arch/x86/platform/sfi/ |
6349d997 LB |
11504 | F: drivers/sfi/ |
11505 | F: include/linux/sfi*.h | |
e2d1d6c0 | 11506 | |
1da177e4 LT |
11507 | SIMTEC EB110ATX (Chalice CATS) |
11508 | P: Ben Dooks | |
b16957c6 BD |
11509 | P: Vincent Sanders <vince@simtec.co.uk> |
11510 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
11511 | W: http://www.simtec.co.uk/products/EB110ATX/ |
11512 | S: Supported | |
11513 | ||
11514 | SIMTEC EB2410ITX (BAST) | |
11515 | P: Ben Dooks | |
b16957c6 BD |
11516 | P: Vincent Sanders <vince@simtec.co.uk> |
11517 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
11518 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
11519 | S: Supported | |
15dba387 JP |
11520 | F: arch/arm/mach-s3c24xx/mach-bast.c |
11521 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
11522 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 11523 | |
2c956a60 JD |
11524 | SIPHASH PRF ROUTINES |
11525 | M: Jason A. Donenfeld <Jason@zx2c4.com> | |
11526 | S: Maintained | |
11527 | F: lib/siphash.c | |
11528 | F: lib/test_siphash.c | |
11529 | F: include/linux/siphash.h | |
11530 | ||
4c5adde7 | 11531 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 11532 | M: Sekhar Nori <nsekhar@ti.com> |
3cf2efd5 | 11533 | M: Kevin Hilman <khilman@kernel.org> |
42c031df SN |
11534 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
11535 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git | |
4c5adde7 | 11536 | S: Supported |
14430813 | 11537 | F: arch/arm/mach-davinci/ |
046d0a37 | 11538 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 11539 | |
8d4b3f08 | 11540 | TI DAVINCI SERIES MEDIA DRIVER |
e43cdb56 | 11541 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
8d4b3f08 | 11542 | L: linux-media@vger.kernel.org |
a825eaec | 11543 | W: https://linuxtv.org |
8d4b3f08 LP |
11544 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11545 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 11546 | S: Maintained |
8d4b3f08 LP |
11547 | F: drivers/media/platform/davinci/ |
11548 | F: include/media/davinci/ | |
11549 | ||
417d2e50 | 11550 | TI AM437X VPFE DRIVER |
e43cdb56 | 11551 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
417d2e50 | 11552 | L: linux-media@vger.kernel.org |
a825eaec | 11553 | W: https://linuxtv.org |
417d2e50 BP |
11554 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11555 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
11556 | S: Maintained | |
11557 | F: drivers/media/platform/am437x/ | |
11558 | ||
c4c0283a | 11559 | OV2659 OMNIVISION SENSOR DRIVER |
e43cdb56 | 11560 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
c4c0283a | 11561 | L: linux-media@vger.kernel.org |
a825eaec | 11562 | W: https://linuxtv.org |
c4c0283a BP |
11563 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11564 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
11565 | S: Maintained | |
11566 | F: drivers/media/i2c/ov2659.c | |
b5dcee22 | 11567 | F: include/media/i2c/ov2659.h |
c4c0283a | 11568 | |
3a6779f5 SM |
11569 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
11570 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
11571 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
80567564 | 11572 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
3a6779f5 SM |
11573 | L: linux-fbdev@vger.kernel.org |
11574 | S: Maintained | |
11575 | F: drivers/video/fbdev/sm712* | |
11576 | F: Documentation/fb/sm712fb.txt | |
11577 | ||
92aab3c0 | 11578 | SIS 190 ETHERNET DRIVER |
8b58be88 | 11579 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
11580 | L: netdev@vger.kernel.org |
11581 | S: Maintained | |
8c7de408 | 11582 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 11583 | |
1da177e4 | 11584 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 11585 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 11586 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 11587 | L: netdev@vger.kernel.org |
1da177e4 | 11588 | S: Maintained |
8c7de408 | 11589 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
11590 | |
11591 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 11592 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 11593 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 11594 | S: Maintained |
679655da | 11595 | F: Documentation/fb/sisfb.txt |
8a61f013 | 11596 | F: drivers/video/fbdev/sis/ |
679655da | 11597 | F: include/video/sisfb.h |
1da177e4 LT |
11598 | |
11599 | SIS USB2VGA DRIVER | |
8b58be88 | 11600 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
11601 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
11602 | S: Maintained | |
679655da | 11603 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 11604 | |
415ad26d | 11605 | SLAB ALLOCATOR |
16e943bf | 11606 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 11607 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
11608 | M: David Rientjes <rientjes@google.com> |
11609 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
11610 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
11611 | L: linux-mm@kvack.org |
11612 | S: Maintained | |
679655da | 11613 | F: include/linux/sl?b*.h |
16e943bf | 11614 | F: mm/sl?b* |
415ad26d | 11615 | |
9fab9787 | 11616 | SLEEPABLE READ-COPY UPDATE (SRCU) |
96a39bc4 | 11617 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
9fab9787 | 11618 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 11619 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
11620 | R: Steven Rostedt <rostedt@goodmis.org> |
11621 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 11622 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
11623 | W: http://www.rdrop.com/users/paulmck/RCU/ |
11624 | S: Supported | |
11625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
11626 | F: include/linux/srcu.h |
11627 | F: kernel/rcu/srcu.c | |
9fab9787 | 11628 | |
66372841 CS |
11629 | SMACK SECURITY MODULE |
11630 | M: Casey Schaufler <casey@schaufler-ca.com> | |
11631 | L: linux-security-module@vger.kernel.org | |
11632 | W: http://schaufler-ca.com | |
ece38248 | 11633 | T: git git://github.com/cschaufler/smack-next |
66372841 CS |
11634 | S: Maintained |
11635 | F: Documentation/security/Smack.txt | |
11636 | F: security/smack/ | |
11637 | ||
20651e0b | 11638 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
68ace3e1 KH |
11639 | M: Kevin Hilman <khilman@kernel.org> |
11640 | M: Nishanth Menon <nm@ti.com> | |
11641 | S: Maintained | |
20651e0b | 11642 | F: drivers/power/avs/ |
68ace3e1 KH |
11643 | F: include/linux/power/smartreflex.h |
11644 | L: linux-pm@vger.kernel.org | |
11645 | ||
1da177e4 | 11646 | SMC91x ETHERNET DRIVER |
2f82af08 | 11647 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 11648 | S: Odd Fixes |
ae150435 | 11649 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 11650 | |
e8e31622 SA |
11651 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
11652 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
11653 | L: linux-media@vger.kernel.org | |
11654 | S: Maintained | |
14430813 | 11655 | F: drivers/media/i2c/smiapp/ |
b5dcee22 | 11656 | F: include/media/i2c/smiapp.h |
e8e31622 SA |
11657 | F: drivers/media/i2c/smiapp-pll.c |
11658 | F: drivers/media/i2c/smiapp-pll.h | |
fd2bfdc8 | 11659 | F: include/uapi/linux/smiapp.h |
a2cec3c0 | 11660 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
e8e31622 | 11661 | |
920fa1ff GR |
11662 | SMM665 HARDWARE MONITOR DRIVER |
11663 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 11664 | L: linux-hwmon@vger.kernel.org |
920fa1ff GR |
11665 | S: Maintained |
11666 | F: Documentation/hwmon/smm665 | |
11667 | F: drivers/hwmon/smm665.c | |
11668 | ||
9df7305b | 11669 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 11670 | M: Steve Glendinning <steve.glendinning@shawell.net> |
968ce1b1 | 11671 | L: linux-hwmon@vger.kernel.org |
90b24cfb | 11672 | S: Maintained |
9df7305b SG |
11673 | F: Documentation/hwmon/emc2103 |
11674 | F: drivers/hwmon/emc2103.c | |
11675 | ||
a98d506c HG |
11676 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
11677 | M: Hans de Goede <hdegoede@redhat.com> | |
968ce1b1 | 11678 | L: linux-hwmon@vger.kernel.org |
a98d506c HG |
11679 | S: Supported |
11680 | F: Documentation/hwmon/sch5627 | |
11681 | F: drivers/hwmon/sch5627.c | |
11682 | ||
6ea884db | 11683 | SMSC47B397 HARDWARE MONITOR DRIVER |
d8130624 | 11684 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 11685 | L: linux-hwmon@vger.kernel.org |
6ea884db | 11686 | S: Maintained |
679655da JP |
11687 | F: Documentation/hwmon/smsc47b397 |
11688 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 11689 | |
fd9abb3d | 11690 | SMSC911x ETHERNET DRIVER |
90b24cfb | 11691 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 11692 | L: netdev@vger.kernel.org |
90b24cfb | 11693 | S: Maintained |
679655da | 11694 | F: include/linux/smsc911x.h |
ae150435 | 11695 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
11696 | |
11697 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 11698 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 11699 | L: netdev@vger.kernel.org |
90b24cfb | 11700 | S: Maintained |
ae150435 | 11701 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 11702 | |
3c8a63e2 | 11703 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 11704 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 11705 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 11706 | S: Maintained |
8a61f013 | 11707 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 11708 | |
668acf32 | 11709 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 11710 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 11711 | L: linux-media@vger.kernel.org |
275ffde4 | 11712 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 11713 | S: Maintained |
90d72ac6 MCC |
11714 | F: include/media/soc* |
11715 | F: drivers/media/i2c/soc_camera/ | |
11716 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 11717 | |
e2d1d6c0 | 11718 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 11719 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 11720 | S: Maintained |
679655da | 11721 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 11722 | |
e3994db1 | 11723 | SOFTLOGIC 6x10 MPEG CODEC |
9661975d AU |
11724 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
11725 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
11726 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> | |
1f141f6b | 11727 | M: Ismael Luceno <ismael@iodev.co.uk> |
e3994db1 JP |
11728 | L: linux-media@vger.kernel.org |
11729 | S: Supported | |
11730 | F: drivers/media/pci/solo6x10/ | |
11731 | ||
1da177e4 | 11732 | SOFTWARE RAID (Multiple Disks) SUPPORT |
c2f662eb | 11733 | M: Shaohua Li <shli@kernel.org> |
1da177e4 | 11734 | L: linux-raid@vger.kernel.org |
0f9ce866 | 11735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git |
524418bb | 11736 | S: Supported |
679655da JP |
11737 | F: drivers/md/ |
11738 | F: include/linux/raid/ | |
c117ab84 | 11739 | F: include/uapi/linux/raid/ |
1da177e4 | 11740 | |
1da177e4 | 11741 | SONIC NETWORK DRIVER |
8b58be88 | 11742 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 11743 | L: netdev@vger.kernel.org |
1da177e4 | 11744 | S: Maintained |
d9fb9f38 | 11745 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 11746 | |
61e115a5 | 11747 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 11748 | M: Michael Buesch <m@bues.ch> |
e7828b28 | 11749 | L: linux-wireless@vger.kernel.org |
61e115a5 | 11750 | S: Maintained |
679655da JP |
11751 | F: drivers/ssb/ |
11752 | F: include/linux/ssb/ | |
61e115a5 | 11753 | |
1da177e4 | 11754 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 11755 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 11756 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 11757 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 11758 | S: Maintained |
679655da JP |
11759 | F: Documentation/laptops/sony-laptop.txt |
11760 | F: drivers/char/sonypi.c | |
11761 | F: drivers/platform/x86/sony-laptop.c | |
11762 | F: include/linux/sony-laptop.h | |
1da177e4 | 11763 | |
baf8532a | 11764 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 11765 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
11766 | W: http://tifmxx.berlios.de/ |
11767 | S: Maintained | |
679655da | 11768 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 11769 | |
0ab30494 ML |
11770 | SONY MEMORYSTICK STANDARD SUPPORT |
11771 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
11772 | S: Maintained | |
11773 | F: drivers/memstick/core/ms_block.* | |
11774 | ||
1da177e4 | 11775 | SOUND |
8b58be88 | 11776 | M: Jaroslav Kysela <perex@perex.cz> |
d8130624 | 11777 | M: Takashi Iwai <tiwai@suse.com> |
93711660 | 11778 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 11779 | W: http://www.alsa-project.org/ |
dde7ad8d | 11780 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 11781 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 11782 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 11783 | S: Maintained |
3126a179 JP |
11784 | F: Documentation/sound/ |
11785 | F: include/sound/ | |
c117ab84 | 11786 | F: include/uapi/sound/ |
679655da | 11787 | F: sound/ |
1da177e4 | 11788 | |
33bbe149 MB |
11789 | SOUND - COMPRESSED AUDIO |
11790 | M: Vinod Koul <vinod.koul@intel.com> | |
11791 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
11792 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
11793 | S: Supported | |
f672f31a | 11794 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 11795 | F: include/sound/compress_driver.h |
f672f31a | 11796 | F: include/uapi/sound/compress_* |
33bbe149 MB |
11797 | F: sound/core/compress_offload.c |
11798 | F: sound/soc/soc-compress.c | |
11799 | ||
bd903bde | 11800 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 11801 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 11802 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 11803 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 11804 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 11805 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 11806 | S: Supported |
181ad2a5 | 11807 | F: Documentation/devicetree/bindings/sound/ |
2820f615 | 11808 | F: Documentation/sound/alsa/soc/ |
679655da | 11809 | F: sound/soc/ |
e6e55122 | 11810 | F: include/sound/soc* |
eb1a6af3 | 11811 | |
d7f8761b MB |
11812 | SOUND - DMAENGINE HELPERS |
11813 | M: Lars-Peter Clausen <lars@metafoo.de> | |
11814 | S: Supported | |
11815 | F: include/sound/dmaengine_pcm.h | |
11816 | F: sound/core/pcm_dmaengine.c | |
11817 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
11818 | ||
990a6a99 OS |
11819 | SP2 MEDIA DRIVER |
11820 | M: Olli Salonen <olli.salonen@iki.fi> | |
11821 | L: linux-media@vger.kernel.org | |
a825eaec | 11822 | W: https://linuxtv.org |
990a6a99 OS |
11823 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11824 | S: Maintained | |
11825 | F: drivers/media/dvb-frontends/sp2* | |
11826 | ||
473321fc | 11827 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 11828 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 11829 | L: sparclinux@vger.kernel.org |
8a6e2535 | 11830 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
11831 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
11832 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 11833 | S: Maintained |
679655da | 11834 | F: arch/sparc/ |
7765b8bb | 11835 | F: drivers/sbus/ |
1da177e4 | 11836 | |
6404fcca DM |
11837 | SPARC SERIAL DRIVERS |
11838 | M: "David S. Miller" <davem@davemloft.net> | |
11839 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
11840 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
11841 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 11842 | S: Maintained |
6816383a | 11843 | F: include/linux/sunserialcore.h |
df621252 | 11844 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
11845 | F: drivers/tty/serial/sunhv.c |
11846 | F: drivers/tty/serial/sunsab.c | |
11847 | F: drivers/tty/serial/sunsab.h | |
11848 | F: drivers/tty/serial/sunsu.c | |
11849 | F: drivers/tty/serial/sunzilog.c | |
11850 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 11851 | |
389325b4 CL |
11852 | SPARSE CHECKER |
11853 | M: "Christopher Li" <sparse@chrisli.org> | |
11854 | L: linux-sparse@vger.kernel.org | |
11855 | W: https://sparse.wiki.kernel.org/ | |
11856 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
11857 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
11858 | S: Maintained | |
11859 | F: include/linux/compiler.h | |
11860 | ||
fc0c195a | 11861 | SPEAR PLATFORM SUPPORT |
da89947b | 11862 | M: Viresh Kumar <vireshk@kernel.org> |
9cc23682 | 11863 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 | 11864 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
11865 | W: http://www.st.com/spear |
11866 | S: Maintained | |
e68d7c14 | 11867 | F: arch/arm/boot/dts/spear* |
281e192f | 11868 | F: arch/arm/mach-spear/ |
fc0c195a VK |
11869 | |
11870 | SPEAR CLOCK FRAMEWORK SUPPORT | |
da89947b | 11871 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 | 11872 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
11873 | W: http://www.st.com/spear |
11874 | S: Maintained | |
5df33a62 | 11875 | F: drivers/clk/spear/ |
fc0c195a | 11876 | |
e2796541 CP |
11877 | SPI NOR SUBSYSTEM |
11878 | M: Cyrille Pitchen <cyrille.pitchen@atmel.com> | |
11879 | M: Marek Vasut <marek.vasut@gmail.com> | |
11880 | L: linux-mtd@lists.infradead.org | |
11881 | W: http://www.linux-mtd.infradead.org/ | |
11882 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
11883 | T: git git://github.com/spi-nor/linux.git | |
11884 | S: Maintained | |
11885 | F: drivers/mtd/spi-nor/ | |
11886 | F: include/linux/mtd/spi-nor.h | |
11887 | ||
e2d1d6c0 | 11888 | SPI SUBSYSTEM |
b02e48f2 | 11889 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 11890 | L: linux-spi@vger.kernel.org |
e7e4e13c | 11891 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 11892 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 11893 | S: Maintained |
87306eb7 | 11894 | F: Documentation/devicetree/bindings/spi/ |
679655da JP |
11895 | F: Documentation/spi/ |
11896 | F: drivers/spi/ | |
11897 | F: include/linux/spi/ | |
c117ab84 | 11898 | F: include/uapi/linux/spi/ |
a43cd4bb | 11899 | F: tools/spi/ |
e2d1d6c0 | 11900 | |
2752e401 | 11901 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 | 11902 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
2752e401 JL |
11903 | L: netdev@vger.kernel.org |
11904 | S: Supported | |
679655da | 11905 | F: Documentation/networking/spider_net.txt |
8df158ac | 11906 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 11907 | |
e2d1d6c0 | 11908 | SPU FILE SYSTEM |
8b58be88 | 11909 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 | 11910 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 RD |
11911 | W: http://www.ibm.com/developerworks/power/cell/ |
11912 | S: Supported | |
679655da JP |
11913 | F: Documentation/filesystems/spufs.txt |
11914 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 11915 | |
fc555841 | 11916 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 11917 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
11918 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
11919 | W: http://squashfs.org.uk | |
9f273c24 | 11920 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git |
fc555841 | 11921 | S: Maintained |
679655da JP |
11922 | F: Documentation/filesystems/squashfs.txt |
11923 | F: fs/squashfs/ | |
fc555841 | 11924 | |
1da177e4 | 11925 | SRM (Alpha) environment access |
8b58be88 | 11926 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 11927 | S: Maintained |
679655da | 11928 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 11929 | |
26e9a397 | 11930 | STABLE BRANCH |
879a5a00 | 11931 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 11932 | L: stable@vger.kernel.org |
879a5a00 | 11933 | S: Supported |
8c27ceff | 11934 | F: Documentation/process/stable-kernel-rules.rst |
e2d1d6c0 | 11935 | |
26e9a397 | 11936 | STAGING SUBSYSTEM |
879a5a00 | 11937 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 11938 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 11939 | L: devel@driverdev.osuosl.org |
879a5a00 | 11940 | S: Supported |
679655da | 11941 | F: drivers/staging/ |
dbc6c2cc | 11942 | |
ebd3d010 JP |
11943 | STAGING - COMEDI |
11944 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 11945 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
11946 | S: Odd Fixes |
11947 | F: drivers/staging/comedi/ | |
11948 | ||
a0138163 JP |
11949 | STAGING - FLARION FT1000 DRIVERS |
11950 | M: Marek Belisko <marek.belisko@gmail.com> | |
11951 | S: Odd Fixes | |
11952 | F: drivers/staging/ft1000/ | |
11953 | ||
6c1bb424 | 11954 | STAGING - INDUSTRIAL IO |
030a13d7 | 11955 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 11956 | L: linux-iio@vger.kernel.org |
6c1bb424 | 11957 | S: Odd Fixes |
5291582d | 11958 | F: Documentation/devicetree/bindings/staging/iio/ |
6c1bb424 JP |
11959 | F: drivers/staging/iio/ |
11960 | ||
a0138163 JP |
11961 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
11962 | M: Jarod Wilson <jarod@wilsonet.com> | |
11963 | W: http://www.lirc.org/ | |
11964 | S: Odd Fixes | |
b2b0186d | 11965 | F: drivers/staging/media/lirc/ |
a0138163 | 11966 | |
f5e5de1e OD |
11967 | STAGING - LUSTRE PARALLEL FILESYSTEM |
11968 | M: Oleg Drokin <oleg.drokin@intel.com> | |
11969 | M: Andreas Dilger <andreas.dilger@intel.com> | |
8701dbf9 | 11970 | M: James Simmons <jsimmons@infradead.org> |
d98229f0 AD |
11971 | L: lustre-devel@lists.lustre.org (moderated for non-subscribers) |
11972 | W: http://wiki.lustre.org/ | |
f5e5de1e OD |
11973 | S: Maintained |
11974 | F: drivers/staging/lustre | |
11975 | ||
7c6b6c71 MD |
11976 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
11977 | M: Marc Dietrich <marvin24@gmx.de> | |
11978 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 11979 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
11980 | S: Maintained |
11981 | F: drivers/staging/nvec/ | |
11982 | ||
53c43c5c GKH |
11983 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
11984 | M: Jens Frederich <jfrederich@gmail.com> | |
11985 | M: Daniel Drake <dsd@laptop.org> | |
11986 | M: Jon Nettleton <jon.nettleton@gmail.com> | |
11987 | W: http://wiki.laptop.org/go/DCON | |
11988 | S: Maintained | |
11989 | F: drivers/staging/olpc_dcon/ | |
11990 | ||
a0138163 JP |
11991 | STAGING - REALTEK RTL8712U DRIVERS |
11992 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
11993 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
11994 | S: Odd Fixes | |
11995 | F: drivers/staging/rtl8712/ | |
11996 | ||
980ac4d7 SM |
11997 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
11998 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
11999 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
80567564 | 12000 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
980ac4d7 SM |
12001 | L: linux-fbdev@vger.kernel.org |
12002 | S: Maintained | |
12003 | F: drivers/staging/sm750fb/ | |
12004 | ||
a0138163 JP |
12005 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
12006 | M: William Hubbs <w.d.hubbs@gmail.com> | |
12007 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 12008 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 12009 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 12010 | L: speakup@linux-speakup.org |
a0138163 JP |
12011 | W: http://www.linux-speakup.org/ |
12012 | S: Odd Fixes | |
12013 | F: drivers/staging/speakup/ | |
12014 | ||
b3e871ce JP |
12015 | STAGING - VIA VT665X DRIVERS |
12016 | M: Forest Bond <forest@alittletooquiet.net> | |
12017 | S: Odd Fixes | |
12018 | F: drivers/staging/vt665?/ | |
12019 | ||
a30baec1 | 12020 | STAGING - WILC1000 WIFI DRIVER |
d9a85940 AS |
12021 | M: Aditya Shankar <aditya.shankar@microchip.com> |
12022 | M: Ganesh Krishna <ganesh.krishna@microchip.com> | |
a30baec1 JK |
12023 | L: linux-wireless@vger.kernel.org |
12024 | S: Supported | |
12025 | F: drivers/staging/wilc1000/ | |
12026 | ||
709bcb07 | 12027 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 12028 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
12029 | S: Odd Fixes |
12030 | F: drivers/staging/xgifb/ | |
12031 | ||
1da177e4 | 12032 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 12033 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 12034 | S: Odd Fixes |
9bba23b0 | 12035 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 12036 | |
e2d1d6c0 | 12037 | SUN3/3X |
8b58be88 | 12038 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
12039 | W: http://sammy.net/sun3/ |
12040 | S: Maintained | |
679655da JP |
12041 | F: arch/m68k/kernel/*sun3* |
12042 | F: arch/m68k/sun3*/ | |
12043 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 12044 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 12045 | |
af6a5af8 HG |
12046 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
12047 | M: Hans de Goede <hdegoede@redhat.com> | |
12048 | L: linux-input@vger.kernel.org | |
12049 | S: Maintained | |
12050 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | |
12051 | F: drivers/input/keyboard/sun4i-lradc-keys.c | |
12052 | ||
2bc9ff01 DK |
12053 | SUNDANCE NETWORK DRIVER |
12054 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
12055 | L: netdev@vger.kernel.org | |
12056 | S: Maintained | |
12057 | F: drivers/net/ethernet/dlink/sundance.c | |
12058 | ||
2cbb12a4 | 12059 | SUPERH |
114bf37e RF |
12060 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
12061 | M: Rich Felker <dalias@libc.org> | |
2cbb12a4 | 12062 | L: linux-sh@vger.kernel.org |
8a6e2535 | 12063 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
114bf37e | 12064 | S: Maintained |
066069e1 | 12065 | F: Documentation/sh/ |
679655da | 12066 | F: arch/sh/ |
066069e1 | 12067 | F: drivers/sh/ |
1da177e4 | 12068 | |
4480f15b | 12069 | SUSPEND TO RAM |
7fb06082 | 12070 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
12071 | M: Len Brown <len.brown@intel.com> |
12072 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 12073 | L: linux-pm@vger.kernel.org |
68656443 | 12074 | B: https://bugzilla.kernel.org |
e2d1d6c0 | 12075 | S: Supported |
679655da JP |
12076 | F: Documentation/power/ |
12077 | F: arch/x86/kernel/acpi/ | |
12078 | F: drivers/base/power/ | |
12079 | F: kernel/power/ | |
12080 | F: include/linux/suspend.h | |
12081 | F: include/linux/freezer.h | |
12082 | F: include/linux/pm.h | |
1da177e4 LT |
12083 | |
12084 | SVGA HANDLING | |
8b58be88 | 12085 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
12086 | L: linux-video@atrey.karlin.mff.cuni.cz |
12087 | S: Maintained | |
679655da JP |
12088 | F: Documentation/svga.txt |
12089 | F: arch/x86/boot/video* | |
1da177e4 | 12090 | |
6e28b761 KRW |
12091 | SWIOTLB SUBSYSTEM |
12092 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
12093 | L: linux-kernel@vger.kernel.org | |
9f273c24 | 12094 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git |
6e28b761 KRW |
12095 | S: Supported |
12096 | F: lib/swiotlb.c | |
12097 | F: arch/*/kernel/pci-swiotlb.c | |
12098 | F: include/linux/swiotlb.h | |
12099 | ||
007f790c JP |
12100 | SWITCHDEV |
12101 | M: Jiri Pirko <jiri@resnulli.us> | |
f38c5ad7 | 12102 | M: Ivan Vecera <ivecera@redhat.com> |
007f790c JP |
12103 | L: netdev@vger.kernel.org |
12104 | S: Supported | |
12105 | F: net/switchdev/ | |
12106 | F: include/net/switchdev.h | |
12107 | ||
db8e35d5 VG |
12108 | SYNOPSYS ARC ARCHITECTURE |
12109 | M: Vineet Gupta <vgupta@synopsys.com> | |
30b9dbee | 12110 | L: linux-snps-arc@lists.infradead.org |
db8e35d5 VG |
12111 | S: Supported |
12112 | F: arch/arc/ | |
9b28829d | 12113 | F: Documentation/devicetree/bindings/arc/* |
2d799dde | 12114 | F: Documentation/devicetree/bindings/interrupt-controller/snps,arc* |
c4c9a040 | 12115 | F: drivers/clocksource/arc_timer.c |
c6a0fe4a | 12116 | F: drivers/tty/serial/arc_uart.c |
b7182d1a | 12117 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
db8e35d5 | 12118 | |
556cc1c5 AB |
12119 | SYNOPSYS ARC SDP platform support |
12120 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
12121 | S: Supported | |
12122 | F: arch/arc/plat-axs10x | |
12123 | F: arch/arc/boot/dts/ax* | |
12124 | F: Documentation/devicetree/bindings/arc/axs10* | |
12125 | ||
6c284c9a LJ |
12126 | SYSTEM CONFIGURATION (SYSCON) |
12127 | M: Lee Jones <lee.jones@linaro.org> | |
12128 | M: Arnd Bergmann <arnd@arndb.de> | |
12129 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git | |
12130 | S: Supported | |
12131 | F: drivers/mfd/syscon.c | |
12132 | ||
8c0984e5 SR |
12133 | SYSTEM RESET/SHUTDOWN DRIVERS |
12134 | M: Sebastian Reichel <sre@kernel.org> | |
8c0984e5 | 12135 | L: linux-pm@vger.kernel.org |
58db9505 | 12136 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git |
8c0984e5 SR |
12137 | S: Maintained |
12138 | F: Documentation/devicetree/bindings/power/reset/ | |
12139 | F: drivers/power/reset/ | |
12140 | ||
1da177e4 | 12141 | SYSV FILESYSTEM |
8b58be88 | 12142 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 12143 | S: Maintained |
679655da JP |
12144 | F: Documentation/filesystems/sysv-fs.txt |
12145 | F: fs/sysv/ | |
12146 | F: include/linux/sysv_fs.h | |
1da177e4 | 12147 | |
86cfa7fc | 12148 | TARGET SUBSYSTEM |
9c3646d1 | 12149 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
86cfa7fc | 12150 | L: linux-scsi@vger.kernel.org |
b9f5edc2 | 12151 | L: target-devel@vger.kernel.org |
86cfa7fc | 12152 | W: http://www.linux-iscsi.org |
cf015e9f | 12153 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 12154 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
12155 | S: Supported |
12156 | F: drivers/target/ | |
12157 | F: include/target/ | |
12158 | F: Documentation/target/ | |
12159 | ||
4e68852d | 12160 | TASKSTATS STATISTICS INTERFACE |
185e595f | 12161 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 12162 | S: Maintained |
679655da JP |
12163 | F: Documentation/accounting/taskstats* |
12164 | F: include/linux/taskstats* | |
12165 | F: kernel/taskstats.c | |
4e68852d | 12166 | |
781b456a | 12167 | TC CLASSIFIER |
f935f3f8 | 12168 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
12169 | L: netdev@vger.kernel.org |
12170 | S: Maintained | |
679655da | 12171 | F: include/net/pkt_cls.h |
c117ab84 | 12172 | F: include/uapi/linux/pkt_cls.h |
679655da | 12173 | F: net/sched/ |
781b456a | 12174 | |
5067f08a | 12175 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
12176 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
12177 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
12178 | W: http://tcp-lp-mod.sourceforge.net/ |
12179 | S: Maintained | |
679655da | 12180 | F: net/ipv4/tcp_lp.c |
5067f08a | 12181 | |
91952bc0 AP |
12182 | TDA10071 MEDIA DRIVER |
12183 | M: Antti Palosaari <crope@iki.fi> | |
12184 | L: linux-media@vger.kernel.org | |
a825eaec | 12185 | W: https://linuxtv.org |
91952bc0 AP |
12186 | W: http://palosaari.fi/linux/ |
12187 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12188 | T: git git://linuxtv.org/anttip/media_tree.git | |
12189 | S: Maintained | |
12190 | F: drivers/media/dvb-frontends/tda10071* | |
12191 | ||
12192 | TDA18212 MEDIA DRIVER | |
12193 | M: Antti Palosaari <crope@iki.fi> | |
12194 | L: linux-media@vger.kernel.org | |
a825eaec | 12195 | W: https://linuxtv.org |
91952bc0 AP |
12196 | W: http://palosaari.fi/linux/ |
12197 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12198 | T: git git://linuxtv.org/anttip/media_tree.git | |
12199 | S: Maintained | |
12200 | F: drivers/media/tuners/tda18212* | |
12201 | ||
12202 | TDA18218 MEDIA DRIVER | |
12203 | M: Antti Palosaari <crope@iki.fi> | |
12204 | L: linux-media@vger.kernel.org | |
a825eaec | 12205 | W: https://linuxtv.org |
91952bc0 AP |
12206 | W: http://palosaari.fi/linux/ |
12207 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12208 | T: git git://linuxtv.org/anttip/media_tree.git | |
12209 | S: Maintained | |
12210 | F: drivers/media/tuners/tda18218* | |
12211 | ||
3b2f6aba MK |
12212 | TDA18271 MEDIA DRIVER |
12213 | M: Michael Krufky <mkrufky@linuxtv.org> | |
12214 | L: linux-media@vger.kernel.org | |
a825eaec | 12215 | W: https://linuxtv.org |
3b2f6aba MK |
12216 | W: http://github.com/mkrufky |
12217 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12218 | T: git git://linuxtv.org/mkrufky/tuners.git | |
12219 | S: Maintained | |
12220 | F: drivers/media/tuners/tda18271* | |
12221 | ||
e48307a9 MK |
12222 | TDA827x MEDIA DRIVER |
12223 | M: Michael Krufky <mkrufky@linuxtv.org> | |
12224 | L: linux-media@vger.kernel.org | |
a825eaec | 12225 | W: https://linuxtv.org |
e48307a9 MK |
12226 | W: http://github.com/mkrufky |
12227 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12228 | T: git git://linuxtv.org/mkrufky/tuners.git | |
12229 | S: Maintained | |
12230 | F: drivers/media/tuners/tda8290.* | |
12231 | ||
66cf9212 MK |
12232 | TDA8290 MEDIA DRIVER |
12233 | M: Michael Krufky <mkrufky@linuxtv.org> | |
12234 | L: linux-media@vger.kernel.org | |
a825eaec | 12235 | W: https://linuxtv.org |
66cf9212 MK |
12236 | W: http://github.com/mkrufky |
12237 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12238 | T: git git://linuxtv.org/mkrufky/tuners.git | |
12239 | S: Maintained | |
12240 | F: drivers/media/tuners/tda8290.* | |
12241 | ||
4b9fba30 HV |
12242 | TDA9840 MEDIA DRIVER |
12243 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12244 | L: linux-media@vger.kernel.org | |
12245 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12246 | W: https://linuxtv.org |
4b9fba30 HV |
12247 | S: Maintained |
12248 | F: drivers/media/i2c/tda9840* | |
12249 | ||
2cb654fd | 12250 | TEA5761 TUNER DRIVER |
5dc8a864 MCC |
12251 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
12252 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 12253 | L: linux-media@vger.kernel.org |
a825eaec | 12254 | W: https://linuxtv.org |
2cb654fd MCC |
12255 | T: git git://linuxtv.org/media_tree.git |
12256 | S: Odd fixes | |
12257 | F: drivers/media/tuners/tea5761.* | |
12258 | ||
12259 | TEA5767 TUNER DRIVER | |
5dc8a864 MCC |
12260 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
12261 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 12262 | L: linux-media@vger.kernel.org |
a825eaec | 12263 | W: https://linuxtv.org |
2cb654fd MCC |
12264 | T: git git://linuxtv.org/media_tree.git |
12265 | S: Maintained | |
12266 | F: drivers/media/tuners/tea5767.* | |
12267 | ||
4b9fba30 HV |
12268 | TEA6415C MEDIA DRIVER |
12269 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12270 | L: linux-media@vger.kernel.org | |
12271 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12272 | W: https://linuxtv.org |
4b9fba30 HV |
12273 | S: Maintained |
12274 | F: drivers/media/i2c/tea6415c* | |
12275 | ||
12276 | TEA6420 MEDIA DRIVER | |
12277 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12278 | L: linux-media@vger.kernel.org | |
12279 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12280 | W: https://linuxtv.org |
4b9fba30 HV |
12281 | S: Maintained |
12282 | F: drivers/media/i2c/tea6420* | |
12283 | ||
3d249d4c | 12284 | TEAM DRIVER |
dca9ab92 | 12285 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
12286 | L: netdev@vger.kernel.org |
12287 | S: Supported | |
12288 | F: drivers/net/team/ | |
12289 | F: include/linux/if_team.h | |
c117ab84 | 12290 | F: include/uapi/linux/if_team.h |
3d249d4c | 12291 | |
7d029125 | 12292 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9c3646d1 | 12293 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
7d029125 VD |
12294 | S: Maintained |
12295 | F: arch/x86/platform/ts5500/ | |
12296 | ||
40ad4a30 SY |
12297 | TECHNOTREND USB IR RECEIVER |
12298 | M: Sean Young <sean@mess.org> | |
12299 | L: linux-media@vger.kernel.org | |
12300 | S: Maintained | |
12301 | F: drivers/media/rc/ttusbir.c | |
12302 | ||
adabdb0c | 12303 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 12304 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 12305 | M: Thierry Reding <thierry.reding@gmail.com> |
554077c5 | 12306 | M: Alexandre Courbot <gnurou@gmail.com> |
84b9414b | 12307 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 12308 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 12309 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 12310 | S: Supported |
bbbe96ed | 12311 | N: [^a-z]tegra |
84b9414b | 12312 | |
adabdb0c SW |
12313 | TEGRA CLOCK DRIVER |
12314 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
12315 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
12316 | S: Supported | |
12317 | F: drivers/clk/tegra/ | |
12318 | ||
86e486a0 | 12319 | TEGRA DMA DRIVERS |
adabdb0c | 12320 | M: Laxman Dewangan <ldewangan@nvidia.com> |
86e486a0 | 12321 | M: Jon Hunter <jonathanh@nvidia.com> |
adabdb0c | 12322 | S: Supported |
86e486a0 | 12323 | F: drivers/dma/tegra* |
adabdb0c | 12324 | |
adabdb0c SW |
12325 | TEGRA I2C DRIVER |
12326 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12327 | S: Supported | |
12328 | F: drivers/i2c/busses/i2c-tegra.c | |
12329 | ||
12330 | TEGRA IOMMU DRIVERS | |
12331 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
12332 | S: Supported | |
12333 | F: drivers/iommu/tegra* | |
12334 | ||
12335 | TEGRA KBC DRIVER | |
12336 | M: Rakesh Iyer <riyer@nvidia.com> | |
12337 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12338 | S: Supported | |
12339 | F: drivers/input/keyboard/tegra-kbc.c | |
12340 | ||
adabdb0c SW |
12341 | TEGRA PWM DRIVER |
12342 | M: Thierry Reding <thierry.reding@gmail.com> | |
12343 | S: Supported | |
12344 | F: drivers/pwm/pwm-tegra.c | |
12345 | ||
12346 | TEGRA SERIAL DRIVER | |
12347 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12348 | S: Supported | |
12349 | F: drivers/tty/serial/serial-tegra.c | |
12350 | ||
12351 | TEGRA SPI DRIVER | |
12352 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12353 | S: Supported | |
12354 | F: drivers/spi/spi-tegra* | |
12355 | ||
1a348ccc | 12356 | TEHUTI ETHERNET DRIVER |
8b58be88 | 12357 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
12358 | L: netdev@vger.kernel.org |
12359 | S: Supported | |
ef7f5429 | 12360 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 12361 | |
4e68852d | 12362 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 12363 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 12364 | S: Supported |
679655da | 12365 | F: drivers/char/tlclk.c |
4e68852d | 12366 | |
4480f15b | 12367 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 12368 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
12369 | M: Max Filippov <jcmvbkbc@gmail.com> |
12370 | L: linux-xtensa@linux-xtensa.org | |
9f273c24 | 12371 | T: git git://github.com/czankel/xtensa-linux.git |
4e68852d | 12372 | S: Maintained |
679655da | 12373 | F: arch/xtensa/ |
3dc99857 | 12374 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 12375 | |
04f1024e NM |
12376 | Texas Instruments' System Control Interface (TISCI) Protocol Driver |
12377 | M: Nishanth Menon <nm@ti.com> | |
12378 | M: Tero Kristo <t-kristo@ti.com> | |
12379 | M: Santosh Shilimkar <ssantosh@kernel.org> | |
12380 | L: linux-arm-kernel@lists.infradead.org | |
12381 | S: Maintained | |
12382 | F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt | |
aa276781 NM |
12383 | F: drivers/firmware/ti_sci* |
12384 | F: include/linux/soc/ti/ti_sci_protocol.h | |
04f1024e | 12385 | |
5313ba66 HV |
12386 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
12387 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12388 | L: linux-media@vger.kernel.org | |
12389 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12390 | W: https://linuxtv.org |
5313ba66 HV |
12391 | S: Maintained |
12392 | F: drivers/media/radio/radio-raremono.c | |
12393 | ||
d3fb6955 | 12394 | THERMAL |
b75f0050 | 12395 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 12396 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
12397 | L: linux-pm@vger.kernel.org |
12398 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
12399 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
12400 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
12401 | S: Supported | |
12402 | F: drivers/thermal/ | |
12403 | F: include/linux/thermal.h | |
af6c9f16 | 12404 | F: include/uapi/linux/thermal.h |
b75f0050 JP |
12405 | F: include/linux/cpu_cooling.h |
12406 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 12407 | |
64e05d8b VK |
12408 | THERMAL/CPU_COOLING |
12409 | M: Amit Daniel Kachhap <amit.kachhap@gmail.com> | |
12410 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
9a2172a8 | 12411 | M: Javi Merino <javi.merino@kernel.org> |
64e05d8b VK |
12412 | L: linux-pm@vger.kernel.org |
12413 | S: Supported | |
12414 | F: Documentation/thermal/cpu-cooling-api.txt | |
12415 | F: drivers/thermal/cpu_cooling.c | |
12416 | F: include/linux/cpu_cooling.h | |
12417 | ||
4e68852d | 12418 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 12419 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 12420 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 12421 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
12422 | W: http://ibm-acpi.sourceforge.net |
12423 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 12424 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 12425 | S: Maintained |
679655da | 12426 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 12427 | |
1b46f2a2 | 12428 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 12429 | M: Eduardo Valentin <edubezval@gmail.com> |
ef41be81 | 12430 | M: Keerthy <j-keerthy@ti.com> |
1b46f2a2 | 12431 | L: linux-pm@vger.kernel.org |
531ff13e | 12432 | L: linux-omap@vger.kernel.org |
5a723e81 | 12433 | S: Maintained |
794b2e25 | 12434 | F: drivers/thermal/ti-soc-thermal/ |
1b46f2a2 | 12435 | |
ccf963d3 BP |
12436 | TI VPE/CAL DRIVERS |
12437 | M: Benoit Parrot <bparrot@ti.com> | |
12438 | L: linux-media@vger.kernel.org | |
12439 | W: http://linuxtv.org/ | |
12440 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12441 | S: Maintained | |
12442 | F: drivers/media/platform/ti-vpe/ | |
12443 | ||
0c7665c3 MF |
12444 | TI CDCE706 CLOCK DRIVER |
12445 | M: Max Filippov <jcmvbkbc@gmail.com> | |
12446 | S: Maintained | |
12447 | F: drivers/clk/clk-cdce706.c | |
12448 | ||
49b6a5e3 TK |
12449 | TI CLOCK DRIVER |
12450 | M: Tero Kristo <t-kristo@ti.com> | |
12451 | L: linux-omap@vger.kernel.org | |
12452 | S: Maintained | |
12453 | F: drivers/clk/ti/ | |
12454 | F: include/linux/clk/ti.h | |
12455 | ||
f75cfbad GS |
12456 | TI ETHERNET SWITCH DRIVER (CPSW) |
12457 | M: Mugunthan V N <mugunthanvnm@ti.com> | |
12458 | R: Grygorii Strashko <grygorii.strashko@ti.com> | |
12459 | L: linux-omap@vger.kernel.org | |
12460 | L: netdev@vger.kernel.org | |
12461 | S: Maintained | |
12462 | F: drivers/net/ethernet/ti/cpsw* | |
12463 | F: drivers/net/ethernet/ti/davinci* | |
12464 | ||
4020f2d7 | 12465 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 12466 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 12467 | S: Maintained |
679655da JP |
12468 | F: drivers/misc/tifm* |
12469 | F: drivers/mmc/host/tifm_sd.c | |
12470 | F: include/linux/tifm.h | |
4020f2d7 | 12471 | |
e0c52404 | 12472 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
97215800 | 12473 | M: Santosh Shilimkar <ssantosh@kernel.org> |
e0c52404 SS |
12474 | L: linux-kernel@vger.kernel.org |
12475 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
12476 | S: Maintained | |
12477 | F: drivers/soc/ti/* | |
12478 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
12479 | ||
12480 | ||
152ad442 SR |
12481 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
12482 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 12483 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
12484 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
12485 | S: Maintained | |
12486 | F: sound/soc/codecs/lm49453* | |
d392dead | 12487 | F: sound/soc/codecs/isabelle* |
152ad442 | 12488 | |
0edd807d KM |
12489 | TI LP855x BACKLIGHT DRIVER |
12490 | M: Milo Kim <milo.kim@ti.com> | |
12491 | S: Maintained | |
12492 | F: Documentation/backlight/lp855x-driver.txt | |
12493 | F: drivers/video/backlight/lp855x_bl.c | |
12494 | F: include/linux/platform_data/lp855x.h | |
12495 | ||
faf13f6d KM |
12496 | TI LP8727 CHARGER DRIVER |
12497 | M: Milo Kim <milo.kim@ti.com> | |
12498 | S: Maintained | |
8c0984e5 | 12499 | F: drivers/power/supply/lp8727_charger.c |
faf13f6d KM |
12500 | F: include/linux/platform_data/lp8727.h |
12501 | ||
22f1229f KM |
12502 | TI LP8788 MFD DRIVER |
12503 | M: Milo Kim <milo.kim@ti.com> | |
12504 | S: Maintained | |
12505 | F: drivers/iio/adc/lp8788_adc.c | |
12506 | F: drivers/leds/leds-lp8788.c | |
12507 | F: drivers/mfd/lp8788*.c | |
8c0984e5 | 12508 | F: drivers/power/supply/lp8788-charger.c |
22f1229f KM |
12509 | F: drivers/regulator/lp8788-*.c |
12510 | F: include/linux/mfd/lp8788*.h | |
12511 | ||
84640e27 KM |
12512 | TI NETCP ETHERNET DRIVER |
12513 | M: Wingman Kwok <w-kwok2@ti.com> | |
12514 | M: Murali Karicheri <m-karicheri2@ti.com> | |
12515 | L: netdev@vger.kernel.org | |
12516 | S: Maintained | |
12517 | F: drivers/net/ethernet/ti/netcp* | |
12518 | ||
217e0ca9 KC |
12519 | TI TAS571X FAMILY ASoC CODEC DRIVER |
12520 | M: Kevin Cernekee <cernekee@chromium.org> | |
12521 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
12522 | S: Odd Fixes | |
12523 | F: sound/soc/codecs/tas571x* | |
12524 | ||
dd5e8e6b | 12525 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 12526 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
12527 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
12528 | S: Maintained | |
12529 | F: sound/soc/codecs/twl4030* | |
12530 | ||
90921014 | 12531 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
12532 | L: linux-wireless@vger.kernel.org |
12533 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
12534 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
12535 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 12536 | S: Orphan |
90921014 LC |
12537 | F: drivers/net/wireless/ti/ |
12538 | F: include/linux/wl12xx.h | |
12539 | ||
e86eaa3a | 12540 | TIPC NETWORK LAYER |
8b58be88 | 12541 | M: Jon Maloy <jon.maloy@ericsson.com> |
115403df | 12542 | M: Ying Xue <ying.xue@windriver.com> |
633d2bde AS |
12543 | L: netdev@vger.kernel.org (core kernel code) |
12544 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 12545 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 12546 | S: Maintained |
c117ab84 | 12547 | F: include/uapi/linux/tipc*.h |
679655da | 12548 | F: net/tipc/ |
e86eaa3a | 12549 | |
867e359b | 12550 | TILE ARCHITECTURE |
b9a279f6 | 12551 | M: Chris Metcalf <cmetcalf@mellanox.com> |
8c34d8d9 | 12552 | W: http://www.mellanox.com/repository/solutions/tile-scm/ |
7fa129cc | 12553 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git |
867e359b CM |
12554 | S: Supported |
12555 | F: arch/tile/ | |
6b940606 | 12556 | F: drivers/char/tile-srom.c |
5c770755 | 12557 | F: drivers/edac/tile_edac.c |
6b940606 CM |
12558 | F: drivers/net/ethernet/tile/ |
12559 | F: drivers/rtc/rtc-tile.c | |
12560 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 12561 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
12562 | F: drivers/usb/host/*-tilegx.c |
12563 | F: include/linux/usb/tilegx.h | |
867e359b | 12564 | |
1da177e4 | 12565 | TLAN NETWORK DRIVER |
8b58be88 | 12566 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 12567 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
12568 | W: http://sourceforge.net/projects/tlan/ |
12569 | S: Maintained | |
679655da | 12570 | F: Documentation/networking/tlan.txt |
b544dbac | 12571 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 12572 | |
d74db3b2 | 12573 | TOMOYO SECURITY MODULE |
8b58be88 JP |
12574 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
12575 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
12576 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
12577 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
12578 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
12579 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
12580 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 12581 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 12582 | S: Maintained |
679655da | 12583 | F: security/tomoyo/ |
d74db3b2 | 12584 | |
9caeb532 | 12585 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 12586 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 12587 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
12588 | S: Maintained |
12589 | F: drivers/platform/x86/topstar-laptop.c | |
12590 | ||
1da177e4 | 12591 | TOSHIBA ACPI EXTRAS DRIVER |
0a63ca11 | 12592 | M: Azael Avalos <coproscefalo@gmail.com> |
d0944853 | 12593 | L: platform-driver-x86@vger.kernel.org |
0a63ca11 | 12594 | S: Maintained |
679655da | 12595 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 | 12596 | |
0a63ca11 AA |
12597 | TOSHIBA BLUETOOTH DRIVER |
12598 | M: Azael Avalos <coproscefalo@gmail.com> | |
12599 | L: platform-driver-x86@vger.kernel.org | |
12600 | S: Maintained | |
12601 | F: drivers/platform/x86/toshiba_bluetooth.c | |
12602 | ||
12603 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER | |
12604 | M: Azael Avalos <coproscefalo@gmail.com> | |
12605 | L: platform-driver-x86@vger.kernel.org | |
12606 | S: Maintained | |
12607 | F: drivers/platform/x86/toshiba_haps.c | |
12608 | ||
14991fc7 AA |
12609 | TOSHIBA WMI HOTKEYS DRIVER |
12610 | M: Azael Avalos <coproscefalo@gmail.com> | |
12611 | L: platform-driver-x86@vger.kernel.org | |
12612 | S: Maintained | |
12613 | F: drivers/platform/x86/toshiba-wmi.c | |
12614 | ||
1da177e4 | 12615 | TOSHIBA SMM DRIVER |
8b58be88 | 12616 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
12617 | W: http://www.buzzard.org.uk/toshiba/ |
12618 | S: Maintained | |
679655da JP |
12619 | F: drivers/char/toshiba.c |
12620 | F: include/linux/toshiba.h | |
c117ab84 | 12621 | F: include/uapi/linux/toshiba.h |
1da177e4 | 12622 | |
d32d9864 MR |
12623 | TOSHIBA TC358743 DRIVER |
12624 | M: Mats Randgaard <matrandg@cisco.com> | |
12625 | L: linux-media@vger.kernel.org | |
12626 | S: Maintained | |
12627 | F: drivers/media/i2c/tc358743* | |
b5dcee22 | 12628 | F: include/media/i2c/tc358743.h |
d32d9864 | 12629 | |
560e6475 WS |
12630 | TMIO/SDHI MMC DRIVER |
12631 | M: Wolfram Sang <wsa+renesas@sang-engineering.com> | |
d1057c40 | 12632 | L: linux-mmc@vger.kernel.org |
560e6475 | 12633 | S: Supported |
d1057c40 GL |
12634 | F: drivers/mmc/host/tmio_mmc* |
12635 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
560e6475 | 12636 | F: include/linux/mfd/tmio.h |
d719f900 | 12637 | |
917cc4e6 GR |
12638 | TMP401 HARDWARE MONITOR DRIVER |
12639 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 12640 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
12641 | S: Maintained |
12642 | F: Documentation/hwmon/tmp401 | |
12643 | F: drivers/hwmon/tmp401.c | |
12644 | ||
98f32602 | 12645 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 12646 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
12647 | L: linux-mm@kvack.org |
12648 | S: Maintained | |
12649 | F: include/linux/shmem_fs.h | |
12650 | F: mm/shmem.c | |
12651 | ||
45f95b53 | 12652 | TM6000 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
12653 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
12654 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
45f95b53 | 12655 | L: linux-media@vger.kernel.org |
a825eaec | 12656 | W: https://linuxtv.org |
45f95b53 MCC |
12657 | T: git git://linuxtv.org/media_tree.git |
12658 | S: Odd fixes | |
12659 | F: drivers/media/usb/tm6000/ | |
618cd932 | 12660 | F: Documentation/media/v4l-drivers/tm6000* |
45f95b53 | 12661 | |
34d1324e AU |
12662 | TW5864 VIDEO4LINUX DRIVER |
12663 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> | |
12664 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
12665 | M: Andrey Utkin <andrey_utkin@fastmail.com> | |
12666 | L: linux-media@vger.kernel.org | |
12667 | S: Supported | |
12668 | F: drivers/media/pci/tw5864/ | |
45f95b53 | 12669 | |
c65fde19 HV |
12670 | TW68 VIDEO4LINUX DRIVER |
12671 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12672 | L: linux-media@vger.kernel.org | |
12673 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12674 | W: https://linuxtv.org |
c65fde19 HV |
12675 | S: Odd Fixes |
12676 | F: drivers/media/pci/tw68/ | |
12677 | ||
704a84cc EG |
12678 | TW686X VIDEO4LINUX DRIVER |
12679 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> | |
12680 | L: linux-media@vger.kernel.org | |
12681 | T: git git://linuxtv.org/media_tree.git | |
12682 | W: http://linuxtv.org | |
12683 | S: Maintained | |
12684 | F: drivers/media/pci/tw686x/ | |
12685 | ||
4e68852d | 12686 | TPM DEVICE DRIVER |
901486b8 | 12687 | M: Peter Huewe <peterhuewe@gmx.de> |
cbb2d5e4 | 12688 | M: Marcel Selhorst <tpmdd@selhorst.net> |
89adb83c | 12689 | M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
ce93b4b0 | 12690 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
383dec1f | 12691 | W: http://tpmdd.sourceforge.net |
63a10dfd | 12692 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
d9912846 JS |
12693 | Q: https://patchwork.kernel.org/project/tpmdd-devel/list/ |
12694 | T: git git://git.infradead.org/users/jjs/linux-tpmdd.git | |
4e68852d | 12695 | S: Maintained |
679655da | 12696 | F: drivers/char/tpm/ |
4e68852d | 12697 | |
1a0f1b27 AL |
12698 | TPM IBM_VTPM DEVICE DRIVER |
12699 | M: Ashley Lai <ashleydlai@gmail.com> | |
12700 | W: http://tpmdd.sourceforge.net | |
12701 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) | |
12702 | S: Maintained | |
12703 | F: drivers/char/tpm/tpm_ibmvtpm* | |
12704 | ||
d6f005a1 JP |
12705 | TRACING |
12706 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 12707 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 12708 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
12709 | S: Maintained |
12710 | F: Documentation/trace/ftrace.txt | |
12711 | F: arch/*/*/*/ftrace.h | |
12712 | F: arch/*/kernel/ftrace.c | |
12713 | F: include/*/ftrace.h | |
12714 | F: include/linux/trace*.h | |
12715 | F: include/trace/ | |
12716 | F: kernel/trace/ | |
6e68e6c5 | 12717 | F: tools/testing/selftests/ftrace/ |
d6f005a1 | 12718 | |
4abac0d0 IM |
12719 | TRACING MMIO ACCESSES (MMIOTRACE) |
12720 | M: Steven Rostedt <rostedt@goodmis.org> | |
12721 | M: Ingo Molnar <mingo@kernel.org> | |
12722 | R: Karol Herbst <karolherbst@gmail.com> | |
12723 | R: Pekka Paalanen <ppaalanen@gmail.com> | |
12724 | S: Maintained | |
12725 | L: linux-kernel@vger.kernel.org | |
12726 | L: nouveau@lists.freedesktop.org | |
12727 | F: kernel/trace/trace_mmiotrace.c | |
12728 | F: include/linux/mmiotrace.h | |
12729 | F: arch/x86/mm/kmmio.c | |
12730 | F: arch/x86/mm/mmio-mod.c | |
12731 | F: arch/x86/mm/testmmiotrace.c | |
12732 | ||
1da177e4 | 12733 | TRIVIAL PATCHES |
8b58be88 | 12734 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 12735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 12736 | S: Maintained |
86ef925f | 12737 | K: ^Subject:.*(?i)trivial |
1da177e4 | 12738 | |
4e68852d | 12739 | TTY LAYER |
879a5a00 | 12740 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
d8130624 | 12741 | M: Jiri Slaby <jslaby@suse.com> |
879a5a00 | 12742 | S: Supported |
08deed1e | 12743 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
84e1eb83 | 12744 | F: Documentation/serial/ |
8dd5d2f1 | 12745 | F: drivers/tty/ |
df621252 | 12746 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
12747 | F: include/linux/serial_core.h |
12748 | F: include/linux/serial.h | |
12749 | F: include/linux/tty.h | |
c117ab84 CEB |
12750 | F: include/uapi/linux/serial_core.h |
12751 | F: include/uapi/linux/serial.h | |
12752 | F: include/uapi/linux/tty.h | |
4e68852d | 12753 | |
91952bc0 AP |
12754 | TUA9001 MEDIA DRIVER |
12755 | M: Antti Palosaari <crope@iki.fi> | |
12756 | L: linux-media@vger.kernel.org | |
a825eaec | 12757 | W: https://linuxtv.org |
91952bc0 AP |
12758 | W: http://palosaari.fi/linux/ |
12759 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12760 | T: git git://linuxtv.org/anttip/media_tree.git | |
12761 | S: Maintained | |
12762 | F: drivers/media/tuners/tua9001* | |
12763 | ||
740db6d7 | 12764 | TULIP NETWORK DRIVERS |
740db6d7 | 12765 | L: netdev@vger.kernel.org |
cf869eb1 GG |
12766 | L: linux-parisc@vger.kernel.org |
12767 | S: Orphan | |
0f04e2aa | 12768 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
12769 | |
12770 | TUN/TAP driver | |
ba57b6f2 | 12771 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
12772 | W: http://vtun.sourceforge.net/tun |
12773 | S: Maintained | |
679655da JP |
12774 | F: Documentation/networking/tuntap.txt |
12775 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 12776 | |
b454cc66 | 12777 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 12778 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
12779 | M: Ralf Baechle <ralf@linux-mips.org> |
12780 | L: linux-mips@linux-mips.org | |
12781 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 12782 | S: Maintained |
679655da JP |
12783 | F: drivers/tc/ |
12784 | F: include/linux/tc.h | |
b454cc66 | 12785 | |
e2d1d6c0 | 12786 | UBI FILE SYSTEM (UBIFS) |
a7859936 | 12787 | M: Richard Weinberger <richard@nod.at> |
949cb623 | 12788 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 12789 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 12790 | L: linux-mtd@lists.infradead.org |
e2966cbe | 12791 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 12792 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
a7859936 | 12793 | S: Supported |
679655da JP |
12794 | F: Documentation/filesystems/ubifs.txt |
12795 | F: fs/ubifs/ | |
e2d1d6c0 | 12796 | |
e1632fa2 | 12797 | UCLINUX (M68KNOMMU AND COLDFIRE) |
44156aff GU |
12798 | M: Greg Ungerer <gerg@linux-m68k.org> |
12799 | W: http://www.linux-m68k.org/ | |
cc2020e6 | 12800 | W: http://www.uclinux.org/ |
e1632fa2 | 12801 | L: linux-m68k@lists.linux-m68k.org |
cc2020e6 | 12802 | L: uclinux-dev@uclinux.org (subscribers-only) |
e1632fa2 | 12803 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
cc2020e6 | 12804 | S: Maintained |
e1632fa2 GU |
12805 | F: arch/m68k/coldfire/ |
12806 | F: arch/m68k/68*/ | |
61bc02bb JP |
12807 | F: arch/m68k/*/*_no.* |
12808 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 12809 | |
1da177e4 | 12810 | UDF FILESYSTEM |
d8130624 | 12811 | M: Jan Kara <jack@suse.com> |
1da177e4 | 12812 | S: Maintained |
679655da JP |
12813 | F: Documentation/filesystems/udf.txt |
12814 | F: fs/udf/ | |
1da177e4 | 12815 | |
0edffe65 BN |
12816 | UDRAW TABLET |
12817 | M: Bastien Nocera <hadess@hadess.net> | |
12818 | L: linux-input@vger.kernel.org | |
12819 | S: Maintained | |
12820 | F: drivers/hid/hid-udraw.c | |
12821 | ||
cc2020e6 | 12822 | UFS FILESYSTEM |
8b58be88 | 12823 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 12824 | S: Maintained |
679655da JP |
12825 | F: Documentation/filesystems/ufs.txt |
12826 | F: fs/ufs/ | |
cc2020e6 | 12827 | |
0a09d3ab DH |
12828 | UHID USERSPACE HID IO DRIVER: |
12829 | M: David Herrmann <dh.herrmann@googlemail.com> | |
12830 | L: linux-input@vger.kernel.org | |
12831 | S: Maintained | |
12832 | F: drivers/hid/uhid.c | |
c117ab84 | 12833 | F: include/uapi/linux/uhid.h |
0a09d3ab | 12834 | |
18332a80 | 12835 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 12836 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 12837 | S: Orphan |
355ffe69 | 12838 | F: drivers/uwb/ |
679655da JP |
12839 | F: include/linux/uwb.h |
12840 | F: include/linux/uwb/ | |
18332a80 | 12841 | |
b31d8273 G |
12842 | UNICORE32 ARCHITECTURE: |
12843 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
12844 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
12845 | S: Maintained | |
ceebf4d5 | 12846 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
12847 | F: arch/unicore32/ |
12848 | ||
d8379ab1 TF |
12849 | UNIFDEF |
12850 | M: Tony Finch <dot@dotat.at> | |
12851 | W: http://dotat.at/prog/unifdef | |
12852 | S: Maintained | |
12853 | F: scripts/unifdef.c | |
12854 | ||
1da177e4 | 12855 | UNIFORM CDROM DRIVER |
8b58be88 | 12856 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
12857 | W: http://www.kernel.dk |
12858 | S: Maintained | |
679655da JP |
12859 | F: Documentation/cdrom/ |
12860 | F: drivers/cdrom/cdrom.c | |
12861 | F: include/linux/cdrom.h | |
c117ab84 | 12862 | F: include/uapi/linux/cdrom.h |
1da177e4 | 12863 | |
56df0122 | 12864 | UNISYS S-PAR DRIVERS |
49e7d9df JP |
12865 | M: David Kershner <david.kershner@unisys.com> |
12866 | L: sparmaintainer@unisys.com (Unisys internal) | |
12867 | S: Supported | |
12868 | F: drivers/staging/unisys/ | |
56df0122 | 12869 | |
9941fa6e VH |
12870 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
12871 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9941fa6e VH |
12872 | L: linux-scsi@vger.kernel.org |
12873 | S: Supported | |
12874 | F: Documentation/scsi/ufs.txt | |
12875 | F: drivers/scsi/ufs/ | |
12876 | ||
4b9ffb5a | 12877 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS |
bdee9860 JP |
12878 | M: Manjunath M Bettegowda <manjumb@synopsys.com> |
12879 | M: Prabu Thangamuthu <prabut@synopsys.com> | |
4b9ffb5a JP |
12880 | L: linux-scsi@vger.kernel.org |
12881 | S: Supported | |
12882 | F: drivers/scsi/ufs/*dwc* | |
12883 | ||
e2d1d6c0 | 12884 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 12885 | M: Artem Bityutskiy <dedekind1@gmail.com> |
346be9bc | 12886 | M: Richard Weinberger <richard@nod.at> |
e2d1d6c0 RD |
12887 | W: http://www.linux-mtd.infradead.org/ |
12888 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 12889 | T: git git://git.infradead.org/ubifs-2.6.git |
346be9bc | 12890 | S: Supported |
80811493 | 12891 | F: drivers/mtd/ubi/ |
679655da | 12892 | F: include/linux/mtd/ubi.h |
c117ab84 | 12893 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 12894 | |
1da177e4 | 12895 | USB ACM DRIVER |
ca1c3e6f | 12896 | M: Oliver Neukum <oneukum@suse.com> |
6372594a | 12897 | L: linux-usb@vger.kernel.org |
1da177e4 | 12898 | S: Maintained |
679655da JP |
12899 | F: Documentation/usb/acm.txt |
12900 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 12901 | |
b7d572e1 PF |
12902 | USB AR5523 WIRELESS DRIVER |
12903 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
12904 | L: linux-wireless@vger.kernel.org | |
12905 | S: Maintained | |
12906 | F: drivers/net/wireless/ath/ar5523/ | |
12907 | ||
115bb1ff | 12908 | USB ATTACHED SCSI |
866d372e | 12909 | M: Oliver Neukum <oneukum@suse.com> |
115bb1ff MW |
12910 | L: linux-usb@vger.kernel.org |
12911 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 12912 | S: Maintained |
115bb1ff MW |
12913 | F: drivers/usb/storage/uas.c |
12914 | ||
1da177e4 | 12915 | USB CDC ETHERNET DRIVER |
61eee9a7 | 12916 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 12917 | L: linux-usb@vger.kernel.org |
1da177e4 | 12918 | S: Maintained |
679655da | 12919 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 12920 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 12921 | |
66e3e591 KP |
12922 | USB CHAOSKEY DRIVER |
12923 | M: Keith Packard <keithp@keithp.com> | |
12924 | L: linux-usb@vger.kernel.org | |
12925 | S: Maintained | |
12926 | F: drivers/usb/misc/chaoskey.c | |
12927 | ||
b02b371e | 12928 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 12929 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
12930 | L: linux-usb@vger.kernel.org |
12931 | S: Maintained | |
679655da | 12932 | F: drivers/usb/c67x00/ |
b02b371e | 12933 | |
d0374f4f | 12934 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 12935 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 12936 | L: netdev@vger.kernel.org |
d0374f4f PK |
12937 | W: http://www.linux-usb.org/usbnet |
12938 | S: Maintained | |
679655da | 12939 | F: drivers/net/usb/dm9601.c |
d0374f4f | 12940 | |
cc2020e6 | 12941 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 12942 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
12943 | L: rio500-users@lists.sourceforge.net |
12944 | W: http://rio500.sourceforge.net | |
12945 | S: Maintained | |
679655da | 12946 | F: drivers/usb/misc/rio500* |
cc2020e6 | 12947 | |
1da177e4 | 12948 | USB EHCI DRIVER |
578333ab | 12949 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12950 | L: linux-usb@vger.kernel.org |
578333ab | 12951 | S: Maintained |
679655da JP |
12952 | F: Documentation/usb/ehci.txt |
12953 | F: drivers/usb/host/ehci* | |
1da177e4 | 12954 | |
69ae9e3e | 12955 | USB GADGET/PERIPHERAL SUBSYSTEM |
a55f6286 | 12956 | M: Felipe Balbi <balbi@kernel.org> |
795fb7e7 | 12957 | L: linux-usb@vger.kernel.org |
69ae9e3e | 12958 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
12959 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
12960 | S: Maintained | |
679655da JP |
12961 | F: drivers/usb/gadget/ |
12962 | F: include/linux/usb/gadget* | |
69ae9e3e | 12963 | |
2dea64b4 | 12964 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
e5f6450c | 12965 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 12966 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
795fb7e7 | 12967 | L: linux-usb@vger.kernel.org |
54e5881d | 12968 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 12969 | S: Maintained |
c2f01971 | 12970 | F: Documentation/hid/hiddev.txt |
679655da | 12971 | F: drivers/hid/usbhid/ |
1da177e4 | 12972 | |
959eea21 | 12973 | USB ISP116X DRIVER |
8b58be88 | 12974 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 12975 | L: linux-usb@vger.kernel.org |
959eea21 | 12976 | S: Maintained |
679655da JP |
12977 | F: drivers/usb/host/isp116x* |
12978 | F: include/linux/usb/isp116x.h | |
959eea21 | 12979 | |
146498ea WH |
12980 | USB LAN78XX ETHERNET DRIVER |
12981 | M: Woojung Huh <woojung.huh@microchip.com> | |
12982 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> | |
12983 | L: netdev@vger.kernel.org | |
12984 | S: Maintained | |
12985 | F: drivers/net/usb/lan78xx.* | |
12986 | ||
1da177e4 | 12987 | USB MASS STORAGE DRIVER |
fc8b690d | 12988 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12989 | L: linux-usb@vger.kernel.org |
8836aeb8 | 12990 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
12991 | S: Maintained |
12992 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 12993 | F: drivers/usb/storage/ |
1da177e4 | 12994 | |
af39917d CL |
12995 | USB MIDI DRIVER |
12996 | M: Clemens Ladisch <clemens@ladisch.de> | |
12997 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
12998 | T: git git://git.alsa-project.org/alsa-kernel.git | |
12999 | S: Maintained | |
13000 | F: sound/usb/midi.* | |
13001 | ||
444ce9d4 JP |
13002 | USB NETWORKING DRIVERS |
13003 | L: linux-usb@vger.kernel.org | |
13004 | S: Odd Fixes | |
13005 | F: drivers/net/usb/ | |
13006 | ||
1da177e4 | 13007 | USB OHCI DRIVER |
578333ab | 13008 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 13009 | L: linux-usb@vger.kernel.org |
578333ab | 13010 | S: Maintained |
679655da JP |
13011 | F: Documentation/usb/ohci.txt |
13012 | F: drivers/usb/host/ohci* | |
1da177e4 | 13013 | |
963ffa3e | 13014 | USB OTG FSM (Finite State Machine) |
60d77b3d | 13015 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 13016 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
963ffa3e PC |
13017 | L: linux-usb@vger.kernel.org |
13018 | S: Maintained | |
13019 | F: drivers/usb/common/usb-otg-fsm.c | |
13020 | ||
563da3a9 VM |
13021 | USB OVER IP DRIVER |
13022 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
90effdcd SK |
13023 | M: Shuah Khan <shuahkh@osg.samsung.com> |
13024 | M: Shuah Khan <shuah@kernel.org> | |
563da3a9 VM |
13025 | L: linux-usb@vger.kernel.org |
13026 | S: Maintained | |
a6d6fc2b | 13027 | F: Documentation/usb/usbip_protocol.txt |
563da3a9 VM |
13028 | F: drivers/usb/usbip/ |
13029 | F: tools/usb/usbip/ | |
13030 | ||
1da177e4 | 13031 | USB PEGASUS DRIVER |
a16b945c | 13032 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 13033 | L: linux-usb@vger.kernel.org |
043600a6 | 13034 | L: netdev@vger.kernel.org |
052e3128 PM |
13035 | T: git git://github.com/petkan/pegasus.git |
13036 | W: https://github.com/petkan/pegasus | |
1da177e4 | 13037 | S: Maintained |
679655da | 13038 | F: drivers/net/usb/pegasus.* |
1da177e4 | 13039 | |
d3ad558f | 13040 | USB PHY LAYER |
a55f6286 | 13041 | M: Felipe Balbi <balbi@kernel.org> |
d3ad558f FB |
13042 | L: linux-usb@vger.kernel.org |
13043 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
13044 | S: Maintained | |
13045 | F: drivers/usb/phy/ | |
d3ad558f | 13046 | |
73e4fb3f | 13047 | USB PRINTER DRIVER (usblp) |
8b58be88 | 13048 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 13049 | L: linux-usb@vger.kernel.org |
73e4fb3f | 13050 | S: Supported |
679655da | 13051 | F: drivers/usb/class/usblp.c |
1da177e4 | 13052 | |
4521b477 BM |
13053 | USB QMI WWAN NETWORK DRIVER |
13054 | M: Bjørn Mork <bjorn@mork.no> | |
13055 | L: netdev@vger.kernel.org | |
13056 | S: Maintained | |
13057 | F: Documentation/ABI/testing/sysfs-class-net-qmi | |
13058 | F: drivers/net/usb/qmi_wwan.c | |
13059 | ||
1da177e4 | 13060 | USB RTL8150 DRIVER |
a16b945c | 13061 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 13062 | L: linux-usb@vger.kernel.org |
043600a6 | 13063 | L: netdev@vger.kernel.org |
052e3128 PM |
13064 | T: git git://github.com/petkan/rtl8150.git |
13065 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 13066 | S: Maintained |
679655da | 13067 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 13068 | |
f896b796 | 13069 | USB SERIAL SUBSYSTEM |
66085694 | 13070 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 13071 | L: linux-usb@vger.kernel.org |
5ee05309 | 13072 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git |
4e68852d | 13073 | S: Maintained |
679655da | 13074 | F: Documentation/usb/usb-serial.txt |
f896b796 | 13075 | F: drivers/usb/serial/ |
679655da | 13076 | F: include/linux/usb/serial.h |
1da177e4 | 13077 | |
b3f0db1c SG |
13078 | USB SMSC75XX ETHERNET DRIVER |
13079 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
13080 | L: netdev@vger.kernel.org | |
13081 | S: Maintained | |
13082 | F: drivers/net/usb/smsc75xx.* | |
13083 | ||
2f7ca802 | 13084 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 13085 | M: Steve Glendinning <steve.glendinning@shawell.net> |
983ccd74 | 13086 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> |
2f7ca802 | 13087 | L: netdev@vger.kernel.org |
90b24cfb | 13088 | S: Maintained |
679655da | 13089 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 13090 | |
1da177e4 | 13091 | USB SUBSYSTEM |
879a5a00 | 13092 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 13093 | L: linux-usb@vger.kernel.org |
1da177e4 | 13094 | W: http://www.linux-usb.org |
08deed1e | 13095 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 13096 | S: Supported |
1700bd98 | 13097 | F: Documentation/devicetree/bindings/usb/ |
679655da | 13098 | F: Documentation/usb/ |
679655da JP |
13099 | F: drivers/usb/ |
13100 | F: include/linux/usb.h | |
13101 | F: include/linux/usb/ | |
1da177e4 LT |
13102 | |
13103 | USB UHCI DRIVER | |
8b58be88 | 13104 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 13105 | L: linux-usb@vger.kernel.org |
1da177e4 | 13106 | S: Maintained |
679655da | 13107 | F: drivers/usb/host/uhci* |
1da177e4 | 13108 | |
69ae9e3e | 13109 | USB "USBNET" DRIVER FRAMEWORK |
d8130624 | 13110 | M: Oliver Neukum <oneukum@suse.com> |
043600a6 | 13111 | L: netdev@vger.kernel.org |
69ae9e3e | 13112 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 13113 | S: Maintained |
679655da JP |
13114 | F: drivers/net/usb/usbnet.c |
13115 | F: include/linux/usb/usbnet.h | |
1da177e4 | 13116 | |
c0efd232 | 13117 | USB VIDEO CLASS |
c53ac071 | 13118 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 13119 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 13120 | L: linux-media@vger.kernel.org |
275ffde4 | 13121 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 13122 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 13123 | S: Maintained |
0c0d06ca | 13124 | F: drivers/media/usb/uvc/ |
6c0f0359 | 13125 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 13126 | |
b60b9c45 HV |
13127 | USB VISION DRIVER |
13128 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
13129 | L: linux-media@vger.kernel.org | |
13130 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 13131 | W: https://linuxtv.org |
b60b9c45 HV |
13132 | S: Odd Fixes |
13133 | F: drivers/media/usb/usbvision/ | |
13134 | ||
8282da47 LP |
13135 | USB WEBCAM GADGET |
13136 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
13137 | L: linux-usb@vger.kernel.org | |
13138 | S: Maintained | |
3a83c16e | 13139 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 13140 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 13141 | |
bf164cc0 | 13142 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 13143 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
13144 | L: linux-wireless@vger.kernel.org |
13145 | S: Maintained | |
679655da | 13146 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 13147 | |
eb6bab13 | 13148 | USB XHCI DRIVER |
03d85053 | 13149 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
13150 | L: linux-usb@vger.kernel.org |
13151 | S: Supported | |
36d0344c SS |
13152 | F: drivers/usb/host/xhci* |
13153 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 13154 | |
1da177e4 | 13155 | USB ZD1201 DRIVER |
4086b9ca | 13156 | L: linux-wireless@vger.kernel.org |
1da177e4 | 13157 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 13158 | S: Orphan |
ed0ad06f | 13159 | F: drivers/net/wireless/zydas/zd1201.* |
1da177e4 | 13160 | |
b7eee616 | 13161 | USB ZR364XX DRIVER |
8b58be88 | 13162 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 13163 | L: linux-usb@vger.kernel.org |
661263b5 | 13164 | L: linux-media@vger.kernel.org |
275ffde4 | 13165 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
13166 | W: http://royale.zerezo.com/zr364xx/ |
13167 | S: Maintained | |
618cd932 | 13168 | F: Documentation/media/v4l-drivers/zr364xx* |
90d72ac6 | 13169 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 13170 | |
289fcff4 HK |
13171 | ULPI BUS |
13172 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
13173 | L: linux-usb@vger.kernel.org | |
13174 | S: Maintained | |
13175 | F: drivers/usb/common/ulpi.c | |
13176 | F: include/linux/ulpi/ | |
13177 | ||
e7839f25 | 13178 | USER-MODE LINUX (UML) |
8b58be88 | 13179 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 13180 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
13181 | L: user-mode-linux-devel@lists.sourceforge.net |
13182 | L: user-mode-linux-user@lists.sourceforge.net | |
13183 | W: http://user-mode-linux.sourceforge.net | |
9f273c24 | 13184 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git |
1da177e4 | 13185 | S: Maintained |
61516587 | 13186 | F: Documentation/virtual/uml/ |
679655da | 13187 | F: arch/um/ |
b070989a | 13188 | F: arch/x86/um/ |
679655da JP |
13189 | F: fs/hostfs/ |
13190 | F: fs/hppfs/ | |
b7eee616 | 13191 | |
e5f114e9 | 13192 | USERSPACE I/O (UIO) |
879a5a00 | 13193 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 13194 | S: Maintained |
3d3fecbd | 13195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
cadf8106 | 13196 | F: Documentation/driver-api/uio-howto.rst |
679655da JP |
13197 | F: drivers/uio/ |
13198 | F: include/linux/uio*.h | |
e5f114e9 | 13199 | |
256cccbe | 13200 | UTIL-LINUX PACKAGE |
8b58be88 | 13201 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
13202 | L: util-linux@vger.kernel.org |
13203 | W: http://en.wikipedia.org/wiki/Util-linux | |
13204 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
13205 | S: Maintained |
13206 | ||
c1fd1c07 | 13207 | UVESAFB DRIVER |
8b58be88 | 13208 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 13209 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
13210 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
13211 | S: Maintained | |
679655da | 13212 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 13213 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 13214 | |
456930d8 SA |
13215 | VF610 NAND DRIVER |
13216 | M: Stefan Agner <stefan@agner.ch> | |
13217 | L: linux-mtd@lists.infradead.org | |
13218 | S: Supported | |
13219 | F: drivers/mtd/nand/vf610_nfc.c | |
13220 | ||
4480f15b | 13221 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 13222 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 13223 | S: Maintained |
679655da JP |
13224 | F: Documentation/filesystems/vfat.txt |
13225 | F: fs/fat/ | |
1da177e4 | 13226 | |
cba3345c AW |
13227 | VFIO DRIVER |
13228 | M: Alex Williamson <alex.williamson@redhat.com> | |
13229 | L: kvm@vger.kernel.org | |
9f273c24 | 13230 | T: git git://github.com/awilliam/linux-vfio.git |
cba3345c AW |
13231 | S: Maintained |
13232 | F: Documentation/vfio.txt | |
13233 | F: drivers/vfio/ | |
13234 | F: include/linux/vfio.h | |
c117ab84 | 13235 | F: include/uapi/linux/vfio.h |
cba3345c | 13236 | |
5188287a KW |
13237 | VFIO MEDIATED DEVICE DRIVERS |
13238 | M: Kirti Wankhede <kwankhede@nvidia.com> | |
13239 | L: kvm@vger.kernel.org | |
13240 | S: Maintained | |
13241 | F: Documentation/vfio-mediated-device.txt | |
13242 | F: drivers/vfio/mdev/ | |
13243 | F: include/linux/mdev.h | |
13244 | F: samples/vfio-mdev/ | |
13245 | ||
a714ea5f AW |
13246 | VFIO PLATFORM DRIVER |
13247 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> | |
13248 | L: kvm@vger.kernel.org | |
13249 | S: Maintained | |
13250 | F: drivers/vfio/platform/ | |
13251 | ||
9e6f3438 PO |
13252 | VIDEOBUF2 FRAMEWORK |
13253 | M: Pawel Osciak <pawel@osciak.com> | |
13254 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 13255 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
13256 | L: linux-media@vger.kernel.org |
13257 | S: Maintained | |
90d72ac6 | 13258 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
13259 | F: include/media/videobuf2-* |
13260 | ||
06a8fc78 AH |
13261 | VIRTIO AND VHOST VSOCK DRIVER |
13262 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
13263 | L: kvm@vger.kernel.org | |
13264 | L: virtualization@lists.linux-foundation.org | |
13265 | L: netdev@vger.kernel.org | |
13266 | S: Maintained | |
13267 | F: include/linux/virtio_vsock.h | |
13268 | F: include/uapi/linux/virtio_vsock.h | |
13269 | F: net/vmw_vsock/virtio_transport_common.c | |
0ea9e1d3 | 13270 | F: net/vmw_vsock/virtio_transport.c |
433fc58e AH |
13271 | F: drivers/vhost/vsock.c |
13272 | F: drivers/vhost/vsock.h | |
06a8fc78 | 13273 | |
5523662e SCP |
13274 | VIRTUAL SERIO DEVICE DRIVER |
13275 | M: Stephen Chandler Paul <thatslyude@gmail.com> | |
13276 | S: Maintained | |
13277 | F: drivers/input/serio/userio.c | |
13278 | F: include/uapi/linux/userio.h | |
13279 | ||
9a82446b | 13280 | VIRTIO CONSOLE DRIVER |
79134d11 | 13281 | M: Amit Shah <amit@kernel.org> |
9a82446b AS |
13282 | L: virtualization@lists.linux-foundation.org |
13283 | S: Maintained | |
13284 | F: drivers/char/virtio_console.c | |
13285 | F: include/linux/virtio_console.h | |
c117ab84 | 13286 | F: include/uapi/linux/virtio_console.h |
9a82446b | 13287 | |
2426ec8f | 13288 | VIRTIO CORE, NET AND BLOCK DRIVERS |
2426ec8f | 13289 | M: "Michael S. Tsirkin" <mst@redhat.com> |
678ff27d | 13290 | M: Jason Wang <jasowang@redhat.com> |
2426ec8f MT |
13291 | L: virtualization@lists.linux-foundation.org |
13292 | S: Maintained | |
0e4191fe | 13293 | F: Documentation/devicetree/bindings/virtio/ |
2426ec8f | 13294 | F: drivers/virtio/ |
c893c8d7 | 13295 | F: tools/virtio/ |
2426ec8f MT |
13296 | F: drivers/net/virtio_net.c |
13297 | F: drivers/block/virtio_blk.c | |
13298 | F: include/linux/virtio_*.h | |
916cdabc | 13299 | F: include/uapi/linux/virtio_*.h |
dbaf0624 | 13300 | F: drivers/crypto/virtio/ |
2426ec8f | 13301 | |
f2dbda3b CH |
13302 | VIRTIO DRIVERS FOR S390 |
13303 | M: Christian Borntraeger <borntraeger@de.ibm.com> | |
13304 | M: Cornelia Huck <cornelia.huck@de.ibm.com> | |
13305 | L: linux-s390@vger.kernel.org | |
13306 | L: virtualization@lists.linux-foundation.org | |
13307 | L: kvm@vger.kernel.org | |
13308 | S: Supported | |
1b568d93 | 13309 | F: drivers/s390/virtio/ |
f2dbda3b | 13310 | |
4ad6ee91 GH |
13311 | VIRTIO GPU DRIVER |
13312 | M: David Airlie <airlied@linux.ie> | |
13313 | M: Gerd Hoffmann <kraxel@redhat.com> | |
13314 | L: dri-devel@lists.freedesktop.org | |
13315 | L: virtualization@lists.linux-foundation.org | |
0c19f97f | 13316 | T: git git://git.kraxel.org/linux drm-qemu |
4ad6ee91 GH |
13317 | S: Maintained |
13318 | F: drivers/gpu/drm/virtio/ | |
13319 | F: include/uapi/linux/virtio_gpu.h | |
13320 | ||
3a4d5c94 MT |
13321 | VIRTIO HOST (VHOST) |
13322 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
678ff27d | 13323 | M: Jason Wang <jasowang@redhat.com> |
3a4d5c94 | 13324 | L: kvm@vger.kernel.org |
c996d8b9 | 13325 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 | 13326 | L: netdev@vger.kernel.org |
9f273c24 | 13327 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git |
3a4d5c94 MT |
13328 | S: Maintained |
13329 | F: drivers/vhost/ | |
c117ab84 | 13330 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 13331 | |
271c8651 GH |
13332 | VIRTIO INPUT DRIVER |
13333 | M: Gerd Hoffmann <kraxel@redhat.com> | |
13334 | S: Maintained | |
13335 | F: drivers/virtio/virtio_input.c | |
13336 | F: include/uapi/linux/virtio_input.h | |
13337 | ||
dbaf0624 G |
13338 | VIRTIO CRYPTO DRIVER |
13339 | M: Gonglei <arei.gonglei@huawei.com> | |
13340 | L: virtualization@lists.linux-foundation.org | |
13341 | L: linux-crypto@vger.kernel.org | |
13342 | S: Maintained | |
13343 | F: drivers/crypto/virtio/ | |
13344 | F: include/uapi/linux/virtio_crypto.h | |
13345 | ||
1da177e4 | 13346 | VIA RHINE NETWORK DRIVER |
210347e1 | 13347 | S: Orphan |
f2148a47 | 13348 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 13349 | |
f0bf7f61 | 13350 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 13351 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 13352 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
13353 | S: Maintained |
13354 | F: drivers/mmc/host/via-sdmmc.c | |
13355 | ||
69e4a7c2 | 13356 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 13357 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 13358 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 13359 | S: Maintained |
c7babebd FTS |
13360 | F: include/linux/via-core.h |
13361 | F: include/linux/via-gpio.h | |
13362 | F: include/linux/via_i2c.h | |
8a61f013 | 13363 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 13364 | |
01f20734 | 13365 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 13366 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
13367 | L: netdev@vger.kernel.org |
13368 | S: Maintained | |
f2148a47 | 13369 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 13370 | |
f73f8173 AW |
13371 | VIRT LIB |
13372 | M: Alex Williamson <alex.williamson@redhat.com> | |
13373 | M: Paolo Bonzini <pbonzini@redhat.com> | |
13374 | L: kvm@vger.kernel.org | |
13375 | S: Supported | |
13376 | F: virt/lib/ | |
13377 | ||
77911fd2 | 13378 | VIVID VIRTUAL VIDEO DRIVER |
0b7bc1fa HV |
13379 | M: Hans Verkuil <hverkuil@xs4all.nl> |
13380 | L: linux-media@vger.kernel.org | |
13381 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 13382 | W: https://linuxtv.org |
0b7bc1fa | 13383 | S: Maintained |
77911fd2 | 13384 | F: drivers/media/platform/vivid/* |
0b7bc1fa | 13385 | |
be7f8273 | 13386 | VLAN (802.1Q) |
8b58be88 | 13387 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
13388 | L: netdev@vger.kernel.org |
13389 | S: Maintained | |
679655da JP |
13390 | F: drivers/net/macvlan.c |
13391 | F: include/linux/if_*vlan.h | |
13392 | F: net/8021q/ | |
be7f8273 | 13393 | |
55e331cf | 13394 | VLYNQ BUS |
08eeb306 | 13395 | M: Florian Fainelli <f.fainelli@gmail.com> |
8578d7af | 13396 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
13397 | S: Maintained |
13398 | F: drivers/vlynq/vlynq.c | |
13399 | F: include/linux/vlynq.h | |
13400 | ||
390beae4 | 13401 | VME SUBSYSTEM |
74c600e3 | 13402 | M: Martyn Welch <martyn@welchs.me.uk> |
1bd289d1 | 13403 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
13404 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
13405 | L: devel@driverdev.osuosl.org | |
13406 | S: Maintained | |
13407 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
75a163c4 | 13408 | F: Documentation/driver-api/vme.rst |
390beae4 MW |
13409 | F: drivers/staging/vme/ |
13410 | F: drivers/vme/ | |
13411 | F: include/linux/vme* | |
13412 | ||
4488e09b AK |
13413 | VMWARE HYPERVISOR INTERFACE |
13414 | M: Alok Kataria <akataria@vmware.com> | |
13415 | L: virtualization@lists.linux-foundation.org | |
13416 | S: Supported | |
13417 | F: arch/x86/kernel/cpu/vmware.c | |
13418 | ||
73b35d07 DT |
13419 | VMWARE BALLOON DRIVER |
13420 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
13421 | M: Philip Moltmann <moltmann@vmware.com> | |
13422 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
13423 | L: linux-kernel@vger.kernel.org | |
13424 | S: Maintained | |
13425 | F: drivers/misc/vmw_balloon.c | |
13426 | ||
8b8be51b TH |
13427 | VMWARE VMMOUSE SUBDRIVER |
13428 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
13429 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
13430 | L: linux-input@vger.kernel.org | |
13431 | S: Maintained | |
13432 | F: drivers/input/mouse/vmmouse.c | |
13433 | F: drivers/input/mouse/vmmouse.h | |
13434 | ||
d1a890fa | 13435 | VMWARE VMXNET3 ETHERNET DRIVER |
04e1b734 | 13436 | M: Shrikrishna Khare <skhare@vmware.com> |
65c8bb5b JP |
13437 | M: "VMware, Inc." <pv-drivers@vmware.com> |
13438 | L: netdev@vger.kernel.org | |
13439 | S: Maintained | |
13440 | F: drivers/net/vmxnet3/ | |
d1a890fa | 13441 | |
851b1642 | 13442 | VMware PVSCSI driver |
29374ec6 | 13443 | M: Jim Gill <jgill@vmware.com> |
851b1642 AK |
13444 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
13445 | L: linux-scsi@vger.kernel.org | |
13446 | S: Maintained | |
13447 | F: drivers/scsi/vmw_pvscsi.c | |
13448 | F: drivers/scsi/vmw_pvscsi.h | |
13449 | ||
29c8d9eb AR |
13450 | VMWARE PVRDMA DRIVER |
13451 | M: Adit Ranadive <aditr@vmware.com> | |
13452 | M: VMware PV-Drivers <pv-drivers@vmware.com> | |
13453 | L: linux-rdma@vger.kernel.org | |
13454 | S: Maintained | |
13455 | F: drivers/infiniband/hw/vmw_pvrdma/ | |
13456 | ||
e53e86c7 | 13457 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 13458 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 13459 | M: Mark Brown <broonie@kernel.org> |
5cdeb2c8 | 13460 | L: linux-kernel@vger.kernel.org |
1dd68f01 | 13461 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 13462 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 13463 | S: Supported |
9d2597e8 | 13464 | F: Documentation/devicetree/bindings/regulator/ |
679655da | 13465 | F: drivers/regulator/ |
9d2597e8 | 13466 | F: include/dt-bindings/regulator/ |
679655da | 13467 | F: include/linux/regulator/ |
e53e86c7 | 13468 | |
081958eb DA |
13469 | VRF |
13470 | M: David Ahern <dsa@cumulusnetworks.com> | |
13471 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> | |
13472 | L: netdev@vger.kernel.org | |
13473 | S: Maintained | |
13474 | F: drivers/net/vrf.c | |
562d897d | 13475 | F: Documentation/networking/vrf.txt |
081958eb | 13476 | |
ab41319e | 13477 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 13478 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 13479 | L: linux-hwmon@vger.kernel.org |
ab41319e | 13480 | S: Maintained |
679655da JP |
13481 | F: Documentation/hwmon/vt1211 |
13482 | F: drivers/hwmon/vt1211.c | |
ab41319e | 13483 | |
1de9e371 | 13484 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 13485 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
968ce1b1 | 13486 | L: linux-hwmon@vger.kernel.org |
1de9e371 | 13487 | S: Maintained |
679655da | 13488 | F: drivers/hwmon/vt8231.c |
1de9e371 | 13489 | |
88095e7b TO |
13490 | VUB300 USB to SDIO/SD/MMC bridge chip |
13491 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
13492 | L: linux-mmc@vger.kernel.org | |
13493 | L: linux-usb@vger.kernel.org | |
13494 | S: Supported | |
13495 | F: drivers/mmc/host/vub300.c | |
13496 | ||
1da177e4 | 13497 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 13498 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 13499 | S: Maintained |
679655da JP |
13500 | F: Documentation/w1/ |
13501 | F: drivers/w1/ | |
1da177e4 | 13502 | |
13927079 | 13503 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 13504 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
968ce1b1 | 13505 | L: linux-hwmon@vger.kernel.org |
25845c22 | 13506 | S: Maintained |
679655da JP |
13507 | F: Documentation/hwmon/w83791d |
13508 | F: drivers/hwmon/w83791d.c | |
13927079 | 13509 | |
61db011d | 13510 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 13511 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 13512 | L: linux-hwmon@vger.kernel.org |
61db011d | 13513 | S: Maintained |
679655da JP |
13514 | F: Documentation/hwmon/w83793 |
13515 | F: drivers/hwmon/w83793.c | |
61db011d | 13516 | |
e3760b43 | 13517 | W83795 HARDWARE MONITORING DRIVER |
d8130624 | 13518 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 13519 | L: linux-hwmon@vger.kernel.org |
e3760b43 JD |
13520 | S: Maintained |
13521 | F: drivers/hwmon/w83795.c | |
13522 | ||
1da177e4 | 13523 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 13524 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 13525 | S: Maintained |
679655da | 13526 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 13527 | |
b4e05923 HG |
13528 | WACOM PROTOCOL 4 SERIAL TABLETS |
13529 | M: Julian Squires <julian@cipht.net> | |
13530 | M: Hans de Goede <hdegoede@redhat.com> | |
13531 | L: linux-input@vger.kernel.org | |
13532 | S: Maintained | |
13533 | F: drivers/input/tablet/wacom_serial4.c | |
13534 | ||
3527761c | 13535 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 13536 | M: Wim Van Sebroeck <wim@iguana.be> |
1f32f83e | 13537 | R: Guenter Roeck <linux@roeck-us.net> |
230a5cef WVS |
13538 | L: linux-watchdog@vger.kernel.org |
13539 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 13540 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 13541 | S: Maintained |
540be8b2 | 13542 | F: Documentation/devicetree/bindings/watchdog/ |
679655da JP |
13543 | F: Documentation/watchdog/ |
13544 | F: drivers/watchdog/ | |
13545 | F: include/linux/watchdog.h | |
c117ab84 | 13546 | F: include/uapi/linux/watchdog.h |
3527761c | 13547 | |
b22e00f3 DH |
13548 | WIIMOTE HID DRIVER |
13549 | M: David Herrmann <dh.herrmann@googlemail.com> | |
13550 | L: linux-input@vger.kernel.org | |
13551 | S: Maintained | |
13552 | F: drivers/hid/hid-wiimote* | |
13553 | ||
e258b80e | 13554 | WINBOND CIR DRIVER |
364e9e18 | 13555 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 13556 | S: Maintained |
116ab806 | 13557 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 13558 | |
c36a483d WBG |
13559 | WINSYSTEMS EBC-C384 WATCHDOG DRIVER |
13560 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
13561 | L: linux-watchdog@vger.kernel.org | |
13562 | S: Maintained | |
13563 | F: drivers/watchdog/ebc-c384_wdt.c | |
13564 | ||
9c26df9b WBG |
13565 | WINSYSTEMS WS16C48 GPIO DRIVER |
13566 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
13567 | L: linux-gpio@vger.kernel.org | |
13568 | S: Maintained | |
13569 | F: drivers/gpio/gpio-ws16c48.c | |
e258b80e | 13570 | |
8a70da82 | 13571 | WIMAX STACK |
8b58be88 | 13572 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 13573 | M: linux-wimax@intel.com |
49e7d9df | 13574 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
13575 | S: Supported |
13576 | W: http://linuxwimax.org | |
315987dc | 13577 | F: Documentation/wimax/README.wimax |
315987dc JP |
13578 | F: include/linux/wimax/debug.h |
13579 | F: include/net/wimax.h | |
c117ab84 | 13580 | F: include/uapi/linux/wimax.h |
315987dc | 13581 | F: net/wimax/ |
8a70da82 | 13582 | |
5fc14680 | 13583 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 13584 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 13585 | S: Maintained |
679655da | 13586 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 13587 | |
1da177e4 | 13588 | WL3501 WIRELESS PCMCIA CARD DRIVER |
724c6b35 | 13589 | L: linux-wireless@vger.kernel.org |
0c59d281 | 13590 | S: Odd fixes |
679655da | 13591 | F: drivers/net/wireless/wl3501* |
1da177e4 | 13592 | |
055bcbcb | 13593 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 13594 | L: patches@opensource.wolfsonmicro.com |
f0e03dbd RF |
13595 | T: git https://github.com/CirrusLogic/linux-drivers.git |
13596 | W: https://github.com/CirrusLogic/linux-drivers/wiki | |
b75ea16a | 13597 | S: Supported |
3768f0b1 | 13598 | F: Documentation/hwmon/wm83?? |
f494993f CK |
13599 | F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt |
13600 | F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt | |
13601 | F: Documentation/devicetree/bindings/mfd/arizona.txt | |
af1c5386 | 13602 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 13603 | F: drivers/clk/clk-wm83*.c |
9c309598 | 13604 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 13605 | F: drivers/leds/leds-wm83*.c |
25b273ba | 13606 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 13607 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 13608 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
13609 | F: drivers/input/misc/wm831x-on.c |
13610 | F: drivers/input/touchscreen/wm831x-ts.c | |
13611 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
13612 | F: drivers/mfd/arizona* |
13613 | F: drivers/mfd/wm*.c | |
12ebc137 | 13614 | F: drivers/mfd/cs47l24* |
8c0984e5 | 13615 | F: drivers/power/supply/wm83*.c |
b75ea16a MB |
13616 | F: drivers/rtc/rtc-wm83*.c |
13617 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 13618 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 13619 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 13620 | F: include/linux/mfd/arizona/ |
3860e6c4 | 13621 | F: include/linux/mfd/wm831x/ |
b75ea16a | 13622 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 13623 | F: include/linux/mfd/wm8400* |
59ec6da2 | 13624 | F: include/linux/wm97xx.h |
055bcbcb | 13625 | F: include/sound/wm????.h |
9c309598 | 13626 | F: sound/soc/codecs/arizona.? |
055bcbcb | 13627 | F: sound/soc/codecs/wm* |
12ebc137 | 13628 | F: sound/soc/codecs/cs47l24* |
b75ea16a | 13629 | |
3e6cd7a4 TH |
13630 | WORKQUEUE |
13631 | M: Tejun Heo <tj@kernel.org> | |
badb7f5e | 13632 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
3e6cd7a4 TH |
13633 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
13634 | S: Maintained | |
13635 | F: include/linux/workqueue.h | |
13636 | F: kernel/workqueue.c | |
e7f08ffb | 13637 | F: Documentation/core-api/workqueue.rst |
3e6cd7a4 | 13638 | |
39ac9f48 CYT |
13639 | X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS |
13640 | M: Chen-Yu Tsai <wens@csie.org> | |
13641 | L: linux-kernel@vger.kernel.org | |
13642 | S: Maintained | |
13643 | N: axp[128] | |
13644 | ||
1da177e4 | 13645 | X.25 NETWORK LAYER |
8bf28059 | 13646 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 13647 | L: linux-x25@vger.kernel.org |
8bf28059 | 13648 | S: Odd Fixes |
679655da JP |
13649 | F: Documentation/networking/x25* |
13650 | F: include/net/x25* | |
13651 | F: net/x25/ | |
1da177e4 | 13652 | |
e2d1d6c0 | 13653 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
13654 | M: Thomas Gleixner <tglx@linutronix.de> |
13655 | M: Ingo Molnar <mingo@redhat.com> | |
13656 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 13657 | M: x86@kernel.org |
981c3a4f | 13658 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 13659 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 13660 | S: Maintained |
679655da JP |
13661 | F: Documentation/x86/ |
13662 | F: arch/x86/ | |
e2d1d6c0 | 13663 | |
d0944853 | 13664 | X86 PLATFORM DRIVERS |
e181ba15 | 13665 | M: Darren Hart <dvhart@infradead.org> |
7b9e1d89 | 13666 | M: Andy Shevchenko <andy@infradead.org> |
d0944853 | 13667 | L: platform-driver-x86@vger.kernel.org |
e181ba15 | 13668 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 13669 | S: Maintained |
14430813 | 13670 | F: drivers/platform/x86/ |
3a4bceef | 13671 | F: drivers/platform/olpc/ |
d0944853 | 13672 | |
c1f5c54b IM |
13673 | X86 MCE INFRASTRUCTURE |
13674 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 13675 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
13676 | L: linux-edac@vger.kernel.org |
13677 | S: Maintained | |
13678 | F: arch/x86/kernel/cpu/mcheck/* | |
13679 | ||
79ebdc95 BP |
13680 | X86 MICROCODE UPDATE SUPPORT |
13681 | M: Borislav Petkov <bp@alien8.de> | |
13682 | S: Maintained | |
13683 | F: arch/x86/kernel/cpu/microcode/* | |
13684 | ||
f0905c5a AL |
13685 | X86 VDSO |
13686 | M: Andy Lutomirski <luto@amacapital.net> | |
13687 | L: linux-kernel@vger.kernel.org | |
13688 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso | |
13689 | S: Maintained | |
d603c8e1 | 13690 | F: arch/x86/entry/vdso/ |
f0905c5a | 13691 | |
d6fad502 | 13692 | XC2028/3028 TUNER DRIVER |
5dc8a864 MCC |
13693 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
13694 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d6fad502 | 13695 | L: linux-media@vger.kernel.org |
a825eaec | 13696 | W: https://linuxtv.org |
d6fad502 MCC |
13697 | T: git git://linuxtv.org/media_tree.git |
13698 | S: Maintained | |
13699 | F: drivers/media/tuners/tuner-xc2028.* | |
13700 | ||
c4468085 | 13701 | XEN HYPERVISOR INTERFACE |
3eeef8f7 | 13702 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
101ecde5 | 13703 | M: Juergen Gross <jgross@suse.com> |
11dbb52b | 13704 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 13705 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
13706 | S: Supported |
13707 | F: arch/x86/xen/ | |
13708 | F: drivers/*/xen-*front.c | |
13709 | F: drivers/xen/ | |
13710 | F: arch/x86/include/asm/xen/ | |
13711 | F: include/xen/ | |
c117ab84 | 13712 | F: include/uapi/xen/ |
c4468085 | 13713 | |
77bfb479 | 13714 | XEN HYPERVISOR ARM |
85d1a29d | 13715 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 13716 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 13717 | S: Maintained |
77bfb479 SS |
13718 | F: arch/arm/xen/ |
13719 | F: arch/arm/include/asm/xen/ | |
13720 | ||
b475e83f | 13721 | XEN HYPERVISOR ARM64 |
85d1a29d | 13722 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 13723 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 13724 | S: Maintained |
b475e83f SS |
13725 | F: arch/arm64/xen/ |
13726 | F: arch/arm64/include/asm/xen/ | |
13727 | ||
9b57e1a7 | 13728 | XEN NETWORK BACKEND DRIVER |
8386040b | 13729 | M: Wei Liu <wei.liu2@citrix.com> |
7d3cfc36 | 13730 | M: Paul Durrant <paul.durrant@citrix.com> |
11dbb52b | 13731 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
13732 | L: netdev@vger.kernel.org |
13733 | S: Supported | |
13734 | F: drivers/net/xen-netback/* | |
13735 | ||
c5f8e29d KRW |
13736 | XEN PCI SUBSYSTEM |
13737 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 13738 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
13739 | S: Supported |
13740 | F: arch/x86/pci/*xen* | |
13741 | F: drivers/pci/*xen* | |
13742 | ||
a2c5ae65 KRW |
13743 | XEN BLOCK SUBSYSTEM |
13744 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
bcadb699 | 13745 | M: Roger Pau Monné <roger.pau@citrix.com> |
a2c5ae65 KRW |
13746 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
13747 | S: Supported | |
13748 | F: drivers/block/xen-blkback/* | |
13749 | F: drivers/block/xen* | |
13750 | ||
15d03609 JG |
13751 | XEN PVSCSI DRIVERS |
13752 | M: Juergen Gross <jgross@suse.com> | |
13753 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
13754 | L: linux-scsi@vger.kernel.org | |
13755 | S: Supported | |
13756 | F: drivers/scsi/xen-scsifront.c | |
13757 | F: drivers/xen/xen-scsiback.c | |
13758 | F: include/xen/interface/io/vscsiif.h | |
13759 | ||
c5f8e29d KRW |
13760 | XEN SWIOTLB SUBSYSTEM |
13761 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 13762 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
13763 | S: Supported |
13764 | F: arch/x86/xen/*swiotlb* | |
13765 | F: drivers/xen/*swiotlb* | |
13766 | ||
1da177e4 | 13767 | XFS FILESYSTEM |
721a0edf | 13768 | M: Darrick J. Wong <darrick.wong@oracle.com> |
541d48f0 DC |
13769 | M: linux-xfs@vger.kernel.org |
13770 | L: linux-xfs@vger.kernel.org | |
13771 | W: http://xfs.org/ | |
721a0edf | 13772 | T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git |
1da177e4 | 13773 | S: Supported |
679655da JP |
13774 | F: Documentation/filesystems/xfs.txt |
13775 | F: fs/xfs/ | |
1da177e4 | 13776 | |
8a3b7a25 | 13777 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
13778 | M: Anirudha Sarangi <anirudh@xilinx.com> |
13779 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 13780 | S: Maintained |
13781 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
13782 | ||
238b8721 | 13783 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 13784 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
13785 | L: linux-serial@vger.kernel.org |
13786 | S: Maintained | |
df621252 | 13787 | F: drivers/tty/serial/uartlite.c |
238b8721 | 13788 | |
df330515 LP |
13789 | XILINX VIDEO IP CORES |
13790 | M: Hyun Kwon <hyun.kwon@xilinx.com> | |
13791 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
13792 | L: linux-media@vger.kernel.org | |
13793 | T: git git://linuxtv.org/media_tree.git | |
13794 | S: Supported | |
13795 | F: Documentation/devicetree/bindings/media/xilinx/ | |
13796 | F: drivers/media/platform/xilinx/ | |
a5562f65 | 13797 | F: include/uapi/linux/xilinx-v4l2-controls.h |
df330515 | 13798 | |
74316949 EB |
13799 | XILLYBUS DRIVER |
13800 | M: Eli Billauer <eli.billauer@gmail.com> | |
13801 | L: linux-kernel@vger.kernel.org | |
13802 | S: Supported | |
13803 | F: drivers/char/xillybus/ | |
13804 | ||
f620e4b8 MF |
13805 | XTENSA XTFPGA PLATFORM SUPPORT |
13806 | M: Max Filippov <jcmvbkbc@gmail.com> | |
13807 | L: linux-xtensa@linux-xtensa.org | |
13808 | S: Maintained | |
13809 | F: drivers/spi/spi-xtensa-xtfpga.c | |
57b7068d | 13810 | F: sound/soc/xtensa/xtfpga-i2s.c |
f620e4b8 | 13811 | |
1da177e4 | 13812 | YAM DRIVER FOR AX.25 |
8b58be88 | 13813 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
13814 | L: linux-hams@vger.kernel.org |
13815 | S: Maintained | |
679655da JP |
13816 | F: drivers/net/hamradio/yam* |
13817 | F: include/linux/yam.h | |
1da177e4 | 13818 | |
af64a5eb | 13819 | YEALINK PHONE DRIVER |
8b58be88 | 13820 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
13821 | L: usbb2k-api-dev@nongnu.org |
13822 | S: Maintained | |
679655da JP |
13823 | F: Documentation/input/yealink.txt |
13824 | F: drivers/input/misc/yealink.* | |
af64a5eb | 13825 | |
1da177e4 | 13826 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 13827 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
13828 | W: http://yaina.de/jreuter/ |
13829 | W: http://www.qsl.net/dl1bke/ | |
13830 | L: linux-hams@vger.kernel.org | |
13831 | S: Maintained | |
679655da JP |
13832 | F: Documentation/networking/z8530drv.txt |
13833 | F: drivers/net/hamradio/*scc.c | |
13834 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 13835 | |
0cf31ec1 | 13836 | ZBUD COMPRESSED PAGE ALLOCATOR |
0bb181c7 | 13837 | M: Seth Jennings <sjenning@redhat.com> |
aab45453 | 13838 | M: Dan Streetman <ddstreet@ieee.org> |
0cf31ec1 SJ |
13839 | L: linux-mm@kvack.org |
13840 | S: Maintained | |
13841 | F: mm/zbud.c | |
13842 | F: include/linux/zbud.h | |
13843 | ||
7c0c3afb | 13844 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
13845 | M: Daniel Drake <dsd@gentoo.org> |
13846 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 13847 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 13848 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
13849 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
13850 | S: Maintained | |
6948300c | 13851 | F: drivers/net/wireless/zydas/zd1211rw/ |
7c0c3afb | 13852 | |
a40cc814 AP |
13853 | ZD1301_DEMOD MEDIA DRIVER |
13854 | M: Antti Palosaari <crope@iki.fi> | |
13855 | L: linux-media@vger.kernel.org | |
13856 | W: https://linuxtv.org/ | |
13857 | W: http://palosaari.fi/linux/ | |
13858 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
13859 | S: Maintained | |
13860 | F: drivers/media/dvb-frontends/zd1301_demod* | |
13861 | ||
d4c554c3 AP |
13862 | ZD1301 MEDIA DRIVER |
13863 | M: Antti Palosaari <crope@iki.fi> | |
13864 | L: linux-media@vger.kernel.org | |
13865 | W: https://linuxtv.org/ | |
13866 | W: http://palosaari.fi/linux/ | |
13867 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
13868 | S: Maintained | |
13869 | F: drivers/media/usb/dvb-usb-v2/zd1301* | |
13870 | ||
20263029 DS |
13871 | ZPOOL COMPRESSED PAGE STORAGE API |
13872 | M: Dan Streetman <ddstreet@ieee.org> | |
13873 | L: linux-mm@kvack.org | |
13874 | S: Maintained | |
13875 | F: mm/zpool.c | |
13876 | F: include/linux/zpool.h | |
13877 | ||
1da177e4 | 13878 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 13879 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 13880 | L: linux-media@vger.kernel.org |
1da177e4 | 13881 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
a825eaec | 13882 | T: hg https://linuxtv.org/hg/v4l-dvb |
f63145e2 | 13883 | S: Odd Fixes |
90d72ac6 | 13884 | F: drivers/media/pci/zoran/ |
1da177e4 | 13885 | |
6920f2cc MK |
13886 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
13887 | M: Minchan Kim <minchan@kernel.org> | |
13888 | M: Nitin Gupta <ngupta@vflare.org> | |
74f3037c | 13889 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
6920f2cc MK |
13890 | L: linux-kernel@vger.kernel.org |
13891 | S: Maintained | |
13892 | F: drivers/block/zram/ | |
13893 | F: Documentation/blockdev/zram.txt | |
13894 | ||
8b4a4080 | 13895 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 13896 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 13897 | S: Maintained |
df621252 | 13898 | F: drivers/tty/serial/zs.* |
8b4a4080 | 13899 | |
eae70d06 MK |
13900 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
13901 | M: Minchan Kim <minchan@kernel.org> | |
13902 | M: Nitin Gupta <ngupta@vflare.org> | |
41192a2d | 13903 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
eae70d06 MK |
13904 | L: linux-mm@kvack.org |
13905 | S: Maintained | |
13906 | F: mm/zsmalloc.c | |
13907 | F: include/linux/zsmalloc.h | |
d02be50d | 13908 | F: Documentation/vm/zsmalloc.txt |
eae70d06 | 13909 | |
0cf31ec1 | 13910 | ZSWAP COMPRESSED SWAP CACHING |
0bb181c7 | 13911 | M: Seth Jennings <sjenning@redhat.com> |
534c9dc9 | 13912 | M: Dan Streetman <ddstreet@ieee.org> |
0cf31ec1 SJ |
13913 | L: linux-mm@kvack.org |
13914 | S: Maintained | |
13915 | F: mm/zswap.c | |
13916 | ||
1da177e4 | 13917 | THE REST |
8b58be88 | 13918 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 13919 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 13920 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 13921 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 13922 | S: Buried alive in reporters |
34d03cc1 JP |
13923 | F: * |
13924 | F: */ |