]> git.ipfire.org Git - thirdparty/linux.git/blob - MAINTAINERS
Merge tag 'mmc-v5.8' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc
[thirdparty/linux.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below. This will make things
5 easier on the maintainers. Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1. Always *test* your changes, however small, on at least 4 or
12 5 people, preferably many more.
13
14 2. Try to release a few ALPHA test versions to the net. Announce
15 them onto the kernel channel and await results. This is especially
16 important for device drivers, because often that's the only way
17 you will find things like the fact version 3 firmware needs
18 a magic fix you didn't know about, or some clown changed the
19 chips on a board and not its name. (Don't laugh! Look at the
20 SMC etherpower for that.)
21
22 3. Make sure your changes compile correctly in multiple
23 configurations. In particular check that changes work both as a
24 module and built into the kernel.
25
26 4. When you are happy with a change make it generally available for
27 testing and await feedback.
28
29 5. Make a patch available to the relevant maintainer in the list. Use
30 ``diff -u`` to make the patch easy to merge. Be prepared to get your
31 changes sent back with seemingly silly requests about formatting
32 and variable names. These aren't as silly as they seem. One
33 job the maintainers (and especially Linus) do is to keep things
34 looking the same. Sometimes this means that the clever hack in
35 your driver to get around a problem actually needs to become a
36 generalized kernel feature ready for next time.
37
38 PLEASE check your patch with the automated style checker
39 (scripts/checkpatch.pl) to catch trivial style violations.
40 See Documentation/process/coding-style.rst for guidance here.
41
42 PLEASE CC: the maintainers and mailing lists that are generated
43 by ``scripts/get_maintainer.pl.`` The results returned by the
44 script will be best if you have git installed and are making
45 your changes in a branch derived from Linus' latest git tree.
46 See Documentation/process/submitting-patches.rst for details.
47
48 PLEASE try to include any credit lines you want added with the
49 patch. It avoids people being missed off by mistake and makes
50 it easier to know who wants adding and who doesn't.
51
52 PLEASE document known bugs. If it doesn't work for everything
53 or does something very odd once a month document it.
54
55 PLEASE remember that submissions must be made under the terms
56 of the Linux Foundation certificate of contribution and should
57 include a Signed-off-by: line. The current version of this
58 "Developer's Certificate of Origin" (DCO) is listed in the file
59 Documentation/process/submitting-patches.rst.
60
61 6. Make sure you have the right to send any changes you make. If you
62 do changes at work you may find your employer owns the patch
63 not you.
64
65 7. When sending security related changes or reports to a maintainer
66 please Cc: security@kernel.org, especially if the maintainer
67 does not respond. Please keep in mind that the security team is
68 a small set of people who can be efficient only when working on
69 verified bugs. Please only Cc: this list when you have identified
70 that the bug would present a short-term risk to other users if it
71 were publicly disclosed. For example, reports of address leaks do
72 not represent an immediate threat and are better handled publicly,
73 and ideally, should come with a patch proposal. Please do not send
74 automated reports to this list either. Such bugs will be handled
75 better and faster in the usual public places. See
76 Documentation/admin-guide/security-bugs.rst for details.
77
78 8. Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83 M: *Mail* patches to: FullName <address@domain>
84 R: Designated *Reviewer*: FullName <address@domain>
85 These reviewers should be CCed on patches.
86 L: *Mailing list* that is relevant to this area
87 S: *Status*, one of the following:
88 Supported: Someone is actually paid to look after this.
89 Maintained: Someone actually looks after it.
90 Odd Fixes: It has a maintainer but they don't have time to do
91 much other than throw the odd patch in. See below..
92 Orphan: No current maintainer [but maybe you could take the
93 role as you write your new code].
94 Obsolete: Old code. Something tagged obsolete generally means
95 it has been replaced by a better system and you
96 should be using that.
97 W: *Web-page* with status/info
98 Q: *Patchwork* web based patch tracking system site
99 B: URI for where to file *bugs*. A web-page with detailed bug
100 filing info, a direct bug tracker link, or a mailto: URI.
101 C: URI for *chat* protocol, server and channel where developers
102 usually hang out, for example irc://server/channel.
103 P: Subsystem Profile document for more details submitting
104 patches to the given subsystem. This is either an in-tree file,
105 or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106 for details.
107 T: *SCM* tree type and location.
108 Type is one of: git, hg, quilt, stgit, topgit
109 F: *Files* and directories wildcard patterns.
110 A trailing slash includes all files and subdirectory files.
111 F: drivers/net/ all files in and below drivers/net
112 F: drivers/net/* all files in drivers/net, but not below
113 F: */net/* all files in "any top level directory"/net
114 One pattern per line. Multiple F: lines acceptable.
115 X: *Excluded* files and directories that are NOT maintained, same
116 rules as F:. Files exclusions are tested before file matches.
117 Can be useful for excluding a specific subdirectory, for instance:
118 F: net/
119 X: net/ipv6/
120 matches all files in and below net excluding net/ipv6/
121 N: Files and directories *Regex* patterns.
122 N: [^a-z]tegra all files whose path contains tegra
123 (not including files like integrator)
124 One pattern per line. Multiple N: lines acceptable.
125 scripts/get_maintainer.pl has different behavior for files that
126 match F: pattern and matches of N: patterns. By default,
127 get_maintainer will not look at git log history when an F: pattern
128 match occurs. When an N: match occurs, git log history is used
129 to also notify the people that have git commit signatures.
130 K: *Content regex* (perl extended) pattern match in a patch or file.
131 For instance:
132 K: of_get_profile
133 matches patches or files that contain "of_get_profile"
134 K: \b(printk|pr_(info|err))\b
135 matches patches or files that contain one or more of the words
136 printk, pr_info or pr_err
137 One regex pattern per line. Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143 first. When adding to this list, please keep the entries in
144 alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M: Steffen Klassert <klassert@kernel.org>
148 L: netdev@vger.kernel.org
149 S: Odd Fixes
150 F: Documentation/networking/device_drivers/3com/vortex.txt
151 F: drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M: David Dillow <dave@thedillows.org>
155 L: netdev@vger.kernel.org
156 S: Maintained
157 F: drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M: Adam Radford <aradford@gmail.com>
161 L: linux-scsi@vger.kernel.org
162 S: Supported
163 W: http://www.lsi.com
164 F: drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L: linux-scsi@vger.kernel.org
169 S: Maintained
170 F: drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M: Alexander Aring <alex.aring@gmail.com>
174 M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L: linux-bluetooth@vger.kernel.org
176 L: linux-wpan@vger.kernel.org
177 S: Maintained
178 F: Documentation/networking/6lowpan.rst
179 F: include/net/6lowpan.h
180 F: net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L: linux-hams@vger.kernel.org
185 S: Maintained
186 F: drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M: Johannes Berg <johannes@sipsolutions.net>
190 L: linux-wireless@vger.kernel.org
191 S: Maintained
192 W: https://wireless.wiki.kernel.org/
193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F: Documentation/driver-api/80211/cfg80211.rst
196 F: Documentation/networking/regulatory.txt
197 F: include/linux/ieee80211.h
198 F: include/net/cfg80211.h
199 F: include/net/ieee80211_radiotap.h
200 F: include/net/iw_handler.h
201 F: include/net/wext.h
202 F: include/uapi/linux/nl80211.h
203 F: net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M: Realtek linux nic maintainers <nic_swsd@realtek.com>
207 M: Heiner Kallweit <hkallweit1@gmail.com>
208 L: netdev@vger.kernel.org
209 S: Maintained
210 F: drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L: linux-serial@vger.kernel.org
215 S: Maintained
216 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F: drivers/tty/serial/8250*
218 F: include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L: netdev@vger.kernel.org
222 S: Orphan / Obsolete
223 F: drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M: Eric Van Hensbergen <ericvh@gmail.com>
227 M: Latchesar Ionkov <lucho@ionkov.net>
228 M: Dominique Martinet <asmadeus@codewreck.org>
229 L: v9fs-developer@lists.sourceforge.net
230 S: Maintained
231 W: http://swik.net/v9fs
232 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T: git git://github.com/martinetd/linux.git
235 F: Documentation/filesystems/9p.rst
236 F: fs/9p/
237 F: include/net/9p/
238 F: include/trace/events/9p.h
239 F: include/uapi/linux/virtio_9p.h
240 F: net/9p/
241
242 A8293 MEDIA DRIVER
243 M: Antti Palosaari <crope@iki.fi>
244 L: linux-media@vger.kernel.org
245 S: Maintained
246 W: https://linuxtv.org
247 W: http://palosaari.fi/linux/
248 Q: http://patchwork.linuxtv.org/project/linux-media/list/
249 T: git git://linuxtv.org/anttip/media_tree.git
250 F: drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L: linux-scsi@vger.kernel.org
255 S: Supported
256 W: http://www.adaptec.com/
257 F: Documentation/scsi/aacraid.rst
258 F: drivers/scsi/aacraid/
259
260 ABI/API
261 L: linux-api@vger.kernel.org
262 F: include/linux/syscalls.h
263 F: kernel/sys_ni.c
264
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M: Hans de Goede <hdegoede@redhat.com>
267 L: linux-hwmon@vger.kernel.org
268 S: Maintained
269 F: drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M: Alistair John Strachan <alistair@devzero.co.uk>
273 L: linux-hwmon@vger.kernel.org
274 S: Maintained
275 F: drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M: William Breathitt Gray <vilhelm.gray@gmail.com>
279 L: linux-gpio@vger.kernel.org
280 S: Maintained
281 F: drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
285 L: linux-gpio@vger.kernel.org
286 S: Maintained
287 F: drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
291 L: linux-gpio@vger.kernel.org
292 S: Maintained
293 F: drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M: William Breathitt Gray <vilhelm.gray@gmail.com>
297 L: linux-iio@vger.kernel.org
298 S: Maintained
299 F: Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
300 F: Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
301 F: drivers/counter/104-quad-8.c
302
303 ACCES PCI-IDIO-16 GPIO DRIVER
304 M: William Breathitt Gray <vilhelm.gray@gmail.com>
305 L: linux-gpio@vger.kernel.org
306 S: Maintained
307 F: drivers/gpio/gpio-pci-idio-16.c
308
309 ACCES PCIe-IDIO-24 GPIO DRIVER
310 M: William Breathitt Gray <vilhelm.gray@gmail.com>
311 L: linux-gpio@vger.kernel.org
312 S: Maintained
313 F: drivers/gpio/gpio-pcie-idio-24.c
314
315 ACENIC DRIVER
316 M: Jes Sorensen <jes@trained-monkey.org>
317 L: linux-acenic@sunsite.dk
318 S: Maintained
319 F: drivers/net/ethernet/alteon/acenic*
320
321 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
322 M: Peter Kaestle <peter@piie.net>
323 L: platform-driver-x86@vger.kernel.org
324 S: Maintained
325 W: http://piie.net/?section=acerhdf
326 F: drivers/platform/x86/acerhdf.c
327
328 ACER WMI LAPTOP EXTRAS
329 M: "Lee, Chun-Yi" <jlee@suse.com>
330 L: platform-driver-x86@vger.kernel.org
331 S: Maintained
332 F: drivers/platform/x86/acer-wmi.c
333
334 ACPI
335 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
336 M: Len Brown <lenb@kernel.org>
337 L: linux-acpi@vger.kernel.org
338 S: Supported
339 W: https://01.org/linux-acpi
340 Q: https://patchwork.kernel.org/project/linux-acpi/list/
341 B: https://bugzilla.kernel.org
342 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
343 F: Documentation/ABI/testing/configfs-acpi
344 F: Documentation/ABI/testing/sysfs-bus-acpi
345 F: Documentation/firmware-guide/acpi/
346 F: drivers/acpi/
347 F: drivers/pci/*/*acpi*
348 F: drivers/pci/*acpi*
349 F: drivers/pnp/pnpacpi/
350 F: include/acpi/
351 F: include/linux/acpi.h
352 F: include/linux/fwnode.h
353 F: tools/power/acpi/
354
355 ACPI APEI
356 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
357 M: Len Brown <lenb@kernel.org>
358 R: James Morse <james.morse@arm.com>
359 R: Tony Luck <tony.luck@intel.com>
360 R: Borislav Petkov <bp@alien8.de>
361 L: linux-acpi@vger.kernel.org
362 F: drivers/acpi/apei/
363
364 ACPI COMPONENT ARCHITECTURE (ACPICA)
365 M: Robert Moore <robert.moore@intel.com>
366 M: Erik Kaneda <erik.kaneda@intel.com>
367 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L: linux-acpi@vger.kernel.org
369 L: devel@acpica.org
370 S: Supported
371 W: https://acpica.org/
372 W: https://github.com/acpica/acpica/
373 Q: https://patchwork.kernel.org/project/linux-acpi/list/
374 B: https://bugzilla.kernel.org
375 B: https://bugs.acpica.org
376 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F: drivers/acpi/acpica/
378 F: include/acpi/
379 F: tools/power/acpi/
380
381 ACPI FAN DRIVER
382 M: Zhang Rui <rui.zhang@intel.com>
383 L: linux-acpi@vger.kernel.org
384 S: Supported
385 W: https://01.org/linux-acpi
386 B: https://bugzilla.kernel.org
387 F: drivers/acpi/fan.c
388
389 ACPI FOR ARM64 (ACPI/arm64)
390 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
391 M: Hanjun Guo <guohanjun@huawei.com>
392 M: Sudeep Holla <sudeep.holla@arm.com>
393 L: linux-acpi@vger.kernel.org
394 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
395 S: Maintained
396 F: drivers/acpi/arm64
397
398 ACPI I2C MULTI INSTANTIATE DRIVER
399 M: Hans de Goede <hdegoede@redhat.com>
400 L: platform-driver-x86@vger.kernel.org
401 S: Maintained
402 F: drivers/platform/x86/i2c-multi-instantiate.c
403
404 ACPI PMIC DRIVERS
405 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
406 M: Len Brown <lenb@kernel.org>
407 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
408 R: Mika Westerberg <mika.westerberg@linux.intel.com>
409 L: linux-acpi@vger.kernel.org
410 S: Supported
411 Q: https://patchwork.kernel.org/project/linux-acpi/list/
412 B: https://bugzilla.kernel.org
413 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F: drivers/acpi/pmic/
415
416 ACPI THERMAL DRIVER
417 M: Zhang Rui <rui.zhang@intel.com>
418 L: linux-acpi@vger.kernel.org
419 S: Supported
420 W: https://01.org/linux-acpi
421 B: https://bugzilla.kernel.org
422 F: drivers/acpi/*thermal*
423
424 ACPI VIDEO DRIVER
425 M: Zhang Rui <rui.zhang@intel.com>
426 L: linux-acpi@vger.kernel.org
427 S: Supported
428 W: https://01.org/linux-acpi
429 B: https://bugzilla.kernel.org
430 F: drivers/acpi/acpi_video.c
431
432 ACPI WMI DRIVER
433 L: platform-driver-x86@vger.kernel.org
434 S: Orphan
435 F: drivers/platform/x86/wmi.c
436 F: include/uapi/linux/wmi.h
437
438 AD1889 ALSA SOUND DRIVER
439 L: linux-parisc@vger.kernel.org
440 S: Maintained
441 W: https://parisc.wiki.kernel.org/index.php/AD1889
442 F: sound/pci/ad1889.*
443
444 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
445 M: Michael Hennerich <michael.hennerich@analog.com>
446 S: Supported
447 W: http://wiki.analog.com/AD5254
448 W: http://ez.analog.com/community/linux-device-drivers
449 F: drivers/misc/ad525x_dpot.c
450
451 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
452 M: Michael Hennerich <michael.hennerich@analog.com>
453 S: Supported
454 W: http://wiki.analog.com/AD5398
455 W: http://ez.analog.com/community/linux-device-drivers
456 F: drivers/regulator/ad5398.c
457
458 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
459 M: Michael Hennerich <michael.hennerich@analog.com>
460 S: Supported
461 W: http://wiki.analog.com/AD7142
462 W: http://ez.analog.com/community/linux-device-drivers
463 F: drivers/input/misc/ad714x.c
464
465 AD7877 TOUCHSCREEN DRIVER
466 M: Michael Hennerich <michael.hennerich@analog.com>
467 S: Supported
468 W: http://wiki.analog.com/AD7877
469 W: http://ez.analog.com/community/linux-device-drivers
470 F: drivers/input/touchscreen/ad7877.c
471
472 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
473 M: Michael Hennerich <michael.hennerich@analog.com>
474 S: Supported
475 W: http://wiki.analog.com/AD7879
476 W: http://ez.analog.com/community/linux-device-drivers
477 F: drivers/input/touchscreen/ad7879.c
478
479 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
480 M: Jiri Kosina <jikos@kernel.org>
481 S: Maintained
482
483 ADF7242 IEEE 802.15.4 RADIO DRIVER
484 M: Michael Hennerich <michael.hennerich@analog.com>
485 L: linux-wpan@vger.kernel.org
486 S: Supported
487 W: https://wiki.analog.com/ADF7242
488 W: http://ez.analog.com/community/linux-device-drivers
489 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
490 F: drivers/net/ieee802154/adf7242.c
491
492 ADM1025 HARDWARE MONITOR DRIVER
493 M: Jean Delvare <jdelvare@suse.com>
494 L: linux-hwmon@vger.kernel.org
495 S: Maintained
496 F: Documentation/hwmon/adm1025.rst
497 F: drivers/hwmon/adm1025.c
498
499 ADM1029 HARDWARE MONITOR DRIVER
500 M: Corentin Labbe <clabbe.montjoie@gmail.com>
501 L: linux-hwmon@vger.kernel.org
502 S: Maintained
503 F: drivers/hwmon/adm1029.c
504
505 ADM8211 WIRELESS DRIVER
506 L: linux-wireless@vger.kernel.org
507 S: Orphan
508 W: https://wireless.wiki.kernel.org/
509 F: drivers/net/wireless/admtek/adm8211.*
510
511 ADP1653 FLASH CONTROLLER DRIVER
512 M: Sakari Ailus <sakari.ailus@iki.fi>
513 L: linux-media@vger.kernel.org
514 S: Maintained
515 F: drivers/media/i2c/adp1653.c
516 F: include/media/i2c/adp1653.h
517
518 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
519 M: Michael Hennerich <michael.hennerich@analog.com>
520 S: Supported
521 W: http://wiki.analog.com/ADP5520
522 W: http://ez.analog.com/community/linux-device-drivers
523 F: drivers/gpio/gpio-adp5520.c
524 F: drivers/input/keyboard/adp5520-keys.c
525 F: drivers/leds/leds-adp5520.c
526 F: drivers/mfd/adp5520.c
527 F: drivers/video/backlight/adp5520_bl.c
528
529 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
530 M: Michael Hennerich <michael.hennerich@analog.com>
531 S: Supported
532 W: http://wiki.analog.com/ADP5588
533 W: http://ez.analog.com/community/linux-device-drivers
534 F: drivers/gpio/gpio-adp5588.c
535 F: drivers/input/keyboard/adp5588-keys.c
536
537 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
538 M: Michael Hennerich <michael.hennerich@analog.com>
539 S: Supported
540 W: http://wiki.analog.com/ADP8860
541 W: http://ez.analog.com/community/linux-device-drivers
542 F: drivers/video/backlight/adp8860_bl.c
543
544 ADT746X FAN DRIVER
545 M: Colin Leroy <colin@colino.net>
546 S: Maintained
547 F: drivers/macintosh/therm_adt746x.c
548
549 ADT7475 HARDWARE MONITOR DRIVER
550 M: Jean Delvare <jdelvare@suse.com>
551 L: linux-hwmon@vger.kernel.org
552 S: Maintained
553 F: Documentation/hwmon/adt7475.rst
554 F: drivers/hwmon/adt7475.c
555
556 ADVANSYS SCSI DRIVER
557 M: Matthew Wilcox <willy@infradead.org>
558 M: Hannes Reinecke <hare@suse.com>
559 L: linux-scsi@vger.kernel.org
560 S: Maintained
561 F: Documentation/scsi/advansys.rst
562 F: drivers/scsi/advansys.c
563
564 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
565 M: Michael Hennerich <michael.hennerich@analog.com>
566 S: Supported
567 W: http://wiki.analog.com/ADXL345
568 W: http://ez.analog.com/community/linux-device-drivers
569 F: Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
570 F: drivers/input/misc/adxl34x.c
571
572 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
573 M: Michael Hennerich <michael.hennerich@analog.com>
574 S: Supported
575 W: http://ez.analog.com/community/linux-device-drivers
576 F: Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
577 F: drivers/iio/accel/adxl372.c
578 F: drivers/iio/accel/adxl372_i2c.c
579 F: drivers/iio/accel/adxl372_spi.c
580
581 AF9013 MEDIA DRIVER
582 M: Antti Palosaari <crope@iki.fi>
583 L: linux-media@vger.kernel.org
584 S: Maintained
585 W: https://linuxtv.org
586 W: http://palosaari.fi/linux/
587 Q: http://patchwork.linuxtv.org/project/linux-media/list/
588 T: git git://linuxtv.org/anttip/media_tree.git
589 F: drivers/media/dvb-frontends/af9013*
590
591 AF9033 MEDIA DRIVER
592 M: Antti Palosaari <crope@iki.fi>
593 L: linux-media@vger.kernel.org
594 S: Maintained
595 W: https://linuxtv.org
596 W: http://palosaari.fi/linux/
597 Q: http://patchwork.linuxtv.org/project/linux-media/list/
598 T: git git://linuxtv.org/anttip/media_tree.git
599 F: drivers/media/dvb-frontends/af9033*
600
601 AFFS FILE SYSTEM
602 M: David Sterba <dsterba@suse.com>
603 L: linux-fsdevel@vger.kernel.org
604 S: Odd Fixes
605 F: Documentation/filesystems/affs.rst
606 F: fs/affs/
607
608 AFS FILESYSTEM
609 M: David Howells <dhowells@redhat.com>
610 L: linux-afs@lists.infradead.org
611 S: Supported
612 W: https://www.infradead.org/~dhowells/kafs/
613 F: Documentation/filesystems/afs.rst
614 F: fs/afs/
615 F: include/trace/events/afs.h
616
617 AGPGART DRIVER
618 M: David Airlie <airlied@linux.ie>
619 S: Maintained
620 T: git git://anongit.freedesktop.org/drm/drm
621 F: drivers/char/agp/
622 F: include/linux/agp*
623 F: include/uapi/linux/agp*
624
625 AHA152X SCSI DRIVER
626 M: "Juergen E. Fischer" <fischer@norbit.de>
627 L: linux-scsi@vger.kernel.org
628 S: Maintained
629 F: drivers/scsi/aha152x*
630 F: drivers/scsi/pcmcia/aha152x*
631
632 AIC7XXX / AIC79XX SCSI DRIVER
633 M: Hannes Reinecke <hare@suse.com>
634 L: linux-scsi@vger.kernel.org
635 S: Maintained
636 F: drivers/scsi/aic7xxx/
637
638 AIMSLAB FM RADIO RECEIVER DRIVER
639 M: Hans Verkuil <hverkuil@xs4all.nl>
640 L: linux-media@vger.kernel.org
641 S: Maintained
642 W: https://linuxtv.org
643 T: git git://linuxtv.org/media_tree.git
644 F: drivers/media/radio/radio-aimslab*
645
646 AIO
647 M: Benjamin LaHaise <bcrl@kvack.org>
648 L: linux-aio@kvack.org
649 S: Supported
650 F: fs/aio.c
651 F: include/linux/*aio*.h
652
653 AIRSPY MEDIA DRIVER
654 M: Antti Palosaari <crope@iki.fi>
655 L: linux-media@vger.kernel.org
656 S: Maintained
657 W: https://linuxtv.org
658 W: http://palosaari.fi/linux/
659 Q: http://patchwork.linuxtv.org/project/linux-media/list/
660 T: git git://linuxtv.org/anttip/media_tree.git
661 F: drivers/media/usb/airspy/
662
663 ALACRITECH GIGABIT ETHERNET DRIVER
664 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
665 S: Maintained
666 F: drivers/net/ethernet/alacritech/*
667
668 ALCATEL SPEEDTOUCH USB DRIVER
669 M: Duncan Sands <duncan.sands@free.fr>
670 L: linux-usb@vger.kernel.org
671 S: Maintained
672 W: http://www.linux-usb.org/SpeedTouch/
673 F: drivers/usb/atm/speedtch.c
674 F: drivers/usb/atm/usbatm.c
675
676 ALCHEMY AU1XX0 MMC DRIVER
677 M: Manuel Lauss <manuel.lauss@gmail.com>
678 S: Maintained
679 F: drivers/mmc/host/au1xmmc.c
680
681 ALI1563 I2C DRIVER
682 M: Rudolf Marek <r.marek@assembler.cz>
683 L: linux-i2c@vger.kernel.org
684 S: Maintained
685 F: Documentation/i2c/busses/i2c-ali1563.rst
686 F: drivers/i2c/busses/i2c-ali1563.c
687
688 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
689 M: Tomislav Denis <tomislav.denis@avl.com>
690 L: linux-iio@vger.kernel.org
691 S: Maintained
692 W: http://www.allsensors.com/
693 F: Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
694 F: drivers/iio/pressure/dlhl60d.c
695
696 ALLEGRO DVT VIDEO IP CORE DRIVER
697 M: Michael Tretter <m.tretter@pengutronix.de>
698 R: Pengutronix Kernel Team <kernel@pengutronix.de>
699 L: linux-media@vger.kernel.org
700 S: Maintained
701 F: drivers/staging/media/allegro-dvt/
702
703 ALLWINNER A10 CSI DRIVER
704 M: Maxime Ripard <mripard@kernel.org>
705 L: linux-media@vger.kernel.org
706 S: Maintained
707 T: git git://linuxtv.org/media_tree.git
708 F: Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
709 F: drivers/media/platform/sunxi/sun4i-csi/
710
711 ALLWINNER CPUFREQ DRIVER
712 M: Yangtao Li <tiny.windzz@gmail.com>
713 L: linux-pm@vger.kernel.org
714 S: Maintained
715 F: Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
716 F: drivers/cpufreq/sun50i-cpufreq-nvmem.c
717
718 ALLWINNER CRYPTO DRIVERS
719 M: Corentin Labbe <clabbe.montjoie@gmail.com>
720 L: linux-crypto@vger.kernel.org
721 S: Maintained
722 F: drivers/crypto/allwinner/
723
724 ALLWINNER THERMAL DRIVER
725 M: Vasily Khoruzhick <anarsoul@gmail.com>
726 M: Yangtao Li <tiny.windzz@gmail.com>
727 L: linux-pm@vger.kernel.org
728 S: Maintained
729 F: Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
730 F: drivers/thermal/sun8i_thermal.c
731
732 ALLWINNER VPU DRIVER
733 M: Maxime Ripard <mripard@kernel.org>
734 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
735 L: linux-media@vger.kernel.org
736 S: Maintained
737 F: drivers/staging/media/sunxi/cedrus/
738
739 ALPHA PORT
740 M: Richard Henderson <rth@twiddle.net>
741 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
742 M: Matt Turner <mattst88@gmail.com>
743 L: linux-alpha@vger.kernel.org
744 S: Odd Fixes
745 F: arch/alpha/
746
747 ALPS PS/2 TOUCHPAD DRIVER
748 R: Pali Rohár <pali@kernel.org>
749 F: drivers/input/mouse/alps.*
750
751 ALTERA I2C CONTROLLER DRIVER
752 M: Thor Thayer <thor.thayer@linux.intel.com>
753 S: Maintained
754 F: Documentation/devicetree/bindings/i2c/i2c-altera.txt
755 F: drivers/i2c/busses/i2c-altera.c
756
757 ALTERA MAILBOX DRIVER
758 M: Ley Foon Tan <ley.foon.tan@intel.com>
759 S: Maintained
760 F: drivers/mailbox/mailbox-altera.c
761
762 ALTERA PIO DRIVER
763 M: Joyce Ooi <joyce.ooi@intel.com>
764 L: linux-gpio@vger.kernel.org
765 S: Maintained
766 F: drivers/gpio/gpio-altera.c
767
768 ALTERA SYSTEM MANAGER DRIVER
769 M: Thor Thayer <thor.thayer@linux.intel.com>
770 S: Maintained
771 F: drivers/mfd/altera-sysmgr.c
772 F: include/linux/mfd/altera-sysmgr.h
773
774 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
775 M: Thor Thayer <thor.thayer@linux.intel.com>
776 S: Maintained
777 F: drivers/gpio/gpio-altera-a10sr.c
778 F: drivers/mfd/altera-a10sr.c
779 F: drivers/reset/reset-a10sr.c
780 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
781 F: include/linux/mfd/altera-a10sr.h
782
783 ALTERA TRIPLE SPEED ETHERNET DRIVER
784 M: Thor Thayer <thor.thayer@linux.intel.com>
785 L: netdev@vger.kernel.org
786 S: Maintained
787 F: drivers/net/ethernet/altera/
788
789 ALTERA UART/JTAG UART SERIAL DRIVERS
790 M: Tobias Klauser <tklauser@distanz.ch>
791 L: linux-serial@vger.kernel.org
792 S: Maintained
793 F: drivers/tty/serial/altera_jtaguart.c
794 F: drivers/tty/serial/altera_uart.c
795 F: include/linux/altera_jtaguart.h
796 F: include/linux/altera_uart.h
797
798 AMAZON ANNAPURNA LABS FIC DRIVER
799 M: Talel Shenhar <talel@amazon.com>
800 S: Maintained
801 F: Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
802 F: drivers/irqchip/irq-al-fic.c
803
804 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
805 M: Talel Shenhar <talel@amazon.com>
806 S: Maintained
807 F: Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
808 F: drivers/thermal/thermal_mmio.c
809
810 AMAZON ETHERNET DRIVERS
811 M: Netanel Belgazal <netanel@amazon.com>
812 M: Arthur Kiyanovski <akiyano@amazon.com>
813 R: Guy Tzalik <gtzalik@amazon.com>
814 R: Saeed Bishara <saeedb@amazon.com>
815 R: Zorik Machulsky <zorik@amazon.com>
816 L: netdev@vger.kernel.org
817 S: Supported
818 F: Documentation/networking/device_drivers/amazon/ena.txt
819 F: drivers/net/ethernet/amazon/
820
821 AMAZON RDMA EFA DRIVER
822 M: Gal Pressman <galpress@amazon.com>
823 R: Yossi Leybovich <sleybo@amazon.com>
824 L: linux-rdma@vger.kernel.org
825 S: Supported
826 Q: https://patchwork.kernel.org/project/linux-rdma/list/
827 F: drivers/infiniband/hw/efa/
828 F: include/uapi/rdma/efa-abi.h
829
830 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
831 M: Tom Lendacky <thomas.lendacky@amd.com>
832 L: linux-crypto@vger.kernel.org
833 S: Supported
834 F: drivers/crypto/ccp/
835 F: include/linux/ccp.h
836
837 AMD DISPLAY CORE
838 M: Harry Wentland <harry.wentland@amd.com>
839 M: Leo Li <sunpeng.li@amd.com>
840 L: amd-gfx@lists.freedesktop.org
841 S: Supported
842 T: git git://people.freedesktop.org/~agd5f/linux
843 F: drivers/gpu/drm/amd/display/
844
845 AMD ENERGY DRIVER
846 M: Naveen Krishna Chatradhi <nchatrad@amd.com>
847 L: linux-hwmon@vger.kernel.org
848 S: Maintained
849 F: Documentation/hwmon/amd_energy.rst
850 F: drivers/hwmon/amd_energy.c
851
852 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
853 M: Huang Rui <ray.huang@amd.com>
854 L: linux-hwmon@vger.kernel.org
855 S: Supported
856 F: Documentation/hwmon/fam15h_power.rst
857 F: drivers/hwmon/fam15h_power.c
858
859 AMD FCH GPIO DRIVER
860 M: Enrico Weigelt, metux IT consult <info@metux.net>
861 L: linux-gpio@vger.kernel.org
862 S: Maintained
863 F: drivers/gpio/gpio-amd-fch.c
864 F: include/linux/platform_data/gpio/gpio-amd-fch.h
865
866 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
867 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
868 S: Orphan
869 F: drivers/usb/gadget/udc/amd5536udc.*
870
871 AMD GEODE PROCESSOR/CHIPSET SUPPORT
872 M: Andres Salomon <dilinger@queued.net>
873 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
874 S: Supported
875 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
876 F: arch/x86/include/asm/geode.h
877 F: drivers/char/hw_random/geode-rng.c
878 F: drivers/crypto/geode*
879 F: drivers/video/fbdev/geode/
880
881 AMD IOMMU (AMD-VI)
882 M: Joerg Roedel <joro@8bytes.org>
883 L: iommu@lists.linux-foundation.org
884 S: Maintained
885 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
886 F: drivers/iommu/amd_iommu*.[ch]
887 F: include/linux/amd-iommu.h
888
889 AMD KFD
890 M: Felix Kuehling <Felix.Kuehling@amd.com>
891 L: amd-gfx@lists.freedesktop.org
892 S: Supported
893 T: git git://people.freedesktop.org/~agd5f/linux
894 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
895 F: drivers/gpu/drm/amd/amdkfd/
896 F: drivers/gpu/drm/amd/include/cik_structs.h
897 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
898 F: drivers/gpu/drm/amd/include/v9_structs.h
899 F: drivers/gpu/drm/amd/include/vi_structs.h
900 F: include/uapi/linux/kfd_ioctl.h
901
902 AMD SPI DRIVER
903 M: Sanjay R Mehta <sanju.mehta@amd.com>
904 S: Maintained
905 F: drivers/spi/spi-amd.c
906
907 AMD MP2 I2C DRIVER
908 M: Elie Morisse <syniurge@gmail.com>
909 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
910 M: Shyam Sundar S K <shyam-sundar.s-k@amd.com>
911 L: linux-i2c@vger.kernel.org
912 S: Maintained
913 F: drivers/i2c/busses/i2c-amd-mp2*
914
915 AMD POWERPLAY
916 M: Evan Quan <evan.quan@amd.com>
917 L: amd-gfx@lists.freedesktop.org
918 S: Supported
919 T: git git://people.freedesktop.org/~agd5f/linux
920 F: drivers/gpu/drm/amd/powerplay/
921
922 AMD SEATTLE DEVICE TREE SUPPORT
923 M: Brijesh Singh <brijeshkumar.singh@amd.com>
924 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
925 M: Tom Lendacky <thomas.lendacky@amd.com>
926 S: Supported
927 F: arch/arm64/boot/dts/amd/
928
929 AMD XGBE DRIVER
930 M: Tom Lendacky <thomas.lendacky@amd.com>
931 L: netdev@vger.kernel.org
932 S: Supported
933 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
934 F: drivers/net/ethernet/amd/xgbe/
935
936 ANALOG DEVICES INC AD5686 DRIVER
937 M: Michael Hennerich <Michael.Hennerich@analog.com>
938 L: linux-pm@vger.kernel.org
939 S: Supported
940 W: http://ez.analog.com/community/linux-device-drivers
941 F: drivers/iio/dac/ad5686*
942 F: drivers/iio/dac/ad5696*
943
944 ANALOG DEVICES INC AD5758 DRIVER
945 M: Michael Hennerich <Michael.Hennerich@analog.com>
946 L: linux-iio@vger.kernel.org
947 S: Supported
948 W: http://ez.analog.com/community/linux-device-drivers
949 F: Documentation/devicetree/bindings/iio/dac/ad5758.txt
950 F: drivers/iio/dac/ad5758.c
951
952 ANALOG DEVICES INC AD7091R5 DRIVER
953 M: Beniamin Bia <beniamin.bia@analog.com>
954 L: linux-iio@vger.kernel.org
955 S: Supported
956 W: http://ez.analog.com/community/linux-device-drivers
957 F: Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
958 F: drivers/iio/adc/ad7091r5.c
959
960 ANALOG DEVICES INC AD7124 DRIVER
961 M: Michael Hennerich <Michael.Hennerich@analog.com>
962 L: linux-iio@vger.kernel.org
963 S: Supported
964 W: http://ez.analog.com/community/linux-device-drivers
965 F: Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
966 F: drivers/iio/adc/ad7124.c
967
968 ANALOG DEVICES INC AD7192 DRIVER
969 M: Alexandru Tachici <alexandru.tachici@analog.com>
970 L: linux-iio@vger.kernel.org
971 S: Supported
972 W: http://ez.analog.com/community/linux-device-drivers
973 F: Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
974 F: drivers/iio/adc/ad7192.c
975
976 ANALOG DEVICES INC AD7292 DRIVER
977 M: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
978 L: linux-iio@vger.kernel.org
979 S: Supported
980 W: http://ez.analog.com/community/linux-device-drivers
981 F: Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
982 F: drivers/iio/adc/ad7292.c
983
984 ANALOG DEVICES INC AD7606 DRIVER
985 M: Michael Hennerich <Michael.Hennerich@analog.com>
986 M: Beniamin Bia <beniamin.bia@analog.com>
987 L: linux-iio@vger.kernel.org
988 S: Supported
989 W: http://ez.analog.com/community/linux-device-drivers
990 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
991 F: drivers/iio/adc/ad7606.c
992
993 ANALOG DEVICES INC AD7768-1 DRIVER
994 M: Michael Hennerich <Michael.Hennerich@analog.com>
995 L: linux-iio@vger.kernel.org
996 S: Supported
997 W: http://ez.analog.com/community/linux-device-drivers
998 F: Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
999 F: drivers/iio/adc/ad7768-1.c
1000
1001 ANALOG DEVICES INC AD7780 DRIVER
1002 M: Michael Hennerich <Michael.Hennerich@analog.com>
1003 M: Renato Lui Geh <renatogeh@gmail.com>
1004 L: linux-iio@vger.kernel.org
1005 S: Supported
1006 W: http://ez.analog.com/community/linux-device-drivers
1007 F: Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1008 F: drivers/iio/adc/ad7780.c
1009
1010 ANALOG DEVICES INC AD9389B DRIVER
1011 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1012 L: linux-media@vger.kernel.org
1013 S: Maintained
1014 F: drivers/media/i2c/ad9389b*
1015
1016 ANALOG DEVICES INC ADGS1408 DRIVER
1017 M: Mircea Caprioru <mircea.caprioru@analog.com>
1018 S: Supported
1019 F: Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1020 F: drivers/mux/adgs1408.c
1021
1022 ANALOG DEVICES INC ADIN DRIVER
1023 M: Alexandru Ardelean <alexaundru.ardelean@analog.com>
1024 L: netdev@vger.kernel.org
1025 S: Supported
1026 W: http://ez.analog.com/community/linux-device-drivers
1027 F: Documentation/devicetree/bindings/net/adi,adin.yaml
1028 F: drivers/net/phy/adin.c
1029
1030 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1031 M: Alexandru Ardelean <alexandru.ardelean@analog.com>
1032 L: linux-iio@vger.kernel.org
1033 S: Supported
1034 F: drivers/iio/imu/adis.c
1035 F: include/linux/iio/imu/adis.h
1036
1037 ANALOG DEVICES INC ADIS16460 DRIVER
1038 M: Dragos Bogdan <dragos.bogdan@analog.com>
1039 L: linux-iio@vger.kernel.org
1040 S: Supported
1041 W: http://ez.analog.com/community/linux-device-drivers
1042 F: Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1043 F: drivers/iio/imu/adis16460.c
1044
1045 ANALOG DEVICES INC ADM1177 DRIVER
1046 M: Beniamin Bia <beniamin.bia@analog.com>
1047 M: Michael Hennerich <Michael.Hennerich@analog.com>
1048 L: linux-hwmon@vger.kernel.org
1049 S: Supported
1050 W: http://ez.analog.com/community/linux-device-drivers
1051 F: Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1052 F: drivers/hwmon/adm1177.c
1053
1054 ANALOG DEVICES INC ADP5061 DRIVER
1055 M: Michael Hennerich <Michael.Hennerich@analog.com>
1056 L: linux-pm@vger.kernel.org
1057 S: Supported
1058 W: http://ez.analog.com/community/linux-device-drivers
1059 F: drivers/power/supply/adp5061.c
1060
1061 ANALOG DEVICES INC ADV7180 DRIVER
1062 M: Lars-Peter Clausen <lars@metafoo.de>
1063 L: linux-media@vger.kernel.org
1064 S: Supported
1065 W: http://ez.analog.com/community/linux-device-drivers
1066 F: drivers/media/i2c/adv7180.c
1067
1068 ANALOG DEVICES INC ADV748X DRIVER
1069 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
1070 L: linux-media@vger.kernel.org
1071 S: Maintained
1072 F: drivers/media/i2c/adv748x/*
1073
1074 ANALOG DEVICES INC ADV7511 DRIVER
1075 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1076 L: linux-media@vger.kernel.org
1077 S: Maintained
1078 F: drivers/media/i2c/adv7511*
1079
1080 ANALOG DEVICES INC ADV7604 DRIVER
1081 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1082 L: linux-media@vger.kernel.org
1083 S: Maintained
1084 F: drivers/media/i2c/adv7604*
1085
1086 ANALOG DEVICES INC ADV7842 DRIVER
1087 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1088 L: linux-media@vger.kernel.org
1089 S: Maintained
1090 F: drivers/media/i2c/adv7842*
1091
1092 ANALOG DEVICES INC ASOC CODEC DRIVERS
1093 M: Lars-Peter Clausen <lars@metafoo.de>
1094 M: Nuno Sá <nuno.sa@analog.com>
1095 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1096 S: Supported
1097 W: http://wiki.analog.com/
1098 W: http://ez.analog.com/community/linux-device-drivers
1099 F: sound/soc/codecs/ad1*
1100 F: sound/soc/codecs/ad7*
1101 F: sound/soc/codecs/adau*
1102 F: sound/soc/codecs/adav*
1103 F: sound/soc/codecs/sigmadsp.*
1104 F: sound/soc/codecs/ssm*
1105
1106 ANALOG DEVICES INC DMA DRIVERS
1107 M: Lars-Peter Clausen <lars@metafoo.de>
1108 S: Supported
1109 W: http://ez.analog.com/community/linux-device-drivers
1110 F: drivers/dma/dma-axi-dmac.c
1111
1112 ANALOG DEVICES INC HMC425A DRIVER
1113 M: Beniamin Bia <beniamin.bia@analog.com>
1114 M: Michael Hennerich <michael.hennerich@analog.com>
1115 L: linux-iio@vger.kernel.org
1116 S: Supported
1117 W: http://ez.analog.com/community/linux-device-drivers
1118 F: Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1119 F: drivers/iio/amplifiers/hmc425a.c
1120
1121 ANALOG DEVICES INC IIO DRIVERS
1122 M: Lars-Peter Clausen <lars@metafoo.de>
1123 M: Michael Hennerich <Michael.Hennerich@analog.com>
1124 S: Supported
1125 W: http://wiki.analog.com/
1126 W: http://ez.analog.com/community/linux-device-drivers
1127 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1128 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1129 F: drivers/iio/*/ad*
1130 F: drivers/iio/adc/ltc249*
1131 F: drivers/staging/iio/*/ad*
1132 X: drivers/iio/*/adjd*
1133
1134 ANALOGBITS PLL LIBRARIES
1135 M: Paul Walmsley <paul.walmsley@sifive.com>
1136 S: Supported
1137 F: drivers/clk/analogbits/*
1138 F: include/linux/clk/analogbits*
1139
1140 ANDES ARCHITECTURE
1141 M: Nick Hu <nickhu@andestech.com>
1142 M: Greentime Hu <green.hu@gmail.com>
1143 M: Vincent Chen <deanbo422@gmail.com>
1144 S: Supported
1145 T: git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1146 F: Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1147 F: Documentation/devicetree/bindings/nds32/
1148 F: arch/nds32/
1149 N: nds32
1150 K: nds32
1151
1152 ANDROID CONFIG FRAGMENTS
1153 M: Rob Herring <robh@kernel.org>
1154 S: Supported
1155 F: kernel/configs/android*
1156
1157 ANDROID DRIVERS
1158 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1159 M: Arve Hjønnevåg <arve@android.com>
1160 M: Todd Kjos <tkjos@android.com>
1161 M: Martijn Coenen <maco@android.com>
1162 M: Joel Fernandes <joel@joelfernandes.org>
1163 M: Christian Brauner <christian@brauner.io>
1164 L: devel@driverdev.osuosl.org
1165 S: Supported
1166 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1167 F: drivers/android/
1168 F: drivers/staging/android/
1169
1170 ANDROID GOLDFISH PIC DRIVER
1171 M: Miodrag Dinic <miodrag.dinic@mips.com>
1172 S: Supported
1173 F: Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1174 F: drivers/irqchip/irq-goldfish-pic.c
1175
1176 ANDROID GOLDFISH RTC DRIVER
1177 M: Miodrag Dinic <miodrag.dinic@mips.com>
1178 S: Supported
1179 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1180 F: drivers/rtc/rtc-goldfish.c
1181
1182 ANDROID ION DRIVER
1183 M: Laura Abbott <labbott@redhat.com>
1184 M: Sumit Semwal <sumit.semwal@linaro.org>
1185 L: devel@driverdev.osuosl.org
1186 L: dri-devel@lists.freedesktop.org
1187 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1188 S: Supported
1189 F: drivers/staging/android/ion
1190 F: drivers/staging/android/uapi/ion.h
1191
1192 AOA (Apple Onboard Audio) ALSA DRIVER
1193 M: Johannes Berg <johannes@sipsolutions.net>
1194 L: linuxppc-dev@lists.ozlabs.org
1195 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1196 S: Maintained
1197 F: sound/aoa/
1198
1199 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1200 M: William Breathitt Gray <vilhelm.gray@gmail.com>
1201 L: linux-iio@vger.kernel.org
1202 S: Maintained
1203 F: drivers/iio/adc/stx104.c
1204
1205 APM DRIVER
1206 M: Jiri Kosina <jikos@kernel.org>
1207 S: Odd fixes
1208 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1209 F: arch/x86/kernel/apm_32.c
1210 F: drivers/char/apm-emulation.c
1211 F: include/linux/apm_bios.h
1212 F: include/uapi/linux/apm_bios.h
1213
1214 APPARMOR SECURITY MODULE
1215 M: John Johansen <john.johansen@canonical.com>
1216 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1217 S: Supported
1218 W: wiki.apparmor.net
1219 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1220 F: Documentation/admin-guide/LSM/apparmor.rst
1221 F: security/apparmor/
1222
1223 APPLE BCM5974 MULTITOUCH DRIVER
1224 M: Henrik Rydberg <rydberg@bitmath.org>
1225 L: linux-input@vger.kernel.org
1226 S: Odd fixes
1227 F: drivers/input/mouse/bcm5974.c
1228
1229 APPLE SMC DRIVER
1230 M: Henrik Rydberg <rydberg@bitmath.org>
1231 L: linux-hwmon@vger.kernel.org
1232 S: Odd fixes
1233 F: drivers/hwmon/applesmc.c
1234
1235 APPLETALK NETWORK LAYER
1236 L: netdev@vger.kernel.org
1237 S: Odd fixes
1238 F: drivers/net/appletalk/
1239 F: include/linux/atalk.h
1240 F: include/uapi/linux/atalk.h
1241 F: net/appletalk/
1242
1243 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1244 M: Khuong Dinh <khuong@os.amperecomputing.com>
1245 S: Supported
1246 F: arch/arm64/boot/dts/apm/
1247
1248 APPLIED MICRO (APM) X-GENE SOC EDAC
1249 M: Khuong Dinh <khuong@os.amperecomputing.com>
1250 S: Supported
1251 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1252 F: drivers/edac/xgene_edac.c
1253
1254 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1255 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1256 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1257 S: Supported
1258 F: drivers/net/ethernet/apm/xgene-v2/
1259
1260 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1261 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1262 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1263 M: Quan Nguyen <quan@os.amperecomputing.com>
1264 S: Supported
1265 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1266 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1267 F: drivers/net/ethernet/apm/xgene/
1268 F: drivers/net/phy/mdio-xgene.c
1269
1270 APPLIED MICRO (APM) X-GENE SOC PMU
1271 M: Khuong Dinh <khuong@os.amperecomputing.com>
1272 S: Supported
1273 F: Documentation/admin-guide/perf/xgene-pmu.rst
1274 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1275 F: drivers/perf/xgene_pmu.c
1276
1277 APTINA CAMERA SENSOR PLL
1278 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1279 L: linux-media@vger.kernel.org
1280 S: Maintained
1281 F: drivers/media/i2c/aptina-pll.*
1282
1283 AQUANTIA ETHERNET DRIVER (atlantic)
1284 M: Igor Russkikh <irusskikh@marvell.com>
1285 L: netdev@vger.kernel.org
1286 S: Supported
1287 W: https://www.marvell.com/
1288 Q: http://patchwork.ozlabs.org/project/netdev/list/
1289 F: Documentation/networking/device_drivers/aquantia/atlantic.txt
1290 F: drivers/net/ethernet/aquantia/atlantic/
1291
1292 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1293 M: Egor Pomozov <epomozov@marvell.com>
1294 L: netdev@vger.kernel.org
1295 S: Supported
1296 W: http://www.aquantia.com
1297 F: drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1298
1299 ARC FRAMEBUFFER DRIVER
1300 M: Jaya Kumar <jayalk@intworks.biz>
1301 S: Maintained
1302 F: drivers/video/fbdev/arcfb.c
1303 F: drivers/video/fbdev/core/fb_defio.c
1304
1305 ARC PGU DRM DRIVER
1306 M: Alexey Brodkin <abrodkin@synopsys.com>
1307 S: Supported
1308 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
1309 F: drivers/gpu/drm/arc/
1310
1311 ARCNET NETWORK LAYER
1312 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
1313 L: netdev@vger.kernel.org
1314 S: Maintained
1315 F: drivers/net/arcnet/
1316 F: include/uapi/linux/if_arcnet.h
1317
1318 ARM ARCHITECTED TIMER DRIVER
1319 M: Mark Rutland <mark.rutland@arm.com>
1320 M: Marc Zyngier <maz@kernel.org>
1321 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1322 S: Maintained
1323 F: arch/arm/include/asm/arch_timer.h
1324 F: arch/arm64/include/asm/arch_timer.h
1325 F: drivers/clocksource/arm_arch_timer.c
1326
1327 ARM HDLCD DRM DRIVER
1328 M: Liviu Dudau <liviu.dudau@arm.com>
1329 S: Supported
1330 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
1331 F: drivers/gpu/drm/arm/hdlcd_*
1332
1333 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1334 M: Linus Walleij <linus.walleij@linaro.org>
1335 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1336 S: Maintained
1337 F: Documentation/devicetree/bindings/arm/arm,integrator.yaml
1338 F: Documentation/devicetree/bindings/arm/arm,realview.yaml
1339 F: Documentation/devicetree/bindings/arm/arm,versatile.yaml
1340 F: Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1341 F: Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1342 F: Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1343 F: Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1344 F: Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1345 F: Documentation/devicetree/bindings/mtd/arm-versatile.txt
1346 F: arch/arm/boot/dts/arm-realview-*
1347 F: arch/arm/boot/dts/integrator*
1348 F: arch/arm/boot/dts/versatile*
1349 F: arch/arm/mach-integrator/
1350 F: arch/arm/mach-realview/
1351 F: arch/arm/mach-versatile/
1352 F: arch/arm/plat-versatile/
1353 F: drivers/clk/versatile/
1354 F: drivers/i2c/busses/i2c-versatile.c
1355 F: drivers/irqchip/irq-versatile-fpga.c
1356 F: drivers/mtd/maps/physmap_of_versatile.c
1357 F: drivers/power/reset/arm-versatile-reboot.c
1358 F: drivers/soc/versatile/
1359
1360 ARM KOMEDA DRM-KMS DRIVER
1361 M: James (Qian) Wang <james.qian.wang@arm.com>
1362 M: Liviu Dudau <liviu.dudau@arm.com>
1363 M: Mihail Atanassov <mihail.atanassov@arm.com>
1364 L: Mali DP Maintainers <malidp@foss.arm.com>
1365 S: Supported
1366 T: git git://anongit.freedesktop.org/drm/drm-misc
1367 F: Documentation/devicetree/bindings/display/arm,komeda.txt
1368 F: Documentation/gpu/komeda-kms.rst
1369 F: drivers/gpu/drm/arm/display/include/
1370 F: drivers/gpu/drm/arm/display/komeda/
1371
1372 ARM MALI PANFROST DRM DRIVER
1373 M: Rob Herring <robh@kernel.org>
1374 M: Tomeu Vizoso <tomeu.vizoso@collabora.com>
1375 R: Steven Price <steven.price@arm.com>
1376 R: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1377 L: dri-devel@lists.freedesktop.org
1378 S: Supported
1379 T: git git://anongit.freedesktop.org/drm/drm-misc
1380 F: drivers/gpu/drm/panfrost/
1381 F: include/uapi/drm/panfrost_drm.h
1382
1383 ARM MALI-DP DRM DRIVER
1384 M: Liviu Dudau <liviu.dudau@arm.com>
1385 M: Brian Starkey <brian.starkey@arm.com>
1386 L: Mali DP Maintainers <malidp@foss.arm.com>
1387 S: Supported
1388 T: git git://anongit.freedesktop.org/drm/drm-misc
1389 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1390 F: Documentation/gpu/afbc.rst
1391 F: drivers/gpu/drm/arm/
1392
1393 ARM MFM AND FLOPPY DRIVERS
1394 M: Ian Molton <spyro@f2s.com>
1395 S: Maintained
1396 F: arch/arm/include/asm/floppy.h
1397 F: arch/arm/mach-rpc/floppydma.S
1398
1399 ARM PMU PROFILING AND DEBUGGING
1400 M: Will Deacon <will@kernel.org>
1401 M: Mark Rutland <mark.rutland@arm.com>
1402 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1403 S: Maintained
1404 F: Documentation/devicetree/bindings/arm/pmu.yaml
1405 F: Documentation/devicetree/bindings/perf/
1406 F: arch/arm*/include/asm/hw_breakpoint.h
1407 F: arch/arm*/include/asm/perf_event.h
1408 F: arch/arm*/kernel/hw_breakpoint.c
1409 F: arch/arm*/kernel/perf_*
1410 F: arch/arm/oprofile/common.c
1411 F: drivers/perf/*
1412 F: include/linux/perf/arm_pmu.h
1413
1414 ARM PORT
1415 M: Russell King <linux@armlinux.org.uk>
1416 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1417 S: Odd Fixes
1418 W: http://www.armlinux.org.uk/
1419 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1420 F: arch/arm/
1421 X: arch/arm/boot/dts/
1422
1423 ARM PRIMECELL AACI PL041 DRIVER
1424 M: Russell King <linux@armlinux.org.uk>
1425 S: Odd Fixes
1426 F: sound/arm/aaci.*
1427
1428 ARM PRIMECELL BUS SUPPORT
1429 M: Russell King <linux@armlinux.org.uk>
1430 S: Odd Fixes
1431 F: drivers/amba/
1432 F: include/linux/amba/bus.h
1433
1434 ARM PRIMECELL CLCD PL110 DRIVER
1435 M: Russell King <linux@armlinux.org.uk>
1436 S: Odd Fixes
1437 F: drivers/video/fbdev/amba-clcd.*
1438
1439 ARM PRIMECELL KMI PL050 DRIVER
1440 M: Russell King <linux@armlinux.org.uk>
1441 S: Odd Fixes
1442 F: drivers/input/serio/ambakmi.*
1443 F: include/linux/amba/kmi.h
1444
1445 ARM PRIMECELL MMCI PL180/1 DRIVER
1446 M: Russell King <linux@armlinux.org.uk>
1447 S: Odd Fixes
1448 F: drivers/mmc/host/mmci.*
1449 F: include/linux/amba/mmci.h
1450
1451 ARM PRIMECELL SSP PL022 SPI DRIVER
1452 M: Linus Walleij <linus.walleij@linaro.org>
1453 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1454 S: Maintained
1455 F: Documentation/devicetree/bindings/spi/spi-pl022.yaml
1456 F: drivers/spi/spi-pl022.c
1457
1458 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1459 M: Russell King <linux@armlinux.org.uk>
1460 S: Odd Fixes
1461 F: drivers/tty/serial/amba-pl01*.c
1462 F: include/linux/amba/serial.h
1463
1464 ARM PRIMECELL VIC PL190/PL192 DRIVER
1465 M: Linus Walleij <linus.walleij@linaro.org>
1466 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1467 S: Maintained
1468 F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1469 F: drivers/irqchip/irq-vic.c
1470
1471 ARM SMMU DRIVERS
1472 M: Will Deacon <will@kernel.org>
1473 R: Robin Murphy <robin.murphy@arm.com>
1474 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1475 S: Maintained
1476 F: Documentation/devicetree/bindings/iommu/arm,smmu*
1477 F: drivers/iommu/arm-smmu*
1478 F: drivers/iommu/io-pgtable-arm-v7s.c
1479 F: drivers/iommu/io-pgtable-arm.c
1480
1481 ARM SUB-ARCHITECTURES
1482 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1483 S: Maintained
1484 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1485 F: arch/arm/mach-*/
1486 F: arch/arm/plat-*/
1487
1488 ARM/ACTIONS SEMI ARCHITECTURE
1489 M: Andreas Färber <afaerber@suse.de>
1490 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1491 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1492 S: Maintained
1493 F: Documentation/devicetree/bindings/arm/actions.yaml
1494 F: Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1495 F: Documentation/devicetree/bindings/dma/owl-dma.txt
1496 F: Documentation/devicetree/bindings/i2c/i2c-owl.txt
1497 F: Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1498 F: Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1499 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1500 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1501 F: arch/arm/boot/dts/owl-*
1502 F: arch/arm/mach-actions/
1503 F: arch/arm64/boot/dts/actions/
1504 F: drivers/clk/actions/
1505 F: drivers/clocksource/timer-owl*
1506 F: drivers/dma/owl-dma.c
1507 F: drivers/i2c/busses/i2c-owl.c
1508 F: drivers/mmc/host/owl-mmc.c
1509 F: drivers/pinctrl/actions/*
1510 F: drivers/soc/actions/
1511 F: include/dt-bindings/power/owl-*
1512 F: include/linux/soc/actions/
1513 N: owl
1514
1515 ARM/ADS SPHERE MACHINE SUPPORT
1516 M: Lennert Buytenhek <kernel@wantstofly.org>
1517 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1518 S: Maintained
1519
1520 ARM/AFEB9260 MACHINE SUPPORT
1521 M: Sergey Lapin <slapin@ossfans.org>
1522 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1523 S: Maintained
1524
1525 ARM/AJECO 1ARM MACHINE SUPPORT
1526 M: Lennert Buytenhek <kernel@wantstofly.org>
1527 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1528 S: Maintained
1529
1530 ARM/Allwinner SoC Clock Support
1531 M: Emilio López <emilio@elopez.com.ar>
1532 S: Maintained
1533 F: drivers/clk/sunxi/
1534
1535 ARM/Allwinner sunXi SoC support
1536 M: Maxime Ripard <mripard@kernel.org>
1537 M: Chen-Yu Tsai <wens@csie.org>
1538 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539 S: Maintained
1540 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1541 F: arch/arm/mach-sunxi/
1542 F: arch/arm64/boot/dts/allwinner/
1543 F: drivers/clk/sunxi-ng/
1544 F: drivers/pinctrl/sunxi/
1545 F: drivers/soc/sunxi/
1546 N: sun[x456789]i
1547 N: sun50i
1548
1549 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1550 M: Neil Armstrong <narmstrong@baylibre.com>
1551 M: Jerome Brunet <jbrunet@baylibre.com>
1552 L: linux-amlogic@lists.infradead.org
1553 S: Maintained
1554 F: Documentation/devicetree/bindings/clock/amlogic*
1555 F: drivers/clk/meson/
1556 F: include/dt-bindings/clock/gxbb*
1557 F: include/dt-bindings/clock/meson*
1558
1559 ARM/Amlogic Meson SoC Crypto Drivers
1560 M: Corentin Labbe <clabbe@baylibre.com>
1561 L: linux-crypto@vger.kernel.org
1562 L: linux-amlogic@lists.infradead.org
1563 S: Maintained
1564 F: Documentation/devicetree/bindings/crypto/amlogic*
1565 F: drivers/crypto/amlogic/
1566
1567 ARM/Amlogic Meson SoC Sound Drivers
1568 M: Jerome Brunet <jbrunet@baylibre.com>
1569 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1570 S: Maintained
1571 F: Documentation/devicetree/bindings/sound/amlogic*
1572 F: sound/soc/meson/
1573
1574 ARM/Amlogic Meson SoC support
1575 M: Kevin Hilman <khilman@baylibre.com>
1576 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1577 L: linux-amlogic@lists.infradead.org
1578 S: Maintained
1579 W: http://linux-meson.com/
1580 F: arch/arm/boot/dts/meson*
1581 F: arch/arm/mach-meson/
1582 F: arch/arm64/boot/dts/amlogic/
1583 F: drivers/mmc/host/meson*
1584 F: drivers/pinctrl/meson/
1585 F: drivers/rtc/rtc-meson*
1586 F: drivers/soc/amlogic/
1587 N: meson
1588
1589 ARM/Annapurna Labs ALPINE ARCHITECTURE
1590 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1591 M: Antoine Tenart <antoine.tenart@bootlin.com>
1592 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1593 S: Maintained
1594 F: arch/arm/boot/dts/alpine*
1595 F: arch/arm/mach-alpine/
1596 F: arch/arm64/boot/dts/al/
1597 F: drivers/*/*alpine*
1598
1599 ARM/ARTPEC MACHINE SUPPORT
1600 M: Jesper Nilsson <jesper.nilsson@axis.com>
1601 M: Lars Persson <lars.persson@axis.com>
1602 L: linux-arm-kernel@axis.com
1603 S: Maintained
1604 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1605 F: arch/arm/boot/dts/artpec6*
1606 F: arch/arm/mach-artpec
1607 F: drivers/clk/axis
1608 F: drivers/crypto/axis
1609 F: drivers/mmc/host/usdhi6rol0.c
1610 F: drivers/pinctrl/pinctrl-artpec*
1611
1612 ARM/ASPEED I2C DRIVER
1613 M: Brendan Higgins <brendanhiggins@google.com>
1614 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1615 R: Joel Stanley <joel@jms.id.au>
1616 L: linux-i2c@vger.kernel.org
1617 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1618 S: Maintained
1619 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1620 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1621 F: drivers/i2c/busses/i2c-aspeed.c
1622 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1623
1624 ARM/ASPEED MACHINE SUPPORT
1625 M: Joel Stanley <joel@jms.id.au>
1626 R: Andrew Jeffery <andrew@aj.id.au>
1627 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1628 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1629 S: Supported
1630 Q: https://patchwork.ozlabs.org/project/linux-aspeed/list/
1631 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1632 F: arch/arm/boot/dts/aspeed-*
1633 F: arch/arm/mach-aspeed/
1634 N: aspeed
1635
1636 ARM/BITMAIN ARCHITECTURE
1637 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1638 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 S: Maintained
1640 F: Documentation/devicetree/bindings/arm/bitmain.yaml
1641 F: Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1642 F: Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1643 F: arch/arm64/boot/dts/bitmain/
1644 F: drivers/clk/clk-bm1880.c
1645 F: drivers/pinctrl/pinctrl-bm1880.c
1646
1647 ARM/CALXEDA HIGHBANK ARCHITECTURE
1648 M: Andre Przywara <andre.przywara@arm.com>
1649 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 S: Maintained
1651 F: arch/arm/boot/dts/ecx-*.dts*
1652 F: arch/arm/boot/dts/highbank.dts
1653 F: arch/arm/mach-highbank/
1654
1655 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1656 M: Krzysztof Halasa <khalasa@piap.pl>
1657 S: Maintained
1658 F: arch/arm/mach-cns3xxx/
1659
1660 ARM/CAVIUM THUNDER NETWORK DRIVER
1661 M: Sunil Goutham <sgoutham@marvell.com>
1662 M: Robert Richter <rrichter@marvell.com>
1663 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664 S: Supported
1665 F: drivers/net/ethernet/cavium/thunder/
1666
1667 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1668 M: Lukasz Majewski <lukma@denx.de>
1669 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1670 S: Maintained
1671 F: arch/arm/mach-ep93xx/ts72xx.c
1672
1673 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1674 M: Alexander Shiyan <shc_work@mail.ru>
1675 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1676 S: Odd Fixes
1677 N: clps711x
1678
1679 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1680 M: Lennert Buytenhek <kernel@wantstofly.org>
1681 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1682 S: Maintained
1683
1684 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1685 M: Hartley Sweeten <hsweeten@visionengravers.com>
1686 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1687 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S: Maintained
1689 F: arch/arm/mach-ep93xx/
1690 F: arch/arm/mach-ep93xx/include/mach/
1691
1692 ARM/CLKDEV SUPPORT
1693 M: Russell King <linux@armlinux.org.uk>
1694 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S: Maintained
1696 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1697 F: drivers/clk/clkdev.c
1698
1699 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1700 M: Mike Rapoport <mike@compulab.co.il>
1701 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1702 S: Maintained
1703
1704 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1705 M: Baruch Siach <baruch@tkos.co.il>
1706 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S: Maintained
1708 F: arch/arm/boot/dts/cx92755*
1709 N: digicolor
1710
1711 ARM/CONTEC MICRO9 MACHINE SUPPORT
1712 M: Hubert Feurstein <hubert.feurstein@contec.at>
1713 S: Maintained
1714 F: arch/arm/mach-ep93xx/micro9.c
1715
1716 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1717 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1718 R: Suzuki K Poulose <suzuki.poulose@arm.com>
1719 R: Mike Leach <mike.leach@linaro.org>
1720 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S: Maintained
1722 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1723 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1724 F: Documentation/devicetree/bindings/arm/coresight-cti.yaml
1725 F: Documentation/devicetree/bindings/arm/coresight.txt
1726 F: Documentation/trace/coresight/*
1727 F: drivers/hwtracing/coresight/*
1728 F: include/dt-bindings/arm/coresight-cti-dt.h
1729 F: tools/perf/arch/arm/util/auxtrace.c
1730 F: tools/perf/arch/arm/util/cs-etm.c
1731 F: tools/perf/arch/arm/util/cs-etm.h
1732 F: tools/perf/arch/arm/util/pmu.c
1733 F: tools/perf/util/cs-etm-decoder/*
1734 F: tools/perf/util/cs-etm.*
1735
1736 ARM/CORGI MACHINE SUPPORT
1737 M: Richard Purdie <rpurdie@rpsys.net>
1738 S: Maintained
1739
1740 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1741 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1742 M: Linus Walleij <linus.walleij@linaro.org>
1743 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1744 S: Maintained
1745 T: git git://github.com/ulli-kroll/linux.git
1746 F: Documentation/devicetree/bindings/arm/gemini.txt
1747 F: Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1748 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1749 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1750 F: arch/arm/mach-gemini/
1751 F: drivers/net/ethernet/cortina/
1752 F: drivers/pinctrl/pinctrl-gemini.c
1753 F: drivers/rtc/rtc-ftrtc010.c
1754
1755 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1756 M: Barry Song <baohua@kernel.org>
1757 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1758 S: Maintained
1759 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1760 F: arch/arm/boot/dts/prima2*
1761 F: arch/arm/mach-prima2/
1762 F: drivers/clk/sirf/
1763 F: drivers/clocksource/timer-atlas7.c
1764 F: drivers/clocksource/timer-prima2.c
1765 X: drivers/gnss
1766 N: [^a-z]sirf
1767
1768 ARM/CZ.NIC TURRIS MOX SUPPORT
1769 M: Marek Behun <marek.behun@nic.cz>
1770 S: Maintained
1771 W: http://mox.turris.cz
1772 F: Documentation/ABI/testing/debugfs-moxtet
1773 F: Documentation/ABI/testing/sysfs-bus-moxtet-devices
1774 F: Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1775 F: Documentation/devicetree/bindings/bus/moxtet.txt
1776 F: Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1777 F: Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1778 F: drivers/bus/moxtet.c
1779 F: drivers/firmware/turris-mox-rwtm.c
1780 F: drivers/gpio/gpio-moxtet.c
1781 F: include/linux/moxtet.h
1782
1783 ARM/EBSA110 MACHINE SUPPORT
1784 M: Russell King <linux@armlinux.org.uk>
1785 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1786 S: Maintained
1787 W: http://www.armlinux.org.uk/
1788 F: arch/arm/mach-ebsa110/
1789 F: drivers/net/ethernet/amd/am79c961a.*
1790
1791 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1792 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1793 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1794 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1795 S: Maintained
1796 N: efm32
1797
1798 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1799 M: Robert Jarzmik <robert.jarzmik@free.fr>
1800 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1801 S: Maintained
1802 F: arch/arm/mach-pxa/ezx.c
1803
1804 ARM/FARADAY FA526 PORT
1805 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1806 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1807 S: Maintained
1808 T: git git://git.berlios.de/gemini-board
1809 F: arch/arm/mm/*-fa*
1810
1811 ARM/FOOTBRIDGE ARCHITECTURE
1812 M: Russell King <linux@armlinux.org.uk>
1813 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S: Maintained
1815 W: http://www.armlinux.org.uk/
1816 F: arch/arm/include/asm/hardware/dec21285.h
1817 F: arch/arm/mach-footbridge/
1818
1819 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1820 M: Shawn Guo <shawnguo@kernel.org>
1821 M: Sascha Hauer <s.hauer@pengutronix.de>
1822 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1823 R: Fabio Estevam <festevam@gmail.com>
1824 R: NXP Linux Team <linux-imx@nxp.com>
1825 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S: Maintained
1827 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1828 X: drivers/media/i2c/
1829 N: imx
1830 N: mxs
1831
1832 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1833 M: Shawn Guo <shawnguo@kernel.org>
1834 M: Li Yang <leoyang.li@nxp.com>
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/shawnguo/linux.git
1838 F: arch/arm/boot/dts/ls1021a*
1839 F: arch/arm64/boot/dts/freescale/fsl-*
1840 F: arch/arm64/boot/dts/freescale/qoriq-*
1841
1842 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1843 M: Shawn Guo <shawnguo@kernel.org>
1844 M: Sascha Hauer <s.hauer@pengutronix.de>
1845 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1846 R: Stefan Agner <stefan@agner.ch>
1847 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1848 S: Maintained
1849 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1850 F: arch/arm/boot/dts/vf*
1851 F: arch/arm/mach-imx/*vf610*
1852
1853 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1854 M: Lennert Buytenhek <kernel@wantstofly.org>
1855 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1856 S: Maintained
1857
1858 ARM/GUMSTIX MACHINE SUPPORT
1859 M: Steve Sakoman <sakoman@gmail.com>
1860 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1861 S: Maintained
1862
1863 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1864 M: Philipp Zabel <philipp.zabel@gmail.com>
1865 M: Paul Parsons <lost.distance@yahoo.com>
1866 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S: Maintained
1868 F: arch/arm/mach-pxa/hx4700.c
1869 F: arch/arm/mach-pxa/include/mach/hx4700.h
1870 F: sound/soc/pxa/hx4700.c
1871
1872 ARM/HISILICON SOC SUPPORT
1873 M: Wei Xu <xuwei5@hisilicon.com>
1874 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1875 S: Supported
1876 W: http://www.hisilicon.com
1877 T: git git://github.com/hisilicon/linux-hisi.git
1878 F: arch/arm/boot/dts/hi3*
1879 F: arch/arm/boot/dts/hip*
1880 F: arch/arm/boot/dts/hisi*
1881 F: arch/arm/mach-hisi/
1882 F: arch/arm64/boot/dts/hisilicon/
1883
1884 ARM/HP JORNADA 7XX MACHINE SUPPORT
1885 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1886 S: Maintained
1887 W: www.jlime.com
1888 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1889 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1890 F: arch/arm/mach-sa1100/jornada720.c
1891
1892 ARM/IGEP MACHINE SUPPORT
1893 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1894 M: Javier Martinez Canillas <javier@dowhile0.org>
1895 L: linux-omap@vger.kernel.org
1896 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1897 S: Maintained
1898 F: arch/arm/boot/dts/omap3-igep*
1899
1900 ARM/INCOME PXA270 SUPPORT
1901 M: Marek Vasut <marek.vasut@gmail.com>
1902 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1903 S: Maintained
1904 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1905
1906 ARM/INTEL IOP32X ARM ARCHITECTURE
1907 M: Lennert Buytenhek <kernel@wantstofly.org>
1908 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1909 S: Maintained
1910
1911 ARM/INTEL IQ81342EX MACHINE SUPPORT
1912 M: Lennert Buytenhek <kernel@wantstofly.org>
1913 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1914 S: Maintained
1915
1916 ARM/INTEL IXDP2850 MACHINE SUPPORT
1917 M: Lennert Buytenhek <kernel@wantstofly.org>
1918 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1919 S: Maintained
1920
1921 ARM/INTEL IXP4XX ARM ARCHITECTURE
1922 M: Linus Walleij <linusw@kernel.org>
1923 M: Imre Kaloz <kaloz@openwrt.org>
1924 M: Krzysztof Halasa <khalasa@piap.pl>
1925 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1926 S: Maintained
1927 F: Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1928 F: Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1929 F: Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1930 F: Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1931 F: arch/arm/mach-ixp4xx/
1932 F: drivers/clocksource/timer-ixp4xx.c
1933 F: drivers/gpio/gpio-ixp4xx.c
1934 F: drivers/irqchip/irq-ixp4xx.c
1935 F: include/linux/irqchip/irq-ixp4xx.h
1936 F: include/linux/platform_data/timer-ixp4xx.h
1937
1938 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1939 M: Jonathan Cameron <jic23@cam.ac.uk>
1940 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1941 S: Maintained
1942 F: arch/arm/mach-pxa/stargate2.c
1943 F: drivers/pcmcia/pxa2xx_stargate2.c
1944
1945 ARM/INTEL XSC3 (MANZANO) ARM CORE
1946 M: Lennert Buytenhek <kernel@wantstofly.org>
1947 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1948 S: Maintained
1949
1950 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1951 M: Lennert Buytenhek <kernel@wantstofly.org>
1952 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S: Maintained
1954
1955 ARM/LG1K ARCHITECTURE
1956 M: Chanho Min <chanho.min@lge.com>
1957 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S: Maintained
1959 F: arch/arm64/boot/dts/lg/
1960
1961 ARM/LOGICPD PXA270 MACHINE SUPPORT
1962 M: Lennert Buytenhek <kernel@wantstofly.org>
1963 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1964 S: Maintained
1965
1966 ARM/LPC18XX ARCHITECTURE
1967 M: Vladimir Zapolskiy <vz@mleia.com>
1968 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1969 S: Maintained
1970 F: Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1971 F: arch/arm/boot/dts/lpc43*
1972 F: drivers/i2c/busses/i2c-lpc2k.c
1973 F: drivers/memory/pl172.c
1974 F: drivers/mtd/spi-nor/controllers/nxp-spifi.c
1975 F: drivers/rtc/rtc-lpc24xx.c
1976 N: lpc18xx
1977
1978 ARM/LPC32XX SOC SUPPORT
1979 M: Vladimir Zapolskiy <vz@mleia.com>
1980 M: Sylvain Lemieux <slemieux.tyco@gmail.com>
1981 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 S: Maintained
1983 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
1984 F: Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1985 F: arch/arm/boot/dts/lpc32*
1986 F: arch/arm/mach-lpc32xx/
1987 F: drivers/i2c/busses/i2c-pnx.c
1988 F: drivers/net/ethernet/nxp/lpc_eth.c
1989 F: drivers/usb/host/ohci-nxp.c
1990 F: drivers/watchdog/pnx4008_wdt.c
1991 N: lpc32xx
1992
1993 ARM/MAGICIAN MACHINE SUPPORT
1994 M: Philipp Zabel <philipp.zabel@gmail.com>
1995 S: Maintained
1996
1997 ARM/Marvell Dove/MV78xx0/Orion SOC support
1998 M: Jason Cooper <jason@lakedaemon.net>
1999 M: Andrew Lunn <andrew@lunn.ch>
2000 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2001 M: Gregory Clement <gregory.clement@bootlin.com>
2002 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2003 S: Maintained
2004 T: git git://git.infradead.org/linux-mvebu.git
2005 F: Documentation/devicetree/bindings/soc/dove/
2006 F: arch/arm/boot/dts/dove*
2007 F: arch/arm/boot/dts/orion5x*
2008 F: arch/arm/mach-dove/
2009 F: arch/arm/mach-mv78xx0/
2010 F: arch/arm/mach-orion5x/
2011 F: arch/arm/plat-orion/
2012
2013 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2014 M: Jason Cooper <jason@lakedaemon.net>
2015 M: Andrew Lunn <andrew@lunn.ch>
2016 M: Gregory Clement <gregory.clement@bootlin.com>
2017 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2018 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2019 S: Maintained
2020 T: git git://git.infradead.org/linux-mvebu.git
2021 F: arch/arm/boot/dts/armada*
2022 F: arch/arm/boot/dts/kirkwood*
2023 F: arch/arm/configs/mvebu_*_defconfig
2024 F: arch/arm/mach-mvebu/
2025 F: arch/arm64/boot/dts/marvell/armada*
2026 F: arch/arm64/boot/dts/marvell/cn913*
2027 F: drivers/cpufreq/armada-37xx-cpufreq.c
2028 F: drivers/cpufreq/armada-8k-cpufreq.c
2029 F: drivers/cpufreq/mvebu-cpufreq.c
2030 F: drivers/irqchip/irq-armada-370-xp.c
2031 F: drivers/irqchip/irq-mvebu-*
2032 F: drivers/pinctrl/mvebu/
2033 F: drivers/rtc/rtc-armada38x.c
2034
2035 ARM/Mediatek RTC DRIVER
2036 M: Eddie Huang <eddie.huang@mediatek.com>
2037 M: Sean Wang <sean.wang@mediatek.com>
2038 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2040 S: Maintained
2041 F: Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2042 F: Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2043 F: drivers/rtc/rtc-mt2712.c
2044 F: drivers/rtc/rtc-mt6397.c
2045 F: drivers/rtc/rtc-mt7622.c
2046
2047 ARM/Mediatek SoC support
2048 M: Matthias Brugger <matthias.bgg@gmail.com>
2049 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2050 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2051 S: Maintained
2052 W: https://mtk.bcnfs.org/
2053 C: irc://chat.freenode.net/linux-mediatek
2054 F: arch/arm/boot/dts/mt6*
2055 F: arch/arm/boot/dts/mt7*
2056 F: arch/arm/boot/dts/mt8*
2057 F: arch/arm/mach-mediatek/
2058 F: arch/arm64/boot/dts/mediatek/
2059 F: drivers/soc/mediatek/
2060 N: mtk
2061 N: mt[678]
2062 K: mediatek
2063
2064 ARM/Mediatek USB3 PHY DRIVER
2065 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
2066 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2068 S: Maintained
2069 F: Documentation/devicetree/bindings/phy/phy-mtk-*
2070 F: drivers/phy/mediatek/
2071
2072 ARM/Microchip (AT91) SoC support
2073 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2074 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
2075 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2076 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2077 S: Supported
2078 W: http://www.linux4sam.org
2079 T: git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2080 F: arch/arm/boot/dts/at91*.dts
2081 F: arch/arm/boot/dts/at91*.dtsi
2082 F: arch/arm/boot/dts/sama*.dts
2083 F: arch/arm/boot/dts/sama*.dtsi
2084 F: arch/arm/include/debug/at91.S
2085 F: arch/arm/mach-at91/
2086 F: drivers/memory/atmel*
2087 F: drivers/watchdog/sama5d4_wdt.c
2088 F: include/soc/at91/
2089 X: drivers/input/touchscreen/atmel_mxt_ts.c
2090 X: drivers/net/wireless/atmel/
2091 N: at91
2092 N: atmel
2093
2094 ARM/MIOA701 MACHINE SUPPORT
2095 M: Robert Jarzmik <robert.jarzmik@free.fr>
2096 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 S: Maintained
2098 F: arch/arm/mach-pxa/mioa701.c
2099
2100 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2101 M: Michael Petchkovsky <mkpetch@internode.on.net>
2102 S: Maintained
2103
2104 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2105 M: Linus Walleij <linus.walleij@linaro.org>
2106 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 S: Maintained
2108 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2109 F: Documentation/devicetree/bindings/arm/ste-*
2110 F: Documentation/devicetree/bindings/arm/ux500.yaml
2111 F: Documentation/devicetree/bindings/arm/ux500/
2112 F: Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2113 F: Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2114 F: arch/arm/boot/dts/ste-*
2115 F: arch/arm/mach-nomadik/
2116 F: arch/arm/mach-u300/
2117 F: arch/arm/mach-ux500/
2118 F: drivers/clk/clk-nomadik.c
2119 F: drivers/clk/clk-u300.c
2120 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2121 F: drivers/clocksource/timer-u300.c
2122 F: drivers/dma/coh901318*
2123 F: drivers/dma/ste_dma40*
2124 F: drivers/hwspinlock/u8500_hsem.c
2125 F: drivers/i2c/busses/i2c-nomadik.c
2126 F: drivers/i2c/busses/i2c-stu300.c
2127 F: drivers/iio/adc/ab8500-gpadc.c
2128 F: drivers/mfd/ab3100*
2129 F: drivers/mfd/ab8500*
2130 F: drivers/mfd/abx500*
2131 F: drivers/mfd/db8500*
2132 F: drivers/mfd/dbx500*
2133 F: drivers/pinctrl/nomadik/
2134 F: drivers/pinctrl/pinctrl-coh901*
2135 F: drivers/pinctrl/pinctrl-u300.c
2136 F: drivers/rtc/rtc-ab3100.c
2137 F: drivers/rtc/rtc-ab8500.c
2138 F: drivers/rtc/rtc-coh901331.c
2139 F: drivers/rtc/rtc-pl031.c
2140 F: drivers/soc/ux500/
2141 F: drivers/watchdog/coh901327_wdt.c
2142
2143 ARM/NUVOTON NPCM ARCHITECTURE
2144 M: Avi Fishman <avifishman70@gmail.com>
2145 M: Tomer Maimon <tmaimon77@gmail.com>
2146 M: Tali Perry <tali.perry1@gmail.com>
2147 R: Patrick Venture <venture@google.com>
2148 R: Nancy Yuen <yuenn@google.com>
2149 R: Benjamin Fair <benjaminfair@google.com>
2150 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2151 S: Supported
2152 F: Documentation/devicetree/bindings/*/*/*npcm*
2153 F: Documentation/devicetree/bindings/*/*npcm*
2154 F: arch/arm/boot/dts/nuvoton-npcm*
2155 F: arch/arm/mach-npcm/
2156 F: drivers/*/*npcm*
2157 F: include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2158
2159 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2160 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
2161 S: Orphan
2162 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
2163 F: arch/arm/mach-s3c24xx/gta02.h
2164 F: arch/arm/mach-s3c24xx/mach-gta02.c
2165
2166 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2167 M: Alexander Clouter <alex@digriz.org.uk>
2168 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2169 S: Maintained
2170 W: http://www.digriz.org.uk/ts78xx/kernel
2171 F: arch/arm/mach-orion5x/ts78xx-*
2172
2173 ARM/OXNAS platform support
2174 M: Neil Armstrong <narmstrong@baylibre.com>
2175 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 L: linux-oxnas@groups.io (moderated for non-subscribers)
2177 S: Maintained
2178 F: arch/arm/boot/dts/ox8*.dts*
2179 F: arch/arm/mach-oxnas/
2180 N: oxnas
2181
2182 ARM/PALM TREO SUPPORT
2183 M: Tomas Cech <sleep_walker@suse.com>
2184 L: linux-arm-kernel@lists.infradead.org
2185 S: Maintained
2186 W: http://hackndev.com
2187 F: arch/arm/mach-pxa/palmtreo.*
2188
2189 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2190 M: Marek Vasut <marek.vasut@gmail.com>
2191 L: linux-arm-kernel@lists.infradead.org
2192 S: Maintained
2193 W: http://hackndev.com
2194 F: arch/arm/mach-pxa/include/mach/palmld.h
2195 F: arch/arm/mach-pxa/include/mach/palmtc.h
2196 F: arch/arm/mach-pxa/include/mach/palmtx.h
2197 F: arch/arm/mach-pxa/palmld.c
2198 F: arch/arm/mach-pxa/palmt5.*
2199 F: arch/arm/mach-pxa/palmtc.c
2200 F: arch/arm/mach-pxa/palmte2.*
2201 F: arch/arm/mach-pxa/palmtx.c
2202
2203 ARM/PALMZ72 SUPPORT
2204 M: Sergey Lapin <slapin@ossfans.org>
2205 L: linux-arm-kernel@lists.infradead.org
2206 S: Maintained
2207 W: http://hackndev.com
2208 F: arch/arm/mach-pxa/palmz72.*
2209
2210 ARM/PLEB SUPPORT
2211 M: Peter Chubb <pleb@gelato.unsw.edu.au>
2212 S: Maintained
2213 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2214
2215 ARM/PT DIGITAL BOARD PORT
2216 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2217 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2218 S: Maintained
2219 W: http://www.armlinux.org.uk/
2220
2221 ARM/QUALCOMM SUPPORT
2222 M: Andy Gross <agross@kernel.org>
2223 M: Bjorn Andersson <bjorn.andersson@linaro.org>
2224 L: linux-arm-msm@vger.kernel.org
2225 S: Maintained
2226 T: git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2227 F: Documentation/devicetree/bindings/*/qcom*
2228 F: Documentation/devicetree/bindings/soc/qcom/
2229 F: arch/arm/boot/dts/qcom-*.dts
2230 F: arch/arm/boot/dts/qcom-*.dtsi
2231 F: arch/arm/mach-qcom/
2232 F: arch/arm64/boot/dts/qcom/
2233 F: drivers/*/*/qcom*
2234 F: drivers/*/*/qcom/
2235 F: drivers/*/pm8???-*
2236 F: drivers/*/qcom*
2237 F: drivers/*/qcom/
2238 F: drivers/bluetooth/btqcomsmd.c
2239 F: drivers/clocksource/timer-qcom.c
2240 F: drivers/extcon/extcon-qcom*
2241 F: drivers/i2c/busses/i2c-qcom-geni.c
2242 F: drivers/i2c/busses/i2c-qup.c
2243 F: drivers/iommu/msm*
2244 F: drivers/mfd/ssbi.c
2245 F: drivers/mmc/host/mmci_qcom*
2246 F: drivers/mmc/host/sdhci-msm.c
2247 F: drivers/pci/controller/dwc/pcie-qcom.c
2248 F: drivers/phy/qualcomm/
2249 F: drivers/power/*/msm*
2250 F: drivers/reset/reset-qcom-*
2251 F: drivers/scsi/ufs/ufs-qcom.*
2252 F: drivers/spi/spi-geni-qcom.c
2253 F: drivers/spi/spi-qcom-qspi.c
2254 F: drivers/spi/spi-qup.c
2255 F: drivers/tty/serial/msm_serial.c
2256 F: drivers/usb/dwc3/dwc3-qcom.c
2257 F: include/dt-bindings/*/qcom*
2258 F: include/linux/*/qcom*
2259
2260 ARM/RADISYS ENP2611 MACHINE SUPPORT
2261 M: Lennert Buytenhek <kernel@wantstofly.org>
2262 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2263 S: Maintained
2264
2265 ARM/RDA MICRO ARCHITECTURE
2266 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2267 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268 L: linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2269 S: Maintained
2270 F: Documentation/devicetree/bindings/arm/rda.yaml
2271 F: Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2272 F: Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2273 F: Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2274 F: Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2275 F: arch/arm/boot/dts/rda8810pl-*
2276 F: drivers/clocksource/timer-rda.c
2277 F: drivers/gpio/gpio-rda.c
2278 F: drivers/irqchip/irq-rda-intc.c
2279 F: drivers/tty/serial/rda-uart.c
2280
2281 ARM/REALTEK ARCHITECTURE
2282 M: Andreas Färber <afaerber@suse.de>
2283 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2284 L: linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2285 S: Maintained
2286 F: Documentation/devicetree/bindings/arm/realtek.yaml
2287 F: arch/arm64/boot/dts/realtek/
2288
2289 ARM/RENESAS ARM64 ARCHITECTURE
2290 M: Geert Uytterhoeven <geert+renesas@glider.be>
2291 M: Magnus Damm <magnus.damm@gmail.com>
2292 L: linux-renesas-soc@vger.kernel.org
2293 S: Supported
2294 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2295 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2296 F: Documentation/devicetree/bindings/arm/renesas.yaml
2297 F: arch/arm64/boot/dts/renesas/
2298 F: drivers/soc/renesas/
2299 F: include/linux/soc/renesas/
2300
2301 ARM/RISCPC ARCHITECTURE
2302 M: Russell King <linux@armlinux.org.uk>
2303 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2304 S: Maintained
2305 W: http://www.armlinux.org.uk/
2306 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
2307 F: arch/arm/include/asm/hardware/ioc.h
2308 F: arch/arm/include/asm/hardware/iomd.h
2309 F: arch/arm/include/asm/hardware/memc.h
2310 F: arch/arm/mach-rpc/
2311 F: drivers/net/ethernet/8390/etherh.c
2312 F: drivers/net/ethernet/i825xx/ether1*
2313 F: drivers/net/ethernet/seeq/ether3*
2314 F: drivers/scsi/arm/
2315
2316 ARM/Rockchip SoC support
2317 M: Heiko Stuebner <heiko@sntech.de>
2318 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 L: linux-rockchip@lists.infradead.org
2320 S: Maintained
2321 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2322 F: Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2323 F: Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2324 F: Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2325 F: arch/arm/boot/dts/rk3*
2326 F: arch/arm/boot/dts/rv1108*
2327 F: arch/arm/mach-rockchip/
2328 F: drivers/*/*/*rockchip*
2329 F: drivers/*/*rockchip*
2330 F: drivers/clk/rockchip/
2331 F: drivers/i2c/busses/i2c-rk3x.c
2332 F: sound/soc/rockchip/
2333 N: rockchip
2334
2335 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2336 M: Kukjin Kim <kgene@kernel.org>
2337 M: Krzysztof Kozlowski <krzk@kernel.org>
2338 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2339 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2340 S: Maintained
2341 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
2342 F: Documentation/arm/samsung/
2343 F: Documentation/devicetree/bindings/arm/samsung/
2344 F: Documentation/devicetree/bindings/power/pd-samsung.yaml
2345 F: arch/arm/boot/dts/exynos*
2346 F: arch/arm/boot/dts/s3c*
2347 F: arch/arm/boot/dts/s5p*
2348 F: arch/arm/mach-exynos*/
2349 F: arch/arm/mach-s3c24*/
2350 F: arch/arm/mach-s3c64xx/
2351 F: arch/arm/mach-s5p*/
2352 F: arch/arm/plat-samsung/
2353 F: arch/arm64/boot/dts/exynos/
2354 F: drivers/*/*/*s3c24*
2355 F: drivers/*/*s3c24*
2356 F: drivers/*/*s3c64xx*
2357 F: drivers/*/*s5pv210*
2358 F: drivers/memory/samsung/
2359 F: drivers/soc/samsung/
2360 F: drivers/tty/serial/samsung*
2361 F: include/linux/soc/samsung/
2362 N: exynos
2363
2364 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2365 M: Kyungmin Park <kyungmin.park@samsung.com>
2366 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 S: Maintained
2368 F: arch/arm/mach-s5pv210/
2369
2370 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2371 M: Kyungmin Park <kyungmin.park@samsung.com>
2372 M: Kamil Debski <kamil@wypas.org>
2373 M: Andrzej Hajda <a.hajda@samsung.com>
2374 L: linux-arm-kernel@lists.infradead.org
2375 L: linux-media@vger.kernel.org
2376 S: Maintained
2377 F: drivers/media/platform/s5p-g2d/
2378
2379 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2380 M: Marek Szyprowski <m.szyprowski@samsung.com>
2381 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2382 L: linux-media@vger.kernel.org
2383 S: Maintained
2384 F: Documentation/devicetree/bindings/media/s5p-cec.txt
2385 F: drivers/media/platform/s5p-cec/
2386
2387 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2388 M: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2389 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
2390 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
2391 L: linux-arm-kernel@lists.infradead.org
2392 L: linux-media@vger.kernel.org
2393 S: Maintained
2394 F: drivers/media/platform/s5p-jpeg/
2395
2396 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2397 M: Kyungmin Park <kyungmin.park@samsung.com>
2398 M: Kamil Debski <kamil@wypas.org>
2399 M: Jeongtae Park <jtp.park@samsung.com>
2400 M: Andrzej Hajda <a.hajda@samsung.com>
2401 L: linux-arm-kernel@lists.infradead.org
2402 L: linux-media@vger.kernel.org
2403 S: Maintained
2404 F: drivers/media/platform/s5p-mfc/
2405
2406 ARM/SHMOBILE ARM ARCHITECTURE
2407 M: Geert Uytterhoeven <geert+renesas@glider.be>
2408 M: Magnus Damm <magnus.damm@gmail.com>
2409 L: linux-renesas-soc@vger.kernel.org
2410 S: Supported
2411 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2412 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2413 F: Documentation/devicetree/bindings/arm/renesas.yaml
2414 F: arch/arm/boot/dts/emev2*
2415 F: arch/arm/boot/dts/gr-peach*
2416 F: arch/arm/boot/dts/iwg20d-q7*
2417 F: arch/arm/boot/dts/r7s*
2418 F: arch/arm/boot/dts/r8a*
2419 F: arch/arm/boot/dts/r9a*
2420 F: arch/arm/boot/dts/sh*
2421 F: arch/arm/configs/shmobile_defconfig
2422 F: arch/arm/include/debug/renesas-scif.S
2423 F: arch/arm/mach-shmobile/
2424 F: drivers/soc/renesas/
2425 F: include/linux/soc/renesas/
2426
2427 ARM/SOCFPGA ARCHITECTURE
2428 M: Dinh Nguyen <dinguyen@kernel.org>
2429 S: Maintained
2430 W: http://www.rocketboards.org
2431 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2432 F: arch/arm/boot/dts/socfpga*
2433 F: arch/arm/configs/socfpga_defconfig
2434 F: arch/arm/mach-socfpga/
2435 F: arch/arm64/boot/dts/altera/
2436 F: arch/arm64/boot/dts/intel/
2437
2438 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2439 M: Dinh Nguyen <dinguyen@kernel.org>
2440 S: Maintained
2441 F: drivers/clk/socfpga/
2442
2443 ARM/SOCFPGA EDAC SUPPORT
2444 M: Thor Thayer <thor.thayer@linux.intel.com>
2445 S: Maintained
2446 F: drivers/edac/altera_edac.
2447
2448 ARM/SPREADTRUM SoC SUPPORT
2449 M: Orson Zhai <orsonzhai@gmail.com>
2450 M: Baolin Wang <baolin.wang7@gmail.com>
2451 M: Chunyan Zhang <zhang.lyra@gmail.com>
2452 S: Maintained
2453 F: arch/arm64/boot/dts/sprd
2454 N: sprd
2455 N: sc27xx
2456 N: sc2731
2457
2458 ARM/STI ARCHITECTURE
2459 M: Patrice Chotard <patrice.chotard@st.com>
2460 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2461 S: Maintained
2462 W: http://www.stlinux.com
2463 F: Documentation/devicetree/bindings/i2c/i2c-st.txt
2464 F: arch/arm/boot/dts/sti*
2465 F: arch/arm/mach-sti/
2466 F: drivers/ata/ahci_st.c
2467 F: drivers/char/hw_random/st-rng.c
2468 F: drivers/clocksource/arm_global_timer.c
2469 F: drivers/clocksource/clksrc_st_lpc.c
2470 F: drivers/cpufreq/sti-cpufreq.c
2471 F: drivers/dma/st_fdma*
2472 F: drivers/i2c/busses/i2c-st.c
2473 F: drivers/media/platform/sti/c8sectpfe/
2474 F: drivers/media/rc/st_rc.c
2475 F: drivers/mmc/host/sdhci-st.c
2476 F: drivers/phy/st/phy-miphy28lp.c
2477 F: drivers/phy/st/phy-stih407-usb.c
2478 F: drivers/pinctrl/pinctrl-st.c
2479 F: drivers/remoteproc/st_remoteproc.c
2480 F: drivers/remoteproc/st_slim_rproc.c
2481 F: drivers/reset/sti/
2482 F: drivers/rtc/rtc-st-lpc.c
2483 F: drivers/tty/serial/st-asc.c
2484 F: drivers/usb/dwc3/dwc3-st.c
2485 F: drivers/usb/host/ehci-st.c
2486 F: drivers/usb/host/ohci-st.c
2487 F: drivers/watchdog/st_lpc_wdt.c
2488 F: include/linux/remoteproc/st_slim_rproc.h
2489
2490 ARM/STM32 ARCHITECTURE
2491 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
2492 M: Alexandre Torgue <alexandre.torgue@st.com>
2493 L: linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2494 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2495 S: Maintained
2496 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2497 F: arch/arm/boot/dts/stm32*
2498 F: arch/arm/mach-stm32/
2499 F: drivers/clocksource/armv7m_systick.c
2500 N: stm32
2501 N: stm
2502
2503 ARM/Synaptics SoC support
2504 M: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2505 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2506 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2507 S: Maintained
2508 F: arch/arm/boot/dts/berlin*
2509 F: arch/arm/mach-berlin/
2510 F: arch/arm64/boot/dts/synaptics/
2511
2512 ARM/TANGO ARCHITECTURE
2513 M: Marc Gonzalez <marc.w.gonzalez@free.fr>
2514 M: Mans Rullgard <mans@mansr.com>
2515 L: linux-arm-kernel@lists.infradead.org
2516 S: Odd Fixes
2517 N: tango
2518
2519 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2520 M: Lennert Buytenhek <kernel@wantstofly.org>
2521 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2522 S: Maintained
2523
2524 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2525 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
2526 L: linux-tegra@vger.kernel.org
2527 L: linux-media@vger.kernel.org
2528 S: Maintained
2529 F: Documentation/devicetree/bindings/media/tegra-cec.txt
2530 F: drivers/media/platform/tegra-cec/
2531
2532 ARM/TETON BGA MACHINE SUPPORT
2533 M: "Mark F. Brown" <mark.brown314@gmail.com>
2534 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2535 S: Maintained
2536
2537 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2538 M: Santosh Shilimkar <ssantosh@kernel.org>
2539 L: linux-kernel@vger.kernel.org
2540 S: Maintained
2541 F: drivers/memory/*emif*
2542
2543 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2544 M: Santosh Shilimkar <ssantosh@kernel.org>
2545 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2546 S: Maintained
2547 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2548 F: arch/arm/boot/dts/keystone-*
2549 F: arch/arm/mach-keystone/
2550
2551 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2552 M: Santosh Shilimkar <ssantosh@kernel.org>
2553 L: linux-kernel@vger.kernel.org
2554 S: Maintained
2555 F: drivers/clk/keystone/
2556
2557 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2558 M: Santosh Shilimkar <ssantosh@kernel.org>
2559 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2560 L: linux-kernel@vger.kernel.org
2561 S: Maintained
2562 F: drivers/clocksource/timer-keystone.c
2563
2564 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2565 M: Santosh Shilimkar <ssantosh@kernel.org>
2566 L: linux-kernel@vger.kernel.org
2567 S: Maintained
2568 F: drivers/power/reset/keystone-reset.c
2569
2570 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2571 M: Tero Kristo <t-kristo@ti.com>
2572 M: Nishanth Menon <nm@ti.com>
2573 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2574 S: Supported
2575 F: Documentation/devicetree/bindings/arm/ti/k3.txt
2576 F: arch/arm64/boot/dts/ti/Makefile
2577 F: arch/arm64/boot/dts/ti/k3-*
2578 F: include/dt-bindings/pinctrl/k3.h
2579
2580 ARM/THECUS N2100 MACHINE SUPPORT
2581 M: Lennert Buytenhek <kernel@wantstofly.org>
2582 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2583 S: Maintained
2584
2585 ARM/TOSA MACHINE SUPPORT
2586 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2587 M: Dirk Opfer <dirk@opfer-online.de>
2588 S: Maintained
2589
2590 ARM/UNIPHIER ARCHITECTURE
2591 M: Masahiro Yamada <yamada.masahiro@socionext.com>
2592 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2593 S: Maintained
2594 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2595 F: Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2596 F: Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2597 F: Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2598 F: arch/arm/boot/dts/uniphier*
2599 F: arch/arm/include/asm/hardware/cache-uniphier.h
2600 F: arch/arm/mach-uniphier/
2601 F: arch/arm/mm/cache-uniphier.c
2602 F: arch/arm64/boot/dts/socionext/uniphier*
2603 F: drivers/bus/uniphier-system-bus.c
2604 F: drivers/clk/uniphier/
2605 F: drivers/dma/uniphier-mdmac.c
2606 F: drivers/gpio/gpio-uniphier.c
2607 F: drivers/i2c/busses/i2c-uniphier*
2608 F: drivers/irqchip/irq-uniphier-aidet.c
2609 F: drivers/mmc/host/uniphier-sd.c
2610 F: drivers/pinctrl/uniphier/
2611 F: drivers/reset/reset-uniphier.c
2612 F: drivers/tty/serial/8250/8250_uniphier.c
2613 N: uniphier
2614
2615 ARM/VERSATILE EXPRESS PLATFORM
2616 M: Liviu Dudau <liviu.dudau@arm.com>
2617 M: Sudeep Holla <sudeep.holla@arm.com>
2618 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2619 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2620 S: Maintained
2621 F: */*/*/vexpress*
2622 F: */*/vexpress*
2623 F: arch/arm/boot/dts/vexpress*
2624 F: arch/arm/mach-vexpress/
2625 F: arch/arm64/boot/dts/arm/
2626 F: drivers/clk/versatile/clk-vexpress-osc.c
2627 F: drivers/clocksource/timer-versatile.c
2628 N: mps2
2629
2630 ARM/VFP SUPPORT
2631 M: Russell King <linux@armlinux.org.uk>
2632 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2633 S: Maintained
2634 W: http://www.armlinux.org.uk/
2635 F: arch/arm/vfp/
2636
2637 ARM/VOIPAC PXA270 SUPPORT
2638 M: Marek Vasut <marek.vasut@gmail.com>
2639 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2640 S: Maintained
2641 F: arch/arm/mach-pxa/include/mach/vpac270.h
2642 F: arch/arm/mach-pxa/vpac270.c
2643
2644 ARM/VT8500 ARM ARCHITECTURE
2645 M: Tony Prisk <linux@prisktech.co.nz>
2646 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2647 S: Maintained
2648 F: Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2649 F: arch/arm/mach-vt8500/
2650 F: drivers/clocksource/timer-vt8500.c
2651 F: drivers/i2c/busses/i2c-wmt.c
2652 F: drivers/mmc/host/wmt-sdmmc.c
2653 F: drivers/pwm/pwm-vt8500.c
2654 F: drivers/rtc/rtc-vt8500.c
2655 F: drivers/tty/serial/vt8500_serial.c
2656 F: drivers/usb/host/ehci-platform.c
2657 F: drivers/usb/host/uhci-platform.c
2658 F: drivers/video/fbdev/vt8500lcdfb.*
2659 F: drivers/video/fbdev/wm8505fb*
2660 F: drivers/video/fbdev/wmt_ge_rops.*
2661
2662 ARM/ZIPIT Z2 SUPPORT
2663 M: Marek Vasut <marek.vasut@gmail.com>
2664 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 S: Maintained
2666 F: arch/arm/mach-pxa/include/mach/z2.h
2667 F: arch/arm/mach-pxa/z2.c
2668
2669 ARM/ZTE ARCHITECTURE
2670 M: Jun Nie <jun.nie@linaro.org>
2671 M: Shawn Guo <shawnguo@kernel.org>
2672 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2673 S: Maintained
2674 F: Documentation/devicetree/bindings/arm/zte.yaml
2675 F: Documentation/devicetree/bindings/clock/zx2967*.txt
2676 F: Documentation/devicetree/bindings/dma/zxdma.txt
2677 F: Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2678 F: Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2679 F: Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2680 F: Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2681 F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2682 F: Documentation/devicetree/bindings/soc/zte/
2683 F: Documentation/devicetree/bindings/sound/zte,*.txt
2684 F: Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2685 F: Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2686 F: arch/arm/boot/dts/zx2967*
2687 F: arch/arm/mach-zx/
2688 F: arch/arm64/boot/dts/zte/
2689 F: drivers/clk/zte/
2690 F: drivers/dma/zx_dma.c
2691 F: drivers/gpio/gpio-zx.c
2692 F: drivers/i2c/busses/i2c-zx2967.c
2693 F: drivers/mmc/host/dw_mmc-zx.*
2694 F: drivers/pinctrl/zte/
2695 F: drivers/soc/zte/
2696 F: drivers/thermal/zx2967_thermal.c
2697 F: drivers/watchdog/zx2967_wdt.c
2698 F: include/dt-bindings/clock/zx2967*.h
2699 F: include/dt-bindings/soc/zte,*.h
2700 F: sound/soc/codecs/zx_aud96p22.c
2701 F: sound/soc/zte/
2702
2703 ARM/ZYNQ ARCHITECTURE
2704 M: Michal Simek <michal.simek@xilinx.com>
2705 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2706 S: Supported
2707 W: http://wiki.xilinx.com
2708 T: git https://github.com/Xilinx/linux-xlnx.git
2709 F: Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2710 F: Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2711 F: arch/arm/mach-zynq/
2712 F: drivers/block/xsysace.c
2713 F: drivers/clocksource/timer-cadence-ttc.c
2714 F: drivers/cpuidle/cpuidle-zynq.c
2715 F: drivers/edac/synopsys_edac.c
2716 F: drivers/i2c/busses/i2c-cadence.c
2717 F: drivers/i2c/busses/i2c-xiic.c
2718 F: drivers/mmc/host/sdhci-of-arasan.c
2719 N: zynq
2720 N: xilinx
2721
2722 ARM64 PORT (AARCH64 ARCHITECTURE)
2723 M: Catalin Marinas <catalin.marinas@arm.com>
2724 M: Will Deacon <will@kernel.org>
2725 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2726 S: Maintained
2727 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2728 F: Documentation/arm64/
2729 F: arch/arm64/
2730 F: tools/testing/selftests/arm64/
2731 X: arch/arm64/boot/dts/
2732
2733 AS3645A LED FLASH CONTROLLER DRIVER
2734 M: Sakari Ailus <sakari.ailus@iki.fi>
2735 L: linux-leds@vger.kernel.org
2736 S: Maintained
2737 F: drivers/leds/leds-as3645a.c
2738
2739 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2740 M: Tianshu Qiu <tian.shu.qiu@intel.com>
2741 L: linux-media@vger.kernel.org
2742 S: Maintained
2743 T: git git://linuxtv.org/media_tree.git
2744 F: Documentation/devicetree/bindings/media/i2c/ak7375.txt
2745 F: drivers/media/i2c/ak7375.c
2746
2747 ASAHI KASEI AK8974 DRIVER
2748 M: Linus Walleij <linus.walleij@linaro.org>
2749 L: linux-iio@vger.kernel.org
2750 S: Supported
2751 W: http://www.akm.com/
2752 F: drivers/iio/magnetometer/ak8974.c
2753
2754 ASC7621 HARDWARE MONITOR DRIVER
2755 M: George Joseph <george.joseph@fairview5.com>
2756 L: linux-hwmon@vger.kernel.org
2757 S: Maintained
2758 F: Documentation/hwmon/asc7621.rst
2759 F: drivers/hwmon/asc7621.c
2760
2761 ASPEED PINCTRL DRIVERS
2762 M: Andrew Jeffery <andrew@aj.id.au>
2763 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2764 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2765 L: linux-gpio@vger.kernel.org
2766 S: Maintained
2767 F: Documentation/devicetree/bindings/pinctrl/aspeed,*
2768 F: drivers/pinctrl/aspeed/
2769
2770 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2771 M: Eddie James <eajames@linux.ibm.com>
2772 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2773 S: Maintained
2774 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2775 F: drivers/irqchip/irq-aspeed-scu-ic.c
2776 F: include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2777
2778 ASPEED VIDEO ENGINE DRIVER
2779 M: Eddie James <eajames@linux.ibm.com>
2780 L: linux-media@vger.kernel.org
2781 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2782 S: Maintained
2783 F: Documentation/devicetree/bindings/media/aspeed-video.txt
2784 F: drivers/media/platform/aspeed-video.c
2785
2786 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2787 M: Corentin Chary <corentin.chary@gmail.com>
2788 L: acpi4asus-user@lists.sourceforge.net
2789 L: platform-driver-x86@vger.kernel.org
2790 S: Maintained
2791 W: http://acpi4asus.sf.net
2792 F: drivers/platform/x86/asus*.c
2793 F: drivers/platform/x86/eeepc*.c
2794
2795 ASUS WIRELESS RADIO CONTROL DRIVER
2796 M: João Paulo Rechi Vita <jprvita@gmail.com>
2797 L: platform-driver-x86@vger.kernel.org
2798 S: Maintained
2799 F: drivers/platform/x86/asus-wireless.c
2800
2801 ASYMMETRIC KEYS
2802 M: David Howells <dhowells@redhat.com>
2803 L: keyrings@vger.kernel.org
2804 S: Maintained
2805 F: Documentation/crypto/asymmetric-keys.txt
2806 F: crypto/asymmetric_keys/
2807 F: include/crypto/pkcs7.h
2808 F: include/crypto/public_key.h
2809 F: include/linux/verification.h
2810
2811 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2812 R: Dan Williams <dan.j.williams@intel.com>
2813 S: Odd fixes
2814 W: http://sourceforge.net/projects/xscaleiop
2815 F: Documentation/crypto/async-tx-api.txt
2816 F: crypto/async_tx/
2817 F: drivers/dma/
2818 F: include/linux/async_tx.h
2819 F: include/linux/dmaengine.h
2820
2821 AT24 EEPROM DRIVER
2822 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
2823 L: linux-i2c@vger.kernel.org
2824 S: Maintained
2825 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2826 F: Documentation/devicetree/bindings/eeprom/at24.yaml
2827 F: drivers/misc/eeprom/at24.c
2828
2829 ATA OVER ETHERNET (AOE) DRIVER
2830 M: "Justin Sanders" <justin@coraid.com>
2831 S: Supported
2832 W: http://www.openaoe.org/
2833 F: Documentation/admin-guide/aoe/
2834 F: drivers/block/aoe/
2835
2836 ATHEROS 71XX/9XXX GPIO DRIVER
2837 M: Alban Bedel <albeu@free.fr>
2838 S: Maintained
2839 W: https://github.com/AlbanBedel/linux
2840 T: git git://github.com/AlbanBedel/linux
2841 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2842 F: drivers/gpio/gpio-ath79.c
2843
2844 ATHEROS 71XX/9XXX USB PHY DRIVER
2845 M: Alban Bedel <albeu@free.fr>
2846 S: Maintained
2847 W: https://github.com/AlbanBedel/linux
2848 T: git git://github.com/AlbanBedel/linux
2849 F: Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2850 F: drivers/phy/qualcomm/phy-ath79-usb.c
2851
2852 ATHEROS ATH GENERIC UTILITIES
2853 M: Kalle Valo <kvalo@codeaurora.org>
2854 L: linux-wireless@vger.kernel.org
2855 S: Supported
2856 F: drivers/net/wireless/ath/*
2857
2858 ATHEROS ATH5K WIRELESS DRIVER
2859 M: Jiri Slaby <jirislaby@gmail.com>
2860 M: Nick Kossifidis <mickflemm@gmail.com>
2861 M: Luis Chamberlain <mcgrof@kernel.org>
2862 L: linux-wireless@vger.kernel.org
2863 S: Maintained
2864 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2865 F: drivers/net/wireless/ath/ath5k/
2866
2867 ATHEROS ATH6KL WIRELESS DRIVER
2868 M: Kalle Valo <kvalo@codeaurora.org>
2869 L: linux-wireless@vger.kernel.org
2870 S: Supported
2871 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2872 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2873 F: drivers/net/wireless/ath/ath6kl/
2874
2875 ATI_REMOTE2 DRIVER
2876 M: Ville Syrjala <syrjala@sci.fi>
2877 S: Maintained
2878 F: drivers/input/misc/ati_remote2.c
2879
2880 ATK0110 HWMON DRIVER
2881 M: Luca Tettamanti <kronos.it@gmail.com>
2882 L: linux-hwmon@vger.kernel.org
2883 S: Maintained
2884 F: drivers/hwmon/asus_atk0110.c
2885
2886 ATLX ETHERNET DRIVERS
2887 M: Jay Cliburn <jcliburn@gmail.com>
2888 M: Chris Snook <chris.snook@gmail.com>
2889 L: netdev@vger.kernel.org
2890 S: Maintained
2891 W: http://sourceforge.net/projects/atl1
2892 W: http://atl1.sourceforge.net
2893 F: drivers/net/ethernet/atheros/
2894
2895 ATM
2896 M: Chas Williams <3chas3@gmail.com>
2897 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2898 L: netdev@vger.kernel.org
2899 S: Maintained
2900 W: http://linux-atm.sourceforge.net
2901 F: drivers/atm/
2902 F: include/linux/atm*
2903 F: include/uapi/linux/atm*
2904
2905 ATMEL MACB ETHERNET DRIVER
2906 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2907 S: Supported
2908 F: drivers/net/ethernet/cadence/
2909
2910 ATMEL MAXTOUCH DRIVER
2911 M: Nick Dyer <nick@shmanahar.org>
2912 S: Maintained
2913 T: git git://github.com/ndyer/linux.git
2914 F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2915 F: drivers/input/touchscreen/atmel_mxt_ts.c
2916
2917 ATMEL WIRELESS DRIVER
2918 M: Simon Kelley <simon@thekelleys.org.uk>
2919 L: linux-wireless@vger.kernel.org
2920 S: Maintained
2921 W: http://www.thekelleys.org.uk/atmel
2922 W: http://atmelwlandriver.sourceforge.net/
2923 F: drivers/net/wireless/atmel/atmel*
2924
2925 ATOMIC INFRASTRUCTURE
2926 M: Will Deacon <will@kernel.org>
2927 M: Peter Zijlstra <peterz@infradead.org>
2928 R: Boqun Feng <boqun.feng@gmail.com>
2929 L: linux-kernel@vger.kernel.org
2930 S: Maintained
2931 F: arch/*/include/asm/atomic*.h
2932 F: include/*/atomic*.h
2933 F: scripts/atomic/
2934
2935 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2936 M: Bradley Grove <linuxdrivers@attotech.com>
2937 L: linux-scsi@vger.kernel.org
2938 S: Supported
2939 W: http://www.attotech.com
2940 F: drivers/scsi/esas2r
2941
2942 ATUSB IEEE 802.15.4 RADIO DRIVER
2943 M: Stefan Schmidt <stefan@datenfreihafen.org>
2944 L: linux-wpan@vger.kernel.org
2945 S: Maintained
2946 F: drivers/net/ieee802154/at86rf230.h
2947 F: drivers/net/ieee802154/atusb.c
2948 F: drivers/net/ieee802154/atusb.h
2949
2950 AUDIT SUBSYSTEM
2951 M: Paul Moore <paul@paul-moore.com>
2952 M: Eric Paris <eparis@redhat.com>
2953 L: linux-audit@redhat.com (moderated for non-subscribers)
2954 S: Supported
2955 W: https://github.com/linux-audit
2956 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2957 F: include/linux/audit.h
2958 F: include/uapi/linux/audit.h
2959 F: kernel/audit*
2960
2961 AUXILIARY DISPLAY DRIVERS
2962 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2963 S: Maintained
2964 F: drivers/auxdisplay/
2965 F: include/linux/cfag12864b.h
2966
2967 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2968 M: Andreas Klinger <ak@it-klinger.de>
2969 L: linux-iio@vger.kernel.org
2970 S: Maintained
2971 F: Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2972 F: drivers/iio/adc/hx711.c
2973
2974 AX.25 NETWORK LAYER
2975 M: Ralf Baechle <ralf@linux-mips.org>
2976 L: linux-hams@vger.kernel.org
2977 S: Maintained
2978 W: http://www.linux-ax25.org/
2979 F: include/net/ax25.h
2980 F: include/uapi/linux/ax25.h
2981 F: net/ax25/
2982
2983 AXENTIA ARM DEVICES
2984 M: Peter Rosin <peda@axentia.se>
2985 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2986 S: Maintained
2987 F: arch/arm/boot/dts/at91-linea.dtsi
2988 F: arch/arm/boot/dts/at91-natte.dtsi
2989 F: arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2990 F: arch/arm/boot/dts/at91-tse850-3.dts
2991
2992 AXENTIA ASOC DRIVERS
2993 M: Peter Rosin <peda@axentia.se>
2994 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2995 S: Maintained
2996 F: Documentation/devicetree/bindings/sound/axentia,*
2997 F: sound/soc/atmel/tse850-pcm5142.c
2998
2999 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3000 M: Nuno Sá <nuno.sa@analog.com>
3001 L: linux-hwmon@vger.kernel.org
3002 S: Supported
3003 W: http://ez.analog.com/community/linux-device-drivers
3004 F: Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3005 F: drivers/hwmon/axi-fan-control.c
3006
3007 AXXIA I2C CONTROLLER
3008 M: Krzysztof Adamski <krzysztof.adamski@nokia.com>
3009 L: linux-i2c@vger.kernel.org
3010 S: Maintained
3011 F: Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3012 F: drivers/i2c/busses/i2c-axxia.c
3013
3014 AZ6007 DVB DRIVER
3015 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3016 L: linux-media@vger.kernel.org
3017 S: Maintained
3018 W: https://linuxtv.org
3019 T: git git://linuxtv.org/media_tree.git
3020 F: drivers/media/usb/dvb-usb-v2/az6007.c
3021
3022 AZTECH FM RADIO RECEIVER DRIVER
3023 M: Hans Verkuil <hverkuil@xs4all.nl>
3024 L: linux-media@vger.kernel.org
3025 S: Maintained
3026 W: https://linuxtv.org
3027 T: git git://linuxtv.org/media_tree.git
3028 F: drivers/media/radio/radio-aztech*
3029
3030 B43 WIRELESS DRIVER
3031 L: linux-wireless@vger.kernel.org
3032 L: b43-dev@lists.infradead.org
3033 S: Odd Fixes
3034 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3035 F: drivers/net/wireless/broadcom/b43/
3036
3037 B43LEGACY WIRELESS DRIVER
3038 M: Larry Finger <Larry.Finger@lwfinger.net>
3039 L: linux-wireless@vger.kernel.org
3040 L: b43-dev@lists.infradead.org
3041 S: Maintained
3042 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3043 F: drivers/net/wireless/broadcom/b43legacy/
3044
3045 BACKLIGHT CLASS/SUBSYSTEM
3046 M: Lee Jones <lee.jones@linaro.org>
3047 M: Daniel Thompson <daniel.thompson@linaro.org>
3048 M: Jingoo Han <jingoohan1@gmail.com>
3049 L: dri-devel@lists.freedesktop.org
3050 S: Maintained
3051 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3052 F: Documentation/ABI/stable/sysfs-class-backlight
3053 F: Documentation/ABI/testing/sysfs-class-backlight
3054 F: Documentation/devicetree/bindings/leds/backlight
3055 F: drivers/video/backlight/
3056 F: include/linux/backlight.h
3057 F: include/linux/pwm_backlight.h
3058
3059 BATMAN ADVANCED
3060 M: Marek Lindner <mareklindner@neomailbox.ch>
3061 M: Simon Wunderlich <sw@simonwunderlich.de>
3062 M: Antonio Quartulli <a@unstable.cc>
3063 M: Sven Eckelmann <sven@narfation.org>
3064 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3065 S: Maintained
3066 W: https://www.open-mesh.org/
3067 Q: https://patchwork.open-mesh.org/project/batman/list/
3068 B: https://www.open-mesh.org/projects/batman-adv/issues
3069 C: irc://chat.freenode.net/batman
3070 T: git https://git.open-mesh.org/linux-merge.git
3071 F: Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3072 F: Documentation/ABI/obsolete/sysfs-class-net-mesh
3073 F: Documentation/networking/batman-adv.rst
3074 F: include/uapi/linux/batadv_packet.h
3075 F: include/uapi/linux/batman_adv.h
3076 F: net/batman-adv/
3077
3078 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3079 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
3080 L: linux-hams@vger.kernel.org
3081 S: Maintained
3082 W: http://www.baycom.org/~tom/ham/ham.html
3083 F: drivers/net/hamradio/baycom*
3084
3085 BCACHE (BLOCK LAYER CACHE)
3086 M: Coly Li <colyli@suse.de>
3087 M: Kent Overstreet <kent.overstreet@gmail.com>
3088 L: linux-bcache@vger.kernel.org
3089 S: Maintained
3090 W: http://bcache.evilpiepirate.org
3091 C: irc://irc.oftc.net/bcache
3092 F: drivers/md/bcache/
3093
3094 BDISP ST MEDIA DRIVER
3095 M: Fabien Dessenne <fabien.dessenne@st.com>
3096 L: linux-media@vger.kernel.org
3097 S: Supported
3098 W: https://linuxtv.org
3099 T: git git://linuxtv.org/media_tree.git
3100 F: drivers/media/platform/sti/bdisp
3101
3102 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3103 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
3104 L: netdev@vger.kernel.org
3105 S: Maintained
3106 F: drivers/net/ethernet/ec_bhf.c
3107
3108 BEFS FILE SYSTEM
3109 M: Luis de Bethencourt <luisbg@kernel.org>
3110 M: Salah Triki <salah.triki@gmail.com>
3111 S: Maintained
3112 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3113 F: Documentation/filesystems/befs.rst
3114 F: fs/befs/
3115
3116 BFQ I/O SCHEDULER
3117 M: Paolo Valente <paolo.valente@linaro.org>
3118 M: Jens Axboe <axboe@kernel.dk>
3119 L: linux-block@vger.kernel.org
3120 S: Maintained
3121 F: Documentation/block/bfq-iosched.rst
3122 F: block/bfq-*
3123
3124 BFS FILE SYSTEM
3125 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3126 S: Maintained
3127 F: Documentation/filesystems/bfs.rst
3128 F: fs/bfs/
3129 F: include/uapi/linux/bfs_fs.h
3130
3131 BLINKM RGB LED DRIVER
3132 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
3133 S: Maintained
3134 F: drivers/leds/leds-blinkm.c
3135
3136 BLOCK LAYER
3137 M: Jens Axboe <axboe@kernel.dk>
3138 L: linux-block@vger.kernel.org
3139 S: Maintained
3140 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3141 F: block/
3142 F: drivers/block/
3143 F: kernel/trace/blktrace.c
3144 F: lib/sbitmap.c
3145
3146 BLOCK2MTD DRIVER
3147 M: Joern Engel <joern@lazybastard.org>
3148 L: linux-mtd@lists.infradead.org
3149 S: Maintained
3150 F: drivers/mtd/devices/block2mtd.c
3151
3152 BLUETOOTH DRIVERS
3153 M: Marcel Holtmann <marcel@holtmann.org>
3154 M: Johan Hedberg <johan.hedberg@gmail.com>
3155 L: linux-bluetooth@vger.kernel.org
3156 S: Maintained
3157 W: http://www.bluez.org/
3158 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3159 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3160 F: drivers/bluetooth/
3161
3162 BLUETOOTH SUBSYSTEM
3163 M: Marcel Holtmann <marcel@holtmann.org>
3164 M: Johan Hedberg <johan.hedberg@gmail.com>
3165 L: linux-bluetooth@vger.kernel.org
3166 S: Maintained
3167 W: http://www.bluez.org/
3168 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3169 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3170 F: include/net/bluetooth/
3171 F: net/bluetooth/
3172
3173 BONDING DRIVER
3174 M: Jay Vosburgh <j.vosburgh@gmail.com>
3175 M: Veaceslav Falico <vfalico@gmail.com>
3176 M: Andy Gospodarek <andy@greyhouse.net>
3177 L: netdev@vger.kernel.org
3178 S: Supported
3179 W: http://sourceforge.net/projects/bonding/
3180 F: drivers/net/bonding/
3181 F: include/uapi/linux/if_bonding.h
3182
3183 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3184 M: Dan Robertson <dan@dlrobertson.com>
3185 L: linux-iio@vger.kernel.org
3186 S: Maintained
3187 F: Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3188 F: drivers/iio/accel/bma400*
3189
3190 BPF (Safe dynamic programs and tools)
3191 M: Alexei Starovoitov <ast@kernel.org>
3192 M: Daniel Borkmann <daniel@iogearbox.net>
3193 R: Martin KaFai Lau <kafai@fb.com>
3194 R: Song Liu <songliubraving@fb.com>
3195 R: Yonghong Song <yhs@fb.com>
3196 R: Andrii Nakryiko <andriin@fb.com>
3197 R: John Fastabend <john.fastabend@gmail.com>
3198 R: KP Singh <kpsingh@chromium.org>
3199 L: netdev@vger.kernel.org
3200 L: bpf@vger.kernel.org
3201 S: Supported
3202 Q: https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3203 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3204 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3205 F: Documentation/bpf/
3206 F: Documentation/networking/filter.txt
3207 F: arch/*/net/*
3208 F: include/linux/bpf*
3209 F: include/linux/filter.h
3210 F: include/trace/events/xdp.h
3211 F: include/uapi/linux/bpf*
3212 F: include/uapi/linux/filter.h
3213 F: kernel/bpf/
3214 F: kernel/trace/bpf_trace.c
3215 F: lib/test_bpf.c
3216 F: net/bpf/
3217 F: net/core/filter.c
3218 F: net/sched/act_bpf.c
3219 F: net/sched/cls_bpf.c
3220 F: samples/bpf/
3221 F: tools/bpf/
3222 F: tools/lib/bpf/
3223 F: tools/testing/selftests/bpf/
3224 N: bpf
3225 K: bpf
3226
3227 BPF JIT for ARM
3228 M: Shubham Bansal <illusionist.neo@gmail.com>
3229 L: netdev@vger.kernel.org
3230 L: bpf@vger.kernel.org
3231 S: Maintained
3232 F: arch/arm/net/
3233
3234 BPF JIT for ARM64
3235 M: Daniel Borkmann <daniel@iogearbox.net>
3236 M: Alexei Starovoitov <ast@kernel.org>
3237 M: Zi Shen Lim <zlim.lnx@gmail.com>
3238 L: netdev@vger.kernel.org
3239 L: bpf@vger.kernel.org
3240 S: Supported
3241 F: arch/arm64/net/
3242
3243 BPF JIT for MIPS (32-BIT AND 64-BIT)
3244 M: Paul Burton <paulburton@kernel.org>
3245 L: netdev@vger.kernel.org
3246 L: bpf@vger.kernel.org
3247 S: Maintained
3248 F: arch/mips/net/
3249
3250 BPF JIT for NFP NICs
3251 M: Jakub Kicinski <kuba@kernel.org>
3252 L: netdev@vger.kernel.org
3253 L: bpf@vger.kernel.org
3254 S: Supported
3255 F: drivers/net/ethernet/netronome/nfp/bpf/
3256
3257 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3258 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3259 M: Sandipan Das <sandipan@linux.ibm.com>
3260 L: netdev@vger.kernel.org
3261 L: bpf@vger.kernel.org
3262 S: Maintained
3263 F: arch/powerpc/net/
3264
3265 BPF JIT for RISC-V (32-bit)
3266 M: Luke Nelson <luke.r.nels@gmail.com>
3267 M: Xi Wang <xi.wang@gmail.com>
3268 L: netdev@vger.kernel.org
3269 L: bpf@vger.kernel.org
3270 S: Maintained
3271 F: arch/riscv/net/
3272 X: arch/riscv/net/bpf_jit_comp64.c
3273
3274 BPF JIT for RISC-V (64-bit)
3275 M: Björn Töpel <bjorn.topel@gmail.com>
3276 L: netdev@vger.kernel.org
3277 L: bpf@vger.kernel.org
3278 S: Maintained
3279 F: arch/riscv/net/
3280 X: arch/riscv/net/bpf_jit_comp32.c
3281
3282 BPF JIT for S390
3283 M: Ilya Leoshkevich <iii@linux.ibm.com>
3284 M: Heiko Carstens <heiko.carstens@de.ibm.com>
3285 M: Vasily Gorbik <gor@linux.ibm.com>
3286 L: netdev@vger.kernel.org
3287 L: bpf@vger.kernel.org
3288 S: Maintained
3289 F: arch/s390/net/
3290 X: arch/s390/net/pnet.c
3291
3292 BPF JIT for SPARC (32-BIT AND 64-BIT)
3293 M: David S. Miller <davem@davemloft.net>
3294 L: netdev@vger.kernel.org
3295 L: bpf@vger.kernel.org
3296 S: Maintained
3297 F: arch/sparc/net/
3298
3299 BPF JIT for X86 32-BIT
3300 M: Wang YanQing <udknight@gmail.com>
3301 L: netdev@vger.kernel.org
3302 L: bpf@vger.kernel.org
3303 S: Maintained
3304 F: arch/x86/net/bpf_jit_comp32.c
3305
3306 BPF JIT for X86 64-BIT
3307 M: Alexei Starovoitov <ast@kernel.org>
3308 M: Daniel Borkmann <daniel@iogearbox.net>
3309 L: netdev@vger.kernel.org
3310 L: bpf@vger.kernel.org
3311 S: Supported
3312 F: arch/x86/net/
3313 X: arch/x86/net/bpf_jit_comp32.c
3314
3315 BROADCOM B44 10/100 ETHERNET DRIVER
3316 M: Michael Chan <michael.chan@broadcom.com>
3317 L: netdev@vger.kernel.org
3318 S: Supported
3319 F: drivers/net/ethernet/broadcom/b44.*
3320
3321 BROADCOM B53 ETHERNET SWITCH DRIVER
3322 M: Florian Fainelli <f.fainelli@gmail.com>
3323 L: netdev@vger.kernel.org
3324 L: openwrt-devel@lists.openwrt.org (subscribers-only)
3325 S: Supported
3326 F: drivers/net/dsa/b53/*
3327 F: include/linux/platform_data/b53.h
3328
3329 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3330 M: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3331 L: bcm-kernel-feedback-list@broadcom.com
3332 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3333 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3334 S: Maintained
3335 T: git git://github.com/anholt/linux
3336 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3337 F: drivers/pci/controller/pcie-brcmstb.c
3338 F: drivers/staging/vc04_services
3339 N: bcm2711
3340 N: bcm2835
3341
3342 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3343 M: Florian Fainelli <f.fainelli@gmail.com>
3344 M: Ray Jui <rjui@broadcom.com>
3345 M: Scott Branden <sbranden@broadcom.com>
3346 M: bcm-kernel-feedback-list@broadcom.com
3347 S: Maintained
3348 T: git git://github.com/broadcom/mach-bcm
3349 F: arch/arm/mach-bcm/
3350 N: bcm281*
3351 N: bcm113*
3352 N: bcm216*
3353 N: kona
3354
3355 BROADCOM BCM47XX MIPS ARCHITECTURE
3356 M: Hauke Mehrtens <hauke@hauke-m.de>
3357 M: Rafał Miłecki <zajec5@gmail.com>
3358 L: linux-mips@vger.kernel.org
3359 S: Maintained
3360 F: Documentation/devicetree/bindings/mips/brcm/
3361 F: arch/mips/bcm47xx/*
3362 F: arch/mips/include/asm/mach-bcm47xx/*
3363
3364 BROADCOM BCM5301X ARM ARCHITECTURE
3365 M: Hauke Mehrtens <hauke@hauke-m.de>
3366 M: Rafał Miłecki <zajec5@gmail.com>
3367 M: bcm-kernel-feedback-list@broadcom.com
3368 L: linux-arm-kernel@lists.infradead.org
3369 S: Maintained
3370 F: arch/arm/boot/dts/bcm470*
3371 F: arch/arm/boot/dts/bcm5301x*.dtsi
3372 F: arch/arm/boot/dts/bcm953012*
3373 F: arch/arm/mach-bcm/bcm_5301x.c
3374
3375 BROADCOM BCM53573 ARM ARCHITECTURE
3376 M: Rafał Miłecki <rafal@milecki.pl>
3377 L: bcm-kernel-feedback-list@broadcom.com
3378 L: linux-arm-kernel@lists.infradead.org
3379 S: Maintained
3380 F: arch/arm/boot/dts/bcm47189*
3381 F: arch/arm/boot/dts/bcm53573*
3382
3383 BROADCOM BCM63XX ARM ARCHITECTURE
3384 M: Florian Fainelli <f.fainelli@gmail.com>
3385 M: bcm-kernel-feedback-list@broadcom.com
3386 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3387 S: Maintained
3388 T: git git://github.com/broadcom/stblinux.git
3389 N: bcm63xx
3390
3391 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3392 M: Kevin Cernekee <cernekee@gmail.com>
3393 L: linux-usb@vger.kernel.org
3394 S: Maintained
3395 F: drivers/usb/gadget/udc/bcm63xx_udc.*
3396
3397 BROADCOM BCM7XXX ARM ARCHITECTURE
3398 M: Florian Fainelli <f.fainelli@gmail.com>
3399 M: bcm-kernel-feedback-list@broadcom.com
3400 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3401 S: Maintained
3402 T: git git://github.com/broadcom/stblinux.git
3403 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3404 F: arch/arm/boot/dts/bcm7*.dts*
3405 F: arch/arm/include/asm/hardware/cache-b15-rac.h
3406 F: arch/arm/mach-bcm/*brcmstb*
3407 F: arch/arm/mm/cache-b15-rac.c
3408 F: drivers/bus/brcmstb_gisb.c
3409 F: drivers/pci/controller/pcie-brcmstb.c
3410 N: brcmstb
3411
3412 BROADCOM BMIPS CPUFREQ DRIVER
3413 M: Markus Mayer <mmayer@broadcom.com>
3414 M: bcm-kernel-feedback-list@broadcom.com
3415 L: linux-pm@vger.kernel.org
3416 S: Maintained
3417 F: drivers/cpufreq/bmips-cpufreq.c
3418
3419 BROADCOM BMIPS MIPS ARCHITECTURE
3420 M: Florian Fainelli <f.fainelli@gmail.com>
3421 L: bcm-kernel-feedback-list@broadcom.com
3422 L: linux-mips@vger.kernel.org
3423 S: Maintained
3424 T: git git://github.com/broadcom/stblinux.git
3425 F: arch/mips/bmips/*
3426 F: arch/mips/boot/dts/brcm/bcm*.dts*
3427 F: arch/mips/include/asm/mach-bmips/*
3428 F: arch/mips/kernel/*bmips*
3429 F: drivers/irqchip/irq-bcm63*
3430 F: drivers/irqchip/irq-bcm7*
3431 F: drivers/irqchip/irq-brcmstb*
3432 F: include/linux/bcm963xx_nvram.h
3433 F: include/linux/bcm963xx_tag.h
3434
3435 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3436 M: Rasesh Mody <rmody@marvell.com>
3437 M: GR-Linux-NIC-Dev@marvell.com
3438 L: netdev@vger.kernel.org
3439 S: Supported
3440 F: drivers/net/ethernet/broadcom/bnx2.*
3441 F: drivers/net/ethernet/broadcom/bnx2_*
3442
3443 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3444 M: QLogic-Storage-Upstream@qlogic.com
3445 L: linux-scsi@vger.kernel.org
3446 S: Supported
3447 F: drivers/scsi/bnx2fc/
3448
3449 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3450 M: QLogic-Storage-Upstream@qlogic.com
3451 L: linux-scsi@vger.kernel.org
3452 S: Supported
3453 F: drivers/scsi/bnx2i/
3454
3455 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3456 M: Ariel Elior <aelior@marvell.com>
3457 M: Sudarsana Kalluru <skalluru@marvell.com>
3458 M: GR-everest-linux-l2@marvell.com
3459 L: netdev@vger.kernel.org
3460 S: Supported
3461 F: drivers/net/ethernet/broadcom/bnx2x/
3462
3463 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3464 M: Michael Chan <michael.chan@broadcom.com>
3465 L: netdev@vger.kernel.org
3466 S: Supported
3467 F: drivers/net/ethernet/broadcom/bnxt/
3468
3469 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3470 M: Arend van Spriel <arend.vanspriel@broadcom.com>
3471 M: Franky Lin <franky.lin@broadcom.com>
3472 M: Hante Meuleman <hante.meuleman@broadcom.com>
3473 M: Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3474 M: Wright Feng <wright.feng@cypress.com>
3475 L: linux-wireless@vger.kernel.org
3476 L: brcm80211-dev-list.pdl@broadcom.com
3477 L: brcm80211-dev-list@cypress.com
3478 S: Supported
3479 F: drivers/net/wireless/broadcom/brcm80211/
3480
3481 BROADCOM BRCMSTB GPIO DRIVER
3482 M: Gregory Fong <gregory.0xf0@gmail.com>
3483 L: bcm-kernel-feedback-list@broadcom.com
3484 S: Supported
3485 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3486 F: drivers/gpio/gpio-brcmstb.c
3487
3488 BROADCOM BRCMSTB I2C DRIVER
3489 M: Kamal Dasu <kdasu.kdev@gmail.com>
3490 L: linux-i2c@vger.kernel.org
3491 L: bcm-kernel-feedback-list@broadcom.com
3492 S: Supported
3493 F: Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3494 F: drivers/i2c/busses/i2c-brcmstb.c
3495
3496 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3497 M: Al Cooper <alcooperx@gmail.com>
3498 L: linux-kernel@vger.kernel.org
3499 L: bcm-kernel-feedback-list@broadcom.com
3500 S: Maintained
3501 F: drivers/phy/broadcom/phy-brcm-usb*
3502
3503 BROADCOM GENET ETHERNET DRIVER
3504 M: Doug Berger <opendmb@gmail.com>
3505 M: Florian Fainelli <f.fainelli@gmail.com>
3506 L: bcm-kernel-feedback-list@broadcom.com
3507 L: netdev@vger.kernel.org
3508 S: Supported
3509 F: drivers/net/ethernet/broadcom/genet/
3510
3511 BROADCOM IPROC ARM ARCHITECTURE
3512 M: Ray Jui <rjui@broadcom.com>
3513 M: Scott Branden <sbranden@broadcom.com>
3514 M: bcm-kernel-feedback-list@broadcom.com
3515 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3516 S: Maintained
3517 T: git git://github.com/broadcom/cygnus-linux.git
3518 F: arch/arm64/boot/dts/broadcom/northstar2/*
3519 F: arch/arm64/boot/dts/broadcom/stingray/*
3520 F: drivers/clk/bcm/clk-ns*
3521 F: drivers/clk/bcm/clk-sr*
3522 F: drivers/pinctrl/bcm/pinctrl-ns*
3523 F: include/dt-bindings/clock/bcm-sr*
3524 N: iproc
3525 N: cygnus
3526 N: bcm[-_]nsp
3527 N: bcm9113*
3528 N: bcm9583*
3529 N: bcm9585*
3530 N: bcm9586*
3531 N: bcm988312
3532 N: bcm113*
3533 N: bcm583*
3534 N: bcm585*
3535 N: bcm586*
3536 N: bcm88312
3537 N: hr2
3538 N: stingray
3539
3540 BROADCOM KONA GPIO DRIVER
3541 M: Ray Jui <rjui@broadcom.com>
3542 L: bcm-kernel-feedback-list@broadcom.com
3543 S: Supported
3544 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3545 F: drivers/gpio/gpio-bcm-kona.c
3546
3547 BROADCOM NETXTREME-E ROCE DRIVER
3548 M: Selvin Xavier <selvin.xavier@broadcom.com>
3549 M: Devesh Sharma <devesh.sharma@broadcom.com>
3550 M: Somnath Kotur <somnath.kotur@broadcom.com>
3551 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3552 L: linux-rdma@vger.kernel.org
3553 S: Supported
3554 W: http://www.broadcom.com
3555 F: drivers/infiniband/hw/bnxt_re/
3556 F: include/uapi/rdma/bnxt_re-abi.h
3557
3558 BROADCOM NVRAM DRIVER
3559 M: Rafał Miłecki <zajec5@gmail.com>
3560 L: linux-mips@vger.kernel.org
3561 S: Maintained
3562 F: drivers/firmware/broadcom/*
3563
3564 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3565 M: Rafał Miłecki <zajec5@gmail.com>
3566 L: linux-wireless@vger.kernel.org
3567 S: Maintained
3568 F: drivers/bcma/
3569 F: include/linux/bcma/
3570
3571 BROADCOM SPI DRIVER
3572 M: Kamal Dasu <kdasu.kdev@gmail.com>
3573 M: bcm-kernel-feedback-list@broadcom.com
3574 S: Maintained
3575 F: Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3576 F: drivers/spi/spi-bcm-qspi.*
3577 F: drivers/spi/spi-brcmstb-qspi.c
3578 F: drivers/spi/spi-iproc-qspi.c
3579
3580 BROADCOM STB AVS CPUFREQ DRIVER
3581 M: Markus Mayer <mmayer@broadcom.com>
3582 M: bcm-kernel-feedback-list@broadcom.com
3583 L: linux-pm@vger.kernel.org
3584 S: Maintained
3585 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3586 F: drivers/cpufreq/brcmstb*
3587
3588 BROADCOM STB AVS TMON DRIVER
3589 M: Markus Mayer <mmayer@broadcom.com>
3590 M: bcm-kernel-feedback-list@broadcom.com
3591 L: linux-pm@vger.kernel.org
3592 S: Maintained
3593 F: Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3594 F: drivers/thermal/broadcom/brcmstb*
3595
3596 BROADCOM STB DPFE DRIVER
3597 M: Markus Mayer <mmayer@broadcom.com>
3598 M: bcm-kernel-feedback-list@broadcom.com
3599 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3600 S: Maintained
3601 F: Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3602 F: drivers/memory/brcmstb_dpfe.c
3603
3604 BROADCOM STB NAND FLASH DRIVER
3605 M: Brian Norris <computersforpeace@gmail.com>
3606 M: Kamal Dasu <kdasu.kdev@gmail.com>
3607 L: linux-mtd@lists.infradead.org
3608 L: bcm-kernel-feedback-list@broadcom.com
3609 S: Maintained
3610 F: drivers/mtd/nand/raw/brcmnand/
3611
3612 BROADCOM SYSTEMPORT ETHERNET DRIVER
3613 M: Florian Fainelli <f.fainelli@gmail.com>
3614 L: bcm-kernel-feedback-list@broadcom.com
3615 L: netdev@vger.kernel.org
3616 S: Supported
3617 F: drivers/net/ethernet/broadcom/bcmsysport.*
3618
3619 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3620 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
3621 M: Prashant Sreedharan <prashant@broadcom.com>
3622 M: Michael Chan <mchan@broadcom.com>
3623 L: netdev@vger.kernel.org
3624 S: Supported
3625 F: drivers/net/ethernet/broadcom/tg3.*
3626
3627 BROCADE BFA FC SCSI DRIVER
3628 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3629 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3630 L: linux-scsi@vger.kernel.org
3631 S: Supported
3632 F: drivers/scsi/bfa/
3633
3634 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3635 M: Rasesh Mody <rmody@marvell.com>
3636 M: Sudarsana Kalluru <skalluru@marvell.com>
3637 M: GR-Linux-NIC-Dev@marvell.com
3638 L: netdev@vger.kernel.org
3639 S: Supported
3640 F: drivers/net/ethernet/brocade/bna/
3641
3642 BSG (block layer generic sg v4 driver)
3643 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3644 L: linux-scsi@vger.kernel.org
3645 S: Supported
3646 F: block/bsg.c
3647 F: include/linux/bsg.h
3648 F: include/uapi/linux/bsg.h
3649
3650 BT87X AUDIO DRIVER
3651 M: Clemens Ladisch <clemens@ladisch.de>
3652 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3653 S: Maintained
3654 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3655 F: Documentation/sound/cards/bt87x.rst
3656 F: sound/pci/bt87x.c
3657
3658 BT8XXGPIO DRIVER
3659 M: Michael Buesch <m@bues.ch>
3660 S: Maintained
3661 W: http://bu3sch.de/btgpio.php
3662 F: drivers/gpio/gpio-bt8xx.c
3663
3664 BTRFS FILE SYSTEM
3665 M: Chris Mason <clm@fb.com>
3666 M: Josef Bacik <josef@toxicpanda.com>
3667 M: David Sterba <dsterba@suse.com>
3668 L: linux-btrfs@vger.kernel.org
3669 S: Maintained
3670 W: http://btrfs.wiki.kernel.org/
3671 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
3672 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3673 F: Documentation/filesystems/btrfs.rst
3674 F: fs/btrfs/
3675 F: include/linux/btrfs*
3676 F: include/uapi/linux/btrfs*
3677
3678 BTTV VIDEO4LINUX DRIVER
3679 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3680 L: linux-media@vger.kernel.org
3681 S: Odd fixes
3682 W: https://linuxtv.org
3683 T: git git://linuxtv.org/media_tree.git
3684 F: Documentation/media/v4l-drivers/bttv*
3685 F: drivers/media/pci/bt8xx/bttv*
3686
3687 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3688 M: Chanwoo Choi <cw00.choi@samsung.com>
3689 L: linux-pm@vger.kernel.org
3690 L: linux-samsung-soc@vger.kernel.org
3691 S: Maintained
3692 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3693 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3694 F: drivers/devfreq/exynos-bus.c
3695
3696 BUSLOGIC SCSI DRIVER
3697 M: Khalid Aziz <khalid@gonehiking.org>
3698 L: linux-scsi@vger.kernel.org
3699 S: Maintained
3700 F: drivers/scsi/BusLogic.*
3701 F: drivers/scsi/FlashPoint.*
3702
3703 C-MEDIA CMI8788 DRIVER
3704 M: Clemens Ladisch <clemens@ladisch.de>
3705 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3706 S: Maintained
3707 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3708 F: sound/pci/oxygen/
3709
3710 C-SKY ARCHITECTURE
3711 M: Guo Ren <guoren@kernel.org>
3712 L: linux-csky@vger.kernel.org
3713 S: Supported
3714 T: git https://github.com/c-sky/csky-linux.git
3715 F: Documentation/devicetree/bindings/csky/
3716 F: Documentation/devicetree/bindings/interrupt-controller/csky,*
3717 F: Documentation/devicetree/bindings/timer/csky,*
3718 F: arch/csky/
3719 F: drivers/clocksource/timer-gx6605s.c
3720 F: drivers/clocksource/timer-mp-csky.c
3721 F: drivers/irqchip/irq-csky-*
3722 N: csky
3723 K: csky
3724
3725 C6X ARCHITECTURE
3726 M: Mark Salter <msalter@redhat.com>
3727 M: Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3728 L: linux-c6x-dev@linux-c6x.org
3729 S: Maintained
3730 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
3731 F: arch/c6x/
3732
3733 CA8210 IEEE-802.15.4 RADIO DRIVER
3734 M: Harry Morris <h.morris@cascoda.com>
3735 L: linux-wpan@vger.kernel.org
3736 S: Maintained
3737 W: https://github.com/Cascoda/ca8210-linux.git
3738 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3739 F: drivers/net/ieee802154/ca8210.c
3740
3741 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3742 M: David Howells <dhowells@redhat.com>
3743 L: linux-cachefs@redhat.com (moderated for non-subscribers)
3744 S: Supported
3745 F: Documentation/filesystems/caching/cachefiles.rst
3746 F: fs/cachefiles/
3747
3748 CADENCE MIPI-CSI2 BRIDGES
3749 M: Maxime Ripard <mripard@kernel.org>
3750 L: linux-media@vger.kernel.org
3751 S: Maintained
3752 F: Documentation/devicetree/bindings/media/cdns,*.txt
3753 F: drivers/media/platform/cadence/cdns-csi2*
3754
3755 CADENCE NAND DRIVER
3756 M: Piotr Sroka <piotrs@cadence.com>
3757 L: linux-mtd@lists.infradead.org
3758 S: Maintained
3759 F: Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3760 F: drivers/mtd/nand/raw/cadence-nand-controller.c
3761
3762 CADET FM/AM RADIO RECEIVER DRIVER
3763 M: Hans Verkuil <hverkuil@xs4all.nl>
3764 L: linux-media@vger.kernel.org
3765 S: Maintained
3766 W: https://linuxtv.org
3767 T: git git://linuxtv.org/media_tree.git
3768 F: drivers/media/radio/radio-cadet*
3769
3770 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3771 M: Jonathan Corbet <corbet@lwn.net>
3772 L: linux-media@vger.kernel.org
3773 S: Maintained
3774 T: git git://linuxtv.org/media_tree.git
3775 F: Documentation/media/v4l-drivers/cafe_ccic*
3776 F: drivers/media/platform/marvell-ccic/
3777
3778 CAIF NETWORK LAYER
3779 L: netdev@vger.kernel.org
3780 S: Orphan
3781 F: Documentation/networking/caif/
3782 F: drivers/net/caif/
3783 F: include/net/caif/
3784 F: include/uapi/linux/caif/
3785 F: net/caif/
3786
3787 CAKE QDISC
3788 M: Toke Høiland-Jørgensen <toke@toke.dk>
3789 L: cake@lists.bufferbloat.net (moderated for non-subscribers)
3790 S: Maintained
3791 F: net/sched/sch_cake.c
3792
3793 CAN NETWORK DRIVERS
3794 M: Wolfgang Grandegger <wg@grandegger.com>
3795 M: Marc Kleine-Budde <mkl@pengutronix.de>
3796 L: linux-can@vger.kernel.org
3797 S: Maintained
3798 W: https://github.com/linux-can
3799 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3800 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3801 F: Documentation/devicetree/bindings/net/can/
3802 F: drivers/net/can/
3803 F: include/linux/can/dev.h
3804 F: include/linux/can/led.h
3805 F: include/linux/can/platform/
3806 F: include/linux/can/rx-offload.h
3807 F: include/uapi/linux/can/error.h
3808 F: include/uapi/linux/can/netlink.h
3809 F: include/uapi/linux/can/vxcan.h
3810
3811 CAN NETWORK LAYER
3812 M: Oliver Hartkopp <socketcan@hartkopp.net>
3813 M: Marc Kleine-Budde <mkl@pengutronix.de>
3814 L: linux-can@vger.kernel.org
3815 S: Maintained
3816 W: https://github.com/linux-can
3817 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3818 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3819 F: Documentation/networking/can.rst
3820 F: include/linux/can/core.h
3821 F: include/linux/can/skb.h
3822 F: include/net/netns/can.h
3823 F: include/uapi/linux/can.h
3824 F: include/uapi/linux/can/bcm.h
3825 F: include/uapi/linux/can/gw.h
3826 F: include/uapi/linux/can/raw.h
3827 F: net/can/
3828
3829 CAN-J1939 NETWORK LAYER
3830 M: Robin van der Gracht <robin@protonic.nl>
3831 M: Oleksij Rempel <o.rempel@pengutronix.de>
3832 R: Pengutronix Kernel Team <kernel@pengutronix.de>
3833 L: linux-can@vger.kernel.org
3834 S: Maintained
3835 F: Documentation/networking/j1939.rst
3836 F: include/uapi/linux/can/j1939.h
3837 F: net/can/j1939/
3838
3839 CAPABILITIES
3840 M: Serge Hallyn <serge@hallyn.com>
3841 L: linux-security-module@vger.kernel.org
3842 S: Supported
3843 F: include/linux/capability.h
3844 F: include/uapi/linux/capability.h
3845 F: kernel/capability.c
3846 F: security/commoncap.c
3847
3848 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3849 M: Kevin Tsai <ktsai@capellamicro.com>
3850 S: Maintained
3851 F: drivers/iio/light/cm*
3852
3853 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3854 M: Christian Lamparter <chunkeey@googlemail.com>
3855 L: linux-wireless@vger.kernel.org
3856 S: Maintained
3857 W: https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3858 F: drivers/net/wireless/ath/carl9170/
3859
3860 CAVIUM I2C DRIVER
3861 M: Robert Richter <rrichter@marvell.com>
3862 S: Supported
3863 W: http://www.marvell.com
3864 F: drivers/i2c/busses/i2c-octeon*
3865 F: drivers/i2c/busses/i2c-thunderx*
3866
3867 CAVIUM LIQUIDIO NETWORK DRIVER
3868 M: Derek Chickles <dchickles@marvell.com>
3869 M: Satanand Burla <sburla@marvell.com>
3870 M: Felix Manlunas <fmanlunas@marvell.com>
3871 L: netdev@vger.kernel.org
3872 S: Supported
3873 W: http://www.marvell.com
3874 F: drivers/net/ethernet/cavium/liquidio/
3875
3876 CAVIUM MMC DRIVER
3877 M: Robert Richter <rrichter@marvell.com>
3878 S: Supported
3879 W: http://www.marvell.com
3880 F: drivers/mmc/host/cavium*
3881
3882 CAVIUM OCTEON-TX CRYPTO DRIVER
3883 M: George Cherian <gcherian@marvell.com>
3884 L: linux-crypto@vger.kernel.org
3885 S: Supported
3886 W: http://www.marvell.com
3887 F: drivers/crypto/cavium/cpt/
3888
3889 CAVIUM THUNDERX2 ARM64 SOC
3890 M: Robert Richter <rrichter@marvell.com>
3891 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3892 S: Maintained
3893 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3894 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
3895
3896 CC2520 IEEE-802.15.4 RADIO DRIVER
3897 M: Varka Bhadram <varkabhadram@gmail.com>
3898 L: linux-wpan@vger.kernel.org
3899 S: Maintained
3900 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3901 F: drivers/net/ieee802154/cc2520.c
3902 F: include/linux/spi/cc2520.h
3903
3904 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3905 M: Gilad Ben-Yossef <gilad@benyossef.com>
3906 L: linux-crypto@vger.kernel.org
3907 S: Supported
3908 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3909 F: drivers/crypto/ccree/
3910
3911 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3912 M: Hadar Gat <hadar.gat@arm.com>
3913 L: linux-crypto@vger.kernel.org
3914 S: Supported
3915 F: drivers/char/hw_random/cctrng.c
3916 F: drivers/char/hw_random/cctrng.h
3917 F: Documentation/devicetree/bindings/rng/arm-cctrng.txt
3918 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3919
3920 CEC FRAMEWORK
3921 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
3922 L: linux-media@vger.kernel.org
3923 S: Supported
3924 W: http://linuxtv.org
3925 T: git git://linuxtv.org/media_tree.git
3926 F: Documentation/ABI/testing/debugfs-cec-error-inj
3927 F: Documentation/devicetree/bindings/media/cec.txt
3928 F: Documentation/media/kapi/cec-core.rst
3929 F: Documentation/media/uapi/cec
3930 F: drivers/media/cec/
3931 F: drivers/media/rc/keymaps/rc-cec.c
3932 F: include/media/cec-notifier.h
3933 F: include/media/cec.h
3934 F: include/uapi/linux/cec-funcs.h
3935 F: include/uapi/linux/cec.h
3936
3937 CEC GPIO DRIVER
3938 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
3939 L: linux-media@vger.kernel.org
3940 S: Supported
3941 W: http://linuxtv.org
3942 T: git git://linuxtv.org/media_tree.git
3943 F: Documentation/devicetree/bindings/media/cec-gpio.txt
3944 F: drivers/media/platform/cec-gpio/
3945
3946 CELL BROADBAND ENGINE ARCHITECTURE
3947 M: Arnd Bergmann <arnd@arndb.de>
3948 L: linuxppc-dev@lists.ozlabs.org
3949 S: Supported
3950 W: http://www.ibm.com/developerworks/power/cell/
3951 F: arch/powerpc/include/asm/cell*.h
3952 F: arch/powerpc/include/asm/spu*.h
3953 F: arch/powerpc/include/uapi/asm/spu*.h
3954 F: arch/powerpc/oprofile/*cell*
3955 F: arch/powerpc/platforms/cell/
3956
3957 CEPH COMMON CODE (LIBCEPH)
3958 M: Ilya Dryomov <idryomov@gmail.com>
3959 M: Jeff Layton <jlayton@kernel.org>
3960 L: ceph-devel@vger.kernel.org
3961 S: Supported
3962 W: http://ceph.com/
3963 T: git git://github.com/ceph/ceph-client.git
3964 F: include/linux/ceph/
3965 F: include/linux/crush/
3966 F: net/ceph/
3967
3968 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3969 M: Jeff Layton <jlayton@kernel.org>
3970 M: Ilya Dryomov <idryomov@gmail.com>
3971 L: ceph-devel@vger.kernel.org
3972 S: Supported
3973 W: http://ceph.com/
3974 T: git git://github.com/ceph/ceph-client.git
3975 F: Documentation/filesystems/ceph.rst
3976 F: fs/ceph/
3977
3978 CERTIFICATE HANDLING
3979 M: David Howells <dhowells@redhat.com>
3980 M: David Woodhouse <dwmw2@infradead.org>
3981 L: keyrings@vger.kernel.org
3982 S: Maintained
3983 F: Documentation/admin-guide/module-signing.rst
3984 F: certs/
3985 F: scripts/extract-cert.c
3986 F: scripts/sign-file.c
3987
3988 CFAG12864B LCD DRIVER
3989 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3990 S: Maintained
3991 F: drivers/auxdisplay/cfag12864b.c
3992 F: include/linux/cfag12864b.h
3993
3994 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3995 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3996 S: Maintained
3997 F: drivers/auxdisplay/cfag12864bfb.c
3998 F: include/linux/cfag12864b.h
3999
4000 CHAR and MISC DRIVERS
4001 M: Arnd Bergmann <arnd@arndb.de>
4002 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4003 S: Supported
4004 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4005 F: drivers/char/
4006 F: drivers/misc/
4007 F: include/linux/miscdevice.h
4008
4009 CHECKPATCH
4010 M: Andy Whitcroft <apw@canonical.com>
4011 M: Joe Perches <joe@perches.com>
4012 S: Maintained
4013 F: scripts/checkpatch.pl
4014
4015 CHINESE DOCUMENTATION
4016 M: Harry Wei <harryxiyou@gmail.com>
4017 M: Alex Shi <alex.shi@linux.alibaba.com>
4018 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4019 S: Maintained
4020 F: Documentation/translations/zh_CN/
4021
4022 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4023 M: Peter Chen <Peter.Chen@nxp.com>
4024 L: linux-usb@vger.kernel.org
4025 S: Maintained
4026 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4027 F: drivers/usb/chipidea/
4028
4029 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4030 M: Hans de Goede <hdegoede@redhat.com>
4031 L: linux-input@vger.kernel.org
4032 S: Maintained
4033 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4034 F: drivers/input/touchscreen/chipone_icn8318.c
4035
4036 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4037 M: Hans de Goede <hdegoede@redhat.com>
4038 L: linux-input@vger.kernel.org
4039 S: Maintained
4040 F: drivers/input/touchscreen/chipone_icn8505.c
4041
4042 CHROME HARDWARE PLATFORM SUPPORT
4043 M: Benson Leung <bleung@chromium.org>
4044 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4045 S: Maintained
4046 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4047 F: drivers/platform/chrome/
4048
4049 CHROMEOS EC CODEC DRIVER
4050 M: Cheng-Yi Chiang <cychiang@chromium.org>
4051 R: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4052 R: Guenter Roeck <groeck@chromium.org>
4053 S: Maintained
4054 F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4055 F: sound/soc/codecs/cros_ec_codec.*
4056
4057 CHROMEOS EC SUBDRIVERS
4058 M: Benson Leung <bleung@chromium.org>
4059 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4060 R: Guenter Roeck <groeck@chromium.org>
4061 S: Maintained
4062 F: drivers/power/supply/cros_usbpd-charger.c
4063 N: cros_ec
4064 N: cros-ec
4065
4066 CIRRUS LOGIC AUDIO CODEC DRIVERS
4067 M: James Schulman <james.schulman@cirrus.com>
4068 M: David Rhodes <david.rhodes@cirrus.com>
4069 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4070 S: Maintained
4071 F: sound/soc/codecs/cs*
4072
4073 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4074 M: Hartley Sweeten <hsweeten@visionengravers.com>
4075 L: netdev@vger.kernel.org
4076 S: Maintained
4077 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
4078
4079 CIRRUS LOGIC LOCHNAGAR DRIVER
4080 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4081 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4082 L: patches@opensource.cirrus.com
4083 S: Supported
4084 F: Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
4085 F: Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
4086 F: Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
4087 F: Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
4088 F: Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
4089 F: Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
4090 F: Documentation/hwmon/lochnagar.rst
4091 F: drivers/clk/clk-lochnagar.c
4092 F: drivers/hwmon/lochnagar-hwmon.c
4093 F: drivers/mfd/lochnagar-i2c.c
4094 F: drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4095 F: drivers/regulator/lochnagar-regulator.c
4096 F: include/dt-bindings/clk/lochnagar.h
4097 F: include/dt-bindings/pinctrl/lochnagar.h
4098 F: include/linux/mfd/lochnagar*
4099 F: sound/soc/codecs/lochnagar-sc.c
4100
4101 CIRRUS LOGIC MADERA CODEC DRIVERS
4102 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4103 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4104 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4105 L: patches@opensource.cirrus.com
4106 S: Supported
4107 W: https://github.com/CirrusLogic/linux-drivers/wiki
4108 T: git https://github.com/CirrusLogic/linux-drivers.git
4109 F: Documentation/devicetree/bindings/mfd/madera.txt
4110 F: Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4111 F: Documentation/devicetree/bindings/sound/madera.txt
4112 F: drivers/gpio/gpio-madera*
4113 F: drivers/irqchip/irq-madera*
4114 F: drivers/mfd/cs47l*
4115 F: drivers/mfd/madera*
4116 F: drivers/pinctrl/cirrus/*
4117 F: include/dt-bindings/sound/madera*
4118 F: include/linux/irqchip/irq-madera*
4119 F: include/linux/mfd/madera/*
4120 F: include/sound/madera*
4121 F: sound/soc/codecs/cs47l*
4122 F: sound/soc/codecs/madera*
4123
4124 CISCO FCOE HBA DRIVER
4125 M: Satish Kharat <satishkh@cisco.com>
4126 M: Sesidhar Baddela <sebaddel@cisco.com>
4127 M: Karan Tilak Kumar <kartilak@cisco.com>
4128 L: linux-scsi@vger.kernel.org
4129 S: Supported
4130 F: drivers/scsi/fnic/
4131
4132 CISCO SCSI HBA DRIVER
4133 M: Karan Tilak Kumar <kartilak@cisco.com>
4134 M: Sesidhar Baddela <sebaddel@cisco.com>
4135 L: linux-scsi@vger.kernel.org
4136 S: Supported
4137 F: drivers/scsi/snic/
4138
4139 CISCO VIC ETHERNET NIC DRIVER
4140 M: Christian Benvenuti <benve@cisco.com>
4141 M: Govindarajulu Varadarajan <_govind@gmx.com>
4142 S: Supported
4143 F: drivers/net/ethernet/cisco/enic/
4144
4145 CISCO VIC LOW LATENCY NIC DRIVER
4146 M: Christian Benvenuti <benve@cisco.com>
4147 M: Nelson Escobar <neescoba@cisco.com>
4148 M: Parvi Kaustubhi <pkaustub@cisco.com>
4149 S: Supported
4150 F: drivers/infiniband/hw/usnic/
4151
4152 CLANG-FORMAT FILE
4153 M: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4154 S: Maintained
4155 F: .clang-format
4156
4157 CLANG/LLVM BUILD SUPPORT
4158 L: clang-built-linux@googlegroups.com
4159 S: Supported
4160 W: https://clangbuiltlinux.github.io/
4161 B: https://github.com/ClangBuiltLinux/linux/issues
4162 C: irc://chat.freenode.net/clangbuiltlinux
4163 F: Documentation/kbuild/llvm.rst
4164 K: \b(?i:clang|llvm)\b
4165
4166 CLEANCACHE API
4167 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4168 L: linux-kernel@vger.kernel.org
4169 S: Maintained
4170 F: include/linux/cleancache.h
4171 F: mm/cleancache.c
4172
4173 CLK API
4174 M: Russell King <linux@armlinux.org.uk>
4175 L: linux-clk@vger.kernel.org
4176 S: Maintained
4177 F: include/linux/clk.h
4178
4179 CLOCKSOURCE, CLOCKEVENT DRIVERS
4180 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4181 M: Thomas Gleixner <tglx@linutronix.de>
4182 L: linux-kernel@vger.kernel.org
4183 S: Supported
4184 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4185 F: Documentation/devicetree/bindings/timer/
4186 F: drivers/clocksource/
4187
4188 CMPC ACPI DRIVER
4189 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4190 M: Daniel Oliveira Nascimento <don@syst.com.br>
4191 L: platform-driver-x86@vger.kernel.org
4192 S: Supported
4193 F: drivers/platform/x86/classmate-laptop.c
4194
4195 COBALT MEDIA DRIVER
4196 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4197 L: linux-media@vger.kernel.org
4198 S: Supported
4199 W: https://linuxtv.org
4200 T: git git://linuxtv.org/media_tree.git
4201 F: drivers/media/pci/cobalt/
4202
4203 COCCINELLE/Semantic Patches (SmPL)
4204 M: Julia Lawall <Julia.Lawall@lip6.fr>
4205 M: Gilles Muller <Gilles.Muller@lip6.fr>
4206 M: Nicolas Palix <nicolas.palix@imag.fr>
4207 M: Michal Marek <michal.lkml@markovi.net>
4208 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
4209 S: Supported
4210 W: http://coccinelle.lip6.fr/
4211 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4212 F: Documentation/dev-tools/coccinelle.rst
4213 F: scripts/coccicheck
4214 F: scripts/coccinelle/
4215
4216 CODA FILE SYSTEM
4217 M: Jan Harkes <jaharkes@cs.cmu.edu>
4218 M: coda@cs.cmu.edu
4219 L: codalist@coda.cs.cmu.edu
4220 S: Maintained
4221 W: http://www.coda.cs.cmu.edu/
4222 F: Documentation/filesystems/coda.rst
4223 F: fs/coda/
4224 F: include/linux/coda*.h
4225 F: include/uapi/linux/coda*.h
4226
4227 CODA V4L2 MEM2MEM DRIVER
4228 M: Philipp Zabel <p.zabel@pengutronix.de>
4229 L: linux-media@vger.kernel.org
4230 S: Maintained
4231 F: Documentation/devicetree/bindings/media/coda.txt
4232 F: drivers/media/platform/coda/
4233
4234 CODE OF CONDUCT
4235 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4236 S: Supported
4237 F: Documentation/process/code-of-conduct-interpretation.rst
4238 F: Documentation/process/code-of-conduct.rst
4239
4240 COMMON CLK FRAMEWORK
4241 M: Michael Turquette <mturquette@baylibre.com>
4242 M: Stephen Boyd <sboyd@kernel.org>
4243 L: linux-clk@vger.kernel.org
4244 S: Maintained
4245 Q: http://patchwork.kernel.org/project/linux-clk/list/
4246 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4247 F: Documentation/devicetree/bindings/clock/
4248 F: drivers/clk/
4249 F: include/linux/clk-pr*
4250 F: include/linux/clk/
4251 F: include/linux/of_clk.h
4252 X: drivers/clk/clkdev.c
4253
4254 COMMON INTERNET FILE SYSTEM (CIFS)
4255 M: Steve French <sfrench@samba.org>
4256 L: linux-cifs@vger.kernel.org
4257 L: samba-technical@lists.samba.org (moderated for non-subscribers)
4258 S: Supported
4259 W: http://linux-cifs.samba.org/
4260 T: git git://git.samba.org/sfrench/cifs-2.6.git
4261 F: Documentation/admin-guide/cifs/
4262 F: fs/cifs/
4263
4264 COMPACTPCI HOTPLUG CORE
4265 M: Scott Murray <scott@spiteful.org>
4266 L: linux-pci@vger.kernel.org
4267 S: Maintained
4268 F: drivers/pci/hotplug/cpci_hotplug*
4269
4270 COMPACTPCI HOTPLUG GENERIC DRIVER
4271 M: Scott Murray <scott@spiteful.org>
4272 L: linux-pci@vger.kernel.org
4273 S: Maintained
4274 F: drivers/pci/hotplug/cpcihp_generic.c
4275
4276 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4277 M: Scott Murray <scott@spiteful.org>
4278 L: linux-pci@vger.kernel.org
4279 S: Maintained
4280 F: drivers/pci/hotplug/cpcihp_zt5550.*
4281
4282 COMPAL LAPTOP SUPPORT
4283 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4284 L: platform-driver-x86@vger.kernel.org
4285 S: Maintained
4286 F: drivers/platform/x86/compal-laptop.c
4287
4288 COMPILER ATTRIBUTES
4289 M: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4290 S: Maintained
4291 F: include/linux/compiler_attributes.h
4292
4293 CONEXANT ACCESSRUNNER USB DRIVER
4294 L: accessrunner-general@lists.sourceforge.net
4295 S: Orphan
4296 W: http://accessrunner.sourceforge.net/
4297 F: drivers/usb/atm/cxacru.c
4298
4299 CONFIGFS
4300 M: Joel Becker <jlbec@evilplan.org>
4301 M: Christoph Hellwig <hch@lst.de>
4302 S: Supported
4303 T: git git://git.infradead.org/users/hch/configfs.git
4304 F: fs/configfs/
4305 F: include/linux/configfs.h
4306
4307 CONNECTOR
4308 M: Evgeniy Polyakov <zbr@ioremap.net>
4309 L: netdev@vger.kernel.org
4310 S: Maintained
4311 F: drivers/connector/
4312
4313 CONTROL GROUP (CGROUP)
4314 M: Tejun Heo <tj@kernel.org>
4315 M: Li Zefan <lizefan@huawei.com>
4316 M: Johannes Weiner <hannes@cmpxchg.org>
4317 L: cgroups@vger.kernel.org
4318 S: Maintained
4319 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4320 F: Documentation/admin-guide/cgroup-v1/
4321 F: Documentation/admin-guide/cgroup-v2.rst
4322 F: include/linux/cgroup*
4323 F: kernel/cgroup/
4324
4325 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4326 M: Tejun Heo <tj@kernel.org>
4327 M: Jens Axboe <axboe@kernel.dk>
4328 L: cgroups@vger.kernel.org
4329 L: linux-block@vger.kernel.org
4330 T: git git://git.kernel.dk/linux-block
4331 F: Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4332 F: block/bfq-cgroup.c
4333 F: block/blk-cgroup.c
4334 F: block/blk-iolatency.c
4335 F: block/blk-throttle.c
4336 F: include/linux/blk-cgroup.h
4337
4338 CONTROL GROUP - CPUSET
4339 M: Li Zefan <lizefan@huawei.com>
4340 L: cgroups@vger.kernel.org
4341 S: Maintained
4342 W: http://www.bullopensource.org/cpuset/
4343 W: http://oss.sgi.com/projects/cpusets/
4344 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4345 F: Documentation/admin-guide/cgroup-v1/cpusets.rst
4346 F: include/linux/cpuset.h
4347 F: kernel/cgroup/cpuset.c
4348
4349 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4350 M: Johannes Weiner <hannes@cmpxchg.org>
4351 M: Michal Hocko <mhocko@kernel.org>
4352 M: Vladimir Davydov <vdavydov.dev@gmail.com>
4353 L: cgroups@vger.kernel.org
4354 L: linux-mm@kvack.org
4355 S: Maintained
4356 F: mm/memcontrol.c
4357 F: mm/swap_cgroup.c
4358
4359 CORETEMP HARDWARE MONITORING DRIVER
4360 M: Fenghua Yu <fenghua.yu@intel.com>
4361 L: linux-hwmon@vger.kernel.org
4362 S: Maintained
4363 F: Documentation/hwmon/coretemp.rst
4364 F: drivers/hwmon/coretemp.c
4365
4366 COSA/SRP SYNC SERIAL DRIVER
4367 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4368 S: Maintained
4369 W: http://www.fi.muni.cz/~kas/cosa/
4370 F: drivers/net/wan/cosa*
4371
4372 COUNTER SUBSYSTEM
4373 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4374 L: linux-iio@vger.kernel.org
4375 S: Maintained
4376 F: Documentation/ABI/testing/sysfs-bus-counter*
4377 F: Documentation/driver-api/generic-counter.rst
4378 F: drivers/counter/
4379 F: include/linux/counter.h
4380 F: include/linux/counter_enum.h
4381
4382 CPMAC ETHERNET DRIVER
4383 M: Florian Fainelli <f.fainelli@gmail.com>
4384 L: netdev@vger.kernel.org
4385 S: Maintained
4386 F: drivers/net/ethernet/ti/cpmac.c
4387
4388 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4389 M: Viresh Kumar <viresh.kumar@linaro.org>
4390 M: Sudeep Holla <sudeep.holla@arm.com>
4391 L: linux-pm@vger.kernel.org
4392 S: Maintained
4393 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4394 F: drivers/cpufreq/vexpress-spc-cpufreq.c
4395
4396 CPU FREQUENCY SCALING FRAMEWORK
4397 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4398 M: Viresh Kumar <viresh.kumar@linaro.org>
4399 L: linux-pm@vger.kernel.org
4400 S: Maintained
4401 B: https://bugzilla.kernel.org
4402 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4403 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4404 F: Documentation/admin-guide/pm/cpufreq.rst
4405 F: Documentation/admin-guide/pm/intel_pstate.rst
4406 F: Documentation/cpu-freq/
4407 F: Documentation/devicetree/bindings/cpufreq/
4408 F: drivers/cpufreq/
4409 F: include/linux/cpufreq.h
4410 F: include/linux/sched/cpufreq.h
4411 F: kernel/sched/cpufreq*.c
4412 F: tools/testing/selftests/cpufreq/
4413
4414 CPU IDLE TIME MANAGEMENT FRAMEWORK
4415 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4416 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4417 L: linux-pm@vger.kernel.org
4418 S: Maintained
4419 B: https://bugzilla.kernel.org
4420 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4421 F: Documentation/admin-guide/pm/cpuidle.rst
4422 F: Documentation/driver-api/pm/cpuidle.rst
4423 F: drivers/cpuidle/*
4424 F: include/linux/cpuidle.h
4425
4426 CPU POWER MONITORING SUBSYSTEM
4427 M: Thomas Renninger <trenn@suse.com>
4428 M: Shuah Khan <shuah@kernel.org>
4429 M: Shuah Khan <skhan@linuxfoundation.org>
4430 L: linux-pm@vger.kernel.org
4431 S: Maintained
4432 F: tools/power/cpupower/
4433
4434 CPUID/MSR DRIVER
4435 M: "H. Peter Anvin" <hpa@zytor.com>
4436 S: Maintained
4437 F: arch/x86/kernel/cpuid.c
4438 F: arch/x86/kernel/msr.c
4439
4440 CPUIDLE DRIVER - ARM BIG LITTLE
4441 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4442 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4443 L: linux-pm@vger.kernel.org
4444 L: linux-arm-kernel@lists.infradead.org
4445 S: Maintained
4446 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4447 F: drivers/cpuidle/cpuidle-big_little.c
4448
4449 CPUIDLE DRIVER - ARM EXYNOS
4450 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4451 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4452 M: Kukjin Kim <kgene@kernel.org>
4453 L: linux-pm@vger.kernel.org
4454 L: linux-samsung-soc@vger.kernel.org
4455 S: Supported
4456 F: arch/arm/mach-exynos/pm.c
4457 F: drivers/cpuidle/cpuidle-exynos.c
4458
4459 CPUIDLE DRIVER - ARM PSCI
4460 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4461 M: Sudeep Holla <sudeep.holla@arm.com>
4462 L: linux-pm@vger.kernel.org
4463 L: linux-arm-kernel@lists.infradead.org
4464 S: Supported
4465 F: drivers/cpuidle/cpuidle-psci.c
4466
4467 CRAMFS FILESYSTEM
4468 M: Nicolas Pitre <nico@fluxnic.net>
4469 S: Maintained
4470 F: Documentation/filesystems/cramfs.rst
4471 F: fs/cramfs/
4472
4473 CREATIVE SB0540
4474 M: Bastien Nocera <hadess@hadess.net>
4475 L: linux-input@vger.kernel.org
4476 S: Maintained
4477 F: drivers/hid/hid-creative-sb0540.c
4478
4479 CRYPTO API
4480 M: Herbert Xu <herbert@gondor.apana.org.au>
4481 M: "David S. Miller" <davem@davemloft.net>
4482 L: linux-crypto@vger.kernel.org
4483 S: Maintained
4484 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4485 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4486 F: Documentation/crypto/
4487 F: Documentation/devicetree/bindings/crypto/
4488 F: arch/*/crypto/
4489 F: crypto/
4490 F: drivers/crypto/
4491 F: include/crypto/
4492 F: include/linux/crypto*
4493 F: lib/crypto/
4494
4495 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4496 M: Neil Horman <nhorman@tuxdriver.com>
4497 L: linux-crypto@vger.kernel.org
4498 S: Maintained
4499 F: crypto/ansi_cprng.c
4500 F: crypto/rng.c
4501
4502 CS3308 MEDIA DRIVER
4503 M: Hans Verkuil <hverkuil@xs4all.nl>
4504 L: linux-media@vger.kernel.org
4505 S: Odd Fixes
4506 W: http://linuxtv.org
4507 T: git git://linuxtv.org/media_tree.git
4508 F: drivers/media/i2c/cs3308.c
4509
4510 CS5535 Audio ALSA driver
4511 M: Jaya Kumar <jayakumar.alsa@gmail.com>
4512 S: Maintained
4513 F: sound/pci/cs5535audio/
4514
4515 CSI DRIVERS FOR ALLWINNER V3s
4516 M: Yong Deng <yong.deng@magewell.com>
4517 L: linux-media@vger.kernel.org
4518 S: Maintained
4519 T: git git://linuxtv.org/media_tree.git
4520 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4521 F: drivers/media/platform/sunxi/sun6i-csi/
4522
4523 CW1200 WLAN driver
4524 M: Solomon Peachy <pizza@shaftnet.org>
4525 S: Maintained
4526 F: drivers/net/wireless/st/cw1200/
4527
4528 CX18 VIDEO4LINUX DRIVER
4529 M: Andy Walls <awalls@md.metrocast.net>
4530 L: linux-media@vger.kernel.org
4531 S: Maintained
4532 W: https://linuxtv.org
4533 T: git git://linuxtv.org/media_tree.git
4534 F: drivers/media/pci/cx18/
4535 F: include/uapi/linux/ivtv*
4536
4537 CX2341X MPEG ENCODER HELPER MODULE
4538 M: Hans Verkuil <hverkuil@xs4all.nl>
4539 L: linux-media@vger.kernel.org
4540 S: Maintained
4541 W: https://linuxtv.org
4542 T: git git://linuxtv.org/media_tree.git
4543 F: drivers/media/common/cx2341x*
4544 F: include/media/drv-intf/cx2341x.h
4545
4546 CX24120 MEDIA DRIVER
4547 M: Jemma Denson <jdenson@gmail.com>
4548 M: Patrick Boettcher <patrick.boettcher@posteo.de>
4549 L: linux-media@vger.kernel.org
4550 S: Maintained
4551 W: https://linuxtv.org
4552 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4553 F: drivers/media/dvb-frontends/cx24120*
4554
4555 CX88 VIDEO4LINUX DRIVER
4556 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4557 L: linux-media@vger.kernel.org
4558 S: Odd fixes
4559 W: https://linuxtv.org
4560 T: git git://linuxtv.org/media_tree.git
4561 F: Documentation/media/v4l-drivers/cx88*
4562 F: drivers/media/pci/cx88/
4563
4564 CXD2820R MEDIA DRIVER
4565 M: Antti Palosaari <crope@iki.fi>
4566 L: linux-media@vger.kernel.org
4567 S: Maintained
4568 W: https://linuxtv.org
4569 W: http://palosaari.fi/linux/
4570 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4571 T: git git://linuxtv.org/anttip/media_tree.git
4572 F: drivers/media/dvb-frontends/cxd2820r*
4573
4574 CXGB3 ETHERNET DRIVER (CXGB3)
4575 M: Vishal Kulkarni <vishal@chelsio.com>
4576 L: netdev@vger.kernel.org
4577 S: Supported
4578 W: http://www.chelsio.com
4579 F: drivers/net/ethernet/chelsio/cxgb3/
4580
4581 CXGB3 ISCSI DRIVER (CXGB3I)
4582 M: Karen Xie <kxie@chelsio.com>
4583 L: linux-scsi@vger.kernel.org
4584 S: Supported
4585 W: http://www.chelsio.com
4586 F: drivers/scsi/cxgbi/cxgb3i
4587
4588 CXGB4 CRYPTO DRIVER (chcr)
4589 M: Ayush Sawal <ayush.sawal@chelsio.com>
4590 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4591 M: Rohit Maheshwari <rohitm@chelsio.com>
4592 L: linux-crypto@vger.kernel.org
4593 S: Supported
4594 W: http://www.chelsio.com
4595 F: drivers/crypto/chelsio
4596
4597 CXGB4 ETHERNET DRIVER (CXGB4)
4598 M: Vishal Kulkarni <vishal@chelsio.com>
4599 L: netdev@vger.kernel.org
4600 S: Supported
4601 W: http://www.chelsio.com
4602 F: drivers/net/ethernet/chelsio/cxgb4/
4603
4604 CXGB4 ISCSI DRIVER (CXGB4I)
4605 M: Karen Xie <kxie@chelsio.com>
4606 L: linux-scsi@vger.kernel.org
4607 S: Supported
4608 W: http://www.chelsio.com
4609 F: drivers/scsi/cxgbi/cxgb4i
4610
4611 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4612 M: Potnuri Bharat Teja <bharat@chelsio.com>
4613 L: linux-rdma@vger.kernel.org
4614 S: Supported
4615 W: http://www.openfabrics.org
4616 F: drivers/infiniband/hw/cxgb4/
4617 F: include/uapi/rdma/cxgb4-abi.h
4618
4619 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4620 M: Vishal Kulkarni <vishal@gmail.com>
4621 L: netdev@vger.kernel.org
4622 S: Supported
4623 W: http://www.chelsio.com
4624 F: drivers/net/ethernet/chelsio/cxgb4vf/
4625
4626 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4627 M: Frederic Barrat <fbarrat@linux.ibm.com>
4628 M: Andrew Donnellan <ajd@linux.ibm.com>
4629 L: linuxppc-dev@lists.ozlabs.org
4630 S: Supported
4631 F: Documentation/ABI/testing/sysfs-class-cxl
4632 F: Documentation/powerpc/cxl.rst
4633 F: arch/powerpc/platforms/powernv/pci-cxl.c
4634 F: drivers/misc/cxl/
4635 F: include/misc/cxl*
4636 F: include/uapi/misc/cxl.h
4637
4638 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4639 M: Manoj N. Kumar <manoj@linux.ibm.com>
4640 M: Matthew R. Ochs <mrochs@linux.ibm.com>
4641 M: Uma Krishnan <ukrishn@linux.ibm.com>
4642 L: linux-scsi@vger.kernel.org
4643 S: Supported
4644 F: Documentation/powerpc/cxlflash.rst
4645 F: drivers/scsi/cxlflash/
4646 F: include/uapi/scsi/cxlflash_ioctl.h
4647
4648 CYBERPRO FB DRIVER
4649 M: Russell King <linux@armlinux.org.uk>
4650 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4651 S: Maintained
4652 W: http://www.armlinux.org.uk/
4653 F: drivers/video/fbdev/cyber2000fb.*
4654
4655 CYCLADES ASYNC MUX DRIVER
4656 S: Orphan
4657 W: http://www.cyclades.com/
4658 F: drivers/tty/cyclades.c
4659 F: include/linux/cyclades.h
4660 F: include/uapi/linux/cyclades.h
4661
4662 CYCLADES PC300 DRIVER
4663 S: Orphan
4664 W: http://www.cyclades.com/
4665 F: drivers/net/wan/pc300*
4666
4667 CYPRESS_FIRMWARE MEDIA DRIVER
4668 M: Antti Palosaari <crope@iki.fi>
4669 L: linux-media@vger.kernel.org
4670 S: Maintained
4671 W: https://linuxtv.org
4672 W: http://palosaari.fi/linux/
4673 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4674 T: git git://linuxtv.org/anttip/media_tree.git
4675 F: drivers/media/common/cypress_firmware*
4676
4677 CYTTSP TOUCHSCREEN DRIVER
4678 M: Ferruh Yigit <fery@cypress.com>
4679 L: linux-input@vger.kernel.org
4680 S: Supported
4681 F: drivers/input/touchscreen/cyttsp*
4682 F: include/linux/input/cyttsp.h
4683
4684 D-LINK DIR-685 TOUCHKEYS DRIVER
4685 M: Linus Walleij <linus.walleij@linaro.org>
4686 L: linux-input@vger.kernel.org
4687 S: Supported
4688 F: drivers/input/keyboard/dlink-dir685-touchkeys.c
4689
4690 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4691 M: Joshua Kinard <kumba@gentoo.org>
4692 S: Maintained
4693 F: drivers/rtc/rtc-ds1685.c
4694 F: include/linux/rtc/ds1685.h
4695
4696 DAMA SLAVE for AX.25
4697 M: Joerg Reuter <jreuter@yaina.de>
4698 L: linux-hams@vger.kernel.org
4699 S: Maintained
4700 W: http://yaina.de/jreuter/
4701 W: http://www.qsl.net/dl1bke/
4702 F: net/ax25/af_ax25.c
4703 F: net/ax25/ax25_dev.c
4704 F: net/ax25/ax25_ds_*
4705 F: net/ax25/ax25_in.c
4706 F: net/ax25/ax25_out.c
4707 F: net/ax25/ax25_timer.c
4708 F: net/ax25/sysctl_net_ax25.c
4709
4710 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4711 L: netdev@vger.kernel.org
4712 S: Orphan
4713 F: Documentation/networking/device_drivers/dec/dmfe.txt
4714 F: drivers/net/ethernet/dec/tulip/dmfe.c
4715
4716 DC390/AM53C974 SCSI driver
4717 M: Hannes Reinecke <hare@suse.com>
4718 L: linux-scsi@vger.kernel.org
4719 S: Maintained
4720 F: drivers/scsi/am53c974.c
4721
4722 DC395x SCSI driver
4723 M: Oliver Neukum <oliver@neukum.org>
4724 M: Ali Akcaagac <aliakc@web.de>
4725 M: Jamie Lenehan <lenehan@twibble.org>
4726 L: dc395x@twibble.org
4727 S: Maintained
4728 W: http://twibble.org/dist/dc395x/
4729 W: http://lists.twibble.org/mailman/listinfo/dc395x/
4730 F: Documentation/scsi/dc395x.rst
4731 F: drivers/scsi/dc395x.*
4732
4733 DCCP PROTOCOL
4734 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
4735 L: dccp@vger.kernel.org
4736 S: Maintained
4737 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4738 F: include/linux/dccp.h
4739 F: include/linux/tfrc.h
4740 F: include/uapi/linux/dccp.h
4741 F: net/dccp/
4742
4743 DECnet NETWORK LAYER
4744 L: linux-decnet-user@lists.sourceforge.net
4745 S: Orphan
4746 W: http://linux-decnet.sourceforge.net
4747 F: Documentation/networking/decnet.txt
4748 F: net/decnet/
4749
4750 DECSTATION PLATFORM SUPPORT
4751 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4752 L: linux-mips@vger.kernel.org
4753 S: Maintained
4754 W: http://www.linux-mips.org/wiki/DECstation
4755 F: arch/mips/dec/
4756 F: arch/mips/include/asm/dec/
4757 F: arch/mips/include/asm/mach-dec/
4758
4759 DEFXX FDDI NETWORK DRIVER
4760 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4761 S: Maintained
4762 F: drivers/net/fddi/defxx.*
4763
4764 DEFZA FDDI NETWORK DRIVER
4765 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4766 S: Maintained
4767 F: drivers/net/fddi/defza.*
4768
4769 DEINTERLACE DRIVERS FOR ALLWINNER H3
4770 M: Jernej Skrabec <jernej.skrabec@siol.net>
4771 L: linux-media@vger.kernel.org
4772 S: Maintained
4773 T: git git://linuxtv.org/media_tree.git
4774 F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4775 F: drivers/media/platform/sunxi/sun8i-di/
4776
4777 DELL LAPTOP DRIVER
4778 M: Matthew Garrett <mjg59@srcf.ucam.org>
4779 M: Pali Rohár <pali@kernel.org>
4780 L: platform-driver-x86@vger.kernel.org
4781 S: Maintained
4782 F: drivers/platform/x86/dell-laptop.c
4783
4784 DELL LAPTOP FREEFALL DRIVER
4785 M: Pali Rohár <pali@kernel.org>
4786 S: Maintained
4787 F: drivers/platform/x86/dell-smo8800.c
4788
4789 DELL LAPTOP RBTN DRIVER
4790 M: Pali Rohár <pali@kernel.org>
4791 S: Maintained
4792 F: drivers/platform/x86/dell-rbtn.*
4793
4794 DELL LAPTOP SMM DRIVER
4795 M: Pali Rohár <pali@kernel.org>
4796 S: Maintained
4797 F: drivers/hwmon/dell-smm-hwmon.c
4798 F: include/uapi/linux/i8k.h
4799
4800 DELL REMOTE BIOS UPDATE DRIVER
4801 M: Stuart Hayes <stuart.w.hayes@gmail.com>
4802 L: platform-driver-x86@vger.kernel.org
4803 S: Maintained
4804 F: drivers/platform/x86/dell_rbu.c
4805
4806 DELL SMBIOS DRIVER
4807 M: Pali Rohár <pali@kernel.org>
4808 M: Mario Limonciello <mario.limonciello@dell.com>
4809 L: platform-driver-x86@vger.kernel.org
4810 S: Maintained
4811 F: drivers/platform/x86/dell-smbios.*
4812
4813 DELL SMBIOS SMM DRIVER
4814 M: Mario Limonciello <mario.limonciello@dell.com>
4815 L: platform-driver-x86@vger.kernel.org
4816 S: Maintained
4817 F: drivers/platform/x86/dell-smbios-smm.c
4818
4819 DELL SMBIOS WMI DRIVER
4820 M: Mario Limonciello <mario.limonciello@dell.com>
4821 L: platform-driver-x86@vger.kernel.org
4822 S: Maintained
4823 F: drivers/platform/x86/dell-smbios-wmi.c
4824 F: tools/wmi/dell-smbios-example.c
4825
4826 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4827 M: Stuart Hayes <stuart.w.hayes@gmail.com>
4828 L: platform-driver-x86@vger.kernel.org
4829 S: Maintained
4830 F: Documentation/driver-api/dcdbas.rst
4831 F: drivers/platform/x86/dcdbas.*
4832
4833 DELL WMI DESCRIPTOR DRIVER
4834 M: Mario Limonciello <mario.limonciello@dell.com>
4835 S: Maintained
4836 F: drivers/platform/x86/dell-wmi-descriptor.c
4837
4838 DELL WMI NOTIFICATIONS DRIVER
4839 M: Matthew Garrett <mjg59@srcf.ucam.org>
4840 M: Pali Rohár <pali@kernel.org>
4841 S: Maintained
4842 F: drivers/platform/x86/dell-wmi.c
4843
4844 DELTA ST MEDIA DRIVER
4845 M: Hugues Fruchet <hugues.fruchet@st.com>
4846 L: linux-media@vger.kernel.org
4847 S: Supported
4848 W: https://linuxtv.org
4849 T: git git://linuxtv.org/media_tree.git
4850 F: drivers/media/platform/sti/delta
4851
4852 DENALI NAND DRIVER
4853 M: Masahiro Yamada <yamada.masahiro@socionext.com>
4854 L: linux-mtd@lists.infradead.org
4855 S: Supported
4856 F: drivers/mtd/nand/raw/denali*
4857
4858 DESIGNWARE EDMA CORE IP DRIVER
4859 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4860 L: dmaengine@vger.kernel.org
4861 S: Maintained
4862 F: drivers/dma/dw-edma/
4863 F: include/linux/dma/edma.h
4864
4865 DESIGNWARE USB2 DRD IP DRIVER
4866 M: Minas Harutyunyan <hminas@synopsys.com>
4867 L: linux-usb@vger.kernel.org
4868 S: Maintained
4869 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4870 F: drivers/usb/dwc2/
4871
4872 DESIGNWARE USB3 DRD IP DRIVER
4873 M: Felipe Balbi <balbi@kernel.org>
4874 L: linux-usb@vger.kernel.org
4875 S: Maintained
4876 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4877 F: drivers/usb/dwc3/
4878
4879 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4880 M: Andreas Klinger <ak@it-klinger.de>
4881 L: linux-iio@vger.kernel.org
4882 S: Maintained
4883 F: Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4884 F: drivers/iio/proximity/srf*.c
4885
4886 DEVICE COREDUMP (DEV_COREDUMP)
4887 M: Johannes Berg <johannes@sipsolutions.net>
4888 L: linux-kernel@vger.kernel.org
4889 S: Maintained
4890 F: drivers/base/devcoredump.c
4891 F: include/linux/devcoredump.h
4892
4893 DEVICE DIRECT ACCESS (DAX)
4894 M: Dan Williams <dan.j.williams@intel.com>
4895 M: Vishal Verma <vishal.l.verma@intel.com>
4896 M: Dave Jiang <dave.jiang@intel.com>
4897 L: linux-nvdimm@lists.01.org
4898 S: Supported
4899 F: drivers/dax/
4900
4901 DEVICE FREQUENCY (DEVFREQ)
4902 M: MyungJoo Ham <myungjoo.ham@samsung.com>
4903 M: Kyungmin Park <kyungmin.park@samsung.com>
4904 M: Chanwoo Choi <cw00.choi@samsung.com>
4905 L: linux-pm@vger.kernel.org
4906 S: Maintained
4907 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4908 F: Documentation/devicetree/bindings/devfreq/
4909 F: drivers/devfreq/
4910 F: include/linux/devfreq.h
4911 F: include/trace/events/devfreq.h
4912
4913 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4914 M: Chanwoo Choi <cw00.choi@samsung.com>
4915 L: linux-pm@vger.kernel.org
4916 S: Supported
4917 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4918 F: Documentation/devicetree/bindings/devfreq/event/
4919 F: drivers/devfreq/devfreq-event.c
4920 F: drivers/devfreq/event/
4921 F: include/dt-bindings/pmu/exynos_ppmu.h
4922 F: include/linux/devfreq-event.h
4923
4924 DEVICE NUMBER REGISTRY
4925 M: Torben Mathiasen <device@lanana.org>
4926 S: Maintained
4927 W: http://lanana.org/docs/device-list/index.html
4928
4929 DEVICE-MAPPER (LVM)
4930 M: Alasdair Kergon <agk@redhat.com>
4931 M: Mike Snitzer <snitzer@redhat.com>
4932 M: dm-devel@redhat.com
4933 L: dm-devel@redhat.com
4934 S: Maintained
4935 W: http://sources.redhat.com/dm
4936 Q: http://patchwork.kernel.org/project/dm-devel/list/
4937 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4938 T: quilt http://people.redhat.com/agk/patches/linux/editing/
4939 F: Documentation/admin-guide/device-mapper/
4940 F: drivers/md/Kconfig
4941 F: drivers/md/Makefile
4942 F: drivers/md/dm*
4943 F: drivers/md/persistent-data/
4944 F: include/linux/device-mapper.h
4945 F: include/linux/dm-*.h
4946 F: include/uapi/linux/dm-*.h
4947
4948 DEVLINK
4949 M: Jiri Pirko <jiri@mellanox.com>
4950 L: netdev@vger.kernel.org
4951 S: Supported
4952 F: Documentation/networking/devlink
4953 F: include/net/devlink.h
4954 F: include/uapi/linux/devlink.h
4955 F: net/core/devlink.c
4956
4957 DIALOG SEMICONDUCTOR DRIVERS
4958 M: Support Opensource <support.opensource@diasemi.com>
4959 S: Supported
4960 W: http://www.dialog-semiconductor.com/products
4961 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
4962 F: Documentation/devicetree/bindings/mfd/da90*.txt
4963 F: Documentation/devicetree/bindings/regulator/da92*.txt
4964 F: Documentation/devicetree/bindings/regulator/slg51000.txt
4965 F: Documentation/devicetree/bindings/sound/da[79]*.txt
4966 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4967 F: Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4968 F: Documentation/hwmon/da90??.rst
4969 F: drivers/gpio/gpio-da90??.c
4970 F: drivers/hwmon/da90??-hwmon.c
4971 F: drivers/iio/adc/da91??-*.c
4972 F: drivers/input/misc/da90??_onkey.c
4973 F: drivers/input/touchscreen/da9052_tsi.c
4974 F: drivers/leds/leds-da90??.c
4975 F: drivers/mfd/da903x.c
4976 F: drivers/mfd/da90??-*.c
4977 F: drivers/mfd/da91??-*.c
4978 F: drivers/pinctrl/pinctrl-da90??.c
4979 F: drivers/power/supply/da9052-battery.c
4980 F: drivers/power/supply/da91??-*.c
4981 F: drivers/regulator/da903x.c
4982 F: drivers/regulator/da9???-regulator.[ch]
4983 F: drivers/regulator/slg51000-regulator.[ch]
4984 F: drivers/rtc/rtc-da90??.c
4985 F: drivers/thermal/da90??-thermal.c
4986 F: drivers/video/backlight/da90??_bl.c
4987 F: drivers/watchdog/da90??_wdt.c
4988 F: include/linux/mfd/da903x.h
4989 F: include/linux/mfd/da9052/
4990 F: include/linux/mfd/da9055/
4991 F: include/linux/mfd/da9062/
4992 F: include/linux/mfd/da9063/
4993 F: include/linux/mfd/da9150/
4994 F: include/linux/regulator/da9211.h
4995 F: include/sound/da[79]*.h
4996 F: sound/soc/codecs/da[79]*.[ch]
4997
4998 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4999 M: William Breathitt Gray <vilhelm.gray@gmail.com>
5000 L: linux-gpio@vger.kernel.org
5001 S: Maintained
5002 F: drivers/gpio/gpio-gpio-mm.c
5003
5004 DIOLAN U2C-12 I2C DRIVER
5005 M: Guenter Roeck <linux@roeck-us.net>
5006 L: linux-i2c@vger.kernel.org
5007 S: Maintained
5008 F: drivers/i2c/busses/i2c-diolan-u2c.c
5009
5010 DIRECTORY NOTIFICATION (DNOTIFY)
5011 M: Jan Kara <jack@suse.cz>
5012 R: Amir Goldstein <amir73il@gmail.com>
5013 L: linux-fsdevel@vger.kernel.org
5014 S: Maintained
5015 F: Documentation/filesystems/dnotify.rst
5016 F: fs/notify/dnotify/
5017 F: include/linux/dnotify.h
5018
5019 DISK GEOMETRY AND PARTITION HANDLING
5020 M: Andries Brouwer <aeb@cwi.nl>
5021 S: Maintained
5022 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5023 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5024 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5025
5026 DISKQUOTA
5027 M: Jan Kara <jack@suse.com>
5028 S: Maintained
5029 F: Documentation/filesystems/quota.rst
5030 F: fs/quota/
5031 F: include/linux/quota*.h
5032 F: include/uapi/linux/quota*.h
5033
5034 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5035 M: Bernie Thompson <bernie@plugable.com>
5036 L: linux-fbdev@vger.kernel.org
5037 S: Maintained
5038 W: http://plugable.com/category/projects/udlfb/
5039 F: Documentation/fb/udlfb.rst
5040 F: drivers/video/fbdev/udlfb.c
5041 F: include/video/udlfb.h
5042
5043 DISTRIBUTED LOCK MANAGER (DLM)
5044 M: Christine Caulfield <ccaulfie@redhat.com>
5045 M: David Teigland <teigland@redhat.com>
5046 L: cluster-devel@redhat.com
5047 S: Supported
5048 W: http://sources.redhat.com/cluster/
5049 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5050 F: fs/dlm/
5051
5052 DMA BUFFER SHARING FRAMEWORK
5053 M: Sumit Semwal <sumit.semwal@linaro.org>
5054 L: linux-media@vger.kernel.org
5055 L: dri-devel@lists.freedesktop.org
5056 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5057 S: Maintained
5058 T: git git://anongit.freedesktop.org/drm/drm-misc
5059 F: Documentation/driver-api/dma-buf.rst
5060 F: drivers/dma-buf/
5061 F: include/linux/*fence.h
5062 F: include/linux/dma-buf*
5063 F: include/linux/dma-resv.h
5064 K: dma_(buf|fence|resv)
5065
5066 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5067 M: Vinod Koul <vkoul@kernel.org>
5068 L: dmaengine@vger.kernel.org
5069 S: Maintained
5070 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5071 T: git git://git.infradead.org/users/vkoul/slave-dma.git
5072 F: Documentation/devicetree/bindings/dma/
5073 F: Documentation/driver-api/dmaengine/
5074 F: drivers/dma/
5075 F: include/linux/dmaengine.h
5076 F: include/linux/of_dma.h
5077
5078 DMA MAPPING HELPERS
5079 M: Christoph Hellwig <hch@lst.de>
5080 M: Marek Szyprowski <m.szyprowski@samsung.com>
5081 R: Robin Murphy <robin.murphy@arm.com>
5082 L: iommu@lists.linux-foundation.org
5083 S: Supported
5084 W: http://git.infradead.org/users/hch/dma-mapping.git
5085 T: git git://git.infradead.org/users/hch/dma-mapping.git
5086 F: include/asm-generic/dma-mapping.h
5087 F: include/linux/dma-direct.h
5088 F: include/linux/dma-mapping.h
5089 F: include/linux/dma-noncoherent.h
5090 F: kernel/dma/
5091
5092 DMA-BUF HEAPS FRAMEWORK
5093 M: Sumit Semwal <sumit.semwal@linaro.org>
5094 R: Andrew F. Davis <afd@ti.com>
5095 R: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5096 R: Liam Mark <lmark@codeaurora.org>
5097 R: Laura Abbott <labbott@redhat.com>
5098 R: Brian Starkey <Brian.Starkey@arm.com>
5099 R: John Stultz <john.stultz@linaro.org>
5100 L: linux-media@vger.kernel.org
5101 L: dri-devel@lists.freedesktop.org
5102 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5103 S: Maintained
5104 T: git git://anongit.freedesktop.org/drm/drm-misc
5105 F: drivers/dma-buf/dma-heap.c
5106 F: drivers/dma-buf/heaps/*
5107 F: include/linux/dma-heap.h
5108 F: include/uapi/linux/dma-heap.h
5109
5110 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5111 M: Lukasz Luba <lukasz.luba@arm.com>
5112 L: linux-pm@vger.kernel.org
5113 L: linux-samsung-soc@vger.kernel.org
5114 S: Maintained
5115 F: Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5116 F: drivers/memory/samsung/exynos5422-dmc.c
5117
5118 DME1737 HARDWARE MONITOR DRIVER
5119 M: Juerg Haefliger <juergh@gmail.com>
5120 L: linux-hwmon@vger.kernel.org
5121 S: Maintained
5122 F: Documentation/hwmon/dme1737.rst
5123 F: drivers/hwmon/dme1737.c
5124
5125 DMI/SMBIOS SUPPORT
5126 M: Jean Delvare <jdelvare@suse.com>
5127 S: Maintained
5128 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5129 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
5130 F: drivers/firmware/dmi-id.c
5131 F: drivers/firmware/dmi_scan.c
5132 F: include/linux/dmi.h
5133
5134 DOCUMENTATION
5135 M: Jonathan Corbet <corbet@lwn.net>
5136 L: linux-doc@vger.kernel.org
5137 S: Maintained
5138 T: git git://git.lwn.net/linux.git docs-next
5139 F: Documentation/
5140 F: scripts/documentation-file-ref-check
5141 F: scripts/kernel-doc
5142 F: scripts/sphinx-pre-install
5143 X: Documentation/ABI/
5144 X: Documentation/devicetree/
5145 X: Documentation/firmware-guide/acpi/
5146 X: Documentation/i2c/
5147 X: Documentation/media/
5148 X: Documentation/power/
5149 X: Documentation/spi/
5150
5151 DOCUMENTATION SCRIPTS
5152 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5153 L: linux-doc@vger.kernel.org
5154 S: Maintained
5155 F: Documentation/sphinx/parse-headers.pl
5156 F: scripts/documentation-file-ref-check
5157 F: scripts/sphinx-pre-install
5158
5159 DOCUMENTATION/ITALIAN
5160 M: Federico Vaga <federico.vaga@vaga.pv.it>
5161 L: linux-doc@vger.kernel.org
5162 S: Maintained
5163 F: Documentation/translations/it_IT
5164
5165 DONGWOON DW9714 LENS VOICE COIL DRIVER
5166 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5167 L: linux-media@vger.kernel.org
5168 S: Maintained
5169 T: git git://linuxtv.org/media_tree.git
5170 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5171 F: drivers/media/i2c/dw9714.c
5172
5173 DONGWOON DW9807 LENS VOICE COIL DRIVER
5174 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5175 L: linux-media@vger.kernel.org
5176 S: Maintained
5177 T: git git://linuxtv.org/media_tree.git
5178 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5179 F: drivers/media/i2c/dw9807-vcm.c
5180
5181 DOUBLETALK DRIVER
5182 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
5183 L: blinux-list@redhat.com
5184 S: Maintained
5185 F: drivers/char/dtlk.c
5186 F: include/linux/dtlk.h
5187
5188 DPAA2 DATAPATH I/O (DPIO) DRIVER
5189 M: Roy Pledge <Roy.Pledge@nxp.com>
5190 L: linux-kernel@vger.kernel.org
5191 S: Maintained
5192 F: drivers/soc/fsl/dpio
5193
5194 DPAA2 ETHERNET DRIVER
5195 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5196 M: Ioana Radulescu <ruxandra.radulescu@nxp.com>
5197 L: netdev@vger.kernel.org
5198 S: Maintained
5199 F: Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5200 F: Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5201 F: drivers/net/ethernet/freescale/dpaa2/Kconfig
5202 F: drivers/net/ethernet/freescale/dpaa2/Makefile
5203 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5204 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5205 F: drivers/net/ethernet/freescale/dpaa2/dpkg.h
5206 F: drivers/net/ethernet/freescale/dpaa2/dpmac*
5207 F: drivers/net/ethernet/freescale/dpaa2/dpni*
5208
5209 DPAA2 ETHERNET SWITCH DRIVER
5210 M: Ioana Radulescu <ruxandra.radulescu@nxp.com>
5211 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5212 L: linux-kernel@vger.kernel.org
5213 S: Maintained
5214 F: drivers/staging/fsl-dpaa2/ethsw
5215
5216 DPT_I2O SCSI RAID DRIVER
5217 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5218 L: linux-scsi@vger.kernel.org
5219 S: Maintained
5220 W: http://www.adaptec.com/
5221 F: drivers/scsi/dpt*
5222 F: drivers/scsi/dpt/
5223
5224 DRBD DRIVER
5225 M: Philipp Reisner <philipp.reisner@linbit.com>
5226 M: Lars Ellenberg <lars.ellenberg@linbit.com>
5227 L: drbd-dev@lists.linbit.com
5228 S: Supported
5229 W: http://www.drbd.org
5230 T: git git://git.linbit.com/linux-drbd.git
5231 T: git git://git.linbit.com/drbd-8.4.git
5232 F: Documentation/admin-guide/blockdev/
5233 F: drivers/block/drbd/
5234 F: lib/lru_cache.c
5235
5236 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5237 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5238 R: "Rafael J. Wysocki" <rafael@kernel.org>
5239 S: Supported
5240 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5241 F: Documentation/core-api/kobject.rst
5242 F: drivers/base/
5243 F: fs/debugfs/
5244 F: fs/sysfs/
5245 F: include/linux/debugfs.h
5246 F: include/linux/kobj*
5247 F: lib/kobj*
5248
5249 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5250 M: Kevin Hilman <khilman@kernel.org>
5251 M: Nishanth Menon <nm@ti.com>
5252 L: linux-pm@vger.kernel.org
5253 S: Maintained
5254 F: drivers/power/avs/
5255 F: include/linux/power/smartreflex.h
5256
5257 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5258 M: Maxime Ripard <mripard@kernel.org>
5259 M: Chen-Yu Tsai <wens@csie.org>
5260 R: Jernej Skrabec <jernej.skrabec@siol.net>
5261 L: dri-devel@lists.freedesktop.org
5262 S: Supported
5263 T: git git://anongit.freedesktop.org/drm/drm-misc
5264 F: drivers/gpu/drm/sun4i/sun8i*
5265
5266 DRM DRIVER FOR ARM PL111 CLCD
5267 M: Eric Anholt <eric@anholt.net>
5268 S: Supported
5269 T: git git://anongit.freedesktop.org/drm/drm-misc
5270 F: drivers/gpu/drm/pl111/
5271
5272 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5273 M: Linus Walleij <linus.walleij@linaro.org>
5274 S: Maintained
5275 T: git git://anongit.freedesktop.org/drm/drm-misc
5276 F: Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5277 F: drivers/gpu/drm/panel/panel-arm-versatile.c
5278
5279 DRM DRIVER FOR ASPEED BMC GFX
5280 M: Joel Stanley <joel@jms.id.au>
5281 L: linux-aspeed@lists.ozlabs.org
5282 S: Supported
5283 T: git git://anongit.freedesktop.org/drm/drm-misc
5284 F: Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5285 F: drivers/gpu/drm/aspeed/
5286
5287 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5288 M: Dave Airlie <airlied@redhat.com>
5289 S: Odd Fixes
5290 F: drivers/gpu/drm/ast/
5291
5292 DRM DRIVER FOR BOCHS VIRTUAL GPU
5293 M: Gerd Hoffmann <kraxel@redhat.com>
5294 L: virtualization@lists.linux-foundation.org
5295 S: Maintained
5296 T: git git://anongit.freedesktop.org/drm/drm-misc
5297 F: drivers/gpu/drm/bochs/
5298
5299 DRM DRIVER FOR BOE HIMAX8279D PANELS
5300 M: Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5301 S: Maintained
5302 F: Documentation/devicetree/bindings/display/panel/boe,himax8279d.txt
5303 F: drivers/gpu/drm/panel/panel-boe-himax8279d.c
5304
5305 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5306 M: Linus Walleij <linus.walleij@linaro.org>
5307 S: Maintained
5308 T: git git://anongit.freedesktop.org/drm/drm-misc
5309 F: drivers/gpu/drm/tve200/
5310
5311 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5312 M: Icenowy Zheng <icenowy@aosc.io>
5313 S: Maintained
5314 F: Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5315 F: drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5316
5317 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5318 M: Jagan Teki <jagan@amarulasolutions.com>
5319 S: Maintained
5320 F: Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5321 F: drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5322
5323 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5324 M: Hans de Goede <hdegoede@redhat.com>
5325 S: Maintained
5326 T: git git://anongit.freedesktop.org/drm/drm-misc
5327 F: drivers/gpu/drm/tiny/gm12u320.c
5328
5329 DRM DRIVER FOR HX8357D PANELS
5330 M: Eric Anholt <eric@anholt.net>
5331 S: Maintained
5332 T: git git://anongit.freedesktop.org/drm/drm-misc
5333 F: Documentation/devicetree/bindings/display/himax,hx8357d.txt
5334 F: drivers/gpu/drm/tiny/hx8357d.c
5335
5336 DRM DRIVER FOR ILITEK ILI9225 PANELS
5337 M: David Lechner <david@lechnology.com>
5338 S: Maintained
5339 T: git git://anongit.freedesktop.org/drm/drm-misc
5340 F: Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5341 F: drivers/gpu/drm/tiny/ili9225.c
5342
5343 DRM DRIVER FOR ILITEK ILI9486 PANELS
5344 M: Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5345 S: Maintained
5346 T: git git://anongit.freedesktop.org/drm/drm-misc
5347 F: Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5348 F: drivers/gpu/drm/tiny/ili9486.c
5349
5350 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5351 S: Orphan / Obsolete
5352 F: drivers/gpu/drm/i810/
5353 F: include/uapi/drm/i810_drm.h
5354
5355 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5356 S: Orphan / Obsolete
5357 F: drivers/gpu/drm/mga/
5358 F: include/uapi/drm/mga_drm.h
5359
5360 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5361 M: Dave Airlie <airlied@redhat.com>
5362 S: Odd Fixes
5363 F: drivers/gpu/drm/mgag200/
5364
5365 DRM DRIVER FOR MI0283QT
5366 M: Noralf Trønnes <noralf@tronnes.org>
5367 S: Maintained
5368 T: git git://anongit.freedesktop.org/drm/drm-misc
5369 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5370 F: drivers/gpu/drm/tiny/mi0283qt.c
5371
5372 DRM DRIVER FOR MSM ADRENO GPU
5373 M: Rob Clark <robdclark@gmail.com>
5374 M: Sean Paul <sean@poorly.run>
5375 L: linux-arm-msm@vger.kernel.org
5376 L: dri-devel@lists.freedesktop.org
5377 L: freedreno@lists.freedesktop.org
5378 S: Maintained
5379 T: git https://gitlab.freedesktop.org/drm/msm.git
5380 F: Documentation/devicetree/bindings/display/msm/
5381 F: drivers/gpu/drm/msm/
5382 F: include/uapi/drm/msm_drm.h
5383
5384 DRM DRIVER FOR NOVATEK NT35510 PANELS
5385 M: Linus Walleij <linus.walleij@linaro.org>
5386 S: Maintained
5387 T: git git://anongit.freedesktop.org/drm/drm-misc
5388 F: Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5389 F: drivers/gpu/drm/panel/panel-novatek-nt35510.c
5390
5391 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5392 M: Ben Skeggs <bskeggs@redhat.com>
5393 L: dri-devel@lists.freedesktop.org
5394 L: nouveau@lists.freedesktop.org
5395 S: Supported
5396 T: git git://github.com/skeggsb/linux
5397 F: drivers/gpu/drm/nouveau/
5398 F: include/uapi/drm/nouveau_drm.h
5399
5400 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5401 M: Stefan Mavrodiev <stefan@olimex.com>
5402 S: Maintained
5403 F: Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5404 F: drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5405
5406 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5407 M: Noralf Trønnes <noralf@tronnes.org>
5408 S: Maintained
5409 T: git git://anongit.freedesktop.org/drm/drm-misc
5410 F: Documentation/devicetree/bindings/display/repaper.txt
5411 F: drivers/gpu/drm/tiny/repaper.c
5412
5413 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5414 M: Dave Airlie <airlied@redhat.com>
5415 M: Gerd Hoffmann <kraxel@redhat.com>
5416 L: virtualization@lists.linux-foundation.org
5417 S: Obsolete
5418 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5419 T: git git://anongit.freedesktop.org/drm/drm-misc
5420 F: drivers/gpu/drm/cirrus/
5421
5422 DRM DRIVER FOR QXL VIRTUAL GPU
5423 M: Dave Airlie <airlied@redhat.com>
5424 M: Gerd Hoffmann <kraxel@redhat.com>
5425 L: virtualization@lists.linux-foundation.org
5426 L: spice-devel@lists.freedesktop.org
5427 S: Maintained
5428 T: git git://anongit.freedesktop.org/drm/drm-misc
5429 F: drivers/gpu/drm/qxl/
5430 F: include/uapi/drm/qxl_drm.h
5431
5432 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5433 S: Orphan / Obsolete
5434 F: drivers/gpu/drm/r128/
5435 F: include/uapi/drm/r128_drm.h
5436
5437 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5438 M: Robert Chiras <robert.chiras@nxp.com>
5439 S: Maintained
5440 F: Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5441 F: drivers/gpu/drm/panel/panel-raydium-rm67191.c
5442
5443 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5444 M: Guido Günther <agx@sigxcpu.org>
5445 R: Purism Kernel Team <kernel@puri.sm>
5446 S: Maintained
5447 F: Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5448 F: drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5449
5450 DRM DRIVER FOR SAVAGE VIDEO CARDS
5451 S: Orphan / Obsolete
5452 F: drivers/gpu/drm/savage/
5453 F: include/uapi/drm/savage_drm.h
5454
5455 DRM DRIVER FOR SIS VIDEO CARDS
5456 S: Orphan / Obsolete
5457 F: drivers/gpu/drm/sis/
5458 F: include/uapi/drm/sis_drm.h
5459
5460 DRM DRIVER FOR SITRONIX ST7586 PANELS
5461 M: David Lechner <david@lechnology.com>
5462 S: Maintained
5463 T: git git://anongit.freedesktop.org/drm/drm-misc
5464 F: Documentation/devicetree/bindings/display/sitronix,st7586.txt
5465 F: drivers/gpu/drm/tiny/st7586.c
5466
5467 DRM DRIVER FOR SITRONIX ST7701 PANELS
5468 M: Jagan Teki <jagan@amarulasolutions.com>
5469 S: Maintained
5470 F: Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5471 F: drivers/gpu/drm/panel/panel-sitronix-st7701.c
5472
5473 DRM DRIVER FOR SITRONIX ST7735R PANELS
5474 M: David Lechner <david@lechnology.com>
5475 S: Maintained
5476 T: git git://anongit.freedesktop.org/drm/drm-misc
5477 F: Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5478 F: drivers/gpu/drm/tiny/st7735r.c
5479
5480 DRM DRIVER FOR SONY ACX424AKP PANELS
5481 M: Linus Walleij <linus.walleij@linaro.org>
5482 S: Maintained
5483 T: git git://anongit.freedesktop.org/drm/drm-misc
5484 F: drivers/gpu/drm/panel/panel-sony-acx424akp.c
5485
5486 DRM DRIVER FOR ST-ERICSSON MCDE
5487 M: Linus Walleij <linus.walleij@linaro.org>
5488 S: Maintained
5489 T: git git://anongit.freedesktop.org/drm/drm-misc
5490 F: Documentation/devicetree/bindings/display/ste,mcde.txt
5491 F: drivers/gpu/drm/mcde/
5492
5493 DRM DRIVER FOR TDFX VIDEO CARDS
5494 S: Orphan / Obsolete
5495 F: drivers/gpu/drm/tdfx/
5496
5497 DRM DRIVER FOR TPO TPG110 PANELS
5498 M: Linus Walleij <linus.walleij@linaro.org>
5499 S: Maintained
5500 T: git git://anongit.freedesktop.org/drm/drm-misc
5501 F: Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5502 F: drivers/gpu/drm/panel/panel-tpo-tpg110.c
5503
5504 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5505 M: Dave Airlie <airlied@redhat.com>
5506 R: Sean Paul <sean@poorly.run>
5507 L: dri-devel@lists.freedesktop.org
5508 S: Odd Fixes
5509 T: git git://anongit.freedesktop.org/drm/drm-misc
5510 F: drivers/gpu/drm/udl/
5511
5512 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5513 M: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5514 R: Haneen Mohammed <hamohammed.sa@gmail.com>
5515 R: Daniel Vetter <daniel@ffwll.ch>
5516 L: dri-devel@lists.freedesktop.org
5517 S: Maintained
5518 T: git git://anongit.freedesktop.org/drm/drm-misc
5519 F: Documentation/gpu/vkms.rst
5520 F: drivers/gpu/drm/vkms/
5521
5522 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5523 M: Hans de Goede <hdegoede@redhat.com>
5524 L: dri-devel@lists.freedesktop.org
5525 S: Maintained
5526 T: git git://anongit.freedesktop.org/drm/drm-misc
5527 F: drivers/gpu/drm/vboxvideo/
5528
5529 DRM DRIVER FOR VMWARE VIRTUAL GPU
5530 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5531 M: Roland Scheidegger <sroland@vmware.com>
5532 L: dri-devel@lists.freedesktop.org
5533 S: Supported
5534 T: git git://people.freedesktop.org/~sroland/linux
5535 F: drivers/gpu/drm/vmwgfx/
5536 F: include/uapi/drm/vmwgfx_drm.h
5537
5538 DRM DRIVERS
5539 M: David Airlie <airlied@linux.ie>
5540 M: Daniel Vetter <daniel@ffwll.ch>
5541 L: dri-devel@lists.freedesktop.org
5542 S: Maintained
5543 B: https://bugs.freedesktop.org/
5544 C: irc://chat.freenode.net/dri-devel
5545 T: git git://anongit.freedesktop.org/drm/drm
5546 F: Documentation/devicetree/bindings/display/
5547 F: Documentation/devicetree/bindings/gpu/
5548 F: Documentation/gpu/
5549 F: drivers/gpu/drm/
5550 F: drivers/gpu/vga/
5551 F: include/drm/
5552 F: include/linux/vga*
5553 F: include/uapi/drm/
5554
5555 DRM DRIVERS AND MISC GPU PATCHES
5556 M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5557 M: Maxime Ripard <mripard@kernel.org>
5558 M: Thomas Zimmermann <tzimmermann@suse.de>
5559 S: Maintained
5560 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5561 T: git git://anongit.freedesktop.org/drm/drm-misc
5562 F: Documentation/gpu/
5563 F: drivers/gpu/drm/*
5564 F: drivers/gpu/vga/
5565 F: include/drm/drm*
5566 F: include/linux/vga*
5567 F: include/uapi/drm/drm*
5568
5569 DRM DRIVERS FOR ALLWINNER A10
5570 M: Maxime Ripard <mripard@kernel.org>
5571 M: Chen-Yu Tsai <wens@csie.org>
5572 L: dri-devel@lists.freedesktop.org
5573 S: Supported
5574 T: git git://anongit.freedesktop.org/drm/drm-misc
5575 F: Documentation/devicetree/bindings/display/allwinner*
5576 F: drivers/gpu/drm/sun4i/
5577
5578 DRM DRIVERS FOR AMLOGIC SOCS
5579 M: Neil Armstrong <narmstrong@baylibre.com>
5580 L: dri-devel@lists.freedesktop.org
5581 L: linux-amlogic@lists.infradead.org
5582 S: Supported
5583 W: http://linux-meson.com/
5584 T: git git://anongit.freedesktop.org/drm/drm-misc
5585 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5586 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5587 F: Documentation/gpu/meson.rst
5588 F: drivers/gpu/drm/meson/
5589
5590 DRM DRIVERS FOR ATMEL HLCDC
5591 M: Sam Ravnborg <sam@ravnborg.org>
5592 M: Boris Brezillon <bbrezillon@kernel.org>
5593 L: dri-devel@lists.freedesktop.org
5594 S: Supported
5595 T: git git://anongit.freedesktop.org/drm/drm-misc
5596 F: Documentation/devicetree/bindings/display/atmel/
5597 F: drivers/gpu/drm/atmel-hlcdc/
5598
5599 DRM DRIVERS FOR BRIDGE CHIPS
5600 M: Andrzej Hajda <a.hajda@samsung.com>
5601 M: Neil Armstrong <narmstrong@baylibre.com>
5602 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5603 R: Jonas Karlman <jonas@kwiboo.se>
5604 R: Jernej Skrabec <jernej.skrabec@siol.net>
5605 S: Maintained
5606 T: git git://anongit.freedesktop.org/drm/drm-misc
5607 F: drivers/gpu/drm/bridge/
5608
5609 DRM DRIVERS FOR EXYNOS
5610 M: Inki Dae <inki.dae@samsung.com>
5611 M: Joonyoung Shim <jy0922.shim@samsung.com>
5612 M: Seung-Woo Kim <sw0312.kim@samsung.com>
5613 M: Kyungmin Park <kyungmin.park@samsung.com>
5614 L: dri-devel@lists.freedesktop.org
5615 S: Supported
5616 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5617 F: Documentation/devicetree/bindings/display/exynos/
5618 F: drivers/gpu/drm/exynos/
5619 F: include/uapi/drm/exynos_drm.h
5620
5621 DRM DRIVERS FOR FREESCALE DCU
5622 M: Stefan Agner <stefan@agner.ch>
5623 M: Alison Wang <alison.wang@nxp.com>
5624 L: dri-devel@lists.freedesktop.org
5625 S: Supported
5626 T: git git://anongit.freedesktop.org/drm/drm-misc
5627 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
5628 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
5629 F: drivers/gpu/drm/fsl-dcu/
5630
5631 DRM DRIVERS FOR FREESCALE IMX
5632 M: Philipp Zabel <p.zabel@pengutronix.de>
5633 L: dri-devel@lists.freedesktop.org
5634 S: Maintained
5635 F: Documentation/devicetree/bindings/display/imx/
5636 F: drivers/gpu/drm/imx/
5637 F: drivers/gpu/ipu-v3/
5638
5639 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5640 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5641 L: dri-devel@lists.freedesktop.org
5642 S: Maintained
5643 T: git git://github.com/patjak/drm-gma500
5644 F: drivers/gpu/drm/gma500/
5645
5646 DRM DRIVERS FOR HISILICON
5647 M: Xinliang Liu <xinliang.liu@linaro.org>
5648 M: Rongrong Zou <zourongrong@gmail.com>
5649 R: John Stultz <john.stultz@linaro.org>
5650 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
5651 R: Chen Feng <puck.chen@hisilicon.com>
5652 L: dri-devel@lists.freedesktop.org
5653 S: Maintained
5654 T: git git://anongit.freedesktop.org/drm/drm-misc
5655 F: Documentation/devicetree/bindings/display/hisilicon/
5656 F: drivers/gpu/drm/hisilicon/
5657
5658 DRM DRIVERS FOR LIMA
5659 M: Qiang Yu <yuq825@gmail.com>
5660 L: dri-devel@lists.freedesktop.org
5661 L: lima@lists.freedesktop.org (moderated for non-subscribers)
5662 S: Maintained
5663 T: git git://anongit.freedesktop.org/drm/drm-misc
5664 F: drivers/gpu/drm/lima/
5665 F: include/uapi/drm/lima_drm.h
5666
5667 DRM DRIVERS FOR MEDIATEK
5668 M: Chun-Kuang Hu <chunkuang.hu@kernel.org>
5669 M: Philipp Zabel <p.zabel@pengutronix.de>
5670 L: dri-devel@lists.freedesktop.org
5671 S: Supported
5672 F: Documentation/devicetree/bindings/display/mediatek/
5673 F: drivers/gpu/drm/mediatek/
5674
5675 DRM DRIVERS FOR NVIDIA TEGRA
5676 M: Thierry Reding <thierry.reding@gmail.com>
5677 L: dri-devel@lists.freedesktop.org
5678 L: linux-tegra@vger.kernel.org
5679 S: Supported
5680 T: git git://anongit.freedesktop.org/tegra/linux.git
5681 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5682 F: drivers/gpu/drm/tegra/
5683 F: drivers/gpu/host1x/
5684 F: include/linux/host1x.h
5685 F: include/uapi/drm/tegra_drm.h
5686
5687 DRM DRIVERS FOR RENESAS
5688 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5689 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5690 L: dri-devel@lists.freedesktop.org
5691 L: linux-renesas-soc@vger.kernel.org
5692 S: Supported
5693 T: git git://linuxtv.org/pinchartl/media drm/du/next
5694 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5695 F: Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5696 F: Documentation/devicetree/bindings/display/renesas,du.txt
5697 F: drivers/gpu/drm/rcar-du/
5698 F: drivers/gpu/drm/shmobile/
5699 F: include/linux/platform_data/shmob_drm.h
5700
5701 DRM DRIVERS FOR ROCKCHIP
5702 M: Sandy Huang <hjc@rock-chips.com>
5703 M: Heiko Stübner <heiko@sntech.de>
5704 L: dri-devel@lists.freedesktop.org
5705 S: Maintained
5706 T: git git://anongit.freedesktop.org/drm/drm-misc
5707 F: Documentation/devicetree/bindings/display/rockchip/
5708 F: drivers/gpu/drm/rockchip/
5709
5710 DRM DRIVERS FOR STI
5711 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5712 M: Vincent Abriou <vincent.abriou@st.com>
5713 L: dri-devel@lists.freedesktop.org
5714 S: Maintained
5715 T: git git://anongit.freedesktop.org/drm/drm-misc
5716 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
5717 F: drivers/gpu/drm/sti
5718
5719 DRM DRIVERS FOR STM
5720 M: Yannick Fertre <yannick.fertre@st.com>
5721 M: Philippe Cornu <philippe.cornu@st.com>
5722 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5723 M: Vincent Abriou <vincent.abriou@st.com>
5724 L: dri-devel@lists.freedesktop.org
5725 S: Maintained
5726 T: git git://anongit.freedesktop.org/drm/drm-misc
5727 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5728 F: drivers/gpu/drm/stm
5729
5730 DRM DRIVERS FOR TI KEYSTONE
5731 M: Jyri Sarha <jsarha@ti.com>
5732 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
5733 L: dri-devel@lists.freedesktop.org
5734 S: Maintained
5735 T: git git://anongit.freedesktop.org/drm/drm-misc
5736 F: Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5737 F: Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5738 F: Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5739 F: drivers/gpu/drm/tidss/
5740
5741 DRM DRIVERS FOR TI LCDC
5742 M: Jyri Sarha <jsarha@ti.com>
5743 R: Tomi Valkeinen <tomi.valkeinen@ti.com>
5744 L: dri-devel@lists.freedesktop.org
5745 S: Maintained
5746 F: Documentation/devicetree/bindings/display/tilcdc/
5747 F: drivers/gpu/drm/tilcdc/
5748
5749 DRM DRIVERS FOR TI OMAP
5750 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
5751 L: dri-devel@lists.freedesktop.org
5752 S: Maintained
5753 F: Documentation/devicetree/bindings/display/ti/
5754 F: drivers/gpu/drm/omapdrm/
5755
5756 DRM DRIVERS FOR V3D
5757 M: Eric Anholt <eric@anholt.net>
5758 S: Supported
5759 T: git git://anongit.freedesktop.org/drm/drm-misc
5760 F: Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5761 F: drivers/gpu/drm/v3d/
5762 F: include/uapi/drm/v3d_drm.h
5763
5764 DRM DRIVERS FOR VC4
5765 M: Eric Anholt <eric@anholt.net>
5766 S: Supported
5767 T: git git://github.com/anholt/linux
5768 T: git git://anongit.freedesktop.org/drm/drm-misc
5769 F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5770 F: drivers/gpu/drm/vc4/
5771 F: include/uapi/drm/vc4_drm.h
5772
5773 DRM DRIVERS FOR VIVANTE GPU IP
5774 M: Lucas Stach <l.stach@pengutronix.de>
5775 R: Russell King <linux+etnaviv@armlinux.org.uk>
5776 R: Christian Gmeiner <christian.gmeiner@gmail.com>
5777 L: etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5778 L: dri-devel@lists.freedesktop.org
5779 S: Maintained
5780 F: Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5781 F: drivers/gpu/drm/etnaviv/
5782 F: include/uapi/drm/etnaviv_drm.h
5783
5784 DRM DRIVERS FOR XEN
5785 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5786 L: dri-devel@lists.freedesktop.org
5787 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
5788 S: Supported
5789 T: git git://anongit.freedesktop.org/drm/drm-misc
5790 F: Documentation/gpu/xen-front.rst
5791 F: drivers/gpu/drm/xen/
5792
5793 DRM DRIVERS FOR ZTE ZX
5794 M: Shawn Guo <shawnguo@kernel.org>
5795 L: dri-devel@lists.freedesktop.org
5796 S: Maintained
5797 T: git git://anongit.freedesktop.org/drm/drm-misc
5798 F: Documentation/devicetree/bindings/display/zte,vou.txt
5799 F: drivers/gpu/drm/zte/
5800
5801 DRM PANEL DRIVERS
5802 M: Thierry Reding <thierry.reding@gmail.com>
5803 R: Sam Ravnborg <sam@ravnborg.org>
5804 L: dri-devel@lists.freedesktop.org
5805 S: Maintained
5806 T: git git://anongit.freedesktop.org/drm/drm-misc
5807 F: Documentation/devicetree/bindings/display/panel/
5808 F: drivers/gpu/drm/drm_panel.c
5809 F: drivers/gpu/drm/panel/
5810 F: include/drm/drm_panel.h
5811
5812 DRM TTM SUBSYSTEM
5813 M: Christian Koenig <christian.koenig@amd.com>
5814 M: Huang Rui <ray.huang@amd.com>
5815 L: dri-devel@lists.freedesktop.org
5816 S: Maintained
5817 T: git git://people.freedesktop.org/~agd5f/linux
5818 F: drivers/gpu/drm/ttm/
5819 F: include/drm/ttm/
5820
5821 DSBR100 USB FM RADIO DRIVER
5822 M: Alexey Klimov <klimov.linux@gmail.com>
5823 L: linux-media@vger.kernel.org
5824 S: Maintained
5825 T: git git://linuxtv.org/media_tree.git
5826 F: drivers/media/radio/dsbr100.c
5827
5828 DT3155 MEDIA DRIVER
5829 M: Hans Verkuil <hverkuil@xs4all.nl>
5830 L: linux-media@vger.kernel.org
5831 S: Odd Fixes
5832 W: https://linuxtv.org
5833 T: git git://linuxtv.org/media_tree.git
5834 F: drivers/media/pci/dt3155/
5835
5836 DVB_USB_AF9015 MEDIA DRIVER
5837 M: Antti Palosaari <crope@iki.fi>
5838 L: linux-media@vger.kernel.org
5839 S: Maintained
5840 W: https://linuxtv.org
5841 W: http://palosaari.fi/linux/
5842 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5843 T: git git://linuxtv.org/anttip/media_tree.git
5844 F: drivers/media/usb/dvb-usb-v2/af9015*
5845
5846 DVB_USB_AF9035 MEDIA DRIVER
5847 M: Antti Palosaari <crope@iki.fi>
5848 L: linux-media@vger.kernel.org
5849 S: Maintained
5850 W: https://linuxtv.org
5851 W: http://palosaari.fi/linux/
5852 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5853 T: git git://linuxtv.org/anttip/media_tree.git
5854 F: drivers/media/usb/dvb-usb-v2/af9035*
5855
5856 DVB_USB_ANYSEE MEDIA DRIVER
5857 M: Antti Palosaari <crope@iki.fi>
5858 L: linux-media@vger.kernel.org
5859 S: Maintained
5860 W: https://linuxtv.org
5861 W: http://palosaari.fi/linux/
5862 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5863 T: git git://linuxtv.org/anttip/media_tree.git
5864 F: drivers/media/usb/dvb-usb-v2/anysee*
5865
5866 DVB_USB_AU6610 MEDIA DRIVER
5867 M: Antti Palosaari <crope@iki.fi>
5868 L: linux-media@vger.kernel.org
5869 S: Maintained
5870 W: https://linuxtv.org
5871 W: http://palosaari.fi/linux/
5872 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5873 T: git git://linuxtv.org/anttip/media_tree.git
5874 F: drivers/media/usb/dvb-usb-v2/au6610*
5875
5876 DVB_USB_CE6230 MEDIA DRIVER
5877 M: Antti Palosaari <crope@iki.fi>
5878 L: linux-media@vger.kernel.org
5879 S: Maintained
5880 W: https://linuxtv.org
5881 W: http://palosaari.fi/linux/
5882 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5883 T: git git://linuxtv.org/anttip/media_tree.git
5884 F: drivers/media/usb/dvb-usb-v2/ce6230*
5885
5886 DVB_USB_CXUSB MEDIA DRIVER
5887 M: Michael Krufky <mkrufky@linuxtv.org>
5888 L: linux-media@vger.kernel.org
5889 S: Maintained
5890 W: https://linuxtv.org
5891 W: http://github.com/mkrufky
5892 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5893 T: git git://linuxtv.org/media_tree.git
5894 F: drivers/media/usb/dvb-usb/cxusb*
5895
5896 DVB_USB_EC168 MEDIA DRIVER
5897 M: Antti Palosaari <crope@iki.fi>
5898 L: linux-media@vger.kernel.org
5899 S: Maintained
5900 W: https://linuxtv.org
5901 W: http://palosaari.fi/linux/
5902 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5903 T: git git://linuxtv.org/anttip/media_tree.git
5904 F: drivers/media/usb/dvb-usb-v2/ec168*
5905
5906 DVB_USB_GL861 MEDIA DRIVER
5907 M: Antti Palosaari <crope@iki.fi>
5908 L: linux-media@vger.kernel.org
5909 S: Maintained
5910 W: https://linuxtv.org
5911 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5912 T: git git://linuxtv.org/anttip/media_tree.git
5913 F: drivers/media/usb/dvb-usb-v2/gl861*
5914
5915 DVB_USB_MXL111SF MEDIA DRIVER
5916 M: Michael Krufky <mkrufky@linuxtv.org>
5917 L: linux-media@vger.kernel.org
5918 S: Maintained
5919 W: https://linuxtv.org
5920 W: http://github.com/mkrufky
5921 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5922 T: git git://linuxtv.org/mkrufky/mxl111sf.git
5923 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
5924
5925 DVB_USB_RTL28XXU MEDIA DRIVER
5926 M: Antti Palosaari <crope@iki.fi>
5927 L: linux-media@vger.kernel.org
5928 S: Maintained
5929 W: https://linuxtv.org
5930 W: http://palosaari.fi/linux/
5931 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5932 T: git git://linuxtv.org/anttip/media_tree.git
5933 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
5934
5935 DVB_USB_V2 MEDIA DRIVER
5936 M: Antti Palosaari <crope@iki.fi>
5937 L: linux-media@vger.kernel.org
5938 S: Maintained
5939 W: https://linuxtv.org
5940 W: http://palosaari.fi/linux/
5941 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5942 T: git git://linuxtv.org/anttip/media_tree.git
5943 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
5944 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
5945
5946 DYNAMIC DEBUG
5947 M: Jason Baron <jbaron@akamai.com>
5948 S: Maintained
5949 F: include/linux/dynamic_debug.h
5950 F: lib/dynamic_debug.c
5951
5952 DYNAMIC INTERRUPT MODERATION
5953 M: Tal Gilboa <talgi@mellanox.com>
5954 S: Maintained
5955 F: Documentation/networking/net_dim.rst
5956 F: include/linux/dim.h
5957 F: lib/dim/
5958
5959 DZ DECSTATION DZ11 SERIAL DRIVER
5960 M: "Maciej W. Rozycki" <macro@linux-mips.org>
5961 S: Maintained
5962 F: drivers/tty/serial/dz.*
5963
5964 E3X0 POWER BUTTON DRIVER
5965 M: Moritz Fischer <moritz.fischer@ettus.com>
5966 L: usrp-users@lists.ettus.com
5967 S: Supported
5968 W: http://www.ettus.com
5969 F: Documentation/devicetree/bindings/input/e3x0-button.txt
5970 F: drivers/input/misc/e3x0-button.c
5971
5972 E4000 MEDIA DRIVER
5973 M: Antti Palosaari <crope@iki.fi>
5974 L: linux-media@vger.kernel.org
5975 S: Maintained
5976 W: https://linuxtv.org
5977 W: http://palosaari.fi/linux/
5978 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5979 T: git git://linuxtv.org/anttip/media_tree.git
5980 F: drivers/media/tuners/e4000*
5981
5982 EARTH_PT1 MEDIA DRIVER
5983 M: Akihiro Tsukada <tskd08@gmail.com>
5984 L: linux-media@vger.kernel.org
5985 S: Odd Fixes
5986 F: drivers/media/pci/pt1/
5987
5988 EARTH_PT3 MEDIA DRIVER
5989 M: Akihiro Tsukada <tskd08@gmail.com>
5990 L: linux-media@vger.kernel.org
5991 S: Odd Fixes
5992 F: drivers/media/pci/pt3/
5993
5994 EC100 MEDIA DRIVER
5995 M: Antti Palosaari <crope@iki.fi>
5996 L: linux-media@vger.kernel.org
5997 S: Maintained
5998 W: https://linuxtv.org
5999 W: http://palosaari.fi/linux/
6000 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6001 T: git git://linuxtv.org/anttip/media_tree.git
6002 F: drivers/media/dvb-frontends/ec100*
6003
6004 ECRYPT FILE SYSTEM
6005 M: Tyler Hicks <code@tyhicks.com>
6006 L: ecryptfs@vger.kernel.org
6007 S: Odd Fixes
6008 W: http://ecryptfs.org
6009 W: https://launchpad.net/ecryptfs
6010 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6011 F: Documentation/filesystems/ecryptfs.rst
6012 F: fs/ecryptfs/
6013
6014 EDAC-AMD64
6015 M: Borislav Petkov <bp@alien8.de>
6016 L: linux-edac@vger.kernel.org
6017 S: Maintained
6018 F: drivers/edac/amd64_edac*
6019
6020 EDAC-ARMADA
6021 M: Jan Luebbe <jlu@pengutronix.de>
6022 L: linux-edac@vger.kernel.org
6023 S: Maintained
6024 F: drivers/edac/armada_xp_*
6025
6026 EDAC-AST2500
6027 M: Stefan Schaeckeler <sschaeck@cisco.com>
6028 S: Supported
6029 F: Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6030 F: drivers/edac/aspeed_edac.c
6031
6032 EDAC-BLUEFIELD
6033 M: Shravan Kumar Ramani <sramani@mellanox.com>
6034 S: Supported
6035 F: drivers/edac/bluefield_edac.c
6036
6037 EDAC-CALXEDA
6038 M: Robert Richter <rric@kernel.org>
6039 L: linux-edac@vger.kernel.org
6040 S: Maintained
6041 F: drivers/edac/highbank*
6042
6043 EDAC-CAVIUM OCTEON
6044 M: Ralf Baechle <ralf@linux-mips.org>
6045 M: Robert Richter <rrichter@marvell.com>
6046 L: linux-edac@vger.kernel.org
6047 L: linux-mips@vger.kernel.org
6048 S: Supported
6049 F: drivers/edac/octeon_edac*
6050
6051 EDAC-CAVIUM THUNDERX
6052 M: Robert Richter <rrichter@marvell.com>
6053 L: linux-edac@vger.kernel.org
6054 S: Supported
6055 F: drivers/edac/thunderx_edac*
6056
6057 EDAC-CORE
6058 M: Borislav Petkov <bp@alien8.de>
6059 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6060 M: Tony Luck <tony.luck@intel.com>
6061 R: James Morse <james.morse@arm.com>
6062 R: Robert Richter <rrichter@marvell.com>
6063 L: linux-edac@vger.kernel.org
6064 S: Supported
6065 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6066 F: Documentation/admin-guide/ras.rst
6067 F: Documentation/driver-api/edac.rst
6068 F: drivers/edac/
6069 F: include/linux/edac.h
6070
6071 EDAC-DMC520
6072 M: Lei Wang <lewan@microsoft.com>
6073 L: linux-edac@vger.kernel.org
6074 S: Supported
6075 F: drivers/edac/dmc520_edac.c
6076
6077 EDAC-E752X
6078 M: Mark Gross <mark.gross@intel.com>
6079 L: linux-edac@vger.kernel.org
6080 S: Maintained
6081 F: drivers/edac/e752x_edac.c
6082
6083 EDAC-E7XXX
6084 L: linux-edac@vger.kernel.org
6085 S: Maintained
6086 F: drivers/edac/e7xxx_edac.c
6087
6088 EDAC-FSL_DDR
6089 M: York Sun <york.sun@nxp.com>
6090 L: linux-edac@vger.kernel.org
6091 S: Maintained
6092 F: drivers/edac/fsl_ddr_edac.*
6093
6094 EDAC-GHES
6095 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6096 L: linux-edac@vger.kernel.org
6097 S: Maintained
6098 F: drivers/edac/ghes_edac.c
6099
6100 EDAC-I10NM
6101 M: Tony Luck <tony.luck@intel.com>
6102 L: linux-edac@vger.kernel.org
6103 S: Maintained
6104 F: drivers/edac/i10nm_base.c
6105
6106 EDAC-I3000
6107 L: linux-edac@vger.kernel.org
6108 S: Orphan
6109 F: drivers/edac/i3000_edac.c
6110
6111 EDAC-I5000
6112 L: linux-edac@vger.kernel.org
6113 S: Maintained
6114 F: drivers/edac/i5000_edac.c
6115
6116 EDAC-I5400
6117 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6118 L: linux-edac@vger.kernel.org
6119 S: Maintained
6120 F: drivers/edac/i5400_edac.c
6121
6122 EDAC-I7300
6123 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6124 L: linux-edac@vger.kernel.org
6125 S: Maintained
6126 F: drivers/edac/i7300_edac.c
6127
6128 EDAC-I7CORE
6129 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6130 L: linux-edac@vger.kernel.org
6131 S: Maintained
6132 F: drivers/edac/i7core_edac.c
6133
6134 EDAC-I82443BXGX
6135 M: Tim Small <tim@buttersideup.com>
6136 L: linux-edac@vger.kernel.org
6137 S: Maintained
6138 F: drivers/edac/i82443bxgx_edac.c
6139
6140 EDAC-I82975X
6141 M: "Arvind R." <arvino55@gmail.com>
6142 L: linux-edac@vger.kernel.org
6143 S: Maintained
6144 F: drivers/edac/i82975x_edac.c
6145
6146 EDAC-IE31200
6147 M: Jason Baron <jbaron@akamai.com>
6148 L: linux-edac@vger.kernel.org
6149 S: Maintained
6150 F: drivers/edac/ie31200_edac.c
6151
6152 EDAC-MPC85XX
6153 M: Johannes Thumshirn <morbidrsa@gmail.com>
6154 L: linux-edac@vger.kernel.org
6155 S: Maintained
6156 F: drivers/edac/mpc85xx_edac.[ch]
6157
6158 EDAC-PASEMI
6159 M: Egor Martovetsky <egor@pasemi.com>
6160 L: linux-edac@vger.kernel.org
6161 S: Maintained
6162 F: drivers/edac/pasemi_edac.c
6163
6164 EDAC-PND2
6165 M: Tony Luck <tony.luck@intel.com>
6166 L: linux-edac@vger.kernel.org
6167 S: Maintained
6168 F: drivers/edac/pnd2_edac.[ch]
6169
6170 EDAC-QCOM
6171 M: Channagoud Kadabi <ckadabi@codeaurora.org>
6172 M: Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6173 L: linux-arm-msm@vger.kernel.org
6174 L: linux-edac@vger.kernel.org
6175 S: Maintained
6176 F: drivers/edac/qcom_edac.c
6177
6178 EDAC-R82600
6179 M: Tim Small <tim@buttersideup.com>
6180 L: linux-edac@vger.kernel.org
6181 S: Maintained
6182 F: drivers/edac/r82600_edac.c
6183
6184 EDAC-SBRIDGE
6185 M: Tony Luck <tony.luck@intel.com>
6186 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6187 L: linux-edac@vger.kernel.org
6188 S: Maintained
6189 F: drivers/edac/sb_edac.c
6190
6191 EDAC-SIFIVE
6192 M: Yash Shah <yash.shah@sifive.com>
6193 L: linux-edac@vger.kernel.org
6194 S: Supported
6195 F: drivers/edac/sifive_edac.c
6196
6197 EDAC-SKYLAKE
6198 M: Tony Luck <tony.luck@intel.com>
6199 L: linux-edac@vger.kernel.org
6200 S: Maintained
6201 F: drivers/edac/skx_*.c
6202
6203 EDAC-TI
6204 M: Tero Kristo <t-kristo@ti.com>
6205 L: linux-edac@vger.kernel.org
6206 S: Maintained
6207 F: drivers/edac/ti_edac.c
6208
6209 EDIROL UA-101/UA-1000 DRIVER
6210 M: Clemens Ladisch <clemens@ladisch.de>
6211 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6212 S: Maintained
6213 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6214 F: sound/usb/misc/ua101.c
6215
6216 EFI TEST DRIVER
6217 M: Ivan Hu <ivan.hu@canonical.com>
6218 M: Ard Biesheuvel <ardb@kernel.org>
6219 L: linux-efi@vger.kernel.org
6220 S: Maintained
6221 F: drivers/firmware/efi/test/
6222
6223 EFI VARIABLE FILESYSTEM
6224 M: Matthew Garrett <matthew.garrett@nebula.com>
6225 M: Jeremy Kerr <jk@ozlabs.org>
6226 M: Ard Biesheuvel <ardb@kernel.org>
6227 L: linux-efi@vger.kernel.org
6228 S: Maintained
6229 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6230 F: fs/efivarfs/
6231
6232 EFIFB FRAMEBUFFER DRIVER
6233 M: Peter Jones <pjones@redhat.com>
6234 L: linux-fbdev@vger.kernel.org
6235 S: Maintained
6236 F: drivers/video/fbdev/efifb.c
6237
6238 EFS FILESYSTEM
6239 S: Orphan
6240 W: http://aeschi.ch.eu.org/efs/
6241 F: fs/efs/
6242
6243 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6244 M: Douglas Miller <dougmill@linux.ibm.com>
6245 L: netdev@vger.kernel.org
6246 S: Maintained
6247 F: drivers/net/ethernet/ibm/ehea/
6248
6249 EM28XX VIDEO4LINUX DRIVER
6250 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6251 L: linux-media@vger.kernel.org
6252 S: Maintained
6253 W: https://linuxtv.org
6254 T: git git://linuxtv.org/media_tree.git
6255 F: Documentation/media/v4l-drivers/em28xx*
6256 F: drivers/media/usb/em28xx/
6257
6258 EMBEDDED LINUX
6259 M: Paul Gortmaker <paul.gortmaker@windriver.com>
6260 M: Matt Mackall <mpm@selenic.com>
6261 M: David Woodhouse <dwmw2@infradead.org>
6262 L: linux-embedded@vger.kernel.org
6263 S: Maintained
6264
6265 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6266 M: Adrian Hunter <adrian.hunter@intel.com>
6267 M: Ritesh Harjani <riteshh@codeaurora.org>
6268 M: Asutosh Das <asutoshd@codeaurora.org>
6269 L: linux-mmc@vger.kernel.org
6270 S: Maintained
6271 F: drivers/mmc/host/cqhci*
6272
6273 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6274 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6275 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
6276 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6277 L: linux-scsi@vger.kernel.org
6278 S: Supported
6279 W: http://www.broadcom.com
6280 F: drivers/scsi/be2iscsi/
6281
6282 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6283 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
6284 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6285 M: Somnath Kotur <somnath.kotur@broadcom.com>
6286 L: netdev@vger.kernel.org
6287 S: Supported
6288 W: http://www.emulex.com
6289 F: drivers/net/ethernet/emulex/benet/
6290
6291 EMULEX ONECONNECT ROCE DRIVER
6292 M: Selvin Xavier <selvin.xavier@broadcom.com>
6293 M: Devesh Sharma <devesh.sharma@broadcom.com>
6294 L: linux-rdma@vger.kernel.org
6295 S: Odd Fixes
6296 W: http://www.broadcom.com
6297 F: drivers/infiniband/hw/ocrdma/
6298 F: include/uapi/rdma/ocrdma-abi.h
6299
6300 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6301 M: James Smart <james.smart@broadcom.com>
6302 M: Dick Kennedy <dick.kennedy@broadcom.com>
6303 L: linux-scsi@vger.kernel.org
6304 S: Supported
6305 W: http://www.broadcom.com
6306 F: drivers/scsi/lpfc/
6307
6308 ENE CB710 FLASH CARD READER DRIVER
6309 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
6310 S: Maintained
6311 F: drivers/misc/cb710/
6312 F: drivers/mmc/host/cb710-mmc.*
6313 F: include/linux/cb710.h
6314
6315 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6316 M: Maxim Levitsky <maximlevitsky@gmail.com>
6317 S: Maintained
6318 F: drivers/media/rc/ene_ir.*
6319
6320 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6321 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
6322 L: linuxppc-dev@lists.ozlabs.org
6323 S: Maintained
6324 F: drivers/tty/ehv_bytechan.c
6325
6326 EPSON S1D13XXX FRAMEBUFFER DRIVER
6327 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
6328 S: Maintained
6329 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6330 F: drivers/video/fbdev/s1d13xxxfb.c
6331 F: include/video/s1d13xxxfb.h
6332
6333 EROFS FILE SYSTEM
6334 M: Gao Xiang <xiang@kernel.org>
6335 M: Chao Yu <yuchao0@huawei.com>
6336 L: linux-erofs@lists.ozlabs.org
6337 S: Maintained
6338 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6339 F: Documentation/filesystems/erofs.rst
6340 F: fs/erofs/
6341 F: include/trace/events/erofs.h
6342
6343 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6344 M: Jeff Layton <jlayton@kernel.org>
6345 S: Maintained
6346 F: include/linux/errseq.h
6347 F: lib/errseq.c
6348
6349 ET131X NETWORK DRIVER
6350 M: Mark Einon <mark.einon@gmail.com>
6351 S: Odd Fixes
6352 F: drivers/net/ethernet/agere/
6353
6354 ETHERNET BRIDGE
6355 M: Roopa Prabhu <roopa@cumulusnetworks.com>
6356 M: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6357 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
6358 L: netdev@vger.kernel.org
6359 S: Maintained
6360 W: http://www.linuxfoundation.org/en/Net:Bridge
6361 F: include/linux/netfilter_bridge/
6362 F: net/bridge/
6363
6364 ETHERNET PHY LIBRARY
6365 M: Andrew Lunn <andrew@lunn.ch>
6366 M: Florian Fainelli <f.fainelli@gmail.com>
6367 M: Heiner Kallweit <hkallweit1@gmail.com>
6368 R: Russell King <linux@armlinux.org.uk>
6369 L: netdev@vger.kernel.org
6370 S: Maintained
6371 F: Documentation/ABI/testing/sysfs-class-net-phydev
6372 F: Documentation/devicetree/bindings/net/ethernet-phy.yaml
6373 F: Documentation/devicetree/bindings/net/mdio*
6374 F: Documentation/devicetree/bindings/net/qca,ar803x.yaml
6375 F: Documentation/networking/phy.rst
6376 F: drivers/net/phy/
6377 F: drivers/of/of_mdio.c
6378 F: drivers/of/of_net.c
6379 F: include/dt-bindings/net/qca-ar803x.h
6380 F: include/linux/*mdio*.h
6381 F: include/linux/of_net.h
6382 F: include/linux/phy.h
6383 F: include/linux/phy_fixed.h
6384 F: include/linux/platform_data/mdio-bcm-unimac.h
6385 F: include/linux/platform_data/mdio-gpio.h
6386 F: include/trace/events/mdio.h
6387 F: include/uapi/linux/mdio.h
6388 F: include/uapi/linux/mii.h
6389
6390 EXFAT FILE SYSTEM
6391 M: Namjae Jeon <namjae.jeon@samsung.com>
6392 M: Sungjong Seo <sj1557.seo@samsung.com>
6393 L: linux-fsdevel@vger.kernel.org
6394 S: Maintained
6395 F: fs/exfat/
6396
6397 EXT2 FILE SYSTEM
6398 M: Jan Kara <jack@suse.com>
6399 L: linux-ext4@vger.kernel.org
6400 S: Maintained
6401 F: Documentation/filesystems/ext2.rst
6402 F: fs/ext2/
6403 F: include/linux/ext2*
6404
6405 EXT4 FILE SYSTEM
6406 M: "Theodore Ts'o" <tytso@mit.edu>
6407 M: Andreas Dilger <adilger.kernel@dilger.ca>
6408 L: linux-ext4@vger.kernel.org
6409 S: Maintained
6410 W: http://ext4.wiki.kernel.org
6411 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
6412 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6413 F: Documentation/filesystems/ext4/
6414 F: fs/ext4/
6415
6416 Extended Verification Module (EVM)
6417 M: Mimi Zohar <zohar@linux.ibm.com>
6418 L: linux-integrity@vger.kernel.org
6419 S: Supported
6420 F: security/integrity/evm/
6421
6422 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6423 M: Ard Biesheuvel <ardb@kernel.org>
6424 L: linux-efi@vger.kernel.org
6425 S: Maintained
6426 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6427 F: Documentation/admin-guide/efi-stub.rst
6428 F: arch/*/include/asm/efi.h
6429 F: arch/*/kernel/efi.c
6430 F: arch/arm/boot/compressed/efi-header.S
6431 F: arch/arm64/kernel/efi-entry.S
6432 F: arch/x86/platform/efi/
6433 F: drivers/firmware/efi/
6434 F: include/linux/efi*.h
6435
6436 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6437 M: MyungJoo Ham <myungjoo.ham@samsung.com>
6438 M: Chanwoo Choi <cw00.choi@samsung.com>
6439 L: linux-kernel@vger.kernel.org
6440 S: Maintained
6441 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6442 F: Documentation/devicetree/bindings/extcon/
6443 F: Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6444 F: drivers/extcon/
6445 F: include/linux/extcon.h
6446 F: include/linux/extcon/
6447
6448 EXTRA BOOT CONFIG
6449 M: Masami Hiramatsu <mhiramat@kernel.org>
6450 S: Maintained
6451 F: Documentation/admin-guide/bootconfig.rst
6452 F: fs/proc/bootconfig.c
6453 F: include/linux/bootconfig.h
6454 F: lib/bootconfig.c
6455 F: tools/bootconfig/*
6456
6457 EXYNOS DP DRIVER
6458 M: Jingoo Han <jingoohan1@gmail.com>
6459 L: dri-devel@lists.freedesktop.org
6460 S: Maintained
6461 F: drivers/gpu/drm/exynos/exynos_dp*
6462
6463 EXYNOS SYSMMU (IOMMU) driver
6464 M: Marek Szyprowski <m.szyprowski@samsung.com>
6465 L: iommu@lists.linux-foundation.org
6466 S: Maintained
6467 F: drivers/iommu/exynos-iommu.c
6468
6469 EZchip NPS platform support
6470 M: Vineet Gupta <vgupta@synopsys.com>
6471 M: Ofer Levi <oferle@mellanox.com>
6472 S: Supported
6473 F: arch/arc/boot/dts/eznps.dts
6474 F: arch/arc/plat-eznps
6475
6476 F2FS FILE SYSTEM
6477 M: Jaegeuk Kim <jaegeuk@kernel.org>
6478 M: Chao Yu <yuchao0@huawei.com>
6479 L: linux-f2fs-devel@lists.sourceforge.net
6480 S: Maintained
6481 W: https://f2fs.wiki.kernel.org/
6482 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6483 F: Documentation/ABI/testing/sysfs-fs-f2fs
6484 F: Documentation/filesystems/f2fs.rst
6485 F: fs/f2fs/
6486 F: include/linux/f2fs_fs.h
6487 F: include/trace/events/f2fs.h
6488
6489 F71805F HARDWARE MONITORING DRIVER
6490 M: Jean Delvare <jdelvare@suse.com>
6491 L: linux-hwmon@vger.kernel.org
6492 S: Maintained
6493 F: Documentation/hwmon/f71805f.rst
6494 F: drivers/hwmon/f71805f.c
6495
6496 FADDR2LINE
6497 M: Josh Poimboeuf <jpoimboe@redhat.com>
6498 S: Maintained
6499 F: scripts/faddr2line
6500
6501 FAILOVER MODULE
6502 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
6503 L: netdev@vger.kernel.org
6504 S: Supported
6505 F: Documentation/networking/failover.rst
6506 F: include/net/failover.h
6507 F: net/core/failover.c
6508
6509 FANOTIFY
6510 M: Jan Kara <jack@suse.cz>
6511 R: Amir Goldstein <amir73il@gmail.com>
6512 L: linux-fsdevel@vger.kernel.org
6513 S: Maintained
6514 F: fs/notify/fanotify/
6515 F: include/linux/fanotify.h
6516 F: include/uapi/linux/fanotify.h
6517
6518 FARSYNC SYNCHRONOUS DRIVER
6519 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
6520 S: Supported
6521 W: http://www.farsite.co.uk/
6522 F: drivers/net/wan/farsync.*
6523
6524 FAULT INJECTION SUPPORT
6525 M: Akinobu Mita <akinobu.mita@gmail.com>
6526 S: Supported
6527 F: Documentation/fault-injection/
6528 F: lib/fault-inject.c
6529
6530 FBTFT Framebuffer drivers
6531 L: dri-devel@lists.freedesktop.org
6532 L: linux-fbdev@vger.kernel.org
6533 S: Orphan
6534 F: drivers/staging/fbtft/
6535
6536 FC0011 TUNER DRIVER
6537 M: Michael Buesch <m@bues.ch>
6538 L: linux-media@vger.kernel.org
6539 S: Maintained
6540 F: drivers/media/tuners/fc0011.c
6541 F: drivers/media/tuners/fc0011.h
6542
6543 FC2580 MEDIA DRIVER
6544 M: Antti Palosaari <crope@iki.fi>
6545 L: linux-media@vger.kernel.org
6546 S: Maintained
6547 W: https://linuxtv.org
6548 W: http://palosaari.fi/linux/
6549 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6550 T: git git://linuxtv.org/anttip/media_tree.git
6551 F: drivers/media/tuners/fc2580*
6552
6553 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6554 M: Hannes Reinecke <hare@suse.de>
6555 L: linux-scsi@vger.kernel.org
6556 S: Supported
6557 W: www.Open-FCoE.org
6558 F: drivers/scsi/fcoe/
6559 F: drivers/scsi/libfc/
6560 F: include/scsi/fc/
6561 F: include/scsi/libfc.h
6562 F: include/scsi/libfcoe.h
6563 F: include/uapi/scsi/fc/
6564
6565 FILE LOCKING (flock() and fcntl()/lockf())
6566 M: Jeff Layton <jlayton@kernel.org>
6567 M: "J. Bruce Fields" <bfields@fieldses.org>
6568 L: linux-fsdevel@vger.kernel.org
6569 S: Maintained
6570 F: fs/fcntl.c
6571 F: fs/locks.c
6572 F: include/linux/fcntl.h
6573 F: include/uapi/linux/fcntl.h
6574
6575 FILESYSTEM DIRECT ACCESS (DAX)
6576 M: Dan Williams <dan.j.williams@intel.com>
6577 R: Matthew Wilcox <willy@infradead.org>
6578 R: Jan Kara <jack@suse.cz>
6579 L: linux-fsdevel@vger.kernel.org
6580 L: linux-nvdimm@lists.01.org
6581 S: Supported
6582 F: fs/dax.c
6583 F: include/linux/dax.h
6584 F: include/trace/events/fs_dax.h
6585
6586 FILESYSTEMS (VFS and infrastructure)
6587 M: Alexander Viro <viro@zeniv.linux.org.uk>
6588 L: linux-fsdevel@vger.kernel.org
6589 S: Maintained
6590 F: fs/*
6591 F: include/linux/fs.h
6592 F: include/linux/fs_types.h
6593 F: include/uapi/linux/fs.h
6594 F: include/uapi/linux/openat2.h
6595
6596 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6597 M: Riku Voipio <riku.voipio@iki.fi>
6598 L: linux-hwmon@vger.kernel.org
6599 S: Maintained
6600 F: drivers/hwmon/f75375s.c
6601 F: include/linux/f75375s.h
6602
6603 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6604 M: Clemens Ladisch <clemens@ladisch.de>
6605 M: Takashi Sakamoto <o-takashi@sakamocchi.jp>
6606 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6607 S: Maintained
6608 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6609 F: include/uapi/sound/firewire.h
6610 F: sound/firewire/
6611
6612 FIREWIRE MEDIA DRIVERS (firedtv)
6613 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
6614 L: linux-media@vger.kernel.org
6615 L: linux1394-devel@lists.sourceforge.net
6616 S: Maintained
6617 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6618 F: drivers/media/firewire/
6619
6620 FIREWIRE SBP-2 TARGET
6621 M: Chris Boot <bootc@bootc.net>
6622 L: linux-scsi@vger.kernel.org
6623 L: target-devel@vger.kernel.org
6624 L: linux1394-devel@lists.sourceforge.net
6625 S: Maintained
6626 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6627 F: drivers/target/sbp/
6628
6629 FIREWIRE SUBSYSTEM
6630 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
6631 L: linux1394-devel@lists.sourceforge.net
6632 S: Maintained
6633 W: http://ieee1394.wiki.kernel.org/
6634 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6635 F: drivers/firewire/
6636 F: include/linux/firewire.h
6637 F: include/uapi/linux/firewire*.h
6638 F: tools/firewire/
6639
6640 FIRMWARE LOADER (request_firmware)
6641 M: Luis Chamberlain <mcgrof@kernel.org>
6642 L: linux-kernel@vger.kernel.org
6643 S: Maintained
6644 F: Documentation/firmware_class/
6645 F: drivers/base/firmware_loader/
6646 F: include/linux/firmware.h
6647
6648 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6649 M: Joshua Morris <josh.h.morris@us.ibm.com>
6650 M: Philip Kelleher <pjk1939@linux.ibm.com>
6651 S: Maintained
6652 F: drivers/block/rsxx/
6653
6654 FLEXTIMER FTM-QUADDEC DRIVER
6655 M: Patrick Havelange <patrick.havelange@essensium.com>
6656 L: linux-iio@vger.kernel.org
6657 S: Maintained
6658 F: Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6659 F: Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6660 F: drivers/counter/ftm-quaddec.c
6661
6662 FLOPPY DRIVER
6663 M: Denis Efremov <efremov@linux.com>
6664 L: linux-block@vger.kernel.org
6665 S: Odd Fixes
6666 F: drivers/block/floppy.c
6667
6668 FLYSKY FSIA6B RC RECEIVER
6669 M: Markus Koch <markus@notsyncing.net>
6670 L: linux-input@vger.kernel.org
6671 S: Maintained
6672 F: drivers/input/joystick/fsia6b.c
6673
6674 FORCEDETH GIGABIT ETHERNET DRIVER
6675 M: Rain River <rain.1986.08.12@gmail.com>
6676 M: Zhu Yanjun <zyjzyj2000@gmail.com>
6677 L: netdev@vger.kernel.org
6678 S: Maintained
6679 F: drivers/net/ethernet/nvidia/*
6680
6681 FPGA DFL DRIVERS
6682 M: Wu Hao <hao.wu@intel.com>
6683 L: linux-fpga@vger.kernel.org
6684 S: Maintained
6685 F: Documentation/fpga/dfl.rst
6686 F: drivers/fpga/dfl*
6687 F: include/uapi/linux/fpga-dfl.h
6688
6689 FPGA MANAGER FRAMEWORK
6690 M: Moritz Fischer <mdf@kernel.org>
6691 L: linux-fpga@vger.kernel.org
6692 S: Maintained
6693 W: http://www.rocketboards.org
6694 Q: http://patchwork.kernel.org/project/linux-fpga/list/
6695 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6696 F: Documentation/devicetree/bindings/fpga/
6697 F: Documentation/driver-api/fpga/
6698 F: Documentation/fpga/
6699 F: drivers/fpga/
6700 F: include/linux/fpga/
6701
6702 FPU EMULATOR
6703 M: Bill Metzenthen <billm@melbpc.org.au>
6704 S: Maintained
6705 W: http://floatingpoint.sourceforge.net/emulator/index.html
6706 F: arch/x86/math-emu/
6707
6708 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6709 L: netdev@vger.kernel.org
6710 S: Orphan
6711 F: drivers/net/wan/dlci.c
6712 F: drivers/net/wan/sdla.c
6713
6714 FRAMEBUFFER LAYER
6715 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6716 L: dri-devel@lists.freedesktop.org
6717 L: linux-fbdev@vger.kernel.org
6718 S: Maintained
6719 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
6720 T: git git://anongit.freedesktop.org/drm/drm-misc
6721 F: Documentation/fb/
6722 F: drivers/video/
6723 F: include/linux/fb.h
6724 F: include/uapi/linux/fb.h
6725 F: include/uapi/video/
6726 F: include/video/
6727
6728 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6729 M: Horia Geantă <horia.geanta@nxp.com>
6730 M: Aymen Sghaier <aymen.sghaier@nxp.com>
6731 L: linux-crypto@vger.kernel.org
6732 S: Maintained
6733 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6734 F: drivers/crypto/caam/
6735
6736 FREESCALE COLDFIRE M5441X MMC DRIVER
6737 M: Angelo Dureghello <angelo.dureghello@timesys.com>
6738 L: linux-mmc@vger.kernel.org
6739 S: Maintained
6740 F: drivers/mmc/host/sdhci-esdhc-mcf.c
6741 F: include/linux/platform_data/mmc-esdhc-mcf.h
6742
6743 FREESCALE DIU FRAMEBUFFER DRIVER
6744 M: Timur Tabi <timur@kernel.org>
6745 L: linux-fbdev@vger.kernel.org
6746 S: Maintained
6747 F: drivers/video/fbdev/fsl-diu-fb.*
6748
6749 FREESCALE DMA DRIVER
6750 M: Li Yang <leoyang.li@nxp.com>
6751 M: Zhang Wei <zw@zh-kernel.org>
6752 L: linuxppc-dev@lists.ozlabs.org
6753 S: Maintained
6754 F: drivers/dma/fsldma.*
6755
6756 FREESCALE ENETC ETHERNET DRIVERS
6757 M: Claudiu Manoil <claudiu.manoil@nxp.com>
6758 L: netdev@vger.kernel.org
6759 S: Maintained
6760 F: drivers/net/ethernet/freescale/enetc/
6761
6762 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6763 M: Claudiu Manoil <claudiu.manoil@nxp.com>
6764 L: netdev@vger.kernel.org
6765 S: Maintained
6766 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6767 F: drivers/net/ethernet/freescale/gianfar*
6768
6769 FREESCALE GPMI NAND DRIVER
6770 M: Han Xu <han.xu@nxp.com>
6771 L: linux-mtd@lists.infradead.org
6772 S: Maintained
6773 F: drivers/mtd/nand/raw/gpmi-nand/*
6774
6775 FREESCALE I2C CPM DRIVER
6776 M: Jochen Friedrich <jochen@scram.de>
6777 L: linuxppc-dev@lists.ozlabs.org
6778 L: linux-i2c@vger.kernel.org
6779 S: Maintained
6780 F: drivers/i2c/busses/i2c-cpm.c
6781
6782 FREESCALE IMX / MXC FEC DRIVER
6783 M: Fugang Duan <fugang.duan@nxp.com>
6784 L: netdev@vger.kernel.org
6785 S: Maintained
6786 F: Documentation/devicetree/bindings/net/fsl-fec.txt
6787 F: drivers/net/ethernet/freescale/fec.h
6788 F: drivers/net/ethernet/freescale/fec_main.c
6789 F: drivers/net/ethernet/freescale/fec_ptp.c
6790
6791 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6792 M: Sascha Hauer <s.hauer@pengutronix.de>
6793 R: Pengutronix Kernel Team <kernel@pengutronix.de>
6794 L: linux-fbdev@vger.kernel.org
6795 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6796 S: Maintained
6797 F: drivers/video/fbdev/imxfb.c
6798 F: include/linux/platform_data/video-imxfb.h
6799
6800 FREESCALE IMX DDR PMU DRIVER
6801 M: Frank Li <Frank.li@nxp.com>
6802 L: linux-arm-kernel@lists.infradead.org
6803 S: Maintained
6804 F: Documentation/admin-guide/perf/imx-ddr.rst
6805 F: Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6806 F: drivers/perf/fsl_imx8_ddr_perf.c
6807
6808 FREESCALE IMX I2C DRIVER
6809 M: Oleksij Rempel <o.rempel@pengutronix.de>
6810 R: Pengutronix Kernel Team <kernel@pengutronix.de>
6811 L: linux-i2c@vger.kernel.org
6812 S: Maintained
6813 F: Documentation/devicetree/bindings/i2c/i2c-imx.txt
6814 F: drivers/i2c/busses/i2c-imx.c
6815
6816 FREESCALE IMX LPI2C DRIVER
6817 M: Dong Aisheng <aisheng.dong@nxp.com>
6818 L: linux-i2c@vger.kernel.org
6819 L: linux-imx@nxp.com
6820 S: Maintained
6821 F: Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6822 F: drivers/i2c/busses/i2c-imx-lpi2c.c
6823
6824 FREESCALE QORIQ DPAA ETHERNET DRIVER
6825 M: Madalin Bucur <madalin.bucur@nxp.com>
6826 L: netdev@vger.kernel.org
6827 S: Maintained
6828 F: drivers/net/ethernet/freescale/dpaa
6829
6830 FREESCALE QORIQ DPAA FMAN DRIVER
6831 M: Madalin Bucur <madalin.bucur@nxp.com>
6832 L: netdev@vger.kernel.org
6833 S: Maintained
6834 F: Documentation/devicetree/bindings/net/fsl-fman.txt
6835 F: drivers/net/ethernet/freescale/fman
6836
6837 FREESCALE QORIQ PTP CLOCK DRIVER
6838 M: Yangbo Lu <yangbo.lu@nxp.com>
6839 L: netdev@vger.kernel.org
6840 S: Maintained
6841 F: Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6842 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6843 F: drivers/net/ethernet/freescale/dpaa2/dprtc*
6844 F: drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6845 F: drivers/ptp/ptp_qoriq.c
6846 F: drivers/ptp/ptp_qoriq_debugfs.c
6847 F: include/linux/fsl/ptp_qoriq.h
6848
6849 FREESCALE QUAD SPI DRIVER
6850 M: Han Xu <han.xu@nxp.com>
6851 L: linux-spi@vger.kernel.org
6852 S: Maintained
6853 F: drivers/spi/spi-fsl-qspi.c
6854
6855 FREESCALE QUICC ENGINE LIBRARY
6856 M: Qiang Zhao <qiang.zhao@nxp.com>
6857 L: linuxppc-dev@lists.ozlabs.org
6858 S: Maintained
6859 F: drivers/soc/fsl/qe/
6860 F: include/soc/fsl/*qe*.h
6861 F: include/soc/fsl/*ucc*.h
6862
6863 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6864 M: Li Yang <leoyang.li@nxp.com>
6865 L: netdev@vger.kernel.org
6866 L: linuxppc-dev@lists.ozlabs.org
6867 S: Maintained
6868 F: drivers/net/ethernet/freescale/ucc_geth*
6869
6870 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6871 M: Zhao Qiang <qiang.zhao@nxp.com>
6872 L: netdev@vger.kernel.org
6873 L: linuxppc-dev@lists.ozlabs.org
6874 S: Maintained
6875 F: drivers/net/wan/fsl_ucc_hdlc*
6876
6877 FREESCALE QUICC ENGINE UCC UART DRIVER
6878 M: Timur Tabi <timur@kernel.org>
6879 L: linuxppc-dev@lists.ozlabs.org
6880 S: Maintained
6881 F: drivers/tty/serial/ucc_uart.c
6882
6883 FREESCALE SOC DRIVERS
6884 M: Li Yang <leoyang.li@nxp.com>
6885 L: linuxppc-dev@lists.ozlabs.org
6886 L: linux-arm-kernel@lists.infradead.org
6887 S: Maintained
6888 F: Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6889 F: Documentation/devicetree/bindings/soc/fsl/
6890 F: drivers/soc/fsl/
6891 F: include/linux/fsl/
6892
6893 FREESCALE SOC FS_ENET DRIVER
6894 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
6895 L: linuxppc-dev@lists.ozlabs.org
6896 L: netdev@vger.kernel.org
6897 S: Maintained
6898 F: drivers/net/ethernet/freescale/fs_enet/
6899 F: include/linux/fs_enet_pd.h
6900
6901 FREESCALE SOC SOUND DRIVERS
6902 M: Timur Tabi <timur@kernel.org>
6903 M: Nicolin Chen <nicoleotsuka@gmail.com>
6904 M: Xiubo Li <Xiubo.Lee@gmail.com>
6905 R: Fabio Estevam <festevam@gmail.com>
6906 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6907 L: linuxppc-dev@lists.ozlabs.org
6908 S: Maintained
6909 F: sound/soc/fsl/fsl*
6910 F: sound/soc/fsl/imx*
6911 F: sound/soc/fsl/mpc8610_hpcd.c
6912
6913 FREESCALE USB PERIPHERAL DRIVERS
6914 M: Li Yang <leoyang.li@nxp.com>
6915 L: linux-usb@vger.kernel.org
6916 L: linuxppc-dev@lists.ozlabs.org
6917 S: Maintained
6918 F: drivers/usb/gadget/udc/fsl*
6919
6920 FREEVXFS FILESYSTEM
6921 M: Christoph Hellwig <hch@infradead.org>
6922 S: Maintained
6923 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
6924 F: fs/freevxfs/
6925
6926 FREEZER
6927 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
6928 M: Pavel Machek <pavel@ucw.cz>
6929 L: linux-pm@vger.kernel.org
6930 S: Supported
6931 F: Documentation/power/freezing-of-tasks.rst
6932 F: include/linux/freezer.h
6933 F: kernel/freezer.c
6934
6935 FRONTSWAP API
6936 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6937 L: linux-kernel@vger.kernel.org
6938 S: Maintained
6939 F: include/linux/frontswap.h
6940 F: mm/frontswap.c
6941
6942 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6943 M: David Howells <dhowells@redhat.com>
6944 L: linux-cachefs@redhat.com (moderated for non-subscribers)
6945 S: Supported
6946 F: Documentation/filesystems/caching/
6947 F: fs/fscache/
6948 F: include/linux/fscache*.h
6949
6950 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6951 M: Theodore Y. Ts'o <tytso@mit.edu>
6952 M: Jaegeuk Kim <jaegeuk@kernel.org>
6953 M: Eric Biggers <ebiggers@kernel.org>
6954 L: linux-fscrypt@vger.kernel.org
6955 S: Supported
6956 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
6957 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6958 F: Documentation/filesystems/fscrypt.rst
6959 F: fs/crypto/
6960 F: include/linux/fscrypt*.h
6961 F: include/uapi/linux/fscrypt.h
6962
6963 FSI SUBSYSTEM
6964 M: Jeremy Kerr <jk@ozlabs.org>
6965 M: Joel Stanley <joel@jms.id.au>
6966 R: Alistar Popple <alistair@popple.id.au>
6967 R: Eddie James <eajames@linux.ibm.com>
6968 L: linux-fsi@lists.ozlabs.org
6969 S: Supported
6970 Q: http://patchwork.ozlabs.org/project/linux-fsi/list/
6971 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6972 F: drivers/fsi/
6973 F: include/linux/fsi*.h
6974 F: include/trace/events/fsi*.h
6975
6976 FSI-ATTACHED I2C DRIVER
6977 M: Eddie James <eajames@linux.ibm.com>
6978 L: linux-i2c@vger.kernel.org
6979 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
6980 S: Maintained
6981 F: Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6982 F: drivers/i2c/busses/i2c-fsi.c
6983
6984 FSI-ATTACHED SPI DRIVER
6985 M: Eddie James <eajames@linux.ibm.com>
6986 L: linux-spi@vger.kernel.org
6987 S: Maintained
6988 F: Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
6989 F: drivers/spi/spi-fsi.c
6990
6991 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6992 M: Jan Kara <jack@suse.cz>
6993 R: Amir Goldstein <amir73il@gmail.com>
6994 L: linux-fsdevel@vger.kernel.org
6995 S: Maintained
6996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
6997 F: fs/notify/
6998 F: include/linux/fsnotify*.h
6999
7000 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7001 M: Eric Biggers <ebiggers@kernel.org>
7002 M: Theodore Y. Ts'o <tytso@mit.edu>
7003 L: linux-fscrypt@vger.kernel.org
7004 S: Supported
7005 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7006 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7007 F: Documentation/filesystems/fsverity.rst
7008 F: fs/verity/
7009 F: include/linux/fsverity.h
7010 F: include/uapi/linux/fsverity.h
7011
7012 FUJITSU LAPTOP EXTRAS
7013 M: Jonathan Woithe <jwoithe@just42.net>
7014 L: platform-driver-x86@vger.kernel.org
7015 S: Maintained
7016 F: drivers/platform/x86/fujitsu-laptop.c
7017
7018 FUJITSU M-5MO LS CAMERA ISP DRIVER
7019 M: Kyungmin Park <kyungmin.park@samsung.com>
7020 M: Heungjun Kim <riverful.kim@samsung.com>
7021 L: linux-media@vger.kernel.org
7022 S: Maintained
7023 F: drivers/media/i2c/m5mols/
7024 F: include/media/i2c/m5mols.h
7025
7026 FUJITSU TABLET EXTRAS
7027 M: Robert Gerlach <khnz@gmx.de>
7028 L: platform-driver-x86@vger.kernel.org
7029 S: Maintained
7030 F: drivers/platform/x86/fujitsu-tablet.c
7031
7032 FUSE: FILESYSTEM IN USERSPACE
7033 M: Miklos Szeredi <miklos@szeredi.hu>
7034 L: linux-fsdevel@vger.kernel.org
7035 S: Maintained
7036 W: http://fuse.sourceforge.net/
7037 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7038 F: Documentation/filesystems/fuse.rst
7039 F: fs/fuse/
7040 F: include/uapi/linux/fuse.h
7041
7042 FUTEX SUBSYSTEM
7043 M: Thomas Gleixner <tglx@linutronix.de>
7044 M: Ingo Molnar <mingo@redhat.com>
7045 R: Peter Zijlstra <peterz@infradead.org>
7046 R: Darren Hart <dvhart@infradead.org>
7047 L: linux-kernel@vger.kernel.org
7048 S: Maintained
7049 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7050 F: Documentation/locking/*futex*
7051 F: include/asm-generic/futex.h
7052 F: include/linux/futex.h
7053 F: include/uapi/linux/futex.h
7054 F: kernel/futex.c
7055 F: tools/perf/bench/futex*
7056 F: Documentation/locking/*futex*
7057
7058 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7059 M: Tim Harvey <tharvey@gateworks.com>
7060 M: Robert Jones <rjones@gateworks.com>
7061 S: Maintained
7062 F: Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7063 F: drivers/mfd/gateworks-gsc.c
7064 F: include/linux/mfd/gsc.h
7065 F: Documentation/hwmon/gsc-hwmon.rst
7066 F: drivers/hwmon/gsc-hwmon.c
7067 F: include/linux/platform_data/gsc_hwmon.h
7068
7069 GASKET DRIVER FRAMEWORK
7070 M: Rob Springer <rspringer@google.com>
7071 M: Todd Poynor <toddpoynor@google.com>
7072 M: Ben Chan <benchan@chromium.org>
7073 S: Maintained
7074 F: drivers/staging/gasket/
7075
7076 GCC PLUGINS
7077 M: Kees Cook <keescook@chromium.org>
7078 R: Emese Revfy <re.emese@gmail.com>
7079 L: kernel-hardening@lists.openwall.com
7080 S: Maintained
7081 F: Documentation/kbuild/gcc-plugins.rst
7082 F: scripts/Makefile.gcc-plugins
7083 F: scripts/gcc-plugin.sh
7084 F: scripts/gcc-plugins/
7085
7086 GCOV BASED KERNEL PROFILING
7087 M: Peter Oberparleiter <oberpar@linux.ibm.com>
7088 S: Maintained
7089 F: Documentation/dev-tools/gcov.rst
7090 F: kernel/gcov/
7091
7092 GDB KERNEL DEBUGGING HELPER SCRIPTS
7093 M: Jan Kiszka <jan.kiszka@siemens.com>
7094 M: Kieran Bingham <kbingham@kernel.org>
7095 S: Supported
7096 F: scripts/gdb/
7097
7098 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7099 M: Achim Leubner <achim_leubner@adaptec.com>
7100 L: linux-scsi@vger.kernel.org
7101 S: Supported
7102 W: http://www.icp-vortex.com/
7103 F: drivers/scsi/gdt*
7104
7105 GEMTEK FM RADIO RECEIVER DRIVER
7106 M: Hans Verkuil <hverkuil@xs4all.nl>
7107 L: linux-media@vger.kernel.org
7108 S: Maintained
7109 W: https://linuxtv.org
7110 T: git git://linuxtv.org/media_tree.git
7111 F: drivers/media/radio/radio-gemtek*
7112
7113 GENERIC ARCHITECTURE TOPOLOGY
7114 M: Sudeep Holla <sudeep.holla@arm.com>
7115 L: linux-kernel@vger.kernel.org
7116 S: Maintained
7117 F: drivers/base/arch_topology.c
7118 F: include/linux/arch_topology.h
7119
7120 GENERIC GPIO I2C DRIVER
7121 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7122 S: Supported
7123 F: drivers/i2c/busses/i2c-gpio.c
7124 F: include/linux/platform_data/i2c-gpio.h
7125
7126 GENERIC GPIO I2C MULTIPLEXER DRIVER
7127 M: Peter Korsgaard <peter.korsgaard@barco.com>
7128 L: linux-i2c@vger.kernel.org
7129 S: Supported
7130 F: Documentation/i2c/muxes/i2c-mux-gpio.rst
7131 F: drivers/i2c/muxes/i2c-mux-gpio.c
7132 F: include/linux/platform_data/i2c-mux-gpio.h
7133
7134 GENERIC HDLC (WAN) DRIVERS
7135 M: Krzysztof Halasa <khc@pm.waw.pl>
7136 S: Maintained
7137 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
7138 F: drivers/net/wan/c101.c
7139 F: drivers/net/wan/hd6457*
7140 F: drivers/net/wan/hdlc*
7141 F: drivers/net/wan/n2.c
7142 F: drivers/net/wan/pc300too.c
7143 F: drivers/net/wan/pci200syn.c
7144 F: drivers/net/wan/wanxl*
7145
7146 GENERIC INCLUDE/ASM HEADER FILES
7147 M: Arnd Bergmann <arnd@arndb.de>
7148 L: linux-arch@vger.kernel.org
7149 S: Maintained
7150 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7151 F: include/asm-generic/
7152 F: include/uapi/asm-generic/
7153
7154 GENERIC PHY FRAMEWORK
7155 M: Kishon Vijay Abraham I <kishon@ti.com>
7156 M: Vinod Koul <vkoul@kernel.org>
7157 L: linux-kernel@vger.kernel.org
7158 S: Supported
7159 T: git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7160 F: Documentation/devicetree/bindings/phy/
7161 F: drivers/phy/
7162 F: include/linux/phy/
7163
7164 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7165 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7166 S: Supported
7167 F: drivers/i2c/muxes/i2c-demux-pinctrl.c
7168
7169 GENERIC PM DOMAINS
7170 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
7171 M: Kevin Hilman <khilman@kernel.org>
7172 M: Ulf Hansson <ulf.hansson@linaro.org>
7173 L: linux-pm@vger.kernel.org
7174 S: Supported
7175 F: Documentation/devicetree/bindings/power/power?domain*
7176 F: drivers/base/power/domain*.c
7177 F: include/linux/pm_domain.h
7178
7179 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7180 M: Eugen Hristev <eugen.hristev@microchip.com>
7181 L: linux-input@vger.kernel.org
7182 S: Maintained
7183 F: drivers/input/touchscreen/resistive-adc-touch.c
7184
7185 GENERIC UIO DRIVER FOR PCI DEVICES
7186 M: "Michael S. Tsirkin" <mst@redhat.com>
7187 L: kvm@vger.kernel.org
7188 S: Supported
7189 F: drivers/uio/uio_pci_generic.c
7190
7191 GENERIC VDSO LIBRARY
7192 M: Andy Lutomirski <luto@kernel.org>
7193 M: Thomas Gleixner <tglx@linutronix.de>
7194 M: Vincenzo Frascino <vincenzo.frascino@arm.com>
7195 L: linux-kernel@vger.kernel.org
7196 S: Maintained
7197 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7198 F: include/asm-generic/vdso/vsyscall.h
7199 F: include/vdso/
7200 F: kernel/time/vsyscall.c
7201 F: lib/vdso/
7202
7203 GENWQE (IBM Generic Workqueue Card)
7204 M: Frank Haverkamp <haver@linux.ibm.com>
7205 S: Supported
7206 F: drivers/misc/genwqe/
7207
7208 GET_MAINTAINER SCRIPT
7209 M: Joe Perches <joe@perches.com>
7210 S: Maintained
7211 F: scripts/get_maintainer.pl
7212
7213 GFS2 FILE SYSTEM
7214 M: Bob Peterson <rpeterso@redhat.com>
7215 M: Andreas Gruenbacher <agruenba@redhat.com>
7216 L: cluster-devel@redhat.com
7217 S: Supported
7218 W: http://sources.redhat.com/cluster/
7219 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7220 F: Documentation/filesystems/gfs2*.txt
7221 F: fs/gfs2/
7222 F: include/uapi/linux/gfs2_ondisk.h
7223
7224 GNSS SUBSYSTEM
7225 M: Johan Hovold <johan@kernel.org>
7226 S: Maintained
7227 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7228 F: Documentation/ABI/testing/sysfs-class-gnss
7229 F: Documentation/devicetree/bindings/gnss/
7230 F: drivers/gnss/
7231 F: include/linux/gnss.h
7232
7233 GO7007 MPEG CODEC
7234 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
7235 L: linux-media@vger.kernel.org
7236 S: Maintained
7237 F: drivers/media/usb/go7007/
7238
7239 GOODIX TOUCHSCREEN
7240 M: Bastien Nocera <hadess@hadess.net>
7241 L: linux-input@vger.kernel.org
7242 S: Maintained
7243 F: drivers/input/touchscreen/goodix.c
7244
7245 GOOGLE ETHERNET DRIVERS
7246 M: Catherine Sullivan <csully@google.com>
7247 R: Sagi Shahar <sagis@google.com>
7248 R: Jon Olson <jonolson@google.com>
7249 L: netdev@vger.kernel.org
7250 S: Supported
7251 F: Documentation/networking/device_drivers/google/gve.rst
7252 F: drivers/net/ethernet/google
7253
7254 GPD POCKET FAN DRIVER
7255 M: Hans de Goede <hdegoede@redhat.com>
7256 L: platform-driver-x86@vger.kernel.org
7257 S: Maintained
7258 F: drivers/platform/x86/gpd-pocket-fan.c
7259
7260 GPIO ACPI SUPPORT
7261 M: Mika Westerberg <mika.westerberg@linux.intel.com>
7262 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7263 L: linux-gpio@vger.kernel.org
7264 L: linux-acpi@vger.kernel.org
7265 S: Maintained
7266 F: Documentation/firmware-guide/acpi/gpio-properties.rst
7267 F: drivers/gpio/gpiolib-acpi.c
7268 F: drivers/gpio/gpiolib-acpi.h
7269
7270 GPIO IR Transmitter
7271 M: Sean Young <sean@mess.org>
7272 L: linux-media@vger.kernel.org
7273 S: Maintained
7274 F: drivers/media/rc/gpio-ir-tx.c
7275
7276 GPIO MOCKUP DRIVER
7277 M: Bamvor Jian Zhang <bamv2005@gmail.com>
7278 L: linux-gpio@vger.kernel.org
7279 S: Maintained
7280 F: drivers/gpio/gpio-mockup.c
7281 F: tools/testing/selftests/gpio/
7282
7283 GPIO SUBSYSTEM
7284 M: Linus Walleij <linus.walleij@linaro.org>
7285 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
7286 L: linux-gpio@vger.kernel.org
7287 S: Maintained
7288 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7289 F: Documentation/ABI/obsolete/sysfs-gpio
7290 F: Documentation/ABI/testing/gpio-cdev
7291 F: Documentation/admin-guide/gpio/
7292 F: Documentation/devicetree/bindings/gpio/
7293 F: Documentation/driver-api/gpio/
7294 F: drivers/gpio/
7295 F: include/asm-generic/gpio.h
7296 F: include/linux/gpio.h
7297 F: include/linux/gpio/
7298 F: include/linux/of_gpio.h
7299 F: include/uapi/linux/gpio.h
7300 F: tools/gpio/
7301
7302 GRE DEMULTIPLEXER DRIVER
7303 M: Dmitry Kozlov <xeb@mail.ru>
7304 L: netdev@vger.kernel.org
7305 S: Maintained
7306 F: include/net/gre.h
7307 F: net/ipv4/gre_demux.c
7308 F: net/ipv4/gre_offload.c
7309
7310 GRETH 10/100/1G Ethernet MAC device driver
7311 M: Andreas Larsson <andreas@gaisler.com>
7312 L: netdev@vger.kernel.org
7313 S: Maintained
7314 F: drivers/net/ethernet/aeroflex/
7315
7316 GREYBUS AUDIO PROTOCOLS DRIVERS
7317 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
7318 M: Mark Greer <mgreer@animalcreek.com>
7319 S: Maintained
7320 F: drivers/staging/greybus/audio_apbridgea.c
7321 F: drivers/staging/greybus/audio_apbridgea.h
7322 F: drivers/staging/greybus/audio_codec.c
7323 F: drivers/staging/greybus/audio_codec.h
7324 F: drivers/staging/greybus/audio_gb.c
7325 F: drivers/staging/greybus/audio_manager.c
7326 F: drivers/staging/greybus/audio_manager.h
7327 F: drivers/staging/greybus/audio_manager_module.c
7328 F: drivers/staging/greybus/audio_manager_private.h
7329 F: drivers/staging/greybus/audio_manager_sysfs.c
7330 F: drivers/staging/greybus/audio_module.c
7331 F: drivers/staging/greybus/audio_topology.c
7332
7333 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7334 M: Viresh Kumar <vireshk@kernel.org>
7335 S: Maintained
7336 F: drivers/staging/greybus/authentication.c
7337 F: drivers/staging/greybus/bootrom.c
7338 F: drivers/staging/greybus/firmware.h
7339 F: drivers/staging/greybus/fw-core.c
7340 F: drivers/staging/greybus/fw-download.c
7341 F: drivers/staging/greybus/fw-management.c
7342 F: drivers/staging/greybus/greybus_authentication.h
7343 F: drivers/staging/greybus/greybus_firmware.h
7344 F: drivers/staging/greybus/hid.c
7345 F: drivers/staging/greybus/i2c.c
7346 F: drivers/staging/greybus/spi.c
7347 F: drivers/staging/greybus/spilib.c
7348 F: drivers/staging/greybus/spilib.h
7349
7350 GREYBUS LOOPBACK DRIVER
7351 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
7352 S: Maintained
7353 F: drivers/staging/greybus/loopback.c
7354
7355 GREYBUS PLATFORM DRIVERS
7356 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7357 S: Maintained
7358 F: drivers/staging/greybus/arche-apb-ctrl.c
7359 F: drivers/staging/greybus/arche-platform.c
7360 F: drivers/staging/greybus/arche_platform.h
7361
7362 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7363 M: Rui Miguel Silva <rmfrfs@gmail.com>
7364 S: Maintained
7365 F: drivers/staging/greybus/gpio.c
7366 F: drivers/staging/greybus/light.c
7367 F: drivers/staging/greybus/power_supply.c
7368 F: drivers/staging/greybus/sdio.c
7369 F: drivers/staging/greybus/spi.c
7370 F: drivers/staging/greybus/spilib.c
7371
7372 GREYBUS SUBSYSTEM
7373 M: Johan Hovold <johan@kernel.org>
7374 M: Alex Elder <elder@kernel.org>
7375 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7376 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
7377 S: Maintained
7378 F: drivers/greybus/
7379 F: drivers/staging/greybus/
7380 F: include/linux/greybus.h
7381 F: include/linux/greybus/
7382
7383 GREYBUS UART PROTOCOLS DRIVERS
7384 M: David Lin <dtwlin@gmail.com>
7385 S: Maintained
7386 F: drivers/staging/greybus/log.c
7387 F: drivers/staging/greybus/uart.c
7388
7389 GS1662 VIDEO SERIALIZER
7390 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7391 L: linux-media@vger.kernel.org
7392 S: Maintained
7393 T: git git://linuxtv.org/media_tree.git
7394 F: drivers/media/spi/gs1662.c
7395
7396 GSPCA FINEPIX SUBDRIVER
7397 M: Frank Zago <frank@zago.net>
7398 L: linux-media@vger.kernel.org
7399 S: Maintained
7400 T: git git://linuxtv.org/media_tree.git
7401 F: drivers/media/usb/gspca/finepix.c
7402
7403 GSPCA GL860 SUBDRIVER
7404 M: Olivier Lorin <o.lorin@laposte.net>
7405 L: linux-media@vger.kernel.org
7406 S: Maintained
7407 T: git git://linuxtv.org/media_tree.git
7408 F: drivers/media/usb/gspca/gl860/
7409
7410 GSPCA M5602 SUBDRIVER
7411 M: Erik Andren <erik.andren@gmail.com>
7412 L: linux-media@vger.kernel.org
7413 S: Maintained
7414 T: git git://linuxtv.org/media_tree.git
7415 F: drivers/media/usb/gspca/m5602/
7416
7417 GSPCA PAC207 SONIXB SUBDRIVER
7418 M: Hans Verkuil <hverkuil@xs4all.nl>
7419 L: linux-media@vger.kernel.org
7420 S: Odd Fixes
7421 T: git git://linuxtv.org/media_tree.git
7422 F: drivers/media/usb/gspca/pac207.c
7423
7424 GSPCA SN9C20X SUBDRIVER
7425 M: Brian Johnson <brijohn@gmail.com>
7426 L: linux-media@vger.kernel.org
7427 S: Maintained
7428 T: git git://linuxtv.org/media_tree.git
7429 F: drivers/media/usb/gspca/sn9c20x.c
7430
7431 GSPCA T613 SUBDRIVER
7432 M: Leandro Costantino <lcostantino@gmail.com>
7433 L: linux-media@vger.kernel.org
7434 S: Maintained
7435 T: git git://linuxtv.org/media_tree.git
7436 F: drivers/media/usb/gspca/t613.c
7437
7438 GSPCA USB WEBCAM DRIVER
7439 M: Hans Verkuil <hverkuil@xs4all.nl>
7440 L: linux-media@vger.kernel.org
7441 S: Odd Fixes
7442 T: git git://linuxtv.org/media_tree.git
7443 F: drivers/media/usb/gspca/
7444
7445 GTP (GPRS Tunneling Protocol)
7446 M: Pablo Neira Ayuso <pablo@netfilter.org>
7447 M: Harald Welte <laforge@gnumonks.org>
7448 L: osmocom-net-gprs@lists.osmocom.org
7449 S: Maintained
7450 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7451 F: drivers/net/gtp.c
7452
7453 GUID PARTITION TABLE (GPT)
7454 M: Davidlohr Bueso <dave@stgolabs.net>
7455 L: linux-efi@vger.kernel.org
7456 S: Maintained
7457 F: block/partitions/efi.*
7458
7459 H8/300 ARCHITECTURE
7460 M: Yoshinori Sato <ysato@users.sourceforge.jp>
7461 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7462 S: Maintained
7463 W: http://uclinux-h8.sourceforge.jp
7464 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7465 F: arch/h8300/
7466 F: drivers/clk/h8300/
7467 F: drivers/clocksource/h8300_*.c
7468 F: drivers/irqchip/irq-renesas-h8*.c
7469
7470 HABANALABS PCI DRIVER
7471 M: Oded Gabbay <oded.gabbay@gmail.com>
7472 S: Supported
7473 T: git https://github.com/HabanaAI/linux.git
7474 F: Documentation/ABI/testing/debugfs-driver-habanalabs
7475 F: Documentation/ABI/testing/sysfs-driver-habanalabs
7476 F: drivers/misc/habanalabs/
7477 F: include/uapi/misc/habanalabs.h
7478
7479 HACKRF MEDIA DRIVER
7480 M: Antti Palosaari <crope@iki.fi>
7481 L: linux-media@vger.kernel.org
7482 S: Maintained
7483 W: https://linuxtv.org
7484 W: http://palosaari.fi/linux/
7485 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7486 T: git git://linuxtv.org/anttip/media_tree.git
7487 F: drivers/media/usb/hackrf/
7488
7489 HANTRO VPU CODEC DRIVER
7490 M: Ezequiel Garcia <ezequiel@collabora.com>
7491 M: Philipp Zabel <p.zabel@pengutronix.de>
7492 L: linux-media@vger.kernel.org
7493 L: linux-rockchip@lists.infradead.org
7494 S: Maintained
7495 F: Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7496 F: Documentation/devicetree/bindings/media/rockchip-vpu.txt
7497 F: drivers/staging/media/hantro/
7498
7499 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7500 M: Frank Seidel <frank@f-seidel.de>
7501 L: platform-driver-x86@vger.kernel.org
7502 S: Maintained
7503 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7504 F: drivers/platform/x86/hdaps.c
7505
7506 HARDWARE MONITORING
7507 M: Jean Delvare <jdelvare@suse.com>
7508 M: Guenter Roeck <linux@roeck-us.net>
7509 L: linux-hwmon@vger.kernel.org
7510 S: Maintained
7511 W: http://hwmon.wiki.kernel.org/
7512 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7513 F: Documentation/devicetree/bindings/hwmon/
7514 F: Documentation/hwmon/
7515 F: drivers/hwmon/
7516 F: include/linux/hwmon*.h
7517 F: include/trace/events/hwmon*.h
7518
7519 HARDWARE RANDOM NUMBER GENERATOR CORE
7520 M: Matt Mackall <mpm@selenic.com>
7521 M: Herbert Xu <herbert@gondor.apana.org.au>
7522 L: linux-crypto@vger.kernel.org
7523 S: Odd fixes
7524 F: Documentation/admin-guide/hw_random.rst
7525 F: Documentation/devicetree/bindings/rng/
7526 F: drivers/char/hw_random/
7527 F: include/linux/hw_random.h
7528
7529 HARDWARE SPINLOCK CORE
7530 M: Ohad Ben-Cohen <ohad@wizery.com>
7531 M: Bjorn Andersson <bjorn.andersson@linaro.org>
7532 R: Baolin Wang <baolin.wang7@gmail.com>
7533 L: linux-remoteproc@vger.kernel.org
7534 S: Maintained
7535 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7536 F: Documentation/devicetree/bindings/hwlock/
7537 F: Documentation/locking/hwspinlock.rst
7538 F: drivers/hwspinlock/
7539 F: include/linux/hwspinlock.h
7540
7541 HARDWARE TRACING FACILITIES
7542 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
7543 S: Maintained
7544 F: drivers/hwtracing/
7545
7546 HARMONY SOUND DRIVER
7547 L: linux-parisc@vger.kernel.org
7548 S: Maintained
7549 F: sound/parisc/harmony.*
7550
7551 HDPVR USB VIDEO ENCODER DRIVER
7552 M: Hans Verkuil <hverkuil@xs4all.nl>
7553 L: linux-media@vger.kernel.org
7554 S: Odd Fixes
7555 W: https://linuxtv.org
7556 T: git git://linuxtv.org/media_tree.git
7557 F: drivers/media/usb/hdpvr/
7558
7559 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7560 M: Jerry Hoemann <jerry.hoemann@hpe.com>
7561 S: Supported
7562 F: Documentation/watchdog/hpwdt.rst
7563 F: drivers/watchdog/hpwdt.c
7564
7565 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7566 M: Don Brace <don.brace@microsemi.com>
7567 L: esc.storagedev@microsemi.com
7568 L: linux-scsi@vger.kernel.org
7569 S: Supported
7570 F: Documentation/scsi/hpsa.rst
7571 F: drivers/scsi/hpsa*.[ch]
7572 F: include/linux/cciss*.h
7573 F: include/uapi/linux/cciss*.h
7574
7575 HFI1 DRIVER
7576 M: Mike Marciniszyn <mike.marciniszyn@intel.com>
7577 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
7578 L: linux-rdma@vger.kernel.org
7579 S: Supported
7580 F: drivers/infiniband/hw/hfi1
7581
7582 HFS FILESYSTEM
7583 L: linux-fsdevel@vger.kernel.org
7584 S: Orphan
7585 F: Documentation/filesystems/hfs.rst
7586 F: fs/hfs/
7587
7588 HFSPLUS FILESYSTEM
7589 L: linux-fsdevel@vger.kernel.org
7590 S: Orphan
7591 F: Documentation/filesystems/hfsplus.rst
7592 F: fs/hfsplus/
7593
7594 HGA FRAMEBUFFER DRIVER
7595 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7596 L: linux-nvidia@lists.surfsouth.com
7597 S: Maintained
7598 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7599 F: drivers/video/fbdev/hgafb.c
7600
7601 HIBERNATION (aka Software Suspend, aka swsusp)
7602 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
7603 M: Pavel Machek <pavel@ucw.cz>
7604 L: linux-pm@vger.kernel.org
7605 S: Supported
7606 B: https://bugzilla.kernel.org
7607 F: arch/*/include/asm/suspend*.h
7608 F: arch/x86/power/
7609 F: drivers/base/power/
7610 F: include/linux/freezer.h
7611 F: include/linux/pm.h
7612 F: include/linux/suspend.h
7613 F: kernel/power/
7614
7615 HID CORE LAYER
7616 M: Jiri Kosina <jikos@kernel.org>
7617 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
7618 L: linux-input@vger.kernel.org
7619 S: Maintained
7620 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7621 F: drivers/hid/
7622 F: include/linux/hid*
7623 F: include/uapi/linux/hid*
7624
7625 HID SENSOR HUB DRIVERS
7626 M: Jiri Kosina <jikos@kernel.org>
7627 M: Jonathan Cameron <jic23@kernel.org>
7628 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7629 L: linux-input@vger.kernel.org
7630 L: linux-iio@vger.kernel.org
7631 S: Maintained
7632 F: Documentation/hid/hid-sensor*
7633 F: drivers/hid/hid-sensor-*
7634 F: drivers/iio/*/hid-*
7635 F: include/linux/hid-sensor-*
7636
7637 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7638 M: Thomas Gleixner <tglx@linutronix.de>
7639 L: linux-kernel@vger.kernel.org
7640 S: Maintained
7641 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7642 F: Documentation/timers/
7643 F: include/linux/clockchips.h
7644 F: include/linux/hrtimer.h
7645 F: kernel/time/clockevents.c
7646 F: kernel/time/hrtimer.c
7647 F: kernel/time/timer_*.c
7648
7649 HIGH-SPEED SCC DRIVER FOR AX.25
7650 L: linux-hams@vger.kernel.org
7651 S: Orphan
7652 F: drivers/net/hamradio/dmascc.c
7653 F: drivers/net/hamradio/scc.c
7654
7655 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7656 M: HighPoint Linux Team <linux@highpoint-tech.com>
7657 S: Supported
7658 W: http://www.highpoint-tech.com
7659 F: Documentation/scsi/hptiop.rst
7660 F: drivers/scsi/hptiop.c
7661
7662 HIPPI
7663 M: Jes Sorensen <jes@trained-monkey.org>
7664 L: linux-hippi@sunsite.dk
7665 S: Maintained
7666 F: drivers/net/hippi/
7667 F: include/linux/hippidevice.h
7668 F: include/uapi/linux/if_hippi.h
7669 F: net/802/hippi.c
7670
7671 HISILICON DMA DRIVER
7672 M: Zhou Wang <wangzhou1@hisilicon.com>
7673 L: dmaengine@vger.kernel.org
7674 S: Maintained
7675 F: drivers/dma/hisi_dma.c
7676
7677 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7678 M: Zaibo Xu <xuzaibo@huawei.com>
7679 L: linux-crypto@vger.kernel.org
7680 S: Maintained
7681 F: Documentation/ABI/testing/debugfs-hisi-hpre
7682 F: drivers/crypto/hisilicon/hpre/hpre.h
7683 F: drivers/crypto/hisilicon/hpre/hpre_crypto.c
7684 F: drivers/crypto/hisilicon/hpre/hpre_main.c
7685
7686 HISILICON LPC BUS DRIVER
7687 M: john.garry@huawei.com
7688 S: Maintained
7689 W: http://www.hisilicon.com
7690 F: Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7691 F: drivers/bus/hisi_lpc.c
7692
7693 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7694 M: Yisen Zhuang <yisen.zhuang@huawei.com>
7695 M: Salil Mehta <salil.mehta@huawei.com>
7696 L: netdev@vger.kernel.org
7697 S: Maintained
7698 W: http://www.hisilicon.com
7699 F: drivers/net/ethernet/hisilicon/hns3/
7700
7701 HISILICON NETWORK SUBSYSTEM DRIVER
7702 M: Yisen Zhuang <yisen.zhuang@huawei.com>
7703 M: Salil Mehta <salil.mehta@huawei.com>
7704 L: netdev@vger.kernel.org
7705 S: Maintained
7706 W: http://www.hisilicon.com
7707 F: Documentation/devicetree/bindings/net/hisilicon*.txt
7708 F: drivers/net/ethernet/hisilicon/
7709
7710 HISILICON PMU DRIVER
7711 M: Shaokun Zhang <zhangshaokun@hisilicon.com>
7712 S: Supported
7713 W: http://www.hisilicon.com
7714 F: Documentation/admin-guide/perf/hisi-pmu.rst
7715 F: drivers/perf/hisilicon
7716
7717 HISILICON QM AND ZIP Controller DRIVER
7718 M: Zhou Wang <wangzhou1@hisilicon.com>
7719 L: linux-crypto@vger.kernel.org
7720 S: Maintained
7721 F: Documentation/ABI/testing/debugfs-hisi-zip
7722 F: drivers/crypto/hisilicon/qm.c
7723 F: drivers/crypto/hisilicon/qm.h
7724 F: drivers/crypto/hisilicon/sgl.c
7725 F: drivers/crypto/hisilicon/zip/
7726
7727 HISILICON ROCE DRIVER
7728 M: Lijun Ou <oulijun@huawei.com>
7729 M: Wei Hu(Xavier) <huwei87@hisilicon.com>
7730 M: Weihang Li <liweihang@huawei.com>
7731 L: linux-rdma@vger.kernel.org
7732 S: Maintained
7733 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7734 F: drivers/infiniband/hw/hns/
7735
7736 HISILICON SAS Controller
7737 M: John Garry <john.garry@huawei.com>
7738 S: Supported
7739 W: http://www.hisilicon.com
7740 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7741 F: drivers/scsi/hisi_sas/
7742
7743 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7744 M: Zaibo Xu <xuzaibo@huawei.com>
7745 L: linux-crypto@vger.kernel.org
7746 S: Maintained
7747 F: Documentation/ABI/testing/debugfs-hisi-sec
7748 F: drivers/crypto/hisilicon/sec2/sec.h
7749 F: drivers/crypto/hisilicon/sec2/sec_crypto.c
7750 F: drivers/crypto/hisilicon/sec2/sec_crypto.h
7751 F: drivers/crypto/hisilicon/sec2/sec_main.c
7752
7753 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7754 M: Zaibo Xu <xuzaibo@huawei.com>
7755 S: Maintained
7756 F: drivers/char/hw_random/hisi-trng-v2.c
7757
7758 HISILICON V3XX SPI NOR FLASH Controller Driver
7759 M: John Garry <john.garry@huawei.com>
7760 S: Maintained
7761 W: http://www.hisilicon.com
7762 F: drivers/spi/spi-hisi-sfc-v3xx.c
7763
7764 HMM - Heterogeneous Memory Management
7765 M: Jérôme Glisse <jglisse@redhat.com>
7766 L: linux-mm@kvack.org
7767 S: Maintained
7768 F: Documentation/vm/hmm.rst
7769 F: include/linux/hmm*
7770 F: mm/hmm*
7771
7772 HOST AP DRIVER
7773 M: Jouni Malinen <j@w1.fi>
7774 L: linux-wireless@vger.kernel.org
7775 S: Obsolete
7776 W: http://w1.fi/hostap-driver.html
7777 F: drivers/net/wireless/intersil/hostap/
7778
7779 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7780 L: platform-driver-x86@vger.kernel.org
7781 S: Orphan
7782 F: drivers/platform/x86/tc1100-wmi.c
7783
7784 HPET: High Precision Event Timers driver
7785 M: Clemens Ladisch <clemens@ladisch.de>
7786 S: Maintained
7787 F: Documentation/timers/hpet.rst
7788 F: drivers/char/hpet.c
7789 F: include/linux/hpet.h
7790 F: include/uapi/linux/hpet.h
7791
7792 HPET: x86
7793 S: Orphan
7794 F: arch/x86/include/asm/hpet.h
7795 F: arch/x86/kernel/hpet.c
7796
7797 HPFS FILESYSTEM
7798 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7799 S: Maintained
7800 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7801 F: fs/hpfs/
7802
7803 HSI SUBSYSTEM
7804 M: Sebastian Reichel <sre@kernel.org>
7805 S: Maintained
7806 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7807 F: Documentation/ABI/testing/sysfs-bus-hsi
7808 F: Documentation/driver-api/hsi.rst
7809 F: drivers/hsi/
7810 F: include/linux/hsi/
7811 F: include/uapi/linux/hsi/
7812
7813 HSO 3G MODEM DRIVER
7814 L: linux-usb@vger.kernel.org
7815 S: Orphan
7816 F: drivers/net/usb/hso.c
7817
7818 HSR NETWORK PROTOCOL
7819 L: netdev@vger.kernel.org
7820 S: Orphan
7821 F: net/hsr/
7822
7823 HT16K33 LED CONTROLLER DRIVER
7824 M: Robin van der Gracht <robin@protonic.nl>
7825 S: Maintained
7826 F: Documentation/devicetree/bindings/display/ht16k33.txt
7827 F: drivers/auxdisplay/ht16k33.c
7828
7829 HTCPEN TOUCHSCREEN DRIVER
7830 M: Pau Oliva Fora <pof@eslack.org>
7831 L: linux-input@vger.kernel.org
7832 S: Maintained
7833 F: drivers/input/touchscreen/htcpen.c
7834
7835 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7836 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7837 L: linux-iio@vger.kernel.org
7838 S: Maintained
7839 W: http://www.st.com/
7840 F: Documentation/devicetree/bindings/iio/humidity/hts221.txt
7841 F: drivers/iio/humidity/hts221*
7842
7843 HUAWEI ETHERNET DRIVER
7844 M: Aviad Krawczyk <aviad.krawczyk@huawei.com>
7845 L: netdev@vger.kernel.org
7846 S: Supported
7847 F: Documentation/networking/hinic.txt
7848 F: drivers/net/ethernet/huawei/hinic/
7849
7850 HUGETLB FILESYSTEM
7851 M: Mike Kravetz <mike.kravetz@oracle.com>
7852 L: linux-mm@kvack.org
7853 S: Maintained
7854 F: Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7855 F: Documentation/admin-guide/mm/hugetlbpage.rst
7856 F: Documentation/vm/hugetlbfs_reserv.rst
7857 F: fs/hugetlbfs/
7858 F: include/linux/hugetlb.h
7859 F: mm/hugetlb.c
7860
7861 HVA ST MEDIA DRIVER
7862 M: Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7863 L: linux-media@vger.kernel.org
7864 S: Supported
7865 W: https://linuxtv.org
7866 T: git git://linuxtv.org/media_tree.git
7867 F: drivers/media/platform/sti/hva
7868
7869 HWPOISON MEMORY FAILURE HANDLING
7870 M: Naoya Horiguchi <naoya.horiguchi@nec.com>
7871 L: linux-mm@kvack.org
7872 S: Maintained
7873 F: mm/hwpoison-inject.c
7874 F: mm/memory-failure.c
7875
7876 HYGON PROCESSOR SUPPORT
7877 M: Pu Wen <puwen@hygon.cn>
7878 L: linux-kernel@vger.kernel.org
7879 S: Maintained
7880 F: arch/x86/kernel/cpu/hygon.c
7881
7882 HYNIX HI556 SENSOR DRIVER
7883 M: Shawn Tu <shawnx.tu@intel.com>
7884 L: linux-media@vger.kernel.org
7885 S: Maintained
7886 T: git git://linuxtv.org/media_tree.git
7887 F: drivers/media/i2c/hi556.c
7888
7889 Hyper-V CORE AND DRIVERS
7890 M: "K. Y. Srinivasan" <kys@microsoft.com>
7891 M: Haiyang Zhang <haiyangz@microsoft.com>
7892 M: Stephen Hemminger <sthemmin@microsoft.com>
7893 M: Wei Liu <wei.liu@kernel.org>
7894 L: linux-hyperv@vger.kernel.org
7895 S: Supported
7896 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7897 F: Documentation/ABI/stable/sysfs-bus-vmbus
7898 F: Documentation/ABI/testing/debugfs-hyperv
7899 F: Documentation/networking/device_drivers/microsoft/netvsc.txt
7900 F: arch/x86/hyperv
7901 F: arch/x86/include/asm/hyperv-tlfs.h
7902 F: arch/x86/include/asm/mshyperv.h
7903 F: arch/x86/include/asm/trace/hyperv.h
7904 F: arch/x86/kernel/cpu/mshyperv.c
7905 F: drivers/clocksource/hyperv_timer.c
7906 F: drivers/hid/hid-hyperv.c
7907 F: drivers/hv/
7908 F: drivers/input/serio/hyperv-keyboard.c
7909 F: drivers/iommu/hyperv-iommu.c
7910 F: drivers/net/hyperv/
7911 F: drivers/pci/controller/pci-hyperv-intf.c
7912 F: drivers/pci/controller/pci-hyperv.c
7913 F: drivers/scsi/storvsc_drv.c
7914 F: drivers/uio/uio_hv_generic.c
7915 F: drivers/video/fbdev/hyperv_fb.c
7916 F: include/asm-generic/mshyperv.h
7917 F: include/clocksource/hyperv_timer.h
7918 F: include/linux/hyperv.h
7919 F: include/uapi/linux/hyperv.h
7920 F: net/vmw_vsock/hyperv_transport.c
7921 F: tools/hv/
7922
7923 HYPERBUS SUPPORT
7924 M: Vignesh Raghavendra <vigneshr@ti.com>
7925 L: linux-mtd@lists.infradead.org
7926 S: Supported
7927 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
7928 C: irc://irc.oftc.net/mtd
7929 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
7930 F: Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7931 F: Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7932 F: drivers/mtd/hyperbus/
7933 F: include/linux/mtd/hyperbus.h
7934
7935 HYPERVISOR VIRTUAL CONSOLE DRIVER
7936 L: linuxppc-dev@lists.ozlabs.org
7937 S: Odd Fixes
7938 F: drivers/tty/hvc/
7939
7940 I2C ACPI SUPPORT
7941 M: Mika Westerberg <mika.westerberg@linux.intel.com>
7942 L: linux-i2c@vger.kernel.org
7943 L: linux-acpi@vger.kernel.org
7944 S: Maintained
7945 F: drivers/i2c/i2c-core-acpi.c
7946
7947 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7948 M: Ajay Gupta <ajayg@nvidia.com>
7949 L: linux-i2c@vger.kernel.org
7950 S: Maintained
7951 F: Documentation/i2c/busses/i2c-nvidia-gpu.rst
7952 F: drivers/i2c/busses/i2c-nvidia-gpu.c
7953
7954 I2C MUXES
7955 M: Peter Rosin <peda@axentia.se>
7956 L: linux-i2c@vger.kernel.org
7957 S: Maintained
7958 F: Documentation/devicetree/bindings/i2c/i2c-arb*
7959 F: Documentation/devicetree/bindings/i2c/i2c-gate*
7960 F: Documentation/devicetree/bindings/i2c/i2c-mux*
7961 F: Documentation/i2c/i2c-topology.rst
7962 F: Documentation/i2c/muxes/
7963 F: drivers/i2c/i2c-mux.c
7964 F: drivers/i2c/muxes/
7965 F: include/linux/i2c-mux.h
7966
7967 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7968 M: Gregory CLEMENT <gregory.clement@bootlin.com>
7969 L: linux-i2c@vger.kernel.org
7970 S: Maintained
7971 F: Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7972 F: drivers/i2c/busses/i2c-mv64xxx.c
7973
7974 I2C OVER PARALLEL PORT
7975 M: Jean Delvare <jdelvare@suse.com>
7976 L: linux-i2c@vger.kernel.org
7977 S: Maintained
7978 F: Documentation/i2c/busses/i2c-parport.rst
7979 F: drivers/i2c/busses/i2c-parport.c
7980
7981 I2C SUBSYSTEM
7982 M: Wolfram Sang <wsa@kernel.org>
7983 L: linux-i2c@vger.kernel.org
7984 S: Maintained
7985 W: https://i2c.wiki.kernel.org/
7986 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
7987 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7988 F: Documentation/devicetree/bindings/i2c/i2c.txt
7989 F: Documentation/i2c/
7990 F: drivers/i2c/*
7991 F: include/linux/i2c-dev.h
7992 F: include/linux/i2c-smbus.h
7993 F: include/linux/i2c.h
7994 F: include/uapi/linux/i2c-*.h
7995 F: include/uapi/linux/i2c.h
7996
7997 I2C SUBSYSTEM HOST DRIVERS
7998 L: linux-i2c@vger.kernel.org
7999 S: Odd Fixes
8000 W: https://i2c.wiki.kernel.org/
8001 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8002 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8003 F: Documentation/devicetree/bindings/i2c/
8004 F: drivers/i2c/algos/
8005 F: drivers/i2c/busses/
8006
8007 I2C-TAOS-EVM DRIVER
8008 M: Jean Delvare <jdelvare@suse.com>
8009 L: linux-i2c@vger.kernel.org
8010 S: Maintained
8011 F: Documentation/i2c/busses/i2c-taos-evm.rst
8012 F: drivers/i2c/busses/i2c-taos-evm.c
8013
8014 I2C-TINY-USB DRIVER
8015 M: Till Harbaum <till@harbaum.org>
8016 L: linux-i2c@vger.kernel.org
8017 S: Maintained
8018 W: http://www.harbaum.org/till/i2c_tiny_usb
8019 F: drivers/i2c/busses/i2c-tiny-usb.c
8020
8021 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8022 M: Jean Delvare <jdelvare@suse.com>
8023 L: linux-i2c@vger.kernel.org
8024 S: Maintained
8025 F: Documentation/i2c/busses/i2c-ali1535.rst
8026 F: Documentation/i2c/busses/i2c-ali1563.rst
8027 F: Documentation/i2c/busses/i2c-ali15x3.rst
8028 F: Documentation/i2c/busses/i2c-amd756.rst
8029 F: Documentation/i2c/busses/i2c-amd8111.rst
8030 F: Documentation/i2c/busses/i2c-i801.rst
8031 F: Documentation/i2c/busses/i2c-nforce2.rst
8032 F: Documentation/i2c/busses/i2c-piix4.rst
8033 F: Documentation/i2c/busses/i2c-sis5595.rst
8034 F: Documentation/i2c/busses/i2c-sis630.rst
8035 F: Documentation/i2c/busses/i2c-sis96x.rst
8036 F: Documentation/i2c/busses/i2c-via.rst
8037 F: Documentation/i2c/busses/i2c-viapro.rst
8038 F: drivers/i2c/busses/i2c-ali1535.c
8039 F: drivers/i2c/busses/i2c-ali1563.c
8040 F: drivers/i2c/busses/i2c-ali15x3.c
8041 F: drivers/i2c/busses/i2c-amd756-s4882.c
8042 F: drivers/i2c/busses/i2c-amd756.c
8043 F: drivers/i2c/busses/i2c-amd8111.c
8044 F: drivers/i2c/busses/i2c-i801.c
8045 F: drivers/i2c/busses/i2c-isch.c
8046 F: drivers/i2c/busses/i2c-nforce2-s4985.c
8047 F: drivers/i2c/busses/i2c-nforce2.c
8048 F: drivers/i2c/busses/i2c-piix4.c
8049 F: drivers/i2c/busses/i2c-sis5595.c
8050 F: drivers/i2c/busses/i2c-sis630.c
8051 F: drivers/i2c/busses/i2c-sis96x.c
8052 F: drivers/i2c/busses/i2c-via.c
8053 F: drivers/i2c/busses/i2c-viapro.c
8054
8055 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8056 M: Hans de Goede <hdegoede@redhat.com>
8057 L: linux-i2c@vger.kernel.org
8058 S: Maintained
8059 F: drivers/i2c/busses/i2c-cht-wc.c
8060
8061 I2C/SMBUS ISMT DRIVER
8062 M: Seth Heasley <seth.heasley@intel.com>
8063 M: Neil Horman <nhorman@tuxdriver.com>
8064 L: linux-i2c@vger.kernel.org
8065 F: Documentation/i2c/busses/i2c-ismt.rst
8066 F: drivers/i2c/busses/i2c-ismt.c
8067
8068 I2C/SMBUS STUB DRIVER
8069 M: Jean Delvare <jdelvare@suse.com>
8070 L: linux-i2c@vger.kernel.org
8071 S: Maintained
8072 F: drivers/i2c/i2c-stub.c
8073
8074 I3C DRIVER FOR CADENCE I3C MASTER IP
8075 M: Przemysław Gaj <pgaj@cadence.com>
8076 S: Maintained
8077 F: Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8078 F: drivers/i3c/master/i3c-master-cdns.c
8079
8080 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8081 M: Vitor Soares <vitor.soares@synopsys.com>
8082 S: Maintained
8083 F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8084 F: drivers/i3c/master/dw*
8085
8086 I3C SUBSYSTEM
8087 M: Boris Brezillon <bbrezillon@kernel.org>
8088 L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
8089 S: Maintained
8090 C: irc://chat.freenode.net/linux-i3c
8091 T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8092 F: Documentation/ABI/testing/sysfs-bus-i3c
8093 F: Documentation/devicetree/bindings/i3c/
8094 F: Documentation/driver-api/i3c
8095 F: drivers/i3c/
8096 F: include/linux/i3c/
8097
8098 IA64 (Itanium) PLATFORM
8099 M: Tony Luck <tony.luck@intel.com>
8100 M: Fenghua Yu <fenghua.yu@intel.com>
8101 L: linux-ia64@vger.kernel.org
8102 S: Maintained
8103 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8104 F: Documentation/ia64/
8105 F: arch/ia64/
8106
8107 IBM Power 842 compression accelerator
8108 M: Haren Myneni <haren@us.ibm.com>
8109 S: Supported
8110 F: crypto/842.c
8111 F: drivers/crypto/nx/Kconfig
8112 F: drivers/crypto/nx/Makefile
8113 F: drivers/crypto/nx/nx-842*
8114 F: include/linux/sw842.h
8115 F: lib/842/
8116
8117 IBM Power in-Nest Crypto Acceleration
8118 M: Breno Leitão <leitao@debian.org>
8119 M: Nayna Jain <nayna@linux.ibm.com>
8120 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8121 L: linux-crypto@vger.kernel.org
8122 S: Supported
8123 F: drivers/crypto/nx/Kconfig
8124 F: drivers/crypto/nx/Makefile
8125 F: drivers/crypto/nx/nx-aes*
8126 F: drivers/crypto/nx/nx-sha*
8127 F: drivers/crypto/nx/nx.*
8128 F: drivers/crypto/nx/nx_csbcpb.h
8129 F: drivers/crypto/nx/nx_debugfs.c
8130
8131 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8132 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8133 L: linux-pci@vger.kernel.org
8134 L: linuxppc-dev@lists.ozlabs.org
8135 S: Supported
8136 F: drivers/pci/hotplug/rpadlpar*
8137
8138 IBM Power Linux RAID adapter
8139 M: Brian King <brking@us.ibm.com>
8140 S: Supported
8141 F: drivers/scsi/ipr.*
8142
8143 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8144 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8145 L: linux-pci@vger.kernel.org
8146 L: linuxppc-dev@lists.ozlabs.org
8147 S: Supported
8148 F: drivers/pci/hotplug/rpaphp*
8149
8150 IBM Power SRIOV Virtual NIC Device Driver
8151 M: Thomas Falcon <tlfalcon@linux.ibm.com>
8152 M: John Allen <jallen@linux.ibm.com>
8153 L: netdev@vger.kernel.org
8154 S: Supported
8155 F: drivers/net/ethernet/ibm/ibmvnic.*
8156
8157 IBM Power Virtual Accelerator Switchboard
8158 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8159 L: linuxppc-dev@lists.ozlabs.org
8160 S: Supported
8161 F: arch/powerpc/include/asm/vas.h
8162 F: arch/powerpc/platforms/powernv/copy-paste.h
8163 F: arch/powerpc/platforms/powernv/vas*
8164
8165 IBM Power Virtual Ethernet Device Driver
8166 M: Thomas Falcon <tlfalcon@linux.ibm.com>
8167 L: netdev@vger.kernel.org
8168 S: Supported
8169 F: drivers/net/ethernet/ibm/ibmveth.*
8170
8171 IBM Power Virtual FC Device Drivers
8172 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8173 L: linux-scsi@vger.kernel.org
8174 S: Supported
8175 F: drivers/scsi/ibmvscsi/ibmvfc*
8176
8177 IBM Power Virtual Management Channel Driver
8178 M: Steven Royer <seroyer@linux.ibm.com>
8179 S: Supported
8180 F: drivers/misc/ibmvmc.*
8181
8182 IBM Power Virtual SCSI Device Drivers
8183 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8184 L: linux-scsi@vger.kernel.org
8185 S: Supported
8186 F: drivers/scsi/ibmvscsi/ibmvscsi*
8187 F: include/scsi/viosrp.h
8188
8189 IBM Power Virtual SCSI Device Target Driver
8190 M: Michael Cyr <mikecyr@linux.ibm.com>
8191 L: linux-scsi@vger.kernel.org
8192 L: target-devel@vger.kernel.org
8193 S: Supported
8194 F: drivers/scsi/ibmvscsi_tgt/
8195
8196 IBM Power VMX Cryptographic instructions
8197 M: Breno Leitão <leitao@debian.org>
8198 M: Nayna Jain <nayna@linux.ibm.com>
8199 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8200 L: linux-crypto@vger.kernel.org
8201 S: Supported
8202 F: drivers/crypto/vmx/Kconfig
8203 F: drivers/crypto/vmx/Makefile
8204 F: drivers/crypto/vmx/aes*
8205 F: drivers/crypto/vmx/ghash*
8206 F: drivers/crypto/vmx/ppc-xlate.pl
8207 F: drivers/crypto/vmx/vmx.c
8208
8209 IBM ServeRAID RAID DRIVER
8210 S: Orphan
8211 F: drivers/scsi/ips.*
8212
8213 ICH LPC AND GPIO DRIVER
8214 M: Peter Tyser <ptyser@xes-inc.com>
8215 S: Maintained
8216 F: drivers/gpio/gpio-ich.c
8217 F: drivers/mfd/lpc_ich.c
8218
8219 ICY I2C DRIVER
8220 M: Max Staudt <max@enpas.org>
8221 L: linux-i2c@vger.kernel.org
8222 S: Maintained
8223 F: drivers/i2c/busses/i2c-icy.c
8224
8225 IDE SUBSYSTEM
8226 M: "David S. Miller" <davem@davemloft.net>
8227 L: linux-ide@vger.kernel.org
8228 S: Maintained
8229 Q: http://patchwork.ozlabs.org/project/linux-ide/list/
8230 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8231 F: Documentation/ide/
8232 F: drivers/ide/
8233 F: include/linux/ide.h
8234
8235 IDE/ATAPI DRIVERS
8236 M: Borislav Petkov <bp@alien8.de>
8237 L: linux-ide@vger.kernel.org
8238 S: Maintained
8239 F: Documentation/cdrom/ide-cd.rst
8240 F: drivers/ide/ide-cd*
8241
8242 IDEAPAD LAPTOP EXTRAS DRIVER
8243 M: Ike Panhc <ike.pan@canonical.com>
8244 L: platform-driver-x86@vger.kernel.org
8245 S: Maintained
8246 W: http://launchpad.net/ideapad-laptop
8247 F: drivers/platform/x86/ideapad-laptop.c
8248
8249 IDEAPAD LAPTOP SLIDEBAR DRIVER
8250 M: Andrey Moiseev <o2g.org.ru@gmail.com>
8251 L: linux-input@vger.kernel.org
8252 S: Maintained
8253 W: https://github.com/o2genum/ideapad-slidebar
8254 F: drivers/input/misc/ideapad_slidebar.c
8255
8256 IDT VersaClock 5 CLOCK DRIVER
8257 M: Marek Vasut <marek.vasut@gmail.com>
8258 S: Maintained
8259 F: drivers/clk/clk-versaclock5.c
8260
8261 IEEE 802.15.4 SUBSYSTEM
8262 M: Alexander Aring <alex.aring@gmail.com>
8263 M: Stefan Schmidt <stefan@datenfreihafen.org>
8264 L: linux-wpan@vger.kernel.org
8265 S: Maintained
8266 W: http://wpan.cakelab.org/
8267 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8268 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8269 F: Documentation/networking/ieee802154.rst
8270 F: drivers/net/ieee802154/
8271 F: include/linux/ieee802154.h
8272 F: include/linux/nl802154.h
8273 F: include/net/af_ieee802154.h
8274 F: include/net/cfg802154.h
8275 F: include/net/ieee802154_netdev.h
8276 F: include/net/mac802154.h
8277 F: include/net/nl802154.h
8278 F: net/ieee802154/
8279 F: net/mac802154/
8280
8281 IFE PROTOCOL
8282 M: Yotam Gigi <yotam.gi@gmail.com>
8283 M: Jamal Hadi Salim <jhs@mojatatu.com>
8284 F: include/net/ife.h
8285 F: include/uapi/linux/ife.h
8286 F: net/ife
8287
8288 IGORPLUG-USB IR RECEIVER
8289 M: Sean Young <sean@mess.org>
8290 L: linux-media@vger.kernel.org
8291 S: Maintained
8292 F: drivers/media/rc/igorplugusb.c
8293
8294 IGUANAWORKS USB IR TRANSCEIVER
8295 M: Sean Young <sean@mess.org>
8296 L: linux-media@vger.kernel.org
8297 S: Maintained
8298 F: drivers/media/rc/iguanair.c
8299
8300 IIO DIGITAL POTENTIOMETER DAC
8301 M: Peter Rosin <peda@axentia.se>
8302 L: linux-iio@vger.kernel.org
8303 S: Maintained
8304 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8305 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8306 F: drivers/iio/dac/dpot-dac.c
8307
8308 IIO ENVELOPE DETECTOR
8309 M: Peter Rosin <peda@axentia.se>
8310 L: linux-iio@vger.kernel.org
8311 S: Maintained
8312 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8313 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8314 F: drivers/iio/adc/envelope-detector.c
8315
8316 IIO MULTIPLEXER
8317 M: Peter Rosin <peda@axentia.se>
8318 L: linux-iio@vger.kernel.org
8319 S: Maintained
8320 F: Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8321 F: drivers/iio/multiplexer/iio-mux.c
8322
8323 IIO SUBSYSTEM AND DRIVERS
8324 M: Jonathan Cameron <jic23@kernel.org>
8325 R: Hartmut Knaack <knaack.h@gmx.de>
8326 R: Lars-Peter Clausen <lars@metafoo.de>
8327 R: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8328 L: linux-iio@vger.kernel.org
8329 S: Maintained
8330 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8331 F: Documentation/ABI/testing/configfs-iio*
8332 F: Documentation/ABI/testing/sysfs-bus-iio*
8333 F: Documentation/devicetree/bindings/iio/
8334 F: drivers/iio/
8335 F: drivers/staging/iio/
8336 F: include/linux/iio/
8337 F: tools/iio/
8338
8339 IIO UNIT CONVERTER
8340 M: Peter Rosin <peda@axentia.se>
8341 L: linux-iio@vger.kernel.org
8342 S: Maintained
8343 F: Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8344 F: Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8345 F: Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8346 F: drivers/iio/afe/iio-rescale.c
8347
8348 IKANOS/ADI EAGLE ADSL USB DRIVER
8349 M: Matthieu Castet <castet.matthieu@free.fr>
8350 M: Stanislaw Gruszka <stf_xl@wp.pl>
8351 S: Maintained
8352 F: drivers/usb/atm/ueagle-atm.c
8353
8354 IMGTEC ASCII LCD DRIVER
8355 M: Paul Burton <paulburton@kernel.org>
8356 S: Maintained
8357 F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8358 F: drivers/auxdisplay/img-ascii-lcd.c
8359
8360 IMGTEC IR DECODER DRIVER
8361 S: Orphan
8362 F: drivers/media/rc/img-ir/
8363
8364 IMON SOUNDGRAPH USB IR RECEIVER
8365 M: Sean Young <sean@mess.org>
8366 L: linux-media@vger.kernel.org
8367 S: Maintained
8368 F: drivers/media/rc/imon.c
8369 F: drivers/media/rc/imon_raw.c
8370
8371 IMS TWINTURBO FRAMEBUFFER DRIVER
8372 L: linux-fbdev@vger.kernel.org
8373 S: Orphan
8374 F: drivers/video/fbdev/imsttfb.c
8375
8376 INA209 HARDWARE MONITOR DRIVER
8377 M: Guenter Roeck <linux@roeck-us.net>
8378 L: linux-hwmon@vger.kernel.org
8379 S: Maintained
8380 F: Documentation/devicetree/bindings/hwmon/ina2xx.txt
8381 F: Documentation/hwmon/ina209.rst
8382 F: drivers/hwmon/ina209.c
8383
8384 INA2XX HARDWARE MONITOR DRIVER
8385 M: Guenter Roeck <linux@roeck-us.net>
8386 L: linux-hwmon@vger.kernel.org
8387 S: Maintained
8388 F: Documentation/hwmon/ina2xx.rst
8389 F: drivers/hwmon/ina2xx.c
8390 F: include/linux/platform_data/ina2xx.h
8391
8392 INDUSTRY PACK SUBSYSTEM (IPACK)
8393 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8394 M: Jens Taprogge <jens.taprogge@taprogge.org>
8395 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8396 L: industrypack-devel@lists.sourceforge.net
8397 S: Maintained
8398 W: http://industrypack.sourceforge.net
8399 F: drivers/ipack/
8400
8401 INFINEON DPS310 Driver
8402 M: Eddie James <eajames@linux.ibm.com>
8403 L: linux-iio@vger.kernel.org
8404 S: Maintained
8405 F: drivers/iio/pressure/dps310.c
8406
8407 INFINIBAND SUBSYSTEM
8408 M: Doug Ledford <dledford@redhat.com>
8409 M: Jason Gunthorpe <jgg@mellanox.com>
8410 L: linux-rdma@vger.kernel.org
8411 S: Supported
8412 W: https://github.com/linux-rdma/rdma-core
8413 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8414 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8415 F: Documentation/devicetree/bindings/infiniband/
8416 F: Documentation/infiniband/
8417 F: drivers/infiniband/
8418 F: include/rdma/
8419 F: include/trace/events/ib_mad.h
8420 F: include/trace/events/ib_umad.h
8421 F: include/uapi/linux/if_infiniband.h
8422 F: include/uapi/rdma/
8423 F: samples/bpf/ibumad_kern.c
8424 F: samples/bpf/ibumad_user.c
8425
8426 INGENIC JZ4780 DMA Driver
8427 M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8428 S: Maintained
8429 F: drivers/dma/dma-jz4780.c
8430
8431 INGENIC JZ4780 NAND DRIVER
8432 M: Harvey Hunt <harveyhuntnexus@gmail.com>
8433 L: linux-mtd@lists.infradead.org
8434 S: Maintained
8435 F: drivers/mtd/nand/raw/ingenic/
8436
8437 INGENIC JZ47xx SoCs
8438 M: Paul Cercueil <paul@crapouillou.net>
8439 S: Maintained
8440 F: arch/mips/boot/dts/ingenic/
8441 F: arch/mips/include/asm/mach-jz4740/
8442 F: arch/mips/jz4740/
8443 F: drivers/clk/ingenic/
8444 F: drivers/dma/dma-jz4780.c
8445 F: drivers/gpu/drm/ingenic/
8446 F: drivers/i2c/busses/i2c-jz4780.c
8447 F: drivers/iio/adc/ingenic-adc.c
8448 F: drivers/irqchip/irq-ingenic.c
8449 F: drivers/memory/jz4780-nemc.c
8450 F: drivers/mmc/host/jz4740_mmc.c
8451 F: drivers/mtd/nand/raw/ingenic/
8452 F: drivers/pinctrl/pinctrl-ingenic.c
8453 F: drivers/power/supply/ingenic-battery.c
8454 F: drivers/pwm/pwm-jz4740.c
8455 F: drivers/rtc/rtc-jz4740.c
8456 F: drivers/tty/serial/8250/8250_ingenic.c
8457 F: drivers/usb/musb/jz4740.c
8458 F: drivers/watchdog/jz4740_wdt.c
8459 F: include/dt-bindings/iio/adc/ingenic,adc.h
8460 F: include/linux/mfd/ingenic-tcu.h
8461 F: sound/soc/codecs/jz47*
8462 F: sound/soc/jz4740/
8463
8464 INOTIFY
8465 M: Jan Kara <jack@suse.cz>
8466 R: Amir Goldstein <amir73il@gmail.com>
8467 L: linux-fsdevel@vger.kernel.org
8468 S: Maintained
8469 F: Documentation/filesystems/inotify.rst
8470 F: fs/notify/inotify/
8471 F: include/linux/inotify.h
8472 F: include/uapi/linux/inotify.h
8473
8474 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8475 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
8476 L: linux-input@vger.kernel.org
8477 S: Maintained
8478 Q: http://patchwork.kernel.org/project/linux-input/list/
8479 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8480 F: Documentation/devicetree/bindings/input/
8481 F: Documentation/devicetree/bindings/serio/
8482 F: Documentation/input/
8483 F: drivers/input/
8484 F: include/linux/input.h
8485 F: include/linux/input/
8486 F: include/uapi/linux/input-event-codes.h
8487 F: include/uapi/linux/input.h
8488
8489 INPUT MULTITOUCH (MT) PROTOCOL
8490 M: Henrik Rydberg <rydberg@bitmath.org>
8491 L: linux-input@vger.kernel.org
8492 S: Odd fixes
8493 F: Documentation/input/multi-touch-protocol.rst
8494 F: drivers/input/input-mt.c
8495 K: \b(ABS|SYN)_MT_
8496
8497 INSIDE SECURE CRYPTO DRIVER
8498 M: Antoine Tenart <antoine.tenart@bootlin.com>
8499 L: linux-crypto@vger.kernel.org
8500 S: Maintained
8501 F: drivers/crypto/inside-secure/
8502
8503 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8504 M: Mimi Zohar <zohar@linux.ibm.com>
8505 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8506 L: linux-integrity@vger.kernel.org
8507 S: Supported
8508 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8509 F: security/integrity/ima/
8510
8511 INTEL 810/815 FRAMEBUFFER DRIVER
8512 M: Antonino Daplas <adaplas@gmail.com>
8513 L: linux-fbdev@vger.kernel.org
8514 S: Maintained
8515 F: drivers/video/fbdev/i810/
8516
8517 INTEL ASoC DRIVERS
8518 M: Cezary Rojewski <cezary.rojewski@intel.com>
8519 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8520 M: Liam Girdwood <liam.r.girdwood@linux.intel.com>
8521 M: Jie Yang <yang.jie@linux.intel.com>
8522 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8523 S: Supported
8524 F: sound/soc/intel/
8525
8526 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8527 M: Hans de Goede <hdegoede@redhat.com>
8528 L: platform-driver-x86@vger.kernel.org
8529 S: Maintained
8530 F: drivers/platform/x86/intel_atomisp2_pm.c
8531
8532 INTEL C600 SERIES SAS CONTROLLER DRIVER
8533 M: Intel SCU Linux support <intel-linux-scu@intel.com>
8534 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8535 L: linux-scsi@vger.kernel.org
8536 S: Supported
8537 T: git git://git.code.sf.net/p/intel-sas/isci
8538 F: drivers/scsi/isci/
8539
8540 INTEL CPU family model numbers
8541 M: Tony Luck <tony.luck@intel.com>
8542 M: x86@kernel.org
8543 L: linux-kernel@vger.kernel.org
8544 S: Supported
8545 F: arch/x86/include/asm/intel-family.h
8546
8547 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8548 M: Jani Nikula <jani.nikula@linux.intel.com>
8549 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8550 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
8551 L: intel-gfx@lists.freedesktop.org
8552 S: Supported
8553 W: https://01.org/linuxgraphics/
8554 Q: http://patchwork.freedesktop.org/project/intel-gfx/
8555 B: https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8556 C: irc://chat.freenode.net/intel-gfx
8557 T: git git://anongit.freedesktop.org/drm-intel
8558 F: Documentation/gpu/i915.rst
8559 F: drivers/gpu/drm/i915/
8560 F: include/drm/i915*
8561 F: include/uapi/drm/i915_drm.h
8562
8563 INTEL ETHERNET DRIVERS
8564 M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8565 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8566 S: Supported
8567 W: http://www.intel.com/support/feedback.htm
8568 W: http://e1000.sourceforge.net/
8569 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8570 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8571 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8572 F: Documentation/networking/device_drivers/intel/e100.rst
8573 F: Documentation/networking/device_drivers/intel/e1000.rst
8574 F: Documentation/networking/device_drivers/intel/e1000e.rst
8575 F: Documentation/networking/device_drivers/intel/fm10k.rst
8576 F: Documentation/networking/device_drivers/intel/i40e.rst
8577 F: Documentation/networking/device_drivers/intel/iavf.rst
8578 F: Documentation/networking/device_drivers/intel/ice.rst
8579 F: Documentation/networking/device_drivers/intel/igb.rst
8580 F: Documentation/networking/device_drivers/intel/igbvf.rst
8581 F: Documentation/networking/device_drivers/intel/ixgb.rst
8582 F: Documentation/networking/device_drivers/intel/ixgbe.rst
8583 F: Documentation/networking/device_drivers/intel/ixgbevf.rst
8584 F: drivers/net/ethernet/intel/
8585 F: drivers/net/ethernet/intel/*/
8586 F: include/linux/avf/virtchnl.h
8587
8588 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8589 M: Maik Broemme <mbroemme@libmpq.org>
8590 L: linux-fbdev@vger.kernel.org
8591 S: Maintained
8592 F: Documentation/fb/intelfb.rst
8593 F: drivers/video/fbdev/intelfb/
8594
8595 INTEL GPIO DRIVERS
8596 M: Andy Shevchenko <andy@kernel.org>
8597 L: linux-gpio@vger.kernel.org
8598 S: Maintained
8599 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8600 F: drivers/gpio/gpio-ich.c
8601 F: drivers/gpio/gpio-intel-mid.c
8602 F: drivers/gpio/gpio-merrifield.c
8603 F: drivers/gpio/gpio-ml-ioh.c
8604 F: drivers/gpio/gpio-pch.c
8605 F: drivers/gpio/gpio-sch.c
8606 F: drivers/gpio/gpio-sodaville.c
8607
8608 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8609 M: Zhenyu Wang <zhenyuw@linux.intel.com>
8610 M: Zhi Wang <zhi.a.wang@intel.com>
8611 L: intel-gvt-dev@lists.freedesktop.org
8612 L: intel-gfx@lists.freedesktop.org
8613 S: Supported
8614 W: https://01.org/igvt-g
8615 T: git https://github.com/intel/gvt-linux.git
8616 F: drivers/gpu/drm/i915/gvt/
8617
8618 INTEL HID EVENT DRIVER
8619 M: Alex Hung <alex.hung@canonical.com>
8620 L: platform-driver-x86@vger.kernel.org
8621 S: Maintained
8622 F: drivers/platform/x86/intel-hid.c
8623
8624 INTEL I/OAT DMA DRIVER
8625 M: Dave Jiang <dave.jiang@intel.com>
8626 R: Dan Williams <dan.j.williams@intel.com>
8627 L: dmaengine@vger.kernel.org
8628 S: Supported
8629 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
8630 F: drivers/dma/ioat*
8631
8632 INTEL IADX DRIVER
8633 M: Dave Jiang <dave.jiang@intel.com>
8634 L: dmaengine@vger.kernel.org
8635 S: Supported
8636 F: drivers/dma/idxd/*
8637 F: include/uapi/linux/idxd.h
8638
8639 INTEL IDLE DRIVER
8640 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
8641 M: Len Brown <lenb@kernel.org>
8642 L: linux-pm@vger.kernel.org
8643 S: Supported
8644 B: https://bugzilla.kernel.org
8645 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8646 F: drivers/idle/intel_idle.c
8647
8648 INTEL INTEGRATED SENSOR HUB DRIVER
8649 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8650 M: Jiri Kosina <jikos@kernel.org>
8651 L: linux-input@vger.kernel.org
8652 S: Maintained
8653 F: drivers/hid/intel-ish-hid/
8654
8655 INTEL IOMMU (VT-d)
8656 M: David Woodhouse <dwmw2@infradead.org>
8657 M: Lu Baolu <baolu.lu@linux.intel.com>
8658 L: iommu@lists.linux-foundation.org
8659 S: Supported
8660 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8661 F: drivers/iommu/dmar.c
8662 F: drivers/iommu/intel*.[ch]
8663 F: include/linux/intel-iommu.h
8664 F: include/linux/intel-svm.h
8665
8666 INTEL IOP-ADMA DMA DRIVER
8667 R: Dan Williams <dan.j.williams@intel.com>
8668 S: Odd fixes
8669 F: drivers/dma/iop-adma.c
8670
8671 INTEL IPU3 CSI-2 CIO2 DRIVER
8672 M: Yong Zhi <yong.zhi@intel.com>
8673 M: Sakari Ailus <sakari.ailus@linux.intel.com>
8674 M: Bingbu Cao <bingbu.cao@intel.com>
8675 R: Tian Shu Qiu <tian.shu.qiu@intel.com>
8676 L: linux-media@vger.kernel.org
8677 S: Maintained
8678 F: Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8679 F: drivers/media/pci/intel/ipu3/
8680
8681 INTEL IPU3 CSI-2 IMGU DRIVER
8682 M: Sakari Ailus <sakari.ailus@linux.intel.com>
8683 L: linux-media@vger.kernel.org
8684 S: Maintained
8685 F: Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8686 F: Documentation/media/v4l-drivers/ipu3.rst
8687 F: Documentation/media/v4l-drivers/ipu3_rcb.svg
8688 F: drivers/staging/media/ipu3/
8689
8690 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8691 M: Krzysztof Halasa <khalasa@piap.pl>
8692 S: Maintained
8693 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
8694 F: drivers/net/wan/ixp4xx_hss.c
8695 F: drivers/soc/ixp4xx/ixp4xx-npe.c
8696 F: drivers/soc/ixp4xx/ixp4xx-qmgr.c
8697 F: include/linux/soc/ixp4xx/npe.h
8698 F: include/linux/soc/ixp4xx/qmgr.h
8699
8700 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8701 M: Deepak Saxena <dsaxena@plexity.net>
8702 S: Maintained
8703 F: drivers/char/hw_random/ixp4xx-rng.c
8704
8705 INTEL MANAGEMENT ENGINE (mei)
8706 M: Tomas Winkler <tomas.winkler@intel.com>
8707 L: linux-kernel@vger.kernel.org
8708 S: Supported
8709 F: Documentation/driver-api/mei/*
8710 F: drivers/misc/mei/*
8711 F: drivers/watchdog/mei_wdt.c
8712 F: include/linux/mei_cl_bus.h
8713 F: include/uapi/linux/mei.h
8714 F: samples/mei/*
8715
8716 INTEL MENLOW THERMAL DRIVER
8717 M: Sujith Thomas <sujith.thomas@intel.com>
8718 L: platform-driver-x86@vger.kernel.org
8719 S: Supported
8720 W: https://01.org/linux-acpi
8721 F: drivers/platform/x86/intel_menlow.c
8722
8723 INTEL MIC DRIVERS (mic)
8724 M: Sudeep Dutt <sudeep.dutt@intel.com>
8725 M: Ashutosh Dixit <ashutosh.dixit@intel.com>
8726 S: Supported
8727 W: https://github.com/sudeepdutt/mic
8728 W: http://software.intel.com/en-us/mic-developer
8729 F: Documentation/misc-devices/mic/
8730 F: drivers/dma/mic_x100_dma.c
8731 F: drivers/dma/mic_x100_dma.h
8732 F: drivers/misc/mic/
8733 F: include/linux/mic_bus.h
8734 F: include/linux/scif.h
8735 F: include/uapi/linux/mic_common.h
8736 F: include/uapi/linux/mic_ioctl.h
8737 F: include/uapi/linux/scif_ioctl.h
8738
8739 INTEL PMC CORE DRIVER
8740 M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8741 M: Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8742 L: platform-driver-x86@vger.kernel.org
8743 S: Maintained
8744 F: drivers/platform/x86/intel_pmc_core*
8745
8746 INTEL PMC/P-Unit IPC DRIVER
8747 M: Zha Qipeng<qipeng.zha@intel.com>
8748 L: platform-driver-x86@vger.kernel.org
8749 S: Maintained
8750 F: arch/x86/include/asm/intel_pmc_ipc.h
8751 F: arch/x86/include/asm/intel_punit_ipc.h
8752 F: drivers/platform/x86/intel_pmc_ipc.c
8753 F: drivers/platform/x86/intel_punit_ipc.c
8754
8755 INTEL PMIC GPIO DRIVERS
8756 M: Andy Shevchenko <andy@kernel.org>
8757 S: Maintained
8758 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8759 F: drivers/gpio/gpio-*cove.c
8760 F: drivers/gpio/gpio-msic.c
8761
8762 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8763 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8764 S: Maintained
8765 F: drivers/mfd/intel_msic.c
8766 F: drivers/mfd/intel_soc_pmic*
8767 F: include/linux/mfd/intel_msic.h
8768 F: include/linux/mfd/intel_soc_pmic*
8769
8770 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8771 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
8772 L: linux-wireless@vger.kernel.org
8773 S: Maintained
8774 F: Documentation/networking/device_drivers/intel/ipw2100.txt
8775 F: Documentation/networking/device_drivers/intel/ipw2200.txt
8776 F: drivers/net/wireless/intel/ipw2x00/
8777
8778 INTEL PSTATE DRIVER
8779 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8780 M: Len Brown <lenb@kernel.org>
8781 L: linux-pm@vger.kernel.org
8782 S: Supported
8783 F: drivers/cpufreq/intel_pstate.c
8784
8785 INTEL RDMA RNIC DRIVER
8786 M: Faisal Latif <faisal.latif@intel.com>
8787 M: Shiraz Saleem <shiraz.saleem@intel.com>
8788 L: linux-rdma@vger.kernel.org
8789 S: Supported
8790 F: drivers/infiniband/hw/i40iw/
8791 F: include/uapi/rdma/i40iw-abi.h
8792
8793 INTEL SPEED SELECT TECHNOLOGY
8794 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8795 L: platform-driver-x86@vger.kernel.org
8796 S: Maintained
8797 F: drivers/platform/x86/intel_speed_select_if/
8798 F: include/uapi/linux/isst_if.h
8799 F: tools/power/x86/intel-speed-select/
8800
8801 INTEL STRATIX10 FIRMWARE DRIVERS
8802 M: Richard Gong <richard.gong@linux.intel.com>
8803 L: linux-kernel@vger.kernel.org
8804 S: Maintained
8805 F: Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8806 F: Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8807 F: drivers/firmware/stratix10-rsu.c
8808 F: drivers/firmware/stratix10-svc.c
8809 F: include/linux/firmware/intel/stratix10-smc.h
8810 F: include/linux/firmware/intel/stratix10-svc-client.h
8811
8812 INTEL TELEMETRY DRIVER
8813 M: Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8814 M: "David E. Box" <david.e.box@linux.intel.com>
8815 L: platform-driver-x86@vger.kernel.org
8816 S: Maintained
8817 F: arch/x86/include/asm/intel_telemetry.h
8818 F: drivers/platform/x86/intel_telemetry*
8819
8820 INTEL UNCORE FREQUENCY CONTROL
8821 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8822 L: platform-driver-x86@vger.kernel.org
8823 S: Maintained
8824 F: drivers/platform/x86/intel-uncore-frequency.c
8825
8826 INTEL VIRTUAL BUTTON DRIVER
8827 M: AceLan Kao <acelan.kao@canonical.com>
8828 L: platform-driver-x86@vger.kernel.org
8829 S: Maintained
8830 F: drivers/platform/x86/intel-vbtn.c
8831
8832 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8833 M: Stanislaw Gruszka <stf_xl@wp.pl>
8834 L: linux-wireless@vger.kernel.org
8835 S: Supported
8836 F: drivers/net/wireless/intel/iwlegacy/
8837
8838 INTEL WIRELESS WIFI LINK (iwlwifi)
8839 M: Johannes Berg <johannes.berg@intel.com>
8840 M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8841 M: Luca Coelho <luciano.coelho@intel.com>
8842 M: Intel Linux Wireless <linuxwifi@intel.com>
8843 L: linux-wireless@vger.kernel.org
8844 S: Supported
8845 W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8846 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8847 F: drivers/net/wireless/intel/iwlwifi/
8848
8849 INTEL WIRELESS WIMAX CONNECTION 2400
8850 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8851 M: linux-wimax@intel.com
8852 L: wimax@linuxwimax.org (subscribers-only)
8853 S: Supported
8854 W: http://linuxwimax.org
8855 F: Documentation/admin-guide/wimax/i2400m.rst
8856 F: drivers/net/wimax/i2400m/
8857 F: include/uapi/linux/wimax/i2400m.h
8858
8859 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8860 M: Mario Limonciello <mario.limonciello@dell.com>
8861 S: Maintained
8862 F: drivers/platform/x86/intel-wmi-thunderbolt.c
8863
8864 INTEL(R) TRACE HUB
8865 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
8866 S: Supported
8867 F: Documentation/trace/intel_th.rst
8868 F: drivers/hwtracing/intel_th/
8869 F: include/linux/intel_th.h
8870
8871 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8872 M: Ning Sun <ning.sun@intel.com>
8873 L: tboot-devel@lists.sourceforge.net
8874 S: Supported
8875 W: http://tboot.sourceforge.net
8876 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8877 F: Documentation/x86/intel_txt.rst
8878 F: arch/x86/kernel/tboot.c
8879 F: include/linux/tboot.h
8880
8881 INTERCONNECT API
8882 M: Georgi Djakov <georgi.djakov@linaro.org>
8883 L: linux-pm@vger.kernel.org
8884 S: Maintained
8885 F: Documentation/devicetree/bindings/interconnect/
8886 F: Documentation/driver-api/interconnect.rst
8887 F: drivers/interconnect/
8888 F: include/dt-bindings/interconnect/
8889 F: include/linux/interconnect-provider.h
8890 F: include/linux/interconnect.h
8891
8892 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8893 M: Linus Walleij <linus.walleij@linaro.org>
8894 L: linux-iio@vger.kernel.org
8895 S: Maintained
8896 F: Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8897 F: drivers/iio/gyro/mpu3050*
8898
8899 IOC3 ETHERNET DRIVER
8900 M: Ralf Baechle <ralf@linux-mips.org>
8901 L: linux-mips@vger.kernel.org
8902 S: Maintained
8903 F: drivers/net/ethernet/sgi/ioc3-eth.c
8904
8905 IOMAP FILESYSTEM LIBRARY
8906 M: Christoph Hellwig <hch@infradead.org>
8907 M: Darrick J. Wong <darrick.wong@oracle.com>
8908 M: linux-xfs@vger.kernel.org
8909 M: linux-fsdevel@vger.kernel.org
8910 L: linux-xfs@vger.kernel.org
8911 L: linux-fsdevel@vger.kernel.org
8912 S: Supported
8913 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8914 F: fs/iomap/
8915 F: include/linux/iomap.h
8916
8917 IOMMU DRIVERS
8918 M: Joerg Roedel <joro@8bytes.org>
8919 L: iommu@lists.linux-foundation.org
8920 S: Maintained
8921 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8922 F: Documentation/devicetree/bindings/iommu/
8923 F: drivers/iommu/
8924 F: include/linux/iommu.h
8925 F: include/linux/iova.h
8926 F: include/linux/of_iommu.h
8927
8928 IO_URING
8929 M: Jens Axboe <axboe@kernel.dk>
8930 L: io-uring@vger.kernel.org
8931 S: Maintained
8932 T: git git://git.kernel.dk/linux-block
8933 T: git git://git.kernel.dk/liburing
8934 F: fs/io-wq.c
8935 F: fs/io-wq.h
8936 F: fs/io_uring.c
8937 F: include/uapi/linux/io_uring.h
8938
8939 IPMI SUBSYSTEM
8940 M: Corey Minyard <minyard@acm.org>
8941 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8942 S: Supported
8943 W: http://openipmi.sourceforge.net/
8944 F: Documentation/driver-api/ipmi.rst
8945 F: Documentation/devicetree/bindings/ipmi/
8946 F: drivers/char/ipmi/
8947 F: include/linux/ipmi*
8948 F: include/uapi/linux/ipmi*
8949
8950 IPS SCSI RAID DRIVER
8951 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8952 L: linux-scsi@vger.kernel.org
8953 S: Maintained
8954 W: http://www.adaptec.com/
8955 F: drivers/scsi/ips*
8956
8957 IPVS
8958 M: Wensong Zhang <wensong@linux-vs.org>
8959 M: Simon Horman <horms@verge.net.au>
8960 M: Julian Anastasov <ja@ssi.bg>
8961 L: netdev@vger.kernel.org
8962 L: lvs-devel@vger.kernel.org
8963 S: Maintained
8964 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8965 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8966 F: Documentation/networking/ipvs-sysctl.txt
8967 F: include/net/ip_vs.h
8968 F: include/uapi/linux/ip_vs.h
8969 F: net/netfilter/ipvs/
8970
8971 IPWIRELESS DRIVER
8972 M: Jiri Kosina <jikos@kernel.org>
8973 M: David Sterba <dsterba@suse.com>
8974 S: Odd Fixes
8975 F: drivers/tty/ipwireless/
8976
8977 IPX NETWORK LAYER
8978 L: netdev@vger.kernel.org
8979 S: Obsolete
8980 F: include/uapi/linux/ipx.h
8981
8982 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8983 M: Marc Zyngier <maz@kernel.org>
8984 S: Maintained
8985 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8986 F: Documentation/core-api/irq/irq-domain.rst
8987 F: include/linux/irqdomain.h
8988 F: kernel/irq/irqdomain.c
8989 F: kernel/irq/msi.c
8990
8991 IRQ SUBSYSTEM
8992 M: Thomas Gleixner <tglx@linutronix.de>
8993 L: linux-kernel@vger.kernel.org
8994 S: Maintained
8995 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8996 F: kernel/irq/
8997
8998 IRQCHIP DRIVERS
8999 M: Thomas Gleixner <tglx@linutronix.de>
9000 M: Jason Cooper <jason@lakedaemon.net>
9001 M: Marc Zyngier <maz@kernel.org>
9002 L: linux-kernel@vger.kernel.org
9003 S: Maintained
9004 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9005 F: Documentation/devicetree/bindings/interrupt-controller/
9006 F: drivers/irqchip/
9007
9008 ISA
9009 M: William Breathitt Gray <vilhelm.gray@gmail.com>
9010 S: Maintained
9011 F: Documentation/driver-api/isa.rst
9012 F: drivers/base/isa.c
9013 F: include/linux/isa.h
9014
9015 ISA RADIO MODULE
9016 M: Hans Verkuil <hverkuil@xs4all.nl>
9017 L: linux-media@vger.kernel.org
9018 S: Maintained
9019 W: https://linuxtv.org
9020 T: git git://linuxtv.org/media_tree.git
9021 F: drivers/media/radio/radio-isa*
9022
9023 ISAPNP
9024 M: Jaroslav Kysela <perex@perex.cz>
9025 S: Maintained
9026 F: Documentation/driver-api/isapnp.rst
9027 F: drivers/pnp/isapnp/
9028 F: include/linux/isapnp.h
9029
9030 ISCSI
9031 M: Lee Duncan <lduncan@suse.com>
9032 M: Chris Leech <cleech@redhat.com>
9033 L: open-iscsi@googlegroups.com
9034 L: linux-scsi@vger.kernel.org
9035 S: Maintained
9036 W: www.open-iscsi.com
9037 F: drivers/scsi/*iscsi*
9038 F: include/scsi/*iscsi*
9039
9040 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9041 M: Peter Jones <pjones@redhat.com>
9042 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
9043 S: Maintained
9044 F: drivers/firmware/iscsi_ibft*
9045
9046 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9047 M: Sagi Grimberg <sagi@grimberg.me>
9048 M: Max Gurtovoy <maxg@mellanox.com>
9049 L: linux-rdma@vger.kernel.org
9050 S: Supported
9051 W: http://www.openfabrics.org
9052 W: www.open-iscsi.org
9053 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9054 F: drivers/infiniband/ulp/iser/
9055
9056 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9057 M: Sagi Grimberg <sagi@grimberg.me>
9058 L: linux-rdma@vger.kernel.org
9059 L: target-devel@vger.kernel.org
9060 S: Supported
9061 W: http://www.linux-iscsi.org
9062 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9063 F: drivers/infiniband/ulp/isert
9064
9065 ISDN/CMTP OVER BLUETOOTH
9066 M: Karsten Keil <isdn@linux-pingi.de>
9067 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9068 L: netdev@vger.kernel.org
9069 S: Odd Fixes
9070 W: http://www.isdn4linux.de
9071 F: Documentation/isdn/
9072 F: drivers/isdn/capi/
9073 F: include/linux/isdn/
9074 F: include/uapi/linux/isdn/
9075 F: net/bluetooth/cmtp/
9076
9077 ISDN/mISDN SUBSYSTEM
9078 M: Karsten Keil <isdn@linux-pingi.de>
9079 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9080 L: netdev@vger.kernel.org
9081 S: Maintained
9082 W: http://www.isdn4linux.de
9083 F: drivers/isdn/Kconfig
9084 F: drivers/isdn/Makefile
9085 F: drivers/isdn/hardware/
9086 F: drivers/isdn/mISDN/
9087
9088 IT87 HARDWARE MONITORING DRIVER
9089 M: Jean Delvare <jdelvare@suse.com>
9090 L: linux-hwmon@vger.kernel.org
9091 S: Maintained
9092 F: Documentation/hwmon/it87.rst
9093 F: drivers/hwmon/it87.c
9094
9095 IT913X MEDIA DRIVER
9096 M: Antti Palosaari <crope@iki.fi>
9097 L: linux-media@vger.kernel.org
9098 S: Maintained
9099 W: https://linuxtv.org
9100 W: http://palosaari.fi/linux/
9101 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9102 T: git git://linuxtv.org/anttip/media_tree.git
9103 F: drivers/media/tuners/it913x*
9104
9105 IVTV VIDEO4LINUX DRIVER
9106 M: Andy Walls <awalls@md.metrocast.net>
9107 L: linux-media@vger.kernel.org
9108 S: Maintained
9109 W: https://linuxtv.org
9110 T: git git://linuxtv.org/media_tree.git
9111 F: Documentation/media/v4l-drivers/ivtv*
9112 F: drivers/media/pci/ivtv/
9113 F: include/uapi/linux/ivtv*
9114
9115 IX2505V MEDIA DRIVER
9116 M: Malcolm Priestley <tvboxspy@gmail.com>
9117 L: linux-media@vger.kernel.org
9118 S: Maintained
9119 W: https://linuxtv.org
9120 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9121 F: drivers/media/dvb-frontends/ix2505v*
9122
9123 JAILHOUSE HYPERVISOR INTERFACE
9124 M: Jan Kiszka <jan.kiszka@siemens.com>
9125 L: jailhouse-dev@googlegroups.com
9126 S: Maintained
9127 F: arch/x86/include/asm/jailhouse_para.h
9128 F: arch/x86/kernel/jailhouse.c
9129
9130 JC42.4 TEMPERATURE SENSOR DRIVER
9131 M: Guenter Roeck <linux@roeck-us.net>
9132 L: linux-hwmon@vger.kernel.org
9133 S: Maintained
9134 F: Documentation/hwmon/jc42.rst
9135 F: drivers/hwmon/jc42.c
9136
9137 JFS FILESYSTEM
9138 M: Dave Kleikamp <shaggy@kernel.org>
9139 L: jfs-discussion@lists.sourceforge.net
9140 S: Maintained
9141 W: http://jfs.sourceforge.net/
9142 T: git git://github.com/kleikamp/linux-shaggy.git
9143 F: Documentation/admin-guide/jfs.rst
9144 F: fs/jfs/
9145
9146 JME NETWORK DRIVER
9147 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
9148 L: netdev@vger.kernel.org
9149 S: Maintained
9150 F: drivers/net/ethernet/jme.*
9151
9152 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9153 M: David Woodhouse <dwmw2@infradead.org>
9154 M: Richard Weinberger <richard@nod.at>
9155 L: linux-mtd@lists.infradead.org
9156 S: Odd Fixes
9157 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
9158 T: git git://git.infradead.org/ubifs-2.6.git
9159 F: fs/jffs2/
9160 F: include/uapi/linux/jffs2.h
9161
9162 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9163 M: "Theodore Ts'o" <tytso@mit.edu>
9164 M: Jan Kara <jack@suse.com>
9165 L: linux-ext4@vger.kernel.org
9166 S: Maintained
9167 F: fs/jbd2/
9168 F: include/linux/jbd2.h
9169
9170 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9171 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9172 L: linux-media@vger.kernel.org
9173 S: Maintained
9174 F: drivers/media/platform/rcar_jpu.c
9175
9176 JSM Neo PCI based serial card
9177 L: linux-serial@vger.kernel.org
9178 S: Orphan
9179 F: drivers/tty/serial/jsm/
9180
9181 K10TEMP HARDWARE MONITORING DRIVER
9182 M: Clemens Ladisch <clemens@ladisch.de>
9183 L: linux-hwmon@vger.kernel.org
9184 S: Maintained
9185 F: Documentation/hwmon/k10temp.rst
9186 F: drivers/hwmon/k10temp.c
9187
9188 K8TEMP HARDWARE MONITORING DRIVER
9189 M: Rudolf Marek <r.marek@assembler.cz>
9190 L: linux-hwmon@vger.kernel.org
9191 S: Maintained
9192 F: Documentation/hwmon/k8temp.rst
9193 F: drivers/hwmon/k8temp.c
9194
9195 KASAN
9196 M: Andrey Ryabinin <aryabinin@virtuozzo.com>
9197 R: Alexander Potapenko <glider@google.com>
9198 R: Dmitry Vyukov <dvyukov@google.com>
9199 L: kasan-dev@googlegroups.com
9200 S: Maintained
9201 F: Documentation/dev-tools/kasan.rst
9202 F: arch/*/include/asm/kasan.h
9203 F: arch/*/mm/kasan_init*
9204 F: include/linux/kasan*.h
9205 F: lib/test_kasan.c
9206 F: mm/kasan/
9207 F: scripts/Makefile.kasan
9208
9209 KCONFIG
9210 M: Masahiro Yamada <masahiroy@kernel.org>
9211 L: linux-kbuild@vger.kernel.org
9212 S: Maintained
9213 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9214 F: Documentation/kbuild/kconfig*
9215 F: scripts/Kconfig.include
9216 F: scripts/kconfig/
9217
9218 KDUMP
9219 M: Dave Young <dyoung@redhat.com>
9220 M: Baoquan He <bhe@redhat.com>
9221 R: Vivek Goyal <vgoyal@redhat.com>
9222 L: kexec@lists.infradead.org
9223 S: Maintained
9224 W: http://lse.sourceforge.net/kdump/
9225 F: Documentation/admin-guide/kdump/
9226 F: fs/proc/vmcore.c
9227 F: include/linux/crash_core.h
9228 F: include/linux/crash_dump.h
9229 F: include/uapi/linux/vmcore.h
9230 F: kernel/crash_*.c
9231
9232 KEENE FM RADIO TRANSMITTER DRIVER
9233 M: Hans Verkuil <hverkuil@xs4all.nl>
9234 L: linux-media@vger.kernel.org
9235 S: Maintained
9236 W: https://linuxtv.org
9237 T: git git://linuxtv.org/media_tree.git
9238 F: drivers/media/radio/radio-keene*
9239
9240 KERNEL AUTOMOUNTER
9241 M: Ian Kent <raven@themaw.net>
9242 L: autofs@vger.kernel.org
9243 S: Maintained
9244 F: fs/autofs/
9245
9246 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9247 M: Masahiro Yamada <masahiroy@kernel.org>
9248 M: Michal Marek <michal.lkml@markovi.net>
9249 L: linux-kbuild@vger.kernel.org
9250 S: Maintained
9251 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9252 F: Documentation/kbuild/
9253 F: Makefile
9254 F: scripts/*vmlinux*
9255 F: scripts/Kbuild*
9256 F: scripts/Makefile*
9257 F: scripts/basic/
9258 F: scripts/mk*
9259 F: scripts/mod/
9260 F: scripts/package/
9261
9262 KERNEL JANITORS
9263 L: kernel-janitors@vger.kernel.org
9264 S: Odd Fixes
9265 W: http://kernelnewbies.org/KernelJanitors
9266
9267 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9268 M: "J. Bruce Fields" <bfields@fieldses.org>
9269 M: Chuck Lever <chuck.lever@oracle.com>
9270 L: linux-nfs@vger.kernel.org
9271 S: Supported
9272 W: http://nfs.sourceforge.net/
9273 T: git git://linux-nfs.org/~bfields/linux.git
9274 F: fs/lockd/
9275 F: fs/nfs_common/
9276 F: fs/nfsd/
9277 F: include/linux/lockd/
9278 F: include/linux/sunrpc/
9279 F: include/uapi/linux/nfsd/
9280 F: include/uapi/linux/sunrpc/
9281 F: net/sunrpc/
9282
9283 KERNEL SELFTEST FRAMEWORK
9284 M: Shuah Khan <shuah@kernel.org>
9285 M: Shuah Khan <skhan@linuxfoundation.org>
9286 L: linux-kselftest@vger.kernel.org
9287 S: Maintained
9288 Q: https://patchwork.kernel.org/project/linux-kselftest/list/
9289 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9290 F: Documentation/dev-tools/kselftest*
9291 F: tools/testing/selftests/
9292
9293 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9294 M: Brendan Higgins <brendanhiggins@google.com>
9295 L: linux-kselftest@vger.kernel.org
9296 L: kunit-dev@googlegroups.com
9297 S: Maintained
9298 W: https://google.github.io/kunit-docs/third_party/kernel/docs/
9299 F: Documentation/dev-tools/kunit/
9300 F: include/kunit/
9301 F: lib/kunit/
9302 F: tools/testing/kunit/
9303
9304 KERNEL USERMODE HELPER
9305 M: Luis Chamberlain <mcgrof@kernel.org>
9306 L: linux-kernel@vger.kernel.org
9307 S: Maintained
9308 F: include/linux/umh.h
9309 F: kernel/umh.c
9310
9311 KERNEL VIRTUAL MACHINE (KVM)
9312 M: Paolo Bonzini <pbonzini@redhat.com>
9313 L: kvm@vger.kernel.org
9314 S: Supported
9315 W: http://www.linux-kvm.org
9316 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9317 F: Documentation/virt/kvm/
9318 F: include/asm-generic/kvm*
9319 F: include/kvm/iodev.h
9320 F: include/linux/kvm*
9321 F: include/trace/events/kvm.h
9322 F: include/uapi/asm-generic/kvm*
9323 F: include/uapi/linux/kvm*
9324 F: tools/kvm/
9325 F: tools/testing/selftests/kvm/
9326 F: virt/kvm/*
9327
9328 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9329 M: Marc Zyngier <maz@kernel.org>
9330 R: James Morse <james.morse@arm.com>
9331 R: Julien Thierry <julien.thierry.kdev@gmail.com>
9332 R: Suzuki K Poulose <suzuki.poulose@arm.com>
9333 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9334 L: kvmarm@lists.cs.columbia.edu
9335 S: Maintained
9336 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9337 F: arch/arm64/include/asm/kvm*
9338 F: arch/arm64/include/uapi/asm/kvm*
9339 F: arch/arm64/kvm/
9340 F: include/kvm/arm_*
9341 F: virt/kvm/arm/
9342
9343 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9344 L: linux-mips@vger.kernel.org
9345 L: kvm@vger.kernel.org
9346 S: Orphan
9347 F: arch/mips/include/asm/kvm*
9348 F: arch/mips/include/uapi/asm/kvm*
9349 F: arch/mips/kvm/
9350
9351 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9352 M: Paul Mackerras <paulus@ozlabs.org>
9353 L: kvm-ppc@vger.kernel.org
9354 S: Supported
9355 W: http://www.linux-kvm.org/
9356 T: git git://github.com/agraf/linux-2.6.git
9357 F: arch/powerpc/include/asm/kvm*
9358 F: arch/powerpc/include/uapi/asm/kvm*
9359 F: arch/powerpc/kernel/kvm*
9360 F: arch/powerpc/kvm/
9361
9362 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9363 M: Christian Borntraeger <borntraeger@de.ibm.com>
9364 M: Janosch Frank <frankja@linux.ibm.com>
9365 R: David Hildenbrand <david@redhat.com>
9366 R: Cornelia Huck <cohuck@redhat.com>
9367 R: Claudio Imbrenda <imbrenda@linux.ibm.com>
9368 L: kvm@vger.kernel.org
9369 S: Supported
9370 W: http://www.ibm.com/developerworks/linux/linux390/
9371 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9372 F: Documentation/virt/kvm/s390*
9373 F: arch/s390/include/asm/gmap.h
9374 F: arch/s390/include/asm/kvm*
9375 F: arch/s390/include/uapi/asm/kvm*
9376 F: arch/s390/kvm/
9377 F: arch/s390/mm/gmap.c
9378 F: tools/testing/selftests/kvm/*/s390x/
9379 F: tools/testing/selftests/kvm/s390x/
9380
9381 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9382 M: Paolo Bonzini <pbonzini@redhat.com>
9383 R: Sean Christopherson <sean.j.christopherson@intel.com>
9384 R: Vitaly Kuznetsov <vkuznets@redhat.com>
9385 R: Wanpeng Li <wanpengli@tencent.com>
9386 R: Jim Mattson <jmattson@google.com>
9387 R: Joerg Roedel <joro@8bytes.org>
9388 L: kvm@vger.kernel.org
9389 S: Supported
9390 W: http://www.linux-kvm.org
9391 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9392 F: arch/x86/include/asm/kvm*
9393 F: arch/x86/include/asm/pvclock-abi.h
9394 F: arch/x86/include/asm/svm.h
9395 F: arch/x86/include/asm/vmx*.h
9396 F: arch/x86/include/uapi/asm/kvm*
9397 F: arch/x86/include/uapi/asm/svm.h
9398 F: arch/x86/include/uapi/asm/vmx.h
9399 F: arch/x86/kernel/kvm.c
9400 F: arch/x86/kernel/kvmclock.c
9401 F: arch/x86/kvm/
9402 F: arch/x86/kvm/*/
9403
9404 KERNFS
9405 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9406 M: Tejun Heo <tj@kernel.org>
9407 S: Supported
9408 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9409 F: fs/kernfs/
9410 F: include/linux/kernfs.h
9411
9412 KEXEC
9413 M: Eric Biederman <ebiederm@xmission.com>
9414 L: kexec@lists.infradead.org
9415 S: Maintained
9416 W: http://kernel.org/pub/linux/utils/kernel/kexec/
9417 F: include/linux/kexec.h
9418 F: include/uapi/linux/kexec.h
9419 F: kernel/kexec*
9420
9421 KEYS-ENCRYPTED
9422 M: Mimi Zohar <zohar@linux.ibm.com>
9423 L: linux-integrity@vger.kernel.org
9424 L: keyrings@vger.kernel.org
9425 S: Supported
9426 F: Documentation/security/keys/trusted-encrypted.rst
9427 F: include/keys/encrypted-type.h
9428 F: security/keys/encrypted-keys/
9429
9430 KEYS-TRUSTED
9431 M: James Bottomley <jejb@linux.ibm.com>
9432 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9433 M: Mimi Zohar <zohar@linux.ibm.com>
9434 L: linux-integrity@vger.kernel.org
9435 L: keyrings@vger.kernel.org
9436 S: Supported
9437 F: Documentation/security/keys/trusted-encrypted.rst
9438 F: include/keys/trusted-type.h
9439 F: include/keys/trusted_tpm.h
9440 F: security/keys/trusted-keys/
9441
9442 KEYS/KEYRINGS
9443 M: David Howells <dhowells@redhat.com>
9444 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9445 L: keyrings@vger.kernel.org
9446 S: Maintained
9447 F: Documentation/security/keys/core.rst
9448 F: include/keys/
9449 F: include/linux/key-type.h
9450 F: include/linux/key.h
9451 F: include/linux/keyctl.h
9452 F: include/uapi/linux/keyctl.h
9453 F: security/keys/
9454
9455 KFIFO
9456 M: Stefani Seibold <stefani@seibold.net>
9457 S: Maintained
9458 F: include/linux/kfifo.h
9459 F: lib/kfifo.c
9460 F: samples/kfifo/
9461
9462 KGDB / KDB /debug_core
9463 M: Jason Wessel <jason.wessel@windriver.com>
9464 M: Daniel Thompson <daniel.thompson@linaro.org>
9465 R: Douglas Anderson <dianders@chromium.org>
9466 L: kgdb-bugreport@lists.sourceforge.net
9467 S: Maintained
9468 W: http://kgdb.wiki.kernel.org/
9469 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9470 F: Documentation/dev-tools/kgdb.rst
9471 F: drivers/misc/kgdbts.c
9472 F: drivers/tty/serial/kgdboc.c
9473 F: include/linux/kdb.h
9474 F: include/linux/kgdb.h
9475 F: kernel/debug/
9476
9477 KMEMLEAK
9478 M: Catalin Marinas <catalin.marinas@arm.com>
9479 S: Maintained
9480 F: Documentation/dev-tools/kmemleak.rst
9481 F: include/linux/kmemleak.h
9482 F: mm/kmemleak-test.c
9483 F: mm/kmemleak.c
9484
9485 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9486 M: Luis Chamberlain <mcgrof@kernel.org>
9487 L: linux-kernel@vger.kernel.org
9488 S: Maintained
9489 F: include/linux/kmod.h
9490 F: kernel/kmod.c
9491 F: lib/test_kmod.c
9492 F: tools/testing/selftests/kmod/
9493
9494 KPROBES
9495 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9496 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9497 M: "David S. Miller" <davem@davemloft.net>
9498 M: Masami Hiramatsu <mhiramat@kernel.org>
9499 S: Maintained
9500 F: Documentation/kprobes.txt
9501 F: include/asm-generic/kprobes.h
9502 F: include/linux/kprobes.h
9503 F: kernel/kprobes.c
9504
9505 KS0108 LCD CONTROLLER DRIVER
9506 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9507 S: Maintained
9508 F: Documentation/admin-guide/auxdisplay/ks0108.rst
9509 F: drivers/auxdisplay/ks0108.c
9510 F: include/linux/ks0108.h
9511
9512 L3MDEV
9513 M: David Ahern <dsahern@kernel.org>
9514 L: netdev@vger.kernel.org
9515 S: Maintained
9516 F: include/net/l3mdev.h
9517 F: net/l3mdev
9518
9519 L7 BPF FRAMEWORK
9520 M: John Fastabend <john.fastabend@gmail.com>
9521 M: Daniel Borkmann <daniel@iogearbox.net>
9522 M: Jakub Sitnicki <jakub@cloudflare.com>
9523 M: Lorenz Bauer <lmb@cloudflare.com>
9524 L: netdev@vger.kernel.org
9525 L: bpf@vger.kernel.org
9526 S: Maintained
9527 F: include/linux/skmsg.h
9528 F: net/core/skmsg.c
9529 F: net/core/sock_map.c
9530 F: net/ipv4/tcp_bpf.c
9531 F: net/ipv4/udp_bpf.c
9532
9533 LANTIQ / INTEL Ethernet drivers
9534 M: Hauke Mehrtens <hauke@hauke-m.de>
9535 L: netdev@vger.kernel.org
9536 S: Maintained
9537 F: drivers/net/dsa/lantiq_gswip.c
9538 F: drivers/net/dsa/lantiq_pce.h
9539 F: drivers/net/ethernet/lantiq_xrx200.c
9540 F: net/dsa/tag_gswip.c
9541
9542 LANTIQ MIPS ARCHITECTURE
9543 M: John Crispin <john@phrozen.org>
9544 L: linux-mips@vger.kernel.org
9545 S: Maintained
9546 F: arch/mips/lantiq
9547 F: drivers/soc/lantiq
9548
9549 LAPB module
9550 L: linux-x25@vger.kernel.org
9551 S: Orphan
9552 F: Documentation/networking/lapb-module.txt
9553 F: include/*/lapb.h
9554 F: net/lapb/
9555
9556 LASI 53c700 driver for PARISC
9557 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9558 L: linux-scsi@vger.kernel.org
9559 S: Maintained
9560 F: Documentation/scsi/53c700.rst
9561 F: drivers/scsi/53c700*
9562
9563 LEAKING_ADDRESSES
9564 M: Tobin C. Harding <me@tobin.cc>
9565 M: Tycho Andersen <tycho@tycho.ws>
9566 L: kernel-hardening@lists.openwall.com
9567 S: Maintained
9568 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9569 F: scripts/leaking_addresses.pl
9570
9571 LED SUBSYSTEM
9572 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
9573 M: Pavel Machek <pavel@ucw.cz>
9574 R: Dan Murphy <dmurphy@ti.com>
9575 L: linux-leds@vger.kernel.org
9576 S: Maintained
9577 T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9578 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9579 F: Documentation/devicetree/bindings/leds/
9580 F: drivers/leds/
9581 F: include/linux/leds.h
9582
9583 LEGACY EEPROM DRIVER
9584 M: Jean Delvare <jdelvare@suse.com>
9585 S: Maintained
9586 F: Documentation/misc-devices/eeprom.rst
9587 F: drivers/misc/eeprom/eeprom.c
9588
9589 LEGO MINDSTORMS EV3
9590 R: David Lechner <david@lechnology.com>
9591 S: Maintained
9592 F: Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9593 F: arch/arm/boot/dts/da850-lego-ev3.dts
9594 F: drivers/power/supply/lego_ev3_battery.c
9595
9596 LEGO USB Tower driver
9597 M: Juergen Stuber <starblue@users.sourceforge.net>
9598 L: legousb-devel@lists.sourceforge.net
9599 S: Maintained
9600 W: http://legousb.sourceforge.net/
9601 F: drivers/usb/misc/legousbtower.c
9602
9603 LG LAPTOP EXTRAS
9604 M: Matan Ziv-Av <matan@svgalib.org>
9605 L: platform-driver-x86@vger.kernel.org
9606 S: Maintained
9607 F: Documentation/ABI/testing/sysfs-platform-lg-laptop
9608 F: Documentation/admin-guide/laptops/lg-laptop.rst
9609 F: drivers/platform/x86/lg-laptop.c
9610
9611 LG2160 MEDIA DRIVER
9612 M: Michael Krufky <mkrufky@linuxtv.org>
9613 L: linux-media@vger.kernel.org
9614 S: Maintained
9615 W: https://linuxtv.org
9616 W: http://github.com/mkrufky
9617 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9618 T: git git://linuxtv.org/mkrufky/tuners.git
9619 F: drivers/media/dvb-frontends/lg2160.*
9620
9621 LGDT3305 MEDIA DRIVER
9622 M: Michael Krufky <mkrufky@linuxtv.org>
9623 L: linux-media@vger.kernel.org
9624 S: Maintained
9625 W: https://linuxtv.org
9626 W: http://github.com/mkrufky
9627 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9628 T: git git://linuxtv.org/mkrufky/tuners.git
9629 F: drivers/media/dvb-frontends/lgdt3305.*
9630
9631 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9632 M: Viresh Kumar <vireshk@kernel.org>
9633 L: linux-ide@vger.kernel.org
9634 S: Maintained
9635 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9636 F: drivers/ata/pata_arasan_cf.c
9637 F: include/linux/pata_arasan_cf_data.h
9638
9639 LIBATA PATA DRIVERS
9640 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9641 M: Jens Axboe <axboe@kernel.dk>
9642 L: linux-ide@vger.kernel.org
9643 S: Maintained
9644 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9645 F: drivers/ata/ata_generic.c
9646 F: drivers/ata/pata_*.c
9647
9648 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9649 M: Linus Walleij <linus.walleij@linaro.org>
9650 L: linux-ide@vger.kernel.org
9651 S: Maintained
9652 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9653 F: drivers/ata/pata_ftide010.c
9654 F: drivers/ata/sata_gemini.c
9655 F: drivers/ata/sata_gemini.h
9656
9657 LIBATA SATA AHCI PLATFORM devices support
9658 M: Hans de Goede <hdegoede@redhat.com>
9659 M: Jens Axboe <axboe@kernel.dk>
9660 L: linux-ide@vger.kernel.org
9661 S: Maintained
9662 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9663 F: drivers/ata/ahci_platform.c
9664 F: drivers/ata/libahci_platform.c
9665 F: include/linux/ahci_platform.h
9666
9667 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9668 M: Mikael Pettersson <mikpelinux@gmail.com>
9669 L: linux-ide@vger.kernel.org
9670 S: Maintained
9671 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9672 F: drivers/ata/sata_promise.*
9673
9674 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9675 M: Jens Axboe <axboe@kernel.dk>
9676 L: linux-ide@vger.kernel.org
9677 S: Maintained
9678 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9679 F: Documentation/devicetree/bindings/ata/
9680 F: drivers/ata/
9681 F: include/linux/ata.h
9682 F: include/linux/libata.h
9683
9684 LIBLOCKDEP
9685 M: Sasha Levin <alexander.levin@microsoft.com>
9686 S: Maintained
9687 F: tools/lib/lockdep/
9688
9689 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9690 M: Dan Williams <dan.j.williams@intel.com>
9691 M: Vishal Verma <vishal.l.verma@intel.com>
9692 M: Dave Jiang <dave.jiang@intel.com>
9693 L: linux-nvdimm@lists.01.org
9694 S: Supported
9695 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
9696 P: Documentation/nvdimm/maintainer-entry-profile.rst
9697 F: drivers/nvdimm/blk.c
9698 F: drivers/nvdimm/region_devs.c
9699
9700 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9701 M: Vishal Verma <vishal.l.verma@intel.com>
9702 M: Dan Williams <dan.j.williams@intel.com>
9703 M: Dave Jiang <dave.jiang@intel.com>
9704 L: linux-nvdimm@lists.01.org
9705 S: Supported
9706 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
9707 P: Documentation/nvdimm/maintainer-entry-profile.rst
9708 F: drivers/nvdimm/btt*
9709
9710 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9711 M: Dan Williams <dan.j.williams@intel.com>
9712 M: Vishal Verma <vishal.l.verma@intel.com>
9713 M: Dave Jiang <dave.jiang@intel.com>
9714 L: linux-nvdimm@lists.01.org
9715 S: Supported
9716 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
9717 P: Documentation/nvdimm/maintainer-entry-profile.rst
9718 F: drivers/nvdimm/pmem*
9719
9720 LIBNVDIMM: DEVICETREE BINDINGS
9721 M: Oliver O'Halloran <oohall@gmail.com>
9722 L: linux-nvdimm@lists.01.org
9723 S: Supported
9724 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
9725 F: Documentation/devicetree/bindings/pmem/pmem-region.txt
9726 F: drivers/nvdimm/of_pmem.c
9727
9728 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9729 M: Dan Williams <dan.j.williams@intel.com>
9730 M: Vishal Verma <vishal.l.verma@intel.com>
9731 M: Dave Jiang <dave.jiang@intel.com>
9732 M: Ira Weiny <ira.weiny@intel.com>
9733 L: linux-nvdimm@lists.01.org
9734 S: Supported
9735 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
9736 P: Documentation/nvdimm/maintainer-entry-profile.rst
9737 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9738 F: drivers/acpi/nfit/*
9739 F: drivers/nvdimm/*
9740 F: include/linux/libnvdimm.h
9741 F: include/linux/nd.h
9742 F: include/uapi/linux/ndctl.h
9743 F: tools/testing/nvdimm/
9744
9745 LICENSES and SPDX stuff
9746 M: Thomas Gleixner <tglx@linutronix.de>
9747 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9748 L: linux-spdx@vger.kernel.org
9749 S: Maintained
9750 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9751 F: COPYING
9752 F: Documentation/process/license-rules.rst
9753 F: LICENSES/
9754 F: scripts/spdxcheck-test.sh
9755 F: scripts/spdxcheck.py
9756
9757 LIGHTNVM PLATFORM SUPPORT
9758 M: Matias Bjorling <mb@lightnvm.io>
9759 L: linux-block@vger.kernel.org
9760 S: Maintained
9761 W: http://github/OpenChannelSSD
9762 F: drivers/lightnvm/
9763 F: include/linux/lightnvm.h
9764 F: include/uapi/linux/lightnvm.h
9765
9766 LINEAR RANGES HELPERS
9767 M: Mark Brown <broonie@kernel.org>
9768 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
9769 F: lib/linear_ranges.c
9770 F: lib/test_linear_ranges.c
9771 F: include/linux/linear_range.h
9772
9773 LINUX FOR POWER MACINTOSH
9774 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
9775 L: linuxppc-dev@lists.ozlabs.org
9776 S: Odd Fixes
9777 F: arch/powerpc/platforms/powermac/
9778 F: drivers/macintosh/
9779
9780 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9781 M: Michael Ellerman <mpe@ellerman.id.au>
9782 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
9783 R: Paul Mackerras <paulus@samba.org>
9784 L: linuxppc-dev@lists.ozlabs.org
9785 S: Supported
9786 W: https://github.com/linuxppc/wiki/wiki
9787 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9788 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9789 F: Documentation/ABI/stable/sysfs-firmware-opal-*
9790 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
9791 F: Documentation/devicetree/bindings/powerpc/
9792 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
9793 F: Documentation/powerpc/
9794 F: arch/powerpc/
9795 F: drivers/*/*/*pasemi*
9796 F: drivers/*/*pasemi*
9797 F: drivers/char/tpm/tpm_ibmvtpm*
9798 F: drivers/crypto/nx/
9799 F: drivers/crypto/vmx/
9800 F: drivers/i2c/busses/i2c-opal.c
9801 F: drivers/net/ethernet/ibm/ibmveth.*
9802 F: drivers/net/ethernet/ibm/ibmvnic.*
9803 F: drivers/pci/hotplug/pnv_php.c
9804 F: drivers/pci/hotplug/rpa*
9805 F: drivers/rtc/rtc-opal.c
9806 F: drivers/scsi/ibmvscsi/
9807 F: drivers/tty/hvc/hvc_opal.c
9808 F: drivers/watchdog/wdrtas.c
9809 F: tools/testing/selftests/powerpc
9810 N: /pmac
9811 N: powermac
9812 N: powernv
9813 N: [^a-z0-9]ps3
9814 N: pseries
9815
9816 LINUX FOR POWERPC EMBEDDED MPC5XXX
9817 M: Anatolij Gustschin <agust@denx.de>
9818 L: linuxppc-dev@lists.ozlabs.org
9819 S: Odd Fixes
9820 F: arch/powerpc/platforms/512x/
9821 F: arch/powerpc/platforms/52xx/
9822
9823 LINUX FOR POWERPC EMBEDDED PPC4XX
9824 L: linuxppc-dev@lists.ozlabs.org
9825 S: Orphan
9826 F: arch/powerpc/platforms/40x/
9827 F: arch/powerpc/platforms/44x/
9828
9829 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9830 M: Scott Wood <oss@buserror.net>
9831 L: linuxppc-dev@lists.ozlabs.org
9832 S: Odd fixes
9833 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9834 F: Documentation/devicetree/bindings/powerpc/fsl/
9835 F: arch/powerpc/platforms/83xx/
9836 F: arch/powerpc/platforms/85xx/
9837
9838 LINUX FOR POWERPC EMBEDDED PPC8XX
9839 M: Christophe Leroy <christophe.leroy@c-s.fr>
9840 L: linuxppc-dev@lists.ozlabs.org
9841 S: Maintained
9842 F: arch/powerpc/platforms/8xx/
9843
9844 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9845 M: Kees Cook <keescook@chromium.org>
9846 S: Maintained
9847 F: drivers/misc/lkdtm/*
9848 F: tools/testing/selftests/lkdtm/*
9849
9850 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9851 M: Alan Stern <stern@rowland.harvard.edu>
9852 M: Andrea Parri <parri.andrea@gmail.com>
9853 M: Will Deacon <will@kernel.org>
9854 M: Peter Zijlstra <peterz@infradead.org>
9855 M: Boqun Feng <boqun.feng@gmail.com>
9856 M: Nicholas Piggin <npiggin@gmail.com>
9857 M: David Howells <dhowells@redhat.com>
9858 M: Jade Alglave <j.alglave@ucl.ac.uk>
9859 M: Luc Maranget <luc.maranget@inria.fr>
9860 M: "Paul E. McKenney" <paulmck@kernel.org>
9861 R: Akira Yokosawa <akiyks@gmail.com>
9862 R: Daniel Lustig <dlustig@nvidia.com>
9863 L: linux-kernel@vger.kernel.org
9864 L: linux-arch@vger.kernel.org
9865 S: Supported
9866 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9867 F: Documentation/atomic_bitops.txt
9868 F: Documentation/atomic_t.txt
9869 F: Documentation/core-api/atomic_ops.rst
9870 F: Documentation/core-api/refcount-vs-atomic.rst
9871 F: Documentation/memory-barriers.txt
9872 F: tools/memory-model/
9873
9874 LIS3LV02D ACCELEROMETER DRIVER
9875 M: Eric Piel <eric.piel@tremplin-utc.net>
9876 S: Maintained
9877 F: Documentation/misc-devices/lis3lv02d.rst
9878 F: drivers/misc/lis3lv02d/
9879 F: drivers/platform/x86/hp_accel.c
9880
9881 LIST KUNIT TEST
9882 M: David Gow <davidgow@google.com>
9883 L: linux-kselftest@vger.kernel.org
9884 L: kunit-dev@googlegroups.com
9885 S: Maintained
9886 F: lib/list-test.c
9887
9888 LIVE PATCHING
9889 M: Josh Poimboeuf <jpoimboe@redhat.com>
9890 M: Jiri Kosina <jikos@kernel.org>
9891 M: Miroslav Benes <mbenes@suse.cz>
9892 M: Petr Mladek <pmladek@suse.com>
9893 R: Joe Lawrence <joe.lawrence@redhat.com>
9894 L: live-patching@vger.kernel.org
9895 S: Maintained
9896 T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9897 F: Documentation/ABI/testing/sysfs-kernel-livepatch
9898 F: Documentation/livepatch/
9899 F: arch/x86/include/asm/livepatch.h
9900 F: arch/x86/kernel/livepatch.c
9901 F: include/linux/livepatch.h
9902 F: kernel/livepatch/
9903 F: samples/livepatch/
9904 F: tools/testing/selftests/livepatch/
9905
9906 LLC (802.2)
9907 L: netdev@vger.kernel.org
9908 S: Odd fixes
9909 F: include/linux/llc.h
9910 F: include/net/llc*
9911 F: include/uapi/linux/llc.h
9912 F: net/llc/
9913
9914 LM73 HARDWARE MONITOR DRIVER
9915 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
9916 L: linux-hwmon@vger.kernel.org
9917 S: Maintained
9918 F: drivers/hwmon/lm73.c
9919
9920 LM78 HARDWARE MONITOR DRIVER
9921 M: Jean Delvare <jdelvare@suse.com>
9922 L: linux-hwmon@vger.kernel.org
9923 S: Maintained
9924 F: Documentation/hwmon/lm78.rst
9925 F: drivers/hwmon/lm78.c
9926
9927 LM83 HARDWARE MONITOR DRIVER
9928 M: Jean Delvare <jdelvare@suse.com>
9929 L: linux-hwmon@vger.kernel.org
9930 S: Maintained
9931 F: Documentation/hwmon/lm83.rst
9932 F: drivers/hwmon/lm83.c
9933
9934 LM90 HARDWARE MONITOR DRIVER
9935 M: Jean Delvare <jdelvare@suse.com>
9936 L: linux-hwmon@vger.kernel.org
9937 S: Maintained
9938 F: Documentation/devicetree/bindings/hwmon/lm90.txt
9939 F: Documentation/hwmon/lm90.rst
9940 F: drivers/hwmon/lm90.c
9941 F: include/dt-bindings/thermal/lm90.h
9942
9943 LM95234 HARDWARE MONITOR DRIVER
9944 M: Guenter Roeck <linux@roeck-us.net>
9945 L: linux-hwmon@vger.kernel.org
9946 S: Maintained
9947 F: Documentation/hwmon/lm95234.rst
9948 F: drivers/hwmon/lm95234.c
9949
9950 LME2510 MEDIA DRIVER
9951 M: Malcolm Priestley <tvboxspy@gmail.com>
9952 L: linux-media@vger.kernel.org
9953 S: Maintained
9954 W: https://linuxtv.org
9955 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9956 F: drivers/media/usb/dvb-usb-v2/lmedm04*
9957
9958 LOADPIN SECURITY MODULE
9959 M: Kees Cook <keescook@chromium.org>
9960 S: Supported
9961 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9962 F: Documentation/admin-guide/LSM/LoadPin.rst
9963 F: security/loadpin/
9964
9965 LOCKING PRIMITIVES
9966 M: Peter Zijlstra <peterz@infradead.org>
9967 M: Ingo Molnar <mingo@redhat.com>
9968 M: Will Deacon <will@kernel.org>
9969 L: linux-kernel@vger.kernel.org
9970 S: Maintained
9971 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9972 F: Documentation/locking/
9973 F: arch/*/include/asm/spinlock*.h
9974 F: include/linux/lockdep.h
9975 F: include/linux/mutex*.h
9976 F: include/linux/rwlock*.h
9977 F: include/linux/rwsem*.h
9978 F: include/linux/seqlock.h
9979 F: include/linux/spinlock*.h
9980 F: kernel/locking/
9981 F: lib/locking*.[ch]
9982 X: kernel/locking/locktorture.c
9983
9984 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9985 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
9986 L: linux-ntfs-dev@lists.sourceforge.net
9987 S: Maintained
9988 W: http://www.linux-ntfs.org/content/view/19/37/
9989 F: Documentation/admin-guide/ldm.rst
9990 F: block/partitions/ldm.*
9991
9992 LOGITECH HID GAMING KEYBOARDS
9993 M: Hans de Goede <hdegoede@redhat.com>
9994 L: linux-input@vger.kernel.org
9995 S: Maintained
9996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9997 F: drivers/hid/hid-lg-g15.c
9998
9999 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10000 M: Sathya Prakash <sathya.prakash@broadcom.com>
10001 M: Chaitra P B <chaitra.basappa@broadcom.com>
10002 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10003 L: MPT-FusionLinux.pdl@broadcom.com
10004 L: linux-scsi@vger.kernel.org
10005 S: Supported
10006 W: http://www.avagotech.com/support/
10007 F: drivers/message/fusion/
10008 F: drivers/scsi/mpt3sas/
10009
10010 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10011 M: Matthew Wilcox <willy@infradead.org>
10012 L: linux-scsi@vger.kernel.org
10013 S: Maintained
10014 F: drivers/scsi/sym53c8xx_2/
10015
10016 LTC1660 DAC DRIVER
10017 M: Marcus Folkesson <marcus.folkesson@gmail.com>
10018 L: linux-iio@vger.kernel.org
10019 S: Maintained
10020 F: Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10021 F: drivers/iio/dac/ltc1660.c
10022
10023 LTC2947 HARDWARE MONITOR DRIVER
10024 M: Nuno Sá <nuno.sa@analog.com>
10025 L: linux-hwmon@vger.kernel.org
10026 S: Supported
10027 W: http://ez.analog.com/community/linux-device-drivers
10028 F: Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10029 F: drivers/hwmon/ltc2947-core.c
10030 F: drivers/hwmon/ltc2947-i2c.c
10031 F: drivers/hwmon/ltc2947-spi.c
10032 F: drivers/hwmon/ltc2947.h
10033
10034 LTC2983 IIO TEMPERATURE DRIVER
10035 M: Nuno Sá <nuno.sa@analog.com>
10036 L: linux-iio@vger.kernel.org
10037 S: Supported
10038 W: http://ez.analog.com/community/linux-device-drivers
10039 F: Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10040 F: drivers/iio/temperature/ltc2983.c
10041
10042 LTC4261 HARDWARE MONITOR DRIVER
10043 M: Guenter Roeck <linux@roeck-us.net>
10044 L: linux-hwmon@vger.kernel.org
10045 S: Maintained
10046 F: Documentation/hwmon/ltc4261.rst
10047 F: drivers/hwmon/ltc4261.c
10048
10049 LTC4306 I2C MULTIPLEXER DRIVER
10050 M: Michael Hennerich <michael.hennerich@analog.com>
10051 L: linux-i2c@vger.kernel.org
10052 S: Supported
10053 W: http://ez.analog.com/community/linux-device-drivers
10054 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10055 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
10056
10057 LTP (Linux Test Project)
10058 M: Mike Frysinger <vapier@gentoo.org>
10059 M: Cyril Hrubis <chrubis@suse.cz>
10060 M: Wanlong Gao <wanlong.gao@gmail.com>
10061 M: Jan Stancek <jstancek@redhat.com>
10062 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10063 M: Alexey Kodanev <alexey.kodanev@oracle.com>
10064 L: ltp@lists.linux.it (subscribers-only)
10065 S: Maintained
10066 W: http://linux-test-project.github.io/
10067 T: git git://github.com/linux-test-project/ltp.git
10068
10069 M68K ARCHITECTURE
10070 M: Geert Uytterhoeven <geert@linux-m68k.org>
10071 L: linux-m68k@lists.linux-m68k.org
10072 S: Maintained
10073 W: http://www.linux-m68k.org/
10074 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10075 F: arch/m68k/
10076 F: drivers/zorro/
10077
10078 M68K ON APPLE MACINTOSH
10079 M: Joshua Thompson <funaho@jurai.org>
10080 L: linux-m68k@lists.linux-m68k.org
10081 S: Maintained
10082 W: http://www.mac.linux-m68k.org/
10083 F: arch/m68k/mac/
10084
10085 M68K ON HP9000/300
10086 M: Philip Blundell <philb@gnu.org>
10087 S: Maintained
10088 W: http://www.tazenda.demon.co.uk/phil/linux-hp
10089 F: arch/m68k/hp300/
10090
10091 M88DS3103 MEDIA DRIVER
10092 M: Antti Palosaari <crope@iki.fi>
10093 L: linux-media@vger.kernel.org
10094 S: Maintained
10095 W: https://linuxtv.org
10096 W: http://palosaari.fi/linux/
10097 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10098 T: git git://linuxtv.org/anttip/media_tree.git
10099 F: drivers/media/dvb-frontends/m88ds3103*
10100
10101 M88RS2000 MEDIA DRIVER
10102 M: Malcolm Priestley <tvboxspy@gmail.com>
10103 L: linux-media@vger.kernel.org
10104 S: Maintained
10105 W: https://linuxtv.org
10106 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10107 F: drivers/media/dvb-frontends/m88rs2000*
10108
10109 MA901 MASTERKIT USB FM RADIO DRIVER
10110 M: Alexey Klimov <klimov.linux@gmail.com>
10111 L: linux-media@vger.kernel.org
10112 S: Maintained
10113 T: git git://linuxtv.org/media_tree.git
10114 F: drivers/media/radio/radio-ma901.c
10115
10116 MAC80211
10117 M: Johannes Berg <johannes@sipsolutions.net>
10118 L: linux-wireless@vger.kernel.org
10119 S: Maintained
10120 W: https://wireless.wiki.kernel.org/
10121 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10122 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10123 F: Documentation/networking/mac80211-injection.txt
10124 F: Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10125 F: drivers/net/wireless/mac80211_hwsim.[ch]
10126 F: include/net/mac80211.h
10127 F: net/mac80211/
10128
10129 MAILBOX API
10130 M: Jassi Brar <jassisinghbrar@gmail.com>
10131 L: linux-kernel@vger.kernel.org
10132 S: Maintained
10133 F: drivers/mailbox/
10134 F: include/linux/mailbox_client.h
10135 F: include/linux/mailbox_controller.h
10136
10137 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10138 M: Michael Kerrisk <mtk.manpages@gmail.com>
10139 L: linux-man@vger.kernel.org
10140 S: Maintained
10141 W: http://www.kernel.org/doc/man-pages
10142
10143 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10144 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
10145 L: linux-mips@vger.kernel.org
10146 S: Maintained
10147 F: arch/mips/boot/dts/img/pistachio_marduk.dts
10148
10149 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10150 M: Andrew Lunn <andrew@lunn.ch>
10151 M: Vivien Didelot <vivien.didelot@gmail.com>
10152 L: netdev@vger.kernel.org
10153 S: Maintained
10154 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
10155 F: Documentation/networking/devlink/mv88e6xxx.rst
10156 F: drivers/net/dsa/mv88e6xxx/
10157 F: include/linux/platform_data/mv88e6xxx.h
10158
10159 MARVELL ARMADA 3700 PHY DRIVERS
10160 M: Miquel Raynal <miquel.raynal@bootlin.com>
10161 S: Maintained
10162 F: Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10163 F: Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10164 F: drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10165 F: drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10166
10167 MARVELL ARMADA DRM SUPPORT
10168 M: Russell King <linux@armlinux.org.uk>
10169 S: Maintained
10170 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10171 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10172 F: Documentation/devicetree/bindings/display/armada/
10173 F: drivers/gpu/drm/armada/
10174 F: include/uapi/drm/armada_drm.h
10175
10176 MARVELL CRYPTO DRIVER
10177 M: Boris Brezillon <bbrezillon@kernel.org>
10178 M: Arnaud Ebalard <arno@natisbad.org>
10179 M: Srujana Challa <schalla@marvell.com>
10180 L: linux-crypto@vger.kernel.org
10181 S: Maintained
10182 F: drivers/crypto/marvell/
10183
10184 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10185 M: Mirko Lindner <mlindner@marvell.com>
10186 M: Stephen Hemminger <stephen@networkplumber.org>
10187 L: netdev@vger.kernel.org
10188 S: Maintained
10189 F: drivers/net/ethernet/marvell/sk*
10190
10191 MARVELL LIBERTAS WIRELESS DRIVER
10192 L: libertas-dev@lists.infradead.org
10193 S: Orphan
10194 F: drivers/net/wireless/marvell/libertas/
10195
10196 MARVELL MACCHIATOBIN SUPPORT
10197 M: Russell King <linux@armlinux.org.uk>
10198 L: linux-arm-kernel@lists.infradead.org
10199 S: Maintained
10200 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10201
10202 MARVELL MV643XX ETHERNET DRIVER
10203 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10204 L: netdev@vger.kernel.org
10205 S: Maintained
10206 F: drivers/net/ethernet/marvell/mv643xx_eth.*
10207 F: include/linux/mv643xx.h
10208
10209 MARVELL MV88X3310 PHY DRIVER
10210 M: Russell King <linux@armlinux.org.uk>
10211 L: netdev@vger.kernel.org
10212 S: Maintained
10213 F: drivers/net/phy/marvell10g.c
10214
10215 MARVELL MVEBU THERMAL DRIVER
10216 M: Miquel Raynal <miquel.raynal@bootlin.com>
10217 S: Maintained
10218 F: drivers/thermal/armada_thermal.c
10219
10220 MARVELL MVNETA ETHERNET DRIVER
10221 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10222 L: netdev@vger.kernel.org
10223 S: Maintained
10224 F: drivers/net/ethernet/marvell/mvneta.*
10225
10226 MARVELL MWIFIEX WIRELESS DRIVER
10227 M: Amitkumar Karwar <amitkarwar@gmail.com>
10228 M: Ganapathi Bhat <ganapathi.bhat@nxp.com>
10229 M: Xinming Hu <huxinming820@gmail.com>
10230 L: linux-wireless@vger.kernel.org
10231 S: Maintained
10232 F: drivers/net/wireless/marvell/mwifiex/
10233
10234 MARVELL MWL8K WIRELESS DRIVER
10235 M: Lennert Buytenhek <buytenh@wantstofly.org>
10236 L: linux-wireless@vger.kernel.org
10237 S: Odd Fixes
10238 F: drivers/net/wireless/marvell/mwl8k.c
10239
10240 MARVELL NAND CONTROLLER DRIVER
10241 M: Miquel Raynal <miquel.raynal@bootlin.com>
10242 L: linux-mtd@lists.infradead.org
10243 S: Maintained
10244 F: Documentation/devicetree/bindings/mtd/marvell-nand.txt
10245 F: drivers/mtd/nand/raw/marvell_nand.c
10246
10247 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10248 M: Sunil Goutham <sgoutham@marvell.com>
10249 M: Geetha sowjanya <gakula@marvell.com>
10250 M: Subbaraya Sundeep <sbhatta@marvell.com>
10251 M: hariprasad <hkelam@marvell.com>
10252 L: netdev@vger.kernel.org
10253 S: Supported
10254 F: drivers/net/ethernet/marvell/octeontx2/nic/
10255
10256 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10257 M: Sunil Goutham <sgoutham@marvell.com>
10258 M: Linu Cherian <lcherian@marvell.com>
10259 M: Geetha sowjanya <gakula@marvell.com>
10260 M: Jerin Jacob <jerinj@marvell.com>
10261 L: netdev@vger.kernel.org
10262 S: Supported
10263 F: Documentation/networking/device_drivers/marvell/octeontx2.rst
10264 F: drivers/net/ethernet/marvell/octeontx2/af/
10265
10266 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10267 M: Nicolas Pitre <nico@fluxnic.net>
10268 S: Odd Fixes
10269 F: drivers/mmc/host/mvsdio.*
10270
10271 MARVELL USB MDIO CONTROLLER DRIVER
10272 M: Tobias Waldekranz <tobias@waldekranz.com>
10273 L: netdev@vger.kernel.org
10274 S: Maintained
10275 F: Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10276 F: drivers/net/phy/mdio-mvusb.c
10277
10278 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10279 M: Hu Ziji <huziji@marvell.com>
10280 L: linux-mmc@vger.kernel.org
10281 S: Supported
10282 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10283 F: drivers/mmc/host/sdhci-xenon*
10284
10285 MATROX FRAMEBUFFER DRIVER
10286 L: linux-fbdev@vger.kernel.org
10287 S: Orphan
10288 F: drivers/video/fbdev/matrox/matroxfb_*
10289 F: include/uapi/linux/matroxfb.h
10290
10291 MAX16065 HARDWARE MONITOR DRIVER
10292 M: Guenter Roeck <linux@roeck-us.net>
10293 L: linux-hwmon@vger.kernel.org
10294 S: Maintained
10295 F: Documentation/hwmon/max16065.rst
10296 F: drivers/hwmon/max16065.c
10297
10298 MAX2175 SDR TUNER DRIVER
10299 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
10300 L: linux-media@vger.kernel.org
10301 S: Maintained
10302 T: git git://linuxtv.org/media_tree.git
10303 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
10304 F: Documentation/media/v4l-drivers/max2175.rst
10305 F: drivers/media/i2c/max2175*
10306 F: include/uapi/linux/max2175.h
10307
10308 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10309 L: linux-hwmon@vger.kernel.org
10310 S: Orphan
10311 F: Documentation/hwmon/max6650.rst
10312 F: drivers/hwmon/max6650.c
10313
10314 MAX6697 HARDWARE MONITOR DRIVER
10315 M: Guenter Roeck <linux@roeck-us.net>
10316 L: linux-hwmon@vger.kernel.org
10317 S: Maintained
10318 F: Documentation/devicetree/bindings/hwmon/max6697.txt
10319 F: Documentation/hwmon/max6697.rst
10320 F: drivers/hwmon/max6697.c
10321 F: include/linux/platform_data/max6697.h
10322
10323 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10324 M: Peter Rosin <peda@axentia.se>
10325 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10326 S: Maintained
10327 F: Documentation/devicetree/bindings/sound/max9860.txt
10328 F: sound/soc/codecs/max9860.*
10329
10330 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10331 M: Andreas Klinger <ak@it-klinger.de>
10332 L: linux-iio@vger.kernel.org
10333 S: Maintained
10334 F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10335 F: drivers/iio/proximity/mb1232.c
10336
10337 MAXIM MAX77650 PMIC MFD DRIVER
10338 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
10339 L: linux-kernel@vger.kernel.org
10340 S: Maintained
10341 F: Documentation/devicetree/bindings/*/*max77650.yaml
10342 F: Documentation/devicetree/bindings/*/max77650*.yaml
10343 F: drivers/gpio/gpio-max77650.c
10344 F: drivers/input/misc/max77650-onkey.c
10345 F: drivers/leds/leds-max77650.c
10346 F: drivers/mfd/max77650.c
10347 F: drivers/power/supply/max77650-charger.c
10348 F: drivers/regulator/max77650-regulator.c
10349 F: include/linux/mfd/max77650.h
10350
10351 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10352 M: Javier Martinez Canillas <javier@dowhile0.org>
10353 L: linux-kernel@vger.kernel.org
10354 S: Supported
10355 F: Documentation/devicetree/bindings/*/*max77802.txt
10356 F: drivers/regulator/max77802-regulator.c
10357 F: include/dt-bindings/*/*max77802.h
10358
10359 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10360 M: Krzysztof Kozlowski <krzk@kernel.org>
10361 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10362 L: linux-pm@vger.kernel.org
10363 S: Supported
10364 F: drivers/power/supply/max14577_charger.c
10365 F: drivers/power/supply/max77693_charger.c
10366
10367 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10368 M: Chanwoo Choi <cw00.choi@samsung.com>
10369 M: Krzysztof Kozlowski <krzk@kernel.org>
10370 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10371 L: linux-kernel@vger.kernel.org
10372 S: Supported
10373 F: Documentation/devicetree/bindings/*/max77686.txt
10374 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
10375 F: Documentation/devicetree/bindings/mfd/max14577.txt
10376 F: Documentation/devicetree/bindings/mfd/max77693.txt
10377 F: drivers/*/max14577*.c
10378 F: drivers/*/max77686*.c
10379 F: drivers/*/max77693*.c
10380 F: drivers/clk/clk-max77686.c
10381 F: drivers/extcon/extcon-max14577.c
10382 F: drivers/extcon/extcon-max77693.c
10383 F: drivers/rtc/rtc-max77686.c
10384 F: include/linux/mfd/max14577*.h
10385 F: include/linux/mfd/max77686*.h
10386 F: include/linux/mfd/max77693*.h
10387
10388 MAXIRADIO FM RADIO RECEIVER DRIVER
10389 M: Hans Verkuil <hverkuil@xs4all.nl>
10390 L: linux-media@vger.kernel.org
10391 S: Maintained
10392 W: https://linuxtv.org
10393 T: git git://linuxtv.org/media_tree.git
10394 F: drivers/media/radio/radio-maxiradio*
10395
10396 MCAN MMIO DEVICE DRIVER
10397 M: Dan Murphy <dmurphy@ti.com>
10398 M: Sriram Dash <sriram.dash@samsung.com>
10399 L: linux-can@vger.kernel.org
10400 S: Maintained
10401 F: Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10402 F: drivers/net/can/m_can/m_can.c
10403 F: drivers/net/can/m_can/m_can.h
10404 F: drivers/net/can/m_can/m_can_platform.c
10405
10406 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10407 M: Rishi Gupta <gupt21@gmail.com>
10408 L: linux-i2c@vger.kernel.org
10409 L: linux-input@vger.kernel.org
10410 S: Maintained
10411 F: drivers/hid/hid-mcp2221.c
10412
10413 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10414 M: Peter Rosin <peda@axentia.se>
10415 L: linux-iio@vger.kernel.org
10416 S: Maintained
10417 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10418 F: drivers/iio/potentiometer/mcp4018.c
10419 F: drivers/iio/potentiometer/mcp4531.c
10420
10421 MCR20A IEEE-802.15.4 RADIO DRIVER
10422 M: Xue Liu <liuxuenetmail@gmail.com>
10423 L: linux-wpan@vger.kernel.org
10424 S: Maintained
10425 W: https://github.com/xueliu/mcr20a-linux
10426 F: Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10427 F: drivers/net/ieee802154/mcr20a.c
10428 F: drivers/net/ieee802154/mcr20a.h
10429
10430 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10431 M: William Breathitt Gray <vilhelm.gray@gmail.com>
10432 L: linux-iio@vger.kernel.org
10433 S: Maintained
10434 F: drivers/iio/dac/cio-dac.c
10435
10436 MEDIA CONTROLLER FRAMEWORK
10437 M: Sakari Ailus <sakari.ailus@linux.intel.com>
10438 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10439 L: linux-media@vger.kernel.org
10440 S: Supported
10441 W: https://www.linuxtv.org
10442 T: git git://linuxtv.org/media_tree.git
10443 F: drivers/media/mc/
10444 F: include/media/media-*.h
10445 F: include/uapi/linux/media.h
10446
10447 MEDIA DRIVER FOR FREESCALE IMX PXP
10448 M: Philipp Zabel <p.zabel@pengutronix.de>
10449 L: linux-media@vger.kernel.org
10450 S: Maintained
10451 T: git git://linuxtv.org/media_tree.git
10452 F: drivers/media/platform/imx-pxp.[ch]
10453
10454 MEDIA DRIVERS FOR ASCOT2E
10455 M: Sergey Kozlov <serjk@netup.ru>
10456 M: Abylay Ospan <aospan@netup.ru>
10457 L: linux-media@vger.kernel.org
10458 S: Supported
10459 W: https://linuxtv.org
10460 W: http://netup.tv/
10461 T: git git://linuxtv.org/media_tree.git
10462 F: drivers/media/dvb-frontends/ascot2e*
10463
10464 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10465 M: Jasmin Jessich <jasmin@anw.at>
10466 L: linux-media@vger.kernel.org
10467 S: Maintained
10468 W: https://linuxtv.org
10469 T: git git://linuxtv.org/media_tree.git
10470 F: drivers/media/dvb-frontends/cxd2099*
10471
10472 MEDIA DRIVERS FOR CXD2841ER
10473 M: Sergey Kozlov <serjk@netup.ru>
10474 M: Abylay Ospan <aospan@netup.ru>
10475 L: linux-media@vger.kernel.org
10476 S: Supported
10477 W: https://linuxtv.org
10478 W: http://netup.tv/
10479 T: git git://linuxtv.org/media_tree.git
10480 F: drivers/media/dvb-frontends/cxd2841er*
10481
10482 MEDIA DRIVERS FOR CXD2880
10483 M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10484 L: linux-media@vger.kernel.org
10485 S: Supported
10486 W: http://linuxtv.org/
10487 T: git git://linuxtv.org/media_tree.git
10488 F: drivers/media/dvb-frontends/cxd2880/*
10489 F: drivers/media/spi/cxd2880*
10490
10491 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10492 L: linux-media@vger.kernel.org
10493 S: Orphan
10494 W: https://linuxtv.org
10495 T: git git://linuxtv.org/media_tree.git
10496 F: drivers/media/pci/ddbridge/*
10497
10498 MEDIA DRIVERS FOR FREESCALE IMX
10499 M: Steve Longerbeam <slongerbeam@gmail.com>
10500 M: Philipp Zabel <p.zabel@pengutronix.de>
10501 L: linux-media@vger.kernel.org
10502 S: Maintained
10503 T: git git://linuxtv.org/media_tree.git
10504 F: Documentation/devicetree/bindings/media/imx.txt
10505 F: Documentation/media/v4l-drivers/imx.rst
10506 F: drivers/staging/media/imx/
10507 F: include/linux/imx-media.h
10508 F: include/media/imx.h
10509
10510 MEDIA DRIVERS FOR FREESCALE IMX7
10511 M: Rui Miguel Silva <rmfrfs@gmail.com>
10512 L: linux-media@vger.kernel.org
10513 S: Maintained
10514 T: git git://linuxtv.org/media_tree.git
10515 F: Documentation/devicetree/bindings/media/imx7-csi.txt
10516 F: Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10517 F: Documentation/media/v4l-drivers/imx7.rst
10518 F: drivers/staging/media/imx/imx7-media-csi.c
10519 F: drivers/staging/media/imx/imx7-mipi-csis.c
10520
10521 MEDIA DRIVERS FOR HELENE
10522 M: Abylay Ospan <aospan@netup.ru>
10523 L: linux-media@vger.kernel.org
10524 S: Supported
10525 W: https://linuxtv.org
10526 W: http://netup.tv/
10527 T: git git://linuxtv.org/media_tree.git
10528 F: drivers/media/dvb-frontends/helene*
10529
10530 MEDIA DRIVERS FOR HORUS3A
10531 M: Sergey Kozlov <serjk@netup.ru>
10532 M: Abylay Ospan <aospan@netup.ru>
10533 L: linux-media@vger.kernel.org
10534 S: Supported
10535 W: https://linuxtv.org
10536 W: http://netup.tv/
10537 T: git git://linuxtv.org/media_tree.git
10538 F: drivers/media/dvb-frontends/horus3a*
10539
10540 MEDIA DRIVERS FOR LNBH25
10541 M: Sergey Kozlov <serjk@netup.ru>
10542 M: Abylay Ospan <aospan@netup.ru>
10543 L: linux-media@vger.kernel.org
10544 S: Supported
10545 W: https://linuxtv.org
10546 W: http://netup.tv/
10547 T: git git://linuxtv.org/media_tree.git
10548 F: drivers/media/dvb-frontends/lnbh25*
10549
10550 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10551 L: linux-media@vger.kernel.org
10552 S: Orphan
10553 W: https://linuxtv.org
10554 T: git git://linuxtv.org/media_tree.git
10555 F: drivers/media/dvb-frontends/mxl5xx*
10556
10557 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10558 M: Sergey Kozlov <serjk@netup.ru>
10559 M: Abylay Ospan <aospan@netup.ru>
10560 L: linux-media@vger.kernel.org
10561 S: Supported
10562 W: https://linuxtv.org
10563 W: http://netup.tv/
10564 T: git git://linuxtv.org/media_tree.git
10565 F: drivers/media/pci/netup_unidvb/*
10566
10567 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10568 M: Dmitry Osipenko <digetx@gmail.com>
10569 L: linux-media@vger.kernel.org
10570 L: linux-tegra@vger.kernel.org
10571 S: Maintained
10572 T: git git://linuxtv.org/media_tree.git
10573 F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10574 F: drivers/staging/media/tegra-vde/
10575
10576 MEDIA DRIVERS FOR RENESAS - CEU
10577 M: Jacopo Mondi <jacopo@jmondi.org>
10578 L: linux-media@vger.kernel.org
10579 L: linux-renesas-soc@vger.kernel.org
10580 S: Supported
10581 T: git git://linuxtv.org/media_tree.git
10582 F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
10583 F: drivers/media/platform/renesas-ceu.c
10584 F: include/media/drv-intf/renesas-ceu.h
10585
10586 MEDIA DRIVERS FOR RENESAS - DRIF
10587 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
10588 L: linux-media@vger.kernel.org
10589 L: linux-renesas-soc@vger.kernel.org
10590 S: Supported
10591 T: git git://linuxtv.org/media_tree.git
10592 F: Documentation/devicetree/bindings/media/renesas,drif.txt
10593 F: drivers/media/platform/rcar_drif.c
10594
10595 MEDIA DRIVERS FOR RENESAS - FCP
10596 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10597 L: linux-media@vger.kernel.org
10598 L: linux-renesas-soc@vger.kernel.org
10599 S: Supported
10600 T: git git://linuxtv.org/media_tree.git
10601 F: Documentation/devicetree/bindings/media/renesas,fcp.txt
10602 F: drivers/media/platform/rcar-fcp.c
10603 F: include/media/rcar-fcp.h
10604
10605 MEDIA DRIVERS FOR RENESAS - FDP1
10606 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10607 L: linux-media@vger.kernel.org
10608 L: linux-renesas-soc@vger.kernel.org
10609 S: Supported
10610 T: git git://linuxtv.org/media_tree.git
10611 F: Documentation/devicetree/bindings/media/renesas,fdp1.txt
10612 F: drivers/media/platform/rcar_fdp1.c
10613
10614 MEDIA DRIVERS FOR RENESAS - VIN
10615 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
10616 L: linux-media@vger.kernel.org
10617 L: linux-renesas-soc@vger.kernel.org
10618 S: Supported
10619 T: git git://linuxtv.org/media_tree.git
10620 F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
10621 F: Documentation/devicetree/bindings/media/renesas,vin.yaml
10622 F: drivers/media/platform/rcar-vin/
10623
10624 MEDIA DRIVERS FOR RENESAS - VSP1
10625 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10626 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10627 L: linux-media@vger.kernel.org
10628 L: linux-renesas-soc@vger.kernel.org
10629 S: Supported
10630 T: git git://linuxtv.org/media_tree.git
10631 F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
10632 F: drivers/media/platform/vsp1/
10633
10634 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10635 L: linux-media@vger.kernel.org
10636 S: Orphan
10637 W: https://linuxtv.org
10638 T: git git://linuxtv.org/media_tree.git
10639 F: drivers/media/dvb-frontends/stv0910*
10640
10641 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10642 L: linux-media@vger.kernel.org
10643 S: Orphan
10644 W: https://linuxtv.org
10645 T: git git://linuxtv.org/media_tree.git
10646 F: drivers/media/dvb-frontends/stv6111*
10647
10648 MEDIA DRIVERS FOR STM32 - DCMI
10649 M: Hugues Fruchet <hugues.fruchet@st.com>
10650 L: linux-media@vger.kernel.org
10651 S: Supported
10652 T: git git://linuxtv.org/media_tree.git
10653 F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10654 F: drivers/media/platform/stm32/stm32-dcmi.c
10655
10656 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10657 M: Mauro Carvalho Chehab <mchehab@kernel.org>
10658 L: linux-media@vger.kernel.org
10659 S: Maintained
10660 W: https://linuxtv.org
10661 Q: http://patchwork.kernel.org/project/linux-media/list/
10662 T: git git://linuxtv.org/media_tree.git
10663 F: Documentation/devicetree/bindings/media/
10664 F: Documentation/media/
10665 F: drivers/media/
10666 F: drivers/staging/media/
10667 F: include/linux/platform_data/media/
10668 F: include/media/
10669 F: include/uapi/linux/dvb/
10670 F: include/uapi/linux/ivtv*
10671 F: include/uapi/linux/media.h
10672 F: include/uapi/linux/meye.h
10673 F: include/uapi/linux/uvcvideo.h
10674 F: include/uapi/linux/v4l2-*
10675 F: include/uapi/linux/videodev2.h
10676
10677 MEDIATEK BLUETOOTH DRIVER
10678 M: Sean Wang <sean.wang@mediatek.com>
10679 L: linux-bluetooth@vger.kernel.org
10680 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10681 S: Maintained
10682 F: Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10683 F: drivers/bluetooth/btmtkuart.c
10684
10685 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10686 M: Sean Wang <sean.wang@mediatek.com>
10687 L: linux-pm@vger.kernel.org
10688 S: Maintained
10689 F: Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10690 F: drivers/power/reset/mt6323-poweroff.c
10691
10692 MEDIATEK CIR DRIVER
10693 M: Sean Wang <sean.wang@mediatek.com>
10694 S: Maintained
10695 F: drivers/media/rc/mtk-cir.c
10696
10697 MEDIATEK DMA DRIVER
10698 M: Sean Wang <sean.wang@mediatek.com>
10699 L: dmaengine@vger.kernel.org
10700 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10701 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10702 S: Maintained
10703 F: Documentation/devicetree/bindings/dma/mtk-*
10704 F: drivers/dma/mediatek/
10705
10706 MEDIATEK ETHERNET DRIVER
10707 M: Felix Fietkau <nbd@openwrt.org>
10708 M: John Crispin <john@phrozen.org>
10709 M: Sean Wang <sean.wang@mediatek.com>
10710 M: Mark Lee <Mark-MC.Lee@mediatek.com>
10711 L: netdev@vger.kernel.org
10712 S: Maintained
10713 F: drivers/net/ethernet/mediatek/
10714
10715 MEDIATEK I2C CONTROLLER DRIVER
10716 M: Qii Wang <qii.wang@mediatek.com>
10717 L: linux-i2c@vger.kernel.org
10718 S: Maintained
10719 F: Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
10720 F: drivers/i2c/busses/i2c-mt65xx.c
10721
10722 MEDIATEK JPEG DRIVER
10723 M: Rick Chang <rick.chang@mediatek.com>
10724 M: Bin Liu <bin.liu@mediatek.com>
10725 S: Supported
10726 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10727 F: drivers/media/platform/mtk-jpeg/
10728
10729 MEDIATEK MDP DRIVER
10730 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10731 M: Houlong Wei <houlong.wei@mediatek.com>
10732 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10733 S: Supported
10734 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
10735 F: drivers/media/platform/mtk-mdp/
10736 F: drivers/media/platform/mtk-vpu/
10737
10738 MEDIATEK MEDIA DRIVER
10739 M: Tiffany Lin <tiffany.lin@mediatek.com>
10740 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10741 S: Supported
10742 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10743 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
10744 F: drivers/media/platform/mtk-vcodec/
10745 F: drivers/media/platform/mtk-vpu/
10746
10747 MEDIATEK MMC/SD/SDIO DRIVER
10748 M: Chaotian Jing <chaotian.jing@mediatek.com>
10749 S: Maintained
10750 F: Documentation/devicetree/bindings/mmc/mtk-sd.txt
10751 F: drivers/mmc/host/mtk-sd.c
10752
10753 MEDIATEK MT76 WIRELESS LAN DRIVER
10754 M: Felix Fietkau <nbd@nbd.name>
10755 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10756 R: Ryder Lee <ryder.lee@mediatek.com>
10757 L: linux-wireless@vger.kernel.org
10758 S: Maintained
10759 F: drivers/net/wireless/mediatek/mt76/
10760
10761 MEDIATEK MT7601U WIRELESS LAN DRIVER
10762 M: Jakub Kicinski <kubakici@wp.pl>
10763 L: linux-wireless@vger.kernel.org
10764 S: Maintained
10765 F: drivers/net/wireless/mediatek/mt7601u/
10766
10767 MEDIATEK MT7621/28/88 I2C DRIVER
10768 M: Stefan Roese <sr@denx.de>
10769 L: linux-i2c@vger.kernel.org
10770 S: Maintained
10771 F: Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10772 F: drivers/i2c/busses/i2c-mt7621.c
10773
10774 MEDIATEK NAND CONTROLLER DRIVER
10775 M: Xiaolei Li <xiaolei.li@mediatek.com>
10776 L: linux-mtd@lists.infradead.org
10777 S: Maintained
10778 F: Documentation/devicetree/bindings/mtd/mtk-nand.txt
10779 F: drivers/mtd/nand/raw/mtk_*
10780
10781 MEDIATEK PMIC LED DRIVER
10782 M: Sean Wang <sean.wang@mediatek.com>
10783 S: Maintained
10784 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
10785 F: drivers/leds/leds-mt6323.c
10786
10787 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10788 M: Sean Wang <sean.wang@mediatek.com>
10789 S: Maintained
10790 F: drivers/char/hw_random/mtk-rng.c
10791
10792 MEDIATEK SWITCH DRIVER
10793 M: Sean Wang <sean.wang@mediatek.com>
10794 L: netdev@vger.kernel.org
10795 S: Maintained
10796 F: drivers/net/dsa/mt7530.*
10797 F: net/dsa/tag_mtk.c
10798
10799 MEDIATEK USB3 DRD IP DRIVER
10800 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
10801 L: linux-usb@vger.kernel.org (moderated for non-subscribers)
10802 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10803 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10804 S: Maintained
10805 F: drivers/usb/mtu3/
10806
10807 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10808 M: Peter Senna Tschudin <peter.senna@gmail.com>
10809 M: Martin Donnelly <martin.donnelly@ge.com>
10810 M: Martyn Welch <martyn.welch@collabora.co.uk>
10811 S: Maintained
10812 F: Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10813 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10814
10815 MEGARAID SCSI/SAS DRIVERS
10816 M: Kashyap Desai <kashyap.desai@broadcom.com>
10817 M: Sumit Saxena <sumit.saxena@broadcom.com>
10818 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10819 L: megaraidlinux.pdl@broadcom.com
10820 L: linux-scsi@vger.kernel.org
10821 S: Maintained
10822 W: http://www.avagotech.com/support/
10823 F: Documentation/scsi/megaraid.rst
10824 F: drivers/scsi/megaraid.*
10825 F: drivers/scsi/megaraid/
10826
10827 MELEXIS MLX90614 DRIVER
10828 M: Crt Mori <cmo@melexis.com>
10829 L: linux-iio@vger.kernel.org
10830 S: Supported
10831 W: http://www.melexis.com
10832 F: drivers/iio/temperature/mlx90614.c
10833
10834 MELEXIS MLX90632 DRIVER
10835 M: Crt Mori <cmo@melexis.com>
10836 L: linux-iio@vger.kernel.org
10837 S: Supported
10838 W: http://www.melexis.com
10839 F: drivers/iio/temperature/mlx90632.c
10840
10841 MELFAS MIP4 TOUCHSCREEN DRIVER
10842 M: Sangwon Jee <jeesw@melfas.com>
10843 S: Supported
10844 W: http://www.melfas.com
10845 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10846 F: drivers/input/touchscreen/melfas_mip4.c
10847
10848 MELLANOX ETHERNET DRIVER (mlx4_en)
10849 M: Tariq Toukan <tariqt@mellanox.com>
10850 L: netdev@vger.kernel.org
10851 S: Supported
10852 W: http://www.mellanox.com
10853 Q: http://patchwork.ozlabs.org/project/netdev/list/
10854 F: drivers/net/ethernet/mellanox/mlx4/en_*
10855
10856 MELLANOX ETHERNET DRIVER (mlx5e)
10857 M: Saeed Mahameed <saeedm@mellanox.com>
10858 L: netdev@vger.kernel.org
10859 S: Supported
10860 W: http://www.mellanox.com
10861 Q: http://patchwork.ozlabs.org/project/netdev/list/
10862 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
10863
10864 MELLANOX ETHERNET INNOVA DRIVERS
10865 R: Boris Pismenny <borisp@mellanox.com>
10866 L: netdev@vger.kernel.org
10867 S: Supported
10868 W: http://www.mellanox.com
10869 Q: http://patchwork.ozlabs.org/project/netdev/list/
10870 F: drivers/net/ethernet/mellanox/mlx5/core/accel/*
10871 F: drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10872 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10873 F: include/linux/mlx5/mlx5_ifc_fpga.h
10874
10875 MELLANOX ETHERNET SWITCH DRIVERS
10876 M: Jiri Pirko <jiri@mellanox.com>
10877 M: Ido Schimmel <idosch@mellanox.com>
10878 L: netdev@vger.kernel.org
10879 S: Supported
10880 W: http://www.mellanox.com
10881 Q: http://patchwork.ozlabs.org/project/netdev/list/
10882 F: drivers/net/ethernet/mellanox/mlxsw/
10883 F: tools/testing/selftests/drivers/net/mlxsw/
10884
10885 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10886 M: mlxsw@mellanox.com
10887 L: netdev@vger.kernel.org
10888 S: Supported
10889 W: http://www.mellanox.com
10890 Q: http://patchwork.ozlabs.org/project/netdev/list/
10891 F: drivers/net/ethernet/mellanox/mlxfw/
10892
10893 MELLANOX HARDWARE PLATFORM SUPPORT
10894 M: Andy Shevchenko <andy@infradead.org>
10895 M: Darren Hart <dvhart@infradead.org>
10896 M: Vadim Pasternak <vadimp@mellanox.com>
10897 L: platform-driver-x86@vger.kernel.org
10898 S: Supported
10899 F: Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10900 F: drivers/platform/mellanox/
10901 F: include/linux/platform_data/mlxreg.h
10902
10903 MELLANOX MLX4 core VPI driver
10904 M: Tariq Toukan <tariqt@mellanox.com>
10905 L: netdev@vger.kernel.org
10906 L: linux-rdma@vger.kernel.org
10907 S: Supported
10908 W: http://www.mellanox.com
10909 Q: http://patchwork.ozlabs.org/project/netdev/list/
10910 F: drivers/net/ethernet/mellanox/mlx4/
10911 F: include/linux/mlx4/
10912
10913 MELLANOX MLX4 IB driver
10914 M: Yishai Hadas <yishaih@mellanox.com>
10915 L: linux-rdma@vger.kernel.org
10916 S: Supported
10917 W: http://www.mellanox.com
10918 Q: http://patchwork.kernel.org/project/linux-rdma/list/
10919 F: drivers/infiniband/hw/mlx4/
10920 F: include/linux/mlx4/
10921 F: include/uapi/rdma/mlx4-abi.h
10922
10923 MELLANOX MLX5 core VPI driver
10924 M: Saeed Mahameed <saeedm@mellanox.com>
10925 M: Leon Romanovsky <leonro@mellanox.com>
10926 L: netdev@vger.kernel.org
10927 L: linux-rdma@vger.kernel.org
10928 S: Supported
10929 W: http://www.mellanox.com
10930 Q: http://patchwork.ozlabs.org/project/netdev/list/
10931 F: Documentation/networking/device_drivers/mellanox/
10932 F: drivers/net/ethernet/mellanox/mlx5/core/
10933 F: include/linux/mlx5/
10934
10935 MELLANOX MLX5 IB driver
10936 M: Leon Romanovsky <leonro@mellanox.com>
10937 L: linux-rdma@vger.kernel.org
10938 S: Supported
10939 W: http://www.mellanox.com
10940 Q: http://patchwork.kernel.org/project/linux-rdma/list/
10941 F: drivers/infiniband/hw/mlx5/
10942 F: include/linux/mlx5/
10943 F: include/uapi/rdma/mlx5-abi.h
10944
10945 MELLANOX MLXCPLD I2C AND MUX DRIVER
10946 M: Vadim Pasternak <vadimp@mellanox.com>
10947 M: Michael Shych <michaelsh@mellanox.com>
10948 L: linux-i2c@vger.kernel.org
10949 S: Supported
10950 F: Documentation/i2c/busses/i2c-mlxcpld.rst
10951 F: drivers/i2c/busses/i2c-mlxcpld.c
10952 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
10953
10954 MELLANOX MLXCPLD LED DRIVER
10955 M: Vadim Pasternak <vadimp@mellanox.com>
10956 L: linux-leds@vger.kernel.org
10957 S: Supported
10958 F: Documentation/leds/leds-mlxcpld.rst
10959 F: drivers/leds/leds-mlxcpld.c
10960 F: drivers/leds/leds-mlxreg.c
10961
10962 MELLANOX PLATFORM DRIVER
10963 M: Vadim Pasternak <vadimp@mellanox.com>
10964 L: platform-driver-x86@vger.kernel.org
10965 S: Supported
10966 F: drivers/platform/x86/mlx-platform.c
10967
10968 MEMBARRIER SUPPORT
10969 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10970 M: "Paul E. McKenney" <paulmck@kernel.org>
10971 L: linux-kernel@vger.kernel.org
10972 S: Supported
10973 F: arch/powerpc/include/asm/membarrier.h
10974 F: include/uapi/linux/membarrier.h
10975 F: kernel/sched/membarrier.c
10976
10977 MEMBLOCK
10978 M: Mike Rapoport <rppt@linux.ibm.com>
10979 L: linux-mm@kvack.org
10980 S: Maintained
10981 F: Documentation/core-api/boot-time-mm.rst
10982 F: include/linux/memblock.h
10983 F: mm/memblock.c
10984
10985 MEMORY MANAGEMENT
10986 M: Andrew Morton <akpm@linux-foundation.org>
10987 L: linux-mm@kvack.org
10988 S: Maintained
10989 W: http://www.linux-mm.org
10990 T: quilt https://ozlabs.org/~akpm/mmotm/
10991 T: quilt https://ozlabs.org/~akpm/mmots/
10992 T: git git://github.com/hnaz/linux-mm.git
10993 F: include/linux/gfp.h
10994 F: include/linux/memory_hotplug.h
10995 F: include/linux/mm.h
10996 F: include/linux/mmzone.h
10997 F: include/linux/vmalloc.h
10998 F: mm/
10999
11000 MEMORY TECHNOLOGY DEVICES (MTD)
11001 M: Miquel Raynal <miquel.raynal@bootlin.com>
11002 M: Richard Weinberger <richard@nod.at>
11003 M: Vignesh Raghavendra <vigneshr@ti.com>
11004 L: linux-mtd@lists.infradead.org
11005 S: Maintained
11006 W: http://www.linux-mtd.infradead.org/
11007 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
11008 C: irc://irc.oftc.net/mtd
11009 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11010 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11011 F: Documentation/devicetree/bindings/mtd/
11012 F: drivers/mtd/
11013 F: include/linux/mtd/
11014 F: include/uapi/mtd/
11015
11016 MEN A21 WATCHDOG DRIVER
11017 M: Johannes Thumshirn <morbidrsa@gmail.com>
11018 L: linux-watchdog@vger.kernel.org
11019 S: Maintained
11020 F: drivers/watchdog/mena21_wdt.c
11021
11022 MEN CHAMELEON BUS (mcb)
11023 M: Johannes Thumshirn <morbidrsa@gmail.com>
11024 S: Maintained
11025 F: Documentation/driver-api/men-chameleon-bus.rst
11026 F: drivers/mcb/
11027 F: include/linux/mcb.h
11028
11029 MEN F21BMC (Board Management Controller)
11030 M: Andreas Werner <andreas.werner@men.de>
11031 S: Supported
11032 F: Documentation/hwmon/menf21bmc.rst
11033 F: drivers/hwmon/menf21bmc_hwmon.c
11034 F: drivers/leds/leds-menf21bmc.c
11035 F: drivers/mfd/menf21bmc.c
11036 F: drivers/watchdog/menf21bmc_wdt.c
11037
11038 MEN Z069 WATCHDOG DRIVER
11039 M: Johannes Thumshirn <jth@kernel.org>
11040 L: linux-watchdog@vger.kernel.org
11041 S: Maintained
11042 F: drivers/watchdog/menz69_wdt.c
11043
11044 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11045 M: Neil Armstrong <narmstrong@baylibre.com>
11046 L: linux-media@vger.kernel.org
11047 L: linux-amlogic@lists.infradead.org
11048 S: Supported
11049 W: http://linux-meson.com/
11050 T: git git://linuxtv.org/media_tree.git
11051 F: Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11052 F: drivers/media/platform/meson/ao-cec-g12a.c
11053 F: drivers/media/platform/meson/ao-cec.c
11054
11055 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11056 M: Liang Yang <liang.yang@amlogic.com>
11057 L: linux-mtd@lists.infradead.org
11058 S: Maintained
11059 F: Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11060 F: drivers/mtd/nand/raw/meson_*
11061
11062 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11063 M: Maxime Jourdan <mjourdan@baylibre.com>
11064 L: linux-media@vger.kernel.org
11065 L: linux-amlogic@lists.infradead.org
11066 S: Supported
11067 T: git git://linuxtv.org/media_tree.git
11068 F: drivers/staging/media/meson/vdec/
11069
11070 METHODE UDPU SUPPORT
11071 M: Vladimir Vid <vladimir.vid@sartura.hr>
11072 S: Maintained
11073 F: arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11074
11075 MHI BUS
11076 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11077 M: Hemant Kumar <hemantk@codeaurora.org>
11078 L: linux-arm-msm@vger.kernel.org
11079 S: Maintained
11080 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11081 F: Documentation/mhi/
11082 F: drivers/bus/mhi/
11083 F: include/linux/mhi.h
11084
11085 MICROBLAZE ARCHITECTURE
11086 M: Michal Simek <monstr@monstr.eu>
11087 S: Supported
11088 W: http://www.monstr.eu/fdt/
11089 T: git git://git.monstr.eu/linux-2.6-microblaze.git
11090 F: arch/microblaze/
11091
11092 MICROCHIP AT91 SERIAL DRIVER
11093 M: Richard Genoud <richard.genoud@gmail.com>
11094 S: Maintained
11095 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
11096 F: drivers/tty/serial/atmel_serial.c
11097 F: drivers/tty/serial/atmel_serial.h
11098
11099 MICROCHIP AT91 USART MFD DRIVER
11100 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
11101 L: linux-kernel@vger.kernel.org
11102 S: Supported
11103 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
11104 F: drivers/mfd/at91-usart.c
11105 F: include/dt-bindings/mfd/at91-usart.h
11106
11107 MICROCHIP AT91 USART SPI DRIVER
11108 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
11109 L: linux-spi@vger.kernel.org
11110 S: Supported
11111 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
11112 F: drivers/spi/spi-at91-usart.c
11113
11114 MICROCHIP AUDIO ASOC DRIVERS
11115 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11116 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11117 S: Supported
11118 F: sound/soc/atmel
11119
11120 MICROCHIP DMA DRIVER
11121 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11122 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11123 L: dmaengine@vger.kernel.org
11124 S: Supported
11125 F: Documentation/devicetree/bindings/dma/atmel-dma.txt
11126 F: drivers/dma/at_hdmac.c
11127 F: drivers/dma/at_hdmac_regs.h
11128 F: include/dt-bindings/dma/at91.h
11129 F: include/linux/platform_data/dma-atmel.h
11130
11131 MICROCHIP ECC DRIVER
11132 M: Tudor Ambarus <tudor.ambarus@microchip.com>
11133 L: linux-crypto@vger.kernel.org
11134 S: Maintained
11135 F: drivers/crypto/atmel-ecc.*
11136
11137 MICROCHIP I2C DRIVER
11138 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11139 L: linux-i2c@vger.kernel.org
11140 S: Supported
11141 F: drivers/i2c/busses/i2c-at91-*.c
11142 F: drivers/i2c/busses/i2c-at91.h
11143
11144 MICROCHIP ISC DRIVER
11145 M: Eugen Hristev <eugen.hristev@microchip.com>
11146 L: linux-media@vger.kernel.org
11147 S: Supported
11148 F: Documentation/devicetree/bindings/media/atmel-isc.txt
11149 F: drivers/media/platform/atmel/atmel-isc-base.c
11150 F: drivers/media/platform/atmel/atmel-isc-regs.h
11151 F: drivers/media/platform/atmel/atmel-isc.h
11152 F: drivers/media/platform/atmel/atmel-sama5d2-isc.c
11153 F: include/linux/atmel-isc-media.h
11154
11155 MICROCHIP ISI DRIVER
11156 M: Eugen Hristev <eugen.hristev@microchip.com>
11157 L: linux-media@vger.kernel.org
11158 S: Supported
11159 F: drivers/media/platform/atmel/atmel-isi.c
11160 F: drivers/media/platform/atmel/atmel-isi.h
11161
11162 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11163 M: Woojung Huh <woojung.huh@microchip.com>
11164 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11165 L: netdev@vger.kernel.org
11166 S: Maintained
11167 F: Documentation/devicetree/bindings/net/dsa/ksz.txt
11168 F: drivers/net/dsa/microchip/*
11169 F: include/linux/platform_data/microchip-ksz.h
11170 F: net/dsa/tag_ksz.c
11171
11172 MICROCHIP LAN743X ETHERNET DRIVER
11173 M: Bryan Whitehead <bryan.whitehead@microchip.com>
11174 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11175 L: netdev@vger.kernel.org
11176 S: Maintained
11177 F: drivers/net/ethernet/microchip/lan743x_*
11178
11179 MICROCHIP LCDFB DRIVER
11180 M: Nicolas Ferre <nicolas.ferre@microchip.com>
11181 L: linux-fbdev@vger.kernel.org
11182 S: Maintained
11183 F: drivers/video/fbdev/atmel_lcdfb.c
11184 F: include/video/atmel_lcdc.h
11185
11186 MICROCHIP MCP16502 PMIC DRIVER
11187 M: Andrei Stefanescu <andrei.stefanescu@microchip.com>
11188 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11189 S: Maintained
11190 F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11191 F: drivers/regulator/mcp16502.c
11192
11193 MICROCHIP MCP3911 ADC DRIVER
11194 M: Marcus Folkesson <marcus.folkesson@gmail.com>
11195 M: Kent Gustavsson <kent@minoris.se>
11196 L: linux-iio@vger.kernel.org
11197 S: Supported
11198 F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11199 F: drivers/iio/adc/mcp3911.c
11200
11201 MICROCHIP MMC/SD/SDIO MCI DRIVER
11202 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11203 S: Maintained
11204 F: drivers/mmc/host/atmel-mci.c
11205
11206 MICROCHIP NAND DRIVER
11207 M: Tudor Ambarus <tudor.ambarus@microchip.com>
11208 L: linux-mtd@lists.infradead.org
11209 S: Supported
11210 F: Documentation/devicetree/bindings/mtd/atmel-nand.txt
11211 F: drivers/mtd/nand/raw/atmel/*
11212
11213 MICROCHIP PWM DRIVER
11214 M: Claudiu Beznea <claudiu.beznea@microchip.com>
11215 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11216 L: linux-pwm@vger.kernel.org
11217 S: Supported
11218 F: Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11219 F: drivers/pwm/pwm-atmel.c
11220
11221 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11222 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11223 M: Eugen Hristev <eugen.hristev@microchip.com>
11224 L: linux-iio@vger.kernel.org
11225 S: Supported
11226 F: Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11227 F: drivers/iio/adc/at91-sama5d2_adc.c
11228 F: include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11229
11230 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11231 M: Nicolas Ferre <nicolas.ferre@microchip.com>
11232 S: Supported
11233 F: drivers/power/reset/at91-sama5d2_shdwc.c
11234
11235 MICROCHIP SPI DRIVER
11236 M: Nicolas Ferre <nicolas.ferre@microchip.com>
11237 S: Supported
11238 F: drivers/spi/spi-atmel.*
11239
11240 MICROCHIP SSC DRIVER
11241 M: Nicolas Ferre <nicolas.ferre@microchip.com>
11242 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11243 S: Supported
11244 F: drivers/misc/atmel-ssc.c
11245 F: include/linux/atmel-ssc.h
11246
11247 MICROCHIP USB251XB DRIVER
11248 M: Richard Leitner <richard.leitner@skidata.com>
11249 L: linux-usb@vger.kernel.org
11250 S: Maintained
11251 F: Documentation/devicetree/bindings/usb/usb251xb.txt
11252 F: drivers/usb/misc/usb251xb.c
11253
11254 MICROCHIP USBA UDC DRIVER
11255 M: Cristian Birsan <cristian.birsan@microchip.com>
11256 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11257 S: Supported
11258 F: drivers/usb/gadget/udc/atmel_usba_udc.*
11259
11260 MICROCHIP XDMA DRIVER
11261 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11262 L: linux-arm-kernel@lists.infradead.org
11263 L: dmaengine@vger.kernel.org
11264 S: Supported
11265 F: drivers/dma/at_xdmac.c
11266
11267 MICROSEMI ETHERNET SWITCH DRIVER
11268 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
11269 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11270 L: netdev@vger.kernel.org
11271 S: Supported
11272 F: drivers/net/ethernet/mscc/
11273 F: include/soc/mscc/ocelot*
11274
11275 MICROSEMI MIPS SOCS
11276 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
11277 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11278 L: linux-mips@vger.kernel.org
11279 S: Supported
11280 F: Documentation/devicetree/bindings/mips/mscc.txt
11281 F: arch/mips/boot/dts/mscc/
11282 F: arch/mips/configs/generic/board-ocelot.config
11283 F: arch/mips/generic/board-ocelot.c
11284
11285 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11286 M: Don Brace <don.brace@microsemi.com>
11287 L: esc.storagedev@microsemi.com
11288 L: linux-scsi@vger.kernel.org
11289 S: Supported
11290 F: Documentation/scsi/smartpqi.rst
11291 F: drivers/scsi/smartpqi/Kconfig
11292 F: drivers/scsi/smartpqi/Makefile
11293 F: drivers/scsi/smartpqi/smartpqi*.[ch]
11294 F: include/linux/cciss*.h
11295 F: include/uapi/linux/cciss*.h
11296
11297 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11298 M: Chen Yu <yu.c.chen@intel.com>
11299 L: platform-driver-x86@vger.kernel.org
11300 S: Supported
11301 F: drivers/platform/x86/surfacepro3_button.c
11302
11303 MICROTEK X6 SCANNER
11304 M: Oliver Neukum <oliver@neukum.org>
11305 S: Maintained
11306 F: drivers/usb/image/microtek.*
11307
11308 MIPS
11309 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11310 L: linux-mips@vger.kernel.org
11311 S: Maintained
11312 W: http://www.linux-mips.org/
11313 Q: https://patchwork.kernel.org/project/linux-mips/list/
11314 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11315 F: Documentation/devicetree/bindings/mips/
11316 F: Documentation/mips/
11317 F: arch/mips/
11318 F: drivers/platform/mips/
11319
11320 MIPS BOSTON DEVELOPMENT BOARD
11321 M: Paul Burton <paulburton@kernel.org>
11322 L: linux-mips@vger.kernel.org
11323 S: Maintained
11324 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
11325 F: arch/mips/boot/dts/img/boston.dts
11326 F: arch/mips/configs/generic/board-boston.config
11327 F: drivers/clk/imgtec/clk-boston.c
11328 F: include/dt-bindings/clock/boston-clock.h
11329
11330 MIPS GENERIC PLATFORM
11331 M: Paul Burton <paulburton@kernel.org>
11332 L: linux-mips@vger.kernel.org
11333 S: Supported
11334 F: Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11335 F: arch/mips/generic/
11336 F: arch/mips/tools/generic-board-config.sh
11337
11338 MIPS RINT INSTRUCTION EMULATION
11339 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
11340 L: linux-mips@vger.kernel.org
11341 S: Supported
11342 F: arch/mips/math-emu/dp_rint.c
11343 F: arch/mips/math-emu/sp_rint.c
11344
11345 MIPS/LOONGSON1 ARCHITECTURE
11346 M: Keguang Zhang <keguang.zhang@gmail.com>
11347 L: linux-mips@vger.kernel.org
11348 S: Maintained
11349 F: arch/mips/include/asm/mach-loongson32/
11350 F: arch/mips/loongson32/
11351 F: drivers/*/*/*loongson1*
11352 F: drivers/*/*loongson1*
11353
11354 MIPS/LOONGSON2EF ARCHITECTURE
11355 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
11356 L: linux-mips@vger.kernel.org
11357 S: Maintained
11358 F: arch/mips/include/asm/mach-loongson2ef/
11359 F: arch/mips/loongson2ef/
11360 F: drivers/*/*/*loongson2*
11361 F: drivers/*/*loongson2*
11362
11363 MIPS/LOONGSON64 ARCHITECTURE
11364 M: Huacai Chen <chenhc@lemote.com>
11365 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
11366 L: linux-mips@vger.kernel.org
11367 S: Maintained
11368 F: arch/mips/include/asm/mach-loongson64/
11369 F: arch/mips/loongson64/
11370 F: drivers/*/*/*loongson3*
11371 F: drivers/*/*loongson3*
11372 F: drivers/irqchip/irq-loongson*
11373 F: drivers/platform/mips/cpu_hwmon.c
11374
11375 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11376 M: Hans Verkuil <hverkuil@xs4all.nl>
11377 L: linux-media@vger.kernel.org
11378 S: Odd Fixes
11379 W: https://linuxtv.org
11380 T: git git://linuxtv.org/media_tree.git
11381 F: drivers/media/radio/radio-miropcm20*
11382
11383 MMP SUPPORT
11384 R: Lubomir Rintel <lkundrak@v3.sk>
11385 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11386 S: Odd Fixes
11387 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11388 F: arch/arm/boot/dts/mmp*
11389 F: arch/arm/mach-mmp/
11390 F: linux/soc/mmp/
11391
11392 MMP USB PHY DRIVERS
11393 R: Lubomir Rintel <lkundrak@v3.sk>
11394 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11395 S: Maintained
11396 F: drivers/phy/marvell/phy-mmp3-usb.c
11397 F: drivers/phy/marvell/phy-pxa-usb.c
11398
11399 MMU GATHER AND TLB INVALIDATION
11400 M: Will Deacon <will@kernel.org>
11401 M: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11402 M: Andrew Morton <akpm@linux-foundation.org>
11403 M: Nick Piggin <npiggin@gmail.com>
11404 M: Peter Zijlstra <peterz@infradead.org>
11405 L: linux-arch@vger.kernel.org
11406 L: linux-mm@kvack.org
11407 S: Maintained
11408 F: arch/*/include/asm/tlb.h
11409 F: include/asm-generic/tlb.h
11410 F: mm/mmu_gather.c
11411
11412 MN88472 MEDIA DRIVER
11413 M: Antti Palosaari <crope@iki.fi>
11414 L: linux-media@vger.kernel.org
11415 S: Maintained
11416 W: https://linuxtv.org
11417 W: http://palosaari.fi/linux/
11418 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11419 F: drivers/media/dvb-frontends/mn88472*
11420
11421 MN88473 MEDIA DRIVER
11422 M: Antti Palosaari <crope@iki.fi>
11423 L: linux-media@vger.kernel.org
11424 S: Maintained
11425 W: https://linuxtv.org
11426 W: http://palosaari.fi/linux/
11427 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11428 F: drivers/media/dvb-frontends/mn88473*
11429
11430 MODULE SUPPORT
11431 M: Jessica Yu <jeyu@kernel.org>
11432 S: Maintained
11433 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11434 F: include/linux/module.h
11435 F: kernel/module.c
11436
11437 MONOLITHIC POWER SYSTEM PMIC DRIVER
11438 M: Saravanan Sekar <sravanhome@gmail.com>
11439 S: Maintained
11440 F: Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11441 F: drivers/regulator/mp5416.c
11442 F: drivers/regulator/mpq7920.c
11443 F: drivers/regulator/mpq7920.h
11444
11445 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11446 S: Orphan
11447 W: http://popies.net/meye/
11448 F: Documentation/media/v4l-drivers/meye*
11449 F: drivers/media/pci/meye/
11450 F: include/uapi/linux/meye.h
11451
11452 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11453 M: Jiri Slaby <jirislaby@gmail.com>
11454 S: Maintained
11455 F: Documentation/driver-api/serial/moxa-smartio.rst
11456 F: drivers/tty/mxser.*
11457
11458 MR800 AVERMEDIA USB FM RADIO DRIVER
11459 M: Alexey Klimov <klimov.linux@gmail.com>
11460 L: linux-media@vger.kernel.org
11461 S: Maintained
11462 T: git git://linuxtv.org/media_tree.git
11463 F: drivers/media/radio/radio-mr800.c
11464
11465 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11466 M: Alan Ott <alan@signal11.us>
11467 L: linux-wpan@vger.kernel.org
11468 S: Maintained
11469 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11470 F: drivers/net/ieee802154/mrf24j40.c
11471
11472 MSI LAPTOP SUPPORT
11473 M: "Lee, Chun-Yi" <jlee@suse.com>
11474 L: platform-driver-x86@vger.kernel.org
11475 S: Maintained
11476 F: drivers/platform/x86/msi-laptop.c
11477
11478 MSI WMI SUPPORT
11479 L: platform-driver-x86@vger.kernel.org
11480 S: Orphan
11481 F: drivers/platform/x86/msi-wmi.c
11482
11483 MSI001 MEDIA DRIVER
11484 M: Antti Palosaari <crope@iki.fi>
11485 L: linux-media@vger.kernel.org
11486 S: Maintained
11487 W: https://linuxtv.org
11488 W: http://palosaari.fi/linux/
11489 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11490 T: git git://linuxtv.org/anttip/media_tree.git
11491 F: drivers/media/tuners/msi001*
11492
11493 MSI2500 MEDIA DRIVER
11494 M: Antti Palosaari <crope@iki.fi>
11495 L: linux-media@vger.kernel.org
11496 S: Maintained
11497 W: https://linuxtv.org
11498 W: http://palosaari.fi/linux/
11499 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11500 T: git git://linuxtv.org/anttip/media_tree.git
11501 F: drivers/media/usb/msi2500/
11502
11503 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11504 M: Robert Jarzmik <robert.jarzmik@free.fr>
11505 L: linux-mtd@lists.infradead.org
11506 S: Maintained
11507 F: drivers/mtd/devices/docg3*
11508
11509 MT9M032 APTINA SENSOR DRIVER
11510 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11511 L: linux-media@vger.kernel.org
11512 S: Maintained
11513 T: git git://linuxtv.org/media_tree.git
11514 F: drivers/media/i2c/mt9m032.c
11515 F: include/media/i2c/mt9m032.h
11516
11517 MT9P031 APTINA CAMERA SENSOR
11518 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11519 L: linux-media@vger.kernel.org
11520 S: Maintained
11521 T: git git://linuxtv.org/media_tree.git
11522 F: drivers/media/i2c/mt9p031.c
11523 F: include/media/i2c/mt9p031.h
11524
11525 MT9T001 APTINA CAMERA SENSOR
11526 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11527 L: linux-media@vger.kernel.org
11528 S: Maintained
11529 T: git git://linuxtv.org/media_tree.git
11530 F: drivers/media/i2c/mt9t001.c
11531 F: include/media/i2c/mt9t001.h
11532
11533 MT9T112 APTINA CAMERA SENSOR
11534 M: Jacopo Mondi <jacopo@jmondi.org>
11535 L: linux-media@vger.kernel.org
11536 S: Odd Fixes
11537 T: git git://linuxtv.org/media_tree.git
11538 F: drivers/media/i2c/mt9t112.c
11539 F: include/media/i2c/mt9t112.h
11540
11541 MT9V032 APTINA CAMERA SENSOR
11542 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11543 L: linux-media@vger.kernel.org
11544 S: Maintained
11545 T: git git://linuxtv.org/media_tree.git
11546 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11547 F: drivers/media/i2c/mt9v032.c
11548 F: include/media/i2c/mt9v032.h
11549
11550 MT9V111 APTINA CAMERA SENSOR
11551 M: Jacopo Mondi <jacopo@jmondi.org>
11552 L: linux-media@vger.kernel.org
11553 S: Maintained
11554 T: git git://linuxtv.org/media_tree.git
11555 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11556 F: drivers/media/i2c/mt9v111.c
11557
11558 MULTIFUNCTION DEVICES (MFD)
11559 M: Lee Jones <lee.jones@linaro.org>
11560 S: Supported
11561 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11562 F: Documentation/devicetree/bindings/mfd/
11563 F: drivers/mfd/
11564 F: include/dt-bindings/mfd/
11565 F: include/linux/mfd/
11566
11567 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11568 S: Orphan
11569 F: drivers/mmc/host/mmc_spi.c
11570 F: include/linux/spi/mmc_spi.h
11571
11572 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11573 M: Ulf Hansson <ulf.hansson@linaro.org>
11574 L: linux-mmc@vger.kernel.org
11575 S: Maintained
11576 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11577 F: Documentation/devicetree/bindings/mmc/
11578 F: drivers/mmc/
11579 F: include/linux/mmc/
11580 F: include/uapi/linux/mmc/
11581
11582 MULTIPLEXER SUBSYSTEM
11583 M: Peter Rosin <peda@axentia.se>
11584 S: Maintained
11585 F: Documentation/ABI/testing/sysfs-class-mux*
11586 F: Documentation/devicetree/bindings/mux/
11587 F: drivers/mux/
11588 F: include/dt-bindings/mux/
11589 F: include/linux/mux/
11590
11591 MULTITECH MULTIPORT CARD (ISICOM)
11592 S: Orphan
11593 F: drivers/tty/isicom.c
11594 F: include/linux/isicom.h
11595
11596 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11597 M: Bin Liu <b-liu@ti.com>
11598 L: linux-usb@vger.kernel.org
11599 S: Maintained
11600 F: drivers/usb/musb/
11601
11602 MXL301RF MEDIA DRIVER
11603 M: Akihiro Tsukada <tskd08@gmail.com>
11604 L: linux-media@vger.kernel.org
11605 S: Odd Fixes
11606 F: drivers/media/tuners/mxl301rf*
11607
11608 MXL5007T MEDIA DRIVER
11609 M: Michael Krufky <mkrufky@linuxtv.org>
11610 L: linux-media@vger.kernel.org
11611 S: Maintained
11612 W: https://linuxtv.org
11613 W: http://github.com/mkrufky
11614 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11615 T: git git://linuxtv.org/mkrufky/tuners.git
11616 F: drivers/media/tuners/mxl5007t.*
11617
11618 MXSFB DRM DRIVER
11619 M: Marek Vasut <marex@denx.de>
11620 M: Stefan Agner <stefan@agner.ch>
11621 L: dri-devel@lists.freedesktop.org
11622 S: Supported
11623 T: git git://anongit.freedesktop.org/drm/drm-misc
11624 F: Documentation/devicetree/bindings/display/mxsfb.txt
11625 F: drivers/gpu/drm/mxsfb/
11626
11627 MYLEX DAC960 PCI RAID Controller
11628 M: Hannes Reinecke <hare@kernel.org>
11629 L: linux-scsi@vger.kernel.org
11630 S: Supported
11631 F: drivers/scsi/myrb.*
11632 F: drivers/scsi/myrs.*
11633
11634 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11635 M: Chris Lee <christopher.lee@cspi.com>
11636 L: netdev@vger.kernel.org
11637 S: Supported
11638 W: https://www.cspi.com/ethernet-products/support/downloads/
11639 F: drivers/net/ethernet/myricom/myri10ge/
11640
11641 NAND FLASH SUBSYSTEM
11642 M: Miquel Raynal <miquel.raynal@bootlin.com>
11643 R: Richard Weinberger <richard@nod.at>
11644 L: linux-mtd@lists.infradead.org
11645 S: Maintained
11646 W: http://www.linux-mtd.infradead.org/
11647 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
11648 C: irc://irc.oftc.net/mtd
11649 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11650 F: drivers/mtd/nand/
11651 F: include/linux/mtd/*nand*.h
11652
11653 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11654 M: Daniel Mack <zonque@gmail.com>
11655 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11656 S: Maintained
11657 W: http://www.native-instruments.com
11658 F: sound/usb/caiaq/
11659
11660 NATSEMI ETHERNET DRIVER (DP8381x)
11661 S: Orphan
11662 F: drivers/net/ethernet/natsemi/natsemi.c
11663
11664 NCR 5380 SCSI DRIVERS
11665 M: Finn Thain <fthain@telegraphics.com.au>
11666 M: Michael Schmitz <schmitzmic@gmail.com>
11667 L: linux-scsi@vger.kernel.org
11668 S: Maintained
11669 F: Documentation/scsi/g_NCR5380.rst
11670 F: drivers/scsi/NCR5380.*
11671 F: drivers/scsi/arm/cumana_1.c
11672 F: drivers/scsi/arm/oak.c
11673 F: drivers/scsi/atari_scsi.*
11674 F: drivers/scsi/dmx3191d.c
11675 F: drivers/scsi/g_NCR5380.*
11676 F: drivers/scsi/mac_scsi.*
11677 F: drivers/scsi/sun3_scsi.*
11678 F: drivers/scsi/sun3_scsi_vme.c
11679
11680 NCSI LIBRARY
11681 M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
11682 S: Maintained
11683 F: net/ncsi/
11684
11685 NCT6775 HARDWARE MONITOR DRIVER
11686 M: Guenter Roeck <linux@roeck-us.net>
11687 L: linux-hwmon@vger.kernel.org
11688 S: Maintained
11689 F: Documentation/hwmon/nct6775.rst
11690 F: drivers/hwmon/nct6775.c
11691
11692 NETDEVSIM
11693 M: Jakub Kicinski <kuba@kernel.org>
11694 S: Maintained
11695 F: drivers/net/netdevsim/*
11696
11697 NETEM NETWORK EMULATOR
11698 M: Stephen Hemminger <stephen@networkplumber.org>
11699 L: netdev@vger.kernel.org
11700 S: Maintained
11701 F: net/sched/sch_netem.c
11702
11703 NETERION 10GbE DRIVERS (s2io/vxge)
11704 M: Jon Mason <jdmason@kudzu.us>
11705 L: netdev@vger.kernel.org
11706 S: Supported
11707 F: Documentation/networking/device_drivers/neterion/s2io.txt
11708 F: Documentation/networking/device_drivers/neterion/vxge.txt
11709 F: drivers/net/ethernet/neterion/
11710
11711 NETFILTER
11712 M: Pablo Neira Ayuso <pablo@netfilter.org>
11713 M: Jozsef Kadlecsik <kadlec@netfilter.org>
11714 M: Florian Westphal <fw@strlen.de>
11715 L: netfilter-devel@vger.kernel.org
11716 L: coreteam@netfilter.org
11717 S: Maintained
11718 W: http://www.netfilter.org/
11719 W: http://www.iptables.org/
11720 W: http://www.nftables.org/
11721 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
11722 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11723 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11724 F: include/linux/netfilter*
11725 F: include/linux/netfilter/
11726 F: include/net/netfilter/
11727 F: include/uapi/linux/netfilter*
11728 F: include/uapi/linux/netfilter/
11729 F: net/*/netfilter.c
11730 F: net/*/netfilter/
11731 F: net/bridge/br_netfilter*.c
11732 F: net/netfilter/
11733
11734 NETROM NETWORK LAYER
11735 M: Ralf Baechle <ralf@linux-mips.org>
11736 L: linux-hams@vger.kernel.org
11737 S: Maintained
11738 W: http://www.linux-ax25.org/
11739 F: include/net/netrom.h
11740 F: include/uapi/linux/netrom.h
11741 F: net/netrom/
11742
11743 NETRONOME ETHERNET DRIVERS
11744 M: Jakub Kicinski <kuba@kernel.org>
11745 L: oss-drivers@netronome.com
11746 S: Maintained
11747 F: drivers/net/ethernet/netronome/
11748
11749 NETWORK BLOCK DEVICE (NBD)
11750 M: Josef Bacik <josef@toxicpanda.com>
11751 L: linux-block@vger.kernel.org
11752 L: nbd@other.debian.org
11753 S: Maintained
11754 F: Documentation/admin-guide/blockdev/nbd.rst
11755 F: drivers/block/nbd.c
11756 F: include/trace/events/nbd.h
11757 F: include/uapi/linux/nbd.h
11758
11759 NETWORK DROP MONITOR
11760 M: Neil Horman <nhorman@tuxdriver.com>
11761 L: netdev@vger.kernel.org
11762 S: Maintained
11763 W: https://fedorahosted.org/dropwatch/
11764 F: include/net/drop_monitor.h
11765 F: include/uapi/linux/net_dropmon.h
11766 F: net/core/drop_monitor.c
11767
11768 NETWORKING DRIVERS
11769 M: "David S. Miller" <davem@davemloft.net>
11770 M: Jakub Kicinski <kuba@kernel.org>
11771 L: netdev@vger.kernel.org
11772 S: Maintained
11773 W: http://www.linuxfoundation.org/en/Net
11774 Q: http://patchwork.ozlabs.org/project/netdev/list/
11775 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11776 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11777 F: Documentation/devicetree/bindings/net/
11778 F: drivers/net/
11779 F: include/linux/etherdevice.h
11780 F: include/linux/fcdevice.h
11781 F: include/linux/fddidevice.h
11782 F: include/linux/hippidevice.h
11783 F: include/linux/if_*
11784 F: include/linux/inetdevice.h
11785 F: include/linux/netdevice.h
11786 F: include/uapi/linux/if_*
11787 F: include/uapi/linux/netdevice.h
11788
11789 NETWORKING DRIVERS (WIRELESS)
11790 M: Kalle Valo <kvalo@codeaurora.org>
11791 L: linux-wireless@vger.kernel.org
11792 S: Maintained
11793 Q: http://patchwork.kernel.org/project/linux-wireless/list/
11794 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11795 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11796 F: Documentation/devicetree/bindings/net/wireless/
11797 F: drivers/net/wireless/
11798
11799 NETWORKING [DSA]
11800 M: Andrew Lunn <andrew@lunn.ch>
11801 M: Vivien Didelot <vivien.didelot@gmail.com>
11802 M: Florian Fainelli <f.fainelli@gmail.com>
11803 S: Maintained
11804 F: Documentation/devicetree/bindings/net/dsa/
11805 F: drivers/net/dsa/
11806 F: include/linux/dsa/
11807 F: include/linux/platform_data/dsa.h
11808 F: include/net/dsa.h
11809 F: net/dsa/
11810
11811 NETWORKING [GENERAL]
11812 M: "David S. Miller" <davem@davemloft.net>
11813 M: Jakub Kicinski <kuba@kernel.org>
11814 L: netdev@vger.kernel.org
11815 S: Maintained
11816 W: http://www.linuxfoundation.org/en/Net
11817 Q: http://patchwork.ozlabs.org/project/netdev/list/
11818 B: mailto:netdev@vger.kernel.org
11819 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11820 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11821 F: Documentation/networking/
11822 F: include/linux/in.h
11823 F: include/linux/net.h
11824 F: include/linux/netdevice.h
11825 F: include/net/
11826 F: include/uapi/linux/in.h
11827 F: include/uapi/linux/net.h
11828 F: include/uapi/linux/net_namespace.h
11829 F: include/uapi/linux/netdevice.h
11830 F: lib/net_utils.c
11831 F: lib/random32.c
11832 F: net/
11833 F: tools/testing/selftests/net/
11834
11835 NETWORKING [IPSEC]
11836 M: Steffen Klassert <steffen.klassert@secunet.com>
11837 M: Herbert Xu <herbert@gondor.apana.org.au>
11838 M: "David S. Miller" <davem@davemloft.net>
11839 L: netdev@vger.kernel.org
11840 S: Maintained
11841 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11842 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11843 F: include/net/xfrm.h
11844 F: include/uapi/linux/xfrm.h
11845 F: net/ipv4/ah4.c
11846 F: net/ipv4/esp4*
11847 F: net/ipv4/ip_vti.c
11848 F: net/ipv4/ipcomp.c
11849 F: net/ipv4/xfrm*
11850 F: net/ipv6/ah6.c
11851 F: net/ipv6/esp6*
11852 F: net/ipv6/ip6_vti.c
11853 F: net/ipv6/ipcomp6.c
11854 F: net/ipv6/xfrm*
11855 F: net/key/
11856 F: net/xfrm/
11857
11858 NETWORKING [IPv4/IPv6]
11859 M: "David S. Miller" <davem@davemloft.net>
11860 M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11861 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11862 L: netdev@vger.kernel.org
11863 S: Maintained
11864 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11865 F: arch/x86/net/*
11866 F: include/net/ip*
11867 F: net/ipv4/
11868 F: net/ipv6/
11869
11870 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11871 M: Paul Moore <paul@paul-moore.com>
11872 L: netdev@vger.kernel.org
11873 L: linux-security-module@vger.kernel.org
11874 S: Maintained
11875 W: https://github.com/netlabel
11876 F: Documentation/netlabel/
11877 F: include/net/calipso.h
11878 F: include/net/cipso_ipv4.h
11879 F: include/net/netlabel.h
11880 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
11881 F: include/uapi/linux/netfilter/xt_SECMARK.h
11882 F: net/ipv4/cipso_ipv4.c
11883 F: net/ipv6/calipso.c
11884 F: net/netfilter/xt_CONNSECMARK.c
11885 F: net/netfilter/xt_SECMARK.c
11886 F: net/netlabel/
11887
11888 NETWORKING [MPTCP]
11889 M: Mat Martineau <mathew.j.martineau@linux.intel.com>
11890 M: Matthieu Baerts <matthieu.baerts@tessares.net>
11891 L: netdev@vger.kernel.org
11892 L: mptcp@lists.01.org
11893 S: Maintained
11894 W: https://github.com/multipath-tcp/mptcp_net-next/wiki
11895 B: https://github.com/multipath-tcp/mptcp_net-next/issues
11896 F: include/net/mptcp.h
11897 F: include/uapi/linux/mptcp.h
11898 F: net/mptcp/
11899 F: tools/testing/selftests/net/mptcp/
11900
11901 NETWORKING [TCP]
11902 M: Eric Dumazet <edumazet@google.com>
11903 L: netdev@vger.kernel.org
11904 S: Maintained
11905 F: include/linux/tcp.h
11906 F: include/net/tcp.h
11907 F: include/trace/events/tcp.h
11908 F: include/uapi/linux/tcp.h
11909 F: net/ipv4/syncookies.c
11910 F: net/ipv4/tcp*.c
11911 F: net/ipv6/syncookies.c
11912 F: net/ipv6/tcp*.c
11913
11914 NETWORKING [TLS]
11915 M: Boris Pismenny <borisp@mellanox.com>
11916 M: Aviad Yehezkel <aviadye@mellanox.com>
11917 M: John Fastabend <john.fastabend@gmail.com>
11918 M: Daniel Borkmann <daniel@iogearbox.net>
11919 M: Jakub Kicinski <kuba@kernel.org>
11920 L: netdev@vger.kernel.org
11921 S: Maintained
11922 F: include/net/tls.h
11923 F: include/uapi/linux/tls.h
11924 F: net/tls/*
11925
11926 NETWORKING [WIRELESS]
11927 L: linux-wireless@vger.kernel.org
11928 Q: http://patchwork.kernel.org/project/linux-wireless/list/
11929
11930 NETXEN (1/10) GbE SUPPORT
11931 M: Manish Chopra <manishc@marvell.com>
11932 M: Rahul Verma <rahulv@marvell.com>
11933 M: GR-Linux-NIC-Dev@marvell.com
11934 L: netdev@vger.kernel.org
11935 S: Supported
11936 F: drivers/net/ethernet/qlogic/netxen/
11937
11938 NET_FAILOVER MODULE
11939 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
11940 L: netdev@vger.kernel.org
11941 S: Supported
11942 F: Documentation/networking/net_failover.rst
11943 F: drivers/net/net_failover.c
11944 F: include/net/net_failover.h
11945
11946 NEXTHOP
11947 M: David Ahern <dsahern@kernel.org>
11948 L: netdev@vger.kernel.org
11949 S: Maintained
11950 F: include/net/netns/nexthop.h
11951 F: include/net/nexthop.h
11952 F: include/uapi/linux/nexthop.h
11953 F: net/ipv4/nexthop.c
11954
11955 NFC SUBSYSTEM
11956 L: netdev@vger.kernel.org
11957 S: Orphan
11958 F: Documentation/devicetree/bindings/net/nfc/
11959 F: drivers/nfc/
11960 F: include/linux/platform_data/nfcmrvl.h
11961 F: include/net/nfc/
11962 F: include/uapi/linux/nfc.h
11963 F: net/nfc/
11964
11965 NFS, SUNRPC, AND LOCKD CLIENTS
11966 M: Trond Myklebust <trond.myklebust@hammerspace.com>
11967 M: Anna Schumaker <anna.schumaker@netapp.com>
11968 L: linux-nfs@vger.kernel.org
11969 S: Maintained
11970 W: http://client.linux-nfs.org
11971 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11972 F: fs/lockd/
11973 F: fs/nfs/
11974 F: fs/nfs_common/
11975 F: include/linux/lockd/
11976 F: include/linux/nfs*
11977 F: include/linux/sunrpc/
11978 F: include/uapi/linux/nfs*
11979 F: include/uapi/linux/sunrpc/
11980 F: net/sunrpc/
11981
11982 NILFS2 FILESYSTEM
11983 M: Ryusuke Konishi <konishi.ryusuke@gmail.com>
11984 L: linux-nilfs@vger.kernel.org
11985 S: Supported
11986 W: https://nilfs.sourceforge.io/
11987 W: https://nilfs.osdn.jp/
11988 T: git git://github.com/konis/nilfs2.git
11989 F: Documentation/filesystems/nilfs2.rst
11990 F: fs/nilfs2/
11991 F: include/trace/events/nilfs2.h
11992 F: include/uapi/linux/nilfs2_api.h
11993 F: include/uapi/linux/nilfs2_ondisk.h
11994
11995 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11996 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11997 S: Maintained
11998 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11999 F: Documentation/scsi/NinjaSCSI.rst
12000 F: drivers/scsi/pcmcia/nsp_*
12001
12002 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12003 M: GOTO Masanori <gotom@debian.or.jp>
12004 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12005 S: Maintained
12006 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12007 F: Documentation/scsi/NinjaSCSI.rst
12008 F: drivers/scsi/nsp32*
12009
12010 NIOS2 ARCHITECTURE
12011 M: Ley Foon Tan <ley.foon.tan@intel.com>
12012 S: Maintained
12013 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12014 F: arch/nios2/
12015
12016 NOHZ, DYNTICKS SUPPORT
12017 M: Frederic Weisbecker <fweisbec@gmail.com>
12018 M: Thomas Gleixner <tglx@linutronix.de>
12019 M: Ingo Molnar <mingo@kernel.org>
12020 L: linux-kernel@vger.kernel.org
12021 S: Maintained
12022 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12023 F: include/linux/sched/nohz.h
12024 F: include/linux/tick.h
12025 F: kernel/time/tick*.*
12026
12027 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12028 M: Pavel Machek <pavel@ucw.cz>
12029 M: Sakari Ailus <sakari.ailus@iki.fi>
12030 L: linux-media@vger.kernel.org
12031 S: Maintained
12032 F: drivers/media/i2c/ad5820.c
12033 F: drivers/media/i2c/et8ek8
12034
12035 NOKIA N900 POWER SUPPLY DRIVERS
12036 R: Pali Rohár <pali@kernel.org>
12037 F: drivers/power/supply/bq2415x_charger.c
12038 F: drivers/power/supply/bq27xxx_battery.c
12039 F: drivers/power/supply/bq27xxx_battery_i2c.c
12040 F: drivers/power/supply/isp1704_charger.c
12041 F: drivers/power/supply/rx51_battery.c
12042 F: include/linux/power/bq2415x_charger.h
12043 F: include/linux/power/bq27xxx_battery.h
12044
12045 NOLIBC HEADER FILE
12046 M: Willy Tarreau <w@1wt.eu>
12047 S: Maintained
12048 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12049 F: tools/include/nolibc/
12050
12051 NSDEPS
12052 M: Matthias Maennich <maennich@google.com>
12053 S: Maintained
12054 F: Documentation/core-api/symbol-namespaces.rst
12055 F: scripts/nsdeps
12056
12057 NTB AMD DRIVER
12058 M: Sanjay R Mehta <sanju.mehta@amd.com>
12059 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12060 L: linux-ntb@googlegroups.com
12061 S: Supported
12062 F: drivers/ntb/hw/amd/
12063
12064 NTB DRIVER CORE
12065 M: Jon Mason <jdmason@kudzu.us>
12066 M: Dave Jiang <dave.jiang@intel.com>
12067 M: Allen Hubbe <allenbh@gmail.com>
12068 L: linux-ntb@googlegroups.com
12069 S: Supported
12070 W: https://github.com/jonmason/ntb/wiki
12071 T: git git://github.com/jonmason/ntb.git
12072 F: drivers/net/ntb_netdev.c
12073 F: drivers/ntb/
12074 F: include/linux/ntb.h
12075 F: include/linux/ntb_transport.h
12076 F: tools/testing/selftests/ntb/
12077
12078 NTB IDT DRIVER
12079 M: Serge Semin <fancer.lancer@gmail.com>
12080 L: linux-ntb@googlegroups.com
12081 S: Supported
12082 F: drivers/ntb/hw/idt/
12083
12084 NTB INTEL DRIVER
12085 M: Dave Jiang <dave.jiang@intel.com>
12086 L: linux-ntb@googlegroups.com
12087 S: Supported
12088 W: https://github.com/davejiang/linux/wiki
12089 T: git https://github.com/davejiang/linux.git
12090 F: drivers/ntb/hw/intel/
12091
12092 NTFS FILESYSTEM
12093 M: Anton Altaparmakov <anton@tuxera.com>
12094 L: linux-ntfs-dev@lists.sourceforge.net
12095 S: Supported
12096 W: http://www.tuxera.com/
12097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12098 F: Documentation/filesystems/ntfs.rst
12099 F: fs/ntfs/
12100
12101 NUBUS SUBSYSTEM
12102 M: Finn Thain <fthain@telegraphics.com.au>
12103 L: linux-m68k@lists.linux-m68k.org
12104 S: Maintained
12105 F: arch/*/include/asm/nubus.h
12106 F: drivers/nubus/
12107 F: include/linux/nubus.h
12108 F: include/uapi/linux/nubus.h
12109
12110 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12111 M: Antonino Daplas <adaplas@gmail.com>
12112 L: linux-fbdev@vger.kernel.org
12113 S: Maintained
12114 F: drivers/video/fbdev/nvidia/
12115 F: drivers/video/fbdev/riva/
12116
12117 NVM EXPRESS DRIVER
12118 M: Keith Busch <kbusch@kernel.org>
12119 M: Jens Axboe <axboe@fb.com>
12120 M: Christoph Hellwig <hch@lst.de>
12121 M: Sagi Grimberg <sagi@grimberg.me>
12122 L: linux-nvme@lists.infradead.org
12123 S: Supported
12124 W: http://git.infradead.org/nvme.git
12125 T: git://git.infradead.org/nvme.git
12126 F: drivers/nvme/host/
12127 F: include/linux/nvme.h
12128 F: include/uapi/linux/nvme_ioctl.h
12129
12130 NVM EXPRESS FC TRANSPORT DRIVERS
12131 M: James Smart <james.smart@broadcom.com>
12132 L: linux-nvme@lists.infradead.org
12133 S: Supported
12134 F: drivers/nvme/host/fc.c
12135 F: drivers/nvme/target/fc.c
12136 F: drivers/nvme/target/fcloop.c
12137 F: include/linux/nvme-fc-driver.h
12138 F: include/linux/nvme-fc.h
12139
12140 NVM EXPRESS TARGET DRIVER
12141 M: Christoph Hellwig <hch@lst.de>
12142 M: Sagi Grimberg <sagi@grimberg.me>
12143 M: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12144 L: linux-nvme@lists.infradead.org
12145 S: Supported
12146 W: http://git.infradead.org/nvme.git
12147 T: git://git.infradead.org/nvme.git
12148 F: drivers/nvme/target/
12149
12150 NVMEM FRAMEWORK
12151 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12152 S: Maintained
12153 F: Documentation/ABI/stable/sysfs-bus-nvmem
12154 F: Documentation/devicetree/bindings/nvmem/
12155 F: drivers/nvmem/
12156 F: include/linux/nvmem-consumer.h
12157 F: include/linux/nvmem-provider.h
12158
12159 NXP FSPI DRIVER
12160 M: Ashish Kumar <ashish.kumar@nxp.com>
12161 R: Yogesh Gaur <yogeshgaur.83@gmail.com>
12162 L: linux-spi@vger.kernel.org
12163 S: Maintained
12164 F: Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12165 F: drivers/spi/spi-nxp-fspi.c
12166
12167 NXP FXAS21002C DRIVER
12168 M: Rui Miguel Silva <rmfrfs@gmail.com>
12169 L: linux-iio@vger.kernel.org
12170 S: Maintained
12171 F: Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12172 F: drivers/iio/gyro/fxas21002c.h
12173 F: drivers/iio/gyro/fxas21002c_core.c
12174 F: drivers/iio/gyro/fxas21002c_i2c.c
12175 F: drivers/iio/gyro/fxas21002c_spi.c
12176
12177 NXP SGTL5000 DRIVER
12178 M: Fabio Estevam <festevam@gmail.com>
12179 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12180 S: Maintained
12181 F: Documentation/devicetree/bindings/sound/sgtl5000.txt
12182 F: sound/soc/codecs/sgtl5000*
12183
12184 NXP SJA1105 ETHERNET SWITCH DRIVER
12185 M: Vladimir Oltean <olteanv@gmail.com>
12186 L: linux-kernel@vger.kernel.org
12187 S: Maintained
12188 F: drivers/net/dsa/sja1105
12189
12190 NXP TDA998X DRM DRIVER
12191 M: Russell King <linux@armlinux.org.uk>
12192 S: Maintained
12193 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12194 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12195 F: drivers/gpu/drm/i2c/tda998x_drv.c
12196 F: include/drm/i2c/tda998x.h
12197 F: include/dt-bindings/display/tda998x.h
12198 K: "nxp,tda998x"
12199
12200 NXP TFA9879 DRIVER
12201 M: Peter Rosin <peda@axentia.se>
12202 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12203 S: Maintained
12204 F: Documentation/devicetree/bindings/sound/tfa9879.txt
12205 F: sound/soc/codecs/tfa9879*
12206
12207 NXP-NCI NFC DRIVER
12208 M: Clément Perrochaud <clement.perrochaud@effinnov.com>
12209 R: Charles Gorand <charles.gorand@effinnov.com>
12210 L: linux-nfc@lists.01.org (moderated for non-subscribers)
12211 S: Supported
12212 F: drivers/nfc/nxp-nci
12213
12214 OBJAGG
12215 M: Jiri Pirko <jiri@mellanox.com>
12216 L: netdev@vger.kernel.org
12217 S: Supported
12218 F: include/linux/objagg.h
12219 F: lib/objagg.c
12220 F: lib/test_objagg.c
12221
12222 OBJTOOL
12223 M: Josh Poimboeuf <jpoimboe@redhat.com>
12224 M: Peter Zijlstra <peterz@infradead.org>
12225 S: Supported
12226 F: tools/objtool/
12227
12228 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12229 M: Frederic Barrat <fbarrat@linux.ibm.com>
12230 M: Andrew Donnellan <ajd@linux.ibm.com>
12231 L: linuxppc-dev@lists.ozlabs.org
12232 S: Supported
12233 F: Documentation/userspace-api/accelerators/ocxl.rst
12234 F: arch/powerpc/include/asm/pnv-ocxl.h
12235 F: arch/powerpc/platforms/powernv/ocxl.c
12236 F: drivers/misc/ocxl/
12237 F: include/misc/ocxl*
12238 F: include/uapi/misc/ocxl.h
12239
12240 OMAP AUDIO SUPPORT
12241 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
12242 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
12243 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12244 L: linux-omap@vger.kernel.org
12245 S: Maintained
12246 F: sound/soc/ti/n810.c
12247 F: sound/soc/ti/omap*
12248 F: sound/soc/ti/rx51.c
12249 F: sound/soc/ti/sdma-pcm.*
12250
12251 OMAP CLOCK FRAMEWORK SUPPORT
12252 M: Paul Walmsley <paul@pwsan.com>
12253 L: linux-omap@vger.kernel.org
12254 S: Maintained
12255 F: arch/arm/*omap*/*clock*
12256
12257 OMAP DEVICE TREE SUPPORT
12258 M: Benoît Cousson <bcousson@baylibre.com>
12259 M: Tony Lindgren <tony@atomide.com>
12260 L: linux-omap@vger.kernel.org
12261 L: devicetree@vger.kernel.org
12262 S: Maintained
12263 F: arch/arm/boot/dts/*am3*
12264 F: arch/arm/boot/dts/*am4*
12265 F: arch/arm/boot/dts/*am5*
12266 F: arch/arm/boot/dts/*dra7*
12267 F: arch/arm/boot/dts/*omap*
12268 F: arch/arm/boot/dts/logicpd-som-lv*
12269 F: arch/arm/boot/dts/logicpd-torpedo*
12270
12271 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12272 L: linux-omap@vger.kernel.org
12273 L: linux-fbdev@vger.kernel.org
12274 S: Orphan
12275 F: Documentation/arm/omap/dss.rst
12276 F: drivers/video/fbdev/omap2/
12277
12278 OMAP FRAMEBUFFER SUPPORT
12279 L: linux-fbdev@vger.kernel.org
12280 L: linux-omap@vger.kernel.org
12281 S: Orphan
12282 F: drivers/video/fbdev/omap/
12283
12284 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12285 M: Roger Quadros <rogerq@ti.com>
12286 M: Tony Lindgren <tony@atomide.com>
12287 L: linux-omap@vger.kernel.org
12288 S: Maintained
12289 F: arch/arm/mach-omap2/*gpmc*
12290 F: drivers/memory/omap-gpmc.c
12291
12292 OMAP GPIO DRIVER
12293 M: Grygorii Strashko <grygorii.strashko@ti.com>
12294 M: Santosh Shilimkar <ssantosh@kernel.org>
12295 M: Kevin Hilman <khilman@kernel.org>
12296 L: linux-omap@vger.kernel.org
12297 S: Maintained
12298 F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
12299 F: drivers/gpio/gpio-omap.c
12300
12301 OMAP HARDWARE SPINLOCK SUPPORT
12302 M: Ohad Ben-Cohen <ohad@wizery.com>
12303 L: linux-omap@vger.kernel.org
12304 S: Maintained
12305 F: drivers/hwspinlock/omap_hwspinlock.c
12306
12307 OMAP HS MMC SUPPORT
12308 L: linux-mmc@vger.kernel.org
12309 L: linux-omap@vger.kernel.org
12310 S: Orphan
12311 F: drivers/mmc/host/omap_hsmmc.c
12312
12313 OMAP HWMOD DATA
12314 M: Paul Walmsley <paul@pwsan.com>
12315 L: linux-omap@vger.kernel.org
12316 S: Maintained
12317 F: arch/arm/mach-omap2/omap_hwmod*data*
12318
12319 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12320 M: Benoît Cousson <bcousson@baylibre.com>
12321 L: linux-omap@vger.kernel.org
12322 S: Maintained
12323 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12324
12325 OMAP HWMOD SUPPORT
12326 M: Benoît Cousson <bcousson@baylibre.com>
12327 M: Paul Walmsley <paul@pwsan.com>
12328 L: linux-omap@vger.kernel.org
12329 S: Maintained
12330 F: arch/arm/mach-omap2/omap_hwmod.*
12331
12332 OMAP I2C DRIVER
12333 M: Vignesh R <vigneshr@ti.com>
12334 L: linux-omap@vger.kernel.org
12335 L: linux-i2c@vger.kernel.org
12336 S: Maintained
12337 F: Documentation/devicetree/bindings/i2c/i2c-omap.txt
12338 F: drivers/i2c/busses/i2c-omap.c
12339
12340 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12341 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12342 L: linux-media@vger.kernel.org
12343 S: Maintained
12344 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
12345 F: drivers/media/platform/omap3isp/
12346 F: drivers/staging/media/omap4iss/
12347
12348 OMAP MMC SUPPORT
12349 M: Aaro Koskinen <aaro.koskinen@iki.fi>
12350 L: linux-omap@vger.kernel.org
12351 S: Odd Fixes
12352 F: drivers/mmc/host/omap.c
12353
12354 OMAP POWER MANAGEMENT SUPPORT
12355 M: Kevin Hilman <khilman@kernel.org>
12356 L: linux-omap@vger.kernel.org
12357 S: Maintained
12358 F: arch/arm/*omap*/*pm*
12359 F: drivers/cpufreq/omap-cpufreq.c
12360
12361 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12362 M: Rajendra Nayak <rnayak@codeaurora.org>
12363 M: Paul Walmsley <paul@pwsan.com>
12364 L: linux-omap@vger.kernel.org
12365 S: Maintained
12366 F: arch/arm/mach-omap2/prm*
12367
12368 OMAP RANDOM NUMBER GENERATOR SUPPORT
12369 M: Deepak Saxena <dsaxena@plexity.net>
12370 S: Maintained
12371 F: drivers/char/hw_random/omap-rng.c
12372
12373 OMAP USB SUPPORT
12374 L: linux-usb@vger.kernel.org
12375 L: linux-omap@vger.kernel.org
12376 S: Orphan
12377 F: arch/arm/*omap*/usb*
12378 F: drivers/usb/*/*omap*
12379
12380 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12381 M: Mark Jackson <mpfj@newflow.co.uk>
12382 L: linux-omap@vger.kernel.org
12383 S: Maintained
12384 F: arch/arm/boot/dts/am335x-nano.dts
12385
12386 OMAP1 SUPPORT
12387 M: Aaro Koskinen <aaro.koskinen@iki.fi>
12388 M: Tony Lindgren <tony@atomide.com>
12389 L: linux-omap@vger.kernel.org
12390 S: Maintained
12391 Q: http://patchwork.kernel.org/project/linux-omap/list/
12392 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12393 F: arch/arm/configs/omap1_defconfig
12394 F: arch/arm/mach-omap1/
12395 F: arch/arm/plat-omap/
12396 F: drivers/i2c/busses/i2c-omap.c
12397 F: include/linux/platform_data/ams-delta-fiq.h
12398 F: include/linux/platform_data/i2c-omap.h
12399
12400 OMAP2+ SUPPORT
12401 M: Tony Lindgren <tony@atomide.com>
12402 L: linux-omap@vger.kernel.org
12403 S: Maintained
12404 W: http://www.muru.com/linux/omap/
12405 W: http://linux.omap.com/
12406 Q: http://patchwork.kernel.org/project/linux-omap/list/
12407 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12408 F: arch/arm/configs/omap2plus_defconfig
12409 F: arch/arm/mach-omap2/
12410 F: arch/arm/plat-omap/
12411 F: drivers/bus/ti-sysc.c
12412 F: drivers/i2c/busses/i2c-omap.c
12413 F: drivers/irqchip/irq-omap-intc.c
12414 F: drivers/mfd/*omap*.c
12415 F: drivers/mfd/menelaus.c
12416 F: drivers/mfd/palmas.c
12417 F: drivers/mfd/tps65217.c
12418 F: drivers/mfd/tps65218.c
12419 F: drivers/mfd/tps65910.c
12420 F: drivers/mfd/twl-core.[ch]
12421 F: drivers/mfd/twl4030*.c
12422 F: drivers/mfd/twl6030*.c
12423 F: drivers/mfd/twl6040*.c
12424 F: drivers/regulator/palmas-regulator*.c
12425 F: drivers/regulator/pbias-regulator.c
12426 F: drivers/regulator/tps65217-regulator.c
12427 F: drivers/regulator/tps65218-regulator.c
12428 F: drivers/regulator/tps65910-regulator.c
12429 F: drivers/regulator/twl-regulator.c
12430 F: drivers/regulator/twl6030-regulator.c
12431 F: include/linux/platform_data/i2c-omap.h
12432 F: include/linux/platform_data/ti-sysc.h
12433
12434 OMFS FILESYSTEM
12435 M: Bob Copeland <me@bobcopeland.com>
12436 L: linux-karma-devel@lists.sourceforge.net
12437 S: Maintained
12438 F: Documentation/filesystems/omfs.rst
12439 F: fs/omfs/
12440
12441 OMNIKEY CARDMAN 4000 DRIVER
12442 M: Harald Welte <laforge@gnumonks.org>
12443 S: Maintained
12444 F: drivers/char/pcmcia/cm4000_cs.c
12445 F: include/linux/cm4000_cs.h
12446 F: include/uapi/linux/cm4000_cs.h
12447
12448 OMNIKEY CARDMAN 4040 DRIVER
12449 M: Harald Welte <laforge@gnumonks.org>
12450 S: Maintained
12451 F: drivers/char/pcmcia/cm4040_cs.*
12452
12453 OMNIVISION OV13858 SENSOR DRIVER
12454 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12455 L: linux-media@vger.kernel.org
12456 S: Maintained
12457 T: git git://linuxtv.org/media_tree.git
12458 F: drivers/media/i2c/ov13858.c
12459
12460 OMNIVISION OV2680 SENSOR DRIVER
12461 M: Rui Miguel Silva <rmfrfs@gmail.com>
12462 L: linux-media@vger.kernel.org
12463 S: Maintained
12464 T: git git://linuxtv.org/media_tree.git
12465 F: Documentation/devicetree/bindings/media/i2c/ov2680.txt
12466 F: drivers/media/i2c/ov2680.c
12467
12468 OMNIVISION OV2685 SENSOR DRIVER
12469 M: Shunqian Zheng <zhengsq@rock-chips.com>
12470 L: linux-media@vger.kernel.org
12471 S: Maintained
12472 T: git git://linuxtv.org/media_tree.git
12473 F: drivers/media/i2c/ov2685.c
12474
12475 OMNIVISION OV5640 SENSOR DRIVER
12476 M: Steve Longerbeam <slongerbeam@gmail.com>
12477 L: linux-media@vger.kernel.org
12478 S: Maintained
12479 T: git git://linuxtv.org/media_tree.git
12480 F: drivers/media/i2c/ov5640.c
12481
12482 OMNIVISION OV5647 SENSOR DRIVER
12483 M: Luis Oliveira <lolivei@synopsys.com>
12484 L: linux-media@vger.kernel.org
12485 S: Maintained
12486 T: git git://linuxtv.org/media_tree.git
12487 F: drivers/media/i2c/ov5647.c
12488
12489 OMNIVISION OV5670 SENSOR DRIVER
12490 M: Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12491 M: Hyungwoo Yang <hyungwoo.yang@intel.com>
12492 L: linux-media@vger.kernel.org
12493 S: Maintained
12494 T: git git://linuxtv.org/media_tree.git
12495 F: drivers/media/i2c/ov5670.c
12496
12497 OMNIVISION OV5675 SENSOR DRIVER
12498 M: Shawn Tu <shawnx.tu@intel.com>
12499 L: linux-media@vger.kernel.org
12500 S: Maintained
12501 T: git git://linuxtv.org/media_tree.git
12502 F: drivers/media/i2c/ov5675.c
12503
12504 OMNIVISION OV5695 SENSOR DRIVER
12505 M: Shunqian Zheng <zhengsq@rock-chips.com>
12506 L: linux-media@vger.kernel.org
12507 S: Maintained
12508 T: git git://linuxtv.org/media_tree.git
12509 F: drivers/media/i2c/ov5695.c
12510
12511 OMNIVISION OV7670 SENSOR DRIVER
12512 M: Jonathan Corbet <corbet@lwn.net>
12513 L: linux-media@vger.kernel.org
12514 S: Maintained
12515 T: git git://linuxtv.org/media_tree.git
12516 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
12517 F: drivers/media/i2c/ov7670.c
12518
12519 OMNIVISION OV772x SENSOR DRIVER
12520 M: Jacopo Mondi <jacopo@jmondi.org>
12521 L: linux-media@vger.kernel.org
12522 S: Odd fixes
12523 T: git git://linuxtv.org/media_tree.git
12524 F: Documentation/devicetree/bindings/media/i2c/ov772x.txt
12525 F: drivers/media/i2c/ov772x.c
12526 F: include/media/i2c/ov772x.h
12527
12528 OMNIVISION OV7740 SENSOR DRIVER
12529 M: Wenyou Yang <wenyou.yang@microchip.com>
12530 L: linux-media@vger.kernel.org
12531 S: Maintained
12532 T: git git://linuxtv.org/media_tree.git
12533 F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
12534 F: drivers/media/i2c/ov7740.c
12535
12536 OMNIVISION OV8856 SENSOR DRIVER
12537 M: Ben Kao <ben.kao@intel.com>
12538 L: linux-media@vger.kernel.org
12539 S: Maintained
12540 T: git git://linuxtv.org/media_tree.git
12541 F: drivers/media/i2c/ov8856.c
12542
12543 OMNIVISION OV9640 SENSOR DRIVER
12544 M: Petr Cvek <petrcvekcz@gmail.com>
12545 L: linux-media@vger.kernel.org
12546 S: Maintained
12547 F: drivers/media/i2c/ov9640.*
12548
12549 OMNIVISION OV9650 SENSOR DRIVER
12550 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12551 R: Akinobu Mita <akinobu.mita@gmail.com>
12552 R: Sylwester Nawrocki <s.nawrocki@samsung.com>
12553 L: linux-media@vger.kernel.org
12554 S: Maintained
12555 T: git git://linuxtv.org/media_tree.git
12556 F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
12557 F: drivers/media/i2c/ov9650.c
12558
12559 ONENAND FLASH DRIVER
12560 M: Kyungmin Park <kyungmin.park@samsung.com>
12561 L: linux-mtd@lists.infradead.org
12562 S: Maintained
12563 F: drivers/mtd/nand/onenand/
12564 F: include/linux/mtd/onenand*.h
12565
12566 ONION OMEGA2+ BOARD
12567 M: Harvey Hunt <harveyhuntnexus@gmail.com>
12568 L: linux-mips@vger.kernel.org
12569 S: Maintained
12570 F: arch/mips/boot/dts/ralink/omega2p.dts
12571
12572 OP-TEE DRIVER
12573 M: Jens Wiklander <jens.wiklander@linaro.org>
12574 L: tee-dev@lists.linaro.org
12575 S: Maintained
12576 F: drivers/tee/optee/
12577
12578 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12579 M: Sumit Garg <sumit.garg@linaro.org>
12580 L: tee-dev@lists.linaro.org
12581 S: Maintained
12582 F: drivers/char/hw_random/optee-rng.c
12583
12584 OPA-VNIC DRIVER
12585 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
12586 M: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12587 L: linux-rdma@vger.kernel.org
12588 S: Supported
12589 F: drivers/infiniband/ulp/opa_vnic
12590
12591 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12592 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12593 M: Frank Rowand <frowand.list@gmail.com>
12594 L: devicetree@vger.kernel.org
12595 S: Maintained
12596 F: Documentation/devicetree/dynamic-resolution-notes.txt
12597 F: Documentation/devicetree/overlay-notes.txt
12598 F: drivers/of/overlay.c
12599 F: drivers/of/resolver.c
12600 K: of_overlay_notifier_
12601
12602 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12603 M: Rob Herring <robh+dt@kernel.org>
12604 M: Frank Rowand <frowand.list@gmail.com>
12605 L: devicetree@vger.kernel.org
12606 S: Maintained
12607 W: http://www.devicetree.org/
12608 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12609 F: Documentation/ABI/testing/sysfs-firmware-ofw
12610 F: drivers/of/
12611 F: include/linux/of*.h
12612 F: scripts/dtc/
12613
12614 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12615 M: Rob Herring <robh+dt@kernel.org>
12616 L: devicetree@vger.kernel.org
12617 S: Maintained
12618 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12619 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12620 F: Documentation/devicetree/
12621 F: arch/*/boot/dts/
12622 F: include/dt-bindings/
12623
12624 OPENCORES I2C BUS DRIVER
12625 M: Peter Korsgaard <peter@korsgaard.com>
12626 M: Andrew Lunn <andrew@lunn.ch>
12627 L: linux-i2c@vger.kernel.org
12628 S: Maintained
12629 F: Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12630 F: Documentation/i2c/busses/i2c-ocores.rst
12631 F: drivers/i2c/busses/i2c-ocores.c
12632 F: include/linux/platform_data/i2c-ocores.h
12633
12634 OPENRISC ARCHITECTURE
12635 M: Jonas Bonn <jonas@southpole.se>
12636 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12637 M: Stafford Horne <shorne@gmail.com>
12638 L: openrisc@lists.librecores.org
12639 S: Maintained
12640 W: http://openrisc.io
12641 T: git git://github.com/openrisc/linux.git
12642 F: Documentation/devicetree/bindings/openrisc/
12643 F: Documentation/openrisc/
12644 F: arch/openrisc/
12645 F: drivers/irqchip/irq-ompic.c
12646 F: drivers/irqchip/irq-or1k-*
12647
12648 OPENVSWITCH
12649 M: Pravin B Shelar <pshelar@ovn.org>
12650 L: netdev@vger.kernel.org
12651 L: dev@openvswitch.org
12652 S: Maintained
12653 W: http://openvswitch.org
12654 F: include/uapi/linux/openvswitch.h
12655 F: net/openvswitch/
12656
12657 OPERATING PERFORMANCE POINTS (OPP)
12658 M: Viresh Kumar <vireshk@kernel.org>
12659 M: Nishanth Menon <nm@ti.com>
12660 M: Stephen Boyd <sboyd@kernel.org>
12661 L: linux-pm@vger.kernel.org
12662 S: Maintained
12663 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12664 F: Documentation/devicetree/bindings/opp/
12665 F: Documentation/power/opp.rst
12666 F: drivers/opp/
12667 F: include/linux/pm_opp.h
12668
12669 OPL4 DRIVER
12670 M: Clemens Ladisch <clemens@ladisch.de>
12671 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12672 S: Maintained
12673 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12674 F: sound/drivers/opl4/
12675
12676 OPROFILE
12677 M: Robert Richter <rric@kernel.org>
12678 L: oprofile-list@lists.sf.net
12679 S: Maintained
12680 F: arch/*/include/asm/oprofile*.h
12681 F: arch/*/oprofile/
12682 F: drivers/oprofile/
12683 F: include/linux/oprofile.h
12684
12685 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12686 M: Mark Fasheh <mark@fasheh.com>
12687 M: Joel Becker <jlbec@evilplan.org>
12688 M: Joseph Qi <joseph.qi@linux.alibaba.com>
12689 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12690 S: Supported
12691 W: http://ocfs2.wiki.kernel.org
12692 F: Documentation/filesystems/dlmfs.rst
12693 F: Documentation/filesystems/ocfs2.rst
12694 F: fs/ocfs2/
12695
12696 ORANGEFS FILESYSTEM
12697 M: Mike Marshall <hubcap@omnibond.com>
12698 R: Martin Brandenburg <martin@omnibond.com>
12699 L: devel@lists.orangefs.org
12700 S: Supported
12701 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12702 F: Documentation/filesystems/orangefs.rst
12703 F: fs/orangefs/
12704
12705 ORINOCO DRIVER
12706 L: linux-wireless@vger.kernel.org
12707 S: Orphan
12708 W: https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
12709 W: http://www.nongnu.org/orinoco/
12710 F: drivers/net/wireless/intersil/orinoco/
12711
12712 OV2659 OMNIVISION SENSOR DRIVER
12713 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12714 L: linux-media@vger.kernel.org
12715 S: Maintained
12716 W: https://linuxtv.org
12717 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12718 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12719 F: drivers/media/i2c/ov2659.c
12720 F: include/media/i2c/ov2659.h
12721
12722 OVERLAY FILESYSTEM
12723 M: Miklos Szeredi <miklos@szeredi.hu>
12724 L: linux-unionfs@vger.kernel.org
12725 S: Supported
12726 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12727 F: Documentation/filesystems/overlayfs.rst
12728 F: fs/overlayfs/
12729
12730 P54 WIRELESS DRIVER
12731 M: Christian Lamparter <chunkeey@googlemail.com>
12732 L: linux-wireless@vger.kernel.org
12733 S: Maintained
12734 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
12735 F: drivers/net/wireless/intersil/p54/
12736
12737 PACKING
12738 M: Vladimir Oltean <olteanv@gmail.com>
12739 L: netdev@vger.kernel.org
12740 S: Supported
12741 F: Documentation/core-api/packing.rst
12742 F: include/linux/packing.h
12743 F: lib/packing.c
12744
12745 PADATA PARALLEL EXECUTION MECHANISM
12746 M: Steffen Klassert <steffen.klassert@secunet.com>
12747 L: linux-crypto@vger.kernel.org
12748 S: Maintained
12749 F: Documentation/core-api/padata.rst
12750 F: include/linux/padata.h
12751 F: kernel/padata.c
12752
12753 PAGE POOL
12754 M: Jesper Dangaard Brouer <hawk@kernel.org>
12755 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
12756 L: netdev@vger.kernel.org
12757 S: Supported
12758 F: include/net/page_pool.h
12759 F: net/core/page_pool.c
12760
12761 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12762 M: Harald Welte <laforge@gnumonks.org>
12763 L: platform-driver-x86@vger.kernel.org
12764 S: Maintained
12765 F: drivers/platform/x86/panasonic-laptop.c
12766
12767 PARALLAX PING IIO SENSOR DRIVER
12768 M: Andreas Klinger <ak@it-klinger.de>
12769 L: linux-iio@vger.kernel.org
12770 S: Maintained
12771 F: Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12772 F: drivers/iio/proximity/ping.c
12773
12774 PARALLEL LCD/KEYPAD PANEL DRIVER
12775 M: Willy Tarreau <willy@haproxy.com>
12776 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12777 S: Odd Fixes
12778 F: Documentation/admin-guide/lcd-panel-cgram.rst
12779 F: drivers/auxdisplay/panel.c
12780
12781 PARALLEL PORT SUBSYSTEM
12782 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12783 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12784 L: linux-parport@lists.infradead.org (subscribers-only)
12785 S: Maintained
12786 F: Documentation/driver-api/parport*.rst
12787 F: drivers/char/ppdev.c
12788 F: drivers/parport/
12789 F: include/linux/parport*.h
12790 F: include/uapi/linux/ppdev.h
12791
12792 PARAVIRT_OPS INTERFACE
12793 M: Juergen Gross <jgross@suse.com>
12794 M: Thomas Hellstrom <thellstrom@vmware.com>
12795 M: "VMware, Inc." <pv-drivers@vmware.com>
12796 L: virtualization@lists.linux-foundation.org
12797 S: Supported
12798 F: Documentation/virt/paravirt_ops.rst
12799 F: arch/*/include/asm/paravirt*.h
12800 F: arch/*/kernel/paravirt*
12801 F: include/linux/hypervisor.h
12802
12803 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12804 M: Tim Waugh <tim@cyberelk.net>
12805 L: linux-parport@lists.infradead.org (subscribers-only)
12806 S: Maintained
12807 F: Documentation/admin-guide/blockdev/paride.rst
12808 F: drivers/block/paride/
12809
12810 PARISC ARCHITECTURE
12811 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12812 M: Helge Deller <deller@gmx.de>
12813 L: linux-parisc@vger.kernel.org
12814 S: Maintained
12815 W: http://www.parisc-linux.org/
12816 Q: http://patchwork.kernel.org/project/linux-parisc/list/
12817 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12818 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12819 F: Documentation/parisc/
12820 F: arch/parisc/
12821 F: drivers/char/agp/parisc-agp.c
12822 F: drivers/input/misc/hp_sdc_rtc.c
12823 F: drivers/input/serio/gscps2.c
12824 F: drivers/input/serio/hp_sdc*
12825 F: drivers/parisc/
12826 F: drivers/parport/parport_gsc.*
12827 F: drivers/tty/serial/8250/8250_gsc.c
12828 F: drivers/video/console/sti*
12829 F: drivers/video/fbdev/sti*
12830 F: drivers/video/logo/logo_parisc*
12831 F: include/linux/hp_sdc.h
12832
12833 PARMAN
12834 M: Jiri Pirko <jiri@mellanox.com>
12835 L: netdev@vger.kernel.org
12836 S: Supported
12837 F: include/linux/parman.h
12838 F: lib/parman.c
12839 F: lib/test_parman.c
12840
12841 PC ENGINES APU BOARD DRIVER
12842 M: Enrico Weigelt, metux IT consult <info@metux.net>
12843 S: Maintained
12844 F: drivers/platform/x86/pcengines-apuv2.c
12845
12846 PC87360 HARDWARE MONITORING DRIVER
12847 M: Jim Cromie <jim.cromie@gmail.com>
12848 L: linux-hwmon@vger.kernel.org
12849 S: Maintained
12850 F: Documentation/hwmon/pc87360.rst
12851 F: drivers/hwmon/pc87360.c
12852
12853 PC8736x GPIO DRIVER
12854 M: Jim Cromie <jim.cromie@gmail.com>
12855 S: Maintained
12856 F: drivers/char/pc8736x_gpio.c
12857
12858 PC87427 HARDWARE MONITORING DRIVER
12859 M: Jean Delvare <jdelvare@suse.com>
12860 L: linux-hwmon@vger.kernel.org
12861 S: Maintained
12862 F: Documentation/hwmon/pc87427.rst
12863 F: drivers/hwmon/pc87427.c
12864
12865 PCA9532 LED DRIVER
12866 M: Riku Voipio <riku.voipio@iki.fi>
12867 S: Maintained
12868 F: drivers/leds/leds-pca9532.c
12869 F: include/linux/leds-pca9532.h
12870
12871 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12872 M: Guenter Roeck <linux@roeck-us.net>
12873 L: linux-i2c@vger.kernel.org
12874 S: Maintained
12875 F: drivers/i2c/muxes/i2c-mux-pca9541.c
12876
12877 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12878 M: Khalid Aziz <khalid@gonehiking.org>
12879 S: Maintained
12880 F: drivers/firmware/pcdp.*
12881
12882 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12883 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12884 L: linux-pci@vger.kernel.org
12885 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12886 S: Maintained
12887 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
12888 F: drivers/pci/controller/pci-aardvark.c
12889
12890 PCI DRIVER FOR ALTERA PCIE IP
12891 M: Ley Foon Tan <ley.foon.tan@intel.com>
12892 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
12893 L: linux-pci@vger.kernel.org
12894 S: Supported
12895 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
12896 F: drivers/pci/controller/pcie-altera.c
12897
12898 PCI DRIVER FOR APPLIEDMICRO XGENE
12899 M: Toan Le <toan@os.amperecomputing.com>
12900 L: linux-pci@vger.kernel.org
12901 L: linux-arm-kernel@lists.infradead.org
12902 S: Maintained
12903 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
12904 F: drivers/pci/controller/pci-xgene.c
12905
12906 PCI DRIVER FOR ARM VERSATILE PLATFORM
12907 M: Rob Herring <robh@kernel.org>
12908 L: linux-pci@vger.kernel.org
12909 L: linux-arm-kernel@lists.infradead.org
12910 S: Maintained
12911 F: Documentation/devicetree/bindings/pci/versatile.yaml
12912 F: drivers/pci/controller/pci-versatile.c
12913
12914 PCI DRIVER FOR ARMADA 8K
12915 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12916 L: linux-pci@vger.kernel.org
12917 L: linux-arm-kernel@lists.infradead.org
12918 S: Maintained
12919 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
12920 F: drivers/pci/controller/dwc/pcie-armada8k.c
12921
12922 PCI DRIVER FOR CADENCE PCIE IP
12923 M: Tom Joseph <tjoseph@cadence.com>
12924 L: linux-pci@vger.kernel.org
12925 S: Maintained
12926 F: Documentation/devicetree/bindings/pci/cdns,*
12927 F: drivers/pci/controller/cadence/
12928
12929 PCI DRIVER FOR FREESCALE LAYERSCAPE
12930 M: Minghuan Lian <minghuan.Lian@nxp.com>
12931 M: Mingkai Hu <mingkai.hu@nxp.com>
12932 M: Roy Zang <roy.zang@nxp.com>
12933 L: linuxppc-dev@lists.ozlabs.org
12934 L: linux-pci@vger.kernel.org
12935 L: linux-arm-kernel@lists.infradead.org
12936 S: Maintained
12937 F: drivers/pci/controller/dwc/*layerscape*
12938
12939 PCI DRIVER FOR GENERIC OF HOSTS
12940 M: Will Deacon <will@kernel.org>
12941 L: linux-pci@vger.kernel.org
12942 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12943 S: Maintained
12944 F: Documentation/devicetree/bindings/pci/host-generic-pci.yaml
12945 F: drivers/pci/controller/pci-host-common.c
12946 F: drivers/pci/controller/pci-host-generic.c
12947
12948 PCI DRIVER FOR IMX6
12949 M: Richard Zhu <hongxing.zhu@nxp.com>
12950 M: Lucas Stach <l.stach@pengutronix.de>
12951 L: linux-pci@vger.kernel.org
12952 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12953 S: Maintained
12954 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12955 F: drivers/pci/controller/dwc/*imx6*
12956
12957 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12958 M: Jonathan Derrick <jonathan.derrick@intel.com>
12959 L: linux-pci@vger.kernel.org
12960 S: Supported
12961 F: drivers/pci/controller/vmd.c
12962
12963 PCI DRIVER FOR MICROSEMI SWITCHTEC
12964 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12965 M: Logan Gunthorpe <logang@deltatee.com>
12966 L: linux-pci@vger.kernel.org
12967 S: Maintained
12968 F: Documentation/ABI/testing/sysfs-class-switchtec
12969 F: Documentation/driver-api/switchtec.rst
12970 F: drivers/ntb/hw/mscc/
12971 F: drivers/pci/switch/switchtec*
12972 F: include/linux/switchtec.h
12973 F: include/uapi/linux/switchtec_ioctl.h
12974
12975 PCI DRIVER FOR MOBIVEIL PCIE IP
12976 M: Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12977 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12978 L: linux-pci@vger.kernel.org
12979 S: Supported
12980 F: Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12981 F: drivers/pci/controller/mobiveil/pcie-mobiveil*
12982
12983 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12984 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12985 M: Jason Cooper <jason@lakedaemon.net>
12986 L: linux-pci@vger.kernel.org
12987 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12988 S: Maintained
12989 F: drivers/pci/controller/*mvebu*
12990
12991 PCI DRIVER FOR NVIDIA TEGRA
12992 M: Thierry Reding <thierry.reding@gmail.com>
12993 L: linux-tegra@vger.kernel.org
12994 L: linux-pci@vger.kernel.org
12995 S: Supported
12996 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12997 F: drivers/pci/controller/pci-tegra.c
12998
12999 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13000 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13001 L: linux-pci@vger.kernel.org
13002 L: linux-arm-kernel@lists.infradead.org
13003 S: Maintained
13004 F: Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13005 F: drivers/pci/controller/mobibeil/pcie-layerscape-gen4.c
13006
13007 PCI DRIVER FOR RENESAS R-CAR
13008 M: Marek Vasut <marek.vasut+renesas@gmail.com>
13009 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13010 L: linux-pci@vger.kernel.org
13011 L: linux-renesas-soc@vger.kernel.org
13012 S: Maintained
13013 F: drivers/pci/controller/*rcar*
13014
13015 PCI DRIVER FOR SAMSUNG EXYNOS
13016 M: Jingoo Han <jingoohan1@gmail.com>
13017 L: linux-pci@vger.kernel.org
13018 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13019 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13020 S: Maintained
13021 F: drivers/pci/controller/dwc/pci-exynos.c
13022
13023 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13024 M: Jingoo Han <jingoohan1@gmail.com>
13025 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13026 L: linux-pci@vger.kernel.org
13027 S: Maintained
13028 F: Documentation/devicetree/bindings/pci/designware-pcie.txt
13029 F: drivers/pci/controller/dwc/*designware*
13030
13031 PCI DRIVER FOR TI DRA7XX
13032 M: Kishon Vijay Abraham I <kishon@ti.com>
13033 L: linux-omap@vger.kernel.org
13034 L: linux-pci@vger.kernel.org
13035 S: Supported
13036 F: Documentation/devicetree/bindings/pci/ti-pci.txt
13037 F: drivers/pci/controller/dwc/pci-dra7xx.c
13038
13039 PCI DRIVER FOR TI KEYSTONE
13040 M: Murali Karicheri <m-karicheri2@ti.com>
13041 L: linux-pci@vger.kernel.org
13042 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13043 S: Maintained
13044 F: drivers/pci/controller/dwc/pci-keystone.c
13045
13046 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13047 M: Linus Walleij <linus.walleij@linaro.org>
13048 L: linux-pci@vger.kernel.org
13049 S: Maintained
13050 F: Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13051 F: drivers/pci/controller/pci-v3-semi.c
13052
13053 PCI ENDPOINT SUBSYSTEM
13054 M: Kishon Vijay Abraham I <kishon@ti.com>
13055 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13056 L: linux-pci@vger.kernel.org
13057 S: Supported
13058 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13059 F: drivers/misc/pci_endpoint_test.c
13060 F: drivers/pci/endpoint/
13061 F: tools/pci/
13062
13063 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13064 M: Russell Currey <ruscur@russell.cc>
13065 M: Sam Bobroff <sbobroff@linux.ibm.com>
13066 M: Oliver O'Halloran <oohall@gmail.com>
13067 L: linuxppc-dev@lists.ozlabs.org
13068 S: Supported
13069 F: Documentation/PCI/pci-error-recovery.rst
13070 F: Documentation/powerpc/eeh-pci-error-recovery.rst
13071 F: arch/powerpc/include/*/eeh*.h
13072 F: arch/powerpc/kernel/eeh*.c
13073 F: arch/powerpc/platforms/*/eeh*.c
13074 F: drivers/pci/pcie/aer.c
13075 F: drivers/pci/pcie/dpc.c
13076 F: drivers/pci/pcie/err.c
13077
13078 PCI ERROR RECOVERY
13079 M: Linas Vepstas <linasvepstas@gmail.com>
13080 L: linux-pci@vger.kernel.org
13081 S: Supported
13082 F: Documentation/PCI/pci-error-recovery.rst
13083
13084 PCI MSI DRIVER FOR ALTERA MSI IP
13085 M: Ley Foon Tan <ley.foon.tan@intel.com>
13086 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
13087 L: linux-pci@vger.kernel.org
13088 S: Supported
13089 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13090 F: drivers/pci/controller/pcie-altera-msi.c
13091
13092 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13093 M: Toan Le <toan@os.amperecomputing.com>
13094 L: linux-pci@vger.kernel.org
13095 L: linux-arm-kernel@lists.infradead.org
13096 S: Maintained
13097 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13098 F: drivers/pci/controller/pci-xgene-msi.c
13099
13100 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13101 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13102 R: Rob Herring <robh@kernel.org>
13103 L: linux-pci@vger.kernel.org
13104 S: Supported
13105 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
13106 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13107 F: drivers/pci/controller/
13108
13109 PCI SUBSYSTEM
13110 M: Bjorn Helgaas <bhelgaas@google.com>
13111 L: linux-pci@vger.kernel.org
13112 S: Supported
13113 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
13114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13115 F: Documentation/PCI/
13116 F: Documentation/devicetree/bindings/pci/
13117 F: arch/x86/kernel/early-quirks.c
13118 F: arch/x86/kernel/quirks.c
13119 F: arch/x86/pci/
13120 F: drivers/acpi/pci*
13121 F: drivers/pci/
13122 F: include/asm-generic/pci*
13123 F: include/linux/of_pci.h
13124 F: include/linux/pci*
13125 F: include/uapi/linux/pci*
13126 F: lib/pci*
13127
13128 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13129 M: Jonathan Chocron <jonnyc@amazon.com>
13130 L: linux-pci@vger.kernel.org
13131 S: Maintained
13132 F: Documentation/devicetree/bindings/pci/pcie-al.txt
13133 F: drivers/pci/controller/dwc/pcie-al.c
13134
13135 PCIE DRIVER FOR AMLOGIC MESON
13136 M: Yue Wang <yue.wang@Amlogic.com>
13137 L: linux-pci@vger.kernel.org
13138 L: linux-amlogic@lists.infradead.org
13139 S: Maintained
13140 F: drivers/pci/controller/dwc/pci-meson.c
13141
13142 PCIE DRIVER FOR AXIS ARTPEC
13143 M: Jesper Nilsson <jesper.nilsson@axis.com>
13144 L: linux-arm-kernel@axis.com
13145 L: linux-pci@vger.kernel.org
13146 S: Maintained
13147 F: Documentation/devicetree/bindings/pci/axis,artpec*
13148 F: drivers/pci/controller/dwc/*artpec*
13149
13150 PCIE DRIVER FOR CAVIUM THUNDERX
13151 M: Robert Richter <rrichter@marvell.com>
13152 L: linux-pci@vger.kernel.org
13153 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13154 S: Supported
13155 F: drivers/pci/controller/pci-thunder-*
13156
13157 PCIE DRIVER FOR HISILICON
13158 M: Zhou Wang <wangzhou1@hisilicon.com>
13159 L: linux-pci@vger.kernel.org
13160 S: Maintained
13161 F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13162 F: drivers/pci/controller/dwc/pcie-hisi.c
13163
13164 PCIE DRIVER FOR HISILICON KIRIN
13165 M: Xiaowei Song <songxiaowei@hisilicon.com>
13166 M: Binghui Wang <wangbinghui@hisilicon.com>
13167 L: linux-pci@vger.kernel.org
13168 S: Maintained
13169 F: Documentation/devicetree/bindings/pci/kirin-pcie.txt
13170 F: drivers/pci/controller/dwc/pcie-kirin.c
13171
13172 PCIE DRIVER FOR HISILICON STB
13173 M: Shawn Guo <shawn.guo@linaro.org>
13174 L: linux-pci@vger.kernel.org
13175 S: Maintained
13176 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13177 F: drivers/pci/controller/dwc/pcie-histb.c
13178
13179 PCIE DRIVER FOR MEDIATEK
13180 M: Ryder Lee <ryder.lee@mediatek.com>
13181 L: linux-pci@vger.kernel.org
13182 L: linux-mediatek@lists.infradead.org
13183 S: Supported
13184 F: Documentation/devicetree/bindings/pci/mediatek*
13185 F: drivers/pci/controller/*mediatek*
13186
13187 PCIE DRIVER FOR QUALCOMM MSM
13188 M: Stanimir Varbanov <svarbanov@mm-sol.com>
13189 L: linux-pci@vger.kernel.org
13190 L: linux-arm-msm@vger.kernel.org
13191 S: Maintained
13192 F: drivers/pci/controller/dwc/*qcom*
13193
13194 PCIE DRIVER FOR ROCKCHIP
13195 M: Shawn Lin <shawn.lin@rock-chips.com>
13196 L: linux-pci@vger.kernel.org
13197 L: linux-rockchip@lists.infradead.org
13198 S: Maintained
13199 F: Documentation/devicetree/bindings/pci/rockchip-pcie*
13200 F: drivers/pci/controller/pcie-rockchip*
13201
13202 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13203 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13204 L: linux-pci@vger.kernel.org
13205 S: Maintained
13206 F: Documentation/devicetree/bindings/pci/uniphier-pcie.txt
13207 F: drivers/pci/controller/dwc/pcie-uniphier.c
13208
13209 PCIE DRIVER FOR ST SPEAR13XX
13210 M: Pratyush Anand <pratyush.anand@gmail.com>
13211 L: linux-pci@vger.kernel.org
13212 S: Maintained
13213 F: drivers/pci/controller/dwc/*spear*
13214
13215 PCMCIA SUBSYSTEM
13216 M: Dominik Brodowski <linux@dominikbrodowski.net>
13217 S: Odd Fixes
13218 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13219 F: Documentation/pcmcia/
13220 F: drivers/pcmcia/
13221 F: include/pcmcia/
13222 F: tools/pcmcia/
13223
13224 PCNET32 NETWORK DRIVER
13225 M: Don Fry <pcnet32@frontier.com>
13226 L: netdev@vger.kernel.org
13227 S: Maintained
13228 F: drivers/net/ethernet/amd/pcnet32.c
13229
13230 PCRYPT PARALLEL CRYPTO ENGINE
13231 M: Steffen Klassert <steffen.klassert@secunet.com>
13232 L: linux-crypto@vger.kernel.org
13233 S: Maintained
13234 F: crypto/pcrypt.c
13235 F: include/crypto/pcrypt.h
13236
13237 PEAQ WMI HOTKEYS DRIVER
13238 M: Hans de Goede <hdegoede@redhat.com>
13239 L: platform-driver-x86@vger.kernel.org
13240 S: Maintained
13241 F: drivers/platform/x86/peaq-wmi.c
13242
13243 PENSANDO ETHERNET DRIVERS
13244 M: Shannon Nelson <snelson@pensando.io>
13245 M: Pensando Drivers <drivers@pensando.io>
13246 L: netdev@vger.kernel.org
13247 S: Supported
13248 F: Documentation/networking/device_drivers/pensando/ionic.rst
13249 F: drivers/net/ethernet/pensando/
13250
13251 PER-CPU MEMORY ALLOCATOR
13252 M: Dennis Zhou <dennis@kernel.org>
13253 M: Tejun Heo <tj@kernel.org>
13254 M: Christoph Lameter <cl@linux.com>
13255 S: Maintained
13256 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13257 F: arch/*/include/asm/percpu.h
13258 F: include/linux/percpu*.h
13259 F: mm/percpu*.c
13260
13261 PER-TASK DELAY ACCOUNTING
13262 M: Balbir Singh <bsingharora@gmail.com>
13263 S: Maintained
13264 F: include/linux/delayacct.h
13265 F: kernel/delayacct.c
13266
13267 PERFORMANCE EVENTS SUBSYSTEM
13268 M: Peter Zijlstra <peterz@infradead.org>
13269 M: Ingo Molnar <mingo@redhat.com>
13270 M: Arnaldo Carvalho de Melo <acme@kernel.org>
13271 R: Mark Rutland <mark.rutland@arm.com>
13272 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
13273 R: Jiri Olsa <jolsa@redhat.com>
13274 R: Namhyung Kim <namhyung@kernel.org>
13275 L: linux-kernel@vger.kernel.org
13276 S: Supported
13277 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13278 F: arch/*/events/*
13279 F: arch/*/events/*/*
13280 F: arch/*/include/asm/perf_event.h
13281 F: arch/*/kernel/*/*/perf_event*.c
13282 F: arch/*/kernel/*/perf_event*.c
13283 F: arch/*/kernel/perf_callchain.c
13284 F: arch/*/kernel/perf_event*.c
13285 F: include/linux/perf_event.h
13286 F: include/uapi/linux/perf_event.h
13287 F: kernel/events/*
13288 F: tools/perf/
13289
13290 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13291 R: John Garry <john.garry@huawei.com>
13292 R: Will Deacon <will@kernel.org>
13293 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13294 S: Supported
13295 F: tools/perf/pmu-events/arch/arm64/
13296
13297 PERSONALITY HANDLING
13298 M: Christoph Hellwig <hch@infradead.org>
13299 L: linux-abi-devel@lists.sourceforge.net
13300 S: Maintained
13301 F: include/linux/personality.h
13302 F: include/uapi/linux/personality.h
13303
13304 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13305 M: Marcus Folkesson <marcus.folkesson@gmail.com>
13306 L: linux-input@vger.kernel.org
13307 S: Maintained
13308 F: Documentation/input/devices/pxrc.rst
13309 F: drivers/input/joystick/pxrc.c
13310
13311 PHONET PROTOCOL
13312 M: Remi Denis-Courmont <courmisch@gmail.com>
13313 S: Supported
13314 F: Documentation/networking/phonet.txt
13315 F: include/linux/phonet.h
13316 F: include/net/phonet/
13317 F: include/uapi/linux/phonet.h
13318 F: net/phonet/
13319
13320 PHRAM MTD DRIVER
13321 M: Joern Engel <joern@lazybastard.org>
13322 L: linux-mtd@lists.infradead.org
13323 S: Maintained
13324 F: drivers/mtd/devices/phram.c
13325
13326 PICOLCD HID DRIVER
13327 M: Bruno Prémont <bonbons@linux-vserver.org>
13328 L: linux-input@vger.kernel.org
13329 S: Maintained
13330 F: drivers/hid/hid-picolcd*
13331
13332 PICOXCELL SUPPORT
13333 M: Jamie Iles <jamie@jamieiles.com>
13334 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13335 S: Supported
13336 T: git git://github.com/jamieiles/linux-2.6-ji.git
13337 F: arch/arm/boot/dts/picoxcell*
13338 F: arch/arm/mach-picoxcell/
13339 F: drivers/crypto/picoxcell*
13340
13341 PIDFD API
13342 M: Christian Brauner <christian@brauner.io>
13343 L: linux-kernel@vger.kernel.org
13344 S: Maintained
13345 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13346 F: samples/pidfd/
13347 F: tools/testing/selftests/clone3/
13348 F: tools/testing/selftests/pid_namespace/
13349 F: tools/testing/selftests/pidfd/
13350 K: (?i)pidfd
13351 K: (?i)clone3
13352 K: \b(clone_args|kernel_clone_args)\b
13353
13354 PIN CONTROL SUBSYSTEM
13355 M: Linus Walleij <linus.walleij@linaro.org>
13356 L: linux-gpio@vger.kernel.org
13357 S: Maintained
13358 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13359 F: Documentation/devicetree/bindings/pinctrl/
13360 F: Documentation/driver-api/pinctl.rst
13361 F: drivers/pinctrl/
13362 F: include/linux/pinctrl/
13363
13364 PIN CONTROLLER - FREESCALE
13365 M: Dong Aisheng <aisheng.dong@nxp.com>
13366 M: Fabio Estevam <festevam@gmail.com>
13367 M: Shawn Guo <shawnguo@kernel.org>
13368 M: Stefan Agner <stefan@agner.ch>
13369 R: Pengutronix Kernel Team <kernel@pengutronix.de>
13370 L: linux-gpio@vger.kernel.org
13371 S: Maintained
13372 F: Documentation/devicetree/bindings/pinctrl/fsl,*
13373 F: drivers/pinctrl/freescale/
13374
13375 PIN CONTROLLER - INTEL
13376 M: Mika Westerberg <mika.westerberg@linux.intel.com>
13377 M: Andy Shevchenko <andy@kernel.org>
13378 S: Maintained
13379 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13380 F: drivers/pinctrl/intel/
13381
13382 PIN CONTROLLER - MEDIATEK
13383 M: Sean Wang <sean.wang@kernel.org>
13384 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13385 S: Maintained
13386 F: Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13387 F: Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13388 F: drivers/pinctrl/mediatek/
13389
13390 PIN CONTROLLER - MICROCHIP AT91
13391 M: Ludovic Desroches <ludovic.desroches@microchip.com>
13392 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13393 L: linux-gpio@vger.kernel.org
13394 S: Supported
13395 F: drivers/gpio/gpio-sama5d2-piobu.c
13396 F: drivers/pinctrl/pinctrl-at91*
13397
13398 PIN CONTROLLER - QUALCOMM
13399 M: Bjorn Andersson <bjorn.andersson@linaro.org>
13400 L: linux-arm-msm@vger.kernel.org
13401 S: Maintained
13402 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13403 F: drivers/pinctrl/qcom/
13404
13405 PIN CONTROLLER - RENESAS
13406 M: Geert Uytterhoeven <geert+renesas@glider.be>
13407 L: linux-renesas-soc@vger.kernel.org
13408 S: Maintained
13409 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13410 F: drivers/pinctrl/pinctrl-rz*
13411 F: drivers/pinctrl/sh-pfc/
13412
13413 PIN CONTROLLER - SAMSUNG
13414 M: Tomasz Figa <tomasz.figa@gmail.com>
13415 M: Krzysztof Kozlowski <krzk@kernel.org>
13416 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
13417 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13418 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13419 S: Maintained
13420 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
13421 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13422 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13423 F: drivers/pinctrl/samsung/
13424 F: include/dt-bindings/pinctrl/samsung.h
13425
13426 PIN CONTROLLER - SINGLE
13427 M: Tony Lindgren <tony@atomide.com>
13428 M: Haojian Zhuang <haojian.zhuang@linaro.org>
13429 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13430 L: linux-omap@vger.kernel.org
13431 S: Maintained
13432 F: drivers/pinctrl/pinctrl-single.c
13433
13434 PIN CONTROLLER - ST SPEAR
13435 M: Viresh Kumar <vireshk@kernel.org>
13436 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13437 S: Maintained
13438 W: http://www.st.com/spear
13439 F: drivers/pinctrl/spear/
13440
13441 PISTACHIO SOC SUPPORT
13442 M: James Hartley <james.hartley@sondrel.com>
13443 L: linux-mips@vger.kernel.org
13444 S: Odd Fixes
13445 F: arch/mips/boot/dts/img/pistachio*
13446 F: arch/mips/configs/pistachio*_defconfig
13447 F: arch/mips/include/asm/mach-pistachio/
13448 F: arch/mips/pistachio/
13449
13450 PKTCDVD DRIVER
13451 M: linux-block@vger.kernel.org
13452 S: Orphan
13453 F: drivers/block/pktcdvd.c
13454 F: include/linux/pktcdvd.h
13455 F: include/uapi/linux/pktcdvd.h
13456
13457 PKUNITY SOC DRIVERS
13458 M: Guan Xuetao <gxt@pku.edu.cn>
13459 S: Maintained
13460 W: http://mprc.pku.edu.cn/~guanxuetao/linux
13461 T: git git://github.com/gxt/linux.git
13462 F: drivers/i2c/busses/i2c-puv3.c
13463 F: drivers/input/serio/i8042-unicore32io.h
13464 F: drivers/rtc/rtc-puv3.c
13465 F: drivers/video/fbdev/fb-puv3.c
13466
13467 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13468 M: Tomasz Duszynski <tduszyns@gmail.com>
13469 S: Maintained
13470 F: Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13471 F: drivers/iio/chemical/pms7003.c
13472
13473 PLX DMA DRIVER
13474 M: Logan Gunthorpe <logang@deltatee.com>
13475 S: Maintained
13476 F: drivers/dma/plx_dma.c
13477
13478 PM-GRAPH UTILITY
13479 M: "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13480 L: linux-pm@vger.kernel.org
13481 S: Supported
13482 W: https://01.org/pm-graph
13483 B: https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13484 T: git git://github.com/intel/pm-graph
13485 F: tools/power/pm-graph
13486
13487 PMBUS HARDWARE MONITORING DRIVERS
13488 M: Guenter Roeck <linux@roeck-us.net>
13489 L: linux-hwmon@vger.kernel.org
13490 S: Maintained
13491 W: http://hwmon.wiki.kernel.org/
13492 W: http://www.roeck-us.net/linux/drivers/
13493 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13494 F: Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13495 F: Documentation/devicetree/bindings/hwmon/ltc2978.txt
13496 F: Documentation/devicetree/bindings/hwmon/max31785.txt
13497 F: Documentation/hwmon/adm1275.rst
13498 F: Documentation/hwmon/ibm-cffps.rst
13499 F: Documentation/hwmon/ir35221.rst
13500 F: Documentation/hwmon/lm25066.rst
13501 F: Documentation/hwmon/ltc2978.rst
13502 F: Documentation/hwmon/ltc3815.rst
13503 F: Documentation/hwmon/max16064.rst
13504 F: Documentation/hwmon/max20751.rst
13505 F: Documentation/hwmon/max31785.rst
13506 F: Documentation/hwmon/max34440.rst
13507 F: Documentation/hwmon/max8688.rst
13508 F: Documentation/hwmon/pmbus-core.rst
13509 F: Documentation/hwmon/pmbus.rst
13510 F: Documentation/hwmon/tps40422.rst
13511 F: Documentation/hwmon/ucd9000.rst
13512 F: Documentation/hwmon/ucd9200.rst
13513 F: Documentation/hwmon/zl6100.rst
13514 F: drivers/hwmon/pmbus/
13515 F: include/linux/pmbus.h
13516
13517 PMC SIERRA MaxRAID DRIVER
13518 L: linux-scsi@vger.kernel.org
13519 S: Orphan
13520 W: http://www.pmc-sierra.com/
13521 F: drivers/scsi/pmcraid.*
13522
13523 PMC SIERRA PM8001 DRIVER
13524 M: Jack Wang <jinpu.wang@cloud.ionos.com>
13525 L: linux-scsi@vger.kernel.org
13526 S: Supported
13527 F: drivers/scsi/pm8001/
13528
13529 PNI RM3100 IIO DRIVER
13530 M: Song Qiang <songqiang1304521@gmail.com>
13531 L: linux-iio@vger.kernel.org
13532 S: Maintained
13533 F: Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13534 F: drivers/iio/magnetometer/rm3100*
13535
13536 PNP SUPPORT
13537 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13538 L: linux-acpi@vger.kernel.org
13539 S: Maintained
13540 F: drivers/pnp/
13541 F: include/linux/pnp.h
13542
13543 POSIX CLOCKS and TIMERS
13544 M: Thomas Gleixner <tglx@linutronix.de>
13545 L: linux-kernel@vger.kernel.org
13546 S: Maintained
13547 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13548 F: fs/timerfd.c
13549 F: include/linux/time_namespace.h
13550 F: include/linux/timer*
13551 F: kernel/time/*timer*
13552 F: kernel/time/namespace.c
13553
13554 POWER MANAGEMENT CORE
13555 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
13556 L: linux-pm@vger.kernel.org
13557 S: Supported
13558 B: https://bugzilla.kernel.org
13559 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13560 F: drivers/base/power/
13561 F: drivers/powercap/
13562 F: include/linux/intel_rapl.h
13563 F: include/linux/pm.h
13564 F: include/linux/pm_*
13565 F: include/linux/powercap.h
13566 F: kernel/configs/nopm.config
13567
13568 POWER STATE COORDINATION INTERFACE (PSCI)
13569 M: Mark Rutland <mark.rutland@arm.com>
13570 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13571 L: linux-arm-kernel@lists.infradead.org
13572 S: Maintained
13573 F: drivers/firmware/psci/
13574 F: include/linux/psci.h
13575 F: include/uapi/linux/psci.h
13576
13577 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13578 M: Sebastian Reichel <sre@kernel.org>
13579 L: linux-pm@vger.kernel.org
13580 S: Maintained
13581 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13582 F: Documentation/ABI/testing/sysfs-class-power
13583 F: Documentation/devicetree/bindings/power/supply/
13584 F: drivers/power/supply/
13585 F: include/linux/power_supply.h
13586
13587 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13588 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13589 L: linuxppc-dev@lists.ozlabs.org
13590 S: Maintained
13591 F: drivers/char/powernv-op-panel.c
13592
13593 PPP OVER ATM (RFC 2364)
13594 M: Mitchell Blank Jr <mitch@sfgoth.com>
13595 S: Maintained
13596 F: include/uapi/linux/atmppp.h
13597 F: net/atm/pppoatm.c
13598
13599 PPP OVER ETHERNET
13600 M: Michal Ostrowski <mostrows@earthlink.net>
13601 S: Maintained
13602 F: drivers/net/ppp/pppoe.c
13603 F: drivers/net/ppp/pppox.c
13604
13605 PPP OVER L2TP
13606 M: James Chapman <jchapman@katalix.com>
13607 S: Maintained
13608 F: include/linux/if_pppol2tp.h
13609 F: include/uapi/linux/if_pppol2tp.h
13610 F: net/l2tp/l2tp_ppp.c
13611
13612 PPP PROTOCOL DRIVERS AND COMPRESSORS
13613 M: Paul Mackerras <paulus@samba.org>
13614 L: linux-ppp@vger.kernel.org
13615 S: Maintained
13616 F: drivers/net/ppp/ppp_*
13617
13618 PPS SUPPORT
13619 M: Rodolfo Giometti <giometti@enneenne.com>
13620 L: linuxpps@ml.enneenne.com (subscribers-only)
13621 S: Maintained
13622 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
13623 F: Documentation/ABI/testing/sysfs-pps
13624 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
13625 F: Documentation/driver-api/pps.rst
13626 F: drivers/pps/
13627 F: include/linux/pps*.h
13628 F: include/uapi/linux/pps.h
13629
13630 PPTP DRIVER
13631 M: Dmitry Kozlov <xeb@mail.ru>
13632 L: netdev@vger.kernel.org
13633 S: Maintained
13634 W: http://sourceforge.net/projects/accel-pptp
13635 F: drivers/net/ppp/pptp.c
13636
13637 PRESSURE STALL INFORMATION (PSI)
13638 M: Johannes Weiner <hannes@cmpxchg.org>
13639 S: Maintained
13640 F: include/linux/psi*
13641 F: kernel/sched/psi.c
13642
13643 PRINTK
13644 M: Petr Mladek <pmladek@suse.com>
13645 M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13646 R: Steven Rostedt <rostedt@goodmis.org>
13647 S: Maintained
13648 F: include/linux/printk.h
13649 F: kernel/printk/
13650
13651 PRISM54 WIRELESS DRIVER
13652 M: Luis Chamberlain <mcgrof@kernel.org>
13653 L: linux-wireless@vger.kernel.org
13654 S: Obsolete
13655 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
13656 F: drivers/net/wireless/intersil/prism54/
13657
13658 PROC FILESYSTEM
13659 R: Alexey Dobriyan <adobriyan@gmail.com>
13660 L: linux-kernel@vger.kernel.org
13661 L: linux-fsdevel@vger.kernel.org
13662 S: Maintained
13663 F: Documentation/filesystems/proc.rst
13664 F: fs/proc/
13665 F: include/linux/proc_fs.h
13666 F: tools/testing/selftests/proc/
13667
13668 PROC SYSCTL
13669 M: Luis Chamberlain <mcgrof@kernel.org>
13670 M: Kees Cook <keescook@chromium.org>
13671 M: Iurii Zaikin <yzaikin@google.com>
13672 L: linux-kernel@vger.kernel.org
13673 L: linux-fsdevel@vger.kernel.org
13674 S: Maintained
13675 F: fs/proc/proc_sysctl.c
13676 F: include/linux/sysctl.h
13677 F: kernel/sysctl-test.c
13678 F: kernel/sysctl.c
13679 F: tools/testing/selftests/sysctl/
13680
13681 PS3 NETWORK SUPPORT
13682 M: Geoff Levand <geoff@infradead.org>
13683 L: netdev@vger.kernel.org
13684 L: linuxppc-dev@lists.ozlabs.org
13685 S: Maintained
13686 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
13687
13688 PS3 PLATFORM SUPPORT
13689 M: Geoff Levand <geoff@infradead.org>
13690 L: linuxppc-dev@lists.ozlabs.org
13691 S: Maintained
13692 F: arch/powerpc/boot/ps3*
13693 F: arch/powerpc/include/asm/lv1call.h
13694 F: arch/powerpc/include/asm/ps3*.h
13695 F: arch/powerpc/platforms/ps3/
13696 F: drivers/*/ps3*
13697 F: drivers/ps3/
13698 F: drivers/rtc/rtc-ps3.c
13699 F: drivers/usb/host/*ps3.c
13700 F: sound/ppc/snd_ps3*
13701
13702 PS3VRAM DRIVER
13703 M: Jim Paris <jim@jtan.com>
13704 M: Geoff Levand <geoff@infradead.org>
13705 L: linuxppc-dev@lists.ozlabs.org
13706 S: Maintained
13707 F: drivers/block/ps3vram.c
13708
13709 PSAMPLE PACKET SAMPLING SUPPORT
13710 M: Yotam Gigi <yotam.gi@gmail.com>
13711 S: Maintained
13712 F: include/net/psample.h
13713 F: include/uapi/linux/psample.h
13714 F: net/psample
13715
13716 PSTORE FILESYSTEM
13717 M: Kees Cook <keescook@chromium.org>
13718 M: Anton Vorontsov <anton@enomsg.org>
13719 M: Colin Cross <ccross@android.com>
13720 M: Tony Luck <tony.luck@intel.com>
13721 S: Maintained
13722 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13723 F: Documentation/admin-guide/ramoops.rst
13724 F: Documentation/admin-guide/pstore-blk.rst
13725 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13726 F: drivers/acpi/apei/erst.c
13727 F: drivers/firmware/efi/efi-pstore.c
13728 F: fs/pstore/
13729 F: include/linux/pstore*
13730 K: \b(pstore|ramoops)
13731
13732 PTP HARDWARE CLOCK SUPPORT
13733 M: Richard Cochran <richardcochran@gmail.com>
13734 L: netdev@vger.kernel.org
13735 S: Maintained
13736 W: http://linuxptp.sourceforge.net/
13737 F: Documentation/ABI/testing/sysfs-ptp
13738 F: Documentation/driver-api/ptp.rst
13739 F: drivers/net/phy/dp83640*
13740 F: drivers/ptp/*
13741 F: include/linux/ptp_cl*
13742
13743 PTRACE SUPPORT
13744 M: Oleg Nesterov <oleg@redhat.com>
13745 S: Maintained
13746 F: arch/*/*/ptrace*.c
13747 F: arch/*/include/asm/ptrace*.h
13748 F: arch/*/ptrace*.c
13749 F: include/asm-generic/syscall.h
13750 F: include/linux/ptrace.h
13751 F: include/linux/regset.h
13752 F: include/linux/tracehook.h
13753 F: include/uapi/linux/ptrace.h
13754 F: include/uapi/linux/ptrace.h
13755 F: kernel/ptrace.c
13756
13757 PULSE8-CEC DRIVER
13758 M: Hans Verkuil <hverkuil@xs4all.nl>
13759 L: linux-media@vger.kernel.org
13760 S: Maintained
13761 T: git git://linuxtv.org/media_tree.git
13762 F: Documentation/media/cec-drivers/pulse8-cec.rst
13763 F: drivers/media/usb/pulse8-cec/*
13764
13765 PVRUSB2 VIDEO4LINUX DRIVER
13766 M: Mike Isely <isely@pobox.com>
13767 L: pvrusb2@isely.net (subscribers-only)
13768 L: linux-media@vger.kernel.org
13769 S: Maintained
13770 W: http://www.isely.net/pvrusb2/
13771 T: git git://linuxtv.org/media_tree.git
13772 F: Documentation/media/v4l-drivers/pvrusb2*
13773 F: drivers/media/usb/pvrusb2/
13774
13775 PWC WEBCAM DRIVER
13776 M: Hans Verkuil <hverkuil@xs4all.nl>
13777 L: linux-media@vger.kernel.org
13778 S: Odd Fixes
13779 T: git git://linuxtv.org/media_tree.git
13780 F: drivers/media/usb/pwc/*
13781 F: include/trace/events/pwc.h
13782
13783 PWM FAN DRIVER
13784 M: Kamil Debski <kamil@wypas.org>
13785 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13786 L: linux-hwmon@vger.kernel.org
13787 S: Supported
13788 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13789 F: Documentation/hwmon/pwm-fan.rst
13790 F: drivers/hwmon/pwm-fan.c
13791
13792 PWM IR Transmitter
13793 M: Sean Young <sean@mess.org>
13794 L: linux-media@vger.kernel.org
13795 S: Maintained
13796 F: drivers/media/rc/pwm-ir-tx.c
13797
13798 PWM SUBSYSTEM
13799 M: Thierry Reding <thierry.reding@gmail.com>
13800 R: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13801 L: linux-pwm@vger.kernel.org
13802 S: Maintained
13803 Q: https://patchwork.ozlabs.org/project/linux-pwm/list/
13804 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13805 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13806 F: Documentation/devicetree/bindings/pwm/
13807 F: Documentation/driver-api/pwm.rst
13808 F: drivers/gpio/gpio-mvebu.c
13809 F: drivers/pwm/
13810 F: drivers/video/backlight/pwm_bl.c
13811 F: include/linux/pwm.h
13812 F: include/linux/pwm_backlight.h
13813 K: pwm_(config|apply_state|ops)
13814
13815 PXA GPIO DRIVER
13816 M: Robert Jarzmik <robert.jarzmik@free.fr>
13817 L: linux-gpio@vger.kernel.org
13818 S: Maintained
13819 F: drivers/gpio/gpio-pxa.c
13820
13821 PXA MMCI DRIVER
13822 S: Orphan
13823
13824 PXA RTC DRIVER
13825 M: Robert Jarzmik <robert.jarzmik@free.fr>
13826 L: linux-rtc@vger.kernel.org
13827 S: Maintained
13828
13829 PXA2xx/PXA3xx SUPPORT
13830 M: Daniel Mack <daniel@zonque.org>
13831 M: Haojian Zhuang <haojian.zhuang@gmail.com>
13832 M: Robert Jarzmik <robert.jarzmik@free.fr>
13833 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13834 S: Maintained
13835 T: git git://github.com/hzhuang1/linux.git
13836 T: git git://github.com/rjarzmik/linux.git
13837 F: arch/arm/boot/dts/pxa*
13838 F: arch/arm/mach-pxa/
13839 F: drivers/dma/pxa*
13840 F: drivers/pcmcia/pxa2xx*
13841 F: drivers/pinctrl/pxa/
13842 F: drivers/spi/spi-pxa2xx*
13843 F: drivers/usb/gadget/udc/pxa2*
13844 F: include/sound/pxa2xx-lib.h
13845 F: sound/arm/pxa*
13846 F: sound/soc/pxa/
13847
13848 QAT DRIVER
13849 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13850 L: qat-linux@intel.com
13851 S: Supported
13852 F: drivers/crypto/qat/
13853
13854 QCOM AUDIO (ASoC) DRIVERS
13855 M: Patrick Lai <plai@codeaurora.org>
13856 M: Banajit Goswami <bgoswami@codeaurora.org>
13857 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13858 S: Supported
13859 F: sound/soc/qcom/
13860
13861 QCOM IPA DRIVER
13862 M: Alex Elder <elder@kernel.org>
13863 L: netdev@vger.kernel.org
13864 S: Supported
13865 F: drivers/net/ipa/
13866
13867 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13868 M: Gabriel Somlo <somlo@cmu.edu>
13869 M: "Michael S. Tsirkin" <mst@redhat.com>
13870 L: qemu-devel@nongnu.org
13871 S: Maintained
13872 F: drivers/firmware/qemu_fw_cfg.c
13873 F: include/uapi/linux/qemu_fw_cfg.h
13874
13875 QIB DRIVER
13876 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
13877 M: Mike Marciniszyn <mike.marciniszyn@intel.com>
13878 L: linux-rdma@vger.kernel.org
13879 S: Supported
13880 F: drivers/infiniband/hw/qib/
13881
13882 QLOGIC QL41xxx FCOE DRIVER
13883 M: QLogic-Storage-Upstream@cavium.com
13884 L: linux-scsi@vger.kernel.org
13885 S: Supported
13886 F: drivers/scsi/qedf/
13887
13888 QLOGIC QL41xxx ISCSI DRIVER
13889 M: QLogic-Storage-Upstream@cavium.com
13890 L: linux-scsi@vger.kernel.org
13891 S: Supported
13892 F: drivers/scsi/qedi/
13893
13894 QLOGIC QL4xxx ETHERNET DRIVER
13895 M: Ariel Elior <aelior@marvell.com>
13896 M: GR-everest-linux-l2@marvell.com
13897 L: netdev@vger.kernel.org
13898 S: Supported
13899 F: drivers/net/ethernet/qlogic/qed/
13900 F: drivers/net/ethernet/qlogic/qede/
13901 F: include/linux/qed/
13902
13903 QLOGIC QL4xxx RDMA DRIVER
13904 M: Michal Kalderon <mkalderon@marvell.com>
13905 M: Ariel Elior <aelior@marvell.com>
13906 L: linux-rdma@vger.kernel.org
13907 S: Supported
13908 F: drivers/infiniband/hw/qedr/
13909 F: include/uapi/rdma/qedr-abi.h
13910
13911 QLOGIC QLA1280 SCSI DRIVER
13912 M: Michael Reed <mdr@sgi.com>
13913 L: linux-scsi@vger.kernel.org
13914 S: Maintained
13915 F: drivers/scsi/qla1280.[ch]
13916
13917 QLOGIC QLA2XXX FC-SCSI DRIVER
13918 M: Nilesh Javali <njavali@marvell.com>
13919 M: GR-QLogic-Storage-Upstream@marvell.com
13920 L: linux-scsi@vger.kernel.org
13921 S: Supported
13922 F: Documentation/scsi/LICENSE.qla2xxx
13923 F: drivers/scsi/qla2xxx/
13924
13925 QLOGIC QLA3XXX NETWORK DRIVER
13926 M: GR-Linux-NIC-Dev@marvell.com
13927 L: netdev@vger.kernel.org
13928 S: Supported
13929 F: Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13930 F: drivers/net/ethernet/qlogic/qla3xxx.*
13931
13932 QLOGIC QLA4XXX iSCSI DRIVER
13933 M: QLogic-Storage-Upstream@qlogic.com
13934 L: linux-scsi@vger.kernel.org
13935 S: Supported
13936 F: Documentation/scsi/LICENSE.qla4xxx
13937 F: drivers/scsi/qla4xxx/
13938
13939 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13940 M: Shahed Shaikh <shshaikh@marvell.com>
13941 M: Manish Chopra <manishc@marvell.com>
13942 M: GR-Linux-NIC-Dev@marvell.com
13943 L: netdev@vger.kernel.org
13944 S: Supported
13945 F: drivers/net/ethernet/qlogic/qlcnic/
13946
13947 QLOGIC QLGE 10Gb ETHERNET DRIVER
13948 M: Manish Chopra <manishc@marvell.com>
13949 M: GR-Linux-NIC-Dev@marvell.com
13950 L: netdev@vger.kernel.org
13951 S: Supported
13952 F: drivers/staging/qlge/
13953
13954 QM1D1B0004 MEDIA DRIVER
13955 M: Akihiro Tsukada <tskd08@gmail.com>
13956 L: linux-media@vger.kernel.org
13957 S: Odd Fixes
13958 F: drivers/media/tuners/qm1d1b0004*
13959
13960 QM1D1C0042 MEDIA DRIVER
13961 M: Akihiro Tsukada <tskd08@gmail.com>
13962 L: linux-media@vger.kernel.org
13963 S: Odd Fixes
13964 F: drivers/media/tuners/qm1d1c0042*
13965
13966 QNX4 FILESYSTEM
13967 M: Anders Larsen <al@alarsen.net>
13968 S: Maintained
13969 W: http://www.alarsen.net/linux/qnx4fs/
13970 F: fs/qnx4/
13971 F: include/uapi/linux/qnx4_fs.h
13972 F: include/uapi/linux/qnxtypes.h
13973
13974 QORIQ DPAA2 FSL-MC BUS DRIVER
13975 M: Stuart Yoder <stuyoder@gmail.com>
13976 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
13977 L: linux-kernel@vger.kernel.org
13978 S: Maintained
13979 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13980 F: Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13981 F: drivers/bus/fsl-mc/
13982
13983 QT1010 MEDIA DRIVER
13984 M: Antti Palosaari <crope@iki.fi>
13985 L: linux-media@vger.kernel.org
13986 S: Maintained
13987 W: https://linuxtv.org
13988 W: http://palosaari.fi/linux/
13989 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13990 T: git git://linuxtv.org/anttip/media_tree.git
13991 F: drivers/media/tuners/qt1010*
13992
13993 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13994 M: Kalle Valo <kvalo@codeaurora.org>
13995 L: ath10k@lists.infradead.org
13996 S: Supported
13997 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
13998 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13999 F: drivers/net/wireless/ath/ath10k/
14000
14001 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14002 M: Kalle Valo <kvalo@codeaurora.org>
14003 L: ath11k@lists.infradead.org
14004 S: Supported
14005 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14006 F: drivers/net/wireless/ath/ath11k/
14007
14008 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14009 M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14010 L: linux-wireless@vger.kernel.org
14011 S: Supported
14012 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14013 F: drivers/net/wireless/ath/ath9k/
14014
14015 QUALCOMM CAMERA SUBSYSTEM DRIVER
14016 M: Todor Tomov <todor.too@gmail.com>
14017 L: linux-media@vger.kernel.org
14018 S: Maintained
14019 F: Documentation/devicetree/bindings/media/qcom,camss.txt
14020 F: Documentation/media/v4l-drivers/qcom_camss.rst
14021 F: drivers/media/platform/qcom/camss/
14022
14023 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14024 M: Niklas Cassel <nks@flawful.org>
14025 L: linux-pm@vger.kernel.org
14026 L: linux-arm-msm@vger.kernel.org
14027 S: Maintained
14028 F: Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14029 F: drivers/power/avs/qcom-cpr.c
14030
14031 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14032 M: Ilia Lin <ilia.lin@kernel.org>
14033 L: linux-pm@vger.kernel.org
14034 S: Maintained
14035 F: Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14036 F: drivers/cpufreq/qcom-cpufreq-nvmem.c
14037
14038 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14039 M: Timur Tabi <timur@kernel.org>
14040 L: netdev@vger.kernel.org
14041 S: Maintained
14042 F: drivers/net/ethernet/qualcomm/emac/
14043
14044 QUALCOMM ETHQOS ETHERNET DRIVER
14045 M: Vinod Koul <vkoul@kernel.org>
14046 L: netdev@vger.kernel.org
14047 S: Maintained
14048 F: Documentation/devicetree/bindings/net/qcom,ethqos.txt
14049 F: drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14050
14051 QUALCOMM GENERIC INTERFACE I2C DRIVER
14052 M: Alok Chauhan <alokc@codeaurora.org>
14053 L: linux-i2c@vger.kernel.org
14054 L: linux-arm-msm@vger.kernel.org
14055 S: Supported
14056 F: drivers/i2c/busses/i2c-qcom-geni.c
14057
14058 QUALCOMM HEXAGON ARCHITECTURE
14059 M: Brian Cain <bcain@codeaurora.org>
14060 L: linux-hexagon@vger.kernel.org
14061 S: Supported
14062 F: arch/hexagon/
14063
14064 QUALCOMM HIDMA DRIVER
14065 M: Sinan Kaya <okaya@kernel.org>
14066 L: linux-arm-kernel@lists.infradead.org
14067 L: linux-arm-msm@vger.kernel.org
14068 L: dmaengine@vger.kernel.org
14069 S: Supported
14070 F: drivers/dma/qcom/hidma*
14071
14072 QUALCOMM IOMMU
14073 M: Rob Clark <robdclark@gmail.com>
14074 L: iommu@lists.linux-foundation.org
14075 L: linux-arm-msm@vger.kernel.org
14076 S: Maintained
14077 F: drivers/iommu/qcom_iommu.c
14078
14079 QUALCOMM RMNET DRIVER
14080 M: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14081 M: Sean Tranchetti <stranche@codeaurora.org>
14082 L: netdev@vger.kernel.org
14083 S: Maintained
14084 F: Documentation/networking/device_drivers/qualcomm/rmnet.txt
14085 F: drivers/net/ethernet/qualcomm/rmnet/
14086 F: include/linux/if_rmnet.h
14087
14088 QUALCOMM TSENS THERMAL DRIVER
14089 M: Amit Kucheria <amit.kucheria@linaro.org>
14090 L: linux-pm@vger.kernel.org
14091 L: linux-arm-msm@vger.kernel.org
14092 S: Maintained
14093 F: Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14094 F: drivers/thermal/qcom/
14095
14096 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14097 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
14098 L: linux-media@vger.kernel.org
14099 L: linux-arm-msm@vger.kernel.org
14100 S: Maintained
14101 T: git git://linuxtv.org/media_tree.git
14102 F: Documentation/devicetree/bindings/media/*venus*
14103 F: drivers/media/platform/qcom/venus/
14104
14105 QUALCOMM WCN36XX WIRELESS DRIVER
14106 M: Kalle Valo <kvalo@codeaurora.org>
14107 L: wcn36xx@lists.infradead.org
14108 S: Supported
14109 W: https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14110 T: git git://github.com/KrasnikovEugene/wcn36xx.git
14111 F: drivers/net/wireless/ath/wcn36xx/
14112
14113 QUANTENNA QTNFMAC WIRELESS DRIVER
14114 M: Igor Mitsyanko <imitsyanko@quantenna.com>
14115 M: Sergey Matyukevich <smatyukevich@quantenna.com>
14116 L: linux-wireless@vger.kernel.org
14117 S: Maintained
14118 F: drivers/net/wireless/quantenna
14119
14120 RADEON and AMDGPU DRM DRIVERS
14121 M: Alex Deucher <alexander.deucher@amd.com>
14122 M: Christian König <christian.koenig@amd.com>
14123 M: David (ChunMing) Zhou <David1.Zhou@amd.com>
14124 L: amd-gfx@lists.freedesktop.org
14125 S: Supported
14126 T: git git://people.freedesktop.org/~agd5f/linux
14127 F: drivers/gpu/drm/amd/
14128 F: drivers/gpu/drm/radeon/
14129 F: include/uapi/drm/amdgpu_drm.h
14130 F: include/uapi/drm/radeon_drm.h
14131
14132 RADEON FRAMEBUFFER DISPLAY DRIVER
14133 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
14134 L: linux-fbdev@vger.kernel.org
14135 S: Maintained
14136 F: drivers/video/fbdev/aty/radeon*
14137 F: include/uapi/linux/radeonfb.h
14138
14139 RADIOSHARK RADIO DRIVER
14140 M: Hans Verkuil <hverkuil@xs4all.nl>
14141 L: linux-media@vger.kernel.org
14142 S: Maintained
14143 T: git git://linuxtv.org/media_tree.git
14144 F: drivers/media/radio/radio-shark.c
14145
14146 RADIOSHARK2 RADIO DRIVER
14147 M: Hans Verkuil <hverkuil@xs4all.nl>
14148 L: linux-media@vger.kernel.org
14149 S: Maintained
14150 T: git git://linuxtv.org/media_tree.git
14151 F: drivers/media/radio/radio-shark2.c
14152 F: drivers/media/radio/radio-tea5777.c
14153
14154 RADOS BLOCK DEVICE (RBD)
14155 M: Ilya Dryomov <idryomov@gmail.com>
14156 R: Dongsheng Yang <dongsheng.yang@easystack.cn>
14157 L: ceph-devel@vger.kernel.org
14158 S: Supported
14159 W: http://ceph.com/
14160 T: git git://github.com/ceph/ceph-client.git
14161 F: Documentation/ABI/testing/sysfs-bus-rbd
14162 F: drivers/block/rbd.c
14163 F: drivers/block/rbd_types.h
14164
14165 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14166 M: Paul Mackerras <paulus@samba.org>
14167 L: linux-fbdev@vger.kernel.org
14168 S: Maintained
14169 F: drivers/video/fbdev/aty/aty128fb.c
14170
14171 RAINSHADOW-CEC DRIVER
14172 M: Hans Verkuil <hverkuil@xs4all.nl>
14173 L: linux-media@vger.kernel.org
14174 S: Maintained
14175 T: git git://linuxtv.org/media_tree.git
14176 F: drivers/media/usb/rainshadow-cec/*
14177
14178 RALINK MIPS ARCHITECTURE
14179 M: John Crispin <john@phrozen.org>
14180 L: linux-mips@vger.kernel.org
14181 S: Maintained
14182 F: arch/mips/ralink
14183
14184 RALINK RT2X00 WIRELESS LAN DRIVER
14185 M: Stanislaw Gruszka <stf_xl@wp.pl>
14186 M: Helmut Schaa <helmut.schaa@googlemail.com>
14187 L: linux-wireless@vger.kernel.org
14188 S: Maintained
14189 F: drivers/net/wireless/ralink/rt2x00/
14190
14191 RAMDISK RAM BLOCK DEVICE DRIVER
14192 M: Jens Axboe <axboe@kernel.dk>
14193 S: Maintained
14194 F: Documentation/admin-guide/blockdev/ramdisk.rst
14195 F: drivers/block/brd.c
14196
14197 RANCHU VIRTUAL BOARD FOR MIPS
14198 M: Miodrag Dinic <miodrag.dinic@mips.com>
14199 L: linux-mips@vger.kernel.org
14200 S: Supported
14201 F: arch/mips/configs/generic/board-ranchu.config
14202 F: arch/mips/generic/board-ranchu.c
14203
14204 RANDOM NUMBER DRIVER
14205 M: "Theodore Ts'o" <tytso@mit.edu>
14206 S: Maintained
14207 F: drivers/char/random.c
14208
14209 RAPIDIO SUBSYSTEM
14210 M: Matt Porter <mporter@kernel.crashing.org>
14211 M: Alexandre Bounine <alex.bou9@gmail.com>
14212 S: Maintained
14213 F: drivers/rapidio/
14214
14215 RAS INFRASTRUCTURE
14216 M: Tony Luck <tony.luck@intel.com>
14217 M: Borislav Petkov <bp@alien8.de>
14218 L: linux-edac@vger.kernel.org
14219 S: Maintained
14220 F: Documentation/admin-guide/ras.rst
14221 F: drivers/ras/
14222 F: include/linux/ras.h
14223 F: include/ras/ras_event.h
14224
14225 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14226 L: linux-wireless@vger.kernel.org
14227 S: Orphan
14228 F: drivers/net/wireless/ray*
14229
14230 RCMM REMOTE CONTROLS DECODER
14231 M: Patrick Lerda <patrick9876@free.fr>
14232 S: Maintained
14233 F: drivers/media/rc/ir-rcmm-decoder.c
14234
14235 RCUTORTURE TEST FRAMEWORK
14236 M: "Paul E. McKenney" <paulmck@kernel.org>
14237 M: Josh Triplett <josh@joshtriplett.org>
14238 R: Steven Rostedt <rostedt@goodmis.org>
14239 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14240 R: Lai Jiangshan <jiangshanlai@gmail.com>
14241 L: rcu@vger.kernel.org
14242 S: Supported
14243 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14244 F: tools/testing/selftests/rcutorture
14245
14246 RDC R-321X SoC
14247 M: Florian Fainelli <florian@openwrt.org>
14248 S: Maintained
14249
14250 RDC R6040 FAST ETHERNET DRIVER
14251 M: Florian Fainelli <f.fainelli@gmail.com>
14252 L: netdev@vger.kernel.org
14253 S: Maintained
14254 F: drivers/net/ethernet/rdc/r6040.c
14255
14256 RDMAVT - RDMA verbs software
14257 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
14258 M: Mike Marciniszyn <mike.marciniszyn@intel.com>
14259 L: linux-rdma@vger.kernel.org
14260 S: Supported
14261 F: drivers/infiniband/sw/rdmavt
14262
14263 RDS - RELIABLE DATAGRAM SOCKETS
14264 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
14265 L: netdev@vger.kernel.org
14266 L: linux-rdma@vger.kernel.org
14267 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
14268 S: Supported
14269 W: https://oss.oracle.com/projects/rds/
14270 F: Documentation/networking/rds.txt
14271 F: net/rds/
14272
14273 RDT - RESOURCE ALLOCATION
14274 M: Fenghua Yu <fenghua.yu@intel.com>
14275 M: Reinette Chatre <reinette.chatre@intel.com>
14276 L: linux-kernel@vger.kernel.org
14277 S: Supported
14278 F: Documentation/x86/resctrl*
14279 F: arch/x86/include/asm/resctrl.h
14280 F: arch/x86/kernel/cpu/resctrl/
14281 F: tools/testing/selftests/resctrl/
14282
14283 READ-COPY UPDATE (RCU)
14284 M: "Paul E. McKenney" <paulmck@kernel.org>
14285 M: Josh Triplett <josh@joshtriplett.org>
14286 R: Steven Rostedt <rostedt@goodmis.org>
14287 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14288 R: Lai Jiangshan <jiangshanlai@gmail.com>
14289 R: Joel Fernandes <joel@joelfernandes.org>
14290 L: rcu@vger.kernel.org
14291 S: Supported
14292 W: http://www.rdrop.com/users/paulmck/RCU/
14293 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14294 F: Documentation/RCU/
14295 F: include/linux/rcu*
14296 F: kernel/rcu/
14297 X: Documentation/RCU/torture.txt
14298 X: include/linux/srcu*.h
14299 X: kernel/rcu/srcu*.c
14300
14301 REAL TIME CLOCK (RTC) SUBSYSTEM
14302 M: Alessandro Zummo <a.zummo@towertech.it>
14303 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
14304 L: linux-rtc@vger.kernel.org
14305 S: Maintained
14306 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
14307 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14308 F: Documentation/admin-guide/rtc.rst
14309 F: Documentation/devicetree/bindings/rtc/
14310 F: drivers/rtc/
14311 F: include/linux/platform_data/rtc-*
14312 F: include/linux/rtc.h
14313 F: include/linux/rtc/
14314 F: include/uapi/linux/rtc.h
14315 F: tools/testing/selftests/rtc/
14316
14317 REALTEK AUDIO CODECS
14318 M: Oder Chiou <oder_chiou@realtek.com>
14319 S: Maintained
14320 F: include/sound/rt*.h
14321 F: sound/soc/codecs/rt*
14322
14323 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14324 M: Linus Walleij <linus.walleij@linaro.org>
14325 S: Maintained
14326 F: Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14327 F: drivers/net/dsa/realtek-smi*
14328 F: drivers/net/dsa/rtl83*
14329
14330 REALTEK WIRELESS DRIVER (rtlwifi family)
14331 M: Ping-Ke Shih <pkshih@realtek.com>
14332 L: linux-wireless@vger.kernel.org
14333 S: Maintained
14334 W: https://wireless.wiki.kernel.org/
14335 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14336 F: drivers/net/wireless/realtek/rtlwifi/
14337
14338 REALTEK WIRELESS DRIVER (rtw88)
14339 M: Yan-Hsuan Chuang <yhchuang@realtek.com>
14340 L: linux-wireless@vger.kernel.org
14341 S: Maintained
14342 F: drivers/net/wireless/realtek/rtw88/
14343
14344 REDPINE WIRELESS DRIVER
14345 M: Amitkumar Karwar <amitkarwar@gmail.com>
14346 M: Siva Rebbagondla <siva8118@gmail.com>
14347 L: linux-wireless@vger.kernel.org
14348 S: Maintained
14349 F: drivers/net/wireless/rsi/
14350
14351 REGISTER MAP ABSTRACTION
14352 M: Mark Brown <broonie@kernel.org>
14353 L: linux-kernel@vger.kernel.org
14354 S: Supported
14355 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14356 F: Documentation/devicetree/bindings/regmap/
14357 F: drivers/base/regmap/
14358 F: include/linux/regmap.h
14359
14360 REISERFS FILE SYSTEM
14361 L: reiserfs-devel@vger.kernel.org
14362 S: Supported
14363 F: fs/reiserfs/
14364
14365 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14366 M: Ohad Ben-Cohen <ohad@wizery.com>
14367 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14368 L: linux-remoteproc@vger.kernel.org
14369 S: Maintained
14370 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14371 F: Documentation/ABI/testing/sysfs-class-remoteproc
14372 F: Documentation/devicetree/bindings/remoteproc/
14373 F: Documentation/remoteproc.txt
14374 F: drivers/remoteproc/
14375 F: include/linux/remoteproc.h
14376 F: include/linux/remoteproc/
14377
14378 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14379 M: Ohad Ben-Cohen <ohad@wizery.com>
14380 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14381 L: linux-remoteproc@vger.kernel.org
14382 S: Maintained
14383 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14384 F: Documentation/ABI/testing/sysfs-bus-rpmsg
14385 F: Documentation/rpmsg.txt
14386 F: drivers/rpmsg/
14387 F: include/linux/rpmsg.h
14388 F: include/linux/rpmsg/
14389 F: include/uapi/linux/rpmsg.h
14390 F: samples/rpmsg/
14391
14392 RENESAS CLOCK DRIVERS
14393 M: Geert Uytterhoeven <geert+renesas@glider.be>
14394 L: linux-renesas-soc@vger.kernel.org
14395 S: Supported
14396 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14397 F: drivers/clk/renesas/
14398
14399 RENESAS EMEV2 I2C DRIVER
14400 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
14401 S: Supported
14402 F: Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14403 F: drivers/i2c/busses/i2c-emev2.c
14404
14405 RENESAS ETHERNET DRIVERS
14406 R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
14407 L: netdev@vger.kernel.org
14408 L: linux-renesas-soc@vger.kernel.org
14409 F: Documentation/devicetree/bindings/net/renesas,*.txt
14410 F: Documentation/devicetree/bindings/net/renesas,*.yaml
14411 F: drivers/net/ethernet/renesas/
14412 F: include/linux/sh_eth.h
14413
14414 RENESAS R-CAR GYROADC DRIVER
14415 M: Marek Vasut <marek.vasut@gmail.com>
14416 L: linux-iio@vger.kernel.org
14417 S: Supported
14418 F: Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14419 F: drivers/iio/adc/rcar-gyroadc.c
14420
14421 RENESAS R-CAR I2C DRIVERS
14422 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
14423 S: Supported
14424 F: Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14425 F: Documentation/devicetree/bindings/i2c/renesas,iic.txt
14426 F: drivers/i2c/busses/i2c-rcar.c
14427 F: drivers/i2c/busses/i2c-sh_mobile.c
14428
14429 RENESAS RIIC DRIVER
14430 M: Chris Brandt <chris.brandt@renesas.com>
14431 S: Supported
14432 F: Documentation/devicetree/bindings/i2c/renesas,riic.txt
14433 F: drivers/i2c/busses/i2c-riic.c
14434
14435 RENESAS USB PHY DRIVER
14436 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14437 L: linux-renesas-soc@vger.kernel.org
14438 S: Maintained
14439 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
14440
14441 RESET CONTROLLER FRAMEWORK
14442 M: Philipp Zabel <p.zabel@pengutronix.de>
14443 S: Maintained
14444 T: git git://git.pengutronix.de/git/pza/linux
14445 F: Documentation/devicetree/bindings/reset/
14446 F: drivers/reset/
14447 F: include/dt-bindings/reset/
14448 F: include/linux/reset-controller.h
14449 F: include/linux/reset.h
14450 F: include/linux/reset/
14451 K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14452
14453 RESTARTABLE SEQUENCES SUPPORT
14454 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14455 M: Peter Zijlstra <peterz@infradead.org>
14456 M: "Paul E. McKenney" <paulmck@kernel.org>
14457 M: Boqun Feng <boqun.feng@gmail.com>
14458 L: linux-kernel@vger.kernel.org
14459 S: Supported
14460 F: include/trace/events/rseq.h
14461 F: include/uapi/linux/rseq.h
14462 F: kernel/rseq.c
14463 F: tools/testing/selftests/rseq/
14464
14465 RFKILL
14466 M: Johannes Berg <johannes@sipsolutions.net>
14467 L: linux-wireless@vger.kernel.org
14468 S: Maintained
14469 W: https://wireless.wiki.kernel.org/
14470 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14471 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14472 F: Documentation/ABI/stable/sysfs-class-rfkill
14473 F: Documentation/driver-api/rfkill.rst
14474 F: include/linux/rfkill.h
14475 F: include/uapi/linux/rfkill.h
14476 F: net/rfkill/
14477
14478 RHASHTABLE
14479 M: Thomas Graf <tgraf@suug.ch>
14480 M: Herbert Xu <herbert@gondor.apana.org.au>
14481 L: netdev@vger.kernel.org
14482 S: Maintained
14483 F: include/linux/rhashtable-types.h
14484 F: include/linux/rhashtable.h
14485 F: lib/rhashtable.c
14486 F: lib/test_rhashtable.c
14487
14488 RICOH R5C592 MEMORYSTICK DRIVER
14489 M: Maxim Levitsky <maximlevitsky@gmail.com>
14490 S: Maintained
14491 F: drivers/memstick/host/r592.*
14492
14493 RICOH SMARTMEDIA/XD DRIVER
14494 M: Maxim Levitsky <maximlevitsky@gmail.com>
14495 S: Maintained
14496 F: drivers/mtd/nand/raw/r852.c
14497 F: drivers/mtd/nand/raw/r852.h
14498
14499 RISC-V ARCHITECTURE
14500 M: Paul Walmsley <paul.walmsley@sifive.com>
14501 M: Palmer Dabbelt <palmer@dabbelt.com>
14502 M: Albert Ou <aou@eecs.berkeley.edu>
14503 L: linux-riscv@lists.infradead.org
14504 S: Supported
14505 P: Documentation/riscv/patch-acceptance.rst
14506 T: git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14507 F: arch/riscv/
14508 N: riscv
14509 K: riscv
14510
14511 ROCCAT DRIVERS
14512 M: Stefan Achatz <erazor_de@users.sourceforge.net>
14513 S: Maintained
14514 W: http://sourceforge.net/projects/roccat/
14515 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
14516 F: drivers/hid/hid-roccat*
14517 F: include/linux/hid-roccat*
14518
14519 ROCKCHIP ISP V1 DRIVER
14520 M: Helen Koike <helen.koike@collabora.com>
14521 L: linux-media@vger.kernel.org
14522 S: Maintained
14523 F: drivers/staging/media/rkisp1/
14524
14525 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14526 M: Jacob Chen <jacob-chen@iotwrt.com>
14527 M: Ezequiel Garcia <ezequiel@collabora.com>
14528 L: linux-media@vger.kernel.org
14529 S: Maintained
14530 F: Documentation/devicetree/bindings/media/rockchip-rga.txt
14531 F: drivers/media/platform/rockchip/rga/
14532
14533 ROCKER DRIVER
14534 M: Jiri Pirko <jiri@resnulli.us>
14535 L: netdev@vger.kernel.org
14536 S: Supported
14537 F: drivers/net/ethernet/rocker/
14538
14539 ROCKETPORT DRIVER
14540 S: Maintained
14541 W: http://www.comtrol.com
14542 F: Documentation/driver-api/serial/rocket.rst
14543 F: drivers/tty/rocket*
14544
14545 ROCKETPORT EXPRESS/INFINITY DRIVER
14546 M: Kevin Cernekee <cernekee@gmail.com>
14547 L: linux-serial@vger.kernel.org
14548 S: Odd Fixes
14549 F: drivers/tty/serial/rp2.*
14550
14551 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14552 M: Tomasz Duszynski <tduszyns@gmail.com>
14553 S: Maintained
14554 F: Documentation/devicetree/bindings/iio/light/bh1750.yaml
14555 F: drivers/iio/light/bh1750.c
14556
14557 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14558 M: Marek Vasut <marek.vasut+renesas@gmail.com>
14559 L: linux-kernel@vger.kernel.org
14560 L: linux-renesas-soc@vger.kernel.org
14561 S: Supported
14562 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14563 F: drivers/gpio/gpio-bd9571mwv.c
14564 F: drivers/mfd/bd9571mwv.c
14565 F: drivers/regulator/bd9571mwv-regulator.c
14566 F: include/linux/mfd/bd9571mwv.h
14567
14568 ROSE NETWORK LAYER
14569 M: Ralf Baechle <ralf@linux-mips.org>
14570 L: linux-hams@vger.kernel.org
14571 S: Maintained
14572 W: http://www.linux-ax25.org/
14573 F: include/net/rose.h
14574 F: include/uapi/linux/rose.h
14575 F: net/rose/
14576
14577 ROTATION DRIVER FOR ALLWINNER A83T
14578 M: Jernej Skrabec <jernej.skrabec@siol.net>
14579 L: linux-media@vger.kernel.org
14580 S: Maintained
14581 T: git git://linuxtv.org/media_tree.git
14582 F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14583 F: drivers/media/platform/sunxi/sun8i-rotate/
14584
14585 RTL2830 MEDIA DRIVER
14586 M: Antti Palosaari <crope@iki.fi>
14587 L: linux-media@vger.kernel.org
14588 S: Maintained
14589 W: https://linuxtv.org
14590 W: http://palosaari.fi/linux/
14591 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14592 T: git git://linuxtv.org/anttip/media_tree.git
14593 F: drivers/media/dvb-frontends/rtl2830*
14594
14595 RTL2832 MEDIA DRIVER
14596 M: Antti Palosaari <crope@iki.fi>
14597 L: linux-media@vger.kernel.org
14598 S: Maintained
14599 W: https://linuxtv.org
14600 W: http://palosaari.fi/linux/
14601 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14602 T: git git://linuxtv.org/anttip/media_tree.git
14603 F: drivers/media/dvb-frontends/rtl2832*
14604
14605 RTL2832_SDR MEDIA DRIVER
14606 M: Antti Palosaari <crope@iki.fi>
14607 L: linux-media@vger.kernel.org
14608 S: Maintained
14609 W: https://linuxtv.org
14610 W: http://palosaari.fi/linux/
14611 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14612 T: git git://linuxtv.org/anttip/media_tree.git
14613 F: drivers/media/dvb-frontends/rtl2832_sdr*
14614
14615 RTL8180 WIRELESS DRIVER
14616 L: linux-wireless@vger.kernel.org
14617 S: Orphan
14618 W: https://wireless.wiki.kernel.org/
14619 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14620 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
14621
14622 RTL8187 WIRELESS DRIVER
14623 M: Herton Ronaldo Krzesinski <herton@canonical.com>
14624 M: Hin-Tak Leung <htl10@users.sourceforge.net>
14625 M: Larry Finger <Larry.Finger@lwfinger.net>
14626 L: linux-wireless@vger.kernel.org
14627 S: Maintained
14628 W: https://wireless.wiki.kernel.org/
14629 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14630 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
14631
14632 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14633 M: Jes Sorensen <Jes.Sorensen@gmail.com>
14634 L: linux-wireless@vger.kernel.org
14635 S: Maintained
14636 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14637 F: drivers/net/wireless/realtek/rtl8xxxu/
14638
14639 RXRPC SOCKETS (AF_RXRPC)
14640 M: David Howells <dhowells@redhat.com>
14641 L: linux-afs@lists.infradead.org
14642 S: Supported
14643 W: https://www.infradead.org/~dhowells/kafs/
14644 F: Documentation/networking/rxrpc.txt
14645 F: include/keys/rxrpc-type.h
14646 F: include/net/af_rxrpc.h
14647 F: include/trace/events/rxrpc.h
14648 F: include/uapi/linux/rxrpc.h
14649 F: net/rxrpc/
14650
14651 S3 SAVAGE FRAMEBUFFER DRIVER
14652 M: Antonino Daplas <adaplas@gmail.com>
14653 L: linux-fbdev@vger.kernel.org
14654 S: Maintained
14655 F: drivers/video/fbdev/savage/
14656
14657 S390
14658 M: Heiko Carstens <heiko.carstens@de.ibm.com>
14659 M: Vasily Gorbik <gor@linux.ibm.com>
14660 M: Christian Borntraeger <borntraeger@de.ibm.com>
14661 L: linux-s390@vger.kernel.org
14662 S: Supported
14663 W: http://www.ibm.com/developerworks/linux/linux390/
14664 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14665 F: Documentation/driver-api/s390-drivers.rst
14666 F: Documentation/s390/
14667 F: arch/s390/
14668 F: drivers/s390/
14669
14670 S390 COMMON I/O LAYER
14671 M: Vineeth Vijayan <vneethv@linux.ibm.com>
14672 M: Peter Oberparleiter <oberpar@linux.ibm.com>
14673 L: linux-s390@vger.kernel.org
14674 S: Supported
14675 W: http://www.ibm.com/developerworks/linux/linux390/
14676 F: drivers/s390/cio/
14677
14678 S390 DASD DRIVER
14679 M: Stefan Haberland <sth@linux.ibm.com>
14680 M: Jan Hoeppner <hoeppner@linux.ibm.com>
14681 L: linux-s390@vger.kernel.org
14682 S: Supported
14683 W: http://www.ibm.com/developerworks/linux/linux390/
14684 F: block/partitions/ibm.c
14685 F: drivers/s390/block/dasd*
14686
14687 S390 IOMMU (PCI)
14688 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
14689 L: linux-s390@vger.kernel.org
14690 S: Supported
14691 W: http://www.ibm.com/developerworks/linux/linux390/
14692 F: drivers/iommu/s390-iommu.c
14693
14694 S390 IUCV NETWORK LAYER
14695 M: Julian Wiedmann <jwi@linux.ibm.com>
14696 M: Karsten Graul <kgraul@linux.ibm.com>
14697 M: Ursula Braun <ubraun@linux.ibm.com>
14698 L: linux-s390@vger.kernel.org
14699 S: Supported
14700 W: http://www.ibm.com/developerworks/linux/linux390/
14701 F: drivers/s390/net/*iucv*
14702 F: include/net/iucv/
14703 F: net/iucv/
14704
14705 S390 NETWORK DRIVERS
14706 M: Julian Wiedmann <jwi@linux.ibm.com>
14707 M: Karsten Graul <kgraul@linux.ibm.com>
14708 M: Ursula Braun <ubraun@linux.ibm.com>
14709 L: linux-s390@vger.kernel.org
14710 S: Supported
14711 W: http://www.ibm.com/developerworks/linux/linux390/
14712 F: drivers/s390/net/
14713
14714 S390 PCI SUBSYSTEM
14715 M: Niklas Schnelle <schnelle@linux.ibm.com>
14716 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
14717 L: linux-s390@vger.kernel.org
14718 S: Supported
14719 W: http://www.ibm.com/developerworks/linux/linux390/
14720 F: arch/s390/pci/
14721 F: drivers/pci/hotplug/s390_pci_hpc.c
14722
14723 S390 VFIO AP DRIVER
14724 M: Tony Krowiak <akrowiak@linux.ibm.com>
14725 M: Pierre Morel <pmorel@linux.ibm.com>
14726 M: Halil Pasic <pasic@linux.ibm.com>
14727 L: linux-s390@vger.kernel.org
14728 S: Supported
14729 W: http://www.ibm.com/developerworks/linux/linux390/
14730 F: Documentation/s390/vfio-ap.rst
14731 F: drivers/s390/crypto/vfio_ap_drv.c
14732 F: drivers/s390/crypto/vfio_ap_ops.c
14733 F: drivers/s390/crypto/vfio_ap_private.h
14734
14735 S390 VFIO-CCW DRIVER
14736 M: Cornelia Huck <cohuck@redhat.com>
14737 M: Eric Farman <farman@linux.ibm.com>
14738 R: Halil Pasic <pasic@linux.ibm.com>
14739 L: linux-s390@vger.kernel.org
14740 L: kvm@vger.kernel.org
14741 S: Supported
14742 F: Documentation/s390/vfio-ccw.rst
14743 F: drivers/s390/cio/vfio_ccw*
14744 F: include/uapi/linux/vfio_ccw.h
14745
14746 S390 ZCRYPT DRIVER
14747 M: Harald Freudenberger <freude@linux.ibm.com>
14748 L: linux-s390@vger.kernel.org
14749 S: Supported
14750 W: http://www.ibm.com/developerworks/linux/linux390/
14751 F: drivers/s390/crypto/
14752
14753 S390 ZFCP DRIVER
14754 M: Steffen Maier <maier@linux.ibm.com>
14755 M: Benjamin Block <bblock@linux.ibm.com>
14756 L: linux-s390@vger.kernel.org
14757 S: Supported
14758 W: http://www.ibm.com/developerworks/linux/linux390/
14759 F: drivers/s390/scsi/zfcp_*
14760
14761 S3C24XX SD/MMC Driver
14762 M: Ben Dooks <ben-linux@fluff.org>
14763 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14764 S: Supported
14765 F: drivers/mmc/host/s3cmci.*
14766
14767 SAA6588 RDS RECEIVER DRIVER
14768 M: Hans Verkuil <hverkuil@xs4all.nl>
14769 L: linux-media@vger.kernel.org
14770 S: Odd Fixes
14771 W: https://linuxtv.org
14772 T: git git://linuxtv.org/media_tree.git
14773 F: drivers/media/i2c/saa6588*
14774
14775 SAA7134 VIDEO4LINUX DRIVER
14776 M: Mauro Carvalho Chehab <mchehab@kernel.org>
14777 L: linux-media@vger.kernel.org
14778 S: Odd fixes
14779 W: https://linuxtv.org
14780 T: git git://linuxtv.org/media_tree.git
14781 F: Documentation/media/v4l-drivers/saa7134*
14782 F: drivers/media/pci/saa7134/
14783
14784 SAA7146 VIDEO4LINUX-2 DRIVER
14785 M: Hans Verkuil <hverkuil@xs4all.nl>
14786 L: linux-media@vger.kernel.org
14787 S: Maintained
14788 T: git git://linuxtv.org/media_tree.git
14789 F: drivers/media/common/saa7146/
14790 F: drivers/media/pci/saa7146/
14791 F: include/media/drv-intf/saa7146*
14792
14793 SAFESETID SECURITY MODULE
14794 M: Micah Morton <mortonm@chromium.org>
14795 S: Supported
14796 F: Documentation/admin-guide/LSM/SafeSetID.rst
14797 F: security/safesetid/
14798
14799 SAMSUNG AUDIO (ASoC) DRIVERS
14800 M: Krzysztof Kozlowski <krzk@kernel.org>
14801 M: Sangbeom Kim <sbkim73@samsung.com>
14802 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14803 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14804 S: Supported
14805 F: Documentation/devicetree/bindings/sound/samsung*
14806 F: sound/soc/samsung/
14807
14808 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14809 M: Krzysztof Kozlowski <krzk@kernel.org>
14810 L: linux-crypto@vger.kernel.org
14811 L: linux-samsung-soc@vger.kernel.org
14812 S: Maintained
14813 F: Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14814 F: drivers/crypto/exynos-rng.c
14815
14816 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14817 M: Łukasz Stelmach <l.stelmach@samsung.com>
14818 L: linux-samsung-soc@vger.kernel.org
14819 S: Maintained
14820 F: Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14821 F: drivers/char/hw_random/exynos-trng.c
14822
14823 SAMSUNG FRAMEBUFFER DRIVER
14824 M: Jingoo Han <jingoohan1@gmail.com>
14825 L: linux-fbdev@vger.kernel.org
14826 S: Maintained
14827 F: drivers/video/fbdev/s3c-fb.c
14828
14829 SAMSUNG LAPTOP DRIVER
14830 M: Corentin Chary <corentin.chary@gmail.com>
14831 L: platform-driver-x86@vger.kernel.org
14832 S: Maintained
14833 F: drivers/platform/x86/samsung-laptop.c
14834
14835 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14836 M: Sangbeom Kim <sbkim73@samsung.com>
14837 M: Krzysztof Kozlowski <krzk@kernel.org>
14838 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14839 L: linux-kernel@vger.kernel.org
14840 L: linux-samsung-soc@vger.kernel.org
14841 S: Supported
14842 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14843 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14844 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14845 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14846 F: drivers/clk/clk-s2mps11.c
14847 F: drivers/mfd/sec*.c
14848 F: drivers/regulator/s2m*.c
14849 F: drivers/regulator/s5m*.c
14850 F: drivers/rtc/rtc-s5m.c
14851 F: include/linux/mfd/samsung/
14852
14853 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14854 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14855 L: linux-media@vger.kernel.org
14856 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14857 S: Maintained
14858 F: drivers/media/platform/s3c-camif/
14859 F: include/media/drv-intf/s3c_camif.h
14860
14861 SAMSUNG S3FWRN5 NFC DRIVER
14862 M: Robert Baldyga <r.baldyga@samsung.com>
14863 M: Krzysztof Opasiak <k.opasiak@samsung.com>
14864 L: linux-nfc@lists.01.org (moderated for non-subscribers)
14865 S: Supported
14866 F: drivers/nfc/s3fwrn5
14867
14868 SAMSUNG S5C73M3 CAMERA DRIVER
14869 M: Kyungmin Park <kyungmin.park@samsung.com>
14870 M: Andrzej Hajda <a.hajda@samsung.com>
14871 L: linux-media@vger.kernel.org
14872 S: Supported
14873 F: drivers/media/i2c/s5c73m3/*
14874
14875 SAMSUNG S5K5BAF CAMERA DRIVER
14876 M: Kyungmin Park <kyungmin.park@samsung.com>
14877 M: Andrzej Hajda <a.hajda@samsung.com>
14878 L: linux-media@vger.kernel.org
14879 S: Supported
14880 F: drivers/media/i2c/s5k5baf.c
14881
14882 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14883 M: Krzysztof Kozlowski <krzk@kernel.org>
14884 M: Vladimir Zapolskiy <vz@mleia.com>
14885 M: Kamil Konieczny <k.konieczny@samsung.com>
14886 L: linux-crypto@vger.kernel.org
14887 L: linux-samsung-soc@vger.kernel.org
14888 S: Maintained
14889 F: Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14890 F: Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14891 F: drivers/crypto/s5p-sss.c
14892
14893 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14894 M: Kyungmin Park <kyungmin.park@samsung.com>
14895 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14896 L: linux-media@vger.kernel.org
14897 S: Supported
14898 Q: https://patchwork.linuxtv.org/project/linux-media/list/
14899 F: drivers/media/platform/exynos4-is/
14900
14901 SAMSUNG SOC CLOCK DRIVERS
14902 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14903 M: Tomasz Figa <tomasz.figa@gmail.com>
14904 M: Chanwoo Choi <cw00.choi@samsung.com>
14905 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14906 S: Supported
14907 T: git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14908 F: Documentation/devicetree/bindings/clock/exynos*.txt
14909 F: Documentation/devicetree/bindings/clock/samsung,s3c*
14910 F: Documentation/devicetree/bindings/clock/samsung,s5p*
14911 F: drivers/clk/samsung/
14912 F: include/dt-bindings/clock/exynos*.h
14913
14914 SAMSUNG SPI DRIVERS
14915 M: Kukjin Kim <kgene@kernel.org>
14916 M: Krzysztof Kozlowski <krzk@kernel.org>
14917 M: Andi Shyti <andi@etezian.org>
14918 L: linux-spi@vger.kernel.org
14919 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14920 S: Maintained
14921 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
14922 F: drivers/spi/spi-s3c*
14923 F: include/linux/platform_data/spi-s3c64xx.h
14924
14925 SAMSUNG SXGBE DRIVERS
14926 M: Byungho An <bh74.an@samsung.com>
14927 L: netdev@vger.kernel.org
14928 S: Supported
14929 F: drivers/net/ethernet/samsung/sxgbe/
14930
14931 SAMSUNG THERMAL DRIVER
14932 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14933 L: linux-pm@vger.kernel.org
14934 L: linux-samsung-soc@vger.kernel.org
14935 S: Supported
14936 T: git https://github.com/lmajewski/linux-samsung-thermal.git
14937 F: drivers/thermal/samsung/
14938
14939 SAMSUNG USB2 PHY DRIVER
14940 M: Kamil Debski <kamil@wypas.org>
14941 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14942 L: linux-kernel@vger.kernel.org
14943 S: Supported
14944 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
14945 F: Documentation/driver-api/phy/samsung-usb2.rst
14946 F: drivers/phy/samsung/phy-exynos4210-usb2.c
14947 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
14948 F: drivers/phy/samsung/phy-exynos5250-usb2.c
14949 F: drivers/phy/samsung/phy-s5pv210-usb2.c
14950 F: drivers/phy/samsung/phy-samsung-usb2.c
14951 F: drivers/phy/samsung/phy-samsung-usb2.h
14952
14953 SC1200 WDT DRIVER
14954 M: Zwane Mwaikambo <zwanem@gmail.com>
14955 S: Maintained
14956 F: drivers/watchdog/sc1200wdt.c
14957
14958 SCHEDULER
14959 M: Ingo Molnar <mingo@redhat.com>
14960 M: Peter Zijlstra <peterz@infradead.org>
14961 M: Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14962 M: Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14963 R: Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14964 R: Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14965 R: Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14966 R: Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14967 L: linux-kernel@vger.kernel.org
14968 S: Maintained
14969 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14970 F: include/linux/preempt.h
14971 F: include/linux/sched.h
14972 F: include/linux/wait.h
14973 F: include/uapi/linux/sched.h
14974 F: kernel/sched/
14975
14976 SCR24X CHIP CARD INTERFACE DRIVER
14977 M: Lubomir Rintel <lkundrak@v3.sk>
14978 S: Supported
14979 F: drivers/char/pcmcia/scr24x_cs.c
14980
14981 SCSI CDROM DRIVER
14982 M: Jens Axboe <axboe@kernel.dk>
14983 L: linux-scsi@vger.kernel.org
14984 S: Maintained
14985 W: http://www.kernel.dk
14986 F: drivers/scsi/sr*
14987
14988 SCSI RDMA PROTOCOL (SRP) INITIATOR
14989 M: Bart Van Assche <bvanassche@acm.org>
14990 L: linux-rdma@vger.kernel.org
14991 S: Supported
14992 Q: http://patchwork.kernel.org/project/linux-rdma/list/
14993 F: drivers/infiniband/ulp/srp/
14994 F: include/scsi/srp.h
14995
14996 SCSI RDMA PROTOCOL (SRP) TARGET
14997 M: Bart Van Assche <bvanassche@acm.org>
14998 L: linux-rdma@vger.kernel.org
14999 L: target-devel@vger.kernel.org
15000 S: Supported
15001 Q: http://patchwork.kernel.org/project/linux-rdma/list/
15002 F: drivers/infiniband/ulp/srpt/
15003
15004 SCSI SG DRIVER
15005 M: Doug Gilbert <dgilbert@interlog.com>
15006 L: linux-scsi@vger.kernel.org
15007 S: Maintained
15008 W: http://sg.danny.cz/sg
15009 F: Documentation/scsi/scsi-generic.rst
15010 F: drivers/scsi/sg.c
15011 F: include/scsi/sg.h
15012
15013 SCSI SUBSYSTEM
15014 M: "James E.J. Bottomley" <jejb@linux.ibm.com>
15015 M: "Martin K. Petersen" <martin.petersen@oracle.com>
15016 L: linux-scsi@vger.kernel.org
15017 S: Maintained
15018 Q: https://patchwork.kernel.org/project/linux-scsi/list/
15019 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15020 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15021 F: Documentation/devicetree/bindings/scsi/
15022 F: drivers/scsi/
15023 F: include/scsi/
15024
15025 SCSI TAPE DRIVER
15026 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15027 L: linux-scsi@vger.kernel.org
15028 S: Maintained
15029 F: Documentation/scsi/st.rst
15030 F: drivers/scsi/st.*
15031 F: drivers/scsi/st_*.h
15032
15033 SCSI TARGET SUBSYSTEM
15034 M: "Martin K. Petersen" <martin.petersen@oracle.com>
15035 L: linux-scsi@vger.kernel.org
15036 L: target-devel@vger.kernel.org
15037 S: Supported
15038 W: http://www.linux-iscsi.org
15039 Q: https://patchwork.kernel.org/project/target-devel/list/
15040 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15041 F: Documentation/target/
15042 F: drivers/target/
15043 F: include/target/
15044
15045 SCTP PROTOCOL
15046 M: Vlad Yasevich <vyasevich@gmail.com>
15047 M: Neil Horman <nhorman@tuxdriver.com>
15048 M: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15049 L: linux-sctp@vger.kernel.org
15050 S: Maintained
15051 W: http://lksctp.sourceforge.net
15052 F: Documentation/networking/sctp.txt
15053 F: include/linux/sctp.h
15054 F: include/net/sctp/
15055 F: include/uapi/linux/sctp.h
15056 F: net/sctp/
15057
15058 SCx200 CPU SUPPORT
15059 M: Jim Cromie <jim.cromie@gmail.com>
15060 S: Odd Fixes
15061 F: Documentation/i2c/busses/scx200_acb.rst
15062 F: arch/x86/platform/scx200/
15063 F: drivers/i2c/busses/scx200*
15064 F: drivers/mtd/maps/scx200_docflash.c
15065 F: drivers/watchdog/scx200_wdt.c
15066 F: include/linux/scx200.h
15067
15068 SCx200 GPIO DRIVER
15069 M: Jim Cromie <jim.cromie@gmail.com>
15070 S: Maintained
15071 F: drivers/char/scx200_gpio.c
15072 F: include/linux/scx200_gpio.h
15073
15074 SCx200 HRT CLOCKSOURCE DRIVER
15075 M: Jim Cromie <jim.cromie@gmail.com>
15076 S: Maintained
15077 F: drivers/clocksource/scx200_hrt.c
15078
15079 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15080 M: Sascha Sommer <saschasommer@freenet.de>
15081 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15082 S: Maintained
15083 F: drivers/mmc/host/sdricoh_cs.c
15084
15085 SECO BOARDS CEC DRIVER
15086 M: Ettore Chimenti <ek5.chimenti@gmail.com>
15087 S: Maintained
15088 F: drivers/media/platform/seco-cec/seco-cec.c
15089 F: drivers/media/platform/seco-cec/seco-cec.h
15090
15091 SECURE COMPUTING
15092 M: Kees Cook <keescook@chromium.org>
15093 R: Andy Lutomirski <luto@amacapital.net>
15094 R: Will Drewry <wad@chromium.org>
15095 S: Supported
15096 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15097 F: Documentation/userspace-api/seccomp_filter.rst
15098 F: include/linux/seccomp.h
15099 F: include/uapi/linux/seccomp.h
15100 F: kernel/seccomp.c
15101 F: tools/testing/selftests/kselftest_harness.h
15102 F: tools/testing/selftests/seccomp/*
15103 K: \bsecure_computing
15104 K: \bTIF_SECCOMP\b
15105
15106 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15107 M: Al Cooper <alcooperx@gmail.com>
15108 L: linux-mmc@vger.kernel.org
15109 L: bcm-kernel-feedback-list@broadcom.com
15110 S: Maintained
15111 F: drivers/mmc/host/sdhci-brcmstb*
15112
15113 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15114 M: Adrian Hunter <adrian.hunter@intel.com>
15115 L: linux-mmc@vger.kernel.org
15116 S: Maintained
15117 F: drivers/mmc/host/sdhci*
15118 F: include/linux/mmc/sdhci*
15119
15120 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15121 M: Ludovic Desroches <ludovic.desroches@microchip.com>
15122 L: linux-mmc@vger.kernel.org
15123 S: Supported
15124 F: drivers/mmc/host/sdhci-of-at91.c
15125
15126 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15127 M: Ben Dooks <ben-linux@fluff.org>
15128 M: Jaehoon Chung <jh80.chung@samsung.com>
15129 L: linux-mmc@vger.kernel.org
15130 S: Maintained
15131 F: drivers/mmc/host/sdhci-s3c*
15132
15133 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15134 M: Viresh Kumar <vireshk@kernel.org>
15135 L: linux-mmc@vger.kernel.org
15136 S: Maintained
15137 F: drivers/mmc/host/sdhci-spear.c
15138
15139 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15140 M: Kishon Vijay Abraham I <kishon@ti.com>
15141 L: linux-mmc@vger.kernel.org
15142 S: Maintained
15143 F: drivers/mmc/host/sdhci-omap.c
15144
15145 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15146 M: Jonathan Derrick <jonathan.derrick@intel.com>
15147 M: Revanth Rajashekar <revanth.rajashekar@intel.com>
15148 L: linux-block@vger.kernel.org
15149 S: Supported
15150 F: block/opal_proto.h
15151 F: block/sed*
15152 F: include/linux/sed*
15153 F: include/uapi/linux/sed*
15154
15155 SECURITY CONTACT
15156 M: Security Officers <security@kernel.org>
15157 S: Supported
15158
15159 SECURITY SUBSYSTEM
15160 M: James Morris <jmorris@namei.org>
15161 M: "Serge E. Hallyn" <serge@hallyn.com>
15162 L: linux-security-module@vger.kernel.org (suggested Cc:)
15163 S: Supported
15164 W: http://kernsec.org/
15165 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15166 F: security/
15167 X: security/selinux/
15168
15169 SELINUX SECURITY MODULE
15170 M: Paul Moore <paul@paul-moore.com>
15171 M: Stephen Smalley <stephen.smalley.work@gmail.com>
15172 M: Eric Paris <eparis@parisplace.org>
15173 L: selinux@vger.kernel.org
15174 S: Supported
15175 W: https://selinuxproject.org
15176 W: https://github.com/SELinuxProject
15177 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15178 F: Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15179 F: Documentation/ABI/obsolete/sysfs-selinux-disable
15180 F: Documentation/admin-guide/LSM/SELinux.rst
15181 F: include/uapi/linux/selinux_netlink.h
15182 F: scripts/selinux/
15183 F: security/selinux/
15184
15185 SENSABLE PHANTOM
15186 M: Jiri Slaby <jirislaby@gmail.com>
15187 S: Maintained
15188 F: drivers/misc/phantom.c
15189 F: include/uapi/linux/phantom.h
15190
15191 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15192 M: Tomasz Duszynski <tduszyns@gmail.com>
15193 S: Maintained
15194 F: Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15195 F: drivers/iio/chemical/sps30.c
15196
15197 SERIAL DEVICE BUS
15198 M: Rob Herring <robh@kernel.org>
15199 L: linux-serial@vger.kernel.org
15200 S: Maintained
15201 F: Documentation/devicetree/bindings/serial/serial.yaml
15202 F: drivers/tty/serdev/
15203 F: include/linux/serdev.h
15204
15205 SERIAL DRIVERS
15206 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15207 L: linux-serial@vger.kernel.org
15208 S: Maintained
15209 F: Documentation/devicetree/bindings/serial/
15210 F: drivers/tty/serial/
15211
15212 SERIAL IR RECEIVER
15213 M: Sean Young <sean@mess.org>
15214 L: linux-media@vger.kernel.org
15215 S: Maintained
15216 F: drivers/media/rc/serial_ir.c
15217
15218 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15219 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15220 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15221 S: Maintained
15222 F: Documentation/devicetree/bindings/slimbus/
15223 F: drivers/slimbus/
15224 F: include/linux/slimbus.h
15225
15226 SFC NETWORK DRIVER
15227 M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15228 M: Edward Cree <ecree@solarflare.com>
15229 M: Martin Habets <mhabets@solarflare.com>
15230 L: netdev@vger.kernel.org
15231 S: Supported
15232 F: drivers/net/ethernet/sfc/
15233
15234 SFF/SFP/SFP+ MODULE SUPPORT
15235 M: Russell King <linux@armlinux.org.uk>
15236 L: netdev@vger.kernel.org
15237 S: Maintained
15238 F: drivers/net/phy/phylink.c
15239 F: drivers/net/phy/sfp*
15240 F: include/linux/phylink.h
15241 F: include/linux/sfp.h
15242 K: phylink
15243
15244 SGI GRU DRIVER
15245 M: Dimitri Sivanich <sivanich@sgi.com>
15246 S: Maintained
15247 F: drivers/misc/sgi-gru/
15248
15249 SGI XP/XPC/XPNET DRIVER
15250 M: Cliff Whickman <cpw@sgi.com>
15251 M: Robin Holt <robinmholt@gmail.com>
15252 S: Maintained
15253 F: drivers/misc/sgi-xp/
15254
15255 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15256 M: Ursula Braun <ubraun@linux.ibm.com>
15257 M: Karsten Graul <kgraul@linux.ibm.com>
15258 L: linux-s390@vger.kernel.org
15259 S: Supported
15260 W: http://www.ibm.com/developerworks/linux/linux390/
15261 F: net/smc/
15262
15263 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15264 M: Linus Walleij <linus.walleij@linaro.org>
15265 L: linux-iio@vger.kernel.org
15266 S: Maintained
15267 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15268 F: Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15269 F: drivers/iio/light/gp2ap002.c
15270
15271 SHARP RJ54N1CB0C SENSOR DRIVER
15272 M: Jacopo Mondi <jacopo@jmondi.org>
15273 L: linux-media@vger.kernel.org
15274 S: Odd fixes
15275 T: git git://linuxtv.org/media_tree.git
15276 F: drivers/media/i2c/rj54n1cb0c.c
15277 F: include/media/i2c/rj54n1cb0c.h
15278
15279 SH_VEU V4L2 MEM2MEM DRIVER
15280 L: linux-media@vger.kernel.org
15281 S: Orphan
15282 F: drivers/media/platform/sh_veu.c
15283
15284 SH_VOU V4L2 OUTPUT DRIVER
15285 L: linux-media@vger.kernel.org
15286 S: Orphan
15287 F: drivers/media/platform/sh_vou.c
15288 F: include/media/drv-intf/sh_vou.h
15289
15290 SI2157 MEDIA DRIVER
15291 M: Antti Palosaari <crope@iki.fi>
15292 L: linux-media@vger.kernel.org
15293 S: Maintained
15294 W: https://linuxtv.org
15295 W: http://palosaari.fi/linux/
15296 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15297 T: git git://linuxtv.org/anttip/media_tree.git
15298 F: drivers/media/tuners/si2157*
15299
15300 SI2165 MEDIA DRIVER
15301 M: Matthias Schwarzott <zzam@gentoo.org>
15302 L: linux-media@vger.kernel.org
15303 S: Maintained
15304 W: https://linuxtv.org
15305 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15306 F: drivers/media/dvb-frontends/si2165*
15307
15308 SI2168 MEDIA DRIVER
15309 M: Antti Palosaari <crope@iki.fi>
15310 L: linux-media@vger.kernel.org
15311 S: Maintained
15312 W: https://linuxtv.org
15313 W: http://palosaari.fi/linux/
15314 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15315 T: git git://linuxtv.org/anttip/media_tree.git
15316 F: drivers/media/dvb-frontends/si2168*
15317
15318 SI470X FM RADIO RECEIVER I2C DRIVER
15319 M: Hans Verkuil <hverkuil@xs4all.nl>
15320 L: linux-media@vger.kernel.org
15321 S: Odd Fixes
15322 W: https://linuxtv.org
15323 T: git git://linuxtv.org/media_tree.git
15324 F: drivers/media/radio/si470x/radio-si470x-i2c.c
15325
15326 SI470X FM RADIO RECEIVER USB DRIVER
15327 M: Hans Verkuil <hverkuil@xs4all.nl>
15328 L: linux-media@vger.kernel.org
15329 S: Maintained
15330 W: https://linuxtv.org
15331 T: git git://linuxtv.org/media_tree.git
15332 F: drivers/media/radio/si470x/radio-si470x-common.c
15333 F: drivers/media/radio/si470x/radio-si470x-usb.c
15334 F: drivers/media/radio/si470x/radio-si470x.h
15335
15336 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15337 M: Eduardo Valentin <edubezval@gmail.com>
15338 L: linux-media@vger.kernel.org
15339 S: Odd Fixes
15340 W: https://linuxtv.org
15341 T: git git://linuxtv.org/media_tree.git
15342 F: drivers/media/radio/si4713/si4713.?
15343
15344 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15345 M: Eduardo Valentin <edubezval@gmail.com>
15346 L: linux-media@vger.kernel.org
15347 S: Odd Fixes
15348 W: https://linuxtv.org
15349 T: git git://linuxtv.org/media_tree.git
15350 F: drivers/media/radio/si4713/radio-platform-si4713.c
15351
15352 SI4713 FM RADIO TRANSMITTER USB DRIVER
15353 M: Hans Verkuil <hverkuil@xs4all.nl>
15354 L: linux-media@vger.kernel.org
15355 S: Maintained
15356 W: https://linuxtv.org
15357 T: git git://linuxtv.org/media_tree.git
15358 F: drivers/media/radio/si4713/radio-usb-si4713.c
15359
15360 SIANO DVB DRIVER
15361 M: Mauro Carvalho Chehab <mchehab@kernel.org>
15362 L: linux-media@vger.kernel.org
15363 S: Odd fixes
15364 W: https://linuxtv.org
15365 T: git git://linuxtv.org/media_tree.git
15366 F: drivers/media/common/siano/
15367 F: drivers/media/mmc/siano/
15368 F: drivers/media/usb/siano/
15369 F: drivers/media/usb/siano/
15370
15371 SIFIVE DRIVERS
15372 M: Palmer Dabbelt <palmer@dabbelt.com>
15373 M: Paul Walmsley <paul.walmsley@sifive.com>
15374 L: linux-riscv@lists.infradead.org
15375 S: Supported
15376 T: git git://github.com/sifive/riscv-linux.git
15377 N: sifive
15378 K: [^@]sifive
15379
15380 SIFIVE FU540 SYSTEM-ON-CHIP
15381 M: Paul Walmsley <paul.walmsley@sifive.com>
15382 M: Palmer Dabbelt <palmer@dabbelt.com>
15383 L: linux-riscv@lists.infradead.org
15384 S: Supported
15385 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15386 N: fu540
15387 K: fu540
15388
15389 SIFIVE PDMA DRIVER
15390 M: Green Wan <green.wan@sifive.com>
15391 S: Maintained
15392 F: Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15393 F: drivers/dma/sf-pdma/
15394
15395 SILEAD TOUCHSCREEN DRIVER
15396 M: Hans de Goede <hdegoede@redhat.com>
15397 L: linux-input@vger.kernel.org
15398 L: platform-driver-x86@vger.kernel.org
15399 S: Maintained
15400 F: drivers/input/touchscreen/silead.c
15401 F: drivers/platform/x86/touchscreen_dmi.c
15402
15403 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15404 M: Jérôme Pouiller <jerome.pouiller@silabs.com>
15405 S: Supported
15406 F: drivers/staging/wfx/
15407
15408 SILICON MOTION SM712 FRAME BUFFER DRIVER
15409 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15410 M: Teddy Wang <teddy.wang@siliconmotion.com>
15411 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15412 L: linux-fbdev@vger.kernel.org
15413 S: Maintained
15414 F: Documentation/fb/sm712fb.rst
15415 F: drivers/video/fbdev/sm712*
15416
15417 SIMPLE FIRMWARE INTERFACE (SFI)
15418 S: Obsolete
15419 W: http://simplefirmware.org/
15420 F: arch/x86/platform/sfi/
15421 F: drivers/sfi/
15422 F: include/linux/sfi*.h
15423
15424 SIMPLEFB FB DRIVER
15425 M: Hans de Goede <hdegoede@redhat.com>
15426 L: linux-fbdev@vger.kernel.org
15427 S: Maintained
15428 F: Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15429 F: drivers/video/fbdev/simplefb.c
15430 F: include/linux/platform_data/simplefb.h
15431
15432 SIMTEC EB110ATX (Chalice CATS)
15433 M: Vincent Sanders <vince@simtec.co.uk>
15434 M: Simtec Linux Team <linux@simtec.co.uk>
15435 S: Supported
15436 W: http://www.simtec.co.uk/products/EB110ATX/
15437
15438 SIMTEC EB2410ITX (BAST)
15439 M: Vincent Sanders <vince@simtec.co.uk>
15440 M: Simtec Linux Team <linux@simtec.co.uk>
15441 S: Supported
15442 W: http://www.simtec.co.uk/products/EB2410ITX/
15443 F: arch/arm/mach-s3c24xx/bast-ide.c
15444 F: arch/arm/mach-s3c24xx/bast-irq.c
15445 F: arch/arm/mach-s3c24xx/mach-bast.c
15446
15447 SIOX
15448 M: Thorsten Scherer <t.scherer@eckelmann.de>
15449 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15450 R: Pengutronix Kernel Team <kernel@pengutronix.de>
15451 S: Supported
15452 F: drivers/gpio/gpio-siox.c
15453 F: drivers/siox/*
15454 F: include/trace/events/siox.h
15455
15456 SIPHASH PRF ROUTINES
15457 M: Jason A. Donenfeld <Jason@zx2c4.com>
15458 S: Maintained
15459 F: include/linux/siphash.h
15460 F: lib/siphash.c
15461 F: lib/test_siphash.c
15462
15463 SIS 190 ETHERNET DRIVER
15464 M: Francois Romieu <romieu@fr.zoreil.com>
15465 L: netdev@vger.kernel.org
15466 S: Maintained
15467 F: drivers/net/ethernet/sis/sis190.c
15468
15469 SIS 900/7016 FAST ETHERNET DRIVER
15470 M: Daniele Venzano <venza@brownhat.org>
15471 L: netdev@vger.kernel.org
15472 S: Maintained
15473 W: http://www.brownhat.org/sis900.html
15474 F: drivers/net/ethernet/sis/sis900.*
15475
15476 SIS FRAMEBUFFER DRIVER
15477 M: Thomas Winischhofer <thomas@winischhofer.net>
15478 S: Maintained
15479 W: http://www.winischhofer.net/linuxsisvga.shtml
15480 F: Documentation/fb/sisfb.rst
15481 F: drivers/video/fbdev/sis/
15482 F: include/video/sisfb.h
15483
15484 SIS USB2VGA DRIVER
15485 M: Thomas Winischhofer <thomas@winischhofer.net>
15486 S: Maintained
15487 W: http://www.winischhofer.at/linuxsisusbvga.shtml
15488 F: drivers/usb/misc/sisusbvga/
15489
15490 SLAB ALLOCATOR
15491 M: Christoph Lameter <cl@linux.com>
15492 M: Pekka Enberg <penberg@kernel.org>
15493 M: David Rientjes <rientjes@google.com>
15494 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
15495 M: Andrew Morton <akpm@linux-foundation.org>
15496 L: linux-mm@kvack.org
15497 S: Maintained
15498 F: include/linux/sl?b*.h
15499 F: mm/sl?b*
15500
15501 SLEEPABLE READ-COPY UPDATE (SRCU)
15502 M: Lai Jiangshan <jiangshanlai@gmail.com>
15503 M: "Paul E. McKenney" <paulmck@kernel.org>
15504 M: Josh Triplett <josh@joshtriplett.org>
15505 R: Steven Rostedt <rostedt@goodmis.org>
15506 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15507 L: rcu@vger.kernel.org
15508 S: Supported
15509 W: http://www.rdrop.com/users/paulmck/RCU/
15510 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15511 F: include/linux/srcu*.h
15512 F: kernel/rcu/srcu*.c
15513
15514 SMACK SECURITY MODULE
15515 M: Casey Schaufler <casey@schaufler-ca.com>
15516 L: linux-security-module@vger.kernel.org
15517 S: Maintained
15518 W: http://schaufler-ca.com
15519 T: git git://github.com/cschaufler/smack-next
15520 F: Documentation/admin-guide/LSM/Smack.rst
15521 F: security/smack/
15522
15523 SMC91x ETHERNET DRIVER
15524 M: Nicolas Pitre <nico@fluxnic.net>
15525 S: Odd Fixes
15526 F: drivers/net/ethernet/smsc/smc91x.*
15527
15528 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15529 M: Mark Rutland <mark.rutland@arm.com>
15530 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15531 M: Sudeep Holla <sudeep.holla@arm.com>
15532 L: linux-arm-kernel@lists.infradead.org
15533 S: Maintained
15534 F: drivers/firmware/smccc/
15535 F: include/linux/arm-smccc.h
15536
15537 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15538 M: Sakari Ailus <sakari.ailus@linux.intel.com>
15539 L: linux-media@vger.kernel.org
15540 S: Maintained
15541 F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15542 F: drivers/media/i2c/smiapp-pll.c
15543 F: drivers/media/i2c/smiapp-pll.h
15544 F: drivers/media/i2c/smiapp/
15545 F: include/uapi/linux/smiapp.h
15546
15547 SMM665 HARDWARE MONITOR DRIVER
15548 M: Guenter Roeck <linux@roeck-us.net>
15549 L: linux-hwmon@vger.kernel.org
15550 S: Maintained
15551 F: Documentation/hwmon/smm665.rst
15552 F: drivers/hwmon/smm665.c
15553
15554 SMSC EMC2103 HARDWARE MONITOR DRIVER
15555 M: Steve Glendinning <steve.glendinning@shawell.net>
15556 L: linux-hwmon@vger.kernel.org
15557 S: Maintained
15558 F: Documentation/hwmon/emc2103.rst
15559 F: drivers/hwmon/emc2103.c
15560
15561 SMSC SCH5627 HARDWARE MONITOR DRIVER
15562 M: Hans de Goede <hdegoede@redhat.com>
15563 L: linux-hwmon@vger.kernel.org
15564 S: Supported
15565 F: Documentation/hwmon/sch5627.rst
15566 F: drivers/hwmon/sch5627.c
15567
15568 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15569 M: Steve Glendinning <steve.glendinning@shawell.net>
15570 L: linux-fbdev@vger.kernel.org
15571 S: Maintained
15572 F: drivers/video/fbdev/smscufx.c
15573
15574 SMSC47B397 HARDWARE MONITOR DRIVER
15575 M: Jean Delvare <jdelvare@suse.com>
15576 L: linux-hwmon@vger.kernel.org
15577 S: Maintained
15578 F: Documentation/hwmon/smsc47b397.rst
15579 F: drivers/hwmon/smsc47b397.c
15580
15581 SMSC911x ETHERNET DRIVER
15582 M: Steve Glendinning <steve.glendinning@shawell.net>
15583 L: netdev@vger.kernel.org
15584 S: Maintained
15585 F: drivers/net/ethernet/smsc/smsc911x.*
15586 F: include/linux/smsc911x.h
15587
15588 SMSC9420 PCI ETHERNET DRIVER
15589 M: Steve Glendinning <steve.glendinning@shawell.net>
15590 L: netdev@vger.kernel.org
15591 S: Maintained
15592 F: drivers/net/ethernet/smsc/smsc9420.*
15593
15594 SOC-CAMERA V4L2 SUBSYSTEM
15595 L: linux-media@vger.kernel.org
15596 S: Orphan
15597 T: git git://linuxtv.org/media_tree.git
15598 F: drivers/staging/media/soc_camera/
15599 F: include/media/soc_camera.h
15600
15601 SOCIONEXT (SNI) AVE NETWORK DRIVER
15602 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15603 L: netdev@vger.kernel.org
15604 S: Maintained
15605 F: Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15606 F: drivers/net/ethernet/socionext/sni_ave.c
15607
15608 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15609 M: Jassi Brar <jaswinder.singh@linaro.org>
15610 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
15611 L: netdev@vger.kernel.org
15612 S: Maintained
15613 F: Documentation/devicetree/bindings/net/socionext-netsec.txt
15614 F: drivers/net/ethernet/socionext/netsec.c
15615
15616 SOCIONEXT (SNI) Synquacer SPI DRIVER
15617 M: Masahisa Kojima <masahisa.kojima@linaro.org>
15618 M: Jassi Brar <jaswinder.singh@linaro.org>
15619 L: linux-spi@vger.kernel.org
15620 S: Maintained
15621 F: Documentation/devicetree/bindings/spi/spi-synquacer.txt
15622 F: drivers/spi/spi-synquacer.c
15623
15624 SOCIONEXT SYNQUACER I2C DRIVER
15625 M: Ard Biesheuvel <ardb@kernel.org>
15626 L: linux-i2c@vger.kernel.org
15627 S: Maintained
15628 F: Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15629 F: drivers/i2c/busses/i2c-synquacer.c
15630
15631 SOCIONEXT UNIPHIER SOUND DRIVER
15632 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15633 S: Orphan
15634 F: sound/soc/uniphier/
15635
15636 SOEKRIS NET48XX LED SUPPORT
15637 M: Chris Boot <bootc@bootc.net>
15638 S: Maintained
15639 F: drivers/leds/leds-net48xx.c
15640
15641 SOFT-IWARP DRIVER (siw)
15642 M: Bernard Metzler <bmt@zurich.ibm.com>
15643 L: linux-rdma@vger.kernel.org
15644 S: Supported
15645 F: drivers/infiniband/sw/siw/
15646 F: include/uapi/rdma/siw-abi.h
15647
15648 SOFT-ROCE DRIVER (rxe)
15649 M: Zhu Yanjun <yanjunz@mellanox.com>
15650 L: linux-rdma@vger.kernel.org
15651 S: Supported
15652 F: drivers/infiniband/sw/rxe/
15653 F: include/uapi/rdma/rdma_user_rxe.h
15654
15655 SOFTLOGIC 6x10 MPEG CODEC
15656 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15657 M: Anton Sviridenko <anton@corp.bluecherry.net>
15658 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15659 M: Andrey Utkin <andrey_utkin@fastmail.com>
15660 M: Ismael Luceno <ismael@iodev.co.uk>
15661 L: linux-media@vger.kernel.org
15662 S: Supported
15663 F: drivers/media/pci/solo6x10/
15664
15665 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15666 M: James Morse <james.morse@arm.com>
15667 L: linux-arm-kernel@lists.infradead.org
15668 S: Maintained
15669 F: Documentation/devicetree/bindings/arm/firmware/sdei.txt
15670 F: drivers/firmware/arm_sdei.c
15671 F: include/linux/arm_sdei.h
15672 F: include/uapi/linux/arm_sdei.h
15673
15674 SOFTWARE RAID (Multiple Disks) SUPPORT
15675 M: Song Liu <song@kernel.org>
15676 L: linux-raid@vger.kernel.org
15677 S: Supported
15678 T: git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15679 F: drivers/md/Kconfig
15680 F: drivers/md/Makefile
15681 F: drivers/md/md*
15682 F: drivers/md/raid*
15683 F: include/linux/raid/
15684 F: include/uapi/linux/raid/
15685
15686 SOLIDRUN CLEARFOG SUPPORT
15687 M: Russell King <linux@armlinux.org.uk>
15688 S: Maintained
15689 F: arch/arm/boot/dts/armada-388-clearfog*
15690 F: arch/arm/boot/dts/armada-38x-solidrun-*
15691
15692 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15693 M: Russell King <linux@armlinux.org.uk>
15694 S: Maintained
15695 F: arch/arm/boot/dts/imx6*-cubox-i*
15696 F: arch/arm/boot/dts/imx6*-hummingboard*
15697 F: arch/arm/boot/dts/imx6*-sr-*
15698
15699 SONIC NETWORK DRIVER
15700 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15701 L: netdev@vger.kernel.org
15702 S: Maintained
15703 F: drivers/net/ethernet/natsemi/sonic.*
15704
15705 SONICS SILICON BACKPLANE DRIVER (SSB)
15706 M: Michael Buesch <m@bues.ch>
15707 L: linux-wireless@vger.kernel.org
15708 S: Maintained
15709 F: drivers/ssb/
15710 F: include/linux/ssb/
15711
15712 SONY IMX214 SENSOR DRIVER
15713 M: Ricardo Ribalda <ribalda@kernel.org>
15714 L: linux-media@vger.kernel.org
15715 S: Maintained
15716 T: git git://linuxtv.org/media_tree.git
15717 F: Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15718 F: drivers/media/i2c/imx214.c
15719
15720 SONY IMX219 SENSOR DRIVER
15721 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
15722 L: linux-media@vger.kernel.org
15723 S: Maintained
15724 T: git git://linuxtv.org/media_tree.git
15725 F: Documentation/devicetree/bindings/media/i2c/imx219.yaml
15726 F: drivers/media/i2c/imx219.c
15727
15728 SONY IMX258 SENSOR DRIVER
15729 M: Sakari Ailus <sakari.ailus@linux.intel.com>
15730 L: linux-media@vger.kernel.org
15731 S: Maintained
15732 T: git git://linuxtv.org/media_tree.git
15733 F: drivers/media/i2c/imx258.c
15734
15735 SONY IMX274 SENSOR DRIVER
15736 M: Leon Luo <leonl@leopardimaging.com>
15737 L: linux-media@vger.kernel.org
15738 S: Maintained
15739 T: git git://linuxtv.org/media_tree.git
15740 F: Documentation/devicetree/bindings/media/i2c/imx274.txt
15741 F: drivers/media/i2c/imx274.c
15742
15743 SONY IMX290 SENSOR DRIVER
15744 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15745 L: linux-media@vger.kernel.org
15746 S: Maintained
15747 T: git git://linuxtv.org/media_tree.git
15748 F: Documentation/devicetree/bindings/media/i2c/imx290.txt
15749 F: drivers/media/i2c/imx290.c
15750
15751 SONY IMX319 SENSOR DRIVER
15752 M: Bingbu Cao <bingbu.cao@intel.com>
15753 L: linux-media@vger.kernel.org
15754 S: Maintained
15755 T: git git://linuxtv.org/media_tree.git
15756 F: drivers/media/i2c/imx319.c
15757
15758 SONY IMX355 SENSOR DRIVER
15759 M: Tianshu Qiu <tian.shu.qiu@intel.com>
15760 L: linux-media@vger.kernel.org
15761 S: Maintained
15762 T: git git://linuxtv.org/media_tree.git
15763 F: drivers/media/i2c/imx355.c
15764
15765 SONY MEMORYSTICK SUBSYSTEM
15766 M: Maxim Levitsky <maximlevitsky@gmail.com>
15767 M: Alex Dubov <oakad@yahoo.com>
15768 M: Ulf Hansson <ulf.hansson@linaro.org>
15769 L: linux-mmc@vger.kernel.org
15770 S: Maintained
15771 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15772 F: drivers/memstick/
15773 F: include/linux/memstick.h
15774
15775 SONY VAIO CONTROL DEVICE DRIVER
15776 M: Mattia Dongili <malattia@linux.it>
15777 L: platform-driver-x86@vger.kernel.org
15778 S: Maintained
15779 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15780 F: Documentation/admin-guide/laptops/sony-laptop.rst
15781 F: drivers/char/sonypi.c
15782 F: drivers/platform/x86/sony-laptop.c
15783 F: include/linux/sony-laptop.h
15784
15785 SOUND
15786 M: Jaroslav Kysela <perex@perex.cz>
15787 M: Takashi Iwai <tiwai@suse.com>
15788 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15789 S: Maintained
15790 W: http://www.alsa-project.org/
15791 Q: http://patchwork.kernel.org/project/alsa-devel/list/
15792 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15793 F: Documentation/sound/
15794 F: include/sound/
15795 F: include/uapi/sound/
15796 F: sound/
15797
15798 SOUND - COMPRESSED AUDIO
15799 M: Vinod Koul <vkoul@kernel.org>
15800 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15801 S: Supported
15802 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15803 F: Documentation/sound/designs/compress-offload.rst
15804 F: include/sound/compress_driver.h
15805 F: include/uapi/sound/compress_*
15806 F: sound/core/compress_offload.c
15807 F: sound/soc/soc-compress.c
15808
15809 SOUND - DMAENGINE HELPERS
15810 M: Lars-Peter Clausen <lars@metafoo.de>
15811 S: Supported
15812 F: include/sound/dmaengine_pcm.h
15813 F: sound/core/pcm_dmaengine.c
15814 F: sound/soc/soc-generic-dmaengine-pcm.c
15815
15816 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15817 M: Liam Girdwood <lgirdwood@gmail.com>
15818 M: Mark Brown <broonie@kernel.org>
15819 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15820 S: Supported
15821 W: http://alsa-project.org/main/index.php/ASoC
15822 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15823 F: Documentation/devicetree/bindings/sound/
15824 F: Documentation/sound/soc/
15825 F: include/dt-bindings/sound/
15826 F: include/sound/soc*
15827 F: sound/soc/
15828
15829 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15830 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15831 M: Liam Girdwood <lgirdwood@gmail.com>
15832 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
15833 M: Kai Vehmanen <kai.vehmanen@linux.intel.com>
15834 M: Daniel Baluta <daniel.baluta@nxp.com>
15835 L: sound-open-firmware@alsa-project.org (moderated for non-subscribers)
15836 S: Supported
15837 W: https://github.com/thesofproject/linux/
15838 F: sound/soc/sof/
15839
15840 SOUNDWIRE SUBSYSTEM
15841 M: Vinod Koul <vkoul@kernel.org>
15842 M: Sanyog Kale <sanyog.r.kale@intel.com>
15843 R: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15844 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15845 S: Supported
15846 F: Documentation/driver-api/soundwire/
15847 F: drivers/soundwire/
15848 F: include/linux/soundwire/
15849
15850 SP2 MEDIA DRIVER
15851 M: Olli Salonen <olli.salonen@iki.fi>
15852 L: linux-media@vger.kernel.org
15853 S: Maintained
15854 W: https://linuxtv.org
15855 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15856 F: drivers/media/dvb-frontends/sp2*
15857
15858 SPARC + UltraSPARC (sparc/sparc64)
15859 M: "David S. Miller" <davem@davemloft.net>
15860 L: sparclinux@vger.kernel.org
15861 S: Maintained
15862 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
15863 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15864 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15865 F: arch/sparc/
15866 F: drivers/sbus/
15867
15868 SPARC SERIAL DRIVERS
15869 M: "David S. Miller" <davem@davemloft.net>
15870 L: sparclinux@vger.kernel.org
15871 S: Maintained
15872 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15873 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15874 F: drivers/tty/serial/suncore.c
15875 F: drivers/tty/serial/sunhv.c
15876 F: drivers/tty/serial/sunsab.c
15877 F: drivers/tty/serial/sunsab.h
15878 F: drivers/tty/serial/sunsu.c
15879 F: drivers/tty/serial/sunzilog.c
15880 F: drivers/tty/serial/sunzilog.h
15881 F: drivers/tty/vcc.c
15882 F: include/linux/sunserialcore.h
15883
15884 SPARSE CHECKER
15885 M: "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15886 L: linux-sparse@vger.kernel.org
15887 S: Maintained
15888 W: https://sparse.wiki.kernel.org/
15889 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15890 F: include/linux/compiler.h
15891
15892 SPEAR CLOCK FRAMEWORK SUPPORT
15893 M: Viresh Kumar <vireshk@kernel.org>
15894 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15895 S: Maintained
15896 W: http://www.st.com/spear
15897 F: drivers/clk/spear/
15898
15899 SPEAR PLATFORM SUPPORT
15900 M: Viresh Kumar <vireshk@kernel.org>
15901 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15902 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15903 S: Maintained
15904 W: http://www.st.com/spear
15905 F: arch/arm/boot/dts/spear*
15906 F: arch/arm/mach-spear/
15907
15908 SPI NOR SUBSYSTEM
15909 M: Tudor Ambarus <tudor.ambarus@microchip.com>
15910 L: linux-mtd@lists.infradead.org
15911 S: Maintained
15912 W: http://www.linux-mtd.infradead.org/
15913 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
15914 C: irc://irc.oftc.net/mtd
15915 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15916 F: drivers/mtd/spi-nor/
15917 F: include/linux/mtd/spi-nor.h
15918
15919 SPI SUBSYSTEM
15920 M: Mark Brown <broonie@kernel.org>
15921 L: linux-spi@vger.kernel.org
15922 S: Maintained
15923 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
15924 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15925 F: Documentation/devicetree/bindings/spi/
15926 F: Documentation/spi/
15927 F: drivers/spi/
15928 F: include/linux/spi/
15929 F: include/uapi/linux/spi/
15930 F: tools/spi/
15931
15932 SPIDERNET NETWORK DRIVER for CELL
15933 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15934 L: netdev@vger.kernel.org
15935 S: Supported
15936 F: Documentation/networking/device_drivers/toshiba/spider_net.txt
15937 F: drivers/net/ethernet/toshiba/spider_net*
15938
15939 SPMI SUBSYSTEM
15940 R: Stephen Boyd <sboyd@kernel.org>
15941 L: linux-arm-msm@vger.kernel.org
15942 F: Documentation/devicetree/bindings/spmi/
15943 F: drivers/spmi/
15944 F: include/dt-bindings/spmi/spmi.h
15945 F: include/linux/spmi.h
15946 F: include/trace/events/spmi.h
15947
15948 SPU FILE SYSTEM
15949 M: Jeremy Kerr <jk@ozlabs.org>
15950 L: linuxppc-dev@lists.ozlabs.org
15951 S: Supported
15952 W: http://www.ibm.com/developerworks/power/cell/
15953 F: Documentation/filesystems/spufs/spufs.rst
15954 F: arch/powerpc/platforms/cell/spufs/
15955
15956 SQUASHFS FILE SYSTEM
15957 M: Phillip Lougher <phillip@squashfs.org.uk>
15958 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
15959 S: Maintained
15960 W: http://squashfs.org.uk
15961 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15962 F: Documentation/filesystems/squashfs.rst
15963 F: fs/squashfs/
15964
15965 SRM (Alpha) environment access
15966 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
15967 S: Maintained
15968 F: arch/alpha/kernel/srm_env.c
15969
15970 ST LSM6DSx IMU IIO DRIVER
15971 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15972 L: linux-iio@vger.kernel.org
15973 S: Maintained
15974 W: http://www.st.com/
15975 F: Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15976 F: drivers/iio/imu/st_lsm6dsx/
15977
15978 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15979 M: Mickael Guene <mickael.guene@st.com>
15980 L: linux-media@vger.kernel.org
15981 S: Maintained
15982 T: git git://linuxtv.org/media_tree.git
15983 F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15984 F: drivers/media/i2c/st-mipid02.c
15985
15986 ST STM32 I2C/SMBUS DRIVER
15987 M: Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15988 L: linux-i2c@vger.kernel.org
15989 S: Maintained
15990 F: drivers/i2c/busses/i2c-stm32*
15991
15992 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15993 M: Song Qiang <songqiang1304521@gmail.com>
15994 L: linux-iio@vger.kernel.org
15995 S: Maintained
15996 F: Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15997 F: drivers/iio/proximity/vl53l0x-i2c.c
15998
15999 STABLE BRANCH
16000 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16001 M: Sasha Levin <sashal@kernel.org>
16002 L: stable@vger.kernel.org
16003 S: Supported
16004 F: Documentation/process/stable-kernel-rules.rst
16005
16006 STAGING - COMEDI
16007 M: Ian Abbott <abbotti@mev.co.uk>
16008 M: H Hartley Sweeten <hsweeten@visionengravers.com>
16009 S: Odd Fixes
16010 F: drivers/staging/comedi/
16011
16012 STAGING - FIELDBUS SUBSYSTEM
16013 M: Sven Van Asbroeck <TheSven73@gmail.com>
16014 S: Maintained
16015 F: drivers/staging/fieldbus/*
16016 F: drivers/staging/fieldbus/Documentation/
16017
16018 STAGING - HMS ANYBUS-S BUS
16019 M: Sven Van Asbroeck <TheSven73@gmail.com>
16020 S: Maintained
16021 F: drivers/staging/fieldbus/anybuss/
16022
16023 STAGING - INDUSTRIAL IO
16024 M: Jonathan Cameron <jic23@kernel.org>
16025 L: linux-iio@vger.kernel.org
16026 S: Odd Fixes
16027 F: Documentation/devicetree/bindings/staging/iio/
16028 F: drivers/staging/iio/
16029
16030 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16031 M: Marc Dietrich <marvin24@gmx.de>
16032 L: ac100@lists.launchpad.net (moderated for non-subscribers)
16033 L: linux-tegra@vger.kernel.org
16034 S: Maintained
16035 F: drivers/staging/nvec/
16036
16037 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16038 M: Jens Frederich <jfrederich@gmail.com>
16039 M: Daniel Drake <dsd@laptop.org>
16040 M: Jon Nettleton <jon.nettleton@gmail.com>
16041 S: Maintained
16042 W: http://wiki.laptop.org/go/DCON
16043 F: drivers/staging/olpc_dcon/
16044
16045 STAGING - REALTEK RTL8188EU DRIVERS
16046 M: Larry Finger <Larry.Finger@lwfinger.net>
16047 S: Odd Fixes
16048 F: drivers/staging/rtl8188eu/
16049
16050 STAGING - REALTEK RTL8712U DRIVERS
16051 M: Larry Finger <Larry.Finger@lwfinger.net>
16052 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16053 S: Odd Fixes
16054 F: drivers/staging/rtl8712/
16055
16056 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16057 M: Michael Hennerich <michael.hennerich@analog.com>
16058 M: Beniamin Bia <beniamin.bia@analog.com>
16059 L: linux-fbdev@vger.kernel.org
16060 S: Supported
16061 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16062 F: drivers/staging/fbtft/fb_seps525.c
16063
16064 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16065 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16066 M: Teddy Wang <teddy.wang@siliconmotion.com>
16067 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16068 L: linux-fbdev@vger.kernel.org
16069 S: Maintained
16070 F: drivers/staging/sm750fb/
16071
16072 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16073 M: William Hubbs <w.d.hubbs@gmail.com>
16074 M: Chris Brannon <chris@the-brannons.com>
16075 M: Kirk Reiser <kirk@reisers.ca>
16076 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
16077 L: speakup@linux-speakup.org
16078 S: Odd Fixes
16079 W: http://www.linux-speakup.org/
16080 F: drivers/staging/speakup/
16081
16082 STAGING - VIA VT665X DRIVERS
16083 M: Forest Bond <forest@alittletooquiet.net>
16084 S: Odd Fixes
16085 F: drivers/staging/vt665?/
16086
16087 STAGING - WILC1000 WIFI DRIVER
16088 M: Adham Abozaeid <adham.abozaeid@microchip.com>
16089 M: Ajay Singh <ajay.kathat@microchip.com>
16090 L: linux-wireless@vger.kernel.org
16091 S: Supported
16092 F: drivers/staging/wilc1000/
16093
16094 STAGING SUBSYSTEM
16095 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16096 L: devel@driverdev.osuosl.org
16097 S: Supported
16098 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16099 F: drivers/staging/
16100
16101 STARFIRE/DURALAN NETWORK DRIVER
16102 M: Ion Badulescu <ionut@badula.org>
16103 S: Odd Fixes
16104 F: drivers/net/ethernet/adaptec/starfire*
16105
16106 STEC S1220 SKD DRIVER
16107 M: Damien Le Moal <Damien.LeMoal@wdc.com>
16108 L: linux-block@vger.kernel.org
16109 S: Maintained
16110 F: drivers/block/skd*[ch]
16111
16112 STI AUDIO (ASoC) DRIVERS
16113 M: Arnaud Pouliquen <arnaud.pouliquen@st.com>
16114 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16115 S: Maintained
16116 F: Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16117 F: sound/soc/sti/
16118
16119 STI CEC DRIVER
16120 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
16121 S: Maintained
16122 F: Documentation/devicetree/bindings/media/stih-cec.txt
16123 F: drivers/media/platform/sti/cec/
16124
16125 STK1160 USB VIDEO CAPTURE DRIVER
16126 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16127 L: linux-media@vger.kernel.org
16128 S: Maintained
16129 T: git git://linuxtv.org/media_tree.git
16130 F: drivers/media/usb/stk1160/
16131
16132 STM32 AUDIO (ASoC) DRIVERS
16133 M: Olivier Moysan <olivier.moysan@st.com>
16134 M: Arnaud Pouliquen <arnaud.pouliquen@st.com>
16135 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16136 S: Maintained
16137 F: Documentation/devicetree/bindings/sound/st,stm32-*.txt
16138 F: sound/soc/stm/
16139
16140 STM32 TIMER/LPTIMER DRIVERS
16141 M: Fabrice Gasnier <fabrice.gasnier@st.com>
16142 S: Maintained
16143 F: Documentation/ABI/testing/*timer-stm32
16144 F: Documentation/devicetree/bindings/*/*stm32-*timer*
16145 F: drivers/*/stm32-*timer*
16146 F: drivers/pwm/pwm-stm32*
16147 F: include/linux/*/stm32-*tim*
16148
16149 STMMAC ETHERNET DRIVER
16150 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
16151 M: Alexandre Torgue <alexandre.torgue@st.com>
16152 M: Jose Abreu <joabreu@synopsys.com>
16153 L: netdev@vger.kernel.org
16154 S: Supported
16155 W: http://www.stlinux.com
16156 F: Documentation/networking/device_drivers/stmicro/
16157 F: drivers/net/ethernet/stmicro/stmmac/
16158
16159 SUN3/3X
16160 M: Sam Creasey <sammy@sammy.net>
16161 S: Maintained
16162 W: http://sammy.net/sun3/
16163 F: arch/m68k/include/asm/sun3*
16164 F: arch/m68k/kernel/*sun3*
16165 F: arch/m68k/sun3*/
16166 F: drivers/net/ethernet/i825xx/sun3*
16167
16168 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16169 M: Hans de Goede <hdegoede@redhat.com>
16170 L: linux-input@vger.kernel.org
16171 S: Maintained
16172 F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16173 F: drivers/input/keyboard/sun4i-lradc-keys.c
16174
16175 SUNDANCE NETWORK DRIVER
16176 M: Denis Kirjanov <kda@linux-powerpc.org>
16177 L: netdev@vger.kernel.org
16178 S: Maintained
16179 F: drivers/net/ethernet/dlink/sundance.c
16180
16181 SUPERH
16182 M: Yoshinori Sato <ysato@users.sourceforge.jp>
16183 M: Rich Felker <dalias@libc.org>
16184 L: linux-sh@vger.kernel.org
16185 S: Maintained
16186 Q: http://patchwork.kernel.org/project/linux-sh/list/
16187 F: Documentation/sh/
16188 F: arch/sh/
16189 F: drivers/sh/
16190
16191 SUSPEND TO RAM
16192 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
16193 M: Len Brown <len.brown@intel.com>
16194 M: Pavel Machek <pavel@ucw.cz>
16195 L: linux-pm@vger.kernel.org
16196 S: Supported
16197 B: https://bugzilla.kernel.org
16198 F: Documentation/power/
16199 F: arch/x86/kernel/acpi/
16200 F: drivers/base/power/
16201 F: include/linux/freezer.h
16202 F: include/linux/pm.h
16203 F: include/linux/suspend.h
16204 F: kernel/power/
16205
16206 SVGA HANDLING
16207 M: Martin Mares <mj@ucw.cz>
16208 L: linux-video@atrey.karlin.mff.cuni.cz
16209 S: Maintained
16210 F: Documentation/admin-guide/svga.rst
16211 F: arch/x86/boot/video*
16212
16213 SWIOTLB SUBSYSTEM
16214 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16215 L: iommu@lists.linux-foundation.org
16216 S: Supported
16217 T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16218 F: arch/*/kernel/pci-swiotlb.c
16219 F: include/linux/swiotlb.h
16220 F: kernel/dma/swiotlb.c
16221
16222 SWITCHDEV
16223 M: Jiri Pirko <jiri@resnulli.us>
16224 M: Ivan Vecera <ivecera@redhat.com>
16225 L: netdev@vger.kernel.org
16226 S: Supported
16227 F: include/net/switchdev.h
16228 F: net/switchdev/
16229
16230 SY8106A REGULATOR DRIVER
16231 M: Icenowy Zheng <icenowy@aosc.io>
16232 S: Maintained
16233 F: Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16234 F: drivers/regulator/sy8106a-regulator.c
16235
16236 SYNC FILE FRAMEWORK
16237 M: Sumit Semwal <sumit.semwal@linaro.org>
16238 R: Gustavo Padovan <gustavo@padovan.org>
16239 L: linux-media@vger.kernel.org
16240 L: dri-devel@lists.freedesktop.org
16241 S: Maintained
16242 T: git git://anongit.freedesktop.org/drm/drm-misc
16243 F: Documentation/driver-api/sync_file.rst
16244 F: drivers/dma-buf/dma-fence*
16245 F: drivers/dma-buf/sw_sync.c
16246 F: drivers/dma-buf/sync_*
16247 F: include/linux/sync_file.h
16248 F: include/uapi/linux/sync_file.h
16249
16250 SYNOPSYS ARC ARCHITECTURE
16251 M: Vineet Gupta <vgupta@synopsys.com>
16252 L: linux-snps-arc@lists.infradead.org
16253 S: Supported
16254 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16255 F: Documentation/devicetree/bindings/arc/*
16256 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16257 F: arch/arc/
16258 F: drivers/clocksource/arc_timer.c
16259 F: drivers/tty/serial/arc_uart.c
16260
16261 SYNOPSYS ARC HSDK SDP pll clock driver
16262 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16263 S: Supported
16264 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16265 F: drivers/clk/clk-hsdk-pll.c
16266
16267 SYNOPSYS ARC SDP clock driver
16268 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16269 S: Supported
16270 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16271 F: drivers/clk/axs10x/*
16272
16273 SYNOPSYS ARC SDP platform support
16274 M: Alexey Brodkin <abrodkin@synopsys.com>
16275 S: Supported
16276 F: Documentation/devicetree/bindings/arc/axs10*
16277 F: arch/arc/boot/dts/ax*
16278 F: arch/arc/plat-axs10x
16279
16280 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16281 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16282 S: Supported
16283 F: Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16284 F: drivers/reset/reset-axs10x.c
16285
16286 SYNOPSYS CREG GPIO DRIVER
16287 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16288 S: Maintained
16289 F: Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16290 F: drivers/gpio/gpio-creg-snps.c
16291
16292 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16293 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16294 S: Maintained
16295 F: drivers/tty/serial/8250/8250_dw.c
16296 F: drivers/tty/serial/8250/8250_dwlib.*
16297 F: drivers/tty/serial/8250/8250_lpss.c
16298
16299 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16300 M: Hoan Tran <hoan@os.amperecomputing.com>
16301 L: linux-gpio@vger.kernel.org
16302 S: Maintained
16303 F: Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
16304 F: drivers/gpio/gpio-dwapb.c
16305
16306 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16307 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16308 S: Maintained
16309 F: Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16310 F: drivers/dma/dw-axi-dmac/
16311
16312 SYNOPSYS DESIGNWARE DMAC DRIVER
16313 M: Viresh Kumar <vireshk@kernel.org>
16314 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16315 S: Maintained
16316 F: Documentation/devicetree/bindings/dma/snps-dma.txt
16317 F: drivers/dma/dw/
16318 F: include/dt-bindings/dma/dw-dmac.h
16319 F: include/linux/dma/dw.h
16320 F: include/linux/platform_data/dma-dw.h
16321
16322 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16323 M: Jose Abreu <Jose.Abreu@synopsys.com>
16324 L: netdev@vger.kernel.org
16325 S: Supported
16326 F: drivers/net/ethernet/synopsys/
16327
16328 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16329 M: Jose Abreu <Jose.Abreu@synopsys.com>
16330 L: netdev@vger.kernel.org
16331 S: Supported
16332 F: drivers/net/phy/mdio-xpcs.c
16333 F: include/linux/mdio-xpcs.h
16334
16335 SYNOPSYS DESIGNWARE I2C DRIVER
16336 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
16337 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16338 R: Mika Westerberg <mika.westerberg@linux.intel.com>
16339 L: linux-i2c@vger.kernel.org
16340 S: Maintained
16341 F: drivers/i2c/busses/i2c-designware-*
16342 F: include/linux/platform_data/i2c-designware.h
16343
16344 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16345 M: Jaehoon Chung <jh80.chung@samsung.com>
16346 L: linux-mmc@vger.kernel.org
16347 S: Maintained
16348 F: drivers/mmc/host/dw_mmc*
16349
16350 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16351 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16352 S: Supported
16353 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16354 F: drivers/reset/reset-hsdk.c
16355 F: include/dt-bindings/reset/snps,hsdk-reset.h
16356
16357 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16358 M: Prabu Thangamuthu <prabu.t@synopsys.com>
16359 M: Manjunath M B <manjumb@synopsys.com>
16360 L: linux-mmc@vger.kernel.org
16361 S: Maintained
16362 F: drivers/mmc/host/sdhci-pci-dwc-mshc.c
16363
16364 SYSTEM CONFIGURATION (SYSCON)
16365 M: Lee Jones <lee.jones@linaro.org>
16366 M: Arnd Bergmann <arnd@arndb.de>
16367 S: Supported
16368 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16369 F: drivers/mfd/syscon.c
16370
16371 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16372 M: Sudeep Holla <sudeep.holla@arm.com>
16373 L: linux-arm-kernel@lists.infradead.org
16374 S: Maintained
16375 F: Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16376 F: drivers/clk/clk-sc[mp]i.c
16377 F: drivers/cpufreq/sc[mp]i-cpufreq.c
16378 F: drivers/firmware/arm_scmi/
16379 F: drivers/firmware/arm_scpi.c
16380 F: drivers/reset/reset-scmi.c
16381 F: include/linux/sc[mp]i_protocol.h
16382 F: include/trace/events/scmi.h
16383
16384 SYSTEM RESET/SHUTDOWN DRIVERS
16385 M: Sebastian Reichel <sre@kernel.org>
16386 L: linux-pm@vger.kernel.org
16387 S: Maintained
16388 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16389 F: Documentation/devicetree/bindings/power/reset/
16390 F: drivers/power/reset/
16391
16392 SYSTEM TRACE MODULE CLASS
16393 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
16394 S: Maintained
16395 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16396 F: Documentation/trace/stm.rst
16397 F: drivers/hwtracing/stm/
16398 F: include/linux/stm.h
16399 F: include/uapi/linux/stm.h
16400
16401 SYSTEM76 ACPI DRIVER
16402 M: Jeremy Soller <jeremy@system76.com>
16403 M: System76 Product Development <productdev@system76.com>
16404 L: platform-driver-x86@vger.kernel.org
16405 S: Maintained
16406 F: drivers/platform/x86/system76_acpi.c
16407
16408 SYSV FILESYSTEM
16409 M: Christoph Hellwig <hch@infradead.org>
16410 S: Maintained
16411 F: Documentation/filesystems/sysv-fs.rst
16412 F: fs/sysv/
16413 F: include/linux/sysv_fs.h
16414
16415 TASKSTATS STATISTICS INTERFACE
16416 M: Balbir Singh <bsingharora@gmail.com>
16417 S: Maintained
16418 F: Documentation/accounting/taskstats*
16419 F: include/linux/taskstats*
16420 F: kernel/taskstats.c
16421
16422 TC subsystem
16423 M: Jamal Hadi Salim <jhs@mojatatu.com>
16424 M: Cong Wang <xiyou.wangcong@gmail.com>
16425 M: Jiri Pirko <jiri@resnulli.us>
16426 L: netdev@vger.kernel.org
16427 S: Maintained
16428 F: include/net/pkt_cls.h
16429 F: include/net/pkt_sched.h
16430 F: include/net/tc_act/
16431 F: include/uapi/linux/pkt_cls.h
16432 F: include/uapi/linux/pkt_sched.h
16433 F: include/uapi/linux/tc_act/
16434 F: include/uapi/linux/tc_ematch/
16435 F: net/sched/
16436
16437 TC90522 MEDIA DRIVER
16438 M: Akihiro Tsukada <tskd08@gmail.com>
16439 L: linux-media@vger.kernel.org
16440 S: Odd Fixes
16441 F: drivers/media/dvb-frontends/tc90522*
16442
16443 TCP LOW PRIORITY MODULE
16444 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16445 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16446 S: Maintained
16447 W: http://tcp-lp-mod.sourceforge.net/
16448 F: net/ipv4/tcp_lp.c
16449
16450 TDA10071 MEDIA DRIVER
16451 M: Antti Palosaari <crope@iki.fi>
16452 L: linux-media@vger.kernel.org
16453 S: Maintained
16454 W: https://linuxtv.org
16455 W: http://palosaari.fi/linux/
16456 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16457 T: git git://linuxtv.org/anttip/media_tree.git
16458 F: drivers/media/dvb-frontends/tda10071*
16459
16460 TDA18212 MEDIA DRIVER
16461 M: Antti Palosaari <crope@iki.fi>
16462 L: linux-media@vger.kernel.org
16463 S: Maintained
16464 W: https://linuxtv.org
16465 W: http://palosaari.fi/linux/
16466 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16467 T: git git://linuxtv.org/anttip/media_tree.git
16468 F: drivers/media/tuners/tda18212*
16469
16470 TDA18218 MEDIA DRIVER
16471 M: Antti Palosaari <crope@iki.fi>
16472 L: linux-media@vger.kernel.org
16473 S: Maintained
16474 W: https://linuxtv.org
16475 W: http://palosaari.fi/linux/
16476 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16477 T: git git://linuxtv.org/anttip/media_tree.git
16478 F: drivers/media/tuners/tda18218*
16479
16480 TDA18250 MEDIA DRIVER
16481 M: Olli Salonen <olli.salonen@iki.fi>
16482 L: linux-media@vger.kernel.org
16483 S: Maintained
16484 W: https://linuxtv.org
16485 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16486 T: git git://linuxtv.org/media_tree.git
16487 F: drivers/media/tuners/tda18250*
16488
16489 TDA18271 MEDIA DRIVER
16490 M: Michael Krufky <mkrufky@linuxtv.org>
16491 L: linux-media@vger.kernel.org
16492 S: Maintained
16493 W: https://linuxtv.org
16494 W: http://github.com/mkrufky
16495 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16496 T: git git://linuxtv.org/mkrufky/tuners.git
16497 F: drivers/media/tuners/tda18271*
16498
16499 TDA1997x MEDIA DRIVER
16500 M: Tim Harvey <tharvey@gateworks.com>
16501 L: linux-media@vger.kernel.org
16502 S: Maintained
16503 W: https://linuxtv.org
16504 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16505 F: drivers/media/i2c/tda1997x.*
16506
16507 TDA827x MEDIA DRIVER
16508 M: Michael Krufky <mkrufky@linuxtv.org>
16509 L: linux-media@vger.kernel.org
16510 S: Maintained
16511 W: https://linuxtv.org
16512 W: http://github.com/mkrufky
16513 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16514 T: git git://linuxtv.org/mkrufky/tuners.git
16515 F: drivers/media/tuners/tda8290.*
16516
16517 TDA8290 MEDIA DRIVER
16518 M: Michael Krufky <mkrufky@linuxtv.org>
16519 L: linux-media@vger.kernel.org
16520 S: Maintained
16521 W: https://linuxtv.org
16522 W: http://github.com/mkrufky
16523 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16524 T: git git://linuxtv.org/mkrufky/tuners.git
16525 F: drivers/media/tuners/tda8290.*
16526
16527 TDA9840 MEDIA DRIVER
16528 M: Hans Verkuil <hverkuil@xs4all.nl>
16529 L: linux-media@vger.kernel.org
16530 S: Maintained
16531 W: https://linuxtv.org
16532 T: git git://linuxtv.org/media_tree.git
16533 F: drivers/media/i2c/tda9840*
16534
16535 TEA5761 TUNER DRIVER
16536 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16537 L: linux-media@vger.kernel.org
16538 S: Odd fixes
16539 W: https://linuxtv.org
16540 T: git git://linuxtv.org/media_tree.git
16541 F: drivers/media/tuners/tea5761.*
16542
16543 TEA5767 TUNER DRIVER
16544 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16545 L: linux-media@vger.kernel.org
16546 S: Maintained
16547 W: https://linuxtv.org
16548 T: git git://linuxtv.org/media_tree.git
16549 F: drivers/media/tuners/tea5767.*
16550
16551 TEA6415C MEDIA DRIVER
16552 M: Hans Verkuil <hverkuil@xs4all.nl>
16553 L: linux-media@vger.kernel.org
16554 S: Maintained
16555 W: https://linuxtv.org
16556 T: git git://linuxtv.org/media_tree.git
16557 F: drivers/media/i2c/tea6415c*
16558
16559 TEA6420 MEDIA DRIVER
16560 M: Hans Verkuil <hverkuil@xs4all.nl>
16561 L: linux-media@vger.kernel.org
16562 S: Maintained
16563 W: https://linuxtv.org
16564 T: git git://linuxtv.org/media_tree.git
16565 F: drivers/media/i2c/tea6420*
16566
16567 TEAM DRIVER
16568 M: Jiri Pirko <jiri@resnulli.us>
16569 L: netdev@vger.kernel.org
16570 S: Supported
16571 F: drivers/net/team/
16572 F: include/linux/if_team.h
16573 F: include/uapi/linux/if_team.h
16574
16575 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16576 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16577 S: Maintained
16578 F: arch/x86/platform/ts5500/
16579
16580 TECHNOTREND USB IR RECEIVER
16581 M: Sean Young <sean@mess.org>
16582 L: linux-media@vger.kernel.org
16583 S: Maintained
16584 F: drivers/media/rc/ttusbir.c
16585
16586 TECHWELL TW9910 VIDEO DECODER
16587 L: linux-media@vger.kernel.org
16588 S: Orphan
16589 F: drivers/media/i2c/tw9910.c
16590 F: include/media/i2c/tw9910.h
16591
16592 TEE SUBSYSTEM
16593 M: Jens Wiklander <jens.wiklander@linaro.org>
16594 L: tee-dev@lists.linaro.org
16595 S: Maintained
16596 F: Documentation/tee.txt
16597 F: drivers/tee/
16598 F: include/linux/tee_drv.h
16599 F: include/uapi/linux/tee.h
16600
16601 TEGRA ARCHITECTURE SUPPORT
16602 M: Thierry Reding <thierry.reding@gmail.com>
16603 M: Jonathan Hunter <jonathanh@nvidia.com>
16604 L: linux-tegra@vger.kernel.org
16605 S: Supported
16606 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
16607 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16608 N: [^a-z]tegra
16609
16610 TEGRA CLOCK DRIVER
16611 M: Peter De Schrijver <pdeschrijver@nvidia.com>
16612 M: Prashant Gaikwad <pgaikwad@nvidia.com>
16613 S: Supported
16614 F: drivers/clk/tegra/
16615
16616 TEGRA DMA DRIVERS
16617 M: Laxman Dewangan <ldewangan@nvidia.com>
16618 M: Jon Hunter <jonathanh@nvidia.com>
16619 S: Supported
16620 F: drivers/dma/tegra*
16621
16622 TEGRA I2C DRIVER
16623 M: Laxman Dewangan <ldewangan@nvidia.com>
16624 R: Dmitry Osipenko <digetx@gmail.com>
16625 S: Supported
16626 F: drivers/i2c/busses/i2c-tegra.c
16627
16628 TEGRA IOMMU DRIVERS
16629 M: Thierry Reding <thierry.reding@gmail.com>
16630 L: linux-tegra@vger.kernel.org
16631 S: Supported
16632 F: drivers/iommu/tegra*
16633
16634 TEGRA KBC DRIVER
16635 M: Laxman Dewangan <ldewangan@nvidia.com>
16636 S: Supported
16637 F: drivers/input/keyboard/tegra-kbc.c
16638
16639 TEGRA NAND DRIVER
16640 M: Stefan Agner <stefan@agner.ch>
16641 M: Lucas Stach <dev@lynxeye.de>
16642 S: Maintained
16643 F: Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16644 F: drivers/mtd/nand/raw/tegra_nand.c
16645
16646 TEGRA PWM DRIVER
16647 M: Thierry Reding <thierry.reding@gmail.com>
16648 S: Supported
16649 F: drivers/pwm/pwm-tegra.c
16650
16651 TEGRA SERIAL DRIVER
16652 M: Laxman Dewangan <ldewangan@nvidia.com>
16653 S: Supported
16654 F: drivers/tty/serial/serial-tegra.c
16655
16656 TEGRA SPI DRIVER
16657 M: Laxman Dewangan <ldewangan@nvidia.com>
16658 S: Supported
16659 F: drivers/spi/spi-tegra*
16660
16661 TEGRA XUSB PADCTL DRIVER
16662 M: JC Kuo <jckuo@nvidia.com>
16663 S: Supported
16664 F: drivers/phy/tegra/xusb*
16665
16666 TEHUTI ETHERNET DRIVER
16667 M: Andy Gospodarek <andy@greyhouse.net>
16668 L: netdev@vger.kernel.org
16669 S: Supported
16670 F: drivers/net/ethernet/tehuti/*
16671
16672 TELECOM CLOCK DRIVER FOR MCPL0010
16673 M: Mark Gross <mark.gross@intel.com>
16674 S: Supported
16675 F: drivers/char/tlclk.c
16676
16677 TEMPO SEMICONDUCTOR DRIVERS
16678 M: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16679 S: Maintained
16680 F: Documentation/devicetree/bindings/sound/tscs*.txt
16681 F: sound/soc/codecs/tscs*.c
16682 F: sound/soc/codecs/tscs*.h
16683
16684 TENSILICA XTENSA PORT (xtensa)
16685 M: Chris Zankel <chris@zankel.net>
16686 M: Max Filippov <jcmvbkbc@gmail.com>
16687 L: linux-xtensa@linux-xtensa.org
16688 S: Maintained
16689 T: git git://github.com/czankel/xtensa-linux.git
16690 F: arch/xtensa/
16691 F: drivers/irqchip/irq-xtensa-*
16692
16693 TEXAS INSTRUMENTS ASoC DRIVERS
16694 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
16695 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16696 S: Maintained
16697 F: sound/soc/ti/
16698
16699 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16700 M: Ricardo Ribalda <ribalda@kernel.org>
16701 L: linux-iio@vger.kernel.org
16702 S: Supported
16703 F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16704 F: drivers/iio/dac/ti-dac7612.c
16705
16706 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16707 M: Nishanth Menon <nm@ti.com>
16708 M: Tero Kristo <t-kristo@ti.com>
16709 M: Santosh Shilimkar <ssantosh@kernel.org>
16710 L: linux-arm-kernel@lists.infradead.org
16711 S: Maintained
16712 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16713 F: Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16714 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16715 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16716 F: Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16717 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16718 F: drivers/clk/keystone/sci-clk.c
16719 F: drivers/firmware/ti_sci*
16720 F: drivers/irqchip/irq-ti-sci-inta.c
16721 F: drivers/irqchip/irq-ti-sci-intr.c
16722 F: drivers/reset/reset-ti-sci.c
16723 F: drivers/soc/ti/ti_sci_inta_msi.c
16724 F: drivers/soc/ti/ti_sci_pm_domains.c
16725 F: include/dt-bindings/soc/ti,sci_pm_domain.h
16726 F: include/linux/soc/ti/ti_sci_inta_msi.h
16727 F: include/linux/soc/ti/ti_sci_protocol.h
16728
16729 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16730 M: Hans Verkuil <hverkuil@xs4all.nl>
16731 L: linux-media@vger.kernel.org
16732 S: Maintained
16733 W: https://linuxtv.org
16734 T: git git://linuxtv.org/media_tree.git
16735 F: drivers/media/radio/radio-raremono.c
16736
16737 THERMAL
16738 M: Zhang Rui <rui.zhang@intel.com>
16739 M: Daniel Lezcano <daniel.lezcano@linaro.org>
16740 R: Amit Kucheria <amit.kucheria@verdurent.com>
16741 L: linux-pm@vger.kernel.org
16742 S: Supported
16743 Q: https://patchwork.kernel.org/project/linux-pm/list/
16744 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16745 F: Documentation/devicetree/bindings/thermal/
16746 F: drivers/thermal/
16747 F: include/linux/cpu_cooling.h
16748 F: include/linux/thermal.h
16749 F: include/uapi/linux/thermal.h
16750
16751 THERMAL DRIVER FOR AMLOGIC SOCS
16752 M: Guillaume La Roque <glaroque@baylibre.com>
16753 L: linux-pm@vger.kernel.org
16754 L: linux-amlogic@lists.infradead.org
16755 S: Supported
16756 W: http://linux-meson.com/
16757 F: Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16758 F: drivers/thermal/amlogic_thermal.c
16759
16760 THERMAL/CPU_COOLING
16761 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
16762 M: Daniel Lezcano <daniel.lezcano@linaro.org>
16763 M: Viresh Kumar <viresh.kumar@linaro.org>
16764 M: Javi Merino <javi.merino@kernel.org>
16765 L: linux-pm@vger.kernel.org
16766 S: Supported
16767 F: Documentation/driver-api/thermal/cpu-cooling-api.rst
16768 F: Documentation/driver-api/thermal/cpu-idle-cooling.rst
16769 F: drivers/thermal/cpufreq_cooling.c
16770 F: drivers/thermal/cpuidle_cooling.c
16771 F: include/linux/cpu_cooling.h
16772
16773 THINKPAD ACPI EXTRAS DRIVER
16774 M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16775 L: ibm-acpi-devel@lists.sourceforge.net
16776 L: platform-driver-x86@vger.kernel.org
16777 S: Maintained
16778 W: http://ibm-acpi.sourceforge.net
16779 W: http://thinkwiki.org/wiki/Ibm-acpi
16780 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16781 F: drivers/platform/x86/thinkpad_acpi.c
16782
16783 THUNDERBOLT DRIVER
16784 M: Andreas Noever <andreas.noever@gmail.com>
16785 M: Michael Jamet <michael.jamet@intel.com>
16786 M: Mika Westerberg <mika.westerberg@linux.intel.com>
16787 M: Yehezkel Bernat <YehezkelShB@gmail.com>
16788 L: linux-usb@vger.kernel.org
16789 S: Maintained
16790 T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16791 F: Documentation/admin-guide/thunderbolt.rst
16792 F: drivers/thunderbolt/
16793 F: include/linux/thunderbolt.h
16794
16795 THUNDERBOLT NETWORK DRIVER
16796 M: Michael Jamet <michael.jamet@intel.com>
16797 M: Mika Westerberg <mika.westerberg@linux.intel.com>
16798 M: Yehezkel Bernat <YehezkelShB@gmail.com>
16799 L: netdev@vger.kernel.org
16800 S: Maintained
16801 F: drivers/net/thunderbolt.c
16802
16803 THUNDERX GPIO DRIVER
16804 M: Robert Richter <rrichter@marvell.com>
16805 S: Maintained
16806 F: drivers/gpio/gpio-thunderx.c
16807
16808 TI AM437X VPFE DRIVER
16809 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16810 L: linux-media@vger.kernel.org
16811 S: Maintained
16812 W: https://linuxtv.org
16813 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16814 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16815 F: drivers/media/platform/am437x/
16816
16817 TI BANDGAP AND THERMAL DRIVER
16818 M: Eduardo Valentin <edubezval@gmail.com>
16819 M: Keerthy <j-keerthy@ti.com>
16820 L: linux-pm@vger.kernel.org
16821 L: linux-omap@vger.kernel.org
16822 S: Maintained
16823 F: drivers/thermal/ti-soc-thermal/
16824
16825 TI BQ27XXX POWER SUPPLY DRIVER
16826 R: Andrew F. Davis <afd@ti.com>
16827 F: drivers/power/supply/bq27xxx_battery.c
16828 F: drivers/power/supply/bq27xxx_battery_i2c.c
16829 F: include/linux/power/bq27xxx_battery.h
16830
16831 TI CDCE706 CLOCK DRIVER
16832 M: Max Filippov <jcmvbkbc@gmail.com>
16833 S: Maintained
16834 F: drivers/clk/clk-cdce706.c
16835
16836 TI CLOCK DRIVER
16837 M: Tero Kristo <t-kristo@ti.com>
16838 L: linux-omap@vger.kernel.org
16839 S: Maintained
16840 F: drivers/clk/ti/
16841 F: include/linux/clk/ti.h
16842
16843 TI DAVINCI MACHINE SUPPORT
16844 M: Sekhar Nori <nsekhar@ti.com>
16845 R: Bartosz Golaszewski <bgolaszewski@baylibre.com>
16846 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16847 S: Supported
16848 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16849 F: Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16850 F: arch/arm/boot/dts/da850*
16851 F: arch/arm/mach-davinci/
16852 F: drivers/i2c/busses/i2c-davinci.c
16853
16854 TI DAVINCI SERIES CLOCK DRIVER
16855 M: David Lechner <david@lechnology.com>
16856 R: Sekhar Nori <nsekhar@ti.com>
16857 S: Maintained
16858 F: Documentation/devicetree/bindings/clock/ti/davinci/
16859 F: drivers/clk/davinci/
16860
16861 TI DAVINCI SERIES GPIO DRIVER
16862 M: Keerthy <j-keerthy@ti.com>
16863 L: linux-gpio@vger.kernel.org
16864 S: Maintained
16865 F: Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16866 F: drivers/gpio/gpio-davinci.c
16867
16868 TI DAVINCI SERIES MEDIA DRIVER
16869 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16870 L: linux-media@vger.kernel.org
16871 S: Maintained
16872 W: https://linuxtv.org
16873 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16874 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16875 F: drivers/media/platform/davinci/
16876 F: include/media/davinci/
16877
16878 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16879 R: David Lechner <david@lechnology.com>
16880 L: linux-iio@vger.kernel.org
16881 F: Documentation/devicetree/bindings/counter/ti-eqep.yaml
16882 F: drivers/counter/ti-eqep.c
16883
16884 TI ETHERNET SWITCH DRIVER (CPSW)
16885 R: Grygorii Strashko <grygorii.strashko@ti.com>
16886 L: linux-omap@vger.kernel.org
16887 L: netdev@vger.kernel.org
16888 S: Maintained
16889 F: drivers/net/ethernet/ti/cpsw*
16890 F: drivers/net/ethernet/ti/davinci*
16891
16892 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16893 M: Alex Dubov <oakad@yahoo.com>
16894 S: Maintained
16895 W: http://tifmxx.berlios.de/
16896 F: drivers/memstick/host/tifm_ms.c
16897 F: drivers/misc/tifm*
16898 F: drivers/mmc/host/tifm_sd.c
16899 F: include/linux/tifm.h
16900
16901 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16902 M: Santosh Shilimkar <ssantosh@kernel.org>
16903 L: linux-kernel@vger.kernel.org
16904 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16905 S: Maintained
16906 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16907 F: drivers/soc/ti/*
16908
16909 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16910 M: M R Swami Reddy <mr.swami.reddy@ti.com>
16911 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16912 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16913 S: Maintained
16914 F: sound/soc/codecs/isabelle*
16915 F: sound/soc/codecs/lm49453*
16916
16917 TI LP855x BACKLIGHT DRIVER
16918 M: Milo Kim <milo.kim@ti.com>
16919 S: Maintained
16920 F: Documentation/driver-api/backlight/lp855x-driver.rst
16921 F: drivers/video/backlight/lp855x_bl.c
16922 F: include/linux/platform_data/lp855x.h
16923
16924 TI LP8727 CHARGER DRIVER
16925 M: Milo Kim <milo.kim@ti.com>
16926 S: Maintained
16927 F: drivers/power/supply/lp8727_charger.c
16928 F: include/linux/platform_data/lp8727.h
16929
16930 TI LP8788 MFD DRIVER
16931 M: Milo Kim <milo.kim@ti.com>
16932 S: Maintained
16933 F: drivers/iio/adc/lp8788_adc.c
16934 F: drivers/leds/leds-lp8788.c
16935 F: drivers/mfd/lp8788*.c
16936 F: drivers/power/supply/lp8788-charger.c
16937 F: drivers/regulator/lp8788-*.c
16938 F: include/linux/mfd/lp8788*.h
16939
16940 TI NETCP ETHERNET DRIVER
16941 M: Wingman Kwok <w-kwok2@ti.com>
16942 M: Murali Karicheri <m-karicheri2@ti.com>
16943 L: netdev@vger.kernel.org
16944 S: Maintained
16945 F: drivers/net/ethernet/ti/netcp*
16946
16947 TI PCM3060 ASoC CODEC DRIVER
16948 M: Kirill Marinushkin <kmarinushkin@birdec.com>
16949 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16950 S: Maintained
16951 F: Documentation/devicetree/bindings/sound/pcm3060.txt
16952 F: sound/soc/codecs/pcm3060*
16953
16954 TI TAS571X FAMILY ASoC CODEC DRIVER
16955 M: Kevin Cernekee <cernekee@chromium.org>
16956 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16957 S: Odd Fixes
16958 F: sound/soc/codecs/tas571x*
16959
16960 TI TCAN4X5X DEVICE DRIVER
16961 M: Dan Murphy <dmurphy@ti.com>
16962 L: linux-can@vger.kernel.org
16963 S: Maintained
16964 F: Documentation/devicetree/bindings/net/can/tcan4x5x.txt
16965 F: drivers/net/can/m_can/tcan4x5x.c
16966
16967 TI TRF7970A NFC DRIVER
16968 M: Mark Greer <mgreer@animalcreek.com>
16969 L: linux-wireless@vger.kernel.org
16970 L: linux-nfc@lists.01.org (moderated for non-subscribers)
16971 S: Supported
16972 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16973 F: drivers/nfc/trf7970a.c
16974
16975 TI TWL4030 SERIES SOC CODEC DRIVER
16976 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
16977 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16978 S: Maintained
16979 F: sound/soc/codecs/twl4030*
16980
16981 TI VPE/CAL DRIVERS
16982 M: Benoit Parrot <bparrot@ti.com>
16983 L: linux-media@vger.kernel.org
16984 S: Maintained
16985 W: http://linuxtv.org/
16986 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16987 F: Documentation/devicetree/bindings/media/ti,cal.yaml
16988 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
16989 F: drivers/media/platform/ti-vpe/
16990
16991 TI WILINK WIRELESS DRIVERS
16992 L: linux-wireless@vger.kernel.org
16993 S: Orphan
16994 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
16995 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
16996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16997 F: drivers/net/wireless/ti/
16998 F: include/linux/wl12xx.h
16999
17000 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17001 M: John Stultz <john.stultz@linaro.org>
17002 M: Thomas Gleixner <tglx@linutronix.de>
17003 R: Stephen Boyd <sboyd@kernel.org>
17004 L: linux-kernel@vger.kernel.org
17005 S: Supported
17006 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17007 F: include/linux/clocksource.h
17008 F: include/linux/time.h
17009 F: include/linux/timex.h
17010 F: include/uapi/linux/time.h
17011 F: include/uapi/linux/timex.h
17012 F: kernel/time/alarmtimer.c
17013 F: kernel/time/clocksource.c
17014 F: kernel/time/ntp.c
17015 F: kernel/time/time*.c
17016 F: tools/testing/selftests/timers/
17017
17018 TIPC NETWORK LAYER
17019 M: Jon Maloy <jmaloy@redhat.com>
17020 M: Ying Xue <ying.xue@windriver.com>
17021 L: netdev@vger.kernel.org (core kernel code)
17022 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17023 S: Maintained
17024 W: http://tipc.sourceforge.net/
17025 F: include/uapi/linux/tipc*.h
17026 F: net/tipc/
17027
17028 TLAN NETWORK DRIVER
17029 M: Samuel Chessman <chessman@tux.org>
17030 L: tlan-devel@lists.sourceforge.net (subscribers-only)
17031 S: Maintained
17032 W: http://sourceforge.net/projects/tlan/
17033 F: Documentation/networking/device_drivers/ti/tlan.txt
17034 F: drivers/net/ethernet/ti/tlan.*
17035
17036 TM6000 VIDEO4LINUX DRIVER
17037 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17038 L: linux-media@vger.kernel.org
17039 S: Odd fixes
17040 W: https://linuxtv.org
17041 T: git git://linuxtv.org/media_tree.git
17042 F: Documentation/media/v4l-drivers/tm6000*
17043 F: drivers/media/usb/tm6000/
17044
17045 TMIO/SDHI MMC DRIVER
17046 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
17047 L: linux-mmc@vger.kernel.org
17048 S: Supported
17049 F: drivers/mmc/host/renesas_sdhi*
17050 F: drivers/mmc/host/tmio_mmc*
17051 F: include/linux/mfd/tmio.h
17052
17053 TMP401 HARDWARE MONITOR DRIVER
17054 M: Guenter Roeck <linux@roeck-us.net>
17055 L: linux-hwmon@vger.kernel.org
17056 S: Maintained
17057 F: Documentation/hwmon/tmp401.rst
17058 F: drivers/hwmon/tmp401.c
17059
17060 TMP513 HARDWARE MONITOR DRIVER
17061 M: Eric Tremblay <etremblay@distech-controls.com>
17062 L: linux-hwmon@vger.kernel.org
17063 S: Maintained
17064 F: Documentation/hwmon/tmp513.rst
17065 F: drivers/hwmon/tmp513.c
17066
17067 TMPFS (SHMEM FILESYSTEM)
17068 M: Hugh Dickins <hughd@google.com>
17069 L: linux-mm@kvack.org
17070 S: Maintained
17071 F: include/linux/shmem_fs.h
17072 F: mm/shmem.c
17073
17074 TOMOYO SECURITY MODULE
17075 M: Kentaro Takeda <takedakn@nttdata.co.jp>
17076 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17077 L: tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17078 L: tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17079 L: tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17080 L: tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17081 S: Maintained
17082 W: https://tomoyo.osdn.jp/
17083 F: security/tomoyo/
17084
17085 TOPSTAR LAPTOP EXTRAS DRIVER
17086 M: Herton Ronaldo Krzesinski <herton@canonical.com>
17087 L: platform-driver-x86@vger.kernel.org
17088 S: Maintained
17089 F: drivers/platform/x86/topstar-laptop.c
17090
17091 TORTURE-TEST MODULES
17092 M: Davidlohr Bueso <dave@stgolabs.net>
17093 M: "Paul E. McKenney" <paulmck@kernel.org>
17094 M: Josh Triplett <josh@joshtriplett.org>
17095 L: linux-kernel@vger.kernel.org
17096 S: Supported
17097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17098 F: Documentation/RCU/torture.txt
17099 F: kernel/locking/locktorture.c
17100 F: kernel/rcu/rcuperf.c
17101 F: kernel/rcu/rcutorture.c
17102 F: kernel/torture.c
17103
17104 TOSHIBA ACPI EXTRAS DRIVER
17105 M: Azael Avalos <coproscefalo@gmail.com>
17106 L: platform-driver-x86@vger.kernel.org
17107 S: Maintained
17108 F: drivers/platform/x86/toshiba_acpi.c
17109
17110 TOSHIBA BLUETOOTH DRIVER
17111 M: Azael Avalos <coproscefalo@gmail.com>
17112 L: platform-driver-x86@vger.kernel.org
17113 S: Maintained
17114 F: drivers/platform/x86/toshiba_bluetooth.c
17115
17116 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17117 M: Azael Avalos <coproscefalo@gmail.com>
17118 L: platform-driver-x86@vger.kernel.org
17119 S: Maintained
17120 F: drivers/platform/x86/toshiba_haps.c
17121
17122 TOSHIBA SMM DRIVER
17123 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
17124 S: Maintained
17125 W: http://www.buzzard.org.uk/toshiba/
17126 F: drivers/char/toshiba.c
17127 F: include/linux/toshiba.h
17128 F: include/uapi/linux/toshiba.h
17129
17130 TOSHIBA TC358743 DRIVER
17131 M: Mats Randgaard <matrandg@cisco.com>
17132 L: linux-media@vger.kernel.org
17133 S: Maintained
17134 F: drivers/media/i2c/tc358743*
17135 F: include/media/i2c/tc358743.h
17136
17137 TOSHIBA WMI HOTKEYS DRIVER
17138 M: Azael Avalos <coproscefalo@gmail.com>
17139 L: platform-driver-x86@vger.kernel.org
17140 S: Maintained
17141 F: drivers/platform/x86/toshiba-wmi.c
17142
17143 TPM DEVICE DRIVER
17144 M: Peter Huewe <peterhuewe@gmx.de>
17145 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17146 R: Jason Gunthorpe <jgg@ziepe.ca>
17147 L: linux-integrity@vger.kernel.org
17148 S: Maintained
17149 W: https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17150 Q: https://patchwork.kernel.org/project/linux-integrity/list/
17151 T: git git://git.infradead.org/users/jjs/linux-tpmdd.git
17152 F: drivers/char/tpm/
17153
17154 TRACING
17155 M: Steven Rostedt <rostedt@goodmis.org>
17156 M: Ingo Molnar <mingo@redhat.com>
17157 S: Maintained
17158 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17159 F: Documentation/trace/ftrace.rst
17160 F: arch/*/*/*/ftrace.h
17161 F: arch/*/kernel/ftrace.c
17162 F: include/*/ftrace.h
17163 F: include/linux/trace*.h
17164 F: include/trace/
17165 F: kernel/trace/
17166 F: tools/testing/selftests/ftrace/
17167
17168 TRACING MMIO ACCESSES (MMIOTRACE)
17169 M: Steven Rostedt <rostedt@goodmis.org>
17170 M: Ingo Molnar <mingo@kernel.org>
17171 R: Karol Herbst <karolherbst@gmail.com>
17172 R: Pekka Paalanen <ppaalanen@gmail.com>
17173 L: linux-kernel@vger.kernel.org
17174 L: nouveau@lists.freedesktop.org
17175 S: Maintained
17176 F: arch/x86/mm/kmmio.c
17177 F: arch/x86/mm/mmio-mod.c
17178 F: arch/x86/mm/testmmiotrace.c
17179 F: include/linux/mmiotrace.h
17180 F: kernel/trace/trace_mmiotrace.c
17181
17182 TRIVIAL PATCHES
17183 M: Jiri Kosina <trivial@kernel.org>
17184 S: Maintained
17185 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17186 K: ^Subject:.*(?i)trivial
17187
17188 TTY LAYER
17189 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17190 M: Jiri Slaby <jslaby@suse.com>
17191 S: Supported
17192 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17193 F: Documentation/driver-api/serial/
17194 F: drivers/tty/
17195 F: drivers/tty/serial/serial_core.c
17196 F: include/linux/serial.h
17197 F: include/linux/serial_core.h
17198 F: include/linux/tty.h
17199 F: include/uapi/linux/serial.h
17200 F: include/uapi/linux/serial_core.h
17201 F: include/uapi/linux/tty.h
17202
17203 TUA9001 MEDIA DRIVER
17204 M: Antti Palosaari <crope@iki.fi>
17205 L: linux-media@vger.kernel.org
17206 S: Maintained
17207 W: https://linuxtv.org
17208 W: http://palosaari.fi/linux/
17209 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17210 T: git git://linuxtv.org/anttip/media_tree.git
17211 F: drivers/media/tuners/tua9001*
17212
17213 TULIP NETWORK DRIVERS
17214 L: netdev@vger.kernel.org
17215 L: linux-parisc@vger.kernel.org
17216 S: Orphan
17217 F: drivers/net/ethernet/dec/tulip/
17218
17219 TUN/TAP driver
17220 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
17221 S: Maintained
17222 W: http://vtun.sourceforge.net/tun
17223 F: Documentation/networking/tuntap.txt
17224 F: arch/um/os-Linux/drivers/
17225
17226 TURBOCHANNEL SUBSYSTEM
17227 M: "Maciej W. Rozycki" <macro@linux-mips.org>
17228 M: Ralf Baechle <ralf@linux-mips.org>
17229 L: linux-mips@vger.kernel.org
17230 S: Maintained
17231 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
17232 F: drivers/tc/
17233 F: include/linux/tc.h
17234
17235 TURBOSTAT UTILITY
17236 M: "Len Brown" <lenb@kernel.org>
17237 L: linux-pm@vger.kernel.org
17238 S: Supported
17239 Q: https://patchwork.kernel.org/project/linux-pm/list/
17240 B: https://bugzilla.kernel.org
17241 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17242 F: tools/power/x86/turbostat/
17243
17244 TW5864 VIDEO4LINUX DRIVER
17245 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17246 M: Anton Sviridenko <anton@corp.bluecherry.net>
17247 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17248 M: Andrey Utkin <andrey_utkin@fastmail.com>
17249 L: linux-media@vger.kernel.org
17250 S: Supported
17251 F: drivers/media/pci/tw5864/
17252
17253 TW68 VIDEO4LINUX DRIVER
17254 M: Hans Verkuil <hverkuil@xs4all.nl>
17255 L: linux-media@vger.kernel.org
17256 S: Odd Fixes
17257 W: https://linuxtv.org
17258 T: git git://linuxtv.org/media_tree.git
17259 F: drivers/media/pci/tw68/
17260
17261 TW686X VIDEO4LINUX DRIVER
17262 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17263 L: linux-media@vger.kernel.org
17264 S: Maintained
17265 W: http://linuxtv.org
17266 T: git git://linuxtv.org/media_tree.git
17267 F: drivers/media/pci/tw686x/
17268
17269 UACCE ACCELERATOR FRAMEWORK
17270 M: Zhangfei Gao <zhangfei.gao@linaro.org>
17271 M: Zhou Wang <wangzhou1@hisilicon.com>
17272 L: linux-accelerators@lists.ozlabs.org
17273 L: linux-kernel@vger.kernel.org
17274 S: Maintained
17275 F: Documentation/ABI/testing/sysfs-driver-uacce
17276 F: Documentation/misc-devices/uacce.rst
17277 F: drivers/misc/uacce/
17278 F: include/linux/uacce.h
17279 F: include/uapi/misc/uacce/
17280
17281 UBI FILE SYSTEM (UBIFS)
17282 M: Richard Weinberger <richard@nod.at>
17283 L: linux-mtd@lists.infradead.org
17284 S: Supported
17285 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
17286 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17287 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17288 F: Documentation/filesystems/ubifs.rst
17289 F: fs/ubifs/
17290
17291 UCLINUX (M68KNOMMU AND COLDFIRE)
17292 M: Greg Ungerer <gerg@linux-m68k.org>
17293 L: linux-m68k@lists.linux-m68k.org
17294 L: uclinux-dev@uclinux.org (subscribers-only)
17295 S: Maintained
17296 W: http://www.linux-m68k.org/
17297 W: http://www.uclinux.org/
17298 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17299 F: arch/m68k/*/*_no.*
17300 F: arch/m68k/68*/
17301 F: arch/m68k/coldfire/
17302 F: arch/m68k/include/asm/*_no.*
17303
17304 UDF FILESYSTEM
17305 M: Jan Kara <jack@suse.com>
17306 S: Maintained
17307 F: Documentation/filesystems/udf.rst
17308 F: fs/udf/
17309
17310 UDRAW TABLET
17311 M: Bastien Nocera <hadess@hadess.net>
17312 L: linux-input@vger.kernel.org
17313 S: Maintained
17314 F: drivers/hid/hid-udraw-ps3.c
17315
17316 UFS FILESYSTEM
17317 M: Evgeniy Dushistov <dushistov@mail.ru>
17318 S: Maintained
17319 F: Documentation/admin-guide/ufs.rst
17320 F: fs/ufs/
17321
17322 UHID USERSPACE HID IO DRIVER
17323 M: David Herrmann <dh.herrmann@googlemail.com>
17324 L: linux-input@vger.kernel.org
17325 S: Maintained
17326 F: drivers/hid/uhid.c
17327 F: include/uapi/linux/uhid.h
17328
17329 ULPI BUS
17330 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17331 L: linux-usb@vger.kernel.org
17332 S: Maintained
17333 F: drivers/usb/common/ulpi.c
17334 F: include/linux/ulpi/
17335
17336 UNICODE SUBSYSTEM
17337 M: Gabriel Krisman Bertazi <krisman@collabora.com>
17338 L: linux-fsdevel@vger.kernel.org
17339 S: Supported
17340 F: fs/unicode/
17341
17342 UNICORE32 ARCHITECTURE
17343 M: Guan Xuetao <gxt@pku.edu.cn>
17344 S: Maintained
17345 W: http://mprc.pku.edu.cn/~guanxuetao/linux
17346 T: git git://github.com/gxt/linux.git
17347 F: arch/unicore32/
17348
17349 UNIFDEF
17350 M: Tony Finch <dot@dotat.at>
17351 S: Maintained
17352 W: http://dotat.at/prog/unifdef
17353 F: scripts/unifdef.c
17354
17355 UNIFORM CDROM DRIVER
17356 M: Jens Axboe <axboe@kernel.dk>
17357 S: Maintained
17358 W: http://www.kernel.dk
17359 F: Documentation/cdrom/
17360 F: drivers/cdrom/cdrom.c
17361 F: include/linux/cdrom.h
17362 F: include/uapi/linux/cdrom.h
17363
17364 UNISYS S-PAR DRIVERS
17365 M: David Kershner <david.kershner@unisys.com>
17366 L: sparmaintainer@unisys.com (Unisys internal)
17367 S: Supported
17368 F: drivers/staging/unisys/
17369 F: drivers/visorbus/
17370 F: include/linux/visorbus.h
17371
17372 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17373 R: Alim Akhtar <alim.akhtar@samsung.com>
17374 R: Avri Altman <avri.altman@wdc.com>
17375 L: linux-scsi@vger.kernel.org
17376 S: Supported
17377 F: Documentation/scsi/ufs.rst
17378 F: drivers/scsi/ufs/
17379
17380 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17381 M: Pedro Sousa <pedrom.sousa@synopsys.com>
17382 L: linux-scsi@vger.kernel.org
17383 S: Supported
17384 F: drivers/scsi/ufs/*dwc*
17385
17386 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17387 M: Stanley Chu <stanley.chu@mediatek.com>
17388 L: linux-scsi@vger.kernel.org
17389 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17390 S: Maintained
17391 F: drivers/scsi/ufs/ufs-mediatek*
17392
17393 UNSORTED BLOCK IMAGES (UBI)
17394 M: Richard Weinberger <richard@nod.at>
17395 L: linux-mtd@lists.infradead.org
17396 S: Supported
17397 W: http://www.linux-mtd.infradead.org/
17398 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17399 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17400 F: drivers/mtd/ubi/
17401 F: include/linux/mtd/ubi.h
17402 F: include/uapi/mtd/ubi-user.h
17403
17404 USB "USBNET" DRIVER FRAMEWORK
17405 M: Oliver Neukum <oneukum@suse.com>
17406 L: netdev@vger.kernel.org
17407 S: Maintained
17408 W: http://www.linux-usb.org/usbnet
17409 F: drivers/net/usb/usbnet.c
17410 F: include/linux/usb/usbnet.h
17411
17412 USB ACM DRIVER
17413 M: Oliver Neukum <oneukum@suse.com>
17414 L: linux-usb@vger.kernel.org
17415 S: Maintained
17416 F: Documentation/usb/acm.rst
17417 F: drivers/usb/class/cdc-acm.*
17418
17419 USB APPLE MFI FASTCHARGE DRIVER
17420 M: Bastien Nocera <hadess@hadess.net>
17421 L: linux-usb@vger.kernel.org
17422 S: Maintained
17423 F: drivers/usb/misc/apple-mfi-fastcharge.c
17424
17425 USB AR5523 WIRELESS DRIVER
17426 M: Pontus Fuchs <pontus.fuchs@gmail.com>
17427 L: linux-wireless@vger.kernel.org
17428 S: Maintained
17429 F: drivers/net/wireless/ath/ar5523/
17430
17431 USB ATTACHED SCSI
17432 M: Oliver Neukum <oneukum@suse.com>
17433 L: linux-usb@vger.kernel.org
17434 L: linux-scsi@vger.kernel.org
17435 S: Maintained
17436 F: drivers/usb/storage/uas.c
17437
17438 USB CDC ETHERNET DRIVER
17439 M: Oliver Neukum <oliver@neukum.org>
17440 L: linux-usb@vger.kernel.org
17441 S: Maintained
17442 F: drivers/net/usb/cdc_*.c
17443 F: include/uapi/linux/usb/cdc.h
17444
17445 USB CHAOSKEY DRIVER
17446 M: Keith Packard <keithp@keithp.com>
17447 L: linux-usb@vger.kernel.org
17448 S: Maintained
17449 F: drivers/usb/misc/chaoskey.c
17450
17451 USB CYPRESS C67X00 DRIVER
17452 M: Peter Korsgaard <jacmet@sunsite.dk>
17453 L: linux-usb@vger.kernel.org
17454 S: Maintained
17455 F: drivers/usb/c67x00/
17456
17457 USB DAVICOM DM9601 DRIVER
17458 M: Peter Korsgaard <jacmet@sunsite.dk>
17459 L: netdev@vger.kernel.org
17460 S: Maintained
17461 W: http://www.linux-usb.org/usbnet
17462 F: drivers/net/usb/dm9601.c
17463
17464 USB EHCI DRIVER
17465 M: Alan Stern <stern@rowland.harvard.edu>
17466 L: linux-usb@vger.kernel.org
17467 S: Maintained
17468 F: Documentation/usb/ehci.rst
17469 F: drivers/usb/host/ehci*
17470
17471 USB GADGET/PERIPHERAL SUBSYSTEM
17472 M: Felipe Balbi <balbi@kernel.org>
17473 L: linux-usb@vger.kernel.org
17474 S: Maintained
17475 W: http://www.linux-usb.org/gadget
17476 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17477 F: drivers/usb/gadget/
17478 F: include/linux/usb/gadget*
17479
17480 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17481 M: Jiri Kosina <jikos@kernel.org>
17482 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
17483 L: linux-usb@vger.kernel.org
17484 S: Maintained
17485 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17486 F: Documentation/hid/hiddev.rst
17487 F: drivers/hid/usbhid/
17488
17489 USB INTEL XHCI ROLE MUX DRIVER
17490 M: Hans de Goede <hdegoede@redhat.com>
17491 L: linux-usb@vger.kernel.org
17492 S: Maintained
17493 F: drivers/usb/roles/intel-xhci-usb-role-switch.c
17494
17495 USB IP DRIVER FOR HISILICON KIRIN
17496 M: Yu Chen <chenyu56@huawei.com>
17497 M: Binghui Wang <wangbinghui@hisilicon.com>
17498 L: linux-usb@vger.kernel.org
17499 S: Maintained
17500 F: Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17501 F: drivers/phy/hisilicon/phy-hi3660-usb3.c
17502
17503 USB ISP116X DRIVER
17504 M: Olav Kongas <ok@artecdesign.ee>
17505 L: linux-usb@vger.kernel.org
17506 S: Maintained
17507 F: drivers/usb/host/isp116x*
17508 F: include/linux/usb/isp116x.h
17509
17510 USB LAN78XX ETHERNET DRIVER
17511 M: Woojung Huh <woojung.huh@microchip.com>
17512 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17513 L: netdev@vger.kernel.org
17514 S: Maintained
17515 F: Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17516 F: drivers/net/usb/lan78xx.*
17517 F: include/dt-bindings/net/microchip-lan78xx.h
17518
17519 USB MASS STORAGE DRIVER
17520 M: Alan Stern <stern@rowland.harvard.edu>
17521 L: linux-usb@vger.kernel.org
17522 L: usb-storage@lists.one-eyed-alien.net
17523 S: Maintained
17524 F: drivers/usb/storage/
17525
17526 USB MIDI DRIVER
17527 M: Clemens Ladisch <clemens@ladisch.de>
17528 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17529 S: Maintained
17530 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17531 F: sound/usb/midi.*
17532
17533 USB NETWORKING DRIVERS
17534 L: linux-usb@vger.kernel.org
17535 S: Odd Fixes
17536 F: drivers/net/usb/
17537
17538 USB OHCI DRIVER
17539 M: Alan Stern <stern@rowland.harvard.edu>
17540 L: linux-usb@vger.kernel.org
17541 S: Maintained
17542 F: Documentation/usb/ohci.rst
17543 F: drivers/usb/host/ohci*
17544
17545 USB OTG FSM (Finite State Machine)
17546 M: Peter Chen <Peter.Chen@nxp.com>
17547 L: linux-usb@vger.kernel.org
17548 S: Maintained
17549 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17550 F: drivers/usb/common/usb-otg-fsm.c
17551
17552 USB OVER IP DRIVER
17553 M: Valentina Manea <valentina.manea.m@gmail.com>
17554 M: Shuah Khan <shuah@kernel.org>
17555 M: Shuah Khan <skhan@linuxfoundation.org>
17556 L: linux-usb@vger.kernel.org
17557 S: Maintained
17558 F: Documentation/usb/usbip_protocol.rst
17559 F: drivers/usb/usbip/
17560 F: tools/testing/selftests/drivers/usb/usbip/
17561 F: tools/usb/usbip/
17562
17563 USB PEGASUS DRIVER
17564 M: Petko Manolov <petkan@nucleusys.com>
17565 L: linux-usb@vger.kernel.org
17566 L: netdev@vger.kernel.org
17567 S: Maintained
17568 W: https://github.com/petkan/pegasus
17569 T: git git://github.com/petkan/pegasus.git
17570 F: drivers/net/usb/pegasus.*
17571
17572 USB PHY LAYER
17573 M: Felipe Balbi <balbi@kernel.org>
17574 L: linux-usb@vger.kernel.org
17575 S: Maintained
17576 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17577 F: drivers/usb/phy/
17578
17579 USB PRINTER DRIVER (usblp)
17580 M: Pete Zaitcev <zaitcev@redhat.com>
17581 L: linux-usb@vger.kernel.org
17582 S: Supported
17583 F: drivers/usb/class/usblp.c
17584
17585 USB QMI WWAN NETWORK DRIVER
17586 M: Bjørn Mork <bjorn@mork.no>
17587 L: netdev@vger.kernel.org
17588 S: Maintained
17589 F: Documentation/ABI/testing/sysfs-class-net-qmi
17590 F: drivers/net/usb/qmi_wwan.c
17591
17592 USB RTL8150 DRIVER
17593 M: Petko Manolov <petkan@nucleusys.com>
17594 L: linux-usb@vger.kernel.org
17595 L: netdev@vger.kernel.org
17596 S: Maintained
17597 W: https://github.com/petkan/rtl8150
17598 T: git git://github.com/petkan/rtl8150.git
17599 F: drivers/net/usb/rtl8150.c
17600
17601 USB SERIAL SUBSYSTEM
17602 M: Johan Hovold <johan@kernel.org>
17603 L: linux-usb@vger.kernel.org
17604 S: Maintained
17605 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17606 F: Documentation/usb/usb-serial.rst
17607 F: drivers/usb/serial/
17608 F: include/linux/usb/serial.h
17609
17610 USB SMSC75XX ETHERNET DRIVER
17611 M: Steve Glendinning <steve.glendinning@shawell.net>
17612 L: netdev@vger.kernel.org
17613 S: Maintained
17614 F: drivers/net/usb/smsc75xx.*
17615
17616 USB SMSC95XX ETHERNET DRIVER
17617 M: Steve Glendinning <steve.glendinning@shawell.net>
17618 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17619 L: netdev@vger.kernel.org
17620 S: Maintained
17621 F: drivers/net/usb/smsc95xx.*
17622
17623 USB SUBSYSTEM
17624 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17625 L: linux-usb@vger.kernel.org
17626 S: Supported
17627 W: http://www.linux-usb.org
17628 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17629 F: Documentation/devicetree/bindings/usb/
17630 F: Documentation/usb/
17631 F: drivers/usb/
17632 F: include/linux/usb.h
17633 F: include/linux/usb/
17634
17635 USB TYPEC BUS FOR ALTERNATE MODES
17636 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17637 L: linux-usb@vger.kernel.org
17638 S: Maintained
17639 F: Documentation/ABI/testing/sysfs-bus-typec
17640 F: Documentation/driver-api/usb/typec_bus.rst
17641 F: drivers/usb/typec/altmodes/
17642 F: include/linux/usb/typec_altmode.h
17643
17644 USB TYPEC CLASS
17645 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17646 L: linux-usb@vger.kernel.org
17647 S: Maintained
17648 F: Documentation/ABI/testing/sysfs-class-typec
17649 F: Documentation/driver-api/usb/typec.rst
17650 F: drivers/usb/typec/
17651 F: include/linux/usb/typec.h
17652
17653 USB TYPEC PI3USB30532 MUX DRIVER
17654 M: Hans de Goede <hdegoede@redhat.com>
17655 L: linux-usb@vger.kernel.org
17656 S: Maintained
17657 F: drivers/usb/typec/mux/pi3usb30532.c
17658
17659 USB TYPEC PORT CONTROLLER DRIVERS
17660 M: Guenter Roeck <linux@roeck-us.net>
17661 L: linux-usb@vger.kernel.org
17662 S: Maintained
17663 F: drivers/usb/typec/tcpm/
17664
17665 USB UHCI DRIVER
17666 M: Alan Stern <stern@rowland.harvard.edu>
17667 L: linux-usb@vger.kernel.org
17668 S: Maintained
17669 F: drivers/usb/host/uhci*
17670
17671 USB VIDEO CLASS
17672 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17673 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17674 L: linux-media@vger.kernel.org
17675 S: Maintained
17676 W: http://www.ideasonboard.org/uvc/
17677 T: git git://linuxtv.org/media_tree.git
17678 F: drivers/media/usb/uvc/
17679 F: include/uapi/linux/uvcvideo.h
17680
17681 USB VISION DRIVER
17682 M: Hans Verkuil <hverkuil@xs4all.nl>
17683 L: linux-media@vger.kernel.org
17684 S: Odd Fixes
17685 W: https://linuxtv.org
17686 T: git git://linuxtv.org/media_tree.git
17687 F: drivers/staging/media/usbvision/
17688
17689 USB WEBCAM GADGET
17690 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17691 L: linux-usb@vger.kernel.org
17692 S: Maintained
17693 F: drivers/usb/gadget/function/*uvc*
17694 F: drivers/usb/gadget/legacy/webcam.c
17695 F: include/uapi/linux/usb/g_uvc.h
17696
17697 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17698 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
17699 L: linux-wireless@vger.kernel.org
17700 S: Maintained
17701 F: drivers/net/wireless/rndis_wlan.c
17702
17703 USB XHCI DRIVER
17704 M: Mathias Nyman <mathias.nyman@intel.com>
17705 L: linux-usb@vger.kernel.org
17706 S: Supported
17707 F: drivers/usb/host/pci-quirks*
17708 F: drivers/usb/host/xhci*
17709
17710 USB ZD1201 DRIVER
17711 L: linux-wireless@vger.kernel.org
17712 S: Orphan
17713 W: http://linux-lc100020.sourceforge.net
17714 F: drivers/net/wireless/zydas/zd1201.*
17715
17716 USB ZR364XX DRIVER
17717 M: Antoine Jacquet <royale@zerezo.com>
17718 L: linux-usb@vger.kernel.org
17719 L: linux-media@vger.kernel.org
17720 S: Maintained
17721 W: http://royale.zerezo.com/zr364xx/
17722 T: git git://linuxtv.org/media_tree.git
17723 F: Documentation/media/v4l-drivers/zr364xx*
17724 F: drivers/media/usb/zr364xx/
17725
17726 USER-MODE LINUX (UML)
17727 M: Jeff Dike <jdike@addtoit.com>
17728 M: Richard Weinberger <richard@nod.at>
17729 M: Anton Ivanov <anton.ivanov@cambridgegreys.com>
17730 L: linux-um@lists.infradead.org
17731 S: Maintained
17732 W: http://user-mode-linux.sourceforge.net
17733 Q: https://patchwork.ozlabs.org/project/linux-um/list/
17734 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17735 F: Documentation/virt/uml/
17736 F: arch/um/
17737 F: arch/x86/um/
17738 F: fs/hostfs/
17739
17740 USERSPACE COPYIN/COPYOUT (UIOVEC)
17741 M: Alexander Viro <viro@zeniv.linux.org.uk>
17742 S: Maintained
17743 F: include/linux/uio.h
17744 F: lib/iov_iter.c
17745
17746 USERSPACE DMA BUFFER DRIVER
17747 M: Gerd Hoffmann <kraxel@redhat.com>
17748 L: dri-devel@lists.freedesktop.org
17749 S: Maintained
17750 T: git git://anongit.freedesktop.org/drm/drm-misc
17751 F: drivers/dma-buf/udmabuf.c
17752 F: include/uapi/linux/udmabuf.h
17753
17754 USERSPACE I/O (UIO)
17755 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17756 S: Maintained
17757 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17758 F: Documentation/driver-api/uio-howto.rst
17759 F: drivers/uio/
17760 F: include/linux/uio_driver.h
17761
17762 UTIL-LINUX PACKAGE
17763 M: Karel Zak <kzak@redhat.com>
17764 L: util-linux@vger.kernel.org
17765 S: Maintained
17766 W: http://en.wikipedia.org/wiki/Util-linux
17767 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17768
17769 UUID HELPERS
17770 M: Christoph Hellwig <hch@lst.de>
17771 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17772 L: linux-kernel@vger.kernel.org
17773 S: Maintained
17774 T: git git://git.infradead.org/users/hch/uuid.git
17775 F: include/linux/uuid.h
17776 F: include/uapi/linux/uuid.h
17777 F: lib/test_uuid.c
17778 F: lib/uuid.c
17779
17780 UVESAFB DRIVER
17781 M: Michal Januszewski <spock@gentoo.org>
17782 L: linux-fbdev@vger.kernel.org
17783 S: Maintained
17784 W: https://github.com/mjanusz/v86d
17785 F: Documentation/fb/uvesafb.rst
17786 F: drivers/video/fbdev/uvesafb.*
17787
17788 Ux500 CLOCK DRIVERS
17789 M: Ulf Hansson <ulf.hansson@linaro.org>
17790 L: linux-clk@vger.kernel.org
17791 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17792 S: Maintained
17793 F: drivers/clk/ux500/
17794
17795 VF610 NAND DRIVER
17796 M: Stefan Agner <stefan@agner.ch>
17797 L: linux-mtd@lists.infradead.org
17798 S: Supported
17799 F: drivers/mtd/nand/raw/vf610_nfc.c
17800
17801 VFAT/FAT/MSDOS FILESYSTEM
17802 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17803 S: Maintained
17804 F: Documentation/filesystems/vfat.rst
17805 F: fs/fat/
17806
17807 VFIO DRIVER
17808 M: Alex Williamson <alex.williamson@redhat.com>
17809 R: Cornelia Huck <cohuck@redhat.com>
17810 L: kvm@vger.kernel.org
17811 S: Maintained
17812 T: git git://github.com/awilliam/linux-vfio.git
17813 F: Documentation/driver-api/vfio.rst
17814 F: drivers/vfio/
17815 F: include/linux/vfio.h
17816 F: include/uapi/linux/vfio.h
17817
17818 VFIO MEDIATED DEVICE DRIVERS
17819 M: Kirti Wankhede <kwankhede@nvidia.com>
17820 L: kvm@vger.kernel.org
17821 S: Maintained
17822 F: Documentation/driver-api/vfio-mediated-device.rst
17823 F: drivers/vfio/mdev/
17824 F: include/linux/mdev.h
17825 F: samples/vfio-mdev/
17826
17827 VFIO PLATFORM DRIVER
17828 M: Eric Auger <eric.auger@redhat.com>
17829 L: kvm@vger.kernel.org
17830 S: Maintained
17831 F: drivers/vfio/platform/
17832
17833 VGA_SWITCHEROO
17834 R: Lukas Wunner <lukas@wunner.de>
17835 S: Maintained
17836 T: git git://anongit.freedesktop.org/drm/drm-misc
17837 F: Documentation/gpu/vga-switcheroo.rst
17838 F: drivers/gpu/vga/vga_switcheroo.c
17839 F: include/linux/vga_switcheroo.h
17840
17841 VIA RHINE NETWORK DRIVER
17842 S: Orphan
17843 F: drivers/net/ethernet/via/via-rhine.c
17844
17845 VIA SD/MMC CARD CONTROLLER DRIVER
17846 M: Bruce Chang <brucechang@via.com.tw>
17847 M: Harald Welte <HaraldWelte@viatech.com>
17848 S: Maintained
17849 F: drivers/mmc/host/via-sdmmc.c
17850
17851 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17852 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17853 L: linux-fbdev@vger.kernel.org
17854 S: Maintained
17855 F: drivers/video/fbdev/via/
17856 F: include/linux/via-core.h
17857 F: include/linux/via-gpio.h
17858 F: include/linux/via_i2c.h
17859
17860 VIA VELOCITY NETWORK DRIVER
17861 M: Francois Romieu <romieu@fr.zoreil.com>
17862 L: netdev@vger.kernel.org
17863 S: Maintained
17864 F: drivers/net/ethernet/via/via-velocity.*
17865
17866 VICODEC VIRTUAL CODEC DRIVER
17867 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
17868 L: linux-media@vger.kernel.org
17869 S: Maintained
17870 W: https://linuxtv.org
17871 T: git git://linuxtv.org/media_tree.git
17872 F: drivers/media/platform/vicodec/*
17873
17874 VIDEO I2C POLLING DRIVER
17875 M: Matt Ranostay <matt.ranostay@konsulko.com>
17876 L: linux-media@vger.kernel.org
17877 S: Maintained
17878 F: drivers/media/i2c/video-i2c.c
17879
17880 VIDEO MULTIPLEXER DRIVER
17881 M: Philipp Zabel <p.zabel@pengutronix.de>
17882 L: linux-media@vger.kernel.org
17883 S: Maintained
17884 F: drivers/media/platform/video-mux.c
17885
17886 VIDEOBUF2 FRAMEWORK
17887 M: Pawel Osciak <pawel@osciak.com>
17888 M: Marek Szyprowski <m.szyprowski@samsung.com>
17889 M: Kyungmin Park <kyungmin.park@samsung.com>
17890 R: Tomasz Figa <tfiga@chromium.org>
17891 L: linux-media@vger.kernel.org
17892 S: Maintained
17893 F: drivers/media/common/videobuf2/*
17894 F: include/media/videobuf2-*
17895
17896 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17897 M: Helen Koike <helen.koike@collabora.com>
17898 R: Shuah Khan <skhan@linuxfoundation.org>
17899 L: linux-media@vger.kernel.org
17900 S: Maintained
17901 W: https://linuxtv.org
17902 T: git git://linuxtv.org/media_tree.git
17903 F: drivers/media/platform/vimc/*
17904
17905 VIRT LIB
17906 M: Alex Williamson <alex.williamson@redhat.com>
17907 M: Paolo Bonzini <pbonzini@redhat.com>
17908 L: kvm@vger.kernel.org
17909 S: Supported
17910 F: virt/lib/
17911
17912 VIRTIO AND VHOST VSOCK DRIVER
17913 M: Stefan Hajnoczi <stefanha@redhat.com>
17914 M: Stefano Garzarella <sgarzare@redhat.com>
17915 L: kvm@vger.kernel.org
17916 L: virtualization@lists.linux-foundation.org
17917 L: netdev@vger.kernel.org
17918 S: Maintained
17919 F: drivers/net/vsockmon.c
17920 F: drivers/vhost/vsock.c
17921 F: include/linux/virtio_vsock.h
17922 F: include/uapi/linux/virtio_vsock.h
17923 F: include/uapi/linux/vm_sockets_diag.h
17924 F: include/uapi/linux/vsockmon.h
17925 F: net/vmw_vsock/af_vsock_tap.c
17926 F: net/vmw_vsock/diag.c
17927 F: net/vmw_vsock/virtio_transport.c
17928 F: net/vmw_vsock/virtio_transport_common.c
17929 F: net/vmw_vsock/vsock_loopback.c
17930 F: tools/testing/vsock/
17931
17932 VIRTIO BLOCK AND SCSI DRIVERS
17933 M: "Michael S. Tsirkin" <mst@redhat.com>
17934 M: Jason Wang <jasowang@redhat.com>
17935 R: Paolo Bonzini <pbonzini@redhat.com>
17936 R: Stefan Hajnoczi <stefanha@redhat.com>
17937 L: virtualization@lists.linux-foundation.org
17938 S: Maintained
17939 F: drivers/block/virtio_blk.c
17940 F: drivers/scsi/virtio_scsi.c
17941 F: drivers/vhost/scsi.c
17942 F: include/uapi/linux/virtio_blk.h
17943 F: include/uapi/linux/virtio_scsi.h
17944
17945 VIRTIO CONSOLE DRIVER
17946 M: Amit Shah <amit@kernel.org>
17947 L: virtualization@lists.linux-foundation.org
17948 S: Maintained
17949 F: drivers/char/virtio_console.c
17950 F: include/linux/virtio_console.h
17951 F: include/uapi/linux/virtio_console.h
17952
17953 VIRTIO CORE AND NET DRIVERS
17954 M: "Michael S. Tsirkin" <mst@redhat.com>
17955 M: Jason Wang <jasowang@redhat.com>
17956 L: virtualization@lists.linux-foundation.org
17957 S: Maintained
17958 F: Documentation/devicetree/bindings/virtio/
17959 F: drivers/block/virtio_blk.c
17960 F: drivers/crypto/virtio/
17961 F: drivers/net/virtio_net.c
17962 F: drivers/vdpa/
17963 F: drivers/virtio/
17964 F: include/linux/vdpa.h
17965 F: include/linux/virtio*.h
17966 F: include/uapi/linux/virtio_*.h
17967 F: mm/balloon_compaction.c
17968 F: tools/virtio/
17969
17970 VIRTIO CRYPTO DRIVER
17971 M: Gonglei <arei.gonglei@huawei.com>
17972 L: virtualization@lists.linux-foundation.org
17973 L: linux-crypto@vger.kernel.org
17974 S: Maintained
17975 F: drivers/crypto/virtio/
17976 F: include/uapi/linux/virtio_crypto.h
17977
17978 VIRTIO DRIVERS FOR S390
17979 M: Cornelia Huck <cohuck@redhat.com>
17980 M: Halil Pasic <pasic@linux.ibm.com>
17981 L: linux-s390@vger.kernel.org
17982 L: virtualization@lists.linux-foundation.org
17983 L: kvm@vger.kernel.org
17984 S: Supported
17985 F: arch/s390/include/uapi/asm/virtio-ccw.h
17986 F: drivers/s390/virtio/
17987
17988 VIRTIO FILE SYSTEM
17989 M: Vivek Goyal <vgoyal@redhat.com>
17990 M: Stefan Hajnoczi <stefanha@redhat.com>
17991 M: Miklos Szeredi <miklos@szeredi.hu>
17992 L: virtualization@lists.linux-foundation.org
17993 L: linux-fsdevel@vger.kernel.org
17994 S: Supported
17995 W: https://virtio-fs.gitlab.io/
17996 F: Documentation/filesystems/virtiofs.rst
17997 F: fs/fuse/virtio_fs.c
17998 F: include/uapi/linux/virtio_fs.h
17999
18000 VIRTIO GPU DRIVER
18001 M: David Airlie <airlied@linux.ie>
18002 M: Gerd Hoffmann <kraxel@redhat.com>
18003 L: dri-devel@lists.freedesktop.org
18004 L: virtualization@lists.linux-foundation.org
18005 S: Maintained
18006 T: git git://anongit.freedesktop.org/drm/drm-misc
18007 F: drivers/gpu/drm/virtio/
18008 F: include/uapi/linux/virtio_gpu.h
18009
18010 VIRTIO HOST (VHOST)
18011 M: "Michael S. Tsirkin" <mst@redhat.com>
18012 M: Jason Wang <jasowang@redhat.com>
18013 L: kvm@vger.kernel.org
18014 L: virtualization@lists.linux-foundation.org
18015 L: netdev@vger.kernel.org
18016 S: Maintained
18017 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18018 F: drivers/vhost/
18019 F: include/linux/vhost_iotlb.h
18020 F: include/uapi/linux/vhost.h
18021
18022 VIRTIO INPUT DRIVER
18023 M: Gerd Hoffmann <kraxel@redhat.com>
18024 S: Maintained
18025 F: drivers/virtio/virtio_input.c
18026 F: include/uapi/linux/virtio_input.h
18027
18028 VIRTIO IOMMU DRIVER
18029 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
18030 L: virtualization@lists.linux-foundation.org
18031 S: Maintained
18032 F: drivers/iommu/virtio-iommu.c
18033 F: include/uapi/linux/virtio_iommu.h
18034
18035 VIRTUAL BOX GUEST DEVICE DRIVER
18036 M: Hans de Goede <hdegoede@redhat.com>
18037 M: Arnd Bergmann <arnd@arndb.de>
18038 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18039 S: Maintained
18040 F: drivers/virt/vboxguest/
18041 F: include/linux/vbox_utils.h
18042 F: include/uapi/linux/vbox*.h
18043
18044 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18045 M: Hans de Goede <hdegoede@redhat.com>
18046 L: linux-fsdevel@vger.kernel.org
18047 S: Maintained
18048 F: fs/vboxsf/*
18049
18050 VIRTUAL SERIO DEVICE DRIVER
18051 M: Stephen Chandler Paul <thatslyude@gmail.com>
18052 S: Maintained
18053 F: drivers/input/serio/userio.c
18054 F: include/uapi/linux/userio.h
18055
18056 VITESSE FELIX ETHERNET SWITCH DRIVER
18057 M: Vladimir Oltean <vladimir.oltean@nxp.com>
18058 M: Claudiu Manoil <claudiu.manoil@nxp.com>
18059 L: netdev@vger.kernel.org
18060 S: Maintained
18061 F: drivers/net/dsa/ocelot/*
18062 F: net/dsa/tag_ocelot.c
18063
18064 VIVID VIRTUAL VIDEO DRIVER
18065 M: Hans Verkuil <hverkuil@xs4all.nl>
18066 L: linux-media@vger.kernel.org
18067 S: Maintained
18068 W: https://linuxtv.org
18069 T: git git://linuxtv.org/media_tree.git
18070 F: drivers/media/platform/vivid/*
18071
18072 VLYNQ BUS
18073 M: Florian Fainelli <f.fainelli@gmail.com>
18074 L: openwrt-devel@lists.openwrt.org (subscribers-only)
18075 S: Maintained
18076 F: drivers/vlynq/vlynq.c
18077 F: include/linux/vlynq.h
18078
18079 VME SUBSYSTEM
18080 M: Martyn Welch <martyn@welchs.me.uk>
18081 M: Manohar Vanga <manohar.vanga@gmail.com>
18082 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18083 L: devel@driverdev.osuosl.org
18084 S: Maintained
18085 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18086 F: Documentation/driver-api/vme.rst
18087 F: drivers/staging/vme/
18088 F: drivers/vme/
18089 F: include/linux/vme*
18090
18091 VMWARE BALLOON DRIVER
18092 M: Nadav Amit <namit@vmware.com>
18093 M: "VMware, Inc." <pv-drivers@vmware.com>
18094 L: linux-kernel@vger.kernel.org
18095 S: Maintained
18096 F: drivers/misc/vmw_balloon.c
18097
18098 VMWARE HYPERVISOR INTERFACE
18099 M: Thomas Hellstrom <thellstrom@vmware.com>
18100 M: "VMware, Inc." <pv-drivers@vmware.com>
18101 L: virtualization@lists.linux-foundation.org
18102 S: Supported
18103 F: arch/x86/include/asm/vmware.h
18104 F: arch/x86/kernel/cpu/vmware.c
18105
18106 VMWARE PVRDMA DRIVER
18107 M: Adit Ranadive <aditr@vmware.com>
18108 M: VMware PV-Drivers <pv-drivers@vmware.com>
18109 L: linux-rdma@vger.kernel.org
18110 S: Maintained
18111 F: drivers/infiniband/hw/vmw_pvrdma/
18112
18113 VMware PVSCSI driver
18114 M: Jim Gill <jgill@vmware.com>
18115 M: VMware PV-Drivers <pv-drivers@vmware.com>
18116 L: linux-scsi@vger.kernel.org
18117 S: Maintained
18118 F: drivers/scsi/vmw_pvscsi.c
18119 F: drivers/scsi/vmw_pvscsi.h
18120
18121 VMWARE VIRTUAL PTP CLOCK DRIVER
18122 M: Vivek Thampi <vithampi@vmware.com>
18123 M: "VMware, Inc." <pv-drivers@vmware.com>
18124 L: netdev@vger.kernel.org
18125 S: Supported
18126 F: drivers/ptp/ptp_vmw.c
18127
18128 VMWARE VMMOUSE SUBDRIVER
18129 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18130 M: "VMware, Inc." <pv-drivers@vmware.com>
18131 L: linux-input@vger.kernel.org
18132 S: Maintained
18133 F: drivers/input/mouse/vmmouse.c
18134 F: drivers/input/mouse/vmmouse.h
18135
18136 VMWARE VMXNET3 ETHERNET DRIVER
18137 M: Ronak Doshi <doshir@vmware.com>
18138 M: "VMware, Inc." <pv-drivers@vmware.com>
18139 L: netdev@vger.kernel.org
18140 S: Maintained
18141 F: drivers/net/vmxnet3/
18142
18143 VOCORE VOCORE2 BOARD
18144 M: Harvey Hunt <harveyhuntnexus@gmail.com>
18145 L: linux-mips@vger.kernel.org
18146 S: Maintained
18147 F: arch/mips/boot/dts/ralink/vocore2.dts
18148
18149 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18150 M: Liam Girdwood <lgirdwood@gmail.com>
18151 M: Mark Brown <broonie@kernel.org>
18152 L: linux-kernel@vger.kernel.org
18153 S: Supported
18154 W: http://www.slimlogic.co.uk/?p=48
18155 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18156 F: Documentation/devicetree/bindings/regulator/
18157 F: Documentation/power/regulator/
18158 F: drivers/regulator/
18159 F: include/dt-bindings/regulator/
18160 F: include/linux/regulator/
18161 K: regulator_get_optional
18162
18163 VRF
18164 M: David Ahern <dsahern@kernel.org>
18165 M: Shrijeet Mukherjee <shrijeet@gmail.com>
18166 L: netdev@vger.kernel.org
18167 S: Maintained
18168 F: Documentation/networking/vrf.txt
18169 F: drivers/net/vrf.c
18170
18171 VSPRINTF
18172 M: Petr Mladek <pmladek@suse.com>
18173 M: Steven Rostedt <rostedt@goodmis.org>
18174 M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18175 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18176 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
18177 S: Maintained
18178 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18179 F: Documentation/core-api/printk-formats.rst
18180 F: lib/test_printf.c
18181 F: lib/vsprintf.c
18182
18183 VT1211 HARDWARE MONITOR DRIVER
18184 M: Juerg Haefliger <juergh@gmail.com>
18185 L: linux-hwmon@vger.kernel.org
18186 S: Maintained
18187 F: Documentation/hwmon/vt1211.rst
18188 F: drivers/hwmon/vt1211.c
18189
18190 VT8231 HARDWARE MONITOR DRIVER
18191 M: Roger Lucas <vt8231@hiddenengine.co.uk>
18192 L: linux-hwmon@vger.kernel.org
18193 S: Maintained
18194 F: drivers/hwmon/vt8231.c
18195
18196 VUB300 USB to SDIO/SD/MMC bridge chip
18197 L: linux-mmc@vger.kernel.org
18198 S: Orphan
18199 F: drivers/mmc/host/vub300.c
18200
18201 W1 DALLAS'S 1-WIRE BUS
18202 M: Evgeniy Polyakov <zbr@ioremap.net>
18203 S: Maintained
18204 F: Documentation/devicetree/bindings/w1/
18205 F: Documentation/w1/
18206 F: drivers/w1/
18207 F: include/linux/w1.h
18208
18209 W83791D HARDWARE MONITORING DRIVER
18210 M: Marc Hulsman <m.hulsman@tudelft.nl>
18211 L: linux-hwmon@vger.kernel.org
18212 S: Maintained
18213 F: Documentation/hwmon/w83791d.rst
18214 F: drivers/hwmon/w83791d.c
18215
18216 W83793 HARDWARE MONITORING DRIVER
18217 M: Rudolf Marek <r.marek@assembler.cz>
18218 L: linux-hwmon@vger.kernel.org
18219 S: Maintained
18220 F: Documentation/hwmon/w83793.rst
18221 F: drivers/hwmon/w83793.c
18222
18223 W83795 HARDWARE MONITORING DRIVER
18224 M: Jean Delvare <jdelvare@suse.com>
18225 L: linux-hwmon@vger.kernel.org
18226 S: Maintained
18227 F: drivers/hwmon/w83795.c
18228
18229 W83L51xD SD/MMC CARD INTERFACE DRIVER
18230 M: Pierre Ossman <pierre@ossman.eu>
18231 S: Maintained
18232 F: drivers/mmc/host/wbsd.*
18233
18234 WACOM PROTOCOL 4 SERIAL TABLETS
18235 M: Julian Squires <julian@cipht.net>
18236 M: Hans de Goede <hdegoede@redhat.com>
18237 L: linux-input@vger.kernel.org
18238 S: Maintained
18239 F: drivers/input/tablet/wacom_serial4.c
18240
18241 WATCHDOG DEVICE DRIVERS
18242 M: Wim Van Sebroeck <wim@linux-watchdog.org>
18243 M: Guenter Roeck <linux@roeck-us.net>
18244 L: linux-watchdog@vger.kernel.org
18245 S: Maintained
18246 W: http://www.linux-watchdog.org/
18247 T: git git://www.linux-watchdog.org/linux-watchdog.git
18248 F: Documentation/devicetree/bindings/watchdog/
18249 F: Documentation/watchdog/
18250 F: drivers/watchdog/
18251 F: include/linux/watchdog.h
18252 F: include/uapi/linux/watchdog.h
18253
18254 WHISKEYCOVE PMIC GPIO DRIVER
18255 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18256 L: linux-gpio@vger.kernel.org
18257 S: Maintained
18258 F: drivers/gpio/gpio-wcove.c
18259
18260 WHWAVE RTC DRIVER
18261 M: Dianlong Li <long17.cool@163.com>
18262 L: linux-rtc@vger.kernel.org
18263 S: Maintained
18264 F: drivers/rtc/rtc-sd3078.c
18265
18266 WIIMOTE HID DRIVER
18267 M: David Herrmann <dh.herrmann@googlemail.com>
18268 L: linux-input@vger.kernel.org
18269 S: Maintained
18270 F: drivers/hid/hid-wiimote*
18271
18272 WILOCITY WIL6210 WIRELESS DRIVER
18273 M: Maya Erez <merez@codeaurora.org>
18274 L: linux-wireless@vger.kernel.org
18275 L: wil6210@qti.qualcomm.com
18276 S: Supported
18277 W: https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18278 F: drivers/net/wireless/ath/wil6210/
18279
18280 WIMAX STACK
18281 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18282 M: linux-wimax@intel.com
18283 L: wimax@linuxwimax.org (subscribers-only)
18284 S: Supported
18285 W: http://linuxwimax.org
18286 F: Documentation/admin-guide/wimax/wimax.rst
18287 F: include/linux/wimax/debug.h
18288 F: include/net/wimax.h
18289 F: include/uapi/linux/wimax.h
18290 F: net/wimax/
18291
18292 WINBOND CIR DRIVER
18293 M: David Härdeman <david@hardeman.nu>
18294 S: Maintained
18295 F: drivers/media/rc/winbond-cir.c
18296
18297 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18298 M: William Breathitt Gray <vilhelm.gray@gmail.com>
18299 L: linux-watchdog@vger.kernel.org
18300 S: Maintained
18301 F: drivers/watchdog/ebc-c384_wdt.c
18302
18303 WINSYSTEMS WS16C48 GPIO DRIVER
18304 M: William Breathitt Gray <vilhelm.gray@gmail.com>
18305 L: linux-gpio@vger.kernel.org
18306 S: Maintained
18307 F: drivers/gpio/gpio-ws16c48.c
18308
18309 WIREGUARD SECURE NETWORK TUNNEL
18310 M: Jason A. Donenfeld <Jason@zx2c4.com>
18311 L: wireguard@lists.zx2c4.com
18312 L: netdev@vger.kernel.org
18313 S: Maintained
18314 F: drivers/net/wireguard/
18315 F: tools/testing/selftests/wireguard/
18316
18317 WISTRON LAPTOP BUTTON DRIVER
18318 M: Miloslav Trmac <mitr@volny.cz>
18319 S: Maintained
18320 F: drivers/input/misc/wistron_btns.c
18321
18322 WL3501 WIRELESS PCMCIA CARD DRIVER
18323 L: linux-wireless@vger.kernel.org
18324 S: Odd fixes
18325 F: drivers/net/wireless/wl3501*
18326
18327 WOLFSON MICROELECTRONICS DRIVERS
18328 L: patches@opensource.cirrus.com
18329 S: Supported
18330 W: https://github.com/CirrusLogic/linux-drivers/wiki
18331 T: git https://github.com/CirrusLogic/linux-drivers.git
18332 F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
18333 F: Documentation/devicetree/bindings/mfd/arizona.txt
18334 F: Documentation/devicetree/bindings/mfd/wm831x.txt
18335 F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
18336 F: Documentation/devicetree/bindings/sound/wlf,arizona.txt
18337 F: Documentation/hwmon/wm83??.rst
18338 F: arch/arm/mach-s3c64xx/mach-crag6410*
18339 F: drivers/clk/clk-wm83*.c
18340 F: drivers/extcon/extcon-arizona.c
18341 F: drivers/gpio/gpio-*wm*.c
18342 F: drivers/gpio/gpio-arizona.c
18343 F: drivers/hwmon/wm83??-hwmon.c
18344 F: drivers/input/misc/wm831x-on.c
18345 F: drivers/input/touchscreen/wm831x-ts.c
18346 F: drivers/input/touchscreen/wm97*.c
18347 F: drivers/leds/leds-wm83*.c
18348 F: drivers/mfd/arizona*
18349 F: drivers/mfd/cs47l24*
18350 F: drivers/mfd/wm*.c
18351 F: drivers/power/supply/wm83*.c
18352 F: drivers/regulator/arizona*
18353 F: drivers/regulator/wm8*.c
18354 F: drivers/rtc/rtc-wm83*.c
18355 F: drivers/video/backlight/wm83*_bl.c
18356 F: drivers/watchdog/wm83*_wdt.c
18357 F: include/linux/mfd/arizona/
18358 F: include/linux/mfd/wm831x/
18359 F: include/linux/mfd/wm8350/
18360 F: include/linux/mfd/wm8400*
18361 F: include/linux/regulator/arizona*
18362 F: include/linux/wm97xx.h
18363 F: include/sound/wm????.h
18364 F: sound/soc/codecs/arizona.?
18365 F: sound/soc/codecs/cs47l24*
18366 F: sound/soc/codecs/wm*
18367
18368 WORKQUEUE
18369 M: Tejun Heo <tj@kernel.org>
18370 R: Lai Jiangshan <jiangshanlai@gmail.com>
18371 S: Maintained
18372 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18373 F: Documentation/core-api/workqueue.rst
18374 F: include/linux/workqueue.h
18375 F: kernel/workqueue.c
18376
18377 X-POWERS AXP288 PMIC DRIVERS
18378 M: Hans de Goede <hdegoede@redhat.com>
18379 S: Maintained
18380 F: drivers/acpi/pmic/intel_pmic_xpower.c
18381 N: axp288
18382
18383 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18384 M: Chen-Yu Tsai <wens@csie.org>
18385 L: linux-kernel@vger.kernel.org
18386 S: Maintained
18387 N: axp[128]
18388
18389 X.25 NETWORK LAYER
18390 M: Andrew Hendry <andrew.hendry@gmail.com>
18391 L: linux-x25@vger.kernel.org
18392 S: Odd Fixes
18393 F: Documentation/networking/x25*
18394 F: include/net/x25*
18395 F: net/x25/
18396
18397 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18398 M: Thomas Gleixner <tglx@linutronix.de>
18399 M: Ingo Molnar <mingo@redhat.com>
18400 M: Borislav Petkov <bp@alien8.de>
18401 M: x86@kernel.org
18402 R: "H. Peter Anvin" <hpa@zytor.com>
18403 L: linux-kernel@vger.kernel.org
18404 S: Maintained
18405 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18406 F: Documentation/devicetree/bindings/x86/
18407 F: Documentation/x86/
18408 F: arch/x86/
18409
18410 X86 ENTRY CODE
18411 M: Andy Lutomirski <luto@kernel.org>
18412 L: linux-kernel@vger.kernel.org
18413 S: Maintained
18414 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18415 F: arch/x86/entry/
18416
18417 X86 MCE INFRASTRUCTURE
18418 M: Tony Luck <tony.luck@intel.com>
18419 M: Borislav Petkov <bp@alien8.de>
18420 L: linux-edac@vger.kernel.org
18421 S: Maintained
18422 F: arch/x86/kernel/cpu/mce/*
18423
18424 X86 MICROCODE UPDATE SUPPORT
18425 M: Borislav Petkov <bp@alien8.de>
18426 S: Maintained
18427 F: arch/x86/kernel/cpu/microcode/*
18428
18429 X86 MM
18430 M: Dave Hansen <dave.hansen@linux.intel.com>
18431 M: Andy Lutomirski <luto@kernel.org>
18432 M: Peter Zijlstra <peterz@infradead.org>
18433 L: linux-kernel@vger.kernel.org
18434 S: Maintained
18435 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18436 F: arch/x86/mm/
18437
18438 X86 PLATFORM DRIVERS
18439 M: Darren Hart <dvhart@infradead.org>
18440 M: Andy Shevchenko <andy@infradead.org>
18441 L: platform-driver-x86@vger.kernel.org
18442 S: Odd Fixes
18443 T: git git://git.infradead.org/linux-platform-drivers-x86.git
18444 F: drivers/platform/olpc/
18445 F: drivers/platform/x86/
18446
18447 X86 PLATFORM DRIVERS - ARCH
18448 R: Darren Hart <dvhart@infradead.org>
18449 R: Andy Shevchenko <andy@infradead.org>
18450 L: platform-driver-x86@vger.kernel.org
18451 L: x86@kernel.org
18452 S: Maintained
18453 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18454 F: arch/x86/platform
18455
18456 X86 VDSO
18457 M: Andy Lutomirski <luto@kernel.org>
18458 L: linux-kernel@vger.kernel.org
18459 S: Maintained
18460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18461 F: arch/x86/entry/vdso/
18462
18463 XARRAY
18464 M: Matthew Wilcox <willy@infradead.org>
18465 L: linux-fsdevel@vger.kernel.org
18466 S: Supported
18467 F: Documentation/core-api/xarray.rst
18468 F: include/linux/idr.h
18469 F: include/linux/xarray.h
18470 F: lib/idr.c
18471 F: lib/xarray.c
18472 F: tools/testing/radix-tree
18473
18474 XBOX DVD IR REMOTE
18475 M: Benjamin Valentin <benpicco@googlemail.com>
18476 S: Maintained
18477 F: drivers/media/rc/keymaps/rc-xbox-dvd.c
18478 F: drivers/media/rc/xbox_remote.c
18479
18480 XC2028/3028 TUNER DRIVER
18481 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18482 L: linux-media@vger.kernel.org
18483 S: Maintained
18484 W: https://linuxtv.org
18485 T: git git://linuxtv.org/media_tree.git
18486 F: drivers/media/tuners/tuner-xc2028.*
18487
18488 XDP (eXpress Data Path)
18489 M: Alexei Starovoitov <ast@kernel.org>
18490 M: Daniel Borkmann <daniel@iogearbox.net>
18491 M: David S. Miller <davem@davemloft.net>
18492 M: Jakub Kicinski <kuba@kernel.org>
18493 M: Jesper Dangaard Brouer <hawk@kernel.org>
18494 M: John Fastabend <john.fastabend@gmail.com>
18495 L: netdev@vger.kernel.org
18496 L: bpf@vger.kernel.org
18497 S: Supported
18498 F: include/net/xdp.h
18499 F: include/trace/events/xdp.h
18500 F: kernel/bpf/cpumap.c
18501 F: kernel/bpf/devmap.c
18502 F: net/core/xdp.c
18503 N: xdp
18504 K: xdp
18505
18506 XDP SOCKETS (AF_XDP)
18507 M: Björn Töpel <bjorn.topel@intel.com>
18508 M: Magnus Karlsson <magnus.karlsson@intel.com>
18509 R: Jonathan Lemon <jonathan.lemon@gmail.com>
18510 L: netdev@vger.kernel.org
18511 L: bpf@vger.kernel.org
18512 S: Maintained
18513 F: kernel/bpf/xskmap.c
18514 F: net/xdp/
18515
18516 XEN BLOCK SUBSYSTEM
18517 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18518 M: Roger Pau Monné <roger.pau@citrix.com>
18519 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18520 S: Supported
18521 F: drivers/block/xen*
18522 F: drivers/block/xen-blkback/*
18523
18524 XEN HYPERVISOR ARM
18525 M: Stefano Stabellini <sstabellini@kernel.org>
18526 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18527 S: Maintained
18528 F: arch/arm/include/asm/xen/
18529 F: arch/arm/xen/
18530
18531 XEN HYPERVISOR ARM64
18532 M: Stefano Stabellini <sstabellini@kernel.org>
18533 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18534 S: Maintained
18535 F: arch/arm64/include/asm/xen/
18536 F: arch/arm64/xen/
18537
18538 XEN HYPERVISOR INTERFACE
18539 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
18540 M: Juergen Gross <jgross@suse.com>
18541 R: Stefano Stabellini <sstabellini@kernel.org>
18542 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18543 S: Supported
18544 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18545 F: Documentation/ABI/stable/sysfs-hypervisor-xen
18546 F: Documentation/ABI/testing/sysfs-hypervisor-xen
18547 F: arch/x86/include/asm/pvclock-abi.h
18548 F: arch/x86/include/asm/xen/
18549 F: arch/x86/platform/pvh/
18550 F: arch/x86/xen/
18551 F: drivers/*/xen-*front.c
18552 F: drivers/xen/
18553 F: include/uapi/xen/
18554 F: include/xen/
18555
18556 XEN NETWORK BACKEND DRIVER
18557 M: Wei Liu <wei.liu@kernel.org>
18558 M: Paul Durrant <paul@xen.org>
18559 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18560 L: netdev@vger.kernel.org
18561 S: Supported
18562 F: drivers/net/xen-netback/*
18563
18564 XEN PCI SUBSYSTEM
18565 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18566 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18567 S: Supported
18568 F: arch/x86/pci/*xen*
18569 F: drivers/pci/*xen*
18570
18571 XEN PVSCSI DRIVERS
18572 M: Juergen Gross <jgross@suse.com>
18573 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18574 L: linux-scsi@vger.kernel.org
18575 S: Supported
18576 F: drivers/scsi/xen-scsifront.c
18577 F: drivers/xen/xen-scsiback.c
18578 F: include/xen/interface/io/vscsiif.h
18579
18580 XEN SOUND FRONTEND DRIVER
18581 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18582 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18583 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18584 S: Supported
18585 F: sound/xen/*
18586
18587 XEN SWIOTLB SUBSYSTEM
18588 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18589 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18590 L: iommu@lists.linux-foundation.org
18591 S: Supported
18592 F: arch/x86/xen/*swiotlb*
18593 F: drivers/xen/*swiotlb*
18594
18595 XFS FILESYSTEM
18596 M: Darrick J. Wong <darrick.wong@oracle.com>
18597 M: linux-xfs@vger.kernel.org
18598 L: linux-xfs@vger.kernel.org
18599 S: Supported
18600 W: http://xfs.org/
18601 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18602 F: Documentation/ABI/testing/sysfs-fs-xfs
18603 F: Documentation/admin-guide/xfs.rst
18604 F: Documentation/filesystems/xfs-delayed-logging-design.rst
18605 F: Documentation/filesystems/xfs-self-describing-metadata.rst
18606 F: fs/xfs/
18607 F: include/uapi/linux/dqblk_xfs.h
18608 F: include/uapi/linux/fsmap.h
18609
18610 XILINX AXI ETHERNET DRIVER
18611 M: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18612 S: Maintained
18613 F: drivers/net/ethernet/xilinx/xilinx_axienet*
18614
18615 XILINX CAN DRIVER
18616 M: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18617 R: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18618 L: linux-can@vger.kernel.org
18619 S: Maintained
18620 F: Documentation/devicetree/bindings/net/can/xilinx_can.txt
18621 F: drivers/net/can/xilinx_can.c
18622
18623 XILINX SD-FEC IP CORES
18624 M: Derek Kiernan <derek.kiernan@xilinx.com>
18625 M: Dragan Cvetic <dragan.cvetic@xilinx.com>
18626 S: Maintained
18627 F: Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18628 F: Documentation/misc-devices/xilinx_sdfec.rst
18629 F: drivers/misc/Kconfig
18630 F: drivers/misc/Makefile
18631 F: drivers/misc/xilinx_sdfec.c
18632 F: include/uapi/misc/xilinx_sdfec.h
18633
18634 XILINX UARTLITE SERIAL DRIVER
18635 M: Peter Korsgaard <jacmet@sunsite.dk>
18636 L: linux-serial@vger.kernel.org
18637 S: Maintained
18638 F: drivers/tty/serial/uartlite.c
18639
18640 XILINX VIDEO IP CORES
18641 M: Hyun Kwon <hyun.kwon@xilinx.com>
18642 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18643 L: linux-media@vger.kernel.org
18644 S: Supported
18645 T: git git://linuxtv.org/media_tree.git
18646 F: Documentation/devicetree/bindings/media/xilinx/
18647 F: drivers/media/platform/xilinx/
18648 F: include/uapi/linux/xilinx-v4l2-controls.h
18649
18650 XILLYBUS DRIVER
18651 M: Eli Billauer <eli.billauer@gmail.com>
18652 L: linux-kernel@vger.kernel.org
18653 S: Supported
18654 F: drivers/char/xillybus/
18655
18656 XLP9XX I2C DRIVER
18657 M: George Cherian <gcherian@marvell.com>
18658 L: linux-i2c@vger.kernel.org
18659 S: Supported
18660 W: http://www.marvell.com
18661 F: Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18662 F: drivers/i2c/busses/i2c-xlp9xx.c
18663
18664 XRA1403 GPIO EXPANDER
18665 M: Nandor Han <nandor.han@ge.com>
18666 M: Semi Malinen <semi.malinen@ge.com>
18667 L: linux-gpio@vger.kernel.org
18668 S: Maintained
18669 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18670 F: drivers/gpio/gpio-xra1403.c
18671
18672 XTENSA XTFPGA PLATFORM SUPPORT
18673 M: Max Filippov <jcmvbkbc@gmail.com>
18674 L: linux-xtensa@linux-xtensa.org
18675 S: Maintained
18676 F: drivers/spi/spi-xtensa-xtfpga.c
18677 F: sound/soc/xtensa/xtfpga-i2s.c
18678
18679 YAM DRIVER FOR AX.25
18680 M: Jean-Paul Roubelat <jpr@f6fbb.org>
18681 L: linux-hams@vger.kernel.org
18682 S: Maintained
18683 F: drivers/net/hamradio/yam*
18684 F: include/linux/yam.h
18685
18686 YAMA SECURITY MODULE
18687 M: Kees Cook <keescook@chromium.org>
18688 S: Supported
18689 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18690 F: Documentation/admin-guide/LSM/Yama.rst
18691 F: security/yama/
18692
18693 YEALINK PHONE DRIVER
18694 M: Henk Vergonet <Henk.Vergonet@gmail.com>
18695 L: usbb2k-api-dev@nongnu.org
18696 S: Maintained
18697 F: Documentation/input/devices/yealink.rst
18698 F: drivers/input/misc/yealink.*
18699
18700 Z8530 DRIVER FOR AX.25
18701 M: Joerg Reuter <jreuter@yaina.de>
18702 L: linux-hams@vger.kernel.org
18703 S: Maintained
18704 W: http://yaina.de/jreuter/
18705 W: http://www.qsl.net/dl1bke/
18706 F: Documentation/networking/z8530drv.txt
18707 F: drivers/net/hamradio/*scc.c
18708 F: drivers/net/hamradio/z8530.h
18709
18710 ZBUD COMPRESSED PAGE ALLOCATOR
18711 M: Seth Jennings <sjenning@redhat.com>
18712 M: Dan Streetman <ddstreet@ieee.org>
18713 L: linux-mm@kvack.org
18714 S: Maintained
18715 F: include/linux/zbud.h
18716 F: mm/zbud.c
18717
18718 ZD1211RW WIRELESS DRIVER
18719 M: Daniel Drake <dsd@gentoo.org>
18720 M: Ulrich Kunitz <kune@deine-taler.de>
18721 L: linux-wireless@vger.kernel.org
18722 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
18723 S: Maintained
18724 W: http://zd1211.ath.cx/wiki/DriverRewrite
18725 F: drivers/net/wireless/zydas/zd1211rw/
18726
18727 ZD1301 MEDIA DRIVER
18728 M: Antti Palosaari <crope@iki.fi>
18729 L: linux-media@vger.kernel.org
18730 S: Maintained
18731 W: https://linuxtv.org/
18732 W: http://palosaari.fi/linux/
18733 Q: https://patchwork.linuxtv.org/project/linux-media/list/
18734 F: drivers/media/usb/dvb-usb-v2/zd1301*
18735
18736 ZD1301_DEMOD MEDIA DRIVER
18737 M: Antti Palosaari <crope@iki.fi>
18738 L: linux-media@vger.kernel.org
18739 S: Maintained
18740 W: https://linuxtv.org/
18741 W: http://palosaari.fi/linux/
18742 Q: https://patchwork.linuxtv.org/project/linux-media/list/
18743 F: drivers/media/dvb-frontends/zd1301_demod*
18744
18745 ZHAOXIN PROCESSOR SUPPORT
18746 M: Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18747 L: linux-kernel@vger.kernel.org
18748 S: Maintained
18749 F: arch/x86/kernel/cpu/zhaoxin.c
18750
18751 ZONEFS FILESYSTEM
18752 M: Damien Le Moal <damien.lemoal@wdc.com>
18753 M: Naohiro Aota <naohiro.aota@wdc.com>
18754 R: Johannes Thumshirn <jth@kernel.org>
18755 L: linux-fsdevel@vger.kernel.org
18756 S: Maintained
18757 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18758 F: Documentation/filesystems/zonefs.rst
18759 F: fs/zonefs/
18760
18761 ZPOOL COMPRESSED PAGE STORAGE API
18762 M: Dan Streetman <ddstreet@ieee.org>
18763 L: linux-mm@kvack.org
18764 S: Maintained
18765 F: include/linux/zpool.h
18766 F: mm/zpool.c
18767
18768 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18769 M: Minchan Kim <minchan@kernel.org>
18770 M: Nitin Gupta <ngupta@vflare.org>
18771 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18772 L: linux-kernel@vger.kernel.org
18773 S: Maintained
18774 F: Documentation/admin-guide/blockdev/zram.rst
18775 F: drivers/block/zram/
18776
18777 ZS DECSTATION Z85C30 SERIAL DRIVER
18778 M: "Maciej W. Rozycki" <macro@linux-mips.org>
18779 S: Maintained
18780 F: drivers/tty/serial/zs.*
18781
18782 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18783 M: Minchan Kim <minchan@kernel.org>
18784 M: Nitin Gupta <ngupta@vflare.org>
18785 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18786 L: linux-mm@kvack.org
18787 S: Maintained
18788 F: Documentation/vm/zsmalloc.rst
18789 F: include/linux/zsmalloc.h
18790 F: mm/zsmalloc.c
18791
18792 ZSWAP COMPRESSED SWAP CACHING
18793 M: Seth Jennings <sjenning@redhat.com>
18794 M: Dan Streetman <ddstreet@ieee.org>
18795 M: Vitaly Wool <vitaly.wool@konsulko.com>
18796 L: linux-mm@kvack.org
18797 S: Maintained
18798 F: mm/zswap.c
18799
18800 THE REST
18801 M: Linus Torvalds <torvalds@linux-foundation.org>
18802 L: linux-kernel@vger.kernel.org
18803 S: Buried alive in reporters
18804 Q: http://patchwork.kernel.org/project/LKML/list/
18805 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18806 F: *
18807 F: */