1 List of maintainers and how to submit kernel changes
2 ====================================================
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.
8 Tips for patch submitters
9 -------------------------
11 1. Always *test* your changes, however small, on at least 4 or
12 5 people, preferably many more.
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.)
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.
26 4. When you are happy with a change make it generally available for
27 testing and await feedback.
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.
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.
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.
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.
52 PLEASE document known bugs. If it doesn't work for everything
53 or does something very odd once a month document it.
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.
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
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.
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
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
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
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:
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.
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.
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
147 M: Steffen Klassert <klassert@kernel.org>
148 L: netdev@vger.kernel.org
150 F: Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F: drivers/net/ethernet/3com/3c59x.c
153 3CR990 NETWORK DRIVER
154 M: David Dillow <dave@thedillows.org>
155 L: netdev@vger.kernel.org
157 F: drivers/net/ethernet/3com/typhoon*
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
163 W: http://www.lsi.com
166 53C700 AND 53C700-66 SCSI DRIVER
167 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L: linux-scsi@vger.kernel.org
170 F: drivers/scsi/53c700*
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
178 F: Documentation/networking/6lowpan.rst
179 F: include/net/6lowpan.h
182 6PACK NETWORK DRIVER FOR AX.25
183 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L: linux-hams@vger.kernel.org
186 F: drivers/net/hamradio/6pack.c
188 802.11 (including CFG80211/NL80211)
189 M: Johannes Berg <johannes@sipsolutions.net>
190 L: linux-wireless@vger.kernel.org
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.rst
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
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M: Heiner Kallweit <hkallweit1@gmail.com>
207 M: nic_swsd@realtek.com
208 L: netdev@vger.kernel.org
210 F: drivers/net/ethernet/realtek/r8169*
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L: linux-serial@vger.kernel.org
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
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L: netdev@vger.kernel.org
223 F: drivers/net/ethernet/8390/
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
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
238 F: include/trace/events/9p.h
239 F: include/uapi/linux/virtio_9p.h
243 M: Antti Palosaari <crope@iki.fi>
244 L: linux-media@vger.kernel.org
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*
252 AACRAID SCSI RAID DRIVER
253 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L: linux-scsi@vger.kernel.org
256 W: http://www.adaptec.com/
257 F: Documentation/scsi/aacraid.rst
258 F: drivers/scsi/aacraid/
261 L: linux-api@vger.kernel.org
262 F: include/linux/syscalls.h
265 X: arch/*/include/uapi/
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M: Hans de Goede <hdegoede@redhat.com>
269 L: linux-hwmon@vger.kernel.org
271 F: drivers/hwmon/abituguru.c
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M: Alistair John Strachan <alistair@devzero.co.uk>
275 L: linux-hwmon@vger.kernel.org
277 F: drivers/hwmon/abituguru3.c
279 ACCES 104-DIO-48E GPIO DRIVER
280 M: William Breathitt Gray <vilhelm.gray@gmail.com>
281 L: linux-gpio@vger.kernel.org
283 F: drivers/gpio/gpio-104-dio-48e.c
285 ACCES 104-IDI-48 GPIO DRIVER
286 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L: linux-gpio@vger.kernel.org
289 F: drivers/gpio/gpio-104-idi-48.c
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L: linux-gpio@vger.kernel.org
295 F: drivers/gpio/gpio-104-idio-16.c
297 ACCES 104-QUAD-8 DRIVER
298 M: William Breathitt Gray <vilhelm.gray@gmail.com>
299 M: Syed Nayyar Waris <syednwaris@gmail.com>
300 L: linux-iio@vger.kernel.org
302 F: Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
303 F: drivers/counter/104-quad-8.c
305 ACCES PCI-IDIO-16 GPIO DRIVER
306 M: William Breathitt Gray <vilhelm.gray@gmail.com>
307 L: linux-gpio@vger.kernel.org
309 F: drivers/gpio/gpio-pci-idio-16.c
311 ACCES PCIe-IDIO-24 GPIO DRIVER
312 M: William Breathitt Gray <vilhelm.gray@gmail.com>
313 L: linux-gpio@vger.kernel.org
315 F: drivers/gpio/gpio-pcie-idio-24.c
318 M: Jes Sorensen <jes@trained-monkey.org>
319 L: linux-acenic@sunsite.dk
321 F: drivers/net/ethernet/alteon/acenic*
323 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
324 M: Peter Kaestle <peter@piie.net>
325 L: platform-driver-x86@vger.kernel.org
327 W: http://piie.net/?section=acerhdf
328 F: drivers/platform/x86/acerhdf.c
330 ACER WMI LAPTOP EXTRAS
331 M: "Lee, Chun-Yi" <jlee@suse.com>
332 L: platform-driver-x86@vger.kernel.org
334 F: drivers/platform/x86/acer-wmi.c
337 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
338 M: Len Brown <lenb@kernel.org>
339 L: linux-acpi@vger.kernel.org
341 W: https://01.org/linux-acpi
342 Q: https://patchwork.kernel.org/project/linux-acpi/list/
343 B: https://bugzilla.kernel.org
344 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
345 F: Documentation/ABI/testing/configfs-acpi
346 F: Documentation/ABI/testing/sysfs-bus-acpi
347 F: Documentation/firmware-guide/acpi/
349 F: drivers/pci/*/*acpi*
350 F: drivers/pci/*acpi*
351 F: drivers/pnp/pnpacpi/
353 F: include/linux/acpi.h
354 F: include/linux/fwnode.h
358 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
359 M: Len Brown <lenb@kernel.org>
360 R: James Morse <james.morse@arm.com>
361 R: Tony Luck <tony.luck@intel.com>
362 R: Borislav Petkov <bp@alien8.de>
363 L: linux-acpi@vger.kernel.org
364 F: drivers/acpi/apei/
366 ACPI COMPONENT ARCHITECTURE (ACPICA)
367 M: Robert Moore <robert.moore@intel.com>
368 M: Erik Kaneda <erik.kaneda@intel.com>
369 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
370 L: linux-acpi@vger.kernel.org
373 W: https://acpica.org/
374 W: https://github.com/acpica/acpica/
375 Q: https://patchwork.kernel.org/project/linux-acpi/list/
376 B: https://bugzilla.kernel.org
377 B: https://bugs.acpica.org
378 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
379 F: drivers/acpi/acpica/
384 M: Zhang Rui <rui.zhang@intel.com>
385 L: linux-acpi@vger.kernel.org
387 W: https://01.org/linux-acpi
388 B: https://bugzilla.kernel.org
389 F: drivers/acpi/fan.c
391 ACPI FOR ARM64 (ACPI/arm64)
392 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
393 M: Hanjun Guo <guohanjun@huawei.com>
394 M: Sudeep Holla <sudeep.holla@arm.com>
395 L: linux-acpi@vger.kernel.org
396 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
398 F: drivers/acpi/arm64
400 ACPI I2C MULTI INSTANTIATE DRIVER
401 M: Hans de Goede <hdegoede@redhat.com>
402 L: platform-driver-x86@vger.kernel.org
404 F: drivers/platform/x86/i2c-multi-instantiate.c
407 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
408 M: Len Brown <lenb@kernel.org>
409 R: Andy Shevchenko <andy@kernel.org>
410 R: Mika Westerberg <mika.westerberg@linux.intel.com>
411 L: linux-acpi@vger.kernel.org
413 Q: https://patchwork.kernel.org/project/linux-acpi/list/
414 B: https://bugzilla.kernel.org
415 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
416 F: drivers/acpi/pmic/
419 M: Zhang Rui <rui.zhang@intel.com>
420 L: linux-acpi@vger.kernel.org
422 W: https://01.org/linux-acpi
423 B: https://bugzilla.kernel.org
424 F: drivers/acpi/*thermal*
427 M: Zhang Rui <rui.zhang@intel.com>
428 L: linux-acpi@vger.kernel.org
430 W: https://01.org/linux-acpi
431 B: https://bugzilla.kernel.org
432 F: drivers/acpi/acpi_video.c
435 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
436 L: linux-acpi@vger.kernel.org
437 L: iommu@lists.linux-foundation.org
439 F: drivers/acpi/viot.c
440 F: include/linux/acpi_viot.h
443 L: platform-driver-x86@vger.kernel.org
445 F: drivers/platform/x86/wmi.c
446 F: include/uapi/linux/wmi.h
448 ACRN HYPERVISOR SERVICE MODULE
449 M: Shuo Liu <shuo.a.liu@intel.com>
450 L: acrn-dev@lists.projectacrn.org (subscribers-only)
452 W: https://projectacrn.org
453 F: Documentation/virt/acrn/
454 F: drivers/virt/acrn/
455 F: include/uapi/linux/acrn.h
457 AD1889 ALSA SOUND DRIVER
458 L: linux-parisc@vger.kernel.org
460 W: https://parisc.wiki.kernel.org/index.php/AD1889
461 F: sound/pci/ad1889.*
463 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
464 M: Michael Hennerich <michael.hennerich@analog.com>
466 W: http://wiki.analog.com/AD5254
467 W: http://ez.analog.com/community/linux-device-drivers
468 F: drivers/misc/ad525x_dpot.c
470 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
471 M: Michael Hennerich <michael.hennerich@analog.com>
473 W: http://wiki.analog.com/AD5398
474 W: http://ez.analog.com/community/linux-device-drivers
475 F: drivers/regulator/ad5398.c
477 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
478 M: Michael Hennerich <michael.hennerich@analog.com>
480 W: http://wiki.analog.com/AD7142
481 W: http://ez.analog.com/community/linux-device-drivers
482 F: drivers/input/misc/ad714x.c
484 AD7877 TOUCHSCREEN DRIVER
485 M: Michael Hennerich <michael.hennerich@analog.com>
487 W: http://wiki.analog.com/AD7877
488 W: http://ez.analog.com/community/linux-device-drivers
489 F: drivers/input/touchscreen/ad7877.c
491 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
492 M: Michael Hennerich <michael.hennerich@analog.com>
494 W: http://wiki.analog.com/AD7879
495 W: http://ez.analog.com/community/linux-device-drivers
496 F: drivers/input/touchscreen/ad7879.c
498 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
499 M: Jiri Kosina <jikos@kernel.org>
502 ADF7242 IEEE 802.15.4 RADIO DRIVER
503 M: Michael Hennerich <michael.hennerich@analog.com>
504 L: linux-wpan@vger.kernel.org
506 W: https://wiki.analog.com/ADF7242
507 W: http://ez.analog.com/community/linux-device-drivers
508 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
509 F: drivers/net/ieee802154/adf7242.c
511 ADM1025 HARDWARE MONITOR DRIVER
512 M: Jean Delvare <jdelvare@suse.com>
513 L: linux-hwmon@vger.kernel.org
515 F: Documentation/hwmon/adm1025.rst
516 F: drivers/hwmon/adm1025.c
518 ADM1029 HARDWARE MONITOR DRIVER
519 M: Corentin Labbe <clabbe.montjoie@gmail.com>
520 L: linux-hwmon@vger.kernel.org
522 F: drivers/hwmon/adm1029.c
524 ADM8211 WIRELESS DRIVER
525 L: linux-wireless@vger.kernel.org
527 W: https://wireless.wiki.kernel.org/
528 F: drivers/net/wireless/admtek/adm8211.*
530 ADP1653 FLASH CONTROLLER DRIVER
531 M: Sakari Ailus <sakari.ailus@iki.fi>
532 L: linux-media@vger.kernel.org
534 F: drivers/media/i2c/adp1653.c
535 F: include/media/i2c/adp1653.h
537 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
538 M: Michael Hennerich <michael.hennerich@analog.com>
540 W: http://wiki.analog.com/ADP5520
541 W: http://ez.analog.com/community/linux-device-drivers
542 F: drivers/gpio/gpio-adp5520.c
543 F: drivers/input/keyboard/adp5520-keys.c
544 F: drivers/leds/leds-adp5520.c
545 F: drivers/mfd/adp5520.c
546 F: drivers/video/backlight/adp5520_bl.c
548 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
549 M: Michael Hennerich <michael.hennerich@analog.com>
551 W: http://wiki.analog.com/ADP5588
552 W: http://ez.analog.com/community/linux-device-drivers
553 F: drivers/gpio/gpio-adp5588.c
554 F: drivers/input/keyboard/adp5588-keys.c
556 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
557 M: Michael Hennerich <michael.hennerich@analog.com>
559 W: http://wiki.analog.com/ADP8860
560 W: http://ez.analog.com/community/linux-device-drivers
561 F: drivers/video/backlight/adp8860_bl.c
564 M: Colin Leroy <colin@colino.net>
566 F: drivers/macintosh/therm_adt746x.c
568 ADT7475 HARDWARE MONITOR DRIVER
569 M: Jean Delvare <jdelvare@suse.com>
570 L: linux-hwmon@vger.kernel.org
572 F: Documentation/hwmon/adt7475.rst
573 F: drivers/hwmon/adt7475.c
576 M: Matthew Wilcox <willy@infradead.org>
577 M: Hannes Reinecke <hare@suse.com>
578 L: linux-scsi@vger.kernel.org
580 F: Documentation/scsi/advansys.rst
581 F: drivers/scsi/advansys.c
583 ADVANTECH SWBTN DRIVER
584 M: Andrea Ho <Andrea.Ho@advantech.com.tw>
585 L: platform-driver-x86@vger.kernel.org
587 F: drivers/platform/x86/adv_swbutton.c
589 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
590 M: Michael Hennerich <michael.hennerich@analog.com>
592 W: http://wiki.analog.com/ADXL345
593 W: http://ez.analog.com/community/linux-device-drivers
594 F: Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
595 F: drivers/input/misc/adxl34x.c
597 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
598 M: Michael Hennerich <michael.hennerich@analog.com>
600 W: http://ez.analog.com/community/linux-device-drivers
601 F: Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
602 F: drivers/iio/accel/adxl372.c
603 F: drivers/iio/accel/adxl372_i2c.c
604 F: drivers/iio/accel/adxl372_spi.c
607 M: Antti Palosaari <crope@iki.fi>
608 L: linux-media@vger.kernel.org
610 W: https://linuxtv.org
611 W: http://palosaari.fi/linux/
612 Q: http://patchwork.linuxtv.org/project/linux-media/list/
613 T: git git://linuxtv.org/anttip/media_tree.git
614 F: drivers/media/dvb-frontends/af9013*
617 M: Antti Palosaari <crope@iki.fi>
618 L: linux-media@vger.kernel.org
620 W: https://linuxtv.org
621 W: http://palosaari.fi/linux/
622 Q: http://patchwork.linuxtv.org/project/linux-media/list/
623 T: git git://linuxtv.org/anttip/media_tree.git
624 F: drivers/media/dvb-frontends/af9033*
627 M: David Sterba <dsterba@suse.com>
628 L: linux-fsdevel@vger.kernel.org
630 F: Documentation/filesystems/affs.rst
634 M: David Howells <dhowells@redhat.com>
635 M: Marc Dionne <marc.dionne@auristor.com>
636 L: linux-afs@lists.infradead.org
638 W: https://www.infradead.org/~dhowells/kafs/
639 F: Documentation/filesystems/afs.rst
641 F: include/trace/events/afs.h
644 M: David Airlie <airlied@linux.ie>
646 T: git git://anongit.freedesktop.org/drm/drm
648 F: include/linux/agp*
649 F: include/uapi/linux/agp*
652 M: "Juergen E. Fischer" <fischer@norbit.de>
653 L: linux-scsi@vger.kernel.org
655 F: drivers/scsi/aha152x*
656 F: drivers/scsi/pcmcia/aha152x*
658 AIC7XXX / AIC79XX SCSI DRIVER
659 M: Hannes Reinecke <hare@suse.com>
660 L: linux-scsi@vger.kernel.org
662 F: drivers/scsi/aic7xxx/
664 AIMSLAB FM RADIO RECEIVER DRIVER
665 M: Hans Verkuil <hverkuil@xs4all.nl>
666 L: linux-media@vger.kernel.org
668 W: https://linuxtv.org
669 T: git git://linuxtv.org/media_tree.git
670 F: drivers/media/radio/radio-aimslab*
673 M: Benjamin LaHaise <bcrl@kvack.org>
674 L: linux-aio@kvack.org
677 F: include/linux/*aio*.h
680 M: Antti Palosaari <crope@iki.fi>
681 L: linux-media@vger.kernel.org
683 W: https://linuxtv.org
684 W: http://palosaari.fi/linux/
685 Q: http://patchwork.linuxtv.org/project/linux-media/list/
686 T: git git://linuxtv.org/anttip/media_tree.git
687 F: drivers/media/usb/airspy/
689 ALACRITECH GIGABIT ETHERNET DRIVER
690 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
692 F: drivers/net/ethernet/alacritech/*
694 ALCATEL SPEEDTOUCH USB DRIVER
695 M: Duncan Sands <duncan.sands@free.fr>
696 L: linux-usb@vger.kernel.org
698 W: http://www.linux-usb.org/SpeedTouch/
699 F: drivers/usb/atm/speedtch.c
700 F: drivers/usb/atm/usbatm.c
702 ALCHEMY AU1XX0 MMC DRIVER
703 M: Manuel Lauss <manuel.lauss@gmail.com>
705 F: drivers/mmc/host/au1xmmc.c
708 M: Rudolf Marek <r.marek@assembler.cz>
709 L: linux-i2c@vger.kernel.org
711 F: Documentation/i2c/busses/i2c-ali1563.rst
712 F: drivers/i2c/busses/i2c-ali1563.c
715 L: Dell.Client.Kernel@dell.com
717 F: drivers/platform/x86/dell/alienware-wmi.c
719 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
720 M: Tomislav Denis <tomislav.denis@avl.com>
721 L: linux-iio@vger.kernel.org
723 W: http://www.allsensors.com/
724 F: Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
725 F: drivers/iio/pressure/dlhl60d.c
727 ALLEGRO DVT VIDEO IP CORE DRIVER
728 M: Michael Tretter <m.tretter@pengutronix.de>
729 R: Pengutronix Kernel Team <kernel@pengutronix.de>
730 L: linux-media@vger.kernel.org
732 F: Documentation/devicetree/bindings/media/allegro,al5e.yaml
733 F: drivers/media/platform/allegro-dvt/
735 ALLWINNER A10 CSI DRIVER
736 M: Maxime Ripard <mripard@kernel.org>
737 L: linux-media@vger.kernel.org
739 T: git git://linuxtv.org/media_tree.git
740 F: Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
741 F: drivers/media/platform/sunxi/sun4i-csi/
743 ALLWINNER CPUFREQ DRIVER
744 M: Yangtao Li <tiny.windzz@gmail.com>
745 L: linux-pm@vger.kernel.org
747 F: Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
748 F: drivers/cpufreq/sun50i-cpufreq-nvmem.c
750 ALLWINNER CRYPTO DRIVERS
751 M: Corentin Labbe <clabbe.montjoie@gmail.com>
752 L: linux-crypto@vger.kernel.org
754 F: drivers/crypto/allwinner/
756 ALLWINNER THERMAL DRIVER
757 M: Vasily Khoruzhick <anarsoul@gmail.com>
758 M: Yangtao Li <tiny.windzz@gmail.com>
759 L: linux-pm@vger.kernel.org
761 F: Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
762 F: drivers/thermal/sun8i_thermal.c
765 M: Maxime Ripard <mripard@kernel.org>
766 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
767 L: linux-media@vger.kernel.org
769 F: drivers/staging/media/sunxi/cedrus/
772 M: Richard Henderson <rth@twiddle.net>
773 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
774 M: Matt Turner <mattst88@gmail.com>
775 L: linux-alpha@vger.kernel.org
779 ALPS PS/2 TOUCHPAD DRIVER
780 R: Pali Rohár <pali@kernel.org>
781 F: drivers/input/mouse/alps.*
783 ALTERA I2C CONTROLLER DRIVER
784 M: Thor Thayer <thor.thayer@linux.intel.com>
786 F: Documentation/devicetree/bindings/i2c/i2c-altera.txt
787 F: drivers/i2c/busses/i2c-altera.c
789 ALTERA MAILBOX DRIVER
790 M: Ley Foon Tan <ley.foon.tan@intel.com>
792 F: drivers/mailbox/mailbox-altera.c
794 ALTERA MSGDMA IP CORE DRIVER
795 M: Olivier Dautricourt <olivier.dautricourt@orolia.com>
796 R: Stefan Roese <sr@denx.de>
797 L: dmaengine@vger.kernel.org
799 F: Documentation/devicetree/bindings/dma/altr,msgdma.yaml
800 F: drivers/dma/altera-msgdma.c
803 M: Joyce Ooi <joyce.ooi@intel.com>
804 L: linux-gpio@vger.kernel.org
806 F: drivers/gpio/gpio-altera.c
808 ALTERA SYSTEM MANAGER DRIVER
809 M: Thor Thayer <thor.thayer@linux.intel.com>
811 F: drivers/mfd/altera-sysmgr.c
812 F: include/linux/mfd/altera-sysmgr.h
814 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
815 M: Thor Thayer <thor.thayer@linux.intel.com>
817 F: drivers/gpio/gpio-altera-a10sr.c
818 F: drivers/mfd/altera-a10sr.c
819 F: drivers/reset/reset-a10sr.c
820 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
821 F: include/linux/mfd/altera-a10sr.h
823 ALTERA TRIPLE SPEED ETHERNET DRIVER
824 M: Joyce Ooi <joyce.ooi@intel.com>
825 L: netdev@vger.kernel.org
827 F: drivers/net/ethernet/altera/
829 ALTERA UART/JTAG UART SERIAL DRIVERS
830 M: Tobias Klauser <tklauser@distanz.ch>
831 L: linux-serial@vger.kernel.org
833 F: drivers/tty/serial/altera_jtaguart.c
834 F: drivers/tty/serial/altera_uart.c
835 F: include/linux/altera_jtaguart.h
836 F: include/linux/altera_uart.h
838 AMAZON ANNAPURNA LABS FIC DRIVER
839 M: Talel Shenhar <talel@amazon.com>
841 F: Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
842 F: drivers/irqchip/irq-al-fic.c
844 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
845 M: Talel Shenhar <talel@amazon.com>
846 M: Talel Shenhar <talelshenhar@gmail.com>
848 F: Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
849 F: drivers/edac/al_mc_edac.c
851 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
852 M: Talel Shenhar <talel@amazon.com>
854 F: Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
855 F: drivers/thermal/thermal_mmio.c
857 AMAZON ETHERNET DRIVERS
858 M: Netanel Belgazal <netanel@amazon.com>
859 M: Arthur Kiyanovski <akiyano@amazon.com>
860 R: Guy Tzalik <gtzalik@amazon.com>
861 R: Saeed Bishara <saeedb@amazon.com>
862 L: netdev@vger.kernel.org
864 F: Documentation/networking/device_drivers/ethernet/amazon/ena.rst
865 F: drivers/net/ethernet/amazon/
867 AMAZON RDMA EFA DRIVER
868 M: Gal Pressman <galpress@amazon.com>
869 R: Yossi Leybovich <sleybo@amazon.com>
870 L: linux-rdma@vger.kernel.org
872 Q: https://patchwork.kernel.org/project/linux-rdma/list/
873 F: drivers/infiniband/hw/efa/
874 F: include/uapi/rdma/efa-abi.h
876 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
877 M: Tom Lendacky <thomas.lendacky@amd.com>
878 M: John Allen <john.allen@amd.com>
879 L: linux-crypto@vger.kernel.org
881 F: drivers/crypto/ccp/
882 F: include/linux/ccp.h
884 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
885 M: Brijesh Singh <brijesh.singh@amd.com>
886 M: Tom Lendacky <thomas.lendacky@amd.com>
887 L: linux-crypto@vger.kernel.org
889 F: drivers/crypto/ccp/sev*
890 F: include/uapi/linux/psp-sev.h
893 M: Harry Wentland <harry.wentland@amd.com>
894 M: Leo Li <sunpeng.li@amd.com>
895 L: amd-gfx@lists.freedesktop.org
897 T: git https://gitlab.freedesktop.org/agd5f/linux.git
898 F: drivers/gpu/drm/amd/display/
900 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
901 M: Huang Rui <ray.huang@amd.com>
902 L: linux-hwmon@vger.kernel.org
904 F: Documentation/hwmon/fam15h_power.rst
905 F: drivers/hwmon/fam15h_power.c
908 M: Enrico Weigelt, metux IT consult <info@metux.net>
909 L: linux-gpio@vger.kernel.org
911 F: drivers/gpio/gpio-amd-fch.c
912 F: include/linux/platform_data/gpio/gpio-amd-fch.h
914 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
915 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
917 F: drivers/usb/gadget/udc/amd5536udc.*
919 AMD GEODE PROCESSOR/CHIPSET SUPPORT
920 M: Andres Salomon <dilinger@queued.net>
921 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
923 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
924 F: arch/x86/include/asm/geode.h
925 F: drivers/char/hw_random/geode-rng.c
926 F: drivers/crypto/geode*
927 F: drivers/video/fbdev/geode/
930 M: Joerg Roedel <joro@8bytes.org>
931 L: iommu@lists.linux-foundation.org
933 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
934 F: drivers/iommu/amd/
935 F: include/linux/amd-iommu.h
938 M: Felix Kuehling <Felix.Kuehling@amd.com>
939 L: amd-gfx@lists.freedesktop.org
941 T: git https://gitlab.freedesktop.org/agd5f/linux.git
942 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
943 F: drivers/gpu/drm/amd/amdkfd/
944 F: drivers/gpu/drm/amd/include/cik_structs.h
945 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
946 F: drivers/gpu/drm/amd/include/v9_structs.h
947 F: drivers/gpu/drm/amd/include/vi_structs.h
948 F: include/uapi/linux/kfd_ioctl.h
951 M: Sanjay R Mehta <sanju.mehta@amd.com>
953 F: drivers/spi/spi-amd.c
956 M: Elie Morisse <syniurge@gmail.com>
957 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
958 M: Shyam Sundar S K <shyam-sundar.s-k@amd.com>
959 L: linux-i2c@vger.kernel.org
961 F: drivers/i2c/busses/i2c-amd-mp2*
964 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
965 L: platform-driver-x86@vger.kernel.org
967 F: drivers/platform/x86/amd-pmc.*
970 M: Evan Quan <evan.quan@amd.com>
971 L: amd-gfx@lists.freedesktop.org
973 T: git https://gitlab.freedesktop.org/agd5f/linux.git
974 F: drivers/gpu/drm/amd/pm/powerplay/
976 AMD SEATTLE DEVICE TREE SUPPORT
977 M: Brijesh Singh <brijeshkumar.singh@amd.com>
978 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
979 M: Tom Lendacky <thomas.lendacky@amd.com>
981 F: arch/arm64/boot/dts/amd/
984 M: Tom Lendacky <thomas.lendacky@amd.com>
985 L: netdev@vger.kernel.org
987 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
988 F: drivers/net/ethernet/amd/xgbe/
990 AMD SENSOR FUSION HUB DRIVER
991 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
992 M: Basavaraj Natikar <basavaraj.natikar@amd.com>
993 L: linux-input@vger.kernel.org
995 F: Documentation/hid/amd-sfh*
996 F: drivers/hid/amd-sfh-hid/
999 M: Christian Eggers <ceggers@arri.de>
1000 L: linux-iio@vger.kernel.org
1002 F: Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1003 F: drivers/iio/light/as73211.c
1005 ANALOG DEVICES INC AD7192 DRIVER
1006 M: Alexandru Tachici <alexandru.tachici@analog.com>
1007 L: linux-iio@vger.kernel.org
1009 W: http://ez.analog.com/community/linux-device-drivers
1010 F: Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1011 F: drivers/iio/adc/ad7192.c
1013 ANALOG DEVICES INC AD7292 DRIVER
1014 M: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1015 L: linux-iio@vger.kernel.org
1017 W: http://ez.analog.com/community/linux-device-drivers
1018 F: Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1019 F: drivers/iio/adc/ad7292.c
1021 ANALOG DEVICES INC AD7768-1 DRIVER
1022 M: Michael Hennerich <Michael.Hennerich@analog.com>
1023 L: linux-iio@vger.kernel.org
1025 W: http://ez.analog.com/community/linux-device-drivers
1026 F: Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1027 F: drivers/iio/adc/ad7768-1.c
1029 ANALOG DEVICES INC AD7780 DRIVER
1030 M: Michael Hennerich <Michael.Hennerich@analog.com>
1031 M: Renato Lui Geh <renatogeh@gmail.com>
1032 L: linux-iio@vger.kernel.org
1034 W: http://ez.analog.com/community/linux-device-drivers
1035 F: Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1036 F: drivers/iio/adc/ad7780.c
1038 ANALOG DEVICES INC AD9389B DRIVER
1039 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1040 L: linux-media@vger.kernel.org
1042 F: drivers/media/i2c/ad9389b*
1044 ANALOG DEVICES INC ADGS1408 DRIVER
1045 M: Mircea Caprioru <mircea.caprioru@analog.com>
1047 F: Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1048 F: drivers/mux/adgs1408.c
1050 ANALOG DEVICES INC ADIN DRIVER
1051 M: Michael Hennerich <michael.hennerich@analog.com>
1052 L: netdev@vger.kernel.org
1054 W: http://ez.analog.com/community/linux-device-drivers
1055 F: Documentation/devicetree/bindings/net/adi,adin.yaml
1056 F: drivers/net/phy/adin.c
1058 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1059 M: Nuno Sa <nuno.sa@analog.com>
1060 L: linux-iio@vger.kernel.org
1062 F: drivers/iio/imu/adis.c
1063 F: include/linux/iio/imu/adis.h
1065 ANALOG DEVICES INC ADIS16460 DRIVER
1066 M: Dragos Bogdan <dragos.bogdan@analog.com>
1067 L: linux-iio@vger.kernel.org
1069 W: http://ez.analog.com/community/linux-device-drivers
1070 F: Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1071 F: drivers/iio/imu/adis16460.c
1073 ANALOG DEVICES INC ADIS16475 DRIVER
1074 M: Nuno Sa <nuno.sa@analog.com>
1075 L: linux-iio@vger.kernel.org
1076 W: http://ez.analog.com/community/linux-device-drivers
1078 F: drivers/iio/imu/adis16475.c
1079 F: Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1081 ANALOG DEVICES INC ADM1177 DRIVER
1082 M: Michael Hennerich <Michael.Hennerich@analog.com>
1083 L: linux-hwmon@vger.kernel.org
1085 W: http://ez.analog.com/community/linux-device-drivers
1086 F: Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1087 F: drivers/hwmon/adm1177.c
1089 ANALOG DEVICES INC ADP5061 DRIVER
1090 M: Michael Hennerich <Michael.Hennerich@analog.com>
1091 L: linux-pm@vger.kernel.org
1093 W: http://ez.analog.com/community/linux-device-drivers
1094 F: drivers/power/supply/adp5061.c
1096 ANALOG DEVICES INC ADV7180 DRIVER
1097 M: Lars-Peter Clausen <lars@metafoo.de>
1098 L: linux-media@vger.kernel.org
1100 W: http://ez.analog.com/community/linux-device-drivers
1101 F: drivers/media/i2c/adv7180.c
1102 F: Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1104 ANALOG DEVICES INC ADV748X DRIVER
1105 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
1106 L: linux-media@vger.kernel.org
1108 F: drivers/media/i2c/adv748x/*
1110 ANALOG DEVICES INC ADV7511 DRIVER
1111 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1112 L: linux-media@vger.kernel.org
1114 F: drivers/media/i2c/adv7511*
1116 ANALOG DEVICES INC ADV7604 DRIVER
1117 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1118 L: linux-media@vger.kernel.org
1120 F: drivers/media/i2c/adv7604*
1121 F: Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1123 ANALOG DEVICES INC ADV7842 DRIVER
1124 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1125 L: linux-media@vger.kernel.org
1127 F: drivers/media/i2c/adv7842*
1129 ANALOG DEVICES INC ADXRS290 DRIVER
1130 M: Nishant Malpani <nish.malpani25@gmail.com>
1131 L: linux-iio@vger.kernel.org
1133 F: drivers/iio/gyro/adxrs290.c
1134 F: Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1136 ANALOG DEVICES INC ASOC CODEC DRIVERS
1137 M: Lars-Peter Clausen <lars@metafoo.de>
1138 M: Nuno Sá <nuno.sa@analog.com>
1139 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1141 W: http://wiki.analog.com/
1142 W: http://ez.analog.com/community/linux-device-drivers
1143 F: sound/soc/codecs/ad1*
1144 F: sound/soc/codecs/ad7*
1145 F: sound/soc/codecs/adau*
1146 F: sound/soc/codecs/adav*
1147 F: sound/soc/codecs/sigmadsp.*
1148 F: sound/soc/codecs/ssm*
1150 ANALOG DEVICES INC DMA DRIVERS
1151 M: Lars-Peter Clausen <lars@metafoo.de>
1153 W: http://ez.analog.com/community/linux-device-drivers
1154 F: drivers/dma/dma-axi-dmac.c
1156 ANALOG DEVICES INC IIO DRIVERS
1157 M: Lars-Peter Clausen <lars@metafoo.de>
1158 M: Michael Hennerich <Michael.Hennerich@analog.com>
1160 W: http://wiki.analog.com/
1161 W: http://ez.analog.com/community/linux-device-drivers
1162 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1163 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1164 F: Documentation/devicetree/bindings/iio/*/adi,*
1165 F: Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1166 F: drivers/iio/*/ad*
1167 F: drivers/iio/adc/ltc249*
1168 F: drivers/iio/amplifiers/hmc425a.c
1169 F: drivers/staging/iio/*/ad*
1170 X: drivers/iio/*/adjd*
1172 ANALOGBITS PLL LIBRARIES
1173 M: Paul Walmsley <paul.walmsley@sifive.com>
1175 F: drivers/clk/analogbits/*
1176 F: include/linux/clk/analogbits*
1179 M: Nick Hu <nickhu@andestech.com>
1180 M: Greentime Hu <green.hu@gmail.com>
1181 M: Vincent Chen <deanbo422@gmail.com>
1183 T: git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1184 F: Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1185 F: Documentation/devicetree/bindings/nds32/
1190 ANDROID CONFIG FRAGMENTS
1191 M: Rob Herring <robh@kernel.org>
1193 F: kernel/configs/android*
1196 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1197 M: Arve Hjønnevåg <arve@android.com>
1198 M: Todd Kjos <tkjos@android.com>
1199 M: Martijn Coenen <maco@android.com>
1200 M: Joel Fernandes <joel@joelfernandes.org>
1201 M: Christian Brauner <christian@brauner.io>
1202 M: Hridya Valsaraju <hridya@google.com>
1203 M: Suren Baghdasaryan <surenb@google.com>
1204 L: linux-kernel@vger.kernel.org
1206 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1208 F: drivers/staging/android/
1210 ANDROID GOLDFISH PIC DRIVER
1211 M: Miodrag Dinic <miodrag.dinic@mips.com>
1213 F: Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1214 F: drivers/irqchip/irq-goldfish-pic.c
1216 ANDROID GOLDFISH RTC DRIVER
1217 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
1219 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1220 F: drivers/rtc/rtc-goldfish.c
1222 AOA (Apple Onboard Audio) ALSA DRIVER
1223 M: Johannes Berg <johannes@sipsolutions.net>
1224 L: linuxppc-dev@lists.ozlabs.org
1225 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1229 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1230 M: William Breathitt Gray <vilhelm.gray@gmail.com>
1231 L: linux-iio@vger.kernel.org
1233 F: drivers/iio/adc/stx104.c
1236 M: Jiri Kosina <jikos@kernel.org>
1238 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1239 F: arch/x86/kernel/apm_32.c
1240 F: drivers/char/apm-emulation.c
1241 F: include/linux/apm_bios.h
1242 F: include/uapi/linux/apm_bios.h
1244 APPARMOR SECURITY MODULE
1245 M: John Johansen <john.johansen@canonical.com>
1246 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1248 W: wiki.apparmor.net
1249 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1250 F: Documentation/admin-guide/LSM/apparmor.rst
1251 F: security/apparmor/
1253 APPLE BCM5974 MULTITOUCH DRIVER
1254 M: Henrik Rydberg <rydberg@bitmath.org>
1255 L: linux-input@vger.kernel.org
1257 F: drivers/input/mouse/bcm5974.c
1260 M: Henrik Rydberg <rydberg@bitmath.org>
1261 L: linux-hwmon@vger.kernel.org
1263 F: drivers/hwmon/applesmc.c
1265 APPLETALK NETWORK LAYER
1266 L: netdev@vger.kernel.org
1268 F: drivers/net/appletalk/
1269 F: include/linux/atalk.h
1270 F: include/uapi/linux/atalk.h
1273 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1274 M: Khuong Dinh <khuong@os.amperecomputing.com>
1276 F: arch/arm64/boot/dts/apm/
1278 APPLIED MICRO (APM) X-GENE SOC EDAC
1279 M: Khuong Dinh <khuong@os.amperecomputing.com>
1281 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1282 F: drivers/edac/xgene_edac.c
1284 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1285 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1286 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1288 F: drivers/net/ethernet/apm/xgene-v2/
1290 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1291 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1292 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1293 M: Quan Nguyen <quan@os.amperecomputing.com>
1295 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1296 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1297 F: drivers/net/ethernet/apm/xgene/
1298 F: drivers/net/mdio/mdio-xgene.c
1300 APPLIED MICRO (APM) X-GENE SOC PMU
1301 M: Khuong Dinh <khuong@os.amperecomputing.com>
1303 F: Documentation/admin-guide/perf/xgene-pmu.rst
1304 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1305 F: drivers/perf/xgene_pmu.c
1307 APTINA CAMERA SENSOR PLL
1308 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1309 L: linux-media@vger.kernel.org
1311 F: drivers/media/i2c/aptina-pll.*
1313 AQUANTIA ETHERNET DRIVER (atlantic)
1314 M: Igor Russkikh <irusskikh@marvell.com>
1315 L: netdev@vger.kernel.org
1317 W: https://www.marvell.com/
1318 Q: https://patchwork.kernel.org/project/netdevbpf/list/
1319 F: Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1320 F: drivers/net/ethernet/aquantia/atlantic/
1322 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1323 M: Egor Pomozov <epomozov@marvell.com>
1324 L: netdev@vger.kernel.org
1326 W: http://www.aquantia.com
1327 F: drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1329 ARASAN NAND CONTROLLER DRIVER
1330 M: Miquel Raynal <miquel.raynal@bootlin.com>
1331 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1332 L: linux-mtd@lists.infradead.org
1334 F: Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1335 F: drivers/mtd/nand/raw/arasan-nand-controller.c
1337 ARC FRAMEBUFFER DRIVER
1338 M: Jaya Kumar <jayalk@intworks.biz>
1340 F: drivers/video/fbdev/arcfb.c
1341 F: drivers/video/fbdev/core/fb_defio.c
1344 M: Alexey Brodkin <abrodkin@synopsys.com>
1346 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
1347 F: drivers/gpu/drm/tiny/arcpgu.c
1349 ARCNET NETWORK LAYER
1350 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
1351 L: netdev@vger.kernel.org
1353 F: drivers/net/arcnet/
1354 F: include/uapi/linux/if_arcnet.h
1356 ARM ARCHITECTED TIMER DRIVER
1357 M: Mark Rutland <mark.rutland@arm.com>
1358 M: Marc Zyngier <maz@kernel.org>
1359 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1361 F: arch/arm/include/asm/arch_timer.h
1362 F: arch/arm64/include/asm/arch_timer.h
1363 F: drivers/clocksource/arm_arch_timer.c
1365 ARM HDLCD DRM DRIVER
1366 M: Liviu Dudau <liviu.dudau@arm.com>
1368 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
1369 F: drivers/gpu/drm/arm/hdlcd_*
1371 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1372 M: Linus Walleij <linus.walleij@linaro.org>
1373 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1375 F: Documentation/devicetree/bindings/arm/arm,integrator.yaml
1376 F: Documentation/devicetree/bindings/arm/arm,realview.yaml
1377 F: Documentation/devicetree/bindings/arm/arm,versatile.yaml
1378 F: Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1379 F: Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1380 F: Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1381 F: Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1382 F: Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1383 F: Documentation/devicetree/bindings/mtd/arm-versatile.txt
1384 F: arch/arm/boot/dts/arm-realview-*
1385 F: arch/arm/boot/dts/integrator*
1386 F: arch/arm/boot/dts/versatile*
1387 F: arch/arm/mach-integrator/
1388 F: arch/arm/mach-realview/
1389 F: arch/arm/mach-versatile/
1390 F: arch/arm/plat-versatile/
1391 F: drivers/bus/arm-integrator-lm.c
1392 F: drivers/clk/versatile/
1393 F: drivers/i2c/busses/i2c-versatile.c
1394 F: drivers/irqchip/irq-versatile-fpga.c
1395 F: drivers/mtd/maps/physmap-versatile.*
1396 F: drivers/power/reset/arm-versatile-reboot.c
1397 F: drivers/soc/versatile/
1399 ARM KOMEDA DRM-KMS DRIVER
1400 M: James (Qian) Wang <james.qian.wang@arm.com>
1401 M: Liviu Dudau <liviu.dudau@arm.com>
1402 M: Mihail Atanassov <mihail.atanassov@arm.com>
1403 L: Mali DP Maintainers <malidp@foss.arm.com>
1405 T: git git://anongit.freedesktop.org/drm/drm-misc
1406 F: Documentation/devicetree/bindings/display/arm,komeda.txt
1407 F: Documentation/gpu/komeda-kms.rst
1408 F: drivers/gpu/drm/arm/display/include/
1409 F: drivers/gpu/drm/arm/display/komeda/
1411 ARM MALI PANFROST DRM DRIVER
1412 M: Rob Herring <robh@kernel.org>
1413 M: Tomeu Vizoso <tomeu.vizoso@collabora.com>
1414 R: Steven Price <steven.price@arm.com>
1415 R: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1416 L: dri-devel@lists.freedesktop.org
1418 T: git git://anongit.freedesktop.org/drm/drm-misc
1419 F: drivers/gpu/drm/panfrost/
1420 F: include/uapi/drm/panfrost_drm.h
1422 ARM MALI-DP DRM DRIVER
1423 M: Liviu Dudau <liviu.dudau@arm.com>
1424 M: Brian Starkey <brian.starkey@arm.com>
1425 L: Mali DP Maintainers <malidp@foss.arm.com>
1427 T: git git://anongit.freedesktop.org/drm/drm-misc
1428 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1429 F: Documentation/gpu/afbc.rst
1430 F: drivers/gpu/drm/arm/
1432 ARM MFM AND FLOPPY DRIVERS
1433 M: Ian Molton <spyro@f2s.com>
1435 F: arch/arm/include/asm/floppy.h
1436 F: arch/arm/mach-rpc/floppydma.S
1438 ARM PMU PROFILING AND DEBUGGING
1439 M: Will Deacon <will@kernel.org>
1440 M: Mark Rutland <mark.rutland@arm.com>
1441 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1443 F: Documentation/devicetree/bindings/arm/pmu.yaml
1444 F: Documentation/devicetree/bindings/perf/
1445 F: arch/arm*/include/asm/hw_breakpoint.h
1446 F: arch/arm*/include/asm/perf_event.h
1447 F: arch/arm*/kernel/hw_breakpoint.c
1448 F: arch/arm*/kernel/perf_*
1450 F: include/linux/perf/arm_pmu.h
1453 M: Russell King <linux@armlinux.org.uk>
1454 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1456 W: http://www.armlinux.org.uk/
1457 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1459 X: arch/arm/boot/dts/
1461 ARM PRIMECELL AACI PL041 DRIVER
1462 M: Russell King <linux@armlinux.org.uk>
1466 ARM PRIMECELL BUS SUPPORT
1467 M: Russell King <linux@armlinux.org.uk>
1470 F: include/linux/amba/bus.h
1472 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1473 M: Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1474 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1475 L: linux-mtd@lists.infradead.org
1477 F: Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1478 F: drivers/mtd/nand/raw/pl35x-nand-controller.c
1480 ARM PRIMECELL PL35X SMC DRIVER
1481 M: Miquel Raynal <miquel.raynal@bootlin.com@bootlin.com>
1482 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1483 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1485 F: Documentation/devicetree/bindings/mtd/arm,pl353-smc.yaml
1486 F: drivers/memory/pl353-smc.c
1488 ARM PRIMECELL CLCD PL110 DRIVER
1489 M: Russell King <linux@armlinux.org.uk>
1491 F: drivers/video/fbdev/amba-clcd.*
1493 ARM PRIMECELL KMI PL050 DRIVER
1494 M: Russell King <linux@armlinux.org.uk>
1496 F: drivers/input/serio/ambakmi.*
1497 F: include/linux/amba/kmi.h
1499 ARM PRIMECELL MMCI PL180/1 DRIVER
1500 M: Russell King <linux@armlinux.org.uk>
1502 F: drivers/mmc/host/mmci.*
1503 F: include/linux/amba/mmci.h
1505 ARM PRIMECELL SSP PL022 SPI DRIVER
1506 M: Linus Walleij <linus.walleij@linaro.org>
1507 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1509 F: Documentation/devicetree/bindings/spi/spi-pl022.yaml
1510 F: drivers/spi/spi-pl022.c
1512 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1513 M: Russell King <linux@armlinux.org.uk>
1515 F: drivers/tty/serial/amba-pl01*.c
1516 F: include/linux/amba/serial.h
1518 ARM PRIMECELL VIC PL190/PL192 DRIVER
1519 M: Linus Walleij <linus.walleij@linaro.org>
1520 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1522 F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1523 F: drivers/irqchip/irq-vic.c
1525 ARM SMC WATCHDOG DRIVER
1526 M: Julius Werner <jwerner@chromium.org>
1527 R: Evan Benn <evanbenn@chromium.org>
1529 F: Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1530 F: drivers/watchdog/arm_smc_wdt.c
1533 M: Will Deacon <will@kernel.org>
1534 R: Robin Murphy <robin.murphy@arm.com>
1535 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1537 F: Documentation/devicetree/bindings/iommu/arm,smmu*
1538 F: drivers/iommu/arm/
1539 F: drivers/iommu/io-pgtable-arm*
1541 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1542 M: Arnd Bergmann <arnd@arndb.de>
1543 M: Olof Johansson <olof@lixom.net>
1545 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1548 F: arch/arm/boot/dts/Makefile
1549 F: arch/arm64/boot/dts/Makefile
1551 ARM SUB-ARCHITECTURES
1552 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1558 ARM/ACTIONS SEMI ARCHITECTURE
1559 M: Andreas Färber <afaerber@suse.de>
1560 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1561 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1562 L: linux-actions@lists.infradead.org (moderated for non-subscribers)
1564 F: Documentation/devicetree/bindings/arm/actions.yaml
1565 F: Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1566 F: Documentation/devicetree/bindings/dma/owl-dma.yaml
1567 F: Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1568 F: Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1569 F: Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1570 F: Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1571 F: Documentation/devicetree/bindings/pinctrl/actions,*
1572 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1573 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1574 F: arch/arm/boot/dts/owl-*
1575 F: arch/arm/mach-actions/
1576 F: arch/arm64/boot/dts/actions/
1577 F: drivers/clk/actions/
1578 F: drivers/clocksource/timer-owl*
1579 F: drivers/dma/owl-dma.c
1580 F: drivers/i2c/busses/i2c-owl.c
1581 F: drivers/irqchip/irq-owl-sirq.c
1582 F: drivers/mmc/host/owl-mmc.c
1583 F: drivers/net/ethernet/actions/
1584 F: drivers/pinctrl/actions/*
1585 F: drivers/soc/actions/
1586 F: include/dt-bindings/power/owl-*
1587 F: include/dt-bindings/reset/actions,*
1588 F: include/linux/soc/actions/
1591 ARM/ADS SPHERE MACHINE SUPPORT
1592 M: Lennert Buytenhek <kernel@wantstofly.org>
1593 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1596 ARM/AFEB9260 MACHINE SUPPORT
1597 M: Sergey Lapin <slapin@ossfans.org>
1598 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 ARM/AJECO 1ARM MACHINE SUPPORT
1602 M: Lennert Buytenhek <kernel@wantstofly.org>
1603 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1606 ARM/Allwinner SoC Clock Support
1607 M: Emilio López <emilio@elopez.com.ar>
1609 F: drivers/clk/sunxi/
1611 ARM/Allwinner sunXi SoC support
1612 M: Maxime Ripard <mripard@kernel.org>
1613 M: Chen-Yu Tsai <wens@csie.org>
1614 R: Jernej Skrabec <jernej.skrabec@gmail.com>
1615 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1618 L: linux-sunxi@lists.linux.dev
1619 F: arch/arm/mach-sunxi/
1620 F: arch/arm64/boot/dts/allwinner/
1621 F: drivers/clk/sunxi-ng/
1622 F: drivers/pinctrl/sunxi/
1623 F: drivers/soc/sunxi/
1628 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1629 M: Neil Armstrong <narmstrong@baylibre.com>
1630 M: Jerome Brunet <jbrunet@baylibre.com>
1631 L: linux-amlogic@lists.infradead.org
1633 F: Documentation/devicetree/bindings/clock/amlogic*
1634 F: drivers/clk/meson/
1635 F: include/dt-bindings/clock/gxbb*
1636 F: include/dt-bindings/clock/meson*
1638 ARM/Amlogic Meson SoC Crypto Drivers
1639 M: Corentin Labbe <clabbe@baylibre.com>
1640 L: linux-crypto@vger.kernel.org
1641 L: linux-amlogic@lists.infradead.org
1643 F: Documentation/devicetree/bindings/crypto/amlogic*
1644 F: drivers/crypto/amlogic/
1646 ARM/Amlogic Meson SoC Sound Drivers
1647 M: Jerome Brunet <jbrunet@baylibre.com>
1648 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1650 F: Documentation/devicetree/bindings/sound/amlogic*
1653 ARM/Amlogic Meson SoC support
1654 M: Neil Armstrong <narmstrong@baylibre.com>
1655 M: Kevin Hilman <khilman@baylibre.com>
1656 R: Jerome Brunet <jbrunet@baylibre.com>
1657 R: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1658 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659 L: linux-amlogic@lists.infradead.org
1661 W: http://linux-meson.com/
1662 F: arch/arm/boot/dts/meson*
1663 F: arch/arm/mach-meson/
1664 F: arch/arm64/boot/dts/amlogic/
1665 F: drivers/mmc/host/meson*
1666 F: drivers/pinctrl/meson/
1667 F: drivers/rtc/rtc-meson*
1668 F: drivers/soc/amlogic/
1671 ARM/Annapurna Labs ALPINE ARCHITECTURE
1672 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1673 M: Antoine Tenart <atenart@kernel.org>
1674 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1676 F: arch/arm/boot/dts/alpine*
1677 F: arch/arm/mach-alpine/
1678 F: arch/arm64/boot/dts/amazon/
1679 F: drivers/*/*alpine*
1681 ARM/APPLE MACHINE SUPPORT
1682 M: Hector Martin <marcan@marcan.st>
1683 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1685 W: https://asahilinux.org
1686 B: https://github.com/AsahiLinux/linux/issues
1687 C: irc://chat.freenode.net/asahi-dev
1688 T: git https://github.com/AsahiLinux/linux.git
1689 F: Documentation/devicetree/bindings/arm/apple.yaml
1690 F: Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1691 F: Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1692 F: arch/arm64/boot/dts/apple/
1693 F: drivers/irqchip/irq-apple-aic.c
1694 F: include/dt-bindings/interrupt-controller/apple-aic.h
1695 F: include/dt-bindings/pinctrl/apple.h
1697 ARM/ARTPEC MACHINE SUPPORT
1698 M: Jesper Nilsson <jesper.nilsson@axis.com>
1699 M: Lars Persson <lars.persson@axis.com>
1700 L: linux-arm-kernel@axis.com
1702 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1703 F: arch/arm/boot/dts/artpec6*
1704 F: arch/arm/mach-artpec
1706 F: drivers/crypto/axis
1707 F: drivers/mmc/host/usdhi6rol0.c
1708 F: drivers/pinctrl/pinctrl-artpec*
1710 ARM/ASPEED I2C DRIVER
1711 M: Brendan Higgins <brendanhiggins@google.com>
1712 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1713 R: Joel Stanley <joel@jms.id.au>
1714 L: linux-i2c@vger.kernel.org
1715 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1717 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1718 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1719 F: drivers/i2c/busses/i2c-aspeed.c
1720 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1722 ARM/ASPEED MACHINE SUPPORT
1723 M: Joel Stanley <joel@jms.id.au>
1724 R: Andrew Jeffery <andrew@aj.id.au>
1725 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1728 Q: https://patchwork.ozlabs.org/project/linux-aspeed/list/
1729 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1730 F: arch/arm/boot/dts/aspeed-*
1731 F: arch/arm/mach-aspeed/
1734 ARM/BITMAIN ARCHITECTURE
1735 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1736 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738 F: Documentation/devicetree/bindings/arm/bitmain.yaml
1739 F: Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1740 F: Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1741 F: arch/arm64/boot/dts/bitmain/
1742 F: drivers/clk/clk-bm1880.c
1743 F: drivers/pinctrl/pinctrl-bm1880.c
1745 ARM/CALXEDA HIGHBANK ARCHITECTURE
1746 M: Andre Przywara <andre.przywara@arm.com>
1747 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1749 F: arch/arm/boot/dts/ecx-*.dts*
1750 F: arch/arm/boot/dts/highbank.dts
1751 F: arch/arm/mach-highbank/
1753 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1754 M: Krzysztof Halasa <khalasa@piap.pl>
1756 F: arch/arm/mach-cns3xxx/
1758 ARM/CAVIUM THUNDER NETWORK DRIVER
1759 M: Sunil Goutham <sgoutham@marvell.com>
1760 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1762 F: drivers/net/ethernet/cavium/thunder/
1764 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1765 M: Lukasz Majewski <lukma@denx.de>
1766 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1768 F: arch/arm/mach-ep93xx/ts72xx.c
1770 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1771 M: Alexander Shiyan <shc_work@mail.ru>
1772 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1776 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1777 M: Lennert Buytenhek <kernel@wantstofly.org>
1778 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1781 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1782 M: Hartley Sweeten <hsweeten@visionengravers.com>
1783 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1784 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1786 F: arch/arm/mach-ep93xx/
1787 F: arch/arm/mach-ep93xx/include/mach/
1790 M: Russell King <linux@armlinux.org.uk>
1791 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1793 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1794 F: drivers/clk/clkdev.c
1796 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1797 M: Baruch Siach <baruch@tkos.co.il>
1798 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 F: arch/arm/boot/dts/cx92755*
1803 ARM/CONTEC MICRO9 MACHINE SUPPORT
1804 M: Hubert Feurstein <hubert.feurstein@contec.at>
1806 F: arch/arm/mach-ep93xx/micro9.c
1808 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1809 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1810 M: Suzuki K Poulose <suzuki.poulose@arm.com>
1811 R: Mike Leach <mike.leach@linaro.org>
1812 R: Leo Yan <leo.yan@linaro.org>
1813 L: coresight@lists.linaro.org (moderated for non-subscribers)
1814 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1817 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1818 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1819 F: Documentation/devicetree/bindings/arm/coresight-cti.yaml
1820 F: Documentation/devicetree/bindings/arm/coresight.txt
1821 F: Documentation/devicetree/bindings/arm/ete.yaml
1822 F: Documentation/devicetree/bindings/arm/trbe.yaml
1823 F: Documentation/trace/coresight/*
1824 F: drivers/hwtracing/coresight/*
1825 F: include/dt-bindings/arm/coresight-cti-dt.h
1826 F: include/linux/coresight*
1827 F: tools/perf/arch/arm/util/auxtrace.c
1828 F: tools/perf/arch/arm/util/cs-etm.c
1829 F: tools/perf/arch/arm/util/cs-etm.h
1830 F: tools/perf/arch/arm/util/pmu.c
1831 F: tools/perf/util/cs-etm-decoder/*
1832 F: tools/perf/util/cs-etm.*
1834 ARM/CORGI MACHINE SUPPORT
1835 M: Richard Purdie <rpurdie@rpsys.net>
1838 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1839 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1840 M: Linus Walleij <linus.walleij@linaro.org>
1841 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1843 T: git git://github.com/ulli-kroll/linux.git
1844 F: Documentation/devicetree/bindings/arm/gemini.txt
1845 F: Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1846 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1847 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1848 F: arch/arm/mach-gemini/
1849 F: drivers/crypto/gemini/
1850 F: drivers/net/ethernet/cortina/
1851 F: drivers/pinctrl/pinctrl-gemini.c
1852 F: drivers/rtc/rtc-ftrtc010.c
1854 ARM/CZ.NIC TURRIS SUPPORT
1855 M: Marek Behún <kabel@kernel.org>
1857 W: https://www.turris.cz/
1858 F: Documentation/ABI/testing/debugfs-moxtet
1859 F: Documentation/ABI/testing/sysfs-bus-moxtet-devices
1860 F: Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1861 F: Documentation/devicetree/bindings/bus/moxtet.txt
1862 F: Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1863 F: Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1864 F: Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1865 F: Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1866 F: drivers/bus/moxtet.c
1867 F: drivers/firmware/turris-mox-rwtm.c
1868 F: drivers/leds/leds-turris-omnia.c
1869 F: drivers/mailbox/armada-37xx-rwtm-mailbox.c
1870 F: drivers/gpio/gpio-moxtet.c
1871 F: drivers/watchdog/armada_37xx_wdt.c
1872 F: include/dt-bindings/bus/moxtet.h
1873 F: include/linux/armada-37xx-rwtm-mailbox.h
1874 F: include/linux/moxtet.h
1876 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1877 M: Robert Jarzmik <robert.jarzmik@free.fr>
1878 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 F: arch/arm/mach-pxa/ezx.c
1882 ARM/FARADAY FA526 PORT
1883 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1884 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 T: git git://git.berlios.de/gemini-board
1887 F: arch/arm/mm/*-fa*
1889 ARM/FOOTBRIDGE ARCHITECTURE
1890 M: Russell King <linux@armlinux.org.uk>
1891 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1893 W: http://www.armlinux.org.uk/
1894 F: arch/arm/include/asm/hardware/dec21285.h
1895 F: arch/arm/mach-footbridge/
1897 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1898 M: Shawn Guo <shawnguo@kernel.org>
1899 M: Sascha Hauer <s.hauer@pengutronix.de>
1900 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1901 R: Fabio Estevam <festevam@gmail.com>
1902 R: NXP Linux Team <linux-imx@nxp.com>
1903 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1905 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1906 X: drivers/media/i2c/
1910 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1911 M: Shawn Guo <shawnguo@kernel.org>
1912 M: Li Yang <leoyang.li@nxp.com>
1913 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1915 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1916 F: arch/arm/boot/dts/ls1021a*
1917 F: arch/arm64/boot/dts/freescale/fsl-*
1918 F: arch/arm64/boot/dts/freescale/qoriq-*
1920 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1921 M: Shawn Guo <shawnguo@kernel.org>
1922 M: Sascha Hauer <s.hauer@pengutronix.de>
1923 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1924 R: Stefan Agner <stefan@agner.ch>
1925 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1927 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1928 F: arch/arm/boot/dts/vf*
1929 F: arch/arm/mach-imx/*vf610*
1931 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1932 M: Lennert Buytenhek <kernel@wantstofly.org>
1933 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1936 ARM/GUMSTIX MACHINE SUPPORT
1937 M: Steve Sakoman <sakoman@gmail.com>
1938 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1941 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1942 M: Philipp Zabel <philipp.zabel@gmail.com>
1943 M: Paul Parsons <lost.distance@yahoo.com>
1944 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 F: arch/arm/mach-pxa/hx4700.c
1947 F: arch/arm/mach-pxa/include/mach/hx4700.h
1948 F: sound/soc/pxa/hx4700.c
1950 ARM/HISILICON SOC SUPPORT
1951 M: Wei Xu <xuwei5@hisilicon.com>
1952 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1954 W: http://www.hisilicon.com
1955 T: git git://github.com/hisilicon/linux-hisi.git
1956 F: arch/arm/boot/dts/hi3*
1957 F: arch/arm/boot/dts/hip*
1958 F: arch/arm/boot/dts/hisi*
1959 F: arch/arm/mach-hisi/
1960 F: arch/arm64/boot/dts/hisilicon/
1962 ARM/HP JORNADA 7XX MACHINE SUPPORT
1963 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1966 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1967 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1968 F: arch/arm/mach-sa1100/jornada720.c
1970 ARM/IGEP MACHINE SUPPORT
1971 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1972 M: Javier Martinez Canillas <javier@dowhile0.org>
1973 L: linux-omap@vger.kernel.org
1974 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1976 F: arch/arm/boot/dts/omap3-igep*
1978 ARM/INCOME PXA270 SUPPORT
1979 M: Marek Vasut <marek.vasut@gmail.com>
1980 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1984 ARM/INTEL IOP32X ARM ARCHITECTURE
1985 M: Lennert Buytenhek <kernel@wantstofly.org>
1986 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1989 ARM/INTEL IQ81342EX MACHINE SUPPORT
1990 M: Lennert Buytenhek <kernel@wantstofly.org>
1991 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1994 ARM/INTEL IXDP2850 MACHINE SUPPORT
1995 M: Lennert Buytenhek <kernel@wantstofly.org>
1996 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1999 ARM/INTEL IXP4XX ARM ARCHITECTURE
2000 M: Linus Walleij <linusw@kernel.org>
2001 M: Imre Kaloz <kaloz@openwrt.org>
2002 M: Krzysztof Halasa <khalasa@piap.pl>
2003 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2005 F: Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2006 F: Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2007 F: Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2008 F: Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2009 F: arch/arm/mach-ixp4xx/
2010 F: drivers/clocksource/timer-ixp4xx.c
2011 F: drivers/crypto/ixp4xx_crypto.c
2012 F: drivers/gpio/gpio-ixp4xx.c
2013 F: drivers/irqchip/irq-ixp4xx.c
2014 F: include/linux/irqchip/irq-ixp4xx.h
2015 F: include/linux/platform_data/timer-ixp4xx.h
2017 ARM/INTEL KEEMBAY ARCHITECTURE
2018 M: Paul J. Murphy <paul.j.murphy@intel.com>
2019 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2021 F: Documentation/devicetree/bindings/arm/intel,keembay.yaml
2022 F: arch/arm64/boot/dts/intel/keembay-evm.dts
2023 F: arch/arm64/boot/dts/intel/keembay-soc.dtsi
2025 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2026 M: Jonathan Cameron <jic23@cam.ac.uk>
2027 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2029 F: arch/arm/mach-pxa/stargate2.c
2030 F: drivers/pcmcia/pxa2xx_stargate2.c
2032 ARM/INTEL XSC3 (MANZANO) ARM CORE
2033 M: Lennert Buytenhek <kernel@wantstofly.org>
2034 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2037 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2038 M: Lennert Buytenhek <kernel@wantstofly.org>
2039 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 ARM/LG1K ARCHITECTURE
2043 M: Chanho Min <chanho.min@lge.com>
2044 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2046 F: arch/arm64/boot/dts/lg/
2048 ARM/LOGICPD PXA270 MACHINE SUPPORT
2049 M: Lennert Buytenhek <kernel@wantstofly.org>
2050 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2053 ARM/LPC18XX ARCHITECTURE
2054 M: Vladimir Zapolskiy <vz@mleia.com>
2055 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2057 F: Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2058 F: arch/arm/boot/dts/lpc43*
2059 F: drivers/i2c/busses/i2c-lpc2k.c
2060 F: drivers/memory/pl172.c
2061 F: drivers/mtd/spi-nor/controllers/nxp-spifi.c
2062 F: drivers/rtc/rtc-lpc24xx.c
2065 ARM/LPC32XX SOC SUPPORT
2066 M: Vladimir Zapolskiy <vz@mleia.com>
2067 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2069 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
2070 F: Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2071 F: arch/arm/boot/dts/lpc32*
2072 F: arch/arm/mach-lpc32xx/
2073 F: drivers/i2c/busses/i2c-pnx.c
2074 F: drivers/net/ethernet/nxp/lpc_eth.c
2075 F: drivers/usb/host/ohci-nxp.c
2076 F: drivers/watchdog/pnx4008_wdt.c
2079 ARM/MAGICIAN MACHINE SUPPORT
2080 M: Philipp Zabel <philipp.zabel@gmail.com>
2083 ARM/Marvell Dove/MV78xx0/Orion SOC support
2084 M: Andrew Lunn <andrew@lunn.ch>
2085 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2086 M: Gregory Clement <gregory.clement@bootlin.com>
2087 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2089 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2090 F: Documentation/devicetree/bindings/soc/dove/
2091 F: arch/arm/boot/dts/dove*
2092 F: arch/arm/boot/dts/orion5x*
2093 F: arch/arm/mach-dove/
2094 F: arch/arm/mach-mv78xx0/
2095 F: arch/arm/mach-orion5x/
2096 F: arch/arm/plat-orion/
2097 F: drivers/soc/dove/
2099 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2100 M: Andrew Lunn <andrew@lunn.ch>
2101 M: Gregory Clement <gregory.clement@bootlin.com>
2102 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2103 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2105 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2106 F: arch/arm/boot/dts/armada*
2107 F: arch/arm/boot/dts/kirkwood*
2108 F: arch/arm/configs/mvebu_*_defconfig
2109 F: arch/arm/mach-mvebu/
2110 F: arch/arm64/boot/dts/marvell/armada*
2111 F: arch/arm64/boot/dts/marvell/cn913*
2112 F: drivers/cpufreq/armada-37xx-cpufreq.c
2113 F: drivers/cpufreq/armada-8k-cpufreq.c
2114 F: drivers/cpufreq/mvebu-cpufreq.c
2115 F: drivers/irqchip/irq-armada-370-xp.c
2116 F: drivers/irqchip/irq-mvebu-*
2117 F: drivers/pinctrl/mvebu/
2118 F: drivers/rtc/rtc-armada38x.c
2120 ARM/Mediatek RTC DRIVER
2121 M: Eddie Huang <eddie.huang@mediatek.com>
2122 M: Sean Wang <sean.wang@mediatek.com>
2123 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2126 F: Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2127 F: Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2128 F: drivers/rtc/rtc-mt2712.c
2129 F: drivers/rtc/rtc-mt6397.c
2130 F: drivers/rtc/rtc-mt7622.c
2132 ARM/Mediatek SoC support
2133 M: Matthias Brugger <matthias.bgg@gmail.com>
2134 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2135 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2137 W: https://mtk.wiki.kernel.org/
2138 C: irc://chat.freenode.net/linux-mediatek
2139 F: arch/arm/boot/dts/mt6*
2140 F: arch/arm/boot/dts/mt7*
2141 F: arch/arm/boot/dts/mt8*
2142 F: arch/arm/mach-mediatek/
2143 F: arch/arm64/boot/dts/mediatek/
2144 F: drivers/soc/mediatek/
2149 ARM/Mediatek USB3 PHY DRIVER
2150 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
2151 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2152 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2154 F: Documentation/devicetree/bindings/phy/mediatek,*
2155 F: drivers/phy/mediatek/
2157 ARM/Microchip (AT91) SoC support
2158 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2159 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
2160 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2161 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2163 W: http://www.linux4sam.org
2164 T: git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2165 F: arch/arm/boot/dts/at91*.dts
2166 F: arch/arm/boot/dts/at91*.dtsi
2167 F: arch/arm/boot/dts/sama*.dts
2168 F: arch/arm/boot/dts/sama*.dtsi
2169 F: arch/arm/include/debug/at91.S
2170 F: arch/arm/mach-at91/
2171 F: drivers/memory/atmel*
2172 F: drivers/watchdog/sama5d4_wdt.c
2173 F: include/soc/at91/
2174 X: drivers/input/touchscreen/atmel_mxt_ts.c
2175 X: drivers/net/wireless/atmel/
2179 ARM/Microchip Sparx5 SoC support
2180 M: Lars Povlsen <lars.povlsen@microchip.com>
2181 M: Steen Hegelund <Steen.Hegelund@microchip.com>
2182 M: UNGLinuxDriver@microchip.com
2183 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2185 T: git git://github.com/microchip-ung/linux-upstream.git
2186 F: arch/arm64/boot/dts/microchip/
2187 F: drivers/pinctrl/pinctrl-microchip-sgpio.c
2190 Microchip Timer Counter Block (TCB) Capture Driver
2191 M: Kamel Bouhara <kamel.bouhara@bootlin.com>
2192 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2193 L: linux-iio@vger.kernel.org
2195 F: drivers/counter/microchip-tcb-capture.c
2197 ARM/MIOA701 MACHINE SUPPORT
2198 M: Robert Jarzmik <robert.jarzmik@free.fr>
2199 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2201 F: arch/arm/mach-pxa/mioa701.c
2203 ARM/MStar/Sigmastar Armv7 SoC support
2204 M: Daniel Palmer <daniel@thingy.jp>
2205 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2207 W: http://linux-chenxing.org/
2208 F: Documentation/devicetree/bindings/arm/mstar/*
2209 F: Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2210 F: Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2211 F: arch/arm/boot/dts/mstar-*
2212 F: arch/arm/mach-mstar/
2213 F: drivers/clk/mstar/
2214 F: drivers/gpio/gpio-msc313.c
2215 F: include/dt-bindings/clock/mstar-*
2216 F: include/dt-bindings/gpio/msc313-gpio.h
2218 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2219 M: Michael Petchkovsky <mkpetch@internode.on.net>
2222 ARM/NOMADIK/Ux500 ARCHITECTURES
2223 M: Linus Walleij <linus.walleij@linaro.org>
2224 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2226 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2227 F: Documentation/devicetree/bindings/arm/ste-*
2228 F: Documentation/devicetree/bindings/arm/ux500.yaml
2229 F: Documentation/devicetree/bindings/arm/ux500/
2230 F: Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2231 F: arch/arm/boot/dts/ste-*
2232 F: arch/arm/mach-nomadik/
2233 F: arch/arm/mach-ux500/
2234 F: drivers/clk/clk-nomadik.c
2235 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2236 F: drivers/dma/ste_dma40*
2237 F: drivers/hwspinlock/u8500_hsem.c
2238 F: drivers/i2c/busses/i2c-nomadik.c
2239 F: drivers/iio/adc/ab8500-gpadc.c
2240 F: drivers/mfd/ab8500*
2241 F: drivers/mfd/abx500*
2242 F: drivers/mfd/db8500*
2243 F: drivers/mfd/dbx500*
2244 F: drivers/pinctrl/nomadik/
2245 F: drivers/rtc/rtc-ab8500.c
2246 F: drivers/rtc/rtc-pl031.c
2247 F: drivers/soc/ux500/
2249 ARM/NUVOTON NPCM ARCHITECTURE
2250 M: Avi Fishman <avifishman70@gmail.com>
2251 M: Tomer Maimon <tmaimon77@gmail.com>
2252 M: Tali Perry <tali.perry1@gmail.com>
2253 R: Patrick Venture <venture@google.com>
2254 R: Nancy Yuen <yuenn@google.com>
2255 R: Benjamin Fair <benjaminfair@google.com>
2256 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2258 F: Documentation/devicetree/bindings/*/*/*npcm*
2259 F: Documentation/devicetree/bindings/*/*npcm*
2260 F: arch/arm/boot/dts/nuvoton-npcm*
2261 F: arch/arm/mach-npcm/
2263 F: drivers/*/*/*npcm*
2264 F: include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2266 ARM/NUVOTON WPCM450 ARCHITECTURE
2267 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2268 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2270 F: Documentation/devicetree/bindings/*/*wpcm*
2271 F: arch/arm/boot/dts/nuvoton-wpcm450*
2272 F: arch/arm/mach-npcm/wpcm450.c
2275 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2276 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
2278 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
2279 F: arch/arm/mach-s3c/gta02.h
2280 F: arch/arm/mach-s3c/mach-gta02.c
2282 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2283 M: Alexander Clouter <alex@digriz.org.uk>
2284 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2286 W: http://www.digriz.org.uk/ts78xx/kernel
2287 F: arch/arm/mach-orion5x/ts78xx-*
2289 ARM/OXNAS platform support
2290 M: Neil Armstrong <narmstrong@baylibre.com>
2291 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2292 L: linux-oxnas@groups.io (moderated for non-subscribers)
2294 F: arch/arm/boot/dts/ox8*.dts*
2295 F: arch/arm/mach-oxnas/
2296 F: drivers/power/reset/oxnas-restart.c
2299 ARM/PALM TREO SUPPORT
2300 M: Tomas Cech <sleep_walker@suse.com>
2301 L: linux-arm-kernel@lists.infradead.org
2303 W: http://hackndev.com
2304 F: arch/arm/mach-pxa/palmtreo.*
2306 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2307 M: Marek Vasut <marek.vasut@gmail.com>
2308 L: linux-arm-kernel@lists.infradead.org
2310 W: http://hackndev.com
2311 F: arch/arm/mach-pxa/include/mach/palmld.h
2312 F: arch/arm/mach-pxa/include/mach/palmtc.h
2313 F: arch/arm/mach-pxa/include/mach/palmtx.h
2314 F: arch/arm/mach-pxa/palmld.c
2315 F: arch/arm/mach-pxa/palmt5.*
2316 F: arch/arm/mach-pxa/palmtc.c
2317 F: arch/arm/mach-pxa/palmte2.*
2318 F: arch/arm/mach-pxa/palmtx.c
2321 M: Sergey Lapin <slapin@ossfans.org>
2322 L: linux-arm-kernel@lists.infradead.org
2324 W: http://hackndev.com
2325 F: arch/arm/mach-pxa/palmz72.*
2328 M: Peter Chubb <pleb@gelato.unsw.edu.au>
2330 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2332 ARM/PT DIGITAL BOARD PORT
2333 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2334 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2336 W: http://www.armlinux.org.uk/
2338 ARM/QUALCOMM SUPPORT
2339 M: Andy Gross <agross@kernel.org>
2340 M: Bjorn Andersson <bjorn.andersson@linaro.org>
2341 L: linux-arm-msm@vger.kernel.org
2343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2344 F: Documentation/devicetree/bindings/*/qcom*
2345 F: Documentation/devicetree/bindings/soc/qcom/
2346 F: arch/arm/boot/dts/qcom-*.dts
2347 F: arch/arm/boot/dts/qcom-*.dtsi
2348 F: arch/arm/mach-qcom/
2349 F: arch/arm64/boot/dts/qcom/
2350 F: drivers/*/*/qcom*
2351 F: drivers/*/*/qcom/
2352 F: drivers/*/pm8???-*
2355 F: drivers/bluetooth/btqcomsmd.c
2356 F: drivers/clocksource/timer-qcom.c
2357 F: drivers/cpuidle/cpuidle-qcom-spm.c
2358 F: drivers/extcon/extcon-qcom*
2359 F: drivers/i2c/busses/i2c-qcom-geni.c
2360 F: drivers/i2c/busses/i2c-qup.c
2361 F: drivers/iommu/msm*
2362 F: drivers/mfd/ssbi.c
2363 F: drivers/mmc/host/mmci_qcom*
2364 F: drivers/mmc/host/sdhci-msm.c
2365 F: drivers/pci/controller/dwc/pcie-qcom.c
2366 F: drivers/phy/qualcomm/
2367 F: drivers/power/*/msm*
2368 F: drivers/reset/reset-qcom-*
2369 F: drivers/scsi/ufs/ufs-qcom*
2370 F: drivers/spi/spi-geni-qcom.c
2371 F: drivers/spi/spi-qcom-qspi.c
2372 F: drivers/spi/spi-qup.c
2373 F: drivers/tty/serial/msm_serial.c
2374 F: drivers/usb/dwc3/dwc3-qcom.c
2375 F: include/dt-bindings/*/qcom*
2376 F: include/linux/*/qcom*
2377 F: include/linux/soc/qcom/
2379 ARM/RADISYS ENP2611 MACHINE SUPPORT
2380 M: Lennert Buytenhek <kernel@wantstofly.org>
2381 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2384 ARM/RDA MICRO ARCHITECTURE
2385 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2386 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 L: linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2389 F: Documentation/devicetree/bindings/arm/rda.yaml
2390 F: Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2391 F: Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2392 F: Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2393 F: Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2394 F: arch/arm/boot/dts/rda8810pl-*
2395 F: drivers/clocksource/timer-rda.c
2396 F: drivers/gpio/gpio-rda.c
2397 F: drivers/irqchip/irq-rda-intc.c
2398 F: drivers/tty/serial/rda-uart.c
2400 ARM/REALTEK ARCHITECTURE
2401 M: Andreas Färber <afaerber@suse.de>
2402 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2403 L: linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2405 F: Documentation/devicetree/bindings/arm/realtek.yaml
2406 F: arch/arm/boot/dts/rtd*
2407 F: arch/arm/mach-realtek/
2408 F: arch/arm64/boot/dts/realtek/
2410 ARM/RENESAS ARM64 ARCHITECTURE
2411 M: Geert Uytterhoeven <geert+renesas@glider.be>
2412 M: Magnus Damm <magnus.damm@gmail.com>
2413 L: linux-renesas-soc@vger.kernel.org
2415 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2416 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2417 F: Documentation/devicetree/bindings/arm/renesas.yaml
2418 F: arch/arm64/boot/dts/renesas/
2419 F: drivers/soc/renesas/
2420 F: include/linux/soc/renesas/
2422 ARM/RISCPC ARCHITECTURE
2423 M: Russell King <linux@armlinux.org.uk>
2424 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2426 W: http://www.armlinux.org.uk/
2427 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
2428 F: arch/arm/include/asm/hardware/ioc.h
2429 F: arch/arm/include/asm/hardware/iomd.h
2430 F: arch/arm/include/asm/hardware/memc.h
2431 F: arch/arm/mach-rpc/
2432 F: drivers/net/ethernet/8390/etherh.c
2433 F: drivers/net/ethernet/i825xx/ether1*
2434 F: drivers/net/ethernet/seeq/ether3*
2435 F: drivers/scsi/arm/
2437 ARM/Rockchip SoC support
2438 M: Heiko Stuebner <heiko@sntech.de>
2439 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2440 L: linux-rockchip@lists.infradead.org
2442 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2443 F: Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2444 F: Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2445 F: Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2446 F: arch/arm/boot/dts/rk3*
2447 F: arch/arm/boot/dts/rv1108*
2448 F: arch/arm/mach-rockchip/
2449 F: drivers/*/*/*rockchip*
2450 F: drivers/*/*rockchip*
2451 F: drivers/clk/rockchip/
2452 F: drivers/i2c/busses/i2c-rk3x.c
2453 F: sound/soc/rockchip/
2456 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2457 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2458 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2459 L: linux-samsung-soc@vger.kernel.org
2461 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
2462 F: Documentation/arm/samsung/
2463 F: Documentation/devicetree/bindings/arm/samsung/
2464 F: Documentation/devicetree/bindings/power/pd-samsung.yaml
2465 F: arch/arm/boot/dts/exynos*
2466 F: arch/arm/boot/dts/s3c*
2467 F: arch/arm/boot/dts/s5p*
2468 F: arch/arm/mach-exynos*/
2469 F: arch/arm/mach-s3c/
2470 F: arch/arm/mach-s5p*/
2471 F: arch/arm64/boot/dts/exynos/
2472 F: drivers/*/*/*s3c24*
2473 F: drivers/*/*s3c24*
2474 F: drivers/*/*s3c64xx*
2475 F: drivers/*/*s5pv210*
2476 F: drivers/memory/samsung/
2477 F: drivers/soc/samsung/
2478 F: drivers/tty/serial/samsung*
2479 F: include/linux/platform_data/*s3c*
2480 F: include/linux/serial_s3c.h
2481 F: include/linux/soc/samsung/
2487 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2488 M: Andrzej Hajda <a.hajda@samsung.com>
2489 L: linux-arm-kernel@lists.infradead.org
2490 L: linux-media@vger.kernel.org
2492 F: drivers/media/platform/s5p-g2d/
2494 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2495 M: Marek Szyprowski <m.szyprowski@samsung.com>
2496 L: linux-samsung-soc@vger.kernel.org
2497 L: linux-media@vger.kernel.org
2499 F: Documentation/devicetree/bindings/media/s5p-cec.txt
2500 F: drivers/media/cec/platform/s5p/
2502 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2503 M: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2504 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
2505 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
2506 L: linux-arm-kernel@lists.infradead.org
2507 L: linux-media@vger.kernel.org
2509 F: drivers/media/platform/s5p-jpeg/
2511 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2512 M: Andrzej Hajda <a.hajda@samsung.com>
2513 L: linux-arm-kernel@lists.infradead.org
2514 L: linux-media@vger.kernel.org
2516 F: drivers/media/platform/s5p-mfc/
2518 ARM/SHMOBILE ARM ARCHITECTURE
2519 M: Geert Uytterhoeven <geert+renesas@glider.be>
2520 M: Magnus Damm <magnus.damm@gmail.com>
2521 L: linux-renesas-soc@vger.kernel.org
2523 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2524 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2525 F: Documentation/devicetree/bindings/arm/renesas.yaml
2526 F: arch/arm/boot/dts/emev2*
2527 F: arch/arm/boot/dts/gr-peach*
2528 F: arch/arm/boot/dts/iwg20d-q7*
2529 F: arch/arm/boot/dts/r7s*
2530 F: arch/arm/boot/dts/r8a*
2531 F: arch/arm/boot/dts/r9a*
2532 F: arch/arm/boot/dts/sh*
2533 F: arch/arm/configs/shmobile_defconfig
2534 F: arch/arm/include/debug/renesas-scif.S
2535 F: arch/arm/mach-shmobile/
2536 F: drivers/soc/renesas/
2537 F: include/linux/soc/renesas/
2539 ARM/SOCFPGA ARCHITECTURE
2540 M: Dinh Nguyen <dinguyen@kernel.org>
2542 W: http://www.rocketboards.org
2543 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2544 F: arch/arm/boot/dts/socfpga*
2545 F: arch/arm/configs/socfpga_defconfig
2546 F: arch/arm/mach-socfpga/
2547 F: arch/arm64/boot/dts/altera/
2548 F: arch/arm64/boot/dts/intel/
2550 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2551 M: Dinh Nguyen <dinguyen@kernel.org>
2553 F: drivers/clk/socfpga/
2555 ARM/SOCFPGA EDAC SUPPORT
2556 M: Dinh Nguyen <dinguyen@kernel.org>
2558 F: drivers/edac/altera_edac.[ch]
2560 ARM/SPREADTRUM SoC SUPPORT
2561 M: Orson Zhai <orsonzhai@gmail.com>
2562 M: Baolin Wang <baolin.wang7@gmail.com>
2563 M: Chunyan Zhang <zhang.lyra@gmail.com>
2565 F: arch/arm64/boot/dts/sprd
2570 ARM/STI ARCHITECTURE
2571 M: Patrice Chotard <patrice.chotard@foss.st.com>
2572 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2574 W: http://www.stlinux.com
2575 F: Documentation/devicetree/bindings/i2c/i2c-st.txt
2576 F: arch/arm/boot/dts/sti*
2577 F: arch/arm/mach-sti/
2578 F: drivers/ata/ahci_st.c
2579 F: drivers/char/hw_random/st-rng.c
2580 F: drivers/clocksource/arm_global_timer.c
2581 F: drivers/clocksource/clksrc_st_lpc.c
2582 F: drivers/cpufreq/sti-cpufreq.c
2583 F: drivers/dma/st_fdma*
2584 F: drivers/i2c/busses/i2c-st.c
2585 F: drivers/media/platform/sti/c8sectpfe/
2586 F: drivers/media/rc/st_rc.c
2587 F: drivers/mmc/host/sdhci-st.c
2588 F: drivers/phy/st/phy-miphy28lp.c
2589 F: drivers/phy/st/phy-stih407-usb.c
2590 F: drivers/pinctrl/pinctrl-st.c
2591 F: drivers/remoteproc/st_remoteproc.c
2592 F: drivers/remoteproc/st_slim_rproc.c
2593 F: drivers/reset/sti/
2594 F: drivers/rtc/rtc-st-lpc.c
2595 F: drivers/tty/serial/st-asc.c
2596 F: drivers/usb/dwc3/dwc3-st.c
2597 F: drivers/usb/host/ehci-st.c
2598 F: drivers/usb/host/ohci-st.c
2599 F: drivers/watchdog/st_lpc_wdt.c
2600 F: include/linux/remoteproc/st_slim_rproc.h
2602 ARM/STM32 ARCHITECTURE
2603 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
2604 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
2605 L: linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2606 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2608 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2609 F: arch/arm/boot/dts/stm32*
2610 F: arch/arm/mach-stm32/
2611 F: drivers/clocksource/armv7m_systick.c
2615 ARM/Synaptics SoC support
2616 M: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2617 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2618 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2620 F: arch/arm/boot/dts/berlin*
2621 F: arch/arm/mach-berlin/
2622 F: arch/arm64/boot/dts/synaptics/
2624 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2625 M: Lennert Buytenhek <kernel@wantstofly.org>
2626 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2629 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2630 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
2631 L: linux-tegra@vger.kernel.org
2632 L: linux-media@vger.kernel.org
2634 F: Documentation/devicetree/bindings/media/tegra-cec.txt
2635 F: drivers/media/cec/platform/tegra/
2637 ARM/TETON BGA MACHINE SUPPORT
2638 M: "Mark F. Brown" <mark.brown314@gmail.com>
2639 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2642 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2643 M: Santosh Shilimkar <ssantosh@kernel.org>
2644 L: linux-kernel@vger.kernel.org
2646 F: drivers/memory/*emif*
2648 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2649 M: Santosh Shilimkar <ssantosh@kernel.org>
2650 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2652 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2653 F: arch/arm/boot/dts/keystone-*
2654 F: arch/arm/mach-keystone/
2656 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2657 M: Santosh Shilimkar <ssantosh@kernel.org>
2658 L: linux-kernel@vger.kernel.org
2660 F: drivers/clk/keystone/
2662 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2663 M: Santosh Shilimkar <ssantosh@kernel.org>
2664 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 L: linux-kernel@vger.kernel.org
2667 F: drivers/clocksource/timer-keystone.c
2669 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2670 M: Santosh Shilimkar <ssantosh@kernel.org>
2671 L: linux-kernel@vger.kernel.org
2673 F: drivers/power/reset/keystone-reset.c
2675 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2676 M: Nishanth Menon <nm@ti.com>
2677 M: Tero Kristo <kristo@kernel.org>
2678 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2680 F: Documentation/devicetree/bindings/arm/ti/k3.yaml
2681 F: arch/arm64/boot/dts/ti/Makefile
2682 F: arch/arm64/boot/dts/ti/k3-*
2683 F: include/dt-bindings/pinctrl/k3.h
2685 ARM/THECUS N2100 MACHINE SUPPORT
2686 M: Lennert Buytenhek <kernel@wantstofly.org>
2687 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2690 ARM/TOSA MACHINE SUPPORT
2691 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2692 M: Dirk Opfer <dirk@opfer-online.de>
2695 ARM/TOSHIBA VISCONTI ARCHITECTURE
2696 M: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2697 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2699 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2700 F: Documentation/devicetree/bindings/arm/toshiba.yaml
2701 F: Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2702 F: Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2703 F: Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2704 F: Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2705 F: arch/arm64/boot/dts/toshiba/
2706 F: drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2707 F: drivers/gpio/gpio-visconti.c
2708 F: drivers/pinctrl/visconti/
2709 F: drivers/watchdog/visconti_wdt.c
2712 ARM/UNIPHIER ARCHITECTURE
2713 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2714 M: Masami Hiramatsu <mhiramat@kernel.org>
2715 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2717 F: Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2718 F: Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2719 F: Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2720 F: arch/arm/boot/dts/uniphier*
2721 F: arch/arm/include/asm/hardware/cache-uniphier.h
2722 F: arch/arm/mach-uniphier/
2723 F: arch/arm/mm/cache-uniphier.c
2724 F: arch/arm64/boot/dts/socionext/uniphier*
2725 F: drivers/bus/uniphier-system-bus.c
2726 F: drivers/clk/uniphier/
2727 F: drivers/dma/uniphier-mdmac.c
2728 F: drivers/gpio/gpio-uniphier.c
2729 F: drivers/i2c/busses/i2c-uniphier*
2730 F: drivers/irqchip/irq-uniphier-aidet.c
2731 F: drivers/mmc/host/uniphier-sd.c
2732 F: drivers/pinctrl/uniphier/
2733 F: drivers/reset/reset-uniphier.c
2734 F: drivers/tty/serial/8250/8250_uniphier.c
2737 ARM/VERSATILE EXPRESS PLATFORM
2738 M: Liviu Dudau <liviu.dudau@arm.com>
2739 M: Sudeep Holla <sudeep.holla@arm.com>
2740 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2741 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2745 F: arch/arm/boot/dts/vexpress*
2746 F: arch/arm/mach-vexpress/
2747 F: arch/arm64/boot/dts/arm/
2748 F: drivers/clk/versatile/clk-vexpress-osc.c
2749 F: drivers/clocksource/timer-versatile.c
2753 M: Russell King <linux@armlinux.org.uk>
2754 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2756 W: http://www.armlinux.org.uk/
2759 ARM/VOIPAC PXA270 SUPPORT
2760 M: Marek Vasut <marek.vasut@gmail.com>
2761 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2763 F: arch/arm/mach-pxa/include/mach/vpac270.h
2764 F: arch/arm/mach-pxa/vpac270.c
2766 ARM/VT8500 ARM ARCHITECTURE
2767 M: Tony Prisk <linux@prisktech.co.nz>
2768 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2770 F: Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2771 F: arch/arm/mach-vt8500/
2772 F: drivers/clocksource/timer-vt8500.c
2773 F: drivers/i2c/busses/i2c-wmt.c
2774 F: drivers/mmc/host/wmt-sdmmc.c
2775 F: drivers/pwm/pwm-vt8500.c
2776 F: drivers/rtc/rtc-vt8500.c
2777 F: drivers/tty/serial/vt8500_serial.c
2778 F: drivers/usb/host/ehci-platform.c
2779 F: drivers/usb/host/uhci-platform.c
2780 F: drivers/video/fbdev/vt8500lcdfb.*
2781 F: drivers/video/fbdev/wm8505fb*
2782 F: drivers/video/fbdev/wmt_ge_rops.*
2784 ARM/ZIPIT Z2 SUPPORT
2785 M: Marek Vasut <marek.vasut@gmail.com>
2786 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2788 F: arch/arm/mach-pxa/include/mach/z2.h
2789 F: arch/arm/mach-pxa/z2.c
2791 ARM/ZYNQ ARCHITECTURE
2792 M: Michal Simek <michal.simek@xilinx.com>
2793 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2795 W: http://wiki.xilinx.com
2796 T: git https://github.com/Xilinx/linux-xlnx.git
2797 F: Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2798 F: Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2799 F: Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2800 F: arch/arm/mach-zynq/
2801 F: drivers/clocksource/timer-cadence-ttc.c
2802 F: drivers/cpuidle/cpuidle-zynq.c
2803 F: drivers/edac/synopsys_edac.c
2804 F: drivers/i2c/busses/i2c-cadence.c
2805 F: drivers/i2c/busses/i2c-xiic.c
2806 F: drivers/mmc/host/sdhci-of-arasan.c
2810 ARM64 PORT (AARCH64 ARCHITECTURE)
2811 M: Catalin Marinas <catalin.marinas@arm.com>
2812 M: Will Deacon <will@kernel.org>
2813 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2815 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2816 F: Documentation/arm64/
2818 F: tools/testing/selftests/arm64/
2819 X: arch/arm64/boot/dts/
2821 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2822 M: George McCollister <george.mccollister@gmail.com>
2823 L: netdev@vger.kernel.org
2825 F: Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2826 F: drivers/net/dsa/xrs700x/*
2827 F: net/dsa/tag_xrs700x.c
2829 AS3645A LED FLASH CONTROLLER DRIVER
2830 M: Sakari Ailus <sakari.ailus@iki.fi>
2831 L: linux-leds@vger.kernel.org
2833 F: drivers/leds/leds-as3645a.c
2835 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2836 M: Tianshu Qiu <tian.shu.qiu@intel.com>
2837 L: linux-media@vger.kernel.org
2839 T: git git://linuxtv.org/media_tree.git
2840 F: Documentation/devicetree/bindings/media/i2c/ak7375.txt
2841 F: drivers/media/i2c/ak7375.c
2843 ASAHI KASEI AK8974 DRIVER
2844 M: Linus Walleij <linus.walleij@linaro.org>
2845 L: linux-iio@vger.kernel.org
2847 W: http://www.akm.com/
2848 F: drivers/iio/magnetometer/ak8974.c
2850 ASC7621 HARDWARE MONITOR DRIVER
2851 M: George Joseph <george.joseph@fairview5.com>
2852 L: linux-hwmon@vger.kernel.org
2854 F: Documentation/hwmon/asc7621.rst
2855 F: drivers/hwmon/asc7621.c
2857 ASPEED PINCTRL DRIVERS
2858 M: Andrew Jeffery <andrew@aj.id.au>
2859 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2860 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2861 L: linux-gpio@vger.kernel.org
2863 F: Documentation/devicetree/bindings/pinctrl/aspeed,*
2864 F: drivers/pinctrl/aspeed/
2866 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2867 M: Eddie James <eajames@linux.ibm.com>
2868 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2870 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2871 F: drivers/irqchip/irq-aspeed-scu-ic.c
2872 F: include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2874 ASPEED SD/MMC DRIVER
2875 M: Andrew Jeffery <andrew@aj.id.au>
2876 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2877 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2878 L: linux-mmc@vger.kernel.org
2880 F: Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2881 F: drivers/mmc/host/sdhci-of-aspeed*
2883 ASPEED VIDEO ENGINE DRIVER
2884 M: Eddie James <eajames@linux.ibm.com>
2885 L: linux-media@vger.kernel.org
2886 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2888 F: Documentation/devicetree/bindings/media/aspeed-video.txt
2889 F: drivers/media/platform/aspeed-video.c
2891 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2892 M: Corentin Chary <corentin.chary@gmail.com>
2893 L: acpi4asus-user@lists.sourceforge.net
2894 L: platform-driver-x86@vger.kernel.org
2896 W: http://acpi4asus.sf.net
2897 F: drivers/platform/x86/asus*.c
2898 F: drivers/platform/x86/eeepc*.c
2900 ASUS WIRELESS RADIO CONTROL DRIVER
2901 M: João Paulo Rechi Vita <jprvita@gmail.com>
2902 L: platform-driver-x86@vger.kernel.org
2904 F: drivers/platform/x86/asus-wireless.c
2907 M: David Howells <dhowells@redhat.com>
2908 L: keyrings@vger.kernel.org
2910 F: Documentation/crypto/asymmetric-keys.rst
2911 F: crypto/asymmetric_keys/
2912 F: include/crypto/pkcs7.h
2913 F: include/crypto/public_key.h
2914 F: include/linux/verification.h
2916 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2917 R: Dan Williams <dan.j.williams@intel.com>
2919 W: http://sourceforge.net/projects/xscaleiop
2920 F: Documentation/crypto/async-tx-api.rst
2922 F: include/linux/async_tx.h
2925 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
2926 L: linux-i2c@vger.kernel.org
2928 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2929 F: Documentation/devicetree/bindings/eeprom/at24.yaml
2930 F: drivers/misc/eeprom/at24.c
2932 ATA OVER ETHERNET (AOE) DRIVER
2933 M: "Justin Sanders" <justin@coraid.com>
2935 W: http://www.openaoe.org/
2936 F: Documentation/admin-guide/aoe/
2937 F: drivers/block/aoe/
2939 ATC260X PMIC MFD DRIVER
2940 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2941 M: Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2942 L: linux-actions@lists.infradead.org
2944 F: Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2945 F: drivers/input/misc/atc260x-onkey.c
2946 F: drivers/mfd/atc260*
2947 F: drivers/power/reset/atc260x-poweroff.c
2948 F: drivers/regulator/atc260x-regulator.c
2949 F: include/linux/mfd/atc260x/*
2951 ATHEROS 71XX/9XXX GPIO DRIVER
2952 M: Alban Bedel <albeu@free.fr>
2954 W: https://github.com/AlbanBedel/linux
2955 T: git git://github.com/AlbanBedel/linux
2956 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2957 F: drivers/gpio/gpio-ath79.c
2959 ATHEROS 71XX/9XXX USB PHY DRIVER
2960 M: Alban Bedel <albeu@free.fr>
2962 W: https://github.com/AlbanBedel/linux
2963 T: git git://github.com/AlbanBedel/linux
2964 F: Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2965 F: drivers/phy/qualcomm/phy-ath79-usb.c
2967 ATHEROS ATH GENERIC UTILITIES
2968 M: Kalle Valo <kvalo@codeaurora.org>
2969 L: linux-wireless@vger.kernel.org
2971 F: drivers/net/wireless/ath/*
2973 ATHEROS ATH5K WIRELESS DRIVER
2974 M: Jiri Slaby <jirislaby@kernel.org>
2975 M: Nick Kossifidis <mickflemm@gmail.com>
2976 M: Luis Chamberlain <mcgrof@kernel.org>
2977 L: linux-wireless@vger.kernel.org
2979 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2980 F: drivers/net/wireless/ath/ath5k/
2982 ATHEROS ATH6KL WIRELESS DRIVER
2983 M: Kalle Valo <kvalo@codeaurora.org>
2984 L: linux-wireless@vger.kernel.org
2986 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2987 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2988 F: drivers/net/wireless/ath/ath6kl/
2991 M: Ville Syrjala <syrjala@sci.fi>
2993 F: drivers/input/misc/ati_remote2.c
2995 ATK0110 HWMON DRIVER
2996 M: Luca Tettamanti <kronos.it@gmail.com>
2997 L: linux-hwmon@vger.kernel.org
2999 F: drivers/hwmon/asus_atk0110.c
3001 ATLX ETHERNET DRIVERS
3002 M: Chris Snook <chris.snook@gmail.com>
3003 L: netdev@vger.kernel.org
3005 W: http://sourceforge.net/projects/atl1
3006 W: http://atl1.sourceforge.net
3007 F: drivers/net/ethernet/atheros/
3010 M: Chas Williams <3chas3@gmail.com>
3011 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3012 L: netdev@vger.kernel.org
3014 W: http://linux-atm.sourceforge.net
3016 F: include/linux/atm*
3017 F: include/uapi/linux/atm*
3019 ATMEL MACB ETHERNET DRIVER
3020 M: Nicolas Ferre <nicolas.ferre@microchip.com>
3021 M: Claudiu Beznea <claudiu.beznea@microchip.com>
3023 F: drivers/net/ethernet/cadence/
3025 ATMEL MAXTOUCH DRIVER
3026 M: Nick Dyer <nick@shmanahar.org>
3028 T: git git://github.com/ndyer/linux.git
3029 F: Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3030 F: drivers/input/touchscreen/atmel_mxt_ts.c
3032 ATMEL WIRELESS DRIVER
3033 M: Simon Kelley <simon@thekelleys.org.uk>
3034 L: linux-wireless@vger.kernel.org
3036 W: http://www.thekelleys.org.uk/atmel
3037 W: http://atmelwlandriver.sourceforge.net/
3038 F: drivers/net/wireless/atmel/atmel*
3040 ATOMIC INFRASTRUCTURE
3041 M: Will Deacon <will@kernel.org>
3042 M: Peter Zijlstra <peterz@infradead.org>
3043 R: Boqun Feng <boqun.feng@gmail.com>
3044 L: linux-kernel@vger.kernel.org
3046 F: arch/*/include/asm/atomic*.h
3047 F: include/*/atomic*.h
3048 F: include/linux/refcount.h
3049 F: Documentation/atomic_*.txt
3052 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3053 M: Bradley Grove <linuxdrivers@attotech.com>
3054 L: linux-scsi@vger.kernel.org
3056 W: http://www.attotech.com
3057 F: drivers/scsi/esas2r
3059 ATUSB IEEE 802.15.4 RADIO DRIVER
3060 M: Stefan Schmidt <stefan@datenfreihafen.org>
3061 L: linux-wpan@vger.kernel.org
3063 F: drivers/net/ieee802154/at86rf230.h
3064 F: drivers/net/ieee802154/atusb.c
3065 F: drivers/net/ieee802154/atusb.h
3068 M: Paul Moore <paul@paul-moore.com>
3069 M: Eric Paris <eparis@redhat.com>
3070 L: linux-audit@redhat.com (moderated for non-subscribers)
3072 W: https://github.com/linux-audit
3073 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3074 F: include/asm-generic/audit_*.h
3075 F: include/linux/audit.h
3076 F: include/uapi/linux/audit.h
3080 AUXILIARY DISPLAY DRIVERS
3081 M: Miguel Ojeda <ojeda@kernel.org>
3083 F: drivers/auxdisplay/
3084 F: include/linux/cfag12864b.h
3086 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3087 M: Andreas Klinger <ak@it-klinger.de>
3088 L: linux-iio@vger.kernel.org
3090 F: Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3091 F: drivers/iio/adc/hx711.c
3094 M: Ralf Baechle <ralf@linux-mips.org>
3095 L: linux-hams@vger.kernel.org
3097 W: http://www.linux-ax25.org/
3098 F: include/net/ax25.h
3099 F: include/uapi/linux/ax25.h
3103 M: Peter Rosin <peda@axentia.se>
3104 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3106 F: arch/arm/boot/dts/at91-linea.dtsi
3107 F: arch/arm/boot/dts/at91-natte.dtsi
3108 F: arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3109 F: arch/arm/boot/dts/at91-tse850-3.dts
3111 AXENTIA ASOC DRIVERS
3112 M: Peter Rosin <peda@axentia.se>
3113 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3115 F: Documentation/devicetree/bindings/sound/axentia,*
3116 F: sound/soc/atmel/tse850-pcm5142.c
3118 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3119 M: Nuno Sá <nuno.sa@analog.com>
3120 L: linux-hwmon@vger.kernel.org
3122 W: http://ez.analog.com/community/linux-device-drivers
3123 F: Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3124 F: drivers/hwmon/axi-fan-control.c
3126 AXXIA I2C CONTROLLER
3127 M: Krzysztof Adamski <krzysztof.adamski@nokia.com>
3128 L: linux-i2c@vger.kernel.org
3130 F: Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3131 F: drivers/i2c/busses/i2c-axxia.c
3134 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3135 L: linux-media@vger.kernel.org
3137 W: https://linuxtv.org
3138 T: git git://linuxtv.org/media_tree.git
3139 F: drivers/media/usb/dvb-usb-v2/az6007.c
3141 AZTECH FM RADIO RECEIVER DRIVER
3142 M: Hans Verkuil <hverkuil@xs4all.nl>
3143 L: linux-media@vger.kernel.org
3145 W: https://linuxtv.org
3146 T: git git://linuxtv.org/media_tree.git
3147 F: drivers/media/radio/radio-aztech*
3150 L: linux-wireless@vger.kernel.org
3151 L: b43-dev@lists.infradead.org
3153 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3154 F: drivers/net/wireless/broadcom/b43/
3156 B43LEGACY WIRELESS DRIVER
3157 M: Larry Finger <Larry.Finger@lwfinger.net>
3158 L: linux-wireless@vger.kernel.org
3159 L: b43-dev@lists.infradead.org
3161 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3162 F: drivers/net/wireless/broadcom/b43legacy/
3164 BACKLIGHT CLASS/SUBSYSTEM
3165 M: Lee Jones <lee.jones@linaro.org>
3166 M: Daniel Thompson <daniel.thompson@linaro.org>
3167 M: Jingoo Han <jingoohan1@gmail.com>
3168 L: dri-devel@lists.freedesktop.org
3170 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3171 F: Documentation/ABI/stable/sysfs-class-backlight
3172 F: Documentation/ABI/testing/sysfs-class-backlight
3173 F: Documentation/devicetree/bindings/leds/backlight
3174 F: drivers/video/backlight/
3175 F: include/linux/backlight.h
3176 F: include/linux/pwm_backlight.h
3179 M: Marek Lindner <mareklindner@neomailbox.ch>
3180 M: Simon Wunderlich <sw@simonwunderlich.de>
3181 M: Antonio Quartulli <a@unstable.cc>
3182 M: Sven Eckelmann <sven@narfation.org>
3183 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3185 W: https://www.open-mesh.org/
3186 Q: https://patchwork.open-mesh.org/project/batman/list/
3187 B: https://www.open-mesh.org/projects/batman-adv/issues
3188 C: irc://chat.freenode.net/batman
3189 T: git https://git.open-mesh.org/linux-merge.git
3190 F: Documentation/networking/batman-adv.rst
3191 F: include/uapi/linux/batadv_packet.h
3192 F: include/uapi/linux/batman_adv.h
3195 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3196 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
3197 L: linux-hams@vger.kernel.org
3199 W: http://www.baycom.org/~tom/ham/ham.html
3200 F: drivers/net/hamradio/baycom*
3202 BCACHE (BLOCK LAYER CACHE)
3203 M: Coly Li <colyli@suse.de>
3204 M: Kent Overstreet <kent.overstreet@gmail.com>
3205 L: linux-bcache@vger.kernel.org
3207 W: http://bcache.evilpiepirate.org
3208 C: irc://irc.oftc.net/bcache
3209 F: drivers/md/bcache/
3211 BDISP ST MEDIA DRIVER
3212 M: Fabien Dessenne <fabien.dessenne@foss.st.com>
3213 L: linux-media@vger.kernel.org
3215 W: https://linuxtv.org
3216 T: git git://linuxtv.org/media_tree.git
3217 F: drivers/media/platform/sti/bdisp
3219 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3220 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
3221 L: netdev@vger.kernel.org
3223 F: drivers/net/ethernet/ec_bhf.c
3226 M: Luis de Bethencourt <luisbg@kernel.org>
3227 M: Salah Triki <salah.triki@gmail.com>
3229 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3230 F: Documentation/filesystems/befs.rst
3234 M: Paolo Valente <paolo.valente@linaro.org>
3235 M: Jens Axboe <axboe@kernel.dk>
3236 L: linux-block@vger.kernel.org
3238 F: Documentation/block/bfq-iosched.rst
3242 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3244 F: Documentation/filesystems/bfs.rst
3246 F: include/uapi/linux/bfs_fs.h
3249 M: Yury Norov <yury.norov@gmail.com>
3250 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3251 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
3253 F: include/asm-generic/bitops/find.h
3254 F: include/linux/bitmap.h
3257 F: lib/find_bit_benchmark.c
3258 F: lib/test_bitmap.c
3259 F: tools/include/asm-generic/bitops/find.h
3260 F: tools/include/linux/bitmap.h
3261 F: tools/lib/bitmap.c
3262 F: tools/lib/find_bit.c
3264 BLINKM RGB LED DRIVER
3265 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
3267 F: drivers/leds/leds-blinkm.c
3270 M: Jens Axboe <axboe@kernel.dk>
3271 L: linux-block@vger.kernel.org
3273 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3277 F: include/linux/blk*
3278 F: kernel/trace/blktrace.c
3282 M: Joern Engel <joern@lazybastard.org>
3283 L: linux-mtd@lists.infradead.org
3285 F: drivers/mtd/devices/block2mtd.c
3288 M: Marcel Holtmann <marcel@holtmann.org>
3289 M: Johan Hedberg <johan.hedberg@gmail.com>
3290 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3291 L: linux-bluetooth@vger.kernel.org
3293 W: http://www.bluez.org/
3294 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3295 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3296 F: drivers/bluetooth/
3299 M: Marcel Holtmann <marcel@holtmann.org>
3300 M: Johan Hedberg <johan.hedberg@gmail.com>
3301 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3302 L: linux-bluetooth@vger.kernel.org
3304 W: http://www.bluez.org/
3305 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3306 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3307 F: include/net/bluetooth/
3311 M: Jay Vosburgh <j.vosburgh@gmail.com>
3312 M: Veaceslav Falico <vfalico@gmail.com>
3313 M: Andy Gospodarek <andy@greyhouse.net>
3314 L: netdev@vger.kernel.org
3316 W: http://sourceforge.net/projects/bonding/
3317 F: drivers/net/bonding/
3318 F: include/net/bonding.h
3319 F: include/uapi/linux/if_bonding.h
3321 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3322 M: Dan Robertson <dan@dlrobertson.com>
3323 L: linux-iio@vger.kernel.org
3325 F: Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3326 F: drivers/iio/accel/bma400*
3328 BPF (Safe dynamic programs and tools)
3329 M: Alexei Starovoitov <ast@kernel.org>
3330 M: Daniel Borkmann <daniel@iogearbox.net>
3331 M: Andrii Nakryiko <andrii@kernel.org>
3332 R: Martin KaFai Lau <kafai@fb.com>
3333 R: Song Liu <songliubraving@fb.com>
3334 R: Yonghong Song <yhs@fb.com>
3335 R: John Fastabend <john.fastabend@gmail.com>
3336 R: KP Singh <kpsingh@kernel.org>
3337 L: netdev@vger.kernel.org
3338 L: bpf@vger.kernel.org
3341 Q: https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3342 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3344 F: Documentation/bpf/
3345 F: Documentation/networking/filter.rst
3346 F: Documentation/userspace-api/ebpf/
3348 F: include/linux/bpf*
3349 F: include/linux/filter.h
3350 F: include/trace/events/xdp.h
3351 F: include/uapi/linux/bpf*
3352 F: include/uapi/linux/filter.h
3354 F: kernel/trace/bpf_trace.c
3357 F: net/core/filter.c
3358 F: net/sched/act_bpf.c
3359 F: net/sched/cls_bpf.c
3361 F: scripts/bpf_doc.py
3364 F: tools/testing/selftests/bpf/
3369 M: Shubham Bansal <illusionist.neo@gmail.com>
3370 L: netdev@vger.kernel.org
3371 L: bpf@vger.kernel.org
3376 M: Daniel Borkmann <daniel@iogearbox.net>
3377 M: Alexei Starovoitov <ast@kernel.org>
3378 M: Zi Shen Lim <zlim.lnx@gmail.com>
3379 L: netdev@vger.kernel.org
3380 L: bpf@vger.kernel.org
3384 BPF JIT for MIPS (32-BIT AND 64-BIT)
3385 M: Paul Burton <paulburton@kernel.org>
3386 L: netdev@vger.kernel.org
3387 L: bpf@vger.kernel.org
3391 BPF JIT for NFP NICs
3392 M: Jakub Kicinski <kuba@kernel.org>
3393 L: netdev@vger.kernel.org
3394 L: bpf@vger.kernel.org
3396 F: drivers/net/ethernet/netronome/nfp/bpf/
3398 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3399 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3400 M: Sandipan Das <sandipan@linux.ibm.com>
3401 L: netdev@vger.kernel.org
3402 L: bpf@vger.kernel.org
3404 F: arch/powerpc/net/
3406 BPF JIT for RISC-V (32-bit)
3407 M: Luke Nelson <luke.r.nels@gmail.com>
3408 M: Xi Wang <xi.wang@gmail.com>
3409 L: netdev@vger.kernel.org
3410 L: bpf@vger.kernel.org
3413 X: arch/riscv/net/bpf_jit_comp64.c
3415 BPF JIT for RISC-V (64-bit)
3416 M: Björn Töpel <bjorn@kernel.org>
3417 L: netdev@vger.kernel.org
3418 L: bpf@vger.kernel.org
3421 X: arch/riscv/net/bpf_jit_comp32.c
3424 M: Ilya Leoshkevich <iii@linux.ibm.com>
3425 M: Heiko Carstens <hca@linux.ibm.com>
3426 M: Vasily Gorbik <gor@linux.ibm.com>
3427 L: netdev@vger.kernel.org
3428 L: bpf@vger.kernel.org
3431 X: arch/s390/net/pnet.c
3433 BPF JIT for SPARC (32-BIT AND 64-BIT)
3434 M: David S. Miller <davem@davemloft.net>
3435 L: netdev@vger.kernel.org
3436 L: bpf@vger.kernel.org
3440 BPF JIT for X86 32-BIT
3441 M: Wang YanQing <udknight@gmail.com>
3442 L: netdev@vger.kernel.org
3443 L: bpf@vger.kernel.org
3445 F: arch/x86/net/bpf_jit_comp32.c
3447 BPF JIT for X86 64-BIT
3448 M: Alexei Starovoitov <ast@kernel.org>
3449 M: Daniel Borkmann <daniel@iogearbox.net>
3450 L: netdev@vger.kernel.org
3451 L: bpf@vger.kernel.org
3454 X: arch/x86/net/bpf_jit_comp32.c
3456 BPF LSM (Security Audit and Enforcement using BPF)
3457 M: KP Singh <kpsingh@kernel.org>
3458 R: Florent Revest <revest@chromium.org>
3459 R: Brendan Jackman <jackmanb@chromium.org>
3460 L: bpf@vger.kernel.org
3462 F: Documentation/bpf/bpf_lsm.rst
3463 F: include/linux/bpf_lsm.h
3464 F: kernel/bpf/bpf_lsm.c
3467 BROADCOM B44 10/100 ETHERNET DRIVER
3468 M: Michael Chan <michael.chan@broadcom.com>
3469 L: netdev@vger.kernel.org
3471 F: drivers/net/ethernet/broadcom/b44.*
3473 BROADCOM B53 ETHERNET SWITCH DRIVER
3474 M: Florian Fainelli <f.fainelli@gmail.com>
3475 L: netdev@vger.kernel.org
3476 L: openwrt-devel@lists.openwrt.org (subscribers-only)
3478 F: Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3479 F: drivers/net/dsa/b53/*
3480 F: include/linux/dsa/brcm.h
3481 F: include/linux/platform_data/b53.h
3483 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3484 M: Nicolas Saenz Julienne <nsaenz@kernel.org>
3485 L: bcm-kernel-feedback-list@broadcom.com
3486 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3487 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3489 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3490 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3491 F: drivers/pci/controller/pcie-brcmstb.c
3492 F: drivers/staging/vc04_services
3496 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3497 M: Florian Fainelli <f.fainelli@gmail.com>
3498 M: Ray Jui <rjui@broadcom.com>
3499 M: Scott Branden <sbranden@broadcom.com>
3500 M: bcm-kernel-feedback-list@broadcom.com
3502 T: git git://github.com/broadcom/mach-bcm
3503 F: arch/arm/mach-bcm/
3509 BROADCOM BCM47XX MIPS ARCHITECTURE
3510 M: Hauke Mehrtens <hauke@hauke-m.de>
3511 M: Rafał Miłecki <zajec5@gmail.com>
3512 L: linux-mips@vger.kernel.org
3514 F: Documentation/devicetree/bindings/mips/brcm/
3515 F: arch/mips/bcm47xx/*
3516 F: arch/mips/include/asm/mach-bcm47xx/*
3518 BROADCOM BCM4908 ETHERNET DRIVER
3519 M: Rafał Miłecki <rafal@milecki.pl>
3520 M: bcm-kernel-feedback-list@broadcom.com
3521 L: netdev@vger.kernel.org
3523 F: Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3524 F: drivers/net/ethernet/broadcom/bcm4908_enet.*
3525 F: drivers/net/ethernet/broadcom/unimac.h
3527 BROADCOM BCM5301X ARM ARCHITECTURE
3528 M: Hauke Mehrtens <hauke@hauke-m.de>
3529 M: Rafał Miłecki <zajec5@gmail.com>
3530 M: bcm-kernel-feedback-list@broadcom.com
3531 L: linux-arm-kernel@lists.infradead.org
3533 F: arch/arm/boot/dts/bcm470*
3534 F: arch/arm/boot/dts/bcm5301*
3535 F: arch/arm/boot/dts/bcm953012*
3536 F: arch/arm/mach-bcm/bcm_5301x.c
3538 BROADCOM BCM53573 ARM ARCHITECTURE
3539 M: Rafał Miłecki <rafal@milecki.pl>
3540 L: bcm-kernel-feedback-list@broadcom.com
3541 L: linux-arm-kernel@lists.infradead.org
3543 F: arch/arm/boot/dts/bcm47189*
3544 F: arch/arm/boot/dts/bcm53573*
3546 BROADCOM BCM63XX ARM ARCHITECTURE
3547 M: Florian Fainelli <f.fainelli@gmail.com>
3548 M: bcm-kernel-feedback-list@broadcom.com
3549 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3551 T: git git://github.com/broadcom/stblinux.git
3554 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3555 M: Kevin Cernekee <cernekee@gmail.com>
3556 L: linux-usb@vger.kernel.org
3558 F: drivers/usb/gadget/udc/bcm63xx_udc.*
3560 BROADCOM BCM7XXX ARM ARCHITECTURE
3561 M: Florian Fainelli <f.fainelli@gmail.com>
3562 M: bcm-kernel-feedback-list@broadcom.com
3563 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3565 T: git git://github.com/broadcom/stblinux.git
3566 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3567 F: arch/arm/boot/dts/bcm7*.dts*
3568 F: arch/arm/include/asm/hardware/cache-b15-rac.h
3569 F: arch/arm/mach-bcm/*brcmstb*
3570 F: arch/arm/mm/cache-b15-rac.c
3571 F: drivers/bus/brcmstb_gisb.c
3572 F: drivers/pci/controller/pcie-brcmstb.c
3576 M: Al Cooper <alcooperx@gmail.com>
3577 L: linux-usb@vger.kernel.org
3578 L: bcm-kernel-feedback-list@broadcom.com
3580 F: Documentation/devicetree/bindings/usb/brcm,bdc.txt
3581 F: drivers/usb/gadget/udc/bdc/
3583 BROADCOM BMIPS CPUFREQ DRIVER
3584 M: Markus Mayer <mmayer@broadcom.com>
3585 M: bcm-kernel-feedback-list@broadcom.com
3586 L: linux-pm@vger.kernel.org
3588 F: drivers/cpufreq/bmips-cpufreq.c
3590 BROADCOM BMIPS MIPS ARCHITECTURE
3591 M: Florian Fainelli <f.fainelli@gmail.com>
3592 L: bcm-kernel-feedback-list@broadcom.com
3593 L: linux-mips@vger.kernel.org
3595 T: git git://github.com/broadcom/stblinux.git
3596 F: arch/mips/bmips/*
3597 F: arch/mips/boot/dts/brcm/bcm*.dts*
3598 F: arch/mips/include/asm/mach-bmips/*
3599 F: arch/mips/kernel/*bmips*
3600 F: drivers/soc/bcm/bcm63xx
3601 F: drivers/irqchip/irq-bcm63*
3602 F: drivers/irqchip/irq-bcm7*
3603 F: drivers/irqchip/irq-brcmstb*
3604 F: include/linux/bcm963xx_nvram.h
3605 F: include/linux/bcm963xx_tag.h
3607 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3608 M: Rasesh Mody <rmody@marvell.com>
3609 M: GR-Linux-NIC-Dev@marvell.com
3610 L: netdev@vger.kernel.org
3612 F: drivers/net/ethernet/broadcom/bnx2.*
3613 F: drivers/net/ethernet/broadcom/bnx2_*
3615 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3616 M: Saurav Kashyap <skashyap@marvell.com>
3617 M: Javed Hasan <jhasan@marvell.com>
3618 M: GR-QLogic-Storage-Upstream@marvell.com
3619 L: linux-scsi@vger.kernel.org
3621 F: drivers/scsi/bnx2fc/
3623 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3624 M: Nilesh Javali <njavali@marvell.com>
3625 M: Manish Rangankar <mrangankar@marvell.com>
3626 M: GR-QLogic-Storage-Upstream@marvell.com
3627 L: linux-scsi@vger.kernel.org
3629 F: drivers/scsi/bnx2i/
3631 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3632 M: Ariel Elior <aelior@marvell.com>
3633 M: Sudarsana Kalluru <skalluru@marvell.com>
3634 M: GR-everest-linux-l2@marvell.com
3635 L: netdev@vger.kernel.org
3637 F: drivers/net/ethernet/broadcom/bnx2x/
3639 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3640 M: Michael Chan <michael.chan@broadcom.com>
3641 L: netdev@vger.kernel.org
3643 F: drivers/net/ethernet/broadcom/bnxt/
3645 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3646 M: Arend van Spriel <aspriel@gmail.com>
3647 M: Franky Lin <franky.lin@broadcom.com>
3648 M: Hante Meuleman <hante.meuleman@broadcom.com>
3649 M: Chi-hsien Lin <chi-hsien.lin@infineon.com>
3650 M: Wright Feng <wright.feng@infineon.com>
3651 M: Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3652 L: linux-wireless@vger.kernel.org
3653 L: brcm80211-dev-list.pdl@broadcom.com
3654 L: SHA-cyfmac-dev-list@infineon.com
3656 F: drivers/net/wireless/broadcom/brcm80211/
3658 BROADCOM BRCMSTB GPIO DRIVER
3659 M: Gregory Fong <gregory.0xf0@gmail.com>
3660 L: bcm-kernel-feedback-list@broadcom.com
3662 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3663 F: drivers/gpio/gpio-brcmstb.c
3665 BROADCOM BRCMSTB I2C DRIVER
3666 M: Kamal Dasu <kdasu.kdev@gmail.com>
3667 L: linux-i2c@vger.kernel.org
3668 L: bcm-kernel-feedback-list@broadcom.com
3670 F: Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3671 F: drivers/i2c/busses/i2c-brcmstb.c
3673 BROADCOM BRCMSTB UART DRIVER
3674 M: Al Cooper <alcooperx@gmail.com>
3675 L: linux-serial@vger.kernel.org
3676 L: bcm-kernel-feedback-list@broadcom.com
3678 F: Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3679 F: drivers/tty/serial/8250/8250_bcm7271.c
3681 BROADCOM BRCMSTB USB EHCI DRIVER
3682 M: Al Cooper <alcooperx@gmail.com>
3683 L: linux-usb@vger.kernel.org
3684 L: bcm-kernel-feedback-list@broadcom.com
3686 F: Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3687 F: drivers/usb/host/ehci-brcm.*
3689 BROADCOM BRCMSTB USB PIN MAP DRIVER
3690 M: Al Cooper <alcooperx@gmail.com>
3691 L: linux-usb@vger.kernel.org
3692 L: bcm-kernel-feedback-list@broadcom.com
3694 F: Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3695 F: drivers/usb/misc/brcmstb-usb-pinmap.c
3697 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3698 M: Al Cooper <alcooperx@gmail.com>
3699 L: linux-kernel@vger.kernel.org
3700 L: bcm-kernel-feedback-list@broadcom.com
3702 F: drivers/phy/broadcom/phy-brcm-usb*
3704 BROADCOM ETHERNET PHY DRIVERS
3705 M: Florian Fainelli <f.fainelli@gmail.com>
3706 L: bcm-kernel-feedback-list@broadcom.com
3707 L: netdev@vger.kernel.org
3709 F: Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3710 F: drivers/net/phy/bcm*.[ch]
3711 F: drivers/net/phy/broadcom.c
3712 F: include/linux/brcmphy.h
3714 BROADCOM GENET ETHERNET DRIVER
3715 M: Doug Berger <opendmb@gmail.com>
3716 M: Florian Fainelli <f.fainelli@gmail.com>
3717 L: bcm-kernel-feedback-list@broadcom.com
3718 L: netdev@vger.kernel.org
3720 F: Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3721 F: Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3722 F: drivers/net/ethernet/broadcom/genet/
3723 F: drivers/net/ethernet/broadcom/unimac.h
3724 F: drivers/net/mdio/mdio-bcm-unimac.c
3725 F: include/linux/platform_data/bcmgenet.h
3726 F: include/linux/platform_data/mdio-bcm-unimac.h
3728 BROADCOM IPROC ARM ARCHITECTURE
3729 M: Ray Jui <rjui@broadcom.com>
3730 M: Scott Branden <sbranden@broadcom.com>
3731 M: bcm-kernel-feedback-list@broadcom.com
3732 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3734 T: git git://github.com/broadcom/cygnus-linux.git
3735 F: arch/arm64/boot/dts/broadcom/northstar2/*
3736 F: arch/arm64/boot/dts/broadcom/stingray/*
3737 F: drivers/clk/bcm/clk-ns*
3738 F: drivers/clk/bcm/clk-sr*
3739 F: drivers/pinctrl/bcm/pinctrl-ns*
3740 F: include/dt-bindings/clock/bcm-sr*
3757 BROADCOM IPROC GBIT ETHERNET DRIVER
3758 M: Rafał Miłecki <rafal@milecki.pl>
3759 M: bcm-kernel-feedback-list@broadcom.com
3760 L: netdev@vger.kernel.org
3762 F: Documentation/devicetree/bindings/net/brcm,amac.txt
3763 F: drivers/net/ethernet/broadcom/bgmac*
3764 F: drivers/net/ethernet/broadcom/unimac.h
3766 BROADCOM KONA GPIO DRIVER
3767 M: Ray Jui <rjui@broadcom.com>
3768 L: bcm-kernel-feedback-list@broadcom.com
3770 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3771 F: drivers/gpio/gpio-bcm-kona.c
3773 BROADCOM NETXTREME-E ROCE DRIVER
3774 M: Selvin Xavier <selvin.xavier@broadcom.com>
3775 M: Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3776 L: linux-rdma@vger.kernel.org
3778 W: http://www.broadcom.com
3779 F: drivers/infiniband/hw/bnxt_re/
3780 F: include/uapi/rdma/bnxt_re-abi.h
3782 BROADCOM NVRAM DRIVER
3783 M: Rafał Miłecki <zajec5@gmail.com>
3784 L: linux-mips@vger.kernel.org
3786 F: drivers/firmware/broadcom/*
3788 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3789 M: Rafał Miłecki <rafal@milecki.pl>
3790 M: Florian Fainelli <f.fainelli@gmail.com>
3791 M: bcm-kernel-feedback-list@broadcom.com
3792 L: linux-pm@vger.kernel.org
3794 T: git git://github.com/broadcom/stblinux.git
3795 F: drivers/soc/bcm/bcm63xx/bcm-pmb.c
3796 F: include/dt-bindings/soc/bcm-pmb.h
3798 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3799 M: Rafał Miłecki <zajec5@gmail.com>
3800 L: linux-wireless@vger.kernel.org
3803 F: include/linux/bcma/
3806 M: Kamal Dasu <kdasu.kdev@gmail.com>
3807 M: bcm-kernel-feedback-list@broadcom.com
3809 F: Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3810 F: drivers/spi/spi-bcm-qspi.*
3811 F: drivers/spi/spi-brcmstb-qspi.c
3812 F: drivers/spi/spi-iproc-qspi.c
3814 BROADCOM STB AVS CPUFREQ DRIVER
3815 M: Markus Mayer <mmayer@broadcom.com>
3816 M: bcm-kernel-feedback-list@broadcom.com
3817 L: linux-pm@vger.kernel.org
3819 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3820 F: drivers/cpufreq/brcmstb*
3822 BROADCOM STB AVS TMON DRIVER
3823 M: Markus Mayer <mmayer@broadcom.com>
3824 M: bcm-kernel-feedback-list@broadcom.com
3825 L: linux-pm@vger.kernel.org
3827 F: Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3828 F: drivers/thermal/broadcom/brcmstb*
3830 BROADCOM STB DPFE DRIVER
3831 M: Markus Mayer <mmayer@broadcom.com>
3832 M: bcm-kernel-feedback-list@broadcom.com
3833 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3835 F: Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3836 F: drivers/memory/brcmstb_dpfe.c
3838 BROADCOM STB NAND FLASH DRIVER
3839 M: Brian Norris <computersforpeace@gmail.com>
3840 M: Kamal Dasu <kdasu.kdev@gmail.com>
3841 L: linux-mtd@lists.infradead.org
3842 L: bcm-kernel-feedback-list@broadcom.com
3844 F: drivers/mtd/nand/raw/brcmnand/
3846 BROADCOM SYSTEMPORT ETHERNET DRIVER
3847 M: Florian Fainelli <f.fainelli@gmail.com>
3848 L: bcm-kernel-feedback-list@broadcom.com
3849 L: netdev@vger.kernel.org
3851 F: drivers/net/ethernet/broadcom/bcmsysport.*
3852 F: drivers/net/ethernet/broadcom/unimac.h
3854 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3855 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
3856 M: Prashant Sreedharan <prashant@broadcom.com>
3857 M: Michael Chan <mchan@broadcom.com>
3858 L: netdev@vger.kernel.org
3860 F: drivers/net/ethernet/broadcom/tg3.*
3863 M: Scott Branden <scott.branden@broadcom.com>
3864 L: bcm-kernel-feedback-list@broadcom.com
3866 F: drivers/misc/bcm-vk/
3867 F: include/uapi/linux/misc/bcm_vk.h
3869 BROCADE BFA FC SCSI DRIVER
3870 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3871 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3872 L: linux-scsi@vger.kernel.org
3874 F: drivers/scsi/bfa/
3876 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3877 M: Rasesh Mody <rmody@marvell.com>
3878 M: Sudarsana Kalluru <skalluru@marvell.com>
3879 M: GR-Linux-NIC-Dev@marvell.com
3880 L: netdev@vger.kernel.org
3882 F: drivers/net/ethernet/brocade/bna/
3884 BSG (block layer generic sg v4 driver)
3885 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3886 L: linux-scsi@vger.kernel.org
3889 F: include/linux/bsg.h
3890 F: include/uapi/linux/bsg.h
3893 M: Clemens Ladisch <clemens@ladisch.de>
3894 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3896 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3897 F: Documentation/sound/cards/bt87x.rst
3898 F: sound/pci/bt87x.c
3901 M: Michael Buesch <m@bues.ch>
3903 W: http://bu3sch.de/btgpio.php
3904 F: drivers/gpio/gpio-bt8xx.c
3907 M: Chris Mason <clm@fb.com>
3908 M: Josef Bacik <josef@toxicpanda.com>
3909 M: David Sterba <dsterba@suse.com>
3910 L: linux-btrfs@vger.kernel.org
3912 W: http://btrfs.wiki.kernel.org/
3913 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
3914 C: irc://irc.libera.chat/btrfs
3915 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3916 F: Documentation/filesystems/btrfs.rst
3918 F: include/linux/btrfs*
3919 F: include/uapi/linux/btrfs*
3921 BTTV VIDEO4LINUX DRIVER
3922 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3923 L: linux-media@vger.kernel.org
3925 W: https://linuxtv.org
3926 T: git git://linuxtv.org/media_tree.git
3927 F: Documentation/driver-api/media/drivers/bttv*
3928 F: drivers/media/pci/bt8xx/bttv*
3930 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3931 M: Chanwoo Choi <cw00.choi@samsung.com>
3932 L: linux-pm@vger.kernel.org
3933 L: linux-samsung-soc@vger.kernel.org
3935 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3936 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3937 F: drivers/devfreq/exynos-bus.c
3939 BUSLOGIC SCSI DRIVER
3940 M: Khalid Aziz <khalid@gonehiking.org>
3941 L: linux-scsi@vger.kernel.org
3943 F: drivers/scsi/BusLogic.*
3944 F: drivers/scsi/FlashPoint.*
3946 C-MEDIA CMI8788 DRIVER
3947 M: Clemens Ladisch <clemens@ladisch.de>
3948 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3950 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3951 F: sound/pci/oxygen/
3954 M: Guo Ren <guoren@kernel.org>
3955 L: linux-csky@vger.kernel.org
3957 T: git https://github.com/c-sky/csky-linux.git
3958 F: Documentation/devicetree/bindings/csky/
3959 F: Documentation/devicetree/bindings/interrupt-controller/csky,*
3960 F: Documentation/devicetree/bindings/timer/csky,*
3962 F: drivers/clocksource/timer-gx6605s.c
3963 F: drivers/clocksource/timer-mp-csky.c
3964 F: drivers/irqchip/irq-csky-*
3968 CA8210 IEEE-802.15.4 RADIO DRIVER
3969 M: Harry Morris <h.morris@cascoda.com>
3970 L: linux-wpan@vger.kernel.org
3972 W: https://github.com/Cascoda/ca8210-linux.git
3973 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3974 F: drivers/net/ieee802154/ca8210.c
3976 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
3977 M: Damien Le Moal <damien.lemoal@wdc.com>
3978 L: linux-riscv@lists.infradead.org
3979 L: linux-gpio@vger.kernel.org (pinctrl driver)
3980 F: Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
3981 F: drivers/pinctrl/pinctrl-k210.c
3983 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
3984 M: Damien Le Moal <damien.lemoal@wdc.com>
3985 L: linux-kernel@vger.kernel.org
3986 L: linux-riscv@lists.infradead.org
3988 F: Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
3989 F: drivers/reset/reset-k210.c
3991 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
3992 M: Damien Le Moal <damien.lemoal@wdc.com>
3993 L: linux-riscv@lists.infradead.org
3995 F: Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
3996 F: drivers/soc/canaan/
3997 F: include/soc/canaan/
3999 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4000 M: David Howells <dhowells@redhat.com>
4001 L: linux-cachefs@redhat.com (moderated for non-subscribers)
4003 F: Documentation/filesystems/caching/cachefiles.rst
4006 CADENCE MIPI-CSI2 BRIDGES
4007 M: Maxime Ripard <mripard@kernel.org>
4008 L: linux-media@vger.kernel.org
4010 F: Documentation/devicetree/bindings/media/cdns,*.txt
4011 F: drivers/media/platform/cadence/cdns-csi2*
4014 L: linux-mtd@lists.infradead.org
4016 F: Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4017 F: drivers/mtd/nand/raw/cadence-nand-controller.c
4019 CADENCE USB3 DRD IP DRIVER
4020 M: Peter Chen <peter.chen@kernel.org>
4021 M: Pawel Laszczak <pawell@cadence.com>
4022 R: Roger Quadros <rogerq@kernel.org>
4023 R: Aswath Govindraju <a-govindraju@ti.com>
4024 L: linux-usb@vger.kernel.org
4026 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4027 F: Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4028 F: drivers/usb/cdns3/
4029 X: drivers/usb/cdns3/cdnsp*
4031 CADENCE USBSSP DRD IP DRIVER
4032 M: Pawel Laszczak <pawell@cadence.com>
4033 L: linux-usb@vger.kernel.org
4035 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4036 F: drivers/usb/cdns3/
4037 X: drivers/usb/cdns3/cdns3*
4039 CADET FM/AM RADIO RECEIVER DRIVER
4040 M: Hans Verkuil <hverkuil@xs4all.nl>
4041 L: linux-media@vger.kernel.org
4043 W: https://linuxtv.org
4044 T: git git://linuxtv.org/media_tree.git
4045 F: drivers/media/radio/radio-cadet*
4047 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4048 L: linux-media@vger.kernel.org
4050 T: git git://linuxtv.org/media_tree.git
4051 F: Documentation/admin-guide/media/cafe_ccic*
4052 F: drivers/media/platform/marvell-ccic/
4055 L: netdev@vger.kernel.org
4057 F: Documentation/networking/caif/
4058 F: drivers/net/caif/
4059 F: include/net/caif/
4060 F: include/uapi/linux/caif/
4064 M: Toke Høiland-Jørgensen <toke@toke.dk>
4065 L: cake@lists.bufferbloat.net (moderated for non-subscribers)
4067 F: net/sched/sch_cake.c
4070 M: Wolfgang Grandegger <wg@grandegger.com>
4071 M: Marc Kleine-Budde <mkl@pengutronix.de>
4072 L: linux-can@vger.kernel.org
4074 W: https://github.com/linux-can
4075 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4076 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4077 F: Documentation/devicetree/bindings/net/can/
4078 F: Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4080 F: drivers/phy/phy-can-transceiver.c
4081 F: include/linux/can/bittiming.h
4082 F: include/linux/can/dev.h
4083 F: include/linux/can/led.h
4084 F: include/linux/can/length.h
4085 F: include/linux/can/platform/
4086 F: include/linux/can/rx-offload.h
4087 F: include/uapi/linux/can/error.h
4088 F: include/uapi/linux/can/netlink.h
4089 F: include/uapi/linux/can/vxcan.h
4092 M: Oliver Hartkopp <socketcan@hartkopp.net>
4093 M: Marc Kleine-Budde <mkl@pengutronix.de>
4094 L: linux-can@vger.kernel.org
4096 W: https://github.com/linux-can
4097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4098 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4099 F: Documentation/networking/can.rst
4100 F: include/linux/can/can-ml.h
4101 F: include/linux/can/core.h
4102 F: include/linux/can/skb.h
4103 F: include/net/netns/can.h
4104 F: include/uapi/linux/can.h
4105 F: include/uapi/linux/can/bcm.h
4106 F: include/uapi/linux/can/gw.h
4107 F: include/uapi/linux/can/isotp.h
4108 F: include/uapi/linux/can/raw.h
4111 CAN-J1939 NETWORK LAYER
4112 M: Robin van der Gracht <robin@protonic.nl>
4113 M: Oleksij Rempel <o.rempel@pengutronix.de>
4114 R: kernel@pengutronix.de
4115 L: linux-can@vger.kernel.org
4117 F: Documentation/networking/j1939.rst
4118 F: include/uapi/linux/can/j1939.h
4122 M: Serge Hallyn <serge@hallyn.com>
4123 L: linux-security-module@vger.kernel.org
4125 F: include/linux/capability.h
4126 F: include/uapi/linux/capability.h
4127 F: kernel/capability.c
4128 F: security/commoncap.c
4130 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4131 M: Kevin Tsai <ktsai@capellamicro.com>
4133 F: drivers/iio/light/cm*
4135 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4136 M: Christian Lamparter <chunkeey@googlemail.com>
4137 L: linux-wireless@vger.kernel.org
4139 W: https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4140 F: drivers/net/wireless/ath/carl9170/
4143 M: Robert Richter <rric@kernel.org>
4145 W: http://www.marvell.com
4146 F: drivers/i2c/busses/i2c-octeon*
4147 F: drivers/i2c/busses/i2c-thunderx*
4149 CAVIUM LIQUIDIO NETWORK DRIVER
4150 M: Derek Chickles <dchickles@marvell.com>
4151 M: Satanand Burla <sburla@marvell.com>
4152 M: Felix Manlunas <fmanlunas@marvell.com>
4153 L: netdev@vger.kernel.org
4155 W: http://www.marvell.com
4156 F: drivers/net/ethernet/cavium/liquidio/
4159 M: Robert Richter <rric@kernel.org>
4161 W: http://www.marvell.com
4162 F: drivers/mmc/host/cavium*
4164 CAVIUM OCTEON-TX CRYPTO DRIVER
4165 M: George Cherian <gcherian@marvell.com>
4166 L: linux-crypto@vger.kernel.org
4168 W: http://www.marvell.com
4169 F: drivers/crypto/cavium/cpt/
4171 CAVIUM THUNDERX2 ARM64 SOC
4172 M: Robert Richter <rric@kernel.org>
4173 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4175 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4176 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
4178 CBS/ETF/TAPRIO QDISCS
4179 M: Vinicius Costa Gomes <vinicius.gomes@intel.com>
4181 L: netdev@vger.kernel.org
4182 F: net/sched/sch_cbs.c
4183 F: net/sched/sch_etf.c
4184 F: net/sched/sch_taprio.c
4186 CC2520 IEEE-802.15.4 RADIO DRIVER
4187 M: Varka Bhadram <varkabhadram@gmail.com>
4188 L: linux-wpan@vger.kernel.org
4190 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4191 F: drivers/net/ieee802154/cc2520.c
4192 F: include/linux/spi/cc2520.h
4194 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4195 M: Gilad Ben-Yossef <gilad@benyossef.com>
4196 L: linux-crypto@vger.kernel.org
4198 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4199 F: drivers/crypto/ccree/
4201 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4202 M: Hadar Gat <hadar.gat@arm.com>
4203 L: linux-crypto@vger.kernel.org
4205 F: drivers/char/hw_random/cctrng.c
4206 F: drivers/char/hw_random/cctrng.h
4207 F: Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4208 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4211 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4212 L: linux-media@vger.kernel.org
4214 W: http://linuxtv.org
4215 T: git git://linuxtv.org/media_tree.git
4216 F: Documentation/ABI/testing/debugfs-cec-error-inj
4217 F: Documentation/devicetree/bindings/media/cec.txt
4218 F: Documentation/driver-api/media/cec-core.rst
4219 F: Documentation/userspace-api/media/cec
4220 F: drivers/media/cec/
4221 F: drivers/media/rc/keymaps/rc-cec.c
4222 F: include/media/cec-notifier.h
4223 F: include/media/cec.h
4224 F: include/uapi/linux/cec-funcs.h
4225 F: include/uapi/linux/cec.h
4228 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4229 L: linux-media@vger.kernel.org
4231 W: http://linuxtv.org
4232 T: git git://linuxtv.org/media_tree.git
4233 F: Documentation/devicetree/bindings/media/cec-gpio.txt
4234 F: drivers/media/cec/platform/cec-gpio/
4236 CELL BROADBAND ENGINE ARCHITECTURE
4237 M: Arnd Bergmann <arnd@arndb.de>
4238 L: linuxppc-dev@lists.ozlabs.org
4240 W: http://www.ibm.com/developerworks/power/cell/
4241 F: arch/powerpc/include/asm/cell*.h
4242 F: arch/powerpc/include/asm/spu*.h
4243 F: arch/powerpc/include/uapi/asm/spu*.h
4244 F: arch/powerpc/platforms/cell/
4246 CELLWISE CW2015 BATTERY DRIVER
4247 M: Tobias Schrammm <t.schramm@manjaro.org>
4249 F: Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4250 F: drivers/power/supply/cw2015_battery.c
4252 CEPH COMMON CODE (LIBCEPH)
4253 M: Ilya Dryomov <idryomov@gmail.com>
4254 M: Jeff Layton <jlayton@kernel.org>
4255 L: ceph-devel@vger.kernel.org
4258 T: git git://github.com/ceph/ceph-client.git
4259 F: include/linux/ceph/
4260 F: include/linux/crush/
4263 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4264 M: Jeff Layton <jlayton@kernel.org>
4265 M: Ilya Dryomov <idryomov@gmail.com>
4266 L: ceph-devel@vger.kernel.org
4269 T: git git://github.com/ceph/ceph-client.git
4270 F: Documentation/filesystems/ceph.rst
4273 CERTIFICATE HANDLING
4274 M: David Howells <dhowells@redhat.com>
4275 M: David Woodhouse <dwmw2@infradead.org>
4276 L: keyrings@vger.kernel.org
4278 F: Documentation/admin-guide/module-signing.rst
4280 F: scripts/extract-cert.c
4281 F: scripts/sign-file.c
4283 CFAG12864B LCD DRIVER
4284 M: Miguel Ojeda <ojeda@kernel.org>
4286 F: drivers/auxdisplay/cfag12864b.c
4287 F: include/linux/cfag12864b.h
4289 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4290 M: Miguel Ojeda <ojeda@kernel.org>
4292 F: drivers/auxdisplay/cfag12864bfb.c
4293 F: include/linux/cfag12864b.h
4295 CHAR and MISC DRIVERS
4296 M: Arnd Bergmann <arnd@arndb.de>
4297 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4299 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4302 F: include/linux/miscdevice.h
4303 X: drivers/char/agp/
4304 X: drivers/char/hw_random/
4305 X: drivers/char/ipmi/
4306 X: drivers/char/random.c
4307 X: drivers/char/tpm/
4310 M: Andy Whitcroft <apw@canonical.com>
4311 M: Joe Perches <joe@perches.com>
4312 R: Dwaipayan Ray <dwaipayanray1@gmail.com>
4313 R: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4315 F: scripts/checkpatch.pl
4317 CHECKPATCH DOCUMENTATION
4318 M: Dwaipayan Ray <dwaipayanray1@gmail.com>
4319 M: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4320 R: Joe Perches <joe@perches.com>
4322 F: Documentation/dev-tools/checkpatch.rst
4324 CHINESE DOCUMENTATION
4325 M: Alex Shi <alexs@kernel.org>
4327 F: Documentation/translations/zh_CN/
4329 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4330 M: Peter Chen <peter.chen@kernel.org>
4331 L: linux-usb@vger.kernel.org
4333 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4334 F: drivers/usb/chipidea/
4336 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4337 M: Hans de Goede <hdegoede@redhat.com>
4338 L: linux-input@vger.kernel.org
4340 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4341 F: drivers/input/touchscreen/chipone_icn8318.c
4343 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4344 M: Hans de Goede <hdegoede@redhat.com>
4345 L: linux-input@vger.kernel.org
4347 F: drivers/input/touchscreen/chipone_icn8505.c
4349 CHROME HARDWARE PLATFORM SUPPORT
4350 M: Benson Leung <bleung@chromium.org>
4351 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4353 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4354 F: drivers/platform/chrome/
4356 CHROMEOS EC CODEC DRIVER
4357 M: Cheng-Yi Chiang <cychiang@chromium.org>
4358 R: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4359 R: Guenter Roeck <groeck@chromium.org>
4361 F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4362 F: sound/soc/codecs/cros_ec_codec.*
4364 CHROMEOS EC SUBDRIVERS
4365 M: Benson Leung <bleung@chromium.org>
4366 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4367 R: Guenter Roeck <groeck@chromium.org>
4369 F: drivers/power/supply/cros_usbpd-charger.c
4373 CHRONTEL CH7322 CEC DRIVER
4374 M: Jeff Chase <jnchase@google.com>
4375 L: linux-media@vger.kernel.org
4377 T: git git://linuxtv.org/media_tree.git
4378 F: Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4379 F: drivers/media/cec/i2c/ch7322.c
4381 CIRRUS LOGIC AUDIO CODEC DRIVERS
4382 M: James Schulman <james.schulman@cirrus.com>
4383 M: David Rhodes <david.rhodes@cirrus.com>
4384 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4385 L: patches@opensource.cirrus.com
4387 F: sound/soc/codecs/cs*
4389 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4390 M: Hartley Sweeten <hsweeten@visionengravers.com>
4391 L: netdev@vger.kernel.org
4393 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
4395 CIRRUS LOGIC LOCHNAGAR DRIVER
4396 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4397 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4398 L: patches@opensource.cirrus.com
4400 F: Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4401 F: Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4402 F: Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4403 F: Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4404 F: Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4405 F: Documentation/hwmon/lochnagar.rst
4406 F: drivers/clk/clk-lochnagar.c
4407 F: drivers/hwmon/lochnagar-hwmon.c
4408 F: drivers/mfd/lochnagar-i2c.c
4409 F: drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4410 F: drivers/regulator/lochnagar-regulator.c
4411 F: include/dt-bindings/clk/lochnagar.h
4412 F: include/dt-bindings/pinctrl/lochnagar.h
4413 F: include/linux/mfd/lochnagar*
4414 F: sound/soc/codecs/lochnagar-sc.c
4416 CIRRUS LOGIC MADERA CODEC DRIVERS
4417 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4418 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4419 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4420 L: patches@opensource.cirrus.com
4422 W: https://github.com/CirrusLogic/linux-drivers/wiki
4423 T: git https://github.com/CirrusLogic/linux-drivers.git
4424 F: Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4425 F: Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4426 F: Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4427 F: drivers/gpio/gpio-madera*
4428 F: drivers/irqchip/irq-madera*
4429 F: drivers/mfd/cs47l*
4430 F: drivers/mfd/madera*
4431 F: drivers/pinctrl/cirrus/*
4432 F: include/dt-bindings/sound/madera*
4433 F: include/linux/irqchip/irq-madera*
4434 F: include/linux/mfd/madera/*
4435 F: include/sound/madera*
4436 F: sound/soc/codecs/cs47l*
4437 F: sound/soc/codecs/madera*
4439 CISCO FCOE HBA DRIVER
4440 M: Satish Kharat <satishkh@cisco.com>
4441 M: Sesidhar Baddela <sebaddel@cisco.com>
4442 M: Karan Tilak Kumar <kartilak@cisco.com>
4443 L: linux-scsi@vger.kernel.org
4445 F: drivers/scsi/fnic/
4447 CISCO SCSI HBA DRIVER
4448 M: Karan Tilak Kumar <kartilak@cisco.com>
4449 M: Sesidhar Baddela <sebaddel@cisco.com>
4450 L: linux-scsi@vger.kernel.org
4452 F: drivers/scsi/snic/
4454 CISCO VIC ETHERNET NIC DRIVER
4455 M: Christian Benvenuti <benve@cisco.com>
4456 M: Govindarajulu Varadarajan <_govind@gmx.com>
4458 F: drivers/net/ethernet/cisco/enic/
4460 CISCO VIC LOW LATENCY NIC DRIVER
4461 M: Christian Benvenuti <benve@cisco.com>
4462 M: Nelson Escobar <neescoba@cisco.com>
4464 F: drivers/infiniband/hw/usnic/
4467 M: Miguel Ojeda <ojeda@kernel.org>
4471 CLANG/LLVM BUILD SUPPORT
4472 M: Nathan Chancellor <nathan@kernel.org>
4473 M: Nick Desaulniers <ndesaulniers@google.com>
4474 L: clang-built-linux@googlegroups.com
4476 W: https://clangbuiltlinux.github.io/
4477 B: https://github.com/ClangBuiltLinux/linux/issues
4478 C: irc://chat.freenode.net/clangbuiltlinux
4479 F: Documentation/kbuild/llvm.rst
4480 F: include/linux/compiler-clang.h
4481 F: scripts/clang-tools/
4482 K: \b(?i:clang|llvm)\b
4484 CLANG CONTROL FLOW INTEGRITY SUPPORT
4485 M: Sami Tolvanen <samitolvanen@google.com>
4486 M: Kees Cook <keescook@chromium.org>
4487 R: Nathan Chancellor <nathan@kernel.org>
4488 R: Nick Desaulniers <ndesaulniers@google.com>
4489 L: clang-built-linux@googlegroups.com
4491 B: https://github.com/ClangBuiltLinux/linux/issues
4492 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4493 F: include/linux/cfi.h
4497 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4498 L: linux-kernel@vger.kernel.org
4500 F: include/linux/cleancache.h
4504 M: Russell King <linux@armlinux.org.uk>
4505 L: linux-clk@vger.kernel.org
4507 F: include/linux/clk.h
4509 CLOCKSOURCE, CLOCKEVENT DRIVERS
4510 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4511 M: Thomas Gleixner <tglx@linutronix.de>
4512 L: linux-kernel@vger.kernel.org
4514 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4515 F: Documentation/devicetree/bindings/timer/
4516 F: drivers/clocksource/
4519 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4520 M: Daniel Oliveira Nascimento <don@syst.com.br>
4521 L: platform-driver-x86@vger.kernel.org
4523 F: drivers/platform/x86/classmate-laptop.c
4526 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4527 L: linux-media@vger.kernel.org
4529 W: https://linuxtv.org
4530 T: git git://linuxtv.org/media_tree.git
4531 F: drivers/media/pci/cobalt/
4533 COCCINELLE/Semantic Patches (SmPL)
4534 M: Julia Lawall <Julia.Lawall@inria.fr>
4535 M: Gilles Muller <Gilles.Muller@inria.fr>
4536 M: Nicolas Palix <nicolas.palix@imag.fr>
4537 M: Michal Marek <michal.lkml@markovi.net>
4538 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
4540 W: http://coccinelle.lip6.fr/
4541 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4542 F: Documentation/dev-tools/coccinelle.rst
4543 F: scripts/coccicheck
4544 F: scripts/coccinelle/
4547 M: Jan Harkes <jaharkes@cs.cmu.edu>
4549 L: codalist@coda.cs.cmu.edu
4551 W: http://www.coda.cs.cmu.edu/
4552 F: Documentation/filesystems/coda.rst
4554 F: include/linux/coda*.h
4555 F: include/uapi/linux/coda*.h
4557 CODA V4L2 MEM2MEM DRIVER
4558 M: Philipp Zabel <p.zabel@pengutronix.de>
4559 L: linux-media@vger.kernel.org
4561 F: Documentation/devicetree/bindings/media/coda.yaml
4562 F: drivers/media/platform/coda/
4565 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4567 F: Documentation/process/code-of-conduct-interpretation.rst
4568 F: Documentation/process/code-of-conduct.rst
4571 M: Ian Abbott <abbotti@mev.co.uk>
4572 M: H Hartley Sweeten <hsweeten@visionengravers.com>
4576 COMMON CLK FRAMEWORK
4577 M: Michael Turquette <mturquette@baylibre.com>
4578 M: Stephen Boyd <sboyd@kernel.org>
4579 L: linux-clk@vger.kernel.org
4581 Q: http://patchwork.kernel.org/project/linux-clk/list/
4582 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4583 F: Documentation/devicetree/bindings/clock/
4585 F: include/linux/clk-pr*
4586 F: include/linux/clk/
4587 F: include/linux/of_clk.h
4588 X: drivers/clk/clkdev.c
4590 COMMON INTERNET FILE SYSTEM (CIFS)
4591 M: Steve French <sfrench@samba.org>
4592 L: linux-cifs@vger.kernel.org
4593 L: samba-technical@lists.samba.org (moderated for non-subscribers)
4595 W: http://linux-cifs.samba.org/
4596 T: git git://git.samba.org/sfrench/cifs-2.6.git
4597 F: Documentation/admin-guide/cifs/
4600 COMPACTPCI HOTPLUG CORE
4601 M: Scott Murray <scott@spiteful.org>
4602 L: linux-pci@vger.kernel.org
4604 F: drivers/pci/hotplug/cpci_hotplug*
4606 COMPACTPCI HOTPLUG GENERIC DRIVER
4607 M: Scott Murray <scott@spiteful.org>
4608 L: linux-pci@vger.kernel.org
4610 F: drivers/pci/hotplug/cpcihp_generic.c
4612 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4613 M: Scott Murray <scott@spiteful.org>
4614 L: linux-pci@vger.kernel.org
4616 F: drivers/pci/hotplug/cpcihp_zt5550.*
4618 COMPAL LAPTOP SUPPORT
4619 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4620 L: platform-driver-x86@vger.kernel.org
4622 F: drivers/platform/x86/compal-laptop.c
4625 M: Miguel Ojeda <ojeda@kernel.org>
4627 F: include/linux/compiler_attributes.h
4629 COMPUTE EXPRESS LINK (CXL)
4630 M: Alison Schofield <alison.schofield@intel.com>
4631 M: Vishal Verma <vishal.l.verma@intel.com>
4632 M: Ira Weiny <ira.weiny@intel.com>
4633 M: Ben Widawsky <ben.widawsky@intel.com>
4634 M: Dan Williams <dan.j.williams@intel.com>
4635 L: linux-cxl@vger.kernel.org
4638 F: include/uapi/linux/cxl_mem.h
4640 CONEXANT ACCESSRUNNER USB DRIVER
4641 L: accessrunner-general@lists.sourceforge.net
4643 W: http://accessrunner.sourceforge.net/
4644 F: drivers/usb/atm/cxacru.c
4647 M: Joel Becker <jlbec@evilplan.org>
4648 M: Christoph Hellwig <hch@lst.de>
4650 T: git git://git.infradead.org/users/hch/configfs.git
4652 F: include/linux/configfs.h
4653 F: samples/configfs/
4656 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4658 F: drivers/video/console/
4659 F: include/linux/console*
4662 M: Frederic Weisbecker <frederic@kernel.org>
4664 F: kernel/context_tracking.c
4665 F: include/linux/context_tracking*
4667 CONTROL GROUP (CGROUP)
4668 M: Tejun Heo <tj@kernel.org>
4669 M: Zefan Li <lizefan.x@bytedance.com>
4670 M: Johannes Weiner <hannes@cmpxchg.org>
4671 L: cgroups@vger.kernel.org
4673 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4674 F: Documentation/admin-guide/cgroup-v1/
4675 F: Documentation/admin-guide/cgroup-v2.rst
4676 F: include/linux/cgroup*
4679 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4680 M: Tejun Heo <tj@kernel.org>
4681 M: Jens Axboe <axboe@kernel.dk>
4682 L: cgroups@vger.kernel.org
4683 L: linux-block@vger.kernel.org
4684 T: git git://git.kernel.dk/linux-block
4685 F: Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4686 F: block/bfq-cgroup.c
4687 F: block/blk-cgroup.c
4688 F: block/blk-iolatency.c
4689 F: block/blk-throttle.c
4690 F: include/linux/blk-cgroup.h
4692 CONTROL GROUP - CPUSET
4693 M: Zefan Li <lizefan.x@bytedance.com>
4694 L: cgroups@vger.kernel.org
4696 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4697 F: Documentation/admin-guide/cgroup-v1/cpusets.rst
4698 F: include/linux/cpuset.h
4699 F: kernel/cgroup/cpuset.c
4701 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4702 M: Johannes Weiner <hannes@cmpxchg.org>
4703 M: Michal Hocko <mhocko@kernel.org>
4704 M: Vladimir Davydov <vdavydov.dev@gmail.com>
4705 L: cgroups@vger.kernel.org
4706 L: linux-mm@kvack.org
4711 CORETEMP HARDWARE MONITORING DRIVER
4712 M: Fenghua Yu <fenghua.yu@intel.com>
4713 L: linux-hwmon@vger.kernel.org
4715 F: Documentation/hwmon/coretemp.rst
4716 F: drivers/hwmon/coretemp.c
4718 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4719 M: Marius Zachmann <mail@mariuszachmann.de>
4720 L: linux-hwmon@vger.kernel.org
4722 F: drivers/hwmon/corsair-cpro.c
4724 CORSAIR-PSU HARDWARE MONITOR DRIVER
4725 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
4726 L: linux-hwmon@vger.kernel.org
4728 F: Documentation/hwmon/corsair-psu.rst
4729 F: drivers/hwmon/corsair-psu.c
4731 COSA/SRP SYNC SERIAL DRIVER
4732 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4734 W: http://www.fi.muni.cz/~kas/cosa/
4735 F: drivers/net/wan/cosa*
4738 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4739 L: linux-iio@vger.kernel.org
4741 F: Documentation/ABI/testing/sysfs-bus-counter*
4742 F: Documentation/driver-api/generic-counter.rst
4744 F: include/linux/counter.h
4745 F: include/linux/counter_enum.h
4748 M: Bence Csókás <bence98@sch.bme.hu>
4750 F: drivers/i2c/busses/i2c-cp2615.c
4752 CPMAC ETHERNET DRIVER
4753 M: Florian Fainelli <f.fainelli@gmail.com>
4754 L: netdev@vger.kernel.org
4756 F: drivers/net/ethernet/ti/cpmac.c
4758 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4759 M: Viresh Kumar <viresh.kumar@linaro.org>
4760 M: Sudeep Holla <sudeep.holla@arm.com>
4761 L: linux-pm@vger.kernel.org
4763 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4764 F: drivers/cpufreq/vexpress-spc-cpufreq.c
4766 CPU FREQUENCY SCALING FRAMEWORK
4767 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4768 M: Viresh Kumar <viresh.kumar@linaro.org>
4769 L: linux-pm@vger.kernel.org
4771 B: https://bugzilla.kernel.org
4772 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4773 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4774 F: Documentation/admin-guide/pm/cpufreq.rst
4775 F: Documentation/admin-guide/pm/intel_pstate.rst
4776 F: Documentation/cpu-freq/
4777 F: Documentation/devicetree/bindings/cpufreq/
4779 F: include/linux/cpufreq.h
4780 F: include/linux/sched/cpufreq.h
4781 F: kernel/sched/cpufreq*.c
4782 F: tools/testing/selftests/cpufreq/
4784 CPU IDLE TIME MANAGEMENT FRAMEWORK
4785 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4786 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4787 L: linux-pm@vger.kernel.org
4789 B: https://bugzilla.kernel.org
4790 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4791 F: Documentation/admin-guide/pm/cpuidle.rst
4792 F: Documentation/driver-api/pm/cpuidle.rst
4794 F: include/linux/cpuidle.h
4796 CPU POWER MONITORING SUBSYSTEM
4797 M: Thomas Renninger <trenn@suse.com>
4798 M: Shuah Khan <shuah@kernel.org>
4799 M: Shuah Khan <skhan@linuxfoundation.org>
4800 L: linux-pm@vger.kernel.org
4802 F: tools/power/cpupower/
4805 M: "H. Peter Anvin" <hpa@zytor.com>
4807 F: arch/x86/kernel/cpuid.c
4808 F: arch/x86/kernel/msr.c
4810 CPUIDLE DRIVER - ARM BIG LITTLE
4811 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4812 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4813 L: linux-pm@vger.kernel.org
4814 L: linux-arm-kernel@lists.infradead.org
4816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4817 F: drivers/cpuidle/cpuidle-big_little.c
4819 CPUIDLE DRIVER - ARM EXYNOS
4820 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4821 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4822 M: Kukjin Kim <kgene@kernel.org>
4823 L: linux-pm@vger.kernel.org
4824 L: linux-samsung-soc@vger.kernel.org
4826 F: arch/arm/mach-exynos/pm.c
4827 F: drivers/cpuidle/cpuidle-exynos.c
4828 F: include/linux/platform_data/cpuidle-exynos.h
4830 CPUIDLE DRIVER - ARM PSCI
4831 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4832 M: Sudeep Holla <sudeep.holla@arm.com>
4833 L: linux-pm@vger.kernel.org
4834 L: linux-arm-kernel@lists.infradead.org
4836 F: drivers/cpuidle/cpuidle-psci.c
4838 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4839 M: Ulf Hansson <ulf.hansson@linaro.org>
4840 L: linux-pm@vger.kernel.org
4841 L: linux-arm-kernel@lists.infradead.org
4843 F: drivers/cpuidle/cpuidle-psci.h
4844 F: drivers/cpuidle/cpuidle-psci-domain.c
4847 M: Nicolas Pitre <nico@fluxnic.net>
4849 F: Documentation/filesystems/cramfs.rst
4853 M: Bastien Nocera <hadess@hadess.net>
4854 L: linux-input@vger.kernel.org
4856 F: drivers/hid/hid-creative-sb0540.c
4859 M: Herbert Xu <herbert@gondor.apana.org.au>
4860 M: "David S. Miller" <davem@davemloft.net>
4861 L: linux-crypto@vger.kernel.org
4863 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4864 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4865 F: Documentation/crypto/
4866 F: Documentation/devicetree/bindings/crypto/
4871 F: include/linux/crypto*
4874 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4875 M: Neil Horman <nhorman@tuxdriver.com>
4876 L: linux-crypto@vger.kernel.org
4878 F: crypto/ansi_cprng.c
4882 M: Hans Verkuil <hverkuil@xs4all.nl>
4883 L: linux-media@vger.kernel.org
4885 W: http://linuxtv.org
4886 T: git git://linuxtv.org/media_tree.git
4887 F: drivers/media/i2c/cs3308.c
4889 CS5535 Audio ALSA driver
4890 M: Jaya Kumar <jayakumar.alsa@gmail.com>
4892 F: sound/pci/cs5535audio/
4894 CSI DRIVERS FOR ALLWINNER V3s
4895 M: Yong Deng <yong.deng@magewell.com>
4896 L: linux-media@vger.kernel.org
4898 T: git git://linuxtv.org/media_tree.git
4899 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4900 F: drivers/media/platform/sunxi/sun6i-csi/
4903 M: Solomon Peachy <pizza@shaftnet.org>
4905 F: drivers/net/wireless/st/cw1200/
4907 CX18 VIDEO4LINUX DRIVER
4908 M: Andy Walls <awalls@md.metrocast.net>
4909 L: linux-media@vger.kernel.org
4911 W: https://linuxtv.org
4912 T: git git://linuxtv.org/media_tree.git
4913 F: drivers/media/pci/cx18/
4914 F: include/uapi/linux/ivtv*
4916 CX2341X MPEG ENCODER HELPER MODULE
4917 M: Hans Verkuil <hverkuil@xs4all.nl>
4918 L: linux-media@vger.kernel.org
4920 W: https://linuxtv.org
4921 T: git git://linuxtv.org/media_tree.git
4922 F: drivers/media/common/cx2341x*
4923 F: include/media/drv-intf/cx2341x.h
4925 CX24120 MEDIA DRIVER
4926 M: Jemma Denson <jdenson@gmail.com>
4927 M: Patrick Boettcher <patrick.boettcher@posteo.de>
4928 L: linux-media@vger.kernel.org
4930 W: https://linuxtv.org
4931 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4932 F: drivers/media/dvb-frontends/cx24120*
4934 CX88 VIDEO4LINUX DRIVER
4935 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4936 L: linux-media@vger.kernel.org
4938 W: https://linuxtv.org
4939 T: git git://linuxtv.org/media_tree.git
4940 F: Documentation/driver-api/media/drivers/cx88*
4941 F: drivers/media/pci/cx88/
4943 CXD2820R MEDIA DRIVER
4944 M: Antti Palosaari <crope@iki.fi>
4945 L: linux-media@vger.kernel.org
4947 W: https://linuxtv.org
4948 W: http://palosaari.fi/linux/
4949 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4950 T: git git://linuxtv.org/anttip/media_tree.git
4951 F: drivers/media/dvb-frontends/cxd2820r*
4953 CXGB3 ETHERNET DRIVER (CXGB3)
4954 M: Raju Rangoju <rajur@chelsio.com>
4955 L: netdev@vger.kernel.org
4957 W: http://www.chelsio.com
4958 F: drivers/net/ethernet/chelsio/cxgb3/
4960 CXGB3 ISCSI DRIVER (CXGB3I)
4961 M: Karen Xie <kxie@chelsio.com>
4962 L: linux-scsi@vger.kernel.org
4964 W: http://www.chelsio.com
4965 F: drivers/scsi/cxgbi/cxgb3i
4967 CXGB4 CRYPTO DRIVER (chcr)
4968 M: Ayush Sawal <ayush.sawal@chelsio.com>
4969 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4970 M: Rohit Maheshwari <rohitm@chelsio.com>
4971 L: linux-crypto@vger.kernel.org
4973 W: http://www.chelsio.com
4974 F: drivers/crypto/chelsio
4976 CXGB4 INLINE CRYPTO DRIVER
4977 M: Ayush Sawal <ayush.sawal@chelsio.com>
4978 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4979 M: Rohit Maheshwari <rohitm@chelsio.com>
4980 L: netdev@vger.kernel.org
4982 W: http://www.chelsio.com
4983 F: drivers/net/ethernet/chelsio/inline_crypto/
4985 CXGB4 ETHERNET DRIVER (CXGB4)
4986 M: Raju Rangoju <rajur@chelsio.com>
4987 L: netdev@vger.kernel.org
4989 W: http://www.chelsio.com
4990 F: drivers/net/ethernet/chelsio/cxgb4/
4992 CXGB4 ISCSI DRIVER (CXGB4I)
4993 M: Karen Xie <kxie@chelsio.com>
4994 L: linux-scsi@vger.kernel.org
4996 W: http://www.chelsio.com
4997 F: drivers/scsi/cxgbi/cxgb4i
4999 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5000 M: Potnuri Bharat Teja <bharat@chelsio.com>
5001 L: linux-rdma@vger.kernel.org
5003 W: http://www.openfabrics.org
5004 F: drivers/infiniband/hw/cxgb4/
5005 F: include/uapi/rdma/cxgb4-abi.h
5007 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5008 M: Raju Rangoju <rajur@chelsio.com>
5009 L: netdev@vger.kernel.org
5011 W: http://www.chelsio.com
5012 F: drivers/net/ethernet/chelsio/cxgb4vf/
5014 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5015 M: Frederic Barrat <fbarrat@linux.ibm.com>
5016 M: Andrew Donnellan <ajd@linux.ibm.com>
5017 L: linuxppc-dev@lists.ozlabs.org
5019 F: Documentation/ABI/testing/sysfs-class-cxl
5020 F: Documentation/powerpc/cxl.rst
5021 F: arch/powerpc/platforms/powernv/pci-cxl.c
5022 F: drivers/misc/cxl/
5023 F: include/misc/cxl*
5024 F: include/uapi/misc/cxl.h
5026 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5027 M: Manoj N. Kumar <manoj@linux.ibm.com>
5028 M: Matthew R. Ochs <mrochs@linux.ibm.com>
5029 M: Uma Krishnan <ukrishn@linux.ibm.com>
5030 L: linux-scsi@vger.kernel.org
5032 F: Documentation/powerpc/cxlflash.rst
5033 F: drivers/scsi/cxlflash/
5034 F: include/uapi/scsi/cxlflash_ioctl.h
5037 M: Russell King <linux@armlinux.org.uk>
5038 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5040 W: http://www.armlinux.org.uk/
5041 F: drivers/video/fbdev/cyber2000fb.*
5043 CYCLADES PC300 DRIVER
5045 F: drivers/net/wan/pc300*
5047 CYPRESS_FIRMWARE MEDIA DRIVER
5048 M: Antti Palosaari <crope@iki.fi>
5049 L: linux-media@vger.kernel.org
5051 W: https://linuxtv.org
5052 W: http://palosaari.fi/linux/
5053 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5054 T: git git://linuxtv.org/anttip/media_tree.git
5055 F: drivers/media/common/cypress_firmware*
5057 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5058 M: Linus Walleij <linus.walleij@linaro.org>
5059 L: linux-input@vger.kernel.org
5061 F: drivers/input/touchscreen/cy8ctma140.c
5063 CYTTSP TOUCHSCREEN DRIVER
5064 M: Linus Walleij <linus.walleij@linaro.org>
5065 L: linux-input@vger.kernel.org
5067 F: drivers/input/touchscreen/cyttsp*
5069 D-LINK DIR-685 TOUCHKEYS DRIVER
5070 M: Linus Walleij <linus.walleij@linaro.org>
5071 L: linux-input@vger.kernel.org
5073 F: drivers/input/keyboard/dlink-dir685-touchkeys.c
5075 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5076 M: Joshua Kinard <kumba@gentoo.org>
5078 F: drivers/rtc/rtc-ds1685.c
5079 F: include/linux/rtc/ds1685.h
5081 DAMA SLAVE for AX.25
5082 M: Joerg Reuter <jreuter@yaina.de>
5083 L: linux-hams@vger.kernel.org
5085 W: http://yaina.de/jreuter/
5086 W: http://www.qsl.net/dl1bke/
5087 F: net/ax25/af_ax25.c
5088 F: net/ax25/ax25_dev.c
5089 F: net/ax25/ax25_ds_*
5090 F: net/ax25/ax25_in.c
5091 F: net/ax25/ax25_out.c
5092 F: net/ax25/ax25_timer.c
5093 F: net/ax25/sysctl_net_ax25.c
5095 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5096 L: netdev@vger.kernel.org
5098 F: Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5099 F: drivers/net/ethernet/dec/tulip/dmfe.c
5101 DC390/AM53C974 SCSI driver
5102 M: Hannes Reinecke <hare@suse.com>
5103 L: linux-scsi@vger.kernel.org
5105 F: drivers/scsi/am53c974.c
5108 M: Oliver Neukum <oliver@neukum.org>
5109 M: Ali Akcaagac <aliakc@web.de>
5110 M: Jamie Lenehan <lenehan@twibble.org>
5111 L: dc395x@twibble.org
5113 W: http://twibble.org/dist/dc395x/
5114 W: http://lists.twibble.org/mailman/listinfo/dc395x/
5115 F: Documentation/scsi/dc395x.rst
5116 F: drivers/scsi/dc395x.*
5119 L: dccp@vger.kernel.org
5121 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5122 F: include/linux/dccp.h
5123 F: include/linux/tfrc.h
5124 F: include/uapi/linux/dccp.h
5127 DECnet NETWORK LAYER
5128 L: linux-decnet-user@lists.sourceforge.net
5130 W: http://linux-decnet.sourceforge.net
5131 F: Documentation/networking/decnet.rst
5134 DECSTATION PLATFORM SUPPORT
5135 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5136 L: linux-mips@vger.kernel.org
5138 W: http://www.linux-mips.org/wiki/DECstation
5140 F: arch/mips/include/asm/dec/
5141 F: arch/mips/include/asm/mach-dec/
5143 DEFXX FDDI NETWORK DRIVER
5144 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5146 F: drivers/net/fddi/defxx.*
5148 DEFZA FDDI NETWORK DRIVER
5149 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5151 F: drivers/net/fddi/defza.*
5153 DEINTERLACE DRIVERS FOR ALLWINNER H3
5154 M: Jernej Skrabec <jernej.skrabec@gmail.com>
5155 L: linux-media@vger.kernel.org
5157 T: git git://linuxtv.org/media_tree.git
5158 F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5159 F: drivers/media/platform/sunxi/sun8i-di/
5162 M: Matthew Garrett <mjg59@srcf.ucam.org>
5163 M: Pali Rohár <pali@kernel.org>
5164 L: platform-driver-x86@vger.kernel.org
5166 F: drivers/platform/x86/dell/dell-laptop.c
5168 DELL LAPTOP FREEFALL DRIVER
5169 M: Pali Rohár <pali@kernel.org>
5171 F: drivers/platform/x86/dell/dell-smo8800.c
5173 DELL LAPTOP RBTN DRIVER
5174 M: Pali Rohár <pali@kernel.org>
5176 F: drivers/platform/x86/dell/dell-rbtn.*
5178 DELL LAPTOP SMM DRIVER
5179 M: Pali Rohár <pali@kernel.org>
5181 F: drivers/hwmon/dell-smm-hwmon.c
5182 F: include/uapi/linux/i8k.h
5184 DELL REMOTE BIOS UPDATE DRIVER
5185 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5186 L: platform-driver-x86@vger.kernel.org
5188 F: drivers/platform/x86/dell/dell_rbu.c
5191 M: Pali Rohár <pali@kernel.org>
5192 L: Dell.Client.Kernel@dell.com
5193 L: platform-driver-x86@vger.kernel.org
5195 F: drivers/platform/x86/dell/dell-smbios.*
5197 DELL SMBIOS SMM DRIVER
5198 L: Dell.Client.Kernel@dell.com
5199 L: platform-driver-x86@vger.kernel.org
5201 F: drivers/platform/x86/dell/dell-smbios-smm.c
5203 DELL SMBIOS WMI DRIVER
5204 L: Dell.Client.Kernel@dell.com
5205 L: platform-driver-x86@vger.kernel.org
5207 F: drivers/platform/x86/dell/dell-smbios-wmi.c
5208 F: tools/wmi/dell-smbios-example.c
5210 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5211 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5212 L: platform-driver-x86@vger.kernel.org
5214 F: Documentation/driver-api/dcdbas.rst
5215 F: drivers/platform/x86/dell/dcdbas.*
5217 DELL WMI DESCRIPTOR DRIVER
5218 L: Dell.Client.Kernel@dell.com
5220 F: drivers/platform/x86/dell/dell-wmi-descriptor.c
5222 DELL WMI SYSMAN DRIVER
5223 M: Divya Bharathi <divya.bharathi@dell.com>
5224 M: Prasanth Ksr <prasanth.ksr@dell.com>
5225 L: Dell.Client.Kernel@dell.com
5226 L: platform-driver-x86@vger.kernel.org
5228 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
5229 F: drivers/platform/x86/dell/dell-wmi-sysman/
5231 DELL WMI NOTIFICATIONS DRIVER
5232 M: Matthew Garrett <mjg59@srcf.ucam.org>
5233 M: Pali Rohár <pali@kernel.org>
5235 F: drivers/platform/x86/dell/dell-wmi-base.c
5237 DELL WMI HARDWARE PRIVACY SUPPORT
5238 M: Perry Yuan <Perry.Yuan@dell.com>
5239 L: Dell.Client.Kernel@dell.com
5240 L: platform-driver-x86@vger.kernel.org
5242 F: drivers/platform/x86/dell/dell-wmi-privacy.c
5244 DELTA ST MEDIA DRIVER
5245 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
5246 L: linux-media@vger.kernel.org
5248 W: https://linuxtv.org
5249 T: git git://linuxtv.org/media_tree.git
5250 F: drivers/media/platform/sti/delta
5252 DELTA DPS920AB PSU DRIVER
5253 M: Robert Marko <robert.marko@sartura.hr>
5254 L: linux-hwmon@vger.kernel.org
5256 F: Documentation/hwmon/dps920ab.rst
5257 F: drivers/hwmon/pmbus/dps920ab.c
5260 L: linux-mtd@lists.infradead.org
5262 F: drivers/mtd/nand/raw/denali*
5264 DESIGNWARE EDMA CORE IP DRIVER
5265 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5266 L: dmaengine@vger.kernel.org
5268 F: drivers/dma/dw-edma/
5269 F: include/linux/dma/edma.h
5271 DESIGNWARE XDATA IP DRIVER
5272 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5273 L: linux-pci@vger.kernel.org
5275 F: Documentation/misc-devices/dw-xdata-pcie.rst
5276 F: drivers/misc/dw-xdata-pcie.c
5278 DESIGNWARE USB2 DRD IP DRIVER
5279 M: Minas Harutyunyan <hminas@synopsys.com>
5280 L: linux-usb@vger.kernel.org
5282 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5283 F: drivers/usb/dwc2/
5285 DESIGNWARE USB3 DRD IP DRIVER
5286 M: Felipe Balbi <balbi@kernel.org>
5287 L: linux-usb@vger.kernel.org
5289 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5290 F: drivers/usb/dwc3/
5292 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5293 M: Andreas Klinger <ak@it-klinger.de>
5294 L: linux-iio@vger.kernel.org
5296 F: Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5297 F: drivers/iio/proximity/srf*.c
5299 DEVICE COREDUMP (DEV_COREDUMP)
5300 M: Johannes Berg <johannes@sipsolutions.net>
5301 L: linux-kernel@vger.kernel.org
5303 F: drivers/base/devcoredump.c
5304 F: include/linux/devcoredump.h
5306 DEVICE DEPENDENCY HELPER SCRIPT
5307 M: Saravana Kannan <saravanak@google.com>
5308 L: linux-kernel@vger.kernel.org
5310 F: scripts/dev-needs.sh
5312 DEVICE DIRECT ACCESS (DAX)
5313 M: Dan Williams <dan.j.williams@intel.com>
5314 M: Vishal Verma <vishal.l.verma@intel.com>
5315 M: Dave Jiang <dave.jiang@intel.com>
5316 L: nvdimm@lists.linux.dev
5320 DEVICE FREQUENCY (DEVFREQ)
5321 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5322 M: Kyungmin Park <kyungmin.park@samsung.com>
5323 M: Chanwoo Choi <cw00.choi@samsung.com>
5324 L: linux-pm@vger.kernel.org
5326 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5327 F: Documentation/devicetree/bindings/devfreq/
5329 F: include/linux/devfreq.h
5330 F: include/trace/events/devfreq.h
5332 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5333 M: Chanwoo Choi <cw00.choi@samsung.com>
5334 L: linux-pm@vger.kernel.org
5336 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5337 F: Documentation/devicetree/bindings/devfreq/event/
5338 F: drivers/devfreq/devfreq-event.c
5339 F: drivers/devfreq/event/
5340 F: include/dt-bindings/pmu/exynos_ppmu.h
5341 F: include/linux/devfreq-event.h
5343 DEVICE NUMBER REGISTRY
5344 M: Torben Mathiasen <device@lanana.org>
5346 W: http://lanana.org/docs/device-list/index.html
5348 DEVICE RESOURCE MANAGEMENT HELPERS
5349 M: Hans de Goede <hdegoede@redhat.com>
5350 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5352 F: include/linux/devm-helpers.h
5355 M: Alasdair Kergon <agk@redhat.com>
5356 M: Mike Snitzer <snitzer@redhat.com>
5357 M: dm-devel@redhat.com
5358 L: dm-devel@redhat.com
5360 W: http://sources.redhat.com/dm
5361 Q: http://patchwork.kernel.org/project/dm-devel/list/
5362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5363 T: quilt http://people.redhat.com/agk/patches/linux/editing/
5364 F: Documentation/admin-guide/device-mapper/
5365 F: drivers/md/Kconfig
5366 F: drivers/md/Makefile
5368 F: drivers/md/persistent-data/
5369 F: include/linux/device-mapper.h
5370 F: include/linux/dm-*.h
5371 F: include/uapi/linux/dm-*.h
5374 M: Jiri Pirko <jiri@nvidia.com>
5375 L: netdev@vger.kernel.org
5377 F: Documentation/networking/devlink
5378 F: include/net/devlink.h
5379 F: include/uapi/linux/devlink.h
5380 F: net/core/devlink.c
5382 DIALOG SEMICONDUCTOR DRIVERS
5383 M: Support Opensource <support.opensource@diasemi.com>
5385 W: http://www.dialog-semiconductor.com/products
5386 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
5387 F: Documentation/devicetree/bindings/input/dlg,da72??.txt
5388 F: Documentation/devicetree/bindings/mfd/da90*.txt
5389 F: Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5390 F: Documentation/devicetree/bindings/regulator/da92*.txt
5391 F: Documentation/devicetree/bindings/regulator/slg51000.txt
5392 F: Documentation/devicetree/bindings/sound/da[79]*.txt
5393 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5394 F: Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5395 F: Documentation/hwmon/da90??.rst
5396 F: drivers/gpio/gpio-da90??.c
5397 F: drivers/hwmon/da90??-hwmon.c
5398 F: drivers/iio/adc/da91??-*.c
5399 F: drivers/input/misc/da72??.[ch]
5400 F: drivers/input/misc/da90??_onkey.c
5401 F: drivers/input/touchscreen/da9052_tsi.c
5402 F: drivers/leds/leds-da90??.c
5403 F: drivers/mfd/da903x.c
5404 F: drivers/mfd/da90??-*.c
5405 F: drivers/mfd/da91??-*.c
5406 F: drivers/pinctrl/pinctrl-da90??.c
5407 F: drivers/power/supply/da9052-battery.c
5408 F: drivers/power/supply/da91??-*.c
5409 F: drivers/regulator/da9???-regulator.[ch]
5410 F: drivers/regulator/slg51000-regulator.[ch]
5411 F: drivers/rtc/rtc-da90??.c
5412 F: drivers/thermal/da90??-thermal.c
5413 F: drivers/video/backlight/da90??_bl.c
5414 F: drivers/watchdog/da90??_wdt.c
5415 F: include/dt-bindings/regulator/dlg,da9*-regulator.h
5416 F: include/linux/mfd/da903x.h
5417 F: include/linux/mfd/da9052/
5418 F: include/linux/mfd/da9055/
5419 F: include/linux/mfd/da9062/
5420 F: include/linux/mfd/da9063/
5421 F: include/linux/mfd/da9150/
5422 F: include/linux/regulator/da9211.h
5423 F: include/sound/da[79]*.h
5424 F: sound/soc/codecs/da[79]*.[ch]
5426 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5427 M: William Breathitt Gray <vilhelm.gray@gmail.com>
5428 L: linux-gpio@vger.kernel.org
5430 F: drivers/gpio/gpio-gpio-mm.c
5432 DIOLAN U2C-12 I2C DRIVER
5433 M: Guenter Roeck <linux@roeck-us.net>
5434 L: linux-i2c@vger.kernel.org
5436 F: drivers/i2c/busses/i2c-diolan-u2c.c
5438 DIRECTORY NOTIFICATION (DNOTIFY)
5439 M: Jan Kara <jack@suse.cz>
5440 R: Amir Goldstein <amir73il@gmail.com>
5441 L: linux-fsdevel@vger.kernel.org
5443 F: Documentation/filesystems/dnotify.rst
5444 F: fs/notify/dnotify/
5445 F: include/linux/dnotify.h
5447 DISK GEOMETRY AND PARTITION HANDLING
5448 M: Andries Brouwer <aeb@cwi.nl>
5450 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5451 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5452 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5455 M: Jan Kara <jack@suse.com>
5457 F: Documentation/filesystems/quota.rst
5459 F: include/linux/quota*.h
5460 F: include/uapi/linux/quota*.h
5462 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5463 M: Bernie Thompson <bernie@plugable.com>
5464 L: linux-fbdev@vger.kernel.org
5466 W: http://plugable.com/category/projects/udlfb/
5467 F: Documentation/fb/udlfb.rst
5468 F: drivers/video/fbdev/udlfb.c
5469 F: include/video/udlfb.h
5471 DISTRIBUTED LOCK MANAGER (DLM)
5472 M: Christine Caulfield <ccaulfie@redhat.com>
5473 M: David Teigland <teigland@redhat.com>
5474 L: cluster-devel@redhat.com
5476 W: http://sources.redhat.com/cluster/
5477 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5480 DMA BUFFER SHARING FRAMEWORK
5481 M: Sumit Semwal <sumit.semwal@linaro.org>
5482 M: Christian König <christian.koenig@amd.com>
5483 L: linux-media@vger.kernel.org
5484 L: dri-devel@lists.freedesktop.org
5485 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5487 T: git git://anongit.freedesktop.org/drm/drm-misc
5488 F: Documentation/driver-api/dma-buf.rst
5490 F: include/linux/*fence.h
5491 F: include/linux/dma-buf*
5492 F: include/linux/dma-resv.h
5493 K: \bdma_(?:buf|fence|resv)\b
5495 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5496 M: Vinod Koul <vkoul@kernel.org>
5497 L: dmaengine@vger.kernel.org
5499 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5500 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5501 F: Documentation/devicetree/bindings/dma/
5502 F: Documentation/driver-api/dmaengine/
5504 F: include/linux/dma/
5505 F: include/linux/dmaengine.h
5506 F: include/linux/of_dma.h
5509 M: Christoph Hellwig <hch@lst.de>
5510 M: Marek Szyprowski <m.szyprowski@samsung.com>
5511 R: Robin Murphy <robin.murphy@arm.com>
5512 L: iommu@lists.linux-foundation.org
5514 W: http://git.infradead.org/users/hch/dma-mapping.git
5515 T: git git://git.infradead.org/users/hch/dma-mapping.git
5516 F: include/asm-generic/dma-mapping.h
5517 F: include/linux/dma-direct.h
5518 F: include/linux/dma-mapping.h
5519 F: include/linux/dma-map-ops.h
5522 DMA MAPPING BENCHMARK
5523 M: Barry Song <song.bao.hua@hisilicon.com>
5524 L: iommu@lists.linux-foundation.org
5525 F: kernel/dma/map_benchmark.c
5526 F: tools/testing/selftests/dma/
5528 DMA-BUF HEAPS FRAMEWORK
5529 M: Sumit Semwal <sumit.semwal@linaro.org>
5530 R: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5531 R: Liam Mark <lmark@codeaurora.org>
5532 R: Laura Abbott <labbott@redhat.com>
5533 R: Brian Starkey <Brian.Starkey@arm.com>
5534 R: John Stultz <john.stultz@linaro.org>
5535 L: linux-media@vger.kernel.org
5536 L: dri-devel@lists.freedesktop.org
5537 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5539 T: git git://anongit.freedesktop.org/drm/drm-misc
5540 F: drivers/dma-buf/dma-heap.c
5541 F: drivers/dma-buf/heaps/*
5542 F: include/linux/dma-heap.h
5543 F: include/uapi/linux/dma-heap.h
5545 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5546 M: Lukasz Luba <lukasz.luba@arm.com>
5547 L: linux-pm@vger.kernel.org
5548 L: linux-samsung-soc@vger.kernel.org
5550 F: Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5551 F: drivers/memory/samsung/exynos5422-dmc.c
5553 DME1737 HARDWARE MONITOR DRIVER
5554 M: Juerg Haefliger <juergh@gmail.com>
5555 L: linux-hwmon@vger.kernel.org
5557 F: Documentation/hwmon/dme1737.rst
5558 F: drivers/hwmon/dme1737.c
5561 M: Jean Delvare <jdelvare@suse.com>
5563 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5564 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
5565 F: drivers/firmware/dmi-id.c
5566 F: drivers/firmware/dmi_scan.c
5567 F: include/linux/dmi.h
5570 M: Jonathan Corbet <corbet@lwn.net>
5571 L: linux-doc@vger.kernel.org
5573 P: Documentation/doc-guide/maintainer-profile.rst
5574 T: git git://git.lwn.net/linux.git docs-next
5576 F: scripts/documentation-file-ref-check
5577 F: scripts/kernel-doc
5578 F: scripts/sphinx-pre-install
5579 X: Documentation/ABI/
5580 X: Documentation/admin-guide/media/
5581 X: Documentation/devicetree/
5582 X: Documentation/driver-api/media/
5583 X: Documentation/firmware-guide/acpi/
5584 X: Documentation/i2c/
5585 X: Documentation/power/
5586 X: Documentation/spi/
5587 X: Documentation/userspace-api/media/
5589 DOCUMENTATION REPORTING ISSUES
5590 M: Thorsten Leemhuis <linux@leemhuis.info>
5591 L: linux-doc@vger.kernel.org
5593 F: Documentation/admin-guide/reporting-issues.rst
5595 DOCUMENTATION SCRIPTS
5596 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5597 L: linux-doc@vger.kernel.org
5599 F: Documentation/sphinx/parse-headers.pl
5600 F: scripts/documentation-file-ref-check
5601 F: scripts/sphinx-pre-install
5603 DOCUMENTATION/ITALIAN
5604 M: Federico Vaga <federico.vaga@vaga.pv.it>
5605 L: linux-doc@vger.kernel.org
5607 F: Documentation/translations/it_IT
5609 DONGWOON DW9714 LENS VOICE COIL DRIVER
5610 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5611 L: linux-media@vger.kernel.org
5613 T: git git://linuxtv.org/media_tree.git
5614 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5615 F: drivers/media/i2c/dw9714.c
5617 DONGWOON DW9768 LENS VOICE COIL DRIVER
5618 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
5619 L: linux-media@vger.kernel.org
5621 T: git git://linuxtv.org/media_tree.git
5622 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5623 F: drivers/media/i2c/dw9768.c
5625 DONGWOON DW9807 LENS VOICE COIL DRIVER
5626 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5627 L: linux-media@vger.kernel.org
5629 T: git git://linuxtv.org/media_tree.git
5630 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5631 F: drivers/media/i2c/dw9807-vcm.c
5634 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
5635 L: blinux-list@redhat.com
5637 F: drivers/char/dtlk.c
5638 F: include/linux/dtlk.h
5640 DPAA2 DATAPATH I/O (DPIO) DRIVER
5641 M: Roy Pledge <Roy.Pledge@nxp.com>
5642 L: linux-kernel@vger.kernel.org
5644 F: drivers/soc/fsl/dpio
5646 DPAA2 ETHERNET DRIVER
5647 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5648 L: netdev@vger.kernel.org
5650 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5651 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5652 F: drivers/net/ethernet/freescale/dpaa2/Kconfig
5653 F: drivers/net/ethernet/freescale/dpaa2/Makefile
5654 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5655 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5656 F: drivers/net/ethernet/freescale/dpaa2/dpkg.h
5657 F: drivers/net/ethernet/freescale/dpaa2/dpmac*
5658 F: drivers/net/ethernet/freescale/dpaa2/dpni*
5660 DPAA2 ETHERNET SWITCH DRIVER
5661 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5662 L: netdev@vger.kernel.org
5664 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5665 F: drivers/net/ethernet/freescale/dpaa2/dpsw*
5667 DPT_I2O SCSI RAID DRIVER
5668 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5669 L: linux-scsi@vger.kernel.org
5671 W: http://www.adaptec.com/
5672 F: drivers/scsi/dpt*
5673 F: drivers/scsi/dpt/
5676 M: Philipp Reisner <philipp.reisner@linbit.com>
5677 M: Lars Ellenberg <lars.ellenberg@linbit.com>
5678 L: drbd-dev@lists.linbit.com
5680 W: http://www.drbd.org
5681 T: git git://git.linbit.com/linux-drbd.git
5682 T: git git://git.linbit.com/drbd-8.4.git
5683 F: Documentation/admin-guide/blockdev/
5684 F: drivers/block/drbd/
5687 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5688 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5689 R: "Rafael J. Wysocki" <rafael@kernel.org>
5691 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5692 F: Documentation/core-api/kobject.rst
5696 F: include/linux/debugfs.h
5697 F: include/linux/kobj*
5700 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5701 M: Nishanth Menon <nm@ti.com>
5702 L: linux-pm@vger.kernel.org
5704 F: drivers/soc/ti/smartreflex.c
5705 F: include/linux/power/smartreflex.h
5707 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5708 M: Maxime Ripard <mripard@kernel.org>
5709 M: Chen-Yu Tsai <wens@csie.org>
5710 R: Jernej Skrabec <jernej.skrabec@gmail.com>
5711 L: dri-devel@lists.freedesktop.org
5713 T: git git://anongit.freedesktop.org/drm/drm-misc
5714 F: drivers/gpu/drm/sun4i/sun8i*
5716 DRM DRIVER FOR ARM PL111 CLCD
5717 M: Emma Anholt <emma@anholt.net>
5719 T: git git://anongit.freedesktop.org/drm/drm-misc
5720 F: drivers/gpu/drm/pl111/
5722 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5723 M: Linus Walleij <linus.walleij@linaro.org>
5725 T: git git://anongit.freedesktop.org/drm/drm-misc
5726 F: Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5727 F: drivers/gpu/drm/panel/panel-arm-versatile.c
5729 DRM DRIVER FOR ASPEED BMC GFX
5730 M: Joel Stanley <joel@jms.id.au>
5731 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5733 T: git git://anongit.freedesktop.org/drm/drm-misc
5734 F: Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5735 F: drivers/gpu/drm/aspeed/
5737 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5738 M: Dave Airlie <airlied@redhat.com>
5739 R: Thomas Zimmermann <tzimmermann@suse.de>
5740 L: dri-devel@lists.freedesktop.org
5742 T: git git://anongit.freedesktop.org/drm/drm-misc
5743 F: drivers/gpu/drm/ast/
5745 DRM DRIVER FOR BOCHS VIRTUAL GPU
5746 M: Gerd Hoffmann <kraxel@redhat.com>
5747 L: virtualization@lists.linux-foundation.org
5749 T: git git://anongit.freedesktop.org/drm/drm-misc
5750 F: drivers/gpu/drm/bochs/
5752 DRM DRIVER FOR BOE HIMAX8279D PANELS
5753 M: Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5755 F: Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5756 F: drivers/gpu/drm/panel/panel-boe-himax8279d.c
5758 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5759 M: Jagan Teki <jagan@amarulasolutions.com>
5761 F: Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5762 F: drivers/gpu/drm/bridge/chipone-icn6211.c
5764 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5765 M: Linus Walleij <linus.walleij@linaro.org>
5767 T: git git://anongit.freedesktop.org/drm/drm-misc
5768 F: drivers/gpu/drm/tve200/
5770 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5771 M: Icenowy Zheng <icenowy@aosc.io>
5773 F: Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5774 F: drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5776 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5777 M: Jagan Teki <jagan@amarulasolutions.com>
5779 F: Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5780 F: drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5782 DRM DRIVER FOR GENERIC USB DISPLAY
5783 M: Noralf Trønnes <noralf@tronnes.org>
5785 W: https://github.com/notro/gud/wiki
5786 T: git git://anongit.freedesktop.org/drm/drm-misc
5787 F: drivers/gpu/drm/gud/
5788 F: include/drm/gud.h
5790 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5791 M: Hans de Goede <hdegoede@redhat.com>
5793 T: git git://anongit.freedesktop.org/drm/drm-misc
5794 F: drivers/gpu/drm/tiny/gm12u320.c
5796 DRM DRIVER FOR HX8357D PANELS
5797 M: Emma Anholt <emma@anholt.net>
5799 T: git git://anongit.freedesktop.org/drm/drm-misc
5800 F: Documentation/devicetree/bindings/display/himax,hx8357d.txt
5801 F: drivers/gpu/drm/tiny/hx8357d.c
5803 DRM DRIVER FOR ILITEK ILI9225 PANELS
5804 M: David Lechner <david@lechnology.com>
5806 T: git git://anongit.freedesktop.org/drm/drm-misc
5807 F: Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5808 F: drivers/gpu/drm/tiny/ili9225.c
5810 DRM DRIVER FOR ILITEK ILI9486 PANELS
5811 M: Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5813 T: git git://anongit.freedesktop.org/drm/drm-misc
5814 F: Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5815 F: drivers/gpu/drm/tiny/ili9486.c
5817 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5818 S: Orphan / Obsolete
5819 F: drivers/gpu/drm/i810/
5820 F: include/uapi/drm/i810_drm.h
5822 DRM DRIVER FOR LVDS PANELS
5823 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5824 L: dri-devel@lists.freedesktop.org
5825 T: git git://anongit.freedesktop.org/drm/drm-misc
5827 F: drivers/gpu/drm/panel/panel-lvds.c
5828 F: Documentation/devicetree/bindings/display/panel/lvds.yaml
5830 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5831 M: Guido Günther <agx@sigxcpu.org>
5832 R: Purism Kernel Team <kernel@puri.sm>
5834 F: Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5835 F: drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5837 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5838 S: Orphan / Obsolete
5839 F: drivers/gpu/drm/mga/
5840 F: include/uapi/drm/mga_drm.h
5842 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5843 M: Dave Airlie <airlied@redhat.com>
5844 R: Thomas Zimmermann <tzimmermann@suse.de>
5845 L: dri-devel@lists.freedesktop.org
5847 T: git git://anongit.freedesktop.org/drm/drm-misc
5848 F: drivers/gpu/drm/mgag200/
5850 DRM DRIVER FOR MI0283QT
5851 M: Noralf Trønnes <noralf@tronnes.org>
5853 T: git git://anongit.freedesktop.org/drm/drm-misc
5854 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5855 F: drivers/gpu/drm/tiny/mi0283qt.c
5857 DRM DRIVER FOR MSM ADRENO GPU
5858 M: Rob Clark <robdclark@gmail.com>
5859 M: Sean Paul <sean@poorly.run>
5860 L: linux-arm-msm@vger.kernel.org
5861 L: dri-devel@lists.freedesktop.org
5862 L: freedreno@lists.freedesktop.org
5864 T: git https://gitlab.freedesktop.org/drm/msm.git
5865 F: Documentation/devicetree/bindings/display/msm/
5866 F: drivers/gpu/drm/msm/
5867 F: include/uapi/drm/msm_drm.h
5869 DRM DRIVER FOR NOVATEK NT35510 PANELS
5870 M: Linus Walleij <linus.walleij@linaro.org>
5872 T: git git://anongit.freedesktop.org/drm/drm-misc
5873 F: Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5874 F: drivers/gpu/drm/panel/panel-novatek-nt35510.c
5876 DRM DRIVER FOR NOVATEK NT36672A PANELS
5877 M: Sumit Semwal <sumit.semwal@linaro.org>
5879 T: git git://anongit.freedesktop.org/drm/drm-misc
5880 F: Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5881 F: drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5883 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5884 M: Ben Skeggs <bskeggs@redhat.com>
5885 L: dri-devel@lists.freedesktop.org
5886 L: nouveau@lists.freedesktop.org
5888 T: git git://github.com/skeggsb/linux
5889 F: drivers/gpu/drm/nouveau/
5890 F: include/uapi/drm/nouveau_drm.h
5892 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5893 M: Stefan Mavrodiev <stefan@olimex.com>
5895 F: Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5896 F: drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5898 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5899 M: Noralf Trønnes <noralf@tronnes.org>
5901 T: git git://anongit.freedesktop.org/drm/drm-misc
5902 F: Documentation/devicetree/bindings/display/repaper.txt
5903 F: drivers/gpu/drm/tiny/repaper.c
5905 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5906 M: Dave Airlie <airlied@redhat.com>
5907 M: Gerd Hoffmann <kraxel@redhat.com>
5908 L: virtualization@lists.linux-foundation.org
5910 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5911 T: git git://anongit.freedesktop.org/drm/drm-misc
5912 F: drivers/gpu/drm/tiny/cirrus.c
5914 DRM DRIVER FOR QXL VIRTUAL GPU
5915 M: Dave Airlie <airlied@redhat.com>
5916 M: Gerd Hoffmann <kraxel@redhat.com>
5917 L: virtualization@lists.linux-foundation.org
5918 L: spice-devel@lists.freedesktop.org
5920 T: git git://anongit.freedesktop.org/drm/drm-misc
5921 F: drivers/gpu/drm/qxl/
5922 F: include/uapi/drm/qxl_drm.h
5924 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5925 S: Orphan / Obsolete
5926 F: drivers/gpu/drm/r128/
5927 F: include/uapi/drm/r128_drm.h
5929 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5930 M: Robert Chiras <robert.chiras@nxp.com>
5932 F: Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5933 F: drivers/gpu/drm/panel/panel-raydium-rm67191.c
5935 DRM DRIVER FOR SITRONIX ST7703 PANELS
5936 M: Guido Günther <agx@sigxcpu.org>
5937 R: Purism Kernel Team <kernel@puri.sm>
5938 R: Ondrej Jirman <megous@megous.com>
5940 F: Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5941 F: drivers/gpu/drm/panel/panel-sitronix-st7703.c
5943 DRM DRIVER FOR SAVAGE VIDEO CARDS
5944 S: Orphan / Obsolete
5945 F: drivers/gpu/drm/savage/
5946 F: include/uapi/drm/savage_drm.h
5948 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
5949 M: Thomas Zimmermann <tzimmermann@suse.de>
5950 L: dri-devel@lists.freedesktop.org
5952 T: git git://anongit.freedesktop.org/drm/drm-misc
5953 F: drivers/gpu/drm/tiny/simpledrm.c
5955 DRM DRIVER FOR SIS VIDEO CARDS
5956 S: Orphan / Obsolete
5957 F: drivers/gpu/drm/sis/
5958 F: include/uapi/drm/sis_drm.h
5960 DRM DRIVER FOR SITRONIX ST7586 PANELS
5961 M: David Lechner <david@lechnology.com>
5963 T: git git://anongit.freedesktop.org/drm/drm-misc
5964 F: Documentation/devicetree/bindings/display/sitronix,st7586.txt
5965 F: drivers/gpu/drm/tiny/st7586.c
5967 DRM DRIVER FOR SITRONIX ST7701 PANELS
5968 M: Jagan Teki <jagan@amarulasolutions.com>
5970 F: Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5971 F: drivers/gpu/drm/panel/panel-sitronix-st7701.c
5973 DRM DRIVER FOR SITRONIX ST7735R PANELS
5974 M: David Lechner <david@lechnology.com>
5976 T: git git://anongit.freedesktop.org/drm/drm-misc
5977 F: Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5978 F: drivers/gpu/drm/tiny/st7735r.c
5980 DRM DRIVER FOR SONY ACX424AKP PANELS
5981 M: Linus Walleij <linus.walleij@linaro.org>
5983 T: git git://anongit.freedesktop.org/drm/drm-misc
5984 F: drivers/gpu/drm/panel/panel-sony-acx424akp.c
5986 DRM DRIVER FOR ST-ERICSSON MCDE
5987 M: Linus Walleij <linus.walleij@linaro.org>
5989 T: git git://anongit.freedesktop.org/drm/drm-misc
5990 F: Documentation/devicetree/bindings/display/ste,mcde.yaml
5991 F: drivers/gpu/drm/mcde/
5993 DRM DRIVER FOR TDFX VIDEO CARDS
5994 S: Orphan / Obsolete
5995 F: drivers/gpu/drm/tdfx/
5997 DRM DRIVER FOR TPO TPG110 PANELS
5998 M: Linus Walleij <linus.walleij@linaro.org>
6000 T: git git://anongit.freedesktop.org/drm/drm-misc
6001 F: Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6002 F: drivers/gpu/drm/panel/panel-tpo-tpg110.c
6004 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6005 M: Dave Airlie <airlied@redhat.com>
6006 R: Sean Paul <sean@poorly.run>
6007 R: Thomas Zimmermann <tzimmermann@suse.de>
6008 L: dri-devel@lists.freedesktop.org
6010 T: git git://anongit.freedesktop.org/drm/drm-misc
6011 F: drivers/gpu/drm/udl/
6013 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6014 M: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6015 M: Melissa Wen <melissa.srw@gmail.com>
6016 R: Haneen Mohammed <hamohammed.sa@gmail.com>
6017 R: Daniel Vetter <daniel@ffwll.ch>
6018 L: dri-devel@lists.freedesktop.org
6020 T: git git://anongit.freedesktop.org/drm/drm-misc
6021 F: Documentation/gpu/vkms.rst
6022 F: drivers/gpu/drm/vkms/
6024 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6025 M: Hans de Goede <hdegoede@redhat.com>
6026 L: dri-devel@lists.freedesktop.org
6028 T: git git://anongit.freedesktop.org/drm/drm-misc
6029 F: drivers/gpu/drm/vboxvideo/
6031 DRM DRIVER FOR VMWARE VIRTUAL GPU
6032 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6033 M: Roland Scheidegger <sroland@vmware.com>
6034 M: Zack Rusin <zackr@vmware.com>
6035 L: dri-devel@lists.freedesktop.org
6037 T: git git://people.freedesktop.org/~sroland/linux
6038 F: drivers/gpu/drm/vmwgfx/
6039 F: include/uapi/drm/vmwgfx_drm.h
6042 M: David Airlie <airlied@linux.ie>
6043 M: Daniel Vetter <daniel@ffwll.ch>
6044 L: dri-devel@lists.freedesktop.org
6046 B: https://gitlab.freedesktop.org/drm
6047 C: irc://chat.freenode.net/dri-devel
6048 T: git git://anongit.freedesktop.org/drm/drm
6049 F: Documentation/devicetree/bindings/display/
6050 F: Documentation/devicetree/bindings/gpu/
6051 F: Documentation/gpu/
6055 F: include/linux/vga*
6056 F: include/uapi/drm/
6058 DRM DRIVERS AND MISC GPU PATCHES
6059 M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6060 M: Maxime Ripard <mripard@kernel.org>
6061 M: Thomas Zimmermann <tzimmermann@suse.de>
6063 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6064 T: git git://anongit.freedesktop.org/drm/drm-misc
6065 F: Documentation/gpu/
6066 F: drivers/gpu/drm/*
6069 F: include/linux/vga*
6070 F: include/uapi/drm/drm*
6072 DRM DRIVERS FOR ALLWINNER A10
6073 M: Maxime Ripard <mripard@kernel.org>
6074 M: Chen-Yu Tsai <wens@csie.org>
6075 L: dri-devel@lists.freedesktop.org
6077 T: git git://anongit.freedesktop.org/drm/drm-misc
6078 F: Documentation/devicetree/bindings/display/allwinner*
6079 F: drivers/gpu/drm/sun4i/
6081 DRM DRIVERS FOR AMLOGIC SOCS
6082 M: Neil Armstrong <narmstrong@baylibre.com>
6083 L: dri-devel@lists.freedesktop.org
6084 L: linux-amlogic@lists.infradead.org
6086 W: http://linux-meson.com/
6087 T: git git://anongit.freedesktop.org/drm/drm-misc
6088 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6089 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6090 F: Documentation/gpu/meson.rst
6091 F: drivers/gpu/drm/meson/
6093 DRM DRIVERS FOR ATMEL HLCDC
6094 M: Sam Ravnborg <sam@ravnborg.org>
6095 M: Boris Brezillon <bbrezillon@kernel.org>
6096 L: dri-devel@lists.freedesktop.org
6098 T: git git://anongit.freedesktop.org/drm/drm-misc
6099 F: Documentation/devicetree/bindings/display/atmel/
6100 F: drivers/gpu/drm/atmel-hlcdc/
6102 DRM DRIVERS FOR BRIDGE CHIPS
6103 M: Andrzej Hajda <a.hajda@samsung.com>
6104 M: Neil Armstrong <narmstrong@baylibre.com>
6105 M: Robert Foss <robert.foss@linaro.org>
6106 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6107 R: Jonas Karlman <jonas@kwiboo.se>
6108 R: Jernej Skrabec <jernej.skrabec@gmail.com>
6110 T: git git://anongit.freedesktop.org/drm/drm-misc
6111 F: drivers/gpu/drm/bridge/
6113 DRM DRIVERS FOR EXYNOS
6114 M: Inki Dae <inki.dae@samsung.com>
6115 M: Joonyoung Shim <jy0922.shim@samsung.com>
6116 M: Seung-Woo Kim <sw0312.kim@samsung.com>
6117 M: Kyungmin Park <kyungmin.park@samsung.com>
6118 L: dri-devel@lists.freedesktop.org
6120 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6121 F: Documentation/devicetree/bindings/display/exynos/
6122 F: drivers/gpu/drm/exynos/
6123 F: include/uapi/drm/exynos_drm.h
6125 DRM DRIVERS FOR FREESCALE DCU
6126 M: Stefan Agner <stefan@agner.ch>
6127 M: Alison Wang <alison.wang@nxp.com>
6128 L: dri-devel@lists.freedesktop.org
6130 T: git git://anongit.freedesktop.org/drm/drm-misc
6131 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
6132 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
6133 F: drivers/gpu/drm/fsl-dcu/
6135 DRM DRIVERS FOR FREESCALE IMX
6136 M: Philipp Zabel <p.zabel@pengutronix.de>
6137 L: dri-devel@lists.freedesktop.org
6139 F: Documentation/devicetree/bindings/display/imx/
6140 F: drivers/gpu/drm/imx/
6141 F: drivers/gpu/ipu-v3/
6143 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6144 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6145 L: dri-devel@lists.freedesktop.org
6147 T: git git://github.com/patjak/drm-gma500
6148 F: drivers/gpu/drm/gma500/
6150 DRM DRIVERS FOR HISILICON
6151 M: Xinliang Liu <xinliang.liu@linaro.org>
6152 M: Tian Tao <tiantao6@hisilicon.com>
6153 R: John Stultz <john.stultz@linaro.org>
6154 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
6155 R: Chen Feng <puck.chen@hisilicon.com>
6156 L: dri-devel@lists.freedesktop.org
6158 T: git git://anongit.freedesktop.org/drm/drm-misc
6159 F: Documentation/devicetree/bindings/display/hisilicon/
6160 F: drivers/gpu/drm/hisilicon/
6162 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6163 M: Deepak Rawat <drawat.floss@gmail.com>
6164 L: linux-hyperv@vger.kernel.org
6165 L: dri-devel@lists.freedesktop.org
6167 T: git git://anongit.freedesktop.org/drm/drm-misc
6168 F: drivers/gpu/drm/hyperv
6170 DRM DRIVERS FOR LIMA
6171 M: Qiang Yu <yuq825@gmail.com>
6172 L: dri-devel@lists.freedesktop.org
6173 L: lima@lists.freedesktop.org (moderated for non-subscribers)
6175 T: git git://anongit.freedesktop.org/drm/drm-misc
6176 F: drivers/gpu/drm/lima/
6177 F: include/uapi/drm/lima_drm.h
6179 DRM DRIVERS FOR MEDIATEK
6180 M: Chun-Kuang Hu <chunkuang.hu@kernel.org>
6181 M: Philipp Zabel <p.zabel@pengutronix.de>
6182 L: dri-devel@lists.freedesktop.org
6183 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6185 F: Documentation/devicetree/bindings/display/mediatek/
6186 F: drivers/gpu/drm/mediatek/
6187 F: drivers/phy/mediatek/phy-mtk-hdmi*
6188 F: drivers/phy/mediatek/phy-mtk-mipi*
6190 DRM DRIVERS FOR NVIDIA TEGRA
6191 M: Thierry Reding <thierry.reding@gmail.com>
6192 L: dri-devel@lists.freedesktop.org
6193 L: linux-tegra@vger.kernel.org
6195 T: git git://anongit.freedesktop.org/tegra/linux.git
6196 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6197 F: drivers/gpu/drm/tegra/
6198 F: drivers/gpu/host1x/
6199 F: include/linux/host1x.h
6200 F: include/uapi/drm/tegra_drm.h
6202 DRM DRIVERS FOR RENESAS
6203 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6204 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6205 L: dri-devel@lists.freedesktop.org
6206 L: linux-renesas-soc@vger.kernel.org
6208 T: git git://linuxtv.org/pinchartl/media drm/du/next
6209 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6210 F: Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6211 F: Documentation/devicetree/bindings/display/renesas,du.yaml
6212 F: drivers/gpu/drm/rcar-du/
6213 F: drivers/gpu/drm/shmobile/
6214 F: include/linux/platform_data/shmob_drm.h
6216 DRM DRIVERS FOR ROCKCHIP
6217 M: Sandy Huang <hjc@rock-chips.com>
6218 M: Heiko Stübner <heiko@sntech.de>
6219 L: dri-devel@lists.freedesktop.org
6221 T: git git://anongit.freedesktop.org/drm/drm-misc
6222 F: Documentation/devicetree/bindings/display/rockchip/
6223 F: drivers/gpu/drm/rockchip/
6226 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
6227 L: dri-devel@lists.freedesktop.org
6229 T: git git://anongit.freedesktop.org/drm/drm-misc
6230 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
6231 F: drivers/gpu/drm/sti
6234 M: Yannick Fertre <yannick.fertre@foss.st.com>
6235 M: Philippe Cornu <philippe.cornu@foss.st.com>
6236 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
6237 L: dri-devel@lists.freedesktop.org
6239 T: git git://anongit.freedesktop.org/drm/drm-misc
6240 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6241 F: drivers/gpu/drm/stm
6243 DRM DRIVERS FOR TI KEYSTONE
6244 M: Jyri Sarha <jyri.sarha@iki.fi>
6245 M: Tomi Valkeinen <tomba@kernel.org>
6246 L: dri-devel@lists.freedesktop.org
6248 T: git git://anongit.freedesktop.org/drm/drm-misc
6249 F: Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6250 F: Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6251 F: Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6252 F: drivers/gpu/drm/tidss/
6254 DRM DRIVERS FOR TI LCDC
6255 M: Jyri Sarha <jyri.sarha@iki.fi>
6256 R: Tomi Valkeinen <tomba@kernel.org>
6257 L: dri-devel@lists.freedesktop.org
6259 F: Documentation/devicetree/bindings/display/tilcdc/
6260 F: drivers/gpu/drm/tilcdc/
6262 DRM DRIVERS FOR TI OMAP
6263 M: Tomi Valkeinen <tomba@kernel.org>
6264 L: dri-devel@lists.freedesktop.org
6266 F: Documentation/devicetree/bindings/display/ti/
6267 F: drivers/gpu/drm/omapdrm/
6270 M: Emma Anholt <emma@anholt.net>
6272 T: git git://anongit.freedesktop.org/drm/drm-misc
6273 F: Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6274 F: drivers/gpu/drm/v3d/
6275 F: include/uapi/drm/v3d_drm.h
6278 M: Emma Anholt <emma@anholt.net>
6279 M: Maxime Ripard <mripard@kernel.org>
6281 T: git git://github.com/anholt/linux
6282 T: git git://anongit.freedesktop.org/drm/drm-misc
6283 F: Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6284 F: drivers/gpu/drm/vc4/
6285 F: include/uapi/drm/vc4_drm.h
6287 DRM DRIVERS FOR VIVANTE GPU IP
6288 M: Lucas Stach <l.stach@pengutronix.de>
6289 R: Russell King <linux+etnaviv@armlinux.org.uk>
6290 R: Christian Gmeiner <christian.gmeiner@gmail.com>
6291 L: etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6292 L: dri-devel@lists.freedesktop.org
6294 F: Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6295 F: drivers/gpu/drm/etnaviv/
6296 F: include/uapi/drm/etnaviv_drm.h
6299 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6300 L: dri-devel@lists.freedesktop.org
6301 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
6303 T: git git://anongit.freedesktop.org/drm/drm-misc
6304 F: Documentation/gpu/xen-front.rst
6305 F: drivers/gpu/drm/xen/
6307 DRM DRIVERS FOR XILINX
6308 M: Hyun Kwon <hyun.kwon@xilinx.com>
6309 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6310 L: dri-devel@lists.freedesktop.org
6312 T: git git://anongit.freedesktop.org/drm/drm-misc
6313 F: Documentation/devicetree/bindings/display/xlnx/
6314 F: drivers/gpu/drm/xlnx/
6317 M: Thierry Reding <thierry.reding@gmail.com>
6318 R: Sam Ravnborg <sam@ravnborg.org>
6319 L: dri-devel@lists.freedesktop.org
6321 T: git git://anongit.freedesktop.org/drm/drm-misc
6322 F: Documentation/devicetree/bindings/display/panel/
6323 F: drivers/gpu/drm/drm_panel.c
6324 F: drivers/gpu/drm/panel/
6325 F: include/drm/drm_panel.h
6328 M: Christian Koenig <christian.koenig@amd.com>
6329 M: Huang Rui <ray.huang@amd.com>
6330 L: dri-devel@lists.freedesktop.org
6332 T: git git://anongit.freedesktop.org/drm/drm-misc
6333 F: drivers/gpu/drm/ttm/
6336 DSBR100 USB FM RADIO DRIVER
6337 M: Alexey Klimov <klimov.linux@gmail.com>
6338 L: linux-media@vger.kernel.org
6340 T: git git://linuxtv.org/media_tree.git
6341 F: drivers/media/radio/dsbr100.c
6344 M: Hans Verkuil <hverkuil@xs4all.nl>
6345 L: linux-media@vger.kernel.org
6347 W: https://linuxtv.org
6348 T: git git://linuxtv.org/media_tree.git
6349 F: drivers/media/pci/dt3155/
6351 DVB_USB_AF9015 MEDIA DRIVER
6352 M: Antti Palosaari <crope@iki.fi>
6353 L: linux-media@vger.kernel.org
6355 W: https://linuxtv.org
6356 W: http://palosaari.fi/linux/
6357 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6358 T: git git://linuxtv.org/anttip/media_tree.git
6359 F: drivers/media/usb/dvb-usb-v2/af9015*
6361 DVB_USB_AF9035 MEDIA DRIVER
6362 M: Antti Palosaari <crope@iki.fi>
6363 L: linux-media@vger.kernel.org
6365 W: https://linuxtv.org
6366 W: http://palosaari.fi/linux/
6367 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6368 T: git git://linuxtv.org/anttip/media_tree.git
6369 F: drivers/media/usb/dvb-usb-v2/af9035*
6371 DVB_USB_ANYSEE MEDIA DRIVER
6372 M: Antti Palosaari <crope@iki.fi>
6373 L: linux-media@vger.kernel.org
6375 W: https://linuxtv.org
6376 W: http://palosaari.fi/linux/
6377 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6378 T: git git://linuxtv.org/anttip/media_tree.git
6379 F: drivers/media/usb/dvb-usb-v2/anysee*
6381 DVB_USB_AU6610 MEDIA DRIVER
6382 M: Antti Palosaari <crope@iki.fi>
6383 L: linux-media@vger.kernel.org
6385 W: https://linuxtv.org
6386 W: http://palosaari.fi/linux/
6387 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6388 T: git git://linuxtv.org/anttip/media_tree.git
6389 F: drivers/media/usb/dvb-usb-v2/au6610*
6391 DVB_USB_CE6230 MEDIA DRIVER
6392 M: Antti Palosaari <crope@iki.fi>
6393 L: linux-media@vger.kernel.org
6395 W: https://linuxtv.org
6396 W: http://palosaari.fi/linux/
6397 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6398 T: git git://linuxtv.org/anttip/media_tree.git
6399 F: drivers/media/usb/dvb-usb-v2/ce6230*
6401 DVB_USB_CXUSB MEDIA DRIVER
6402 M: Michael Krufky <mkrufky@linuxtv.org>
6403 L: linux-media@vger.kernel.org
6405 W: https://linuxtv.org
6406 W: http://github.com/mkrufky
6407 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6408 T: git git://linuxtv.org/media_tree.git
6409 F: drivers/media/usb/dvb-usb/cxusb*
6411 DVB_USB_EC168 MEDIA DRIVER
6412 M: Antti Palosaari <crope@iki.fi>
6413 L: linux-media@vger.kernel.org
6415 W: https://linuxtv.org
6416 W: http://palosaari.fi/linux/
6417 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6418 T: git git://linuxtv.org/anttip/media_tree.git
6419 F: drivers/media/usb/dvb-usb-v2/ec168*
6421 DVB_USB_GL861 MEDIA DRIVER
6422 M: Antti Palosaari <crope@iki.fi>
6423 L: linux-media@vger.kernel.org
6425 W: https://linuxtv.org
6426 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6427 T: git git://linuxtv.org/anttip/media_tree.git
6428 F: drivers/media/usb/dvb-usb-v2/gl861*
6430 DVB_USB_MXL111SF MEDIA DRIVER
6431 M: Michael Krufky <mkrufky@linuxtv.org>
6432 L: linux-media@vger.kernel.org
6434 W: https://linuxtv.org
6435 W: http://github.com/mkrufky
6436 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6437 T: git git://linuxtv.org/mkrufky/mxl111sf.git
6438 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
6440 DVB_USB_RTL28XXU MEDIA DRIVER
6441 M: Antti Palosaari <crope@iki.fi>
6442 L: linux-media@vger.kernel.org
6444 W: https://linuxtv.org
6445 W: http://palosaari.fi/linux/
6446 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6447 T: git git://linuxtv.org/anttip/media_tree.git
6448 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
6450 DVB_USB_V2 MEDIA DRIVER
6451 M: Antti Palosaari <crope@iki.fi>
6452 L: linux-media@vger.kernel.org
6454 W: https://linuxtv.org
6455 W: http://palosaari.fi/linux/
6456 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6457 T: git git://linuxtv.org/anttip/media_tree.git
6458 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
6459 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
6462 M: Jason Baron <jbaron@akamai.com>
6464 F: include/linux/dynamic_debug.h
6465 F: lib/dynamic_debug.c
6467 DYNAMIC INTERRUPT MODERATION
6468 M: Tal Gilboa <talgi@nvidia.com>
6470 F: Documentation/networking/net_dim.rst
6471 F: include/linux/dim.h
6474 DZ DECSTATION DZ11 SERIAL DRIVER
6475 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
6477 F: drivers/tty/serial/dz.*
6479 E3X0 POWER BUTTON DRIVER
6480 M: Moritz Fischer <moritz.fischer@ettus.com>
6481 L: usrp-users@lists.ettus.com
6483 W: http://www.ettus.com
6484 F: Documentation/devicetree/bindings/input/e3x0-button.txt
6485 F: drivers/input/misc/e3x0-button.c
6488 M: Antti Palosaari <crope@iki.fi>
6489 L: linux-media@vger.kernel.org
6491 W: https://linuxtv.org
6492 W: http://palosaari.fi/linux/
6493 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6494 T: git git://linuxtv.org/anttip/media_tree.git
6495 F: drivers/media/tuners/e4000*
6497 EARTH_PT1 MEDIA DRIVER
6498 M: Akihiro Tsukada <tskd08@gmail.com>
6499 L: linux-media@vger.kernel.org
6501 F: drivers/media/pci/pt1/
6503 EARTH_PT3 MEDIA DRIVER
6504 M: Akihiro Tsukada <tskd08@gmail.com>
6505 L: linux-media@vger.kernel.org
6507 F: drivers/media/pci/pt3/
6510 M: Antti Palosaari <crope@iki.fi>
6511 L: linux-media@vger.kernel.org
6513 W: https://linuxtv.org
6514 W: http://palosaari.fi/linux/
6515 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6516 T: git git://linuxtv.org/anttip/media_tree.git
6517 F: drivers/media/dvb-frontends/ec100*
6520 M: Tyler Hicks <code@tyhicks.com>
6521 L: ecryptfs@vger.kernel.org
6523 W: http://ecryptfs.org
6524 W: https://launchpad.net/ecryptfs
6525 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6526 F: Documentation/filesystems/ecryptfs.rst
6530 M: Yazen Ghannam <yazen.ghannam@amd.com>
6531 L: linux-edac@vger.kernel.org
6533 F: drivers/edac/amd64_edac*
6534 F: drivers/edac/mce_amd*
6537 M: Jan Luebbe <jlu@pengutronix.de>
6538 L: linux-edac@vger.kernel.org
6540 F: drivers/edac/armada_xp_*
6543 M: Stefan Schaeckeler <sschaeck@cisco.com>
6545 F: Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6546 F: drivers/edac/aspeed_edac.c
6549 M: Shravan Kumar Ramani <shravankr@nvidia.com>
6551 F: drivers/edac/bluefield_edac.c
6554 M: Andre Przywara <andre.przywara@arm.com>
6555 L: linux-edac@vger.kernel.org
6557 F: drivers/edac/highbank*
6560 M: Ralf Baechle <ralf@linux-mips.org>
6561 L: linux-edac@vger.kernel.org
6562 L: linux-mips@vger.kernel.org
6564 F: drivers/edac/octeon_edac*
6566 EDAC-CAVIUM THUNDERX
6567 M: Robert Richter <rric@kernel.org>
6568 L: linux-edac@vger.kernel.org
6570 F: drivers/edac/thunderx_edac*
6573 M: Borislav Petkov <bp@alien8.de>
6574 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6575 M: Tony Luck <tony.luck@intel.com>
6576 R: James Morse <james.morse@arm.com>
6577 R: Robert Richter <rric@kernel.org>
6578 L: linux-edac@vger.kernel.org
6580 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6581 F: Documentation/admin-guide/ras.rst
6582 F: Documentation/driver-api/edac.rst
6584 F: include/linux/edac.h
6587 M: Lei Wang <lewan@microsoft.com>
6588 L: linux-edac@vger.kernel.org
6590 F: drivers/edac/dmc520_edac.c
6593 M: Mark Gross <mark.gross@intel.com>
6594 L: linux-edac@vger.kernel.org
6596 F: drivers/edac/e752x_edac.c
6599 L: linux-edac@vger.kernel.org
6601 F: drivers/edac/e7xxx_edac.c
6604 M: York Sun <york.sun@nxp.com>
6605 L: linux-edac@vger.kernel.org
6607 F: drivers/edac/fsl_ddr_edac.*
6610 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6611 L: linux-edac@vger.kernel.org
6613 F: drivers/edac/ghes_edac.c
6616 M: Tony Luck <tony.luck@intel.com>
6617 L: linux-edac@vger.kernel.org
6619 F: drivers/edac/i10nm_base.c
6622 L: linux-edac@vger.kernel.org
6624 F: drivers/edac/i3000_edac.c
6627 L: linux-edac@vger.kernel.org
6629 F: drivers/edac/i5000_edac.c
6632 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6633 L: linux-edac@vger.kernel.org
6635 F: drivers/edac/i5400_edac.c
6638 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6639 L: linux-edac@vger.kernel.org
6641 F: drivers/edac/i7300_edac.c
6644 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6645 L: linux-edac@vger.kernel.org
6647 F: drivers/edac/i7core_edac.c
6650 M: Tim Small <tim@buttersideup.com>
6651 L: linux-edac@vger.kernel.org
6653 F: drivers/edac/i82443bxgx_edac.c
6656 M: "Arvind R." <arvino55@gmail.com>
6657 L: linux-edac@vger.kernel.org
6659 F: drivers/edac/i82975x_edac.c
6662 M: Jason Baron <jbaron@akamai.com>
6663 L: linux-edac@vger.kernel.org
6665 F: drivers/edac/ie31200_edac.c
6668 M: Tony Luck <tony.luck@intel.com>
6669 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6670 L: linux-edac@vger.kernel.org
6672 F: drivers/edac/igen6_edac.c
6675 M: Johannes Thumshirn <morbidrsa@gmail.com>
6676 L: linux-edac@vger.kernel.org
6678 F: drivers/edac/mpc85xx_edac.[ch]
6681 M: Egor Martovetsky <egor@pasemi.com>
6682 L: linux-edac@vger.kernel.org
6684 F: drivers/edac/pasemi_edac.c
6687 M: Tony Luck <tony.luck@intel.com>
6688 L: linux-edac@vger.kernel.org
6690 F: drivers/edac/pnd2_edac.[ch]
6693 M: Channagoud Kadabi <ckadabi@codeaurora.org>
6694 M: Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6695 L: linux-arm-msm@vger.kernel.org
6696 L: linux-edac@vger.kernel.org
6698 F: drivers/edac/qcom_edac.c
6701 M: Tim Small <tim@buttersideup.com>
6702 L: linux-edac@vger.kernel.org
6704 F: drivers/edac/r82600_edac.c
6707 M: Tony Luck <tony.luck@intel.com>
6708 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6709 L: linux-edac@vger.kernel.org
6711 F: drivers/edac/sb_edac.c
6714 M: Yash Shah <yash.shah@sifive.com>
6715 L: linux-edac@vger.kernel.org
6717 F: drivers/edac/sifive_edac.c
6720 M: Tony Luck <tony.luck@intel.com>
6721 L: linux-edac@vger.kernel.org
6723 F: drivers/edac/skx_*.[ch]
6726 M: Tero Kristo <kristo@kernel.org>
6727 L: linux-edac@vger.kernel.org
6729 F: drivers/edac/ti_edac.c
6731 EDIROL UA-101/UA-1000 DRIVER
6732 M: Clemens Ladisch <clemens@ladisch.de>
6733 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6735 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6736 F: sound/usb/misc/ua101.c
6739 M: Ivan Hu <ivan.hu@canonical.com>
6740 M: Ard Biesheuvel <ardb@kernel.org>
6741 L: linux-efi@vger.kernel.org
6743 F: drivers/firmware/efi/test/
6745 EFI VARIABLE FILESYSTEM
6746 M: Matthew Garrett <matthew.garrett@nebula.com>
6747 M: Jeremy Kerr <jk@ozlabs.org>
6748 M: Ard Biesheuvel <ardb@kernel.org>
6749 L: linux-efi@vger.kernel.org
6751 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6754 EFIFB FRAMEBUFFER DRIVER
6755 M: Peter Jones <pjones@redhat.com>
6756 L: linux-fbdev@vger.kernel.org
6758 F: drivers/video/fbdev/efifb.c
6762 W: http://aeschi.ch.eu.org/efs/
6765 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6766 M: Douglas Miller <dougmill@linux.ibm.com>
6767 L: netdev@vger.kernel.org
6769 F: drivers/net/ethernet/ibm/ehea/
6771 EM28XX VIDEO4LINUX DRIVER
6772 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6773 L: linux-media@vger.kernel.org
6775 W: https://linuxtv.org
6776 T: git git://linuxtv.org/media_tree.git
6777 F: Documentation/admin-guide/media/em28xx*
6778 F: drivers/media/usb/em28xx/
6781 M: Paul Gortmaker <paul.gortmaker@windriver.com>
6782 M: Matt Mackall <mpm@selenic.com>
6783 M: David Woodhouse <dwmw2@infradead.org>
6784 L: linux-embedded@vger.kernel.org
6787 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6788 M: Adrian Hunter <adrian.hunter@intel.com>
6789 M: Ritesh Harjani <riteshh@codeaurora.org>
6790 M: Asutosh Das <asutoshd@codeaurora.org>
6791 L: linux-mmc@vger.kernel.org
6793 F: drivers/mmc/host/cqhci*
6795 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6796 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6797 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
6798 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6799 L: linux-scsi@vger.kernel.org
6801 W: http://www.broadcom.com
6802 F: drivers/scsi/be2iscsi/
6804 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6805 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
6806 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6807 M: Somnath Kotur <somnath.kotur@broadcom.com>
6808 L: netdev@vger.kernel.org
6810 W: http://www.emulex.com
6811 F: drivers/net/ethernet/emulex/benet/
6813 EMULEX ONECONNECT ROCE DRIVER
6814 M: Selvin Xavier <selvin.xavier@broadcom.com>
6815 L: linux-rdma@vger.kernel.org
6817 W: http://www.broadcom.com
6818 F: drivers/infiniband/hw/ocrdma/
6819 F: include/uapi/rdma/ocrdma-abi.h
6821 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6822 M: James Smart <james.smart@broadcom.com>
6823 M: Dick Kennedy <dick.kennedy@broadcom.com>
6824 L: linux-scsi@vger.kernel.org
6826 W: http://www.broadcom.com
6827 F: drivers/scsi/lpfc/
6829 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6830 M: James Smart <james.smart@broadcom.com>
6831 M: Ram Vegesna <ram.vegesna@broadcom.com>
6832 L: linux-scsi@vger.kernel.org
6833 L: target-devel@vger.kernel.org
6835 W: http://www.broadcom.com
6836 F: drivers/scsi/elx/
6838 ENE CB710 FLASH CARD READER DRIVER
6839 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
6841 F: drivers/misc/cb710/
6842 F: drivers/mmc/host/cb710-mmc.*
6843 F: include/linux/cb710.h
6845 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6846 M: Maxim Levitsky <maximlevitsky@gmail.com>
6848 F: drivers/media/rc/ene_ir.*
6850 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6851 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
6852 L: linuxppc-dev@lists.ozlabs.org
6854 F: drivers/tty/ehv_bytechan.c
6856 EPSON S1D13XXX FRAMEBUFFER DRIVER
6857 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
6859 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6860 F: drivers/video/fbdev/s1d13xxxfb.c
6861 F: include/video/s1d13xxxfb.h
6864 M: Gao Xiang <xiang@kernel.org>
6865 M: Chao Yu <chao@kernel.org>
6866 L: linux-erofs@lists.ozlabs.org
6868 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6869 F: Documentation/filesystems/erofs.rst
6871 F: include/trace/events/erofs.h
6873 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6874 M: Jeff Layton <jlayton@kernel.org>
6876 F: include/linux/errseq.h
6879 ET131X NETWORK DRIVER
6880 M: Mark Einon <mark.einon@gmail.com>
6882 F: drivers/net/ethernet/agere/
6885 M: Roopa Prabhu <roopa@nvidia.com>
6886 M: Nikolay Aleksandrov <nikolay@nvidia.com>
6887 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
6888 L: netdev@vger.kernel.org
6890 W: http://www.linuxfoundation.org/en/Net:Bridge
6891 F: include/linux/netfilter_bridge/
6894 ETHERNET PHY LIBRARY
6895 M: Andrew Lunn <andrew@lunn.ch>
6896 M: Heiner Kallweit <hkallweit1@gmail.com>
6897 R: Russell King <linux@armlinux.org.uk>
6898 L: netdev@vger.kernel.org
6900 F: Documentation/ABI/testing/sysfs-class-net-phydev
6901 F: Documentation/devicetree/bindings/net/ethernet-phy.yaml
6902 F: Documentation/devicetree/bindings/net/mdio*
6903 F: Documentation/devicetree/bindings/net/qca,ar803x.yaml
6904 F: Documentation/networking/phy.rst
6905 F: drivers/net/mdio/
6906 F: drivers/net/mdio/acpi_mdio.c
6907 F: drivers/net/mdio/fwnode_mdio.c
6908 F: drivers/net/mdio/of_mdio.c
6911 F: drivers/of/of_net.c
6912 F: include/dt-bindings/net/qca-ar803x.h
6913 F: include/linux/*mdio*.h
6914 F: include/linux/mdio/*.h
6915 F: include/linux/of_net.h
6916 F: include/linux/phy.h
6917 F: include/linux/phy_fixed.h
6918 F: include/linux/platform_data/mdio-bcm-unimac.h
6919 F: include/linux/platform_data/mdio-gpio.h
6920 F: include/trace/events/mdio.h
6921 F: include/uapi/linux/mdio.h
6922 F: include/uapi/linux/mii.h
6925 M: Namjae Jeon <namjae.jeon@samsung.com>
6926 M: Sungjong Seo <sj1557.seo@samsung.com>
6927 L: linux-fsdevel@vger.kernel.org
6932 M: Jan Kara <jack@suse.com>
6933 L: linux-ext4@vger.kernel.org
6935 F: Documentation/filesystems/ext2.rst
6937 F: include/linux/ext2*
6940 M: "Theodore Ts'o" <tytso@mit.edu>
6941 M: Andreas Dilger <adilger.kernel@dilger.ca>
6942 L: linux-ext4@vger.kernel.org
6944 W: http://ext4.wiki.kernel.org
6945 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
6946 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6947 F: Documentation/filesystems/ext4/
6949 F: include/trace/events/ext4.h
6951 Extended Verification Module (EVM)
6952 M: Mimi Zohar <zohar@linux.ibm.com>
6953 L: linux-integrity@vger.kernel.org
6955 F: security/integrity/evm/
6957 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6958 M: Ard Biesheuvel <ardb@kernel.org>
6959 L: linux-efi@vger.kernel.org
6961 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6962 F: Documentation/admin-guide/efi-stub.rst
6963 F: arch/*/include/asm/efi.h
6964 F: arch/*/kernel/efi.c
6965 F: arch/arm/boot/compressed/efi-header.S
6966 F: arch/arm64/kernel/efi-entry.S
6967 F: arch/x86/platform/efi/
6968 F: drivers/firmware/efi/
6969 F: include/linux/efi*.h
6971 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6972 M: MyungJoo Ham <myungjoo.ham@samsung.com>
6973 M: Chanwoo Choi <cw00.choi@samsung.com>
6974 L: linux-kernel@vger.kernel.org
6976 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6977 F: Documentation/devicetree/bindings/extcon/
6978 F: Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6980 F: include/linux/extcon.h
6981 F: include/linux/extcon/
6984 M: Masami Hiramatsu <mhiramat@kernel.org>
6986 F: Documentation/admin-guide/bootconfig.rst
6987 F: fs/proc/bootconfig.c
6988 F: include/linux/bootconfig.h
6990 F: tools/bootconfig/*
6991 F: tools/bootconfig/scripts/*
6994 M: Jingoo Han <jingoohan1@gmail.com>
6995 L: dri-devel@lists.freedesktop.org
6997 F: drivers/gpu/drm/exynos/exynos_dp*
6999 EXYNOS SYSMMU (IOMMU) driver
7000 M: Marek Szyprowski <m.szyprowski@samsung.com>
7001 L: iommu@lists.linux-foundation.org
7003 F: drivers/iommu/exynos-iommu.c
7006 M: Jaegeuk Kim <jaegeuk@kernel.org>
7007 M: Chao Yu <yuchao0@huawei.com>
7008 L: linux-f2fs-devel@lists.sourceforge.net
7010 W: https://f2fs.wiki.kernel.org/
7011 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7012 F: Documentation/ABI/testing/sysfs-fs-f2fs
7013 F: Documentation/filesystems/f2fs.rst
7015 F: include/linux/f2fs_fs.h
7016 F: include/trace/events/f2fs.h
7017 F: include/uapi/linux/f2fs.h
7019 F71805F HARDWARE MONITORING DRIVER
7020 M: Jean Delvare <jdelvare@suse.com>
7021 L: linux-hwmon@vger.kernel.org
7023 F: Documentation/hwmon/f71805f.rst
7024 F: drivers/hwmon/f71805f.c
7027 M: Josh Poimboeuf <jpoimboe@redhat.com>
7029 F: scripts/faddr2line
7032 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
7033 L: netdev@vger.kernel.org
7035 F: Documentation/networking/failover.rst
7036 F: include/net/failover.h
7037 F: net/core/failover.c
7040 M: Jan Kara <jack@suse.cz>
7041 R: Amir Goldstein <amir73il@gmail.com>
7042 R: Matthew Bobrowski <repnop@google.com>
7043 L: linux-fsdevel@vger.kernel.org
7045 F: fs/notify/fanotify/
7046 F: include/linux/fanotify.h
7047 F: include/uapi/linux/fanotify.h
7049 FARSYNC SYNCHRONOUS DRIVER
7050 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
7052 W: http://www.farsite.co.uk/
7053 F: drivers/net/wan/farsync.*
7055 FAULT INJECTION SUPPORT
7056 M: Akinobu Mita <akinobu.mita@gmail.com>
7058 F: Documentation/fault-injection/
7059 F: lib/fault-inject.c
7061 FBTFT Framebuffer drivers
7062 L: dri-devel@lists.freedesktop.org
7063 L: linux-fbdev@vger.kernel.org
7065 F: drivers/staging/fbtft/
7068 M: Michael Buesch <m@bues.ch>
7069 L: linux-media@vger.kernel.org
7071 F: drivers/media/tuners/fc0011.c
7072 F: drivers/media/tuners/fc0011.h
7075 M: Antti Palosaari <crope@iki.fi>
7076 L: linux-media@vger.kernel.org
7078 W: https://linuxtv.org
7079 W: http://palosaari.fi/linux/
7080 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7081 T: git git://linuxtv.org/anttip/media_tree.git
7082 F: drivers/media/tuners/fc2580*
7084 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7085 M: Hannes Reinecke <hare@suse.de>
7086 L: linux-scsi@vger.kernel.org
7088 W: www.Open-FCoE.org
7089 F: drivers/scsi/fcoe/
7090 F: drivers/scsi/libfc/
7092 F: include/scsi/libfc.h
7093 F: include/scsi/libfcoe.h
7094 F: include/uapi/scsi/fc/
7096 FILE LOCKING (flock() and fcntl()/lockf())
7097 M: Jeff Layton <jlayton@kernel.org>
7098 M: "J. Bruce Fields" <bfields@fieldses.org>
7099 L: linux-fsdevel@vger.kernel.org
7103 F: include/linux/fcntl.h
7104 F: include/uapi/linux/fcntl.h
7106 FILESYSTEM DIRECT ACCESS (DAX)
7107 M: Dan Williams <dan.j.williams@intel.com>
7108 R: Matthew Wilcox <willy@infradead.org>
7109 R: Jan Kara <jack@suse.cz>
7110 L: linux-fsdevel@vger.kernel.org
7111 L: nvdimm@lists.linux.dev
7114 F: include/linux/dax.h
7115 F: include/trace/events/fs_dax.h
7117 FILESYSTEMS (VFS and infrastructure)
7118 M: Alexander Viro <viro@zeniv.linux.org.uk>
7119 L: linux-fsdevel@vger.kernel.org
7122 F: include/linux/fs.h
7123 F: include/linux/fs_types.h
7124 F: include/uapi/linux/fs.h
7125 F: include/uapi/linux/openat2.h
7130 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7131 M: Riku Voipio <riku.voipio@iki.fi>
7132 L: linux-hwmon@vger.kernel.org
7134 F: drivers/hwmon/f75375s.c
7135 F: include/linux/f75375s.h
7137 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7138 M: Clemens Ladisch <clemens@ladisch.de>
7139 M: Takashi Sakamoto <o-takashi@sakamocchi.jp>
7140 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7142 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7143 F: include/uapi/sound/firewire.h
7146 FIREWIRE MEDIA DRIVERS (firedtv)
7147 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7148 L: linux-media@vger.kernel.org
7149 L: linux1394-devel@lists.sourceforge.net
7151 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7152 F: drivers/media/firewire/
7154 FIREWIRE SBP-2 TARGET
7155 M: Chris Boot <bootc@bootc.net>
7156 L: linux-scsi@vger.kernel.org
7157 L: target-devel@vger.kernel.org
7158 L: linux1394-devel@lists.sourceforge.net
7160 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7161 F: drivers/target/sbp/
7164 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7165 L: linux1394-devel@lists.sourceforge.net
7167 W: http://ieee1394.wiki.kernel.org/
7168 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7169 F: drivers/firewire/
7170 F: include/linux/firewire.h
7171 F: include/uapi/linux/firewire*.h
7174 FIRMWARE LOADER (request_firmware)
7175 M: Luis Chamberlain <mcgrof@kernel.org>
7176 L: linux-kernel@vger.kernel.org
7178 F: Documentation/firmware_class/
7179 F: drivers/base/firmware_loader/
7180 F: include/linux/firmware.h
7182 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7183 M: Joshua Morris <josh.h.morris@us.ibm.com>
7184 M: Philip Kelleher <pjk1939@linux.ibm.com>
7186 F: drivers/block/rsxx/
7188 FLEXTIMER FTM-QUADDEC DRIVER
7189 M: Patrick Havelange <patrick.havelange@essensium.com>
7190 L: linux-iio@vger.kernel.org
7192 F: Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
7193 F: Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7194 F: drivers/counter/ftm-quaddec.c
7197 M: Denis Efremov <efremov@linux.com>
7198 L: linux-block@vger.kernel.org
7200 F: drivers/block/floppy.c
7202 FLYSKY FSIA6B RC RECEIVER
7203 M: Markus Koch <markus@notsyncing.net>
7204 L: linux-input@vger.kernel.org
7206 F: drivers/input/joystick/fsia6b.c
7208 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7209 M: Geoffrey D. Bennett <g@b4.vu>
7210 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7212 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7213 F: sound/usb/mixer_scarlett_gen2.c
7215 FORCEDETH GIGABIT ETHERNET DRIVER
7216 M: Rain River <rain.1986.08.12@gmail.com>
7217 M: Zhu Yanjun <zyjzyj2000@gmail.com>
7218 L: netdev@vger.kernel.org
7220 F: drivers/net/ethernet/nvidia/*
7223 M: Wu Hao <hao.wu@intel.com>
7224 R: Tom Rix <trix@redhat.com>
7225 L: linux-fpga@vger.kernel.org
7227 F: Documentation/ABI/testing/sysfs-bus-dfl*
7228 F: Documentation/fpga/dfl.rst
7229 F: drivers/fpga/dfl*
7230 F: drivers/uio/uio_dfl.c
7231 F: include/linux/dfl.h
7232 F: include/uapi/linux/fpga-dfl.h
7234 FPGA MANAGER FRAMEWORK
7235 M: Moritz Fischer <mdf@kernel.org>
7236 R: Tom Rix <trix@redhat.com>
7237 L: linux-fpga@vger.kernel.org
7239 W: http://www.rocketboards.org
7240 Q: http://patchwork.kernel.org/project/linux-fpga/list/
7241 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7242 F: Documentation/devicetree/bindings/fpga/
7243 F: Documentation/driver-api/fpga/
7244 F: Documentation/fpga/
7246 F: include/linux/fpga/
7249 M: Bill Metzenthen <billm@melbpc.org.au>
7251 W: http://floatingpoint.sourceforge.net/emulator/index.html
7252 F: arch/x86/math-emu/
7255 L: dri-devel@lists.freedesktop.org
7256 L: linux-fbdev@vger.kernel.org
7258 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
7259 T: git git://anongit.freedesktop.org/drm/drm-misc
7260 F: Documentation/fb/
7262 F: include/linux/fb.h
7263 F: include/uapi/linux/fb.h
7264 F: include/uapi/video/
7267 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7268 M: Horia Geantă <horia.geanta@nxp.com>
7269 M: Pankaj Gupta <pankaj.gupta@nxp.com>
7270 L: linux-crypto@vger.kernel.org
7272 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7273 F: drivers/crypto/caam/
7275 FREESCALE COLDFIRE M5441X MMC DRIVER
7276 M: Angelo Dureghello <angelo.dureghello@timesys.com>
7277 L: linux-mmc@vger.kernel.org
7279 F: drivers/mmc/host/sdhci-esdhc-mcf.c
7280 F: include/linux/platform_data/mmc-esdhc-mcf.h
7282 FREESCALE DIU FRAMEBUFFER DRIVER
7283 M: Timur Tabi <timur@kernel.org>
7284 L: linux-fbdev@vger.kernel.org
7286 F: drivers/video/fbdev/fsl-diu-fb.*
7288 FREESCALE DMA DRIVER
7289 M: Li Yang <leoyang.li@nxp.com>
7290 M: Zhang Wei <zw@zh-kernel.org>
7291 L: linuxppc-dev@lists.ozlabs.org
7293 F: drivers/dma/fsldma.*
7295 FREESCALE DSPI DRIVER
7296 M: Vladimir Oltean <olteanv@gmail.com>
7297 L: linux-spi@vger.kernel.org
7299 F: Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7300 F: drivers/spi/spi-fsl-dspi.c
7301 F: include/linux/spi/spi-fsl-dspi.h
7303 FREESCALE ENETC ETHERNET DRIVERS
7304 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7305 L: netdev@vger.kernel.org
7307 F: drivers/net/ethernet/freescale/enetc/
7309 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7310 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7311 L: netdev@vger.kernel.org
7313 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7314 F: drivers/net/ethernet/freescale/gianfar*
7316 FREESCALE GPMI NAND DRIVER
7317 M: Han Xu <han.xu@nxp.com>
7318 L: linux-mtd@lists.infradead.org
7320 F: drivers/mtd/nand/raw/gpmi-nand/*
7322 FREESCALE I2C CPM DRIVER
7323 M: Jochen Friedrich <jochen@scram.de>
7324 L: linuxppc-dev@lists.ozlabs.org
7325 L: linux-i2c@vger.kernel.org
7327 F: drivers/i2c/busses/i2c-cpm.c
7329 FREESCALE IMX / MXC FEC DRIVER
7330 M: Joakim Zhang <qiangqing.zhang@nxp.com>
7331 L: netdev@vger.kernel.org
7333 F: Documentation/devicetree/bindings/net/fsl-fec.txt
7334 F: drivers/net/ethernet/freescale/fec.h
7335 F: drivers/net/ethernet/freescale/fec_main.c
7336 F: drivers/net/ethernet/freescale/fec_ptp.c
7338 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7339 M: Sascha Hauer <s.hauer@pengutronix.de>
7340 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7341 L: linux-fbdev@vger.kernel.org
7342 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7344 F: drivers/video/fbdev/imxfb.c
7345 F: include/linux/platform_data/video-imxfb.h
7347 FREESCALE IMX DDR PMU DRIVER
7348 M: Frank Li <Frank.li@nxp.com>
7349 L: linux-arm-kernel@lists.infradead.org
7351 F: Documentation/admin-guide/perf/imx-ddr.rst
7352 F: Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7353 F: drivers/perf/fsl_imx8_ddr_perf.c
7355 FREESCALE IMX I2C DRIVER
7356 M: Oleksij Rempel <o.rempel@pengutronix.de>
7357 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7358 L: linux-i2c@vger.kernel.org
7360 F: Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7361 F: drivers/i2c/busses/i2c-imx.c
7363 FREESCALE IMX LPI2C DRIVER
7364 M: Dong Aisheng <aisheng.dong@nxp.com>
7365 L: linux-i2c@vger.kernel.org
7366 L: linux-imx@nxp.com
7368 F: Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7369 F: drivers/i2c/busses/i2c-imx-lpi2c.c
7371 FREESCALE MPC I2C DRIVER
7372 M: Chris Packham <chris.packham@alliedtelesis.co.nz>
7373 L: linux-i2c@vger.kernel.org
7375 F: Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7376 F: drivers/i2c/busses/i2c-mpc.c
7378 FREESCALE QORIQ DPAA ETHERNET DRIVER
7379 M: Madalin Bucur <madalin.bucur@nxp.com>
7380 L: netdev@vger.kernel.org
7382 F: drivers/net/ethernet/freescale/dpaa
7384 FREESCALE QORIQ DPAA FMAN DRIVER
7385 M: Madalin Bucur <madalin.bucur@nxp.com>
7386 L: netdev@vger.kernel.org
7388 F: Documentation/devicetree/bindings/net/fsl-fman.txt
7389 F: drivers/net/ethernet/freescale/fman
7391 FREESCALE QORIQ PTP CLOCK DRIVER
7392 M: Yangbo Lu <yangbo.lu@nxp.com>
7393 L: netdev@vger.kernel.org
7395 F: Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7396 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7397 F: drivers/net/ethernet/freescale/dpaa2/dprtc*
7398 F: drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7399 F: drivers/ptp/ptp_qoriq.c
7400 F: drivers/ptp/ptp_qoriq_debugfs.c
7401 F: include/linux/fsl/ptp_qoriq.h
7403 FREESCALE QUAD SPI DRIVER
7404 M: Han Xu <han.xu@nxp.com>
7405 L: linux-spi@vger.kernel.org
7407 F: Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7408 F: drivers/spi/spi-fsl-qspi.c
7410 FREESCALE QUICC ENGINE LIBRARY
7411 M: Qiang Zhao <qiang.zhao@nxp.com>
7412 L: linuxppc-dev@lists.ozlabs.org
7414 F: drivers/soc/fsl/qe/
7415 F: include/soc/fsl/*qe*.h
7416 F: include/soc/fsl/*ucc*.h
7418 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7419 M: Li Yang <leoyang.li@nxp.com>
7420 L: netdev@vger.kernel.org
7421 L: linuxppc-dev@lists.ozlabs.org
7423 F: drivers/net/ethernet/freescale/ucc_geth*
7425 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7426 M: Zhao Qiang <qiang.zhao@nxp.com>
7427 L: netdev@vger.kernel.org
7428 L: linuxppc-dev@lists.ozlabs.org
7430 F: drivers/net/wan/fsl_ucc_hdlc*
7432 FREESCALE QUICC ENGINE UCC UART DRIVER
7433 M: Timur Tabi <timur@kernel.org>
7434 L: linuxppc-dev@lists.ozlabs.org
7436 F: drivers/tty/serial/ucc_uart.c
7438 FREESCALE SOC DRIVERS
7439 M: Li Yang <leoyang.li@nxp.com>
7440 L: linuxppc-dev@lists.ozlabs.org
7441 L: linux-arm-kernel@lists.infradead.org
7443 F: Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7444 F: Documentation/devicetree/bindings/soc/fsl/
7446 F: include/linux/fsl/
7448 FREESCALE SOC FS_ENET DRIVER
7449 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
7450 L: linuxppc-dev@lists.ozlabs.org
7451 L: netdev@vger.kernel.org
7453 F: drivers/net/ethernet/freescale/fs_enet/
7454 F: include/linux/fs_enet_pd.h
7456 FREESCALE SOC SOUND DRIVERS
7457 M: Nicolin Chen <nicoleotsuka@gmail.com>
7458 M: Xiubo Li <Xiubo.Lee@gmail.com>
7459 R: Fabio Estevam <festevam@gmail.com>
7460 R: Shengjiu Wang <shengjiu.wang@gmail.com>
7461 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7462 L: linuxppc-dev@lists.ozlabs.org
7464 F: sound/soc/fsl/fsl*
7465 F: sound/soc/fsl/imx*
7466 F: sound/soc/fsl/mpc8610_hpcd.c
7468 FREESCALE USB PERIPHERAL DRIVERS
7469 M: Li Yang <leoyang.li@nxp.com>
7470 L: linux-usb@vger.kernel.org
7471 L: linuxppc-dev@lists.ozlabs.org
7473 F: drivers/usb/gadget/udc/fsl*
7475 FREESCALE USB PHY DRIVER
7476 M: Ran Wang <ran.wang_1@nxp.com>
7477 L: linux-usb@vger.kernel.org
7478 L: linuxppc-dev@lists.ozlabs.org
7480 F: drivers/usb/phy/phy-fsl-usb*
7483 M: Christoph Hellwig <hch@infradead.org>
7485 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
7489 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
7490 M: Pavel Machek <pavel@ucw.cz>
7491 L: linux-pm@vger.kernel.org
7493 F: Documentation/power/freezing-of-tasks.rst
7494 F: include/linux/freezer.h
7498 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7499 L: linux-kernel@vger.kernel.org
7501 F: include/linux/frontswap.h
7504 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7505 M: David Howells <dhowells@redhat.com>
7506 L: linux-cachefs@redhat.com (moderated for non-subscribers)
7508 F: Documentation/filesystems/caching/
7510 F: include/linux/fscache*.h
7512 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7513 M: Theodore Y. Ts'o <tytso@mit.edu>
7514 M: Jaegeuk Kim <jaegeuk@kernel.org>
7515 M: Eric Biggers <ebiggers@kernel.org>
7516 L: linux-fscrypt@vger.kernel.org
7518 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7519 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7520 F: Documentation/filesystems/fscrypt.rst
7522 F: include/linux/fscrypt*.h
7523 F: include/uapi/linux/fscrypt.h
7526 M: Jeremy Kerr <jk@ozlabs.org>
7527 M: Joel Stanley <joel@jms.id.au>
7528 R: Alistar Popple <alistair@popple.id.au>
7529 R: Eddie James <eajames@linux.ibm.com>
7530 L: linux-fsi@lists.ozlabs.org
7532 Q: http://patchwork.ozlabs.org/project/linux-fsi/list/
7533 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7535 F: include/linux/fsi*.h
7536 F: include/trace/events/fsi*.h
7538 FSI-ATTACHED I2C DRIVER
7539 M: Eddie James <eajames@linux.ibm.com>
7540 L: linux-i2c@vger.kernel.org
7541 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
7543 F: Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7544 F: drivers/i2c/busses/i2c-fsi.c
7546 FSI-ATTACHED SPI DRIVER
7547 M: Eddie James <eajames@linux.ibm.com>
7548 L: linux-spi@vger.kernel.org
7550 F: Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7551 F: drivers/spi/spi-fsi.c
7553 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7554 M: Jan Kara <jack@suse.cz>
7555 R: Amir Goldstein <amir73il@gmail.com>
7556 L: linux-fsdevel@vger.kernel.org
7558 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7560 F: include/linux/fsnotify*.h
7562 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7563 M: Eric Biggers <ebiggers@kernel.org>
7564 M: Theodore Y. Ts'o <tytso@mit.edu>
7565 L: linux-fscrypt@vger.kernel.org
7567 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7568 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7569 F: Documentation/filesystems/fsverity.rst
7571 F: include/linux/fsverity.h
7572 F: include/uapi/linux/fsverity.h
7574 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7575 M: Michael Zaidman <michael.zaidman@gmail.com>
7576 L: linux-i2c@vger.kernel.org
7577 L: linux-input@vger.kernel.org
7579 F: drivers/hid/hid-ft260.c
7581 FUJITSU LAPTOP EXTRAS
7582 M: Jonathan Woithe <jwoithe@just42.net>
7583 L: platform-driver-x86@vger.kernel.org
7585 F: drivers/platform/x86/fujitsu-laptop.c
7587 FUJITSU M-5MO LS CAMERA ISP DRIVER
7588 M: Kyungmin Park <kyungmin.park@samsung.com>
7589 M: Heungjun Kim <riverful.kim@samsung.com>
7590 L: linux-media@vger.kernel.org
7592 F: drivers/media/i2c/m5mols/
7593 F: include/media/i2c/m5mols.h
7595 FUJITSU TABLET EXTRAS
7596 M: Robert Gerlach <khnz@gmx.de>
7597 L: platform-driver-x86@vger.kernel.org
7599 F: drivers/platform/x86/fujitsu-tablet.c
7601 FUSE: FILESYSTEM IN USERSPACE
7602 M: Miklos Szeredi <miklos@szeredi.hu>
7603 L: linux-fsdevel@vger.kernel.org
7605 W: https://github.com/libfuse/
7606 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7607 F: Documentation/filesystems/fuse.rst
7609 F: include/uapi/linux/fuse.h
7612 M: Thomas Gleixner <tglx@linutronix.de>
7613 M: Ingo Molnar <mingo@redhat.com>
7614 R: Peter Zijlstra <peterz@infradead.org>
7615 R: Darren Hart <dvhart@infradead.org>
7616 R: Davidlohr Bueso <dave@stgolabs.net>
7617 L: linux-kernel@vger.kernel.org
7619 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7620 F: Documentation/locking/*futex*
7621 F: include/asm-generic/futex.h
7622 F: include/linux/futex.h
7623 F: include/uapi/linux/futex.h
7625 F: tools/perf/bench/futex*
7626 F: tools/testing/selftests/futex/
7628 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7629 M: Tim Harvey <tharvey@gateworks.com>
7630 M: Robert Jones <rjones@gateworks.com>
7632 F: Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7633 F: drivers/mfd/gateworks-gsc.c
7634 F: include/linux/mfd/gsc.h
7635 F: Documentation/hwmon/gsc-hwmon.rst
7636 F: drivers/hwmon/gsc-hwmon.c
7637 F: include/linux/platform_data/gsc_hwmon.h
7640 M: Kees Cook <keescook@chromium.org>
7641 L: linux-hardening@vger.kernel.org
7643 F: Documentation/kbuild/gcc-plugins.rst
7644 F: scripts/Makefile.gcc-plugins
7645 F: scripts/gcc-plugins/
7647 GCOV BASED KERNEL PROFILING
7648 M: Peter Oberparleiter <oberpar@linux.ibm.com>
7650 F: Documentation/dev-tools/gcov.rst
7653 GDB KERNEL DEBUGGING HELPER SCRIPTS
7654 M: Jan Kiszka <jan.kiszka@siemens.com>
7655 M: Kieran Bingham <kbingham@kernel.org>
7659 GEMINI CRYPTO DRIVER
7660 M: Corentin Labbe <clabbe@baylibre.com>
7661 L: linux-crypto@vger.kernel.org
7663 F: drivers/crypto/gemini/
7665 GEMTEK FM RADIO RECEIVER DRIVER
7666 M: Hans Verkuil <hverkuil@xs4all.nl>
7667 L: linux-media@vger.kernel.org
7669 W: https://linuxtv.org
7670 T: git git://linuxtv.org/media_tree.git
7671 F: drivers/media/radio/radio-gemtek*
7673 GENERIC ARCHITECTURE TOPOLOGY
7674 M: Sudeep Holla <sudeep.holla@arm.com>
7675 L: linux-kernel@vger.kernel.org
7677 F: drivers/base/arch_topology.c
7678 F: include/linux/arch_topology.h
7681 M: Thomas Gleixner <tglx@linutronix.de>
7682 M: Peter Zijlstra <peterz@infradead.org>
7683 M: Andy Lutomirski <luto@kernel.org>
7684 L: linux-kernel@vger.kernel.org
7686 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7687 F: include/linux/entry-common.h
7688 F: include/linux/entry-kvm.h
7691 GENERIC GPIO I2C DRIVER
7692 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7694 F: drivers/i2c/busses/i2c-gpio.c
7695 F: include/linux/platform_data/i2c-gpio.h
7697 GENERIC GPIO I2C MULTIPLEXER DRIVER
7698 M: Peter Korsgaard <peter.korsgaard@barco.com>
7699 L: linux-i2c@vger.kernel.org
7701 F: Documentation/i2c/muxes/i2c-mux-gpio.rst
7702 F: drivers/i2c/muxes/i2c-mux-gpio.c
7703 F: include/linux/platform_data/i2c-mux-gpio.h
7705 GENERIC HDLC (WAN) DRIVERS
7706 M: Krzysztof Halasa <khc@pm.waw.pl>
7708 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
7709 F: drivers/net/wan/c101.c
7710 F: drivers/net/wan/hd6457*
7711 F: drivers/net/wan/hdlc*
7712 F: drivers/net/wan/n2.c
7713 F: drivers/net/wan/pc300too.c
7714 F: drivers/net/wan/pci200syn.c
7715 F: drivers/net/wan/wanxl*
7717 GENERIC INCLUDE/ASM HEADER FILES
7718 M: Arnd Bergmann <arnd@arndb.de>
7719 L: linux-arch@vger.kernel.org
7721 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7722 F: include/asm-generic/
7723 F: include/uapi/asm-generic/
7725 GENERIC PHY FRAMEWORK
7726 M: Kishon Vijay Abraham I <kishon@ti.com>
7727 M: Vinod Koul <vkoul@kernel.org>
7728 L: linux-phy@lists.infradead.org
7730 Q: https://patchwork.kernel.org/project/linux-phy/list/
7731 T: git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7732 F: Documentation/devicetree/bindings/phy/
7734 F: include/linux/phy/
7736 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7737 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7739 F: drivers/i2c/muxes/i2c-demux-pinctrl.c
7742 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
7743 M: Kevin Hilman <khilman@kernel.org>
7744 M: Ulf Hansson <ulf.hansson@linaro.org>
7745 L: linux-pm@vger.kernel.org
7747 F: Documentation/devicetree/bindings/power/power?domain*
7748 F: drivers/base/power/domain*.c
7749 F: include/linux/pm_domain.h
7751 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7752 M: Eugen Hristev <eugen.hristev@microchip.com>
7753 L: linux-input@vger.kernel.org
7755 F: drivers/input/touchscreen/resistive-adc-touch.c
7757 GENERIC STRING LIBRARY
7758 R: Andy Shevchenko <andy@kernel.org>
7761 F: lib/string_helpers.c
7762 F: lib/test_string.c
7763 F: lib/test-string_helpers.c
7765 GENERIC UIO DRIVER FOR PCI DEVICES
7766 M: "Michael S. Tsirkin" <mst@redhat.com>
7767 L: kvm@vger.kernel.org
7769 F: drivers/uio/uio_pci_generic.c
7771 GENERIC VDSO LIBRARY
7772 M: Andy Lutomirski <luto@kernel.org>
7773 M: Thomas Gleixner <tglx@linutronix.de>
7774 M: Vincenzo Frascino <vincenzo.frascino@arm.com>
7775 L: linux-kernel@vger.kernel.org
7777 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7778 F: include/asm-generic/vdso/vsyscall.h
7780 F: kernel/time/vsyscall.c
7783 GENWQE (IBM Generic Workqueue Card)
7784 M: Frank Haverkamp <haver@linux.ibm.com>
7786 F: drivers/misc/genwqe/
7788 GET_MAINTAINER SCRIPT
7789 M: Joe Perches <joe@perches.com>
7791 F: scripts/get_maintainer.pl
7794 M: Bob Peterson <rpeterso@redhat.com>
7795 M: Andreas Gruenbacher <agruenba@redhat.com>
7796 L: cluster-devel@redhat.com
7798 B: https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7799 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7800 F: Documentation/filesystems/gfs2*
7802 F: include/uapi/linux/gfs2_ondisk.h
7805 M: Thomas Weißschuh <thomas@weissschuh.net>
7806 L: platform-driver-x86@vger.kernel.org
7808 F: drivers/platform/x86/gigabyte-wmi.c
7811 M: Johan Hovold <johan@kernel.org>
7813 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7814 F: Documentation/ABI/testing/sysfs-class-gnss
7815 F: Documentation/devicetree/bindings/gnss/
7817 F: include/linux/gnss.h
7820 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
7821 L: linux-media@vger.kernel.org
7823 F: drivers/media/usb/go7007/
7826 M: Bastien Nocera <hadess@hadess.net>
7827 L: linux-input@vger.kernel.org
7829 F: drivers/input/touchscreen/goodix.c
7831 GOOGLE ETHERNET DRIVERS
7832 M: Catherine Sullivan <csully@google.com>
7833 R: Sagi Shahar <sagis@google.com>
7834 R: Jon Olson <jonolson@google.com>
7835 L: netdev@vger.kernel.org
7837 F: Documentation/networking/device_drivers/ethernet/google/gve.rst
7838 F: drivers/net/ethernet/google
7840 GPD POCKET FAN DRIVER
7841 M: Hans de Goede <hdegoede@redhat.com>
7842 L: platform-driver-x86@vger.kernel.org
7844 F: drivers/platform/x86/gpd-pocket-fan.c
7847 M: Mika Westerberg <mika.westerberg@linux.intel.com>
7848 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7849 L: linux-gpio@vger.kernel.org
7850 L: linux-acpi@vger.kernel.org
7852 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7853 F: Documentation/firmware-guide/acpi/gpio-properties.rst
7854 F: drivers/gpio/gpiolib-acpi.c
7855 F: drivers/gpio/gpiolib-acpi.h
7858 M: Geert Uytterhoeven <geert+renesas@glider.be>
7859 L: linux-gpio@vger.kernel.org
7861 F: Documentation/admin-guide/gpio/gpio-aggregator.rst
7862 F: drivers/gpio/gpio-aggregator.c
7865 M: Sean Young <sean@mess.org>
7866 L: linux-media@vger.kernel.org
7868 F: drivers/media/rc/gpio-ir-tx.c
7871 M: Bamvor Jian Zhang <bamv2005@gmail.com>
7872 L: linux-gpio@vger.kernel.org
7874 F: drivers/gpio/gpio-mockup.c
7875 F: tools/testing/selftests/gpio/
7878 R: Michael Walle <michael@walle.cc>
7880 F: drivers/gpio/gpio-regmap.c
7881 F: include/linux/gpio/regmap.h
7884 M: Linus Walleij <linus.walleij@linaro.org>
7885 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
7886 L: linux-gpio@vger.kernel.org
7888 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7889 F: Documentation/ABI/obsolete/sysfs-gpio
7890 F: Documentation/ABI/testing/gpio-cdev
7891 F: Documentation/admin-guide/gpio/
7892 F: Documentation/devicetree/bindings/gpio/
7893 F: Documentation/driver-api/gpio/
7895 F: include/asm-generic/gpio.h
7896 F: include/linux/gpio.h
7897 F: include/linux/gpio/
7898 F: include/linux/of_gpio.h
7899 F: include/uapi/linux/gpio.h
7902 GRE DEMULTIPLEXER DRIVER
7903 M: Dmitry Kozlov <xeb@mail.ru>
7904 L: netdev@vger.kernel.org
7906 F: include/net/gre.h
7907 F: net/ipv4/gre_demux.c
7908 F: net/ipv4/gre_offload.c
7910 GRETH 10/100/1G Ethernet MAC device driver
7911 M: Andreas Larsson <andreas@gaisler.com>
7912 L: netdev@vger.kernel.org
7914 F: drivers/net/ethernet/aeroflex/
7916 GREYBUS AUDIO PROTOCOLS DRIVERS
7917 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
7918 M: Mark Greer <mgreer@animalcreek.com>
7920 F: drivers/staging/greybus/audio_apbridgea.c
7921 F: drivers/staging/greybus/audio_apbridgea.h
7922 F: drivers/staging/greybus/audio_codec.c
7923 F: drivers/staging/greybus/audio_codec.h
7924 F: drivers/staging/greybus/audio_gb.c
7925 F: drivers/staging/greybus/audio_manager.c
7926 F: drivers/staging/greybus/audio_manager.h
7927 F: drivers/staging/greybus/audio_manager_module.c
7928 F: drivers/staging/greybus/audio_manager_private.h
7929 F: drivers/staging/greybus/audio_manager_sysfs.c
7930 F: drivers/staging/greybus/audio_module.c
7931 F: drivers/staging/greybus/audio_topology.c
7933 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7934 M: Viresh Kumar <vireshk@kernel.org>
7936 F: drivers/staging/greybus/authentication.c
7937 F: drivers/staging/greybus/bootrom.c
7938 F: drivers/staging/greybus/firmware.h
7939 F: drivers/staging/greybus/fw-core.c
7940 F: drivers/staging/greybus/fw-download.c
7941 F: drivers/staging/greybus/fw-management.c
7942 F: drivers/staging/greybus/greybus_authentication.h
7943 F: drivers/staging/greybus/greybus_firmware.h
7944 F: drivers/staging/greybus/hid.c
7945 F: drivers/staging/greybus/i2c.c
7946 F: drivers/staging/greybus/spi.c
7947 F: drivers/staging/greybus/spilib.c
7948 F: drivers/staging/greybus/spilib.h
7950 GREYBUS LOOPBACK DRIVER
7951 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
7953 F: drivers/staging/greybus/loopback.c
7955 GREYBUS PLATFORM DRIVERS
7956 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7958 F: drivers/staging/greybus/arche-apb-ctrl.c
7959 F: drivers/staging/greybus/arche-platform.c
7960 F: drivers/staging/greybus/arche_platform.h
7962 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7963 M: Rui Miguel Silva <rmfrfs@gmail.com>
7965 F: drivers/staging/greybus/gpio.c
7966 F: drivers/staging/greybus/light.c
7967 F: drivers/staging/greybus/power_supply.c
7968 F: drivers/staging/greybus/sdio.c
7969 F: drivers/staging/greybus/spi.c
7970 F: drivers/staging/greybus/spilib.c
7973 M: Johan Hovold <johan@kernel.org>
7974 M: Alex Elder <elder@kernel.org>
7975 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7976 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
7979 F: drivers/staging/greybus/
7980 F: include/linux/greybus.h
7981 F: include/linux/greybus/
7983 GREYBUS UART PROTOCOLS DRIVERS
7984 M: David Lin <dtwlin@gmail.com>
7986 F: drivers/staging/greybus/log.c
7987 F: drivers/staging/greybus/uart.c
7989 GS1662 VIDEO SERIALIZER
7990 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7991 L: linux-media@vger.kernel.org
7993 T: git git://linuxtv.org/media_tree.git
7994 F: drivers/media/spi/gs1662.c
7996 GSPCA FINEPIX SUBDRIVER
7997 M: Frank Zago <frank@zago.net>
7998 L: linux-media@vger.kernel.org
8000 T: git git://linuxtv.org/media_tree.git
8001 F: drivers/media/usb/gspca/finepix.c
8003 GSPCA GL860 SUBDRIVER
8004 M: Olivier Lorin <o.lorin@laposte.net>
8005 L: linux-media@vger.kernel.org
8007 T: git git://linuxtv.org/media_tree.git
8008 F: drivers/media/usb/gspca/gl860/
8010 GSPCA M5602 SUBDRIVER
8011 M: Erik Andren <erik.andren@gmail.com>
8012 L: linux-media@vger.kernel.org
8014 T: git git://linuxtv.org/media_tree.git
8015 F: drivers/media/usb/gspca/m5602/
8017 GSPCA PAC207 SONIXB SUBDRIVER
8018 M: Hans Verkuil <hverkuil@xs4all.nl>
8019 L: linux-media@vger.kernel.org
8021 T: git git://linuxtv.org/media_tree.git
8022 F: drivers/media/usb/gspca/pac207.c
8024 GSPCA SN9C20X SUBDRIVER
8025 M: Brian Johnson <brijohn@gmail.com>
8026 L: linux-media@vger.kernel.org
8028 T: git git://linuxtv.org/media_tree.git
8029 F: drivers/media/usb/gspca/sn9c20x.c
8031 GSPCA T613 SUBDRIVER
8032 M: Leandro Costantino <lcostantino@gmail.com>
8033 L: linux-media@vger.kernel.org
8035 T: git git://linuxtv.org/media_tree.git
8036 F: drivers/media/usb/gspca/t613.c
8038 GSPCA USB WEBCAM DRIVER
8039 M: Hans Verkuil <hverkuil@xs4all.nl>
8040 L: linux-media@vger.kernel.org
8042 T: git git://linuxtv.org/media_tree.git
8043 F: drivers/media/usb/gspca/
8045 GTP (GPRS Tunneling Protocol)
8046 M: Pablo Neira Ayuso <pablo@netfilter.org>
8047 M: Harald Welte <laforge@gnumonks.org>
8048 L: osmocom-net-gprs@lists.osmocom.org
8050 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8051 F: drivers/net/gtp.c
8053 GUID PARTITION TABLE (GPT)
8054 M: Davidlohr Bueso <dave@stgolabs.net>
8055 L: linux-efi@vger.kernel.org
8057 F: block/partitions/efi.*
8060 M: Yoshinori Sato <ysato@users.sourceforge.jp>
8061 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8063 W: http://uclinux-h8.sourceforge.jp
8064 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8066 F: drivers/clk/h8300/
8067 F: drivers/clocksource/h8300_*.c
8068 F: drivers/irqchip/irq-renesas-h8*.c
8070 HABANALABS PCI DRIVER
8071 M: Oded Gabbay <ogabbay@kernel.org>
8073 T: git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8074 F: Documentation/ABI/testing/debugfs-driver-habanalabs
8075 F: Documentation/ABI/testing/sysfs-driver-habanalabs
8076 F: drivers/misc/habanalabs/
8077 F: include/uapi/misc/habanalabs.h
8080 M: Antti Palosaari <crope@iki.fi>
8081 L: linux-media@vger.kernel.org
8083 W: https://linuxtv.org
8084 W: http://palosaari.fi/linux/
8085 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8086 T: git git://linuxtv.org/anttip/media_tree.git
8087 F: drivers/media/usb/hackrf/
8089 HANTRO VPU CODEC DRIVER
8090 M: Ezequiel Garcia <ezequiel@collabora.com>
8091 M: Philipp Zabel <p.zabel@pengutronix.de>
8092 L: linux-media@vger.kernel.org
8093 L: linux-rockchip@lists.infradead.org
8095 F: Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8096 F: Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8097 F: drivers/staging/media/hantro/
8099 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8100 M: Frank Seidel <frank@f-seidel.de>
8101 L: platform-driver-x86@vger.kernel.org
8103 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8104 F: drivers/platform/x86/hdaps.c
8107 M: Jean Delvare <jdelvare@suse.com>
8108 M: Guenter Roeck <linux@roeck-us.net>
8109 L: linux-hwmon@vger.kernel.org
8111 W: http://hwmon.wiki.kernel.org/
8112 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8113 F: Documentation/devicetree/bindings/hwmon/
8114 F: Documentation/hwmon/
8116 F: include/linux/hwmon*.h
8117 F: include/trace/events/hwmon*.h
8118 K: (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8120 HARDWARE RANDOM NUMBER GENERATOR CORE
8121 M: Matt Mackall <mpm@selenic.com>
8122 M: Herbert Xu <herbert@gondor.apana.org.au>
8123 L: linux-crypto@vger.kernel.org
8125 F: Documentation/admin-guide/hw_random.rst
8126 F: Documentation/devicetree/bindings/rng/
8127 F: drivers/char/hw_random/
8128 F: include/linux/hw_random.h
8130 HARDWARE SPINLOCK CORE
8131 M: Ohad Ben-Cohen <ohad@wizery.com>
8132 M: Bjorn Andersson <bjorn.andersson@linaro.org>
8133 R: Baolin Wang <baolin.wang7@gmail.com>
8134 L: linux-remoteproc@vger.kernel.org
8136 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8137 F: Documentation/devicetree/bindings/hwlock/
8138 F: Documentation/locking/hwspinlock.rst
8139 F: drivers/hwspinlock/
8140 F: include/linux/hwspinlock.h
8142 HARDWARE TRACING FACILITIES
8143 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
8145 F: drivers/hwtracing/
8147 HARMONY SOUND DRIVER
8148 L: linux-parisc@vger.kernel.org
8150 F: sound/parisc/harmony.*
8152 HDPVR USB VIDEO ENCODER DRIVER
8153 M: Hans Verkuil <hverkuil@xs4all.nl>
8154 L: linux-media@vger.kernel.org
8156 W: https://linuxtv.org
8157 T: git git://linuxtv.org/media_tree.git
8158 F: drivers/media/usb/hdpvr/
8160 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8161 M: Matt Hsiao <matt.hsiao@hpe.com>
8163 F: drivers/misc/hpilo.[ch]
8165 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8166 M: Jerry Hoemann <jerry.hoemann@hpe.com>
8168 F: Documentation/watchdog/hpwdt.rst
8169 F: drivers/watchdog/hpwdt.c
8171 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8172 M: Don Brace <don.brace@microchip.com>
8173 L: storagedev@microchip.com
8174 L: linux-scsi@vger.kernel.org
8176 F: Documentation/scsi/hpsa.rst
8177 F: drivers/scsi/hpsa*.[ch]
8178 F: include/linux/cciss*.h
8179 F: include/uapi/linux/cciss*.h
8182 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8183 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8184 L: linux-rdma@vger.kernel.org
8186 F: drivers/infiniband/hw/hfi1
8189 L: linux-fsdevel@vger.kernel.org
8191 F: Documentation/filesystems/hfs.rst
8195 L: linux-fsdevel@vger.kernel.org
8197 F: Documentation/filesystems/hfsplus.rst
8200 HGA FRAMEBUFFER DRIVER
8201 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8202 L: linux-nvidia@lists.surfsouth.com
8204 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8205 F: drivers/video/fbdev/hgafb.c
8207 HIBERNATION (aka Software Suspend, aka swsusp)
8208 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
8209 M: Pavel Machek <pavel@ucw.cz>
8210 L: linux-pm@vger.kernel.org
8212 B: https://bugzilla.kernel.org
8213 F: arch/*/include/asm/suspend*.h
8215 F: drivers/base/power/
8216 F: include/linux/freezer.h
8217 F: include/linux/pm.h
8218 F: include/linux/suspend.h
8222 M: Jiri Kosina <jikos@kernel.org>
8223 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
8224 L: linux-input@vger.kernel.org
8226 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8228 F: include/linux/hid*
8229 F: include/uapi/linux/hid*
8231 HID PLAYSTATION DRIVER
8232 M: Roderick Colenbrander <roderick.colenbrander@sony.com>
8233 L: linux-input@vger.kernel.org
8235 F: drivers/hid/hid-playstation.c
8237 HID SENSOR HUB DRIVERS
8238 M: Jiri Kosina <jikos@kernel.org>
8239 M: Jonathan Cameron <jic23@kernel.org>
8240 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8241 L: linux-input@vger.kernel.org
8242 L: linux-iio@vger.kernel.org
8244 F: Documentation/hid/hid-sensor*
8245 F: drivers/hid/hid-sensor-*
8246 F: drivers/iio/*/hid-*
8247 F: include/linux/hid-sensor-*
8249 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8250 M: Thomas Gleixner <tglx@linutronix.de>
8251 L: linux-kernel@vger.kernel.org
8253 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8254 F: Documentation/timers/
8255 F: include/linux/clockchips.h
8256 F: include/linux/hrtimer.h
8257 F: kernel/time/clockevents.c
8258 F: kernel/time/hrtimer.c
8259 F: kernel/time/timer_*.c
8261 HIGH-SPEED SCC DRIVER FOR AX.25
8262 L: linux-hams@vger.kernel.org
8264 F: drivers/net/hamradio/dmascc.c
8265 F: drivers/net/hamradio/scc.c
8267 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8268 M: HighPoint Linux Team <linux@highpoint-tech.com>
8270 W: http://www.highpoint-tech.com
8271 F: Documentation/scsi/hptiop.rst
8272 F: drivers/scsi/hptiop.c
8275 M: Jes Sorensen <jes@trained-monkey.org>
8276 L: linux-hippi@sunsite.dk
8278 F: drivers/net/hippi/
8279 F: include/linux/hippidevice.h
8280 F: include/uapi/linux/if_hippi.h
8283 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8284 M: Kurt Kanzenbach <kurt@linutronix.de>
8285 L: netdev@vger.kernel.org
8287 F: Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8288 F: drivers/net/dsa/hirschmann/*
8289 F: include/linux/platform_data/hirschmann-hellcreek.h
8290 F: net/dsa/tag_hellcreek.c
8292 HISILICON DMA DRIVER
8293 M: Zhou Wang <wangzhou1@hisilicon.com>
8294 L: dmaengine@vger.kernel.org
8296 F: drivers/dma/hisi_dma.c
8298 HISILICON GPIO DRIVER
8299 M: Luo Jiaxing <luojiaxing@huawei.com>
8300 L: linux-gpio@vger.kernel.org
8302 F: drivers/gpio/gpio-hisi.c
8304 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8305 M: Zaibo Xu <xuzaibo@huawei.com>
8306 L: linux-crypto@vger.kernel.org
8308 F: Documentation/ABI/testing/debugfs-hisi-hpre
8309 F: drivers/crypto/hisilicon/hpre/hpre.h
8310 F: drivers/crypto/hisilicon/hpre/hpre_crypto.c
8311 F: drivers/crypto/hisilicon/hpre/hpre_main.c
8313 HISILICON I2C CONTROLLER DRIVER
8314 M: Yicong Yang <yangyicong@hisilicon.com>
8315 L: linux-i2c@vger.kernel.org
8317 W: https://www.hisilicon.com
8318 F: drivers/i2c/busses/i2c-hisi.c
8320 HISILICON LPC BUS DRIVER
8321 M: john.garry@huawei.com
8323 W: http://www.hisilicon.com
8324 F: Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8325 F: drivers/bus/hisi_lpc.c
8327 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8328 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8329 M: Salil Mehta <salil.mehta@huawei.com>
8330 L: netdev@vger.kernel.org
8332 W: http://www.hisilicon.com
8333 F: drivers/net/ethernet/hisilicon/hns3/
8335 HISILICON NETWORK SUBSYSTEM DRIVER
8336 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8337 M: Salil Mehta <salil.mehta@huawei.com>
8338 L: netdev@vger.kernel.org
8340 W: http://www.hisilicon.com
8341 F: Documentation/devicetree/bindings/net/hisilicon*.txt
8342 F: drivers/net/ethernet/hisilicon/
8344 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8345 M: John Stultz <john.stultz@linaro.org>
8346 L: linux-kernel@vger.kernel.org
8348 F: drivers/misc/hisi_hikey_usb.c
8349 F: Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8351 HISILICON PMU DRIVER
8352 M: Shaokun Zhang <zhangshaokun@hisilicon.com>
8354 W: http://www.hisilicon.com
8355 F: Documentation/admin-guide/perf/hisi-pmu.rst
8356 F: drivers/perf/hisilicon
8358 HISILICON QM AND ZIP Controller DRIVER
8359 M: Zhou Wang <wangzhou1@hisilicon.com>
8360 L: linux-crypto@vger.kernel.org
8362 F: Documentation/ABI/testing/debugfs-hisi-zip
8363 F: drivers/crypto/hisilicon/qm.c
8364 F: drivers/crypto/hisilicon/qm.h
8365 F: drivers/crypto/hisilicon/sgl.c
8366 F: drivers/crypto/hisilicon/zip/
8368 HISILICON ROCE DRIVER
8369 M: Lijun Ou <oulijun@huawei.com>
8370 M: Weihang Li <liweihang@huawei.com>
8371 L: linux-rdma@vger.kernel.org
8373 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8374 F: drivers/infiniband/hw/hns/
8376 HISILICON SAS Controller
8377 M: John Garry <john.garry@huawei.com>
8379 W: http://www.hisilicon.com
8380 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8381 F: drivers/scsi/hisi_sas/
8383 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8384 M: Zaibo Xu <xuzaibo@huawei.com>
8385 L: linux-crypto@vger.kernel.org
8387 F: Documentation/ABI/testing/debugfs-hisi-sec
8388 F: drivers/crypto/hisilicon/sec2/sec.h
8389 F: drivers/crypto/hisilicon/sec2/sec_crypto.c
8390 F: drivers/crypto/hisilicon/sec2/sec_crypto.h
8391 F: drivers/crypto/hisilicon/sec2/sec_main.c
8393 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8394 M: Jay Fang <f.fangjian@huawei.com>
8395 L: linux-spi@vger.kernel.org
8397 W: http://www.hisilicon.com
8398 F: drivers/spi/spi-hisi-kunpeng.c
8400 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8401 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8403 F: drivers/staging/hikey9xx/
8405 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8406 M: Zaibo Xu <xuzaibo@huawei.com>
8408 F: drivers/crypto/hisilicon/trng/trng.c
8410 HISILICON V3XX SPI NOR FLASH Controller Driver
8411 M: John Garry <john.garry@huawei.com>
8413 W: http://www.hisilicon.com
8414 F: drivers/spi/spi-hisi-sfc-v3xx.c
8416 HMM - Heterogeneous Memory Management
8417 M: Jérôme Glisse <jglisse@redhat.com>
8418 L: linux-mm@kvack.org
8420 F: Documentation/vm/hmm.rst
8421 F: include/linux/hmm*
8424 F: tools/testing/selftests/vm/*hmm*
8427 M: Jouni Malinen <j@w1.fi>
8428 L: linux-wireless@vger.kernel.org
8430 W: http://w1.fi/hostap-driver.html
8431 F: drivers/net/wireless/intersil/hostap/
8433 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8434 L: platform-driver-x86@vger.kernel.org
8436 F: drivers/platform/x86/tc1100-wmi.c
8438 HPET: High Precision Event Timers driver
8439 M: Clemens Ladisch <clemens@ladisch.de>
8441 F: Documentation/timers/hpet.rst
8442 F: drivers/char/hpet.c
8443 F: include/linux/hpet.h
8444 F: include/uapi/linux/hpet.h
8448 F: arch/x86/include/asm/hpet.h
8449 F: arch/x86/kernel/hpet.c
8452 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8454 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8458 M: Sebastian Reichel <sre@kernel.org>
8460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8461 F: Documentation/ABI/testing/sysfs-bus-hsi
8462 F: Documentation/driver-api/hsi.rst
8464 F: include/linux/hsi/
8465 F: include/uapi/linux/hsi/
8468 L: linux-usb@vger.kernel.org
8470 F: drivers/net/usb/hso.c
8472 HSR NETWORK PROTOCOL
8473 L: netdev@vger.kernel.org
8477 HT16K33 LED CONTROLLER DRIVER
8478 M: Robin van der Gracht <robin@protonic.nl>
8480 F: Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8481 F: drivers/auxdisplay/ht16k33.c
8483 HTCPEN TOUCHSCREEN DRIVER
8484 M: Pau Oliva Fora <pof@eslack.org>
8485 L: linux-input@vger.kernel.org
8487 F: drivers/input/touchscreen/htcpen.c
8489 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8490 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8491 L: linux-iio@vger.kernel.org
8493 W: http://www.st.com/
8494 F: Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8495 F: drivers/iio/humidity/hts221*
8497 HUAWEI ETHERNET DRIVER
8498 M: Bin Luo <luobin9@huawei.com>
8499 L: netdev@vger.kernel.org
8501 F: Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8502 F: drivers/net/ethernet/huawei/hinic/
8505 M: Mike Kravetz <mike.kravetz@oracle.com>
8506 L: linux-mm@kvack.org
8508 F: Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8509 F: Documentation/admin-guide/mm/hugetlbpage.rst
8510 F: Documentation/vm/hugetlbfs_reserv.rst
8512 F: include/linux/hugetlb.h
8516 M: Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8517 L: linux-media@vger.kernel.org
8519 W: https://linuxtv.org
8520 T: git git://linuxtv.org/media_tree.git
8521 F: drivers/media/platform/sti/hva
8523 HWPOISON MEMORY FAILURE HANDLING
8524 M: Naoya Horiguchi <naoya.horiguchi@nec.com>
8525 L: linux-mm@kvack.org
8527 F: mm/hwpoison-inject.c
8528 F: mm/memory-failure.c
8530 HYCON HY46XX TOUCHSCREEN SUPPORT
8531 M: Giulio Benetti <giulio.benetti@benettiengineering.com>
8532 L: linux-input@vger.kernel.org
8534 F: Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8535 F: drivers/input/touchscreen/hycon-hy46xx.c
8537 HYGON PROCESSOR SUPPORT
8538 M: Pu Wen <puwen@hygon.cn>
8539 L: linux-kernel@vger.kernel.org
8541 F: arch/x86/kernel/cpu/hygon.c
8543 HYNIX HI556 SENSOR DRIVER
8544 M: Shawn Tu <shawnx.tu@intel.com>
8545 L: linux-media@vger.kernel.org
8547 T: git git://linuxtv.org/media_tree.git
8548 F: drivers/media/i2c/hi556.c
8550 Hyper-V/Azure CORE AND DRIVERS
8551 M: "K. Y. Srinivasan" <kys@microsoft.com>
8552 M: Haiyang Zhang <haiyangz@microsoft.com>
8553 M: Stephen Hemminger <sthemmin@microsoft.com>
8554 M: Wei Liu <wei.liu@kernel.org>
8555 M: Dexuan Cui <decui@microsoft.com>
8556 L: linux-hyperv@vger.kernel.org
8558 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8559 F: Documentation/ABI/stable/sysfs-bus-vmbus
8560 F: Documentation/ABI/testing/debugfs-hyperv
8561 F: Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8563 F: arch/x86/include/asm/hyperv-tlfs.h
8564 F: arch/x86/include/asm/mshyperv.h
8565 F: arch/x86/include/asm/trace/hyperv.h
8566 F: arch/x86/kernel/cpu/mshyperv.c
8567 F: drivers/clocksource/hyperv_timer.c
8568 F: drivers/hid/hid-hyperv.c
8570 F: drivers/input/serio/hyperv-keyboard.c
8571 F: drivers/iommu/hyperv-iommu.c
8572 F: drivers/net/ethernet/microsoft/
8573 F: drivers/net/hyperv/
8574 F: drivers/pci/controller/pci-hyperv-intf.c
8575 F: drivers/pci/controller/pci-hyperv.c
8576 F: drivers/scsi/storvsc_drv.c
8577 F: drivers/uio/uio_hv_generic.c
8578 F: drivers/video/fbdev/hyperv_fb.c
8579 F: include/asm-generic/hyperv-tlfs.h
8580 F: include/asm-generic/mshyperv.h
8581 F: include/clocksource/hyperv_timer.h
8582 F: include/linux/hyperv.h
8583 F: include/uapi/linux/hyperv.h
8584 F: net/vmw_vsock/hyperv_transport.c
8588 M: Vignesh Raghavendra <vigneshr@ti.com>
8589 L: linux-mtd@lists.infradead.org
8591 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8592 C: irc://irc.oftc.net/mtd
8593 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8594 F: Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8595 F: Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8596 F: drivers/mtd/hyperbus/
8597 F: include/linux/mtd/hyperbus.h
8599 HYPERVISOR VIRTUAL CONSOLE DRIVER
8600 L: linuxppc-dev@lists.ozlabs.org
8605 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8606 L: linux-i2c@vger.kernel.org
8607 L: linux-acpi@vger.kernel.org
8609 F: drivers/i2c/i2c-core-acpi.c
8611 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8612 M: Ajay Gupta <ajayg@nvidia.com>
8613 L: linux-i2c@vger.kernel.org
8615 F: Documentation/i2c/busses/i2c-nvidia-gpu.rst
8616 F: drivers/i2c/busses/i2c-nvidia-gpu.c
8619 M: Peter Rosin <peda@axentia.se>
8620 L: linux-i2c@vger.kernel.org
8622 F: Documentation/devicetree/bindings/i2c/i2c-arb*
8623 F: Documentation/devicetree/bindings/i2c/i2c-gate*
8624 F: Documentation/devicetree/bindings/i2c/i2c-mux*
8625 F: Documentation/i2c/i2c-topology.rst
8626 F: Documentation/i2c/muxes/
8627 F: drivers/i2c/i2c-mux.c
8628 F: drivers/i2c/muxes/
8629 F: include/linux/i2c-mux.h
8631 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8632 M: Gregory CLEMENT <gregory.clement@bootlin.com>
8633 L: linux-i2c@vger.kernel.org
8635 F: Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8636 F: drivers/i2c/busses/i2c-mv64xxx.c
8638 I2C OVER PARALLEL PORT
8639 M: Jean Delvare <jdelvare@suse.com>
8640 L: linux-i2c@vger.kernel.org
8642 F: Documentation/i2c/busses/i2c-parport.rst
8643 F: drivers/i2c/busses/i2c-parport.c
8646 M: Wolfram Sang <wsa@kernel.org>
8647 L: linux-i2c@vger.kernel.org
8649 W: https://i2c.wiki.kernel.org/
8650 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8651 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8652 F: Documentation/devicetree/bindings/i2c/i2c.txt
8653 F: Documentation/i2c/
8655 F: include/linux/i2c-dev.h
8656 F: include/linux/i2c-smbus.h
8657 F: include/linux/i2c.h
8658 F: include/uapi/linux/i2c-*.h
8659 F: include/uapi/linux/i2c.h
8661 I2C SUBSYSTEM HOST DRIVERS
8662 L: linux-i2c@vger.kernel.org
8664 W: https://i2c.wiki.kernel.org/
8665 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8666 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8667 F: Documentation/devicetree/bindings/i2c/
8668 F: drivers/i2c/algos/
8669 F: drivers/i2c/busses/
8672 M: Jean Delvare <jdelvare@suse.com>
8673 L: linux-i2c@vger.kernel.org
8675 F: Documentation/i2c/busses/i2c-taos-evm.rst
8676 F: drivers/i2c/busses/i2c-taos-evm.c
8679 M: Till Harbaum <till@harbaum.org>
8680 L: linux-i2c@vger.kernel.org
8682 W: http://www.harbaum.org/till/i2c_tiny_usb
8683 F: drivers/i2c/busses/i2c-tiny-usb.c
8685 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8686 M: Jean Delvare <jdelvare@suse.com>
8687 L: linux-i2c@vger.kernel.org
8689 F: Documentation/i2c/busses/i2c-ali1535.rst
8690 F: Documentation/i2c/busses/i2c-ali1563.rst
8691 F: Documentation/i2c/busses/i2c-ali15x3.rst
8692 F: Documentation/i2c/busses/i2c-amd756.rst
8693 F: Documentation/i2c/busses/i2c-amd8111.rst
8694 F: Documentation/i2c/busses/i2c-i801.rst
8695 F: Documentation/i2c/busses/i2c-nforce2.rst
8696 F: Documentation/i2c/busses/i2c-piix4.rst
8697 F: Documentation/i2c/busses/i2c-sis5595.rst
8698 F: Documentation/i2c/busses/i2c-sis630.rst
8699 F: Documentation/i2c/busses/i2c-sis96x.rst
8700 F: Documentation/i2c/busses/i2c-via.rst
8701 F: Documentation/i2c/busses/i2c-viapro.rst
8702 F: drivers/i2c/busses/i2c-ali1535.c
8703 F: drivers/i2c/busses/i2c-ali1563.c
8704 F: drivers/i2c/busses/i2c-ali15x3.c
8705 F: drivers/i2c/busses/i2c-amd756-s4882.c
8706 F: drivers/i2c/busses/i2c-amd756.c
8707 F: drivers/i2c/busses/i2c-amd8111.c
8708 F: drivers/i2c/busses/i2c-i801.c
8709 F: drivers/i2c/busses/i2c-isch.c
8710 F: drivers/i2c/busses/i2c-nforce2-s4985.c
8711 F: drivers/i2c/busses/i2c-nforce2.c
8712 F: drivers/i2c/busses/i2c-piix4.c
8713 F: drivers/i2c/busses/i2c-sis5595.c
8714 F: drivers/i2c/busses/i2c-sis630.c
8715 F: drivers/i2c/busses/i2c-sis96x.c
8716 F: drivers/i2c/busses/i2c-via.c
8717 F: drivers/i2c/busses/i2c-viapro.c
8719 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8720 M: Hans de Goede <hdegoede@redhat.com>
8721 L: linux-i2c@vger.kernel.org
8723 F: drivers/i2c/busses/i2c-cht-wc.c
8725 I2C/SMBUS ISMT DRIVER
8726 M: Seth Heasley <seth.heasley@intel.com>
8727 M: Neil Horman <nhorman@tuxdriver.com>
8728 L: linux-i2c@vger.kernel.org
8729 F: Documentation/i2c/busses/i2c-ismt.rst
8730 F: drivers/i2c/busses/i2c-ismt.c
8732 I2C/SMBUS STUB DRIVER
8733 M: Jean Delvare <jdelvare@suse.com>
8734 L: linux-i2c@vger.kernel.org
8736 F: drivers/i2c/i2c-stub.c
8738 I3C DRIVER FOR CADENCE I3C MASTER IP
8739 M: Przemysław Gaj <pgaj@cadence.com>
8741 F: Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8742 F: drivers/i3c/master/i3c-master-cdns.c
8744 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8745 M: Vitor Soares <vitor.soares@synopsys.com>
8747 F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8748 F: drivers/i3c/master/dw*
8751 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
8752 L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
8754 C: irc://chat.freenode.net/linux-i3c
8755 T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8756 F: Documentation/ABI/testing/sysfs-bus-i3c
8757 F: Documentation/devicetree/bindings/i3c/
8758 F: Documentation/driver-api/i3c
8760 F: include/linux/i3c/
8762 IA64 (Itanium) PLATFORM
8763 L: linux-ia64@vger.kernel.org
8765 F: Documentation/ia64/
8768 IBM Power 842 compression accelerator
8769 M: Haren Myneni <haren@us.ibm.com>
8772 F: drivers/crypto/nx/Kconfig
8773 F: drivers/crypto/nx/Makefile
8774 F: drivers/crypto/nx/nx-842*
8775 F: include/linux/sw842.h
8778 IBM Power in-Nest Crypto Acceleration
8779 M: Breno Leitão <leitao@debian.org>
8780 M: Nayna Jain <nayna@linux.ibm.com>
8781 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8782 L: linux-crypto@vger.kernel.org
8784 F: drivers/crypto/nx/Kconfig
8785 F: drivers/crypto/nx/Makefile
8786 F: drivers/crypto/nx/nx-aes*
8787 F: drivers/crypto/nx/nx-sha*
8788 F: drivers/crypto/nx/nx.*
8789 F: drivers/crypto/nx/nx_csbcpb.h
8790 F: drivers/crypto/nx/nx_debugfs.c
8792 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8793 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8794 L: linux-pci@vger.kernel.org
8795 L: linuxppc-dev@lists.ozlabs.org
8797 F: drivers/pci/hotplug/rpadlpar*
8799 IBM Power Linux RAID adapter
8800 M: Brian King <brking@us.ibm.com>
8802 F: drivers/scsi/ipr.*
8804 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8805 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8806 L: linux-pci@vger.kernel.org
8807 L: linuxppc-dev@lists.ozlabs.org
8809 F: drivers/pci/hotplug/rpaphp*
8811 IBM Power SRIOV Virtual NIC Device Driver
8812 M: Dany Madden <drt@linux.ibm.com>
8813 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8814 R: Thomas Falcon <tlfalcon@linux.ibm.com>
8815 L: netdev@vger.kernel.org
8817 F: drivers/net/ethernet/ibm/ibmvnic.*
8819 IBM Power Virtual Accelerator Switchboard
8820 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8821 L: linuxppc-dev@lists.ozlabs.org
8823 F: arch/powerpc/include/asm/vas.h
8824 F: arch/powerpc/platforms/powernv/copy-paste.h
8825 F: arch/powerpc/platforms/powernv/vas*
8827 IBM Power Virtual Ethernet Device Driver
8828 M: Cristobal Forno <cforno12@linux.ibm.com>
8829 L: netdev@vger.kernel.org
8831 F: drivers/net/ethernet/ibm/ibmveth.*
8833 IBM Power Virtual FC Device Drivers
8834 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8835 L: linux-scsi@vger.kernel.org
8837 F: drivers/scsi/ibmvscsi/ibmvfc*
8839 IBM Power Virtual Management Channel Driver
8840 M: Brad Warrum <bwarrum@linux.ibm.com>
8841 M: Ritu Agarwal <rituagar@linux.ibm.com>
8843 F: drivers/misc/ibmvmc.*
8845 IBM Power Virtual SCSI Device Drivers
8846 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8847 L: linux-scsi@vger.kernel.org
8849 F: drivers/scsi/ibmvscsi/ibmvscsi*
8850 F: include/scsi/viosrp.h
8852 IBM Power Virtual SCSI Device Target Driver
8853 M: Michael Cyr <mikecyr@linux.ibm.com>
8854 L: linux-scsi@vger.kernel.org
8855 L: target-devel@vger.kernel.org
8857 F: drivers/scsi/ibmvscsi_tgt/
8859 IBM Power VMX Cryptographic instructions
8860 M: Breno Leitão <leitao@debian.org>
8861 M: Nayna Jain <nayna@linux.ibm.com>
8862 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8863 L: linux-crypto@vger.kernel.org
8865 F: drivers/crypto/vmx/Kconfig
8866 F: drivers/crypto/vmx/Makefile
8867 F: drivers/crypto/vmx/aes*
8868 F: drivers/crypto/vmx/ghash*
8869 F: drivers/crypto/vmx/ppc-xlate.pl
8870 F: drivers/crypto/vmx/vmx.c
8872 IBM ServeRAID RAID DRIVER
8874 F: drivers/scsi/ips.*
8876 ICH LPC AND GPIO DRIVER
8877 M: Peter Tyser <ptyser@xes-inc.com>
8879 F: drivers/gpio/gpio-ich.c
8880 F: drivers/mfd/lpc_ich.c
8883 M: Max Staudt <max@enpas.org>
8884 L: linux-i2c@vger.kernel.org
8886 F: drivers/i2c/busses/i2c-icy.c
8888 IDEAPAD LAPTOP EXTRAS DRIVER
8889 M: Ike Panhc <ike.pan@canonical.com>
8890 L: platform-driver-x86@vger.kernel.org
8892 W: http://launchpad.net/ideapad-laptop
8893 F: drivers/platform/x86/ideapad-laptop.c
8895 IDEAPAD LAPTOP SLIDEBAR DRIVER
8896 M: Andrey Moiseev <o2g.org.ru@gmail.com>
8897 L: linux-input@vger.kernel.org
8899 W: https://github.com/o2genum/ideapad-slidebar
8900 F: drivers/input/misc/ideapad_slidebar.c
8902 IDT VersaClock 5 CLOCK DRIVER
8903 M: Luca Ceresoli <luca@lucaceresoli.net>
8905 F: Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8906 F: drivers/clk/clk-versaclock5.c
8908 IEEE 802.15.4 SUBSYSTEM
8909 M: Alexander Aring <alex.aring@gmail.com>
8910 M: Stefan Schmidt <stefan@datenfreihafen.org>
8911 L: linux-wpan@vger.kernel.org
8913 W: https://linux-wpan.org/
8914 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8915 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8916 F: Documentation/networking/ieee802154.rst
8917 F: drivers/net/ieee802154/
8918 F: include/linux/ieee802154.h
8919 F: include/linux/nl802154.h
8920 F: include/net/af_ieee802154.h
8921 F: include/net/cfg802154.h
8922 F: include/net/ieee802154_netdev.h
8923 F: include/net/mac802154.h
8924 F: include/net/nl802154.h
8929 M: Yotam Gigi <yotam.gi@gmail.com>
8930 M: Jamal Hadi Salim <jhs@mojatatu.com>
8931 F: include/net/ife.h
8932 F: include/uapi/linux/ife.h
8935 IGORPLUG-USB IR RECEIVER
8936 M: Sean Young <sean@mess.org>
8937 L: linux-media@vger.kernel.org
8939 F: drivers/media/rc/igorplugusb.c
8941 IGUANAWORKS USB IR TRANSCEIVER
8942 M: Sean Young <sean@mess.org>
8943 L: linux-media@vger.kernel.org
8945 F: drivers/media/rc/iguanair.c
8947 IIO DIGITAL POTENTIOMETER DAC
8948 M: Peter Rosin <peda@axentia.se>
8949 L: linux-iio@vger.kernel.org
8951 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8952 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
8953 F: drivers/iio/dac/dpot-dac.c
8955 IIO ENVELOPE DETECTOR
8956 M: Peter Rosin <peda@axentia.se>
8957 L: linux-iio@vger.kernel.org
8959 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8960 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
8961 F: drivers/iio/adc/envelope-detector.c
8964 M: Peter Rosin <peda@axentia.se>
8965 L: linux-iio@vger.kernel.org
8967 F: Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
8968 F: drivers/iio/multiplexer/iio-mux.c
8970 IIO SCMI BASED DRIVER
8971 M: Jyoti Bhayana <jbhayana@google.com>
8972 L: linux-iio@vger.kernel.org
8974 F: drivers/iio/common/scmi_sensors/scmi_iio.c
8976 IIO SUBSYSTEM AND DRIVERS
8977 M: Jonathan Cameron <jic23@kernel.org>
8978 R: Lars-Peter Clausen <lars@metafoo.de>
8979 L: linux-iio@vger.kernel.org
8981 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8982 F: Documentation/ABI/testing/configfs-iio*
8983 F: Documentation/ABI/testing/sysfs-bus-iio*
8984 F: Documentation/devicetree/bindings/iio/
8986 F: drivers/staging/iio/
8987 F: include/linux/iio/
8991 M: Peter Rosin <peda@axentia.se>
8992 L: linux-iio@vger.kernel.org
8994 F: Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
8995 F: Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
8996 F: Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
8997 F: drivers/iio/afe/iio-rescale.c
8999 IKANOS/ADI EAGLE ADSL USB DRIVER
9000 M: Matthieu Castet <castet.matthieu@free.fr>
9001 M: Stanislaw Gruszka <stf_xl@wp.pl>
9003 F: drivers/usb/atm/ueagle-atm.c
9005 IMGTEC ASCII LCD DRIVER
9006 M: Paul Burton <paulburton@kernel.org>
9008 F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
9009 F: drivers/auxdisplay/img-ascii-lcd.c
9011 IMGTEC IR DECODER DRIVER
9013 F: drivers/media/rc/img-ir/
9015 IMON SOUNDGRAPH USB IR RECEIVER
9016 M: Sean Young <sean@mess.org>
9017 L: linux-media@vger.kernel.org
9019 F: drivers/media/rc/imon.c
9020 F: drivers/media/rc/imon_raw.c
9022 IMS TWINTURBO FRAMEBUFFER DRIVER
9023 L: linux-fbdev@vger.kernel.org
9025 F: drivers/video/fbdev/imsttfb.c
9027 INA209 HARDWARE MONITOR DRIVER
9028 M: Guenter Roeck <linux@roeck-us.net>
9029 L: linux-hwmon@vger.kernel.org
9031 F: Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9032 F: Documentation/hwmon/ina209.rst
9033 F: drivers/hwmon/ina209.c
9035 INA2XX HARDWARE MONITOR DRIVER
9036 M: Guenter Roeck <linux@roeck-us.net>
9037 L: linux-hwmon@vger.kernel.org
9039 F: Documentation/hwmon/ina2xx.rst
9040 F: drivers/hwmon/ina2xx.c
9041 F: include/linux/platform_data/ina2xx.h
9043 INDUSTRY PACK SUBSYSTEM (IPACK)
9044 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9045 M: Jens Taprogge <jens.taprogge@taprogge.org>
9046 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9047 L: industrypack-devel@lists.sourceforge.net
9049 W: http://industrypack.sourceforge.net
9052 INFINEON DPS310 Driver
9053 M: Eddie James <eajames@linux.ibm.com>
9054 L: linux-iio@vger.kernel.org
9056 F: drivers/iio/pressure/dps310.c
9058 INFINIBAND SUBSYSTEM
9059 M: Doug Ledford <dledford@redhat.com>
9060 M: Jason Gunthorpe <jgg@nvidia.com>
9061 L: linux-rdma@vger.kernel.org
9063 W: https://github.com/linux-rdma/rdma-core
9064 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9065 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9066 F: Documentation/devicetree/bindings/infiniband/
9067 F: Documentation/infiniband/
9068 F: drivers/infiniband/
9070 F: include/trace/events/ib_mad.h
9071 F: include/trace/events/ib_umad.h
9072 F: include/uapi/linux/if_infiniband.h
9073 F: include/uapi/rdma/
9074 F: samples/bpf/ibumad_kern.c
9075 F: samples/bpf/ibumad_user.c
9077 INGENIC JZ4780 NAND DRIVER
9078 M: Harvey Hunt <harveyhuntnexus@gmail.com>
9079 L: linux-mtd@lists.infradead.org
9080 L: linux-mips@vger.kernel.org
9082 F: drivers/mtd/nand/raw/ingenic/
9085 M: Paul Cercueil <paul@crapouillou.net>
9086 L: linux-mips@vger.kernel.org
9088 F: arch/mips/boot/dts/ingenic/
9089 F: arch/mips/generic/board-ingenic.c
9090 F: arch/mips/include/asm/mach-ingenic/
9091 F: arch/mips/ingenic/Kconfig
9092 F: drivers/clk/ingenic/
9093 F: drivers/dma/dma-jz4780.c
9094 F: drivers/gpu/drm/ingenic/
9095 F: drivers/i2c/busses/i2c-jz4780.c
9096 F: drivers/iio/adc/ingenic-adc.c
9097 F: drivers/irqchip/irq-ingenic.c
9098 F: drivers/memory/jz4780-nemc.c
9099 F: drivers/mmc/host/jz4740_mmc.c
9100 F: drivers/mtd/nand/raw/ingenic/
9101 F: drivers/pinctrl/pinctrl-ingenic.c
9102 F: drivers/power/supply/ingenic-battery.c
9103 F: drivers/pwm/pwm-jz4740.c
9104 F: drivers/remoteproc/ingenic_rproc.c
9105 F: drivers/rtc/rtc-jz4740.c
9106 F: drivers/tty/serial/8250/8250_ingenic.c
9107 F: drivers/usb/musb/jz4740.c
9108 F: drivers/watchdog/jz4740_wdt.c
9109 F: include/dt-bindings/iio/adc/ingenic,adc.h
9110 F: include/linux/mfd/ingenic-tcu.h
9111 F: sound/soc/codecs/jz47*
9112 F: sound/soc/jz4740/
9115 M: Jan Kara <jack@suse.cz>
9116 R: Amir Goldstein <amir73il@gmail.com>
9117 L: linux-fsdevel@vger.kernel.org
9119 F: Documentation/filesystems/inotify.rst
9120 F: fs/notify/inotify/
9121 F: include/linux/inotify.h
9122 F: include/uapi/linux/inotify.h
9124 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9125 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
9126 L: linux-input@vger.kernel.org
9128 Q: http://patchwork.kernel.org/project/linux-input/list/
9129 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9130 F: Documentation/devicetree/bindings/input/
9131 F: Documentation/devicetree/bindings/serio/
9132 F: Documentation/input/
9134 F: include/linux/input.h
9135 F: include/linux/input/
9136 F: include/uapi/linux/input-event-codes.h
9137 F: include/uapi/linux/input.h
9139 INPUT MULTITOUCH (MT) PROTOCOL
9140 M: Henrik Rydberg <rydberg@bitmath.org>
9141 L: linux-input@vger.kernel.org
9143 F: Documentation/input/multi-touch-protocol.rst
9144 F: drivers/input/input-mt.c
9147 INSIDE SECURE CRYPTO DRIVER
9148 M: Antoine Tenart <atenart@kernel.org>
9149 L: linux-crypto@vger.kernel.org
9151 F: drivers/crypto/inside-secure/
9153 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9154 M: Mimi Zohar <zohar@linux.ibm.com>
9155 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9156 L: linux-integrity@vger.kernel.org
9158 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9159 F: security/integrity/ima/
9161 INTEL 810/815 FRAMEBUFFER DRIVER
9162 M: Antonino Daplas <adaplas@gmail.com>
9163 L: linux-fbdev@vger.kernel.org
9165 F: drivers/video/fbdev/i810/
9168 M: Cezary Rojewski <cezary.rojewski@intel.com>
9169 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9170 M: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9171 M: Jie Yang <yang.jie@linux.intel.com>
9172 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9176 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9177 M: Hans de Goede <hdegoede@redhat.com>
9178 L: platform-driver-x86@vger.kernel.org
9180 F: drivers/platform/x86/intel_atomisp2_pm.c
9182 INTEL ATOMISP2 LED DRIVER
9183 M: Hans de Goede <hdegoede@redhat.com>
9184 L: platform-driver-x86@vger.kernel.org
9186 F: drivers/platform/x86/intel_atomisp2_led.c
9188 INTEL BROXTON PMC DRIVER
9189 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9190 M: Zha Qipeng <qipeng.zha@intel.com>
9192 F: drivers/mfd/intel_pmc_bxt.c
9193 F: include/linux/mfd/intel_pmc_bxt.h
9195 INTEL C600 SERIES SAS CONTROLLER DRIVER
9196 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9197 L: linux-scsi@vger.kernel.org
9199 T: git git://git.code.sf.net/p/intel-sas/isci
9200 F: drivers/scsi/isci/
9202 INTEL CPU family model numbers
9203 M: Tony Luck <tony.luck@intel.com>
9205 L: linux-kernel@vger.kernel.org
9207 F: arch/x86/include/asm/intel-family.h
9209 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9210 M: Jani Nikula <jani.nikula@linux.intel.com>
9211 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9212 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
9213 L: intel-gfx@lists.freedesktop.org
9215 W: https://01.org/linuxgraphics/
9216 Q: http://patchwork.freedesktop.org/project/intel-gfx/
9217 B: https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9218 C: irc://chat.freenode.net/intel-gfx
9219 T: git git://anongit.freedesktop.org/drm-intel
9220 F: Documentation/gpu/i915.rst
9221 F: drivers/gpu/drm/i915/
9222 F: include/drm/i915*
9223 F: include/uapi/drm/i915_drm.h
9225 INTEL ETHERNET DRIVERS
9226 M: Jesse Brandeburg <jesse.brandeburg@intel.com>
9227 M: Tony Nguyen <anthony.l.nguyen@intel.com>
9228 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9230 W: http://www.intel.com/support/feedback.htm
9231 W: http://e1000.sourceforge.net/
9232 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9234 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9235 F: Documentation/networking/device_drivers/ethernet/intel/
9236 F: drivers/net/ethernet/intel/
9237 F: drivers/net/ethernet/intel/*/
9238 F: include/linux/avf/virtchnl.h
9239 F: include/linux/net/intel/iidc.h
9241 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9242 M: Mustafa Ismail <mustafa.ismail@intel.com>
9243 M: Shiraz Saleem <shiraz.saleem@intel.com>
9244 L: linux-rdma@vger.kernel.org
9246 F: drivers/infiniband/hw/irdma/
9247 F: include/uapi/rdma/irdma-abi.h
9249 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9250 M: Maik Broemme <mbroemme@libmpq.org>
9251 L: linux-fbdev@vger.kernel.org
9253 F: Documentation/fb/intelfb.rst
9254 F: drivers/video/fbdev/intelfb/
9257 M: Andy Shevchenko <andy@kernel.org>
9258 L: linux-gpio@vger.kernel.org
9260 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9261 F: drivers/gpio/gpio-ich.c
9262 F: drivers/gpio/gpio-merrifield.c
9263 F: drivers/gpio/gpio-ml-ioh.c
9264 F: drivers/gpio/gpio-pch.c
9265 F: drivers/gpio/gpio-sch.c
9266 F: drivers/gpio/gpio-sodaville.c
9268 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9269 M: Zhenyu Wang <zhenyuw@linux.intel.com>
9270 M: Zhi Wang <zhi.a.wang@intel.com>
9271 L: intel-gvt-dev@lists.freedesktop.org
9272 L: intel-gfx@lists.freedesktop.org
9274 W: https://01.org/igvt-g
9275 T: git https://github.com/intel/gvt-linux.git
9276 F: drivers/gpu/drm/i915/gvt/
9278 INTEL HID EVENT DRIVER
9279 M: Alex Hung <alex.hung@canonical.com>
9280 L: platform-driver-x86@vger.kernel.org
9282 F: drivers/platform/x86/intel-hid.c
9284 INTEL I/OAT DMA DRIVER
9285 M: Dave Jiang <dave.jiang@intel.com>
9286 R: Dan Williams <dan.j.williams@intel.com>
9287 L: dmaengine@vger.kernel.org
9289 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
9290 F: drivers/dma/ioat*
9293 M: Dave Jiang <dave.jiang@intel.com>
9294 L: dmaengine@vger.kernel.org
9296 F: drivers/dma/idxd/*
9297 F: include/uapi/linux/idxd.h
9300 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
9301 M: Len Brown <lenb@kernel.org>
9302 L: linux-pm@vger.kernel.org
9304 B: https://bugzilla.kernel.org
9305 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9306 F: drivers/idle/intel_idle.c
9308 INTEL INTEGRATED SENSOR HUB DRIVER
9309 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9310 M: Jiri Kosina <jikos@kernel.org>
9311 L: linux-input@vger.kernel.org
9313 F: drivers/hid/intel-ish-hid/
9316 M: David Woodhouse <dwmw2@infradead.org>
9317 M: Lu Baolu <baolu.lu@linux.intel.com>
9318 L: iommu@lists.linux-foundation.org
9320 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9321 F: drivers/iommu/intel/
9322 F: include/linux/intel-iommu.h
9323 F: include/linux/intel-svm.h
9325 INTEL IOP-ADMA DMA DRIVER
9326 R: Dan Williams <dan.j.williams@intel.com>
9328 F: drivers/dma/iop-adma.c
9330 INTEL IPU3 CSI-2 CIO2 DRIVER
9331 M: Yong Zhi <yong.zhi@intel.com>
9332 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9333 M: Bingbu Cao <bingbu.cao@intel.com>
9334 M: Dan Scally <djrscally@gmail.com>
9335 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9336 L: linux-media@vger.kernel.org
9338 T: git git://linuxtv.org/media_tree.git
9339 F: Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9340 F: drivers/media/pci/intel/ipu3/
9342 INTEL IPU3 CSI-2 IMGU DRIVER
9343 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9344 R: Bingbu Cao <bingbu.cao@intel.com>
9345 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9346 L: linux-media@vger.kernel.org
9348 F: Documentation/admin-guide/media/ipu3.rst
9349 F: Documentation/admin-guide/media/ipu3_rcb.svg
9350 F: Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9351 F: drivers/staging/media/ipu3/
9353 INTEL IXP4XX CRYPTO SUPPORT
9354 M: Corentin Labbe <clabbe@baylibre.com>
9355 L: linux-crypto@vger.kernel.org
9357 F: drivers/crypto/ixp4xx_crypto.c
9359 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9360 M: Krzysztof Halasa <khalasa@piap.pl>
9362 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
9363 F: drivers/net/wan/ixp4xx_hss.c
9364 F: drivers/soc/ixp4xx/ixp4xx-npe.c
9365 F: drivers/soc/ixp4xx/ixp4xx-qmgr.c
9366 F: include/linux/soc/ixp4xx/npe.h
9367 F: include/linux/soc/ixp4xx/qmgr.h
9369 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9370 M: Deepak Saxena <dsaxena@plexity.net>
9372 F: drivers/char/hw_random/ixp4xx-rng.c
9374 INTEL KEEM BAY DRM DRIVER
9375 M: Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9376 M: Edmund Dea <edmund.j.dea@intel.com>
9378 F: Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9379 F: drivers/gpu/drm/kmb/
9381 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9382 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9384 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9385 F: drivers/crypto/keembay/Kconfig
9386 F: drivers/crypto/keembay/Makefile
9387 F: drivers/crypto/keembay/keembay-ocs-aes-core.c
9388 F: drivers/crypto/keembay/ocs-aes.c
9389 F: drivers/crypto/keembay/ocs-aes.h
9391 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9392 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9393 M: Declan Murphy <declan.murphy@intel.com>
9395 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9396 F: drivers/crypto/keembay/Kconfig
9397 F: drivers/crypto/keembay/Makefile
9398 F: drivers/crypto/keembay/keembay-ocs-hcu-core.c
9399 F: drivers/crypto/keembay/ocs-hcu.c
9400 F: drivers/crypto/keembay/ocs-hcu.h
9402 INTEL MANAGEMENT ENGINE (mei)
9403 M: Tomas Winkler <tomas.winkler@intel.com>
9404 L: linux-kernel@vger.kernel.org
9406 F: Documentation/driver-api/mei/*
9407 F: drivers/misc/mei/
9408 F: drivers/watchdog/mei_wdt.c
9409 F: include/linux/mei_cl_bus.h
9410 F: include/uapi/linux/mei.h
9413 INTEL MAX 10 BMC MFD DRIVER
9414 M: Xu Yilun <yilun.xu@intel.com>
9415 R: Tom Rix <trix@redhat.com>
9417 F: Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9418 F: Documentation/hwmon/intel-m10-bmc-hwmon.rst
9419 F: drivers/hwmon/intel-m10-bmc-hwmon.c
9420 F: drivers/mfd/intel-m10-bmc.c
9421 F: include/linux/mfd/intel-m10-bmc.h
9423 INTEL MENLOW THERMAL DRIVER
9424 M: Sujith Thomas <sujith.thomas@intel.com>
9425 L: platform-driver-x86@vger.kernel.org
9427 W: https://01.org/linux-acpi
9428 F: drivers/platform/x86/intel_menlow.c
9430 INTEL P-Unit IPC DRIVER
9431 M: Zha Qipeng <qipeng.zha@intel.com>
9432 L: platform-driver-x86@vger.kernel.org
9434 F: arch/x86/include/asm/intel_punit_ipc.h
9435 F: drivers/platform/x86/intel_punit_ipc.c
9437 INTEL PMC CORE DRIVER
9438 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9439 M: David E Box <david.e.box@intel.com>
9440 L: platform-driver-x86@vger.kernel.org
9442 F: Documentation/ABI/testing/sysfs-platform-intel-pmc
9443 F: drivers/platform/x86/intel_pmc_core*
9445 INTEL PMIC GPIO DRIVERS
9446 M: Andy Shevchenko <andy@kernel.org>
9448 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9449 F: drivers/gpio/gpio-*cove.c
9451 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9452 M: Andy Shevchenko <andy@kernel.org>
9454 F: drivers/mfd/intel_soc_pmic*
9455 F: include/linux/mfd/intel_soc_pmic*
9458 M: "David E. Box" <david.e.box@linux.intel.com>
9460 F: drivers/mfd/intel_pmt.c
9461 F: drivers/platform/x86/intel_pmt_*
9463 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9464 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
9465 L: linux-wireless@vger.kernel.org
9467 F: Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9468 F: Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9469 F: drivers/net/wireless/intel/ipw2x00/
9472 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9473 M: Len Brown <lenb@kernel.org>
9474 L: linux-pm@vger.kernel.org
9476 F: drivers/cpufreq/intel_pstate.c
9479 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9481 F: arch/x86/include/asm/intel_scu_ipc.h
9482 F: drivers/platform/x86/intel_scu_*
9484 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9485 M: Daniel Scally <djrscally@gmail.com>
9487 F: drivers/platform/x86/intel/int3472/
9489 INTEL SPEED SELECT TECHNOLOGY
9490 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9491 L: platform-driver-x86@vger.kernel.org
9493 F: drivers/platform/x86/intel_speed_select_if/
9494 F: include/uapi/linux/isst_if.h
9495 F: tools/power/x86/intel-speed-select/
9497 INTEL STRATIX10 FIRMWARE DRIVERS
9498 M: Richard Gong <richard.gong@linux.intel.com>
9499 L: linux-kernel@vger.kernel.org
9501 F: Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9502 F: Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9503 F: drivers/firmware/stratix10-rsu.c
9504 F: drivers/firmware/stratix10-svc.c
9505 F: include/linux/firmware/intel/stratix10-smc.h
9506 F: include/linux/firmware/intel/stratix10-svc-client.h
9508 INTEL TELEMETRY DRIVER
9509 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9510 M: "David E. Box" <david.e.box@linux.intel.com>
9511 L: platform-driver-x86@vger.kernel.org
9513 F: arch/x86/include/asm/intel_telemetry.h
9514 F: drivers/platform/x86/intel_telemetry*
9516 INTEL UNCORE FREQUENCY CONTROL
9517 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9518 L: platform-driver-x86@vger.kernel.org
9520 F: drivers/platform/x86/intel-uncore-frequency.c
9522 INTEL VIRTUAL BUTTON DRIVER
9523 M: AceLan Kao <acelan.kao@canonical.com>
9524 L: platform-driver-x86@vger.kernel.org
9526 F: drivers/platform/x86/intel-vbtn.c
9528 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9529 M: Stanislaw Gruszka <stf_xl@wp.pl>
9530 L: linux-wireless@vger.kernel.org
9532 F: drivers/net/wireless/intel/iwlegacy/
9534 INTEL WIRELESS WIFI LINK (iwlwifi)
9535 M: Luca Coelho <luciano.coelho@intel.com>
9536 L: linux-wireless@vger.kernel.org
9538 W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9539 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9540 F: drivers/net/wireless/intel/iwlwifi/
9542 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9543 M: Jithu Joseph <jithu.joseph@intel.com>
9544 R: Maurice Ma <maurice.ma@intel.com>
9546 W: https://slimbootloader.github.io/security/firmware-update.html
9547 F: drivers/platform/x86/intel-wmi-sbl-fw-update.c
9549 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9550 L: Dell.Client.Kernel@dell.com
9552 F: drivers/platform/x86/intel-wmi-thunderbolt.c
9554 INTEL WWAN IOSM DRIVER
9555 M: M Chetan Kumar <m.chetan.kumar@intel.com>
9556 M: Intel Corporation <linuxwwan@intel.com>
9557 L: netdev@vger.kernel.org
9559 F: drivers/net/wwan/iosm/
9562 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9564 F: Documentation/trace/intel_th.rst
9565 F: drivers/hwtracing/intel_th/
9566 F: include/linux/intel_th.h
9568 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9569 M: Ning Sun <ning.sun@intel.com>
9570 L: tboot-devel@lists.sourceforge.net
9572 W: http://tboot.sourceforge.net
9573 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9574 F: Documentation/x86/intel_txt.rst
9575 F: arch/x86/kernel/tboot.c
9576 F: include/linux/tboot.h
9579 M: Jarkko Sakkinen <jarkko@kernel.org>
9580 R: Dave Hansen <dave.hansen@linux.intel.com>
9581 L: linux-sgx@vger.kernel.org
9583 Q: https://patchwork.kernel.org/project/intel-sgx/list/
9584 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9585 F: Documentation/x86/sgx.rst
9586 F: arch/x86/entry/vdso/vsgx.S
9587 F: arch/x86/include/asm/sgx.h
9588 F: arch/x86/include/uapi/asm/sgx.h
9589 F: arch/x86/kernel/cpu/sgx/*
9590 F: tools/testing/selftests/sgx/*
9594 M: Georgi Djakov <djakov@kernel.org>
9595 L: linux-pm@vger.kernel.org
9597 T: git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9598 F: Documentation/devicetree/bindings/interconnect/
9599 F: Documentation/driver-api/interconnect.rst
9600 F: drivers/interconnect/
9601 F: include/dt-bindings/interconnect/
9602 F: include/linux/interconnect-provider.h
9603 F: include/linux/interconnect.h
9605 INTERRUPT COUNTER DRIVER
9606 M: Oleksij Rempel <o.rempel@pengutronix.de>
9607 R: Pengutronix Kernel Team <kernel@pengutronix.de>
9608 L: linux-iio@vger.kernel.org
9609 F: Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9610 F: drivers/counter/interrupt-cnt.c
9612 INVENSENSE ICM-426xx IMU DRIVER
9613 M: Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9614 L: linux-iio@vger.kernel.org
9616 W: https://invensense.tdk.com/
9617 F: Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9618 F: drivers/iio/imu/inv_icm42600/
9620 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9621 M: Linus Walleij <linus.walleij@linaro.org>
9622 L: linux-iio@vger.kernel.org
9624 F: Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9625 F: drivers/iio/gyro/mpu3050*
9627 IOC3 ETHERNET DRIVER
9628 M: Ralf Baechle <ralf@linux-mips.org>
9629 L: linux-mips@vger.kernel.org
9631 F: drivers/net/ethernet/sgi/ioc3-eth.c
9633 IOMAP FILESYSTEM LIBRARY
9634 M: Christoph Hellwig <hch@infradead.org>
9635 M: Darrick J. Wong <djwong@kernel.org>
9636 M: linux-xfs@vger.kernel.org
9637 M: linux-fsdevel@vger.kernel.org
9638 L: linux-xfs@vger.kernel.org
9639 L: linux-fsdevel@vger.kernel.org
9641 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9643 F: include/linux/iomap.h
9646 M: Joerg Roedel <joro@8bytes.org>
9647 M: Will Deacon <will@kernel.org>
9648 L: iommu@lists.linux-foundation.org
9650 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9651 F: Documentation/devicetree/bindings/iommu/
9652 F: Documentation/userspace-api/iommu.rst
9654 F: include/linux/iommu.h
9655 F: include/linux/iova.h
9656 F: include/linux/of_iommu.h
9657 F: include/uapi/linux/iommu.h
9660 M: Jens Axboe <axboe@kernel.dk>
9661 R: Pavel Begunkov <asml.silence@gmail.com>
9662 L: io-uring@vger.kernel.org
9664 T: git git://git.kernel.dk/linux-block
9665 T: git git://git.kernel.dk/liburing
9669 F: include/linux/io_uring.h
9670 F: include/uapi/linux/io_uring.h
9674 M: Corey Minyard <minyard@acm.org>
9675 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9677 W: http://openipmi.sourceforge.net/
9678 F: Documentation/driver-api/ipmi.rst
9679 F: Documentation/devicetree/bindings/ipmi/
9680 F: drivers/char/ipmi/
9681 F: include/linux/ipmi*
9682 F: include/uapi/linux/ipmi*
9684 IPS SCSI RAID DRIVER
9685 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9686 L: linux-scsi@vger.kernel.org
9688 W: http://www.adaptec.com/
9689 F: drivers/scsi/ips*
9692 M: Simon Horman <horms@verge.net.au>
9693 M: Julian Anastasov <ja@ssi.bg>
9694 L: netdev@vger.kernel.org
9695 L: lvs-devel@vger.kernel.org
9697 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9698 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9699 F: Documentation/networking/ipvs-sysctl.rst
9700 F: include/net/ip_vs.h
9701 F: include/uapi/linux/ip_vs.h
9702 F: net/netfilter/ipvs/
9705 M: Jiri Kosina <jikos@kernel.org>
9706 M: David Sterba <dsterba@suse.com>
9708 F: drivers/tty/ipwireless/
9711 L: netdev@vger.kernel.org
9713 F: include/uapi/linux/ipx.h
9715 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9716 M: Marc Zyngier <maz@kernel.org>
9718 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9719 F: Documentation/core-api/irq/irq-domain.rst
9720 F: include/linux/irqdomain.h
9721 F: kernel/irq/irqdomain.c
9725 M: Thomas Gleixner <tglx@linutronix.de>
9726 L: linux-kernel@vger.kernel.org
9728 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9732 M: Thomas Gleixner <tglx@linutronix.de>
9733 M: Marc Zyngier <maz@kernel.org>
9734 L: linux-kernel@vger.kernel.org
9736 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9737 F: Documentation/devicetree/bindings/interrupt-controller/
9741 M: William Breathitt Gray <vilhelm.gray@gmail.com>
9743 F: Documentation/driver-api/isa.rst
9744 F: drivers/base/isa.c
9745 F: include/linux/isa.h
9748 M: Hans Verkuil <hverkuil@xs4all.nl>
9749 L: linux-media@vger.kernel.org
9751 W: https://linuxtv.org
9752 T: git git://linuxtv.org/media_tree.git
9753 F: drivers/media/radio/radio-isa*
9756 M: Jaroslav Kysela <perex@perex.cz>
9758 F: Documentation/driver-api/isapnp.rst
9759 F: drivers/pnp/isapnp/
9760 F: include/linux/isapnp.h
9763 M: Lee Duncan <lduncan@suse.com>
9764 M: Chris Leech <cleech@redhat.com>
9765 L: open-iscsi@googlegroups.com
9766 L: linux-scsi@vger.kernel.org
9768 W: www.open-iscsi.com
9769 F: drivers/scsi/*iscsi*
9770 F: include/scsi/*iscsi*
9772 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9773 M: Peter Jones <pjones@redhat.com>
9774 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
9776 F: drivers/firmware/iscsi_ibft*
9778 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9779 M: Sagi Grimberg <sagi@grimberg.me>
9780 M: Max Gurtovoy <mgurtovoy@nvidia.com>
9781 L: linux-rdma@vger.kernel.org
9783 W: http://www.openfabrics.org
9784 W: www.open-iscsi.org
9785 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9786 F: drivers/infiniband/ulp/iser/
9788 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9789 M: Sagi Grimberg <sagi@grimberg.me>
9790 L: linux-rdma@vger.kernel.org
9791 L: target-devel@vger.kernel.org
9793 W: http://www.linux-iscsi.org
9794 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9795 F: drivers/infiniband/ulp/isert
9797 ISDN/CMTP OVER BLUETOOTH
9798 M: Karsten Keil <isdn@linux-pingi.de>
9799 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9800 L: netdev@vger.kernel.org
9802 W: http://www.isdn4linux.de
9803 F: Documentation/isdn/
9804 F: drivers/isdn/capi/
9805 F: include/linux/isdn/
9806 F: include/uapi/linux/isdn/
9807 F: net/bluetooth/cmtp/
9809 ISDN/mISDN SUBSYSTEM
9810 M: Karsten Keil <isdn@linux-pingi.de>
9811 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9812 L: netdev@vger.kernel.org
9814 W: http://www.isdn4linux.de
9815 F: drivers/isdn/Kconfig
9816 F: drivers/isdn/Makefile
9817 F: drivers/isdn/hardware/
9818 F: drivers/isdn/mISDN/
9820 IT87 HARDWARE MONITORING DRIVER
9821 M: Jean Delvare <jdelvare@suse.com>
9822 L: linux-hwmon@vger.kernel.org
9824 F: Documentation/hwmon/it87.rst
9825 F: drivers/hwmon/it87.c
9828 M: Antti Palosaari <crope@iki.fi>
9829 L: linux-media@vger.kernel.org
9831 W: https://linuxtv.org
9832 W: http://palosaari.fi/linux/
9833 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9834 T: git git://linuxtv.org/anttip/media_tree.git
9835 F: drivers/media/tuners/it913x*
9837 ITE IT66121 HDMI BRIDGE DRIVER
9838 M: Phong LE <ple@baylibre.com>
9839 M: Neil Armstrong <narmstrong@baylibre.com>
9841 T: git git://anongit.freedesktop.org/drm/drm-misc
9842 F: Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
9843 F: drivers/gpu/drm/bridge/ite-it66121.c
9845 IVTV VIDEO4LINUX DRIVER
9846 M: Andy Walls <awalls@md.metrocast.net>
9847 L: linux-media@vger.kernel.org
9849 W: https://linuxtv.org
9850 T: git git://linuxtv.org/media_tree.git
9851 F: Documentation/admin-guide/media/ivtv*
9852 F: drivers/media/pci/ivtv/
9853 F: include/uapi/linux/ivtv*
9855 IX2505V MEDIA DRIVER
9856 M: Malcolm Priestley <tvboxspy@gmail.com>
9857 L: linux-media@vger.kernel.org
9859 W: https://linuxtv.org
9860 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9861 F: drivers/media/dvb-frontends/ix2505v*
9863 JAILHOUSE HYPERVISOR INTERFACE
9864 M: Jan Kiszka <jan.kiszka@siemens.com>
9865 L: jailhouse-dev@googlegroups.com
9867 F: arch/x86/include/asm/jailhouse_para.h
9868 F: arch/x86/kernel/jailhouse.c
9870 JC42.4 TEMPERATURE SENSOR DRIVER
9871 M: Guenter Roeck <linux@roeck-us.net>
9872 L: linux-hwmon@vger.kernel.org
9874 F: Documentation/hwmon/jc42.rst
9875 F: drivers/hwmon/jc42.c
9878 M: Dave Kleikamp <shaggy@kernel.org>
9879 L: jfs-discussion@lists.sourceforge.net
9881 W: http://jfs.sourceforge.net/
9882 T: git git://github.com/kleikamp/linux-shaggy.git
9883 F: Documentation/admin-guide/jfs.rst
9887 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
9888 L: netdev@vger.kernel.org
9890 F: drivers/net/ethernet/jme.*
9892 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9893 M: David Woodhouse <dwmw2@infradead.org>
9894 M: Richard Weinberger <richard@nod.at>
9895 L: linux-mtd@lists.infradead.org
9897 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
9898 T: git git://git.infradead.org/ubifs-2.6.git
9900 F: include/uapi/linux/jffs2.h
9902 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9903 M: "Theodore Ts'o" <tytso@mit.edu>
9904 M: Jan Kara <jack@suse.com>
9905 L: linux-ext4@vger.kernel.org
9908 F: include/linux/jbd2.h
9910 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9911 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9912 L: linux-media@vger.kernel.org
9914 F: drivers/media/platform/rcar_jpu.c
9916 JSM Neo PCI based serial card
9917 L: linux-serial@vger.kernel.org
9919 F: drivers/tty/serial/jsm/
9921 K10TEMP HARDWARE MONITORING DRIVER
9922 M: Clemens Ladisch <clemens@ladisch.de>
9923 L: linux-hwmon@vger.kernel.org
9925 F: Documentation/hwmon/k10temp.rst
9926 F: drivers/hwmon/k10temp.c
9928 K8TEMP HARDWARE MONITORING DRIVER
9929 M: Rudolf Marek <r.marek@assembler.cz>
9930 L: linux-hwmon@vger.kernel.org
9932 F: Documentation/hwmon/k8temp.rst
9933 F: drivers/hwmon/k8temp.c
9936 M: Andrey Ryabinin <ryabinin.a.a@gmail.com>
9937 R: Alexander Potapenko <glider@google.com>
9938 R: Andrey Konovalov <andreyknvl@gmail.com>
9939 R: Dmitry Vyukov <dvyukov@google.com>
9940 L: kasan-dev@googlegroups.com
9942 F: Documentation/dev-tools/kasan.rst
9943 F: arch/*/include/asm/*kasan.h
9944 F: arch/*/mm/kasan_init*
9945 F: include/linux/kasan*.h
9946 F: lib/Kconfig.kasan
9947 F: lib/test_kasan*.c
9949 F: scripts/Makefile.kasan
9952 M: Masahiro Yamada <masahiroy@kernel.org>
9953 L: linux-kbuild@vger.kernel.org
9955 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9956 F: Documentation/kbuild/kconfig*
9957 F: scripts/Kconfig.include
9961 R: Dmitry Vyukov <dvyukov@google.com>
9962 R: Andrey Konovalov <andreyknvl@gmail.com>
9963 L: kasan-dev@googlegroups.com
9965 F: Documentation/dev-tools/kcov.rst
9966 F: include/linux/kcov.h
9967 F: include/uapi/linux/kcov.h
9969 F: scripts/Makefile.kcov
9972 M: Marco Elver <elver@google.com>
9973 R: Dmitry Vyukov <dvyukov@google.com>
9974 L: kasan-dev@googlegroups.com
9976 F: Documentation/dev-tools/kcsan.rst
9977 F: include/linux/kcsan*.h
9979 F: lib/Kconfig.kcsan
9980 F: scripts/Makefile.kcsan
9983 M: Dave Young <dyoung@redhat.com>
9984 M: Baoquan He <bhe@redhat.com>
9985 R: Vivek Goyal <vgoyal@redhat.com>
9986 L: kexec@lists.infradead.org
9988 W: http://lse.sourceforge.net/kdump/
9989 F: Documentation/admin-guide/kdump/
9991 F: include/linux/crash_core.h
9992 F: include/linux/crash_dump.h
9993 F: include/uapi/linux/vmcore.h
9996 KEENE FM RADIO TRANSMITTER DRIVER
9997 M: Hans Verkuil <hverkuil@xs4all.nl>
9998 L: linux-media@vger.kernel.org
10000 W: https://linuxtv.org
10001 T: git git://linuxtv.org/media_tree.git
10002 F: drivers/media/radio/radio-keene*
10005 M: Ian Kent <raven@themaw.net>
10006 L: autofs@vger.kernel.org
10010 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10011 M: Masahiro Yamada <masahiroy@kernel.org>
10012 M: Michal Marek <michal.lkml@markovi.net>
10013 L: linux-kbuild@vger.kernel.org
10015 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10016 F: Documentation/kbuild/
10018 F: scripts/*vmlinux*
10020 F: scripts/Makefile*
10022 F: scripts/dummy-tools/
10025 F: scripts/package/
10028 L: kernel-janitors@vger.kernel.org
10030 W: http://kernelnewbies.org/KernelJanitors
10032 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10033 M: "J. Bruce Fields" <bfields@fieldses.org>
10034 M: Chuck Lever <chuck.lever@oracle.com>
10035 L: linux-nfs@vger.kernel.org
10037 W: http://nfs.sourceforge.net/
10038 T: git git://linux-nfs.org/~bfields/linux.git
10042 F: include/linux/lockd/
10043 F: include/linux/sunrpc/
10044 F: include/uapi/linux/nfsd/
10045 F: include/uapi/linux/sunrpc/
10047 F: Documentation/filesystems/nfs/
10050 M: Thorsten Leemhuis <linux@leemhuis.info>
10051 L: regressions@lists.linux.dev
10054 KERNEL SELFTEST FRAMEWORK
10055 M: Shuah Khan <shuah@kernel.org>
10056 M: Shuah Khan <skhan@linuxfoundation.org>
10057 L: linux-kselftest@vger.kernel.org
10059 Q: https://patchwork.kernel.org/project/linux-kselftest/list/
10060 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10061 F: Documentation/dev-tools/kselftest*
10062 F: tools/testing/selftests/
10064 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10065 M: Brendan Higgins <brendanhiggins@google.com>
10066 L: linux-kselftest@vger.kernel.org
10067 L: kunit-dev@googlegroups.com
10069 W: https://google.github.io/kunit-docs/third_party/kernel/docs/
10070 F: Documentation/dev-tools/kunit/
10073 F: tools/testing/kunit/
10075 KERNEL USERMODE HELPER
10076 M: Luis Chamberlain <mcgrof@kernel.org>
10077 L: linux-kernel@vger.kernel.org
10079 F: include/linux/umh.h
10082 KERNEL VIRTUAL MACHINE (KVM)
10083 M: Paolo Bonzini <pbonzini@redhat.com>
10084 L: kvm@vger.kernel.org
10086 W: http://www.linux-kvm.org
10087 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10088 F: Documentation/virt/kvm/
10089 F: include/asm-generic/kvm*
10090 F: include/kvm/iodev.h
10091 F: include/linux/kvm*
10092 F: include/trace/events/kvm.h
10093 F: include/uapi/asm-generic/kvm*
10094 F: include/uapi/linux/kvm*
10096 F: tools/testing/selftests/kvm/
10099 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10100 M: Marc Zyngier <maz@kernel.org>
10101 R: James Morse <james.morse@arm.com>
10102 R: Alexandru Elisei <alexandru.elisei@arm.com>
10103 R: Suzuki K Poulose <suzuki.poulose@arm.com>
10104 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10105 L: kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10107 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10108 F: arch/arm64/include/asm/kvm*
10109 F: arch/arm64/include/uapi/asm/kvm*
10111 F: include/kvm/arm_*
10112 F: tools/testing/selftests/kvm/*/aarch64/
10113 F: tools/testing/selftests/kvm/aarch64/
10115 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10116 M: Huacai Chen <chenhuacai@kernel.org>
10117 M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10118 L: linux-mips@vger.kernel.org
10119 L: kvm@vger.kernel.org
10121 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10122 F: arch/mips/include/asm/kvm*
10123 F: arch/mips/include/uapi/asm/kvm*
10126 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10127 M: Paul Mackerras <paulus@ozlabs.org>
10128 L: kvm-ppc@vger.kernel.org
10130 W: http://www.linux-kvm.org/
10131 T: git git://github.com/agraf/linux-2.6.git
10132 F: arch/powerpc/include/asm/kvm*
10133 F: arch/powerpc/include/uapi/asm/kvm*
10134 F: arch/powerpc/kernel/kvm*
10135 F: arch/powerpc/kvm/
10137 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10138 M: Christian Borntraeger <borntraeger@de.ibm.com>
10139 M: Janosch Frank <frankja@linux.ibm.com>
10140 R: David Hildenbrand <david@redhat.com>
10141 R: Cornelia Huck <cohuck@redhat.com>
10142 R: Claudio Imbrenda <imbrenda@linux.ibm.com>
10143 L: kvm@vger.kernel.org
10145 W: http://www.ibm.com/developerworks/linux/linux390/
10146 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10147 F: Documentation/virt/kvm/s390*
10148 F: arch/s390/include/asm/gmap.h
10149 F: arch/s390/include/asm/kvm*
10150 F: arch/s390/include/uapi/asm/kvm*
10151 F: arch/s390/kernel/uv.c
10153 F: arch/s390/mm/gmap.c
10154 F: tools/testing/selftests/kvm/*/s390x/
10155 F: tools/testing/selftests/kvm/s390x/
10157 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10158 M: Paolo Bonzini <pbonzini@redhat.com>
10159 R: Sean Christopherson <seanjc@google.com>
10160 R: Vitaly Kuznetsov <vkuznets@redhat.com>
10161 R: Wanpeng Li <wanpengli@tencent.com>
10162 R: Jim Mattson <jmattson@google.com>
10163 R: Joerg Roedel <joro@8bytes.org>
10164 L: kvm@vger.kernel.org
10166 W: http://www.linux-kvm.org
10167 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10168 F: arch/x86/include/asm/kvm*
10169 F: arch/x86/include/asm/pvclock-abi.h
10170 F: arch/x86/include/asm/svm.h
10171 F: arch/x86/include/asm/vmx*.h
10172 F: arch/x86/include/uapi/asm/kvm*
10173 F: arch/x86/include/uapi/asm/svm.h
10174 F: arch/x86/include/uapi/asm/vmx.h
10175 F: arch/x86/kernel/kvm.c
10176 F: arch/x86/kernel/kvmclock.c
10181 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10182 M: Tejun Heo <tj@kernel.org>
10184 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10186 F: include/linux/kernfs.h
10189 M: Eric Biederman <ebiederm@xmission.com>
10190 L: kexec@lists.infradead.org
10192 W: http://kernel.org/pub/linux/utils/kernel/kexec/
10193 F: include/linux/kexec.h
10194 F: include/uapi/linux/kexec.h
10198 M: Mimi Zohar <zohar@linux.ibm.com>
10199 L: linux-integrity@vger.kernel.org
10200 L: keyrings@vger.kernel.org
10202 F: Documentation/security/keys/trusted-encrypted.rst
10203 F: include/keys/encrypted-type.h
10204 F: security/keys/encrypted-keys/
10207 M: James Bottomley <jejb@linux.ibm.com>
10208 M: Jarkko Sakkinen <jarkko@kernel.org>
10209 M: Mimi Zohar <zohar@linux.ibm.com>
10210 L: linux-integrity@vger.kernel.org
10211 L: keyrings@vger.kernel.org
10213 F: Documentation/security/keys/trusted-encrypted.rst
10214 F: include/keys/trusted-type.h
10215 F: include/keys/trusted_tpm.h
10216 F: security/keys/trusted-keys/
10219 M: Sumit Garg <sumit.garg@linaro.org>
10220 L: linux-integrity@vger.kernel.org
10221 L: keyrings@vger.kernel.org
10223 F: include/keys/trusted_tee.h
10224 F: security/keys/trusted-keys/trusted_tee.c
10227 M: David Howells <dhowells@redhat.com>
10228 M: Jarkko Sakkinen <jarkko@kernel.org>
10229 L: keyrings@vger.kernel.org
10231 F: Documentation/security/keys/core.rst
10233 F: include/linux/key-type.h
10234 F: include/linux/key.h
10235 F: include/linux/keyctl.h
10236 F: include/uapi/linux/keyctl.h
10240 M: Alexander Potapenko <glider@google.com>
10241 M: Marco Elver <elver@google.com>
10242 R: Dmitry Vyukov <dvyukov@google.com>
10243 L: kasan-dev@googlegroups.com
10245 F: Documentation/dev-tools/kfence.rst
10246 F: arch/*/include/asm/kfence.h
10247 F: include/linux/kfence.h
10248 F: lib/Kconfig.kfence
10252 M: Stefani Seibold <stefani@seibold.net>
10254 F: include/linux/kfifo.h
10258 KGDB / KDB /debug_core
10259 M: Jason Wessel <jason.wessel@windriver.com>
10260 M: Daniel Thompson <daniel.thompson@linaro.org>
10261 R: Douglas Anderson <dianders@chromium.org>
10262 L: kgdb-bugreport@lists.sourceforge.net
10264 W: http://kgdb.wiki.kernel.org/
10265 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10266 F: Documentation/dev-tools/kgdb.rst
10267 F: drivers/misc/kgdbts.c
10268 F: drivers/tty/serial/kgdboc.c
10269 F: include/linux/kdb.h
10270 F: include/linux/kgdb.h
10273 KHADAS MCU MFD DRIVER
10274 M: Neil Armstrong <narmstrong@baylibre.com>
10275 L: linux-amlogic@lists.infradead.org
10277 F: Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10278 F: drivers/mfd/khadas-mcu.c
10279 F: include/linux/mfd/khadas-mcu.h
10280 F: drivers/thermal/khadas_mcu_fan.c
10283 M: Catalin Marinas <catalin.marinas@arm.com>
10285 F: Documentation/dev-tools/kmemleak.rst
10286 F: include/linux/kmemleak.h
10288 F: samples/kmemleak/kmemleak-test.c
10290 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10291 M: Luis Chamberlain <mcgrof@kernel.org>
10292 L: linux-kernel@vger.kernel.org
10294 F: include/linux/kmod.h
10297 F: tools/testing/selftests/kmod/
10300 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10301 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10302 M: "David S. Miller" <davem@davemloft.net>
10303 M: Masami Hiramatsu <mhiramat@kernel.org>
10305 F: Documentation/trace/kprobes.rst
10306 F: include/asm-generic/kprobes.h
10307 F: include/linux/kprobes.h
10308 F: kernel/kprobes.c
10310 KS0108 LCD CONTROLLER DRIVER
10311 M: Miguel Ojeda <ojeda@kernel.org>
10313 F: Documentation/admin-guide/auxdisplay/ks0108.rst
10314 F: drivers/auxdisplay/ks0108.c
10315 F: include/linux/ks0108.h
10317 KTD253 BACKLIGHT DRIVER
10318 M: Linus Walleij <linus.walleij@linaro.org>
10320 F: Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10321 F: drivers/video/backlight/ktd253-backlight.c
10324 M: Steven Rostedt <rostedt@goodmis.org>
10325 M: John Hawley <warthog9@eaglescrag.net>
10327 F: tools/testing/ktest
10330 M: David Ahern <dsahern@kernel.org>
10331 L: netdev@vger.kernel.org
10333 F: include/net/l3mdev.h
10337 M: John Fastabend <john.fastabend@gmail.com>
10338 M: Daniel Borkmann <daniel@iogearbox.net>
10339 M: Jakub Sitnicki <jakub@cloudflare.com>
10340 M: Lorenz Bauer <lmb@cloudflare.com>
10341 L: netdev@vger.kernel.org
10342 L: bpf@vger.kernel.org
10344 F: include/linux/skmsg.h
10345 F: net/core/skmsg.c
10346 F: net/core/sock_map.c
10347 F: net/ipv4/tcp_bpf.c
10348 F: net/ipv4/udp_bpf.c
10350 LANDLOCK SECURITY MODULE
10351 M: Mickaël Salaün <mic@digikod.net>
10352 L: linux-security-module@vger.kernel.org
10354 W: https://landlock.io
10355 T: git https://github.com/landlock-lsm/linux.git
10356 F: Documentation/security/landlock.rst
10357 F: Documentation/userspace-api/landlock.rst
10358 F: include/uapi/linux/landlock.h
10359 F: samples/landlock/
10360 F: security/landlock/
10361 F: tools/testing/selftests/landlock/
10365 LANTIQ / INTEL Ethernet drivers
10366 M: Hauke Mehrtens <hauke@hauke-m.de>
10367 L: netdev@vger.kernel.org
10369 F: drivers/net/dsa/lantiq_gswip.c
10370 F: drivers/net/dsa/lantiq_pce.h
10371 F: drivers/net/ethernet/lantiq_xrx200.c
10372 F: net/dsa/tag_gswip.c
10374 LANTIQ MIPS ARCHITECTURE
10375 M: John Crispin <john@phrozen.org>
10376 L: linux-mips@vger.kernel.org
10378 F: arch/mips/lantiq
10379 F: drivers/soc/lantiq
10381 LASI 53c700 driver for PARISC
10382 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10383 L: linux-scsi@vger.kernel.org
10385 F: Documentation/scsi/53c700.rst
10386 F: drivers/scsi/53c700*
10389 M: Tobin C. Harding <me@tobin.cc>
10390 M: Tycho Andersen <tycho@tycho.pizza>
10391 L: linux-hardening@vger.kernel.org
10393 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10394 F: scripts/leaking_addresses.pl
10397 M: Pavel Machek <pavel@ucw.cz>
10398 L: linux-leds@vger.kernel.org
10400 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10401 F: Documentation/devicetree/bindings/leds/
10403 F: include/linux/leds.h
10405 LEGACY EEPROM DRIVER
10406 M: Jean Delvare <jdelvare@suse.com>
10408 F: Documentation/misc-devices/eeprom.rst
10409 F: drivers/misc/eeprom/eeprom.c
10411 LEGO MINDSTORMS EV3
10412 R: David Lechner <david@lechnology.com>
10414 F: Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10415 F: arch/arm/boot/dts/da850-lego-ev3.dts
10416 F: drivers/power/supply/lego_ev3_battery.c
10418 LEGO USB Tower driver
10419 M: Juergen Stuber <starblue@users.sourceforge.net>
10420 L: legousb-devel@lists.sourceforge.net
10422 W: http://legousb.sourceforge.net/
10423 F: drivers/usb/misc/legousbtower.c
10426 M: Matan Ziv-Av <matan@svgalib.org>
10427 L: platform-driver-x86@vger.kernel.org
10429 F: Documentation/ABI/testing/sysfs-platform-lg-laptop
10430 F: Documentation/admin-guide/laptops/lg-laptop.rst
10431 F: drivers/platform/x86/lg-laptop.c
10433 LG2160 MEDIA DRIVER
10434 M: Michael Krufky <mkrufky@linuxtv.org>
10435 L: linux-media@vger.kernel.org
10437 W: https://linuxtv.org
10438 W: http://github.com/mkrufky
10439 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10440 T: git git://linuxtv.org/mkrufky/tuners.git
10441 F: drivers/media/dvb-frontends/lg2160.*
10443 LGDT3305 MEDIA DRIVER
10444 M: Michael Krufky <mkrufky@linuxtv.org>
10445 L: linux-media@vger.kernel.org
10447 W: https://linuxtv.org
10448 W: http://github.com/mkrufky
10449 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10450 T: git git://linuxtv.org/mkrufky/tuners.git
10451 F: drivers/media/dvb-frontends/lgdt3305.*
10453 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10454 M: Viresh Kumar <vireshk@kernel.org>
10455 L: linux-ide@vger.kernel.org
10457 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10458 F: drivers/ata/pata_arasan_cf.c
10459 F: include/linux/pata_arasan_cf_data.h
10461 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10462 M: Linus Walleij <linus.walleij@linaro.org>
10463 L: linux-ide@vger.kernel.org
10465 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10466 F: drivers/ata/pata_ftide010.c
10467 F: drivers/ata/sata_gemini.c
10468 F: drivers/ata/sata_gemini.h
10470 LIBATA SATA AHCI PLATFORM devices support
10471 M: Hans de Goede <hdegoede@redhat.com>
10472 M: Jens Axboe <axboe@kernel.dk>
10473 L: linux-ide@vger.kernel.org
10475 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10476 F: drivers/ata/ahci_platform.c
10477 F: drivers/ata/libahci_platform.c
10478 F: include/linux/ahci_platform.h
10480 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10481 M: Mikael Pettersson <mikpelinux@gmail.com>
10482 L: linux-ide@vger.kernel.org
10484 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10485 F: drivers/ata/sata_promise.*
10487 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10488 M: Jens Axboe <axboe@kernel.dk>
10489 L: linux-ide@vger.kernel.org
10491 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10492 F: Documentation/devicetree/bindings/ata/
10494 F: include/linux/ata.h
10495 F: include/linux/libata.h
10498 M: Sasha Levin <alexander.levin@microsoft.com>
10500 F: tools/lib/lockdep/
10502 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10503 M: Dan Williams <dan.j.williams@intel.com>
10504 M: Vishal Verma <vishal.l.verma@intel.com>
10505 M: Dave Jiang <dave.jiang@intel.com>
10506 L: nvdimm@lists.linux.dev
10508 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10509 P: Documentation/nvdimm/maintainer-entry-profile.rst
10510 F: drivers/nvdimm/blk.c
10511 F: drivers/nvdimm/region_devs.c
10513 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10514 M: Vishal Verma <vishal.l.verma@intel.com>
10515 M: Dan Williams <dan.j.williams@intel.com>
10516 M: Dave Jiang <dave.jiang@intel.com>
10517 L: nvdimm@lists.linux.dev
10519 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10520 P: Documentation/nvdimm/maintainer-entry-profile.rst
10521 F: drivers/nvdimm/btt*
10523 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10524 M: Dan Williams <dan.j.williams@intel.com>
10525 M: Vishal Verma <vishal.l.verma@intel.com>
10526 M: Dave Jiang <dave.jiang@intel.com>
10527 L: nvdimm@lists.linux.dev
10529 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10530 P: Documentation/nvdimm/maintainer-entry-profile.rst
10531 F: drivers/nvdimm/pmem*
10533 LIBNVDIMM: DEVICETREE BINDINGS
10534 M: Oliver O'Halloran <oohall@gmail.com>
10535 L: nvdimm@lists.linux.dev
10537 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10538 F: Documentation/devicetree/bindings/pmem/pmem-region.txt
10539 F: drivers/nvdimm/of_pmem.c
10541 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10542 M: Dan Williams <dan.j.williams@intel.com>
10543 M: Vishal Verma <vishal.l.verma@intel.com>
10544 M: Dave Jiang <dave.jiang@intel.com>
10545 M: Ira Weiny <ira.weiny@intel.com>
10546 L: nvdimm@lists.linux.dev
10548 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10549 P: Documentation/nvdimm/maintainer-entry-profile.rst
10550 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10551 F: drivers/acpi/nfit/*
10552 F: drivers/nvdimm/*
10553 F: include/linux/libnvdimm.h
10554 F: include/linux/nd.h
10555 F: include/uapi/linux/ndctl.h
10556 F: tools/testing/nvdimm/
10558 LICENSES and SPDX stuff
10559 M: Thomas Gleixner <tglx@linutronix.de>
10560 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10561 L: linux-spdx@vger.kernel.org
10563 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10565 F: Documentation/process/license-rules.rst
10567 F: scripts/spdxcheck-test.sh
10568 F: scripts/spdxcheck.py
10570 LIGHTNVM PLATFORM SUPPORT
10571 M: Matias Bjorling <mb@lightnvm.io>
10572 L: linux-block@vger.kernel.org
10574 W: http://github/OpenChannelSSD
10575 F: drivers/lightnvm/
10576 F: include/linux/lightnvm.h
10577 F: include/uapi/linux/lightnvm.h
10579 LINEAR RANGES HELPERS
10580 M: Mark Brown <broonie@kernel.org>
10581 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10582 F: lib/linear_ranges.c
10583 F: lib/test_linear_ranges.c
10584 F: include/linux/linear_range.h
10586 LINUX FOR POWER MACINTOSH
10587 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10588 L: linuxppc-dev@lists.ozlabs.org
10590 F: arch/powerpc/platforms/powermac/
10591 F: drivers/macintosh/
10593 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10594 M: Michael Ellerman <mpe@ellerman.id.au>
10595 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10596 R: Paul Mackerras <paulus@samba.org>
10597 L: linuxppc-dev@lists.ozlabs.org
10599 W: https://github.com/linuxppc/wiki/wiki
10600 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10601 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10602 F: Documentation/ABI/stable/sysfs-firmware-opal-*
10603 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
10604 F: Documentation/devicetree/bindings/powerpc/
10605 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
10606 F: Documentation/powerpc/
10608 F: drivers/*/*/*pasemi*
10609 F: drivers/*/*pasemi*
10610 F: drivers/char/tpm/tpm_ibmvtpm*
10611 F: drivers/crypto/nx/
10612 F: drivers/crypto/vmx/
10613 F: drivers/i2c/busses/i2c-opal.c
10614 F: drivers/net/ethernet/ibm/ibmveth.*
10615 F: drivers/net/ethernet/ibm/ibmvnic.*
10616 F: drivers/pci/hotplug/pnv_php.c
10617 F: drivers/pci/hotplug/rpa*
10618 F: drivers/rtc/rtc-opal.c
10619 F: drivers/scsi/ibmvscsi/
10620 F: drivers/tty/hvc/hvc_opal.c
10621 F: drivers/watchdog/wdrtas.c
10622 F: tools/testing/selftests/powerpc
10629 LINUX FOR POWERPC EMBEDDED MPC5XXX
10630 M: Anatolij Gustschin <agust@denx.de>
10631 L: linuxppc-dev@lists.ozlabs.org
10633 F: arch/powerpc/platforms/512x/
10634 F: arch/powerpc/platforms/52xx/
10636 LINUX FOR POWERPC EMBEDDED PPC4XX
10637 L: linuxppc-dev@lists.ozlabs.org
10639 F: arch/powerpc/platforms/40x/
10640 F: arch/powerpc/platforms/44x/
10642 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10643 M: Scott Wood <oss@buserror.net>
10644 L: linuxppc-dev@lists.ozlabs.org
10646 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10647 F: Documentation/devicetree/bindings/powerpc/fsl/
10648 F: arch/powerpc/platforms/83xx/
10649 F: arch/powerpc/platforms/85xx/
10651 LINUX FOR POWERPC EMBEDDED PPC8XX
10652 M: Christophe Leroy <christophe.leroy@csgroup.eu>
10653 L: linuxppc-dev@lists.ozlabs.org
10655 F: arch/powerpc/platforms/8xx/
10657 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10658 M: Kees Cook <keescook@chromium.org>
10660 F: drivers/misc/lkdtm/*
10661 F: tools/testing/selftests/lkdtm/*
10663 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10664 M: Alan Stern <stern@rowland.harvard.edu>
10665 M: Andrea Parri <parri.andrea@gmail.com>
10666 M: Will Deacon <will@kernel.org>
10667 M: Peter Zijlstra <peterz@infradead.org>
10668 M: Boqun Feng <boqun.feng@gmail.com>
10669 M: Nicholas Piggin <npiggin@gmail.com>
10670 M: David Howells <dhowells@redhat.com>
10671 M: Jade Alglave <j.alglave@ucl.ac.uk>
10672 M: Luc Maranget <luc.maranget@inria.fr>
10673 M: "Paul E. McKenney" <paulmck@kernel.org>
10674 R: Akira Yokosawa <akiyks@gmail.com>
10675 R: Daniel Lustig <dlustig@nvidia.com>
10676 R: Joel Fernandes <joel@joelfernandes.org>
10677 L: linux-kernel@vger.kernel.org
10678 L: linux-arch@vger.kernel.org
10680 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10681 F: Documentation/atomic_bitops.txt
10682 F: Documentation/atomic_t.txt
10683 F: Documentation/core-api/refcount-vs-atomic.rst
10684 F: Documentation/litmus-tests/
10685 F: Documentation/memory-barriers.txt
10686 F: tools/memory-model/
10688 LIS3LV02D ACCELEROMETER DRIVER
10689 M: Eric Piel <eric.piel@tremplin-utc.net>
10691 F: Documentation/misc-devices/lis3lv02d.rst
10692 F: drivers/misc/lis3lv02d/
10693 F: drivers/platform/x86/hp_accel.c
10696 M: David Gow <davidgow@google.com>
10697 L: linux-kselftest@vger.kernel.org
10698 L: kunit-dev@googlegroups.com
10703 M: Karol Gugala <kgugala@antmicro.com>
10704 M: Mateusz Holenko <mholenko@antmicro.com>
10706 F: Documentation/devicetree/bindings/*/litex,*.yaml
10707 F: arch/openrisc/boot/dts/or1klitex.dts
10708 F: drivers/soc/litex/litex_soc_ctrl.c
10709 F: drivers/tty/serial/liteuart.c
10710 F: include/linux/litex.h
10713 M: Josh Poimboeuf <jpoimboe@redhat.com>
10714 M: Jiri Kosina <jikos@kernel.org>
10715 M: Miroslav Benes <mbenes@suse.cz>
10716 M: Petr Mladek <pmladek@suse.com>
10717 R: Joe Lawrence <joe.lawrence@redhat.com>
10718 L: live-patching@vger.kernel.org
10720 T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10721 F: Documentation/ABI/testing/sysfs-kernel-livepatch
10722 F: Documentation/livepatch/
10723 F: arch/powerpc/include/asm/livepatch.h
10724 F: arch/s390/include/asm/livepatch.h
10725 F: arch/x86/include/asm/livepatch.h
10726 F: include/linux/livepatch.h
10727 F: kernel/livepatch/
10729 F: samples/livepatch/
10730 F: tools/testing/selftests/livepatch/
10733 L: netdev@vger.kernel.org
10735 F: include/linux/llc.h
10736 F: include/net/llc*
10737 F: include/uapi/linux/llc.h
10740 LM73 HARDWARE MONITOR DRIVER
10741 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
10742 L: linux-hwmon@vger.kernel.org
10744 F: drivers/hwmon/lm73.c
10746 LM78 HARDWARE MONITOR DRIVER
10747 M: Jean Delvare <jdelvare@suse.com>
10748 L: linux-hwmon@vger.kernel.org
10750 F: Documentation/hwmon/lm78.rst
10751 F: drivers/hwmon/lm78.c
10753 LM83 HARDWARE MONITOR DRIVER
10754 M: Jean Delvare <jdelvare@suse.com>
10755 L: linux-hwmon@vger.kernel.org
10757 F: Documentation/hwmon/lm83.rst
10758 F: drivers/hwmon/lm83.c
10760 LM90 HARDWARE MONITOR DRIVER
10761 M: Jean Delvare <jdelvare@suse.com>
10762 L: linux-hwmon@vger.kernel.org
10764 F: Documentation/devicetree/bindings/hwmon/lm90.txt
10765 F: Documentation/hwmon/lm90.rst
10766 F: drivers/hwmon/lm90.c
10767 F: include/dt-bindings/thermal/lm90.h
10769 LM95234 HARDWARE MONITOR DRIVER
10770 M: Guenter Roeck <linux@roeck-us.net>
10771 L: linux-hwmon@vger.kernel.org
10773 F: Documentation/hwmon/lm95234.rst
10774 F: drivers/hwmon/lm95234.c
10776 LME2510 MEDIA DRIVER
10777 M: Malcolm Priestley <tvboxspy@gmail.com>
10778 L: linux-media@vger.kernel.org
10780 W: https://linuxtv.org
10781 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10782 F: drivers/media/usb/dvb-usb-v2/lmedm04*
10784 LOADPIN SECURITY MODULE
10785 M: Kees Cook <keescook@chromium.org>
10787 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10788 F: Documentation/admin-guide/LSM/LoadPin.rst
10789 F: security/loadpin/
10792 M: Peter Zijlstra <peterz@infradead.org>
10793 M: Ingo Molnar <mingo@redhat.com>
10794 M: Will Deacon <will@kernel.org>
10795 R: Waiman Long <longman@redhat.com>
10796 R: Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10797 L: linux-kernel@vger.kernel.org
10799 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10800 F: Documentation/locking/
10801 F: arch/*/include/asm/spinlock*.h
10802 F: include/linux/lockdep.h
10803 F: include/linux/mutex*.h
10804 F: include/linux/rwlock*.h
10805 F: include/linux/rwsem*.h
10806 F: include/linux/seqlock.h
10807 F: include/linux/spinlock*.h
10809 F: lib/locking*.[ch]
10810 X: kernel/locking/locktorture.c
10812 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10813 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
10814 L: linux-ntfs-dev@lists.sourceforge.net
10816 W: http://www.linux-ntfs.org/content/view/19/37/
10817 F: Documentation/admin-guide/ldm.rst
10818 F: block/partitions/ldm.*
10820 LOGITECH HID GAMING KEYBOARDS
10821 M: Hans de Goede <hdegoede@redhat.com>
10822 L: linux-input@vger.kernel.org
10824 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10825 F: drivers/hid/hid-lg-g15.c
10827 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10828 M: Adrien Grassein <adrien.grassein@gmail.com>
10830 F: Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10831 F: drivers/gpu/drm/bridge/lontium-lt8912b.c
10833 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10834 M: Sathya Prakash <sathya.prakash@broadcom.com>
10835 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10836 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10837 L: MPT-FusionLinux.pdl@broadcom.com
10838 L: linux-scsi@vger.kernel.org
10840 W: http://www.avagotech.com/support/
10841 F: drivers/message/fusion/
10842 F: drivers/scsi/mpt3sas/
10844 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10845 M: Matthew Wilcox <willy@infradead.org>
10846 L: linux-scsi@vger.kernel.org
10848 F: drivers/scsi/sym53c8xx_2/
10851 M: Marcus Folkesson <marcus.folkesson@gmail.com>
10852 L: linux-iio@vger.kernel.org
10854 F: Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10855 F: drivers/iio/dac/ltc1660.c
10857 LTC2947 HARDWARE MONITOR DRIVER
10858 M: Nuno Sá <nuno.sa@analog.com>
10859 L: linux-hwmon@vger.kernel.org
10861 W: http://ez.analog.com/community/linux-device-drivers
10862 F: Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10863 F: drivers/hwmon/ltc2947-core.c
10864 F: drivers/hwmon/ltc2947-i2c.c
10865 F: drivers/hwmon/ltc2947-spi.c
10866 F: drivers/hwmon/ltc2947.h
10868 LTC2983 IIO TEMPERATURE DRIVER
10869 M: Nuno Sá <nuno.sa@analog.com>
10870 L: linux-iio@vger.kernel.org
10872 W: http://ez.analog.com/community/linux-device-drivers
10873 F: Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10874 F: drivers/iio/temperature/ltc2983.c
10876 LTC4261 HARDWARE MONITOR DRIVER
10877 M: Guenter Roeck <linux@roeck-us.net>
10878 L: linux-hwmon@vger.kernel.org
10880 F: Documentation/hwmon/ltc4261.rst
10881 F: drivers/hwmon/ltc4261.c
10883 LTC4306 I2C MULTIPLEXER DRIVER
10884 M: Michael Hennerich <michael.hennerich@analog.com>
10885 L: linux-i2c@vger.kernel.org
10887 W: http://ez.analog.com/community/linux-device-drivers
10888 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10889 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
10891 LTP (Linux Test Project)
10892 M: Mike Frysinger <vapier@gentoo.org>
10893 M: Cyril Hrubis <chrubis@suse.cz>
10894 M: Wanlong Gao <wanlong.gao@gmail.com>
10895 M: Jan Stancek <jstancek@redhat.com>
10896 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10897 M: Alexey Kodanev <alexey.kodanev@oracle.com>
10898 L: ltp@lists.linux.it (subscribers-only)
10900 W: http://linux-test-project.github.io/
10901 T: git git://github.com/linux-test-project/ltp.git
10904 M: Ioana Ciornei <ioana.ciornei@nxp.com>
10905 L: netdev@vger.kernel.org
10907 F: drivers/net/pcs/pcs-lynx.c
10908 F: include/linux/pcs-lynx.h
10911 M: Geert Uytterhoeven <geert@linux-m68k.org>
10912 L: linux-m68k@lists.linux-m68k.org
10914 W: http://www.linux-m68k.org/
10915 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10919 M68K ON APPLE MACINTOSH
10920 M: Joshua Thompson <funaho@jurai.org>
10921 L: linux-m68k@lists.linux-m68k.org
10923 W: http://www.mac.linux-m68k.org/
10925 F: drivers/macintosh/adb-iop.c
10926 F: drivers/macintosh/via-macii.c
10929 M: Philip Blundell <philb@gnu.org>
10931 W: http://www.tazenda.demon.co.uk/phil/linux-hp
10932 F: arch/m68k/hp300/
10934 M88DS3103 MEDIA DRIVER
10935 M: Antti Palosaari <crope@iki.fi>
10936 L: linux-media@vger.kernel.org
10938 W: https://linuxtv.org
10939 W: http://palosaari.fi/linux/
10940 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10941 T: git git://linuxtv.org/anttip/media_tree.git
10942 F: drivers/media/dvb-frontends/m88ds3103*
10944 M88RS2000 MEDIA DRIVER
10945 M: Malcolm Priestley <tvboxspy@gmail.com>
10946 L: linux-media@vger.kernel.org
10948 W: https://linuxtv.org
10949 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10950 F: drivers/media/dvb-frontends/m88rs2000*
10952 MA901 MASTERKIT USB FM RADIO DRIVER
10953 M: Alexey Klimov <klimov.linux@gmail.com>
10954 L: linux-media@vger.kernel.org
10956 T: git git://linuxtv.org/media_tree.git
10957 F: drivers/media/radio/radio-ma901.c
10960 M: Johannes Berg <johannes@sipsolutions.net>
10961 L: linux-wireless@vger.kernel.org
10963 W: https://wireless.wiki.kernel.org/
10964 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10965 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10966 F: Documentation/networking/mac80211-injection.rst
10967 F: Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10968 F: drivers/net/wireless/mac80211_hwsim.[ch]
10969 F: include/net/mac80211.h
10973 M: Jassi Brar <jassisinghbrar@gmail.com>
10974 L: linux-kernel@vger.kernel.org
10976 F: drivers/mailbox/
10977 F: include/linux/mailbox_client.h
10978 F: include/linux/mailbox_controller.h
10979 F: include/dt-bindings/mailbox/
10980 F: Documentation/devicetree/bindings/mailbox/
10983 M: Viresh Kumar <viresh.kumar@linaro.org>
10984 M: Tushar Khandelwal <Tushar.Khandelwal@arm.com>
10985 L: linux-kernel@vger.kernel.org
10987 F: drivers/mailbox/arm_mhuv2.c
10988 F: include/linux/mailbox/arm_mhuv2_message.h
10989 F: Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
10991 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10992 M: Michael Kerrisk <mtk.manpages@gmail.com>
10993 L: linux-man@vger.kernel.org
10995 W: http://www.kernel.org/doc/man-pages
10997 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10998 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
10999 L: linux-mips@vger.kernel.org
11001 F: arch/mips/boot/dts/img/pistachio_marduk.dts
11003 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11004 M: Andrew Lunn <andrew@lunn.ch>
11005 M: Vivien Didelot <vivien.didelot@gmail.com>
11006 L: netdev@vger.kernel.org
11008 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
11009 F: Documentation/networking/devlink/mv88e6xxx.rst
11010 F: drivers/net/dsa/mv88e6xxx/
11011 F: include/linux/platform_data/mv88e6xxx.h
11013 MARVELL ARMADA 3700 PHY DRIVERS
11014 M: Miquel Raynal <miquel.raynal@bootlin.com>
11016 F: Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11017 F: Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11018 F: drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11019 F: drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11021 MARVELL ARMADA DRM SUPPORT
11022 M: Russell King <linux@armlinux.org.uk>
11024 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11025 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11026 F: Documentation/devicetree/bindings/display/armada/
11027 F: drivers/gpu/drm/armada/
11028 F: include/uapi/drm/armada_drm.h
11030 MARVELL CRYPTO DRIVER
11031 M: Boris Brezillon <bbrezillon@kernel.org>
11032 M: Arnaud Ebalard <arno@natisbad.org>
11033 M: Srujana Challa <schalla@marvell.com>
11034 L: linux-crypto@vger.kernel.org
11036 F: drivers/crypto/marvell/
11037 F: include/linux/soc/marvell/octeontx2/
11039 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11040 M: Mirko Lindner <mlindner@marvell.com>
11041 M: Stephen Hemminger <stephen@networkplumber.org>
11042 L: netdev@vger.kernel.org
11044 F: drivers/net/ethernet/marvell/sk*
11046 MARVELL LIBERTAS WIRELESS DRIVER
11047 L: libertas-dev@lists.infradead.org
11049 F: drivers/net/wireless/marvell/libertas/
11051 MARVELL MACCHIATOBIN SUPPORT
11052 M: Russell King <linux@armlinux.org.uk>
11053 L: linux-arm-kernel@lists.infradead.org
11055 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11057 MARVELL MV643XX ETHERNET DRIVER
11058 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11059 L: netdev@vger.kernel.org
11061 F: drivers/net/ethernet/marvell/mv643xx_eth.*
11062 F: include/linux/mv643xx.h
11064 MARVELL MV88X3310 PHY DRIVER
11065 M: Russell King <linux@armlinux.org.uk>
11066 M: Marek Behún <kabel@kernel.org>
11067 L: netdev@vger.kernel.org
11069 F: drivers/net/phy/marvell10g.c
11071 MARVELL MVEBU THERMAL DRIVER
11072 M: Miquel Raynal <miquel.raynal@bootlin.com>
11074 F: drivers/thermal/armada_thermal.c
11076 MARVELL MVNETA ETHERNET DRIVER
11077 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11078 L: netdev@vger.kernel.org
11080 F: drivers/net/ethernet/marvell/mvneta.*
11082 MARVELL MVPP2 ETHERNET DRIVER
11083 M: Marcin Wojtas <mw@semihalf.com>
11084 M: Russell King <linux@armlinux.org.uk>
11085 L: netdev@vger.kernel.org
11087 F: Documentation/devicetree/bindings/net/marvell-pp2.txt
11088 F: drivers/net/ethernet/marvell/mvpp2/
11090 MARVELL MWIFIEX WIRELESS DRIVER
11091 M: Amitkumar Karwar <amitkarwar@gmail.com>
11092 M: Ganapathi Bhat <ganapathi017@gmail.com>
11093 M: Sharvari Harisangam <sharvari.harisangam@nxp.com>
11094 M: Xinming Hu <huxinming820@gmail.com>
11095 L: linux-wireless@vger.kernel.org
11097 F: drivers/net/wireless/marvell/mwifiex/
11099 MARVELL MWL8K WIRELESS DRIVER
11100 M: Lennert Buytenhek <buytenh@wantstofly.org>
11101 L: linux-wireless@vger.kernel.org
11103 F: drivers/net/wireless/marvell/mwl8k.c
11105 MARVELL NAND CONTROLLER DRIVER
11106 M: Miquel Raynal <miquel.raynal@bootlin.com>
11107 L: linux-mtd@lists.infradead.org
11109 F: Documentation/devicetree/bindings/mtd/marvell-nand.txt
11110 F: drivers/mtd/nand/raw/marvell_nand.c
11112 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11113 M: Sunil Goutham <sgoutham@marvell.com>
11114 M: Geetha sowjanya <gakula@marvell.com>
11115 M: Subbaraya Sundeep <sbhatta@marvell.com>
11116 M: hariprasad <hkelam@marvell.com>
11117 L: netdev@vger.kernel.org
11119 F: drivers/net/ethernet/marvell/octeontx2/nic/
11120 F: include/linux/soc/marvell/octeontx2/
11122 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11123 M: Sunil Goutham <sgoutham@marvell.com>
11124 M: Linu Cherian <lcherian@marvell.com>
11125 M: Geetha sowjanya <gakula@marvell.com>
11126 M: Jerin Jacob <jerinj@marvell.com>
11127 M: hariprasad <hkelam@marvell.com>
11128 M: Subbaraya Sundeep <sbhatta@marvell.com>
11129 L: netdev@vger.kernel.org
11131 F: Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11132 F: drivers/net/ethernet/marvell/octeontx2/af/
11134 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11135 M: Vadym Kochan <vkochan@marvell.com>
11136 M: Taras Chornyi <tchornyi@marvell.com>
11138 W: https://github.com/Marvell-switching/switchdev-prestera
11139 F: drivers/net/ethernet/marvell/prestera/
11141 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11142 M: Nicolas Pitre <nico@fluxnic.net>
11144 F: drivers/mmc/host/mvsdio.*
11146 MARVELL USB MDIO CONTROLLER DRIVER
11147 M: Tobias Waldekranz <tobias@waldekranz.com>
11148 L: netdev@vger.kernel.org
11150 F: Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11151 F: drivers/net/mdio/mdio-mvusb.c
11153 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11154 M: Hu Ziji <huziji@marvell.com>
11155 L: linux-mmc@vger.kernel.org
11157 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11158 F: drivers/mmc/host/sdhci-xenon*
11160 MATROX FRAMEBUFFER DRIVER
11161 L: linux-fbdev@vger.kernel.org
11163 F: drivers/video/fbdev/matrox/matroxfb_*
11164 F: include/uapi/linux/matroxfb.h
11167 M: Daniel Nilsson <daniel.nilsson@flex.com>
11168 L: linux-hwmon@vger.kernel.org
11170 F: Documentation/hwmon/max15301.rst
11171 F: drivers/hwmon/pmbus/max15301.c
11173 MAX16065 HARDWARE MONITOR DRIVER
11174 M: Guenter Roeck <linux@roeck-us.net>
11175 L: linux-hwmon@vger.kernel.org
11177 F: Documentation/hwmon/max16065.rst
11178 F: drivers/hwmon/max16065.c
11180 MAX2175 SDR TUNER DRIVER
11181 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
11182 L: linux-media@vger.kernel.org
11184 T: git git://linuxtv.org/media_tree.git
11185 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
11186 F: Documentation/userspace-api/media/drivers/max2175.rst
11187 F: drivers/media/i2c/max2175*
11188 F: include/uapi/linux/max2175.h
11190 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11191 L: linux-hwmon@vger.kernel.org
11193 F: Documentation/hwmon/max6650.rst
11194 F: drivers/hwmon/max6650.c
11196 MAX6697 HARDWARE MONITOR DRIVER
11197 M: Guenter Roeck <linux@roeck-us.net>
11198 L: linux-hwmon@vger.kernel.org
11200 F: Documentation/devicetree/bindings/hwmon/max6697.txt
11201 F: Documentation/hwmon/max6697.rst
11202 F: drivers/hwmon/max6697.c
11203 F: include/linux/platform_data/max6697.h
11205 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11206 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
11207 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11208 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11209 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11210 L: linux-media@vger.kernel.org
11212 F: Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11213 F: drivers/media/i2c/max9286.c
11215 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11216 M: Peter Rosin <peda@axentia.se>
11217 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11219 F: Documentation/devicetree/bindings/sound/max9860.txt
11220 F: sound/soc/codecs/max9860.*
11222 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11223 M: Andreas Klinger <ak@it-klinger.de>
11224 L: linux-iio@vger.kernel.org
11226 F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11227 F: drivers/iio/proximity/mb1232.c
11229 MAXIM MAX77650 PMIC MFD DRIVER
11230 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
11231 L: linux-kernel@vger.kernel.org
11233 F: Documentation/devicetree/bindings/*/*max77650.yaml
11234 F: Documentation/devicetree/bindings/*/max77650*.yaml
11235 F: drivers/gpio/gpio-max77650.c
11236 F: drivers/input/misc/max77650-onkey.c
11237 F: drivers/leds/leds-max77650.c
11238 F: drivers/mfd/max77650.c
11239 F: drivers/power/supply/max77650-charger.c
11240 F: drivers/regulator/max77650-regulator.c
11241 F: include/linux/mfd/max77650.h
11243 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11244 M: Javier Martinez Canillas <javier@dowhile0.org>
11245 L: linux-kernel@vger.kernel.org
11247 F: Documentation/devicetree/bindings/*/*max77802.txt
11248 F: drivers/regulator/max77802-regulator.c
11249 F: include/dt-bindings/*/*max77802.h
11251 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11252 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11253 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11254 L: linux-pm@vger.kernel.org
11256 F: drivers/power/supply/max14577_charger.c
11257 F: drivers/power/supply/max77693_charger.c
11259 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11260 M: Chanwoo Choi <cw00.choi@samsung.com>
11261 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11262 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11263 L: linux-kernel@vger.kernel.org
11265 F: Documentation/devicetree/bindings/*/max77686.txt
11266 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
11267 F: Documentation/devicetree/bindings/mfd/max14577.txt
11268 F: Documentation/devicetree/bindings/mfd/max77693.txt
11269 F: drivers/*/max14577*.c
11270 F: drivers/*/max77686*.c
11271 F: drivers/*/max77693*.c
11272 F: drivers/clk/clk-max77686.c
11273 F: drivers/extcon/extcon-max14577.c
11274 F: drivers/extcon/extcon-max77693.c
11275 F: drivers/rtc/rtc-max77686.c
11276 F: include/linux/mfd/max14577*.h
11277 F: include/linux/mfd/max77686*.h
11278 F: include/linux/mfd/max77693*.h
11280 MAXIRADIO FM RADIO RECEIVER DRIVER
11281 M: Hans Verkuil <hverkuil@xs4all.nl>
11282 L: linux-media@vger.kernel.org
11284 W: https://linuxtv.org
11285 T: git git://linuxtv.org/media_tree.git
11286 F: drivers/media/radio/radio-maxiradio*
11288 MCAN MMIO DEVICE DRIVER
11289 M: Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11290 L: linux-can@vger.kernel.org
11292 F: Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11293 F: drivers/net/can/m_can/m_can.c
11294 F: drivers/net/can/m_can/m_can.h
11295 F: drivers/net/can/m_can/m_can_platform.c
11297 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11298 M: Rishi Gupta <gupt21@gmail.com>
11299 L: linux-i2c@vger.kernel.org
11300 L: linux-input@vger.kernel.org
11302 F: drivers/hid/hid-mcp2221.c
11304 MCP251XFD SPI-CAN NETWORK DRIVER
11305 M: Marc Kleine-Budde <mkl@pengutronix.de>
11306 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11307 R: Thomas Kopp <thomas.kopp@microchip.com>
11308 L: linux-can@vger.kernel.org
11310 F: Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11311 F: drivers/net/can/spi/mcp251xfd/
11313 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11314 M: Peter Rosin <peda@axentia.se>
11315 L: linux-iio@vger.kernel.org
11317 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11318 F: drivers/iio/potentiometer/mcp4018.c
11319 F: drivers/iio/potentiometer/mcp4531.c
11321 MCR20A IEEE-802.15.4 RADIO DRIVER
11322 M: Xue Liu <liuxuenetmail@gmail.com>
11323 L: linux-wpan@vger.kernel.org
11325 W: https://github.com/xueliu/mcr20a-linux
11326 F: Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11327 F: drivers/net/ieee802154/mcr20a.c
11328 F: drivers/net/ieee802154/mcr20a.h
11330 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11331 M: William Breathitt Gray <vilhelm.gray@gmail.com>
11332 L: linux-iio@vger.kernel.org
11334 F: drivers/iio/dac/cio-dac.c
11336 MEDIA CONTROLLER FRAMEWORK
11337 M: Sakari Ailus <sakari.ailus@linux.intel.com>
11338 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11339 L: linux-media@vger.kernel.org
11341 W: https://www.linuxtv.org
11342 T: git git://linuxtv.org/media_tree.git
11343 F: drivers/media/mc/
11344 F: include/media/media-*.h
11345 F: include/uapi/linux/media.h
11347 MEDIA DRIVER FOR FREESCALE IMX PXP
11348 M: Philipp Zabel <p.zabel@pengutronix.de>
11349 L: linux-media@vger.kernel.org
11351 T: git git://linuxtv.org/media_tree.git
11352 F: drivers/media/platform/imx-pxp.[ch]
11354 MEDIA DRIVERS FOR ASCOT2E
11355 M: Sergey Kozlov <serjk@netup.ru>
11356 M: Abylay Ospan <aospan@netup.ru>
11357 L: linux-media@vger.kernel.org
11359 W: https://linuxtv.org
11360 W: http://netup.tv/
11361 T: git git://linuxtv.org/media_tree.git
11362 F: drivers/media/dvb-frontends/ascot2e*
11364 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11365 M: Jasmin Jessich <jasmin@anw.at>
11366 L: linux-media@vger.kernel.org
11368 W: https://linuxtv.org
11369 T: git git://linuxtv.org/media_tree.git
11370 F: drivers/media/dvb-frontends/cxd2099*
11372 MEDIA DRIVERS FOR CXD2841ER
11373 M: Sergey Kozlov <serjk@netup.ru>
11374 M: Abylay Ospan <aospan@netup.ru>
11375 L: linux-media@vger.kernel.org
11377 W: https://linuxtv.org
11378 W: http://netup.tv/
11379 T: git git://linuxtv.org/media_tree.git
11380 F: drivers/media/dvb-frontends/cxd2841er*
11382 MEDIA DRIVERS FOR CXD2880
11383 M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11384 L: linux-media@vger.kernel.org
11386 W: http://linuxtv.org/
11387 T: git git://linuxtv.org/media_tree.git
11388 F: drivers/media/dvb-frontends/cxd2880/*
11389 F: drivers/media/spi/cxd2880*
11391 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11392 L: linux-media@vger.kernel.org
11394 W: https://linuxtv.org
11395 T: git git://linuxtv.org/media_tree.git
11396 F: drivers/media/pci/ddbridge/*
11398 MEDIA DRIVERS FOR FREESCALE IMX
11399 M: Steve Longerbeam <slongerbeam@gmail.com>
11400 M: Philipp Zabel <p.zabel@pengutronix.de>
11401 L: linux-media@vger.kernel.org
11403 T: git git://linuxtv.org/media_tree.git
11404 F: Documentation/admin-guide/media/imx.rst
11405 F: Documentation/devicetree/bindings/media/imx.txt
11406 F: drivers/staging/media/imx/
11407 F: include/linux/imx-media.h
11408 F: include/media/imx.h
11410 MEDIA DRIVERS FOR FREESCALE IMX7
11411 M: Rui Miguel Silva <rmfrfs@gmail.com>
11412 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11413 L: linux-media@vger.kernel.org
11415 T: git git://linuxtv.org/media_tree.git
11416 F: Documentation/admin-guide/media/imx7.rst
11417 F: Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11418 F: Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11419 F: drivers/staging/media/imx/imx7-media-csi.c
11420 F: drivers/staging/media/imx/imx7-mipi-csis.c
11422 MEDIA DRIVERS FOR HELENE
11423 M: Abylay Ospan <aospan@netup.ru>
11424 L: linux-media@vger.kernel.org
11426 W: https://linuxtv.org
11427 W: http://netup.tv/
11428 T: git git://linuxtv.org/media_tree.git
11429 F: drivers/media/dvb-frontends/helene*
11431 MEDIA DRIVERS FOR HORUS3A
11432 M: Sergey Kozlov <serjk@netup.ru>
11433 M: Abylay Ospan <aospan@netup.ru>
11434 L: linux-media@vger.kernel.org
11436 W: https://linuxtv.org
11437 W: http://netup.tv/
11438 T: git git://linuxtv.org/media_tree.git
11439 F: drivers/media/dvb-frontends/horus3a*
11441 MEDIA DRIVERS FOR LNBH25
11442 M: Sergey Kozlov <serjk@netup.ru>
11443 M: Abylay Ospan <aospan@netup.ru>
11444 L: linux-media@vger.kernel.org
11446 W: https://linuxtv.org
11447 W: http://netup.tv/
11448 T: git git://linuxtv.org/media_tree.git
11449 F: drivers/media/dvb-frontends/lnbh25*
11451 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11452 L: linux-media@vger.kernel.org
11454 W: https://linuxtv.org
11455 T: git git://linuxtv.org/media_tree.git
11456 F: drivers/media/dvb-frontends/mxl5xx*
11458 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11459 M: Sergey Kozlov <serjk@netup.ru>
11460 M: Abylay Ospan <aospan@netup.ru>
11461 L: linux-media@vger.kernel.org
11463 W: https://linuxtv.org
11464 W: http://netup.tv/
11465 T: git git://linuxtv.org/media_tree.git
11466 F: drivers/media/pci/netup_unidvb/*
11468 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11469 M: Dmitry Osipenko <digetx@gmail.com>
11470 L: linux-media@vger.kernel.org
11471 L: linux-tegra@vger.kernel.org
11473 T: git git://linuxtv.org/media_tree.git
11474 F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11475 F: drivers/staging/media/tegra-vde/
11477 MEDIA DRIVERS FOR RENESAS - CEU
11478 M: Jacopo Mondi <jacopo@jmondi.org>
11479 L: linux-media@vger.kernel.org
11480 L: linux-renesas-soc@vger.kernel.org
11482 T: git git://linuxtv.org/media_tree.git
11483 F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
11484 F: drivers/media/platform/renesas-ceu.c
11485 F: include/media/drv-intf/renesas-ceu.h
11487 MEDIA DRIVERS FOR RENESAS - DRIF
11488 M: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11489 L: linux-media@vger.kernel.org
11490 L: linux-renesas-soc@vger.kernel.org
11492 T: git git://linuxtv.org/media_tree.git
11493 F: Documentation/devicetree/bindings/media/renesas,drif.yaml
11494 F: drivers/media/platform/rcar_drif.c
11496 MEDIA DRIVERS FOR RENESAS - FCP
11497 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11498 L: linux-media@vger.kernel.org
11499 L: linux-renesas-soc@vger.kernel.org
11501 T: git git://linuxtv.org/media_tree.git
11502 F: Documentation/devicetree/bindings/media/renesas,fcp.yaml
11503 F: drivers/media/platform/rcar-fcp.c
11504 F: include/media/rcar-fcp.h
11506 MEDIA DRIVERS FOR RENESAS - FDP1
11507 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11508 L: linux-media@vger.kernel.org
11509 L: linux-renesas-soc@vger.kernel.org
11511 T: git git://linuxtv.org/media_tree.git
11512 F: Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11513 F: drivers/media/platform/rcar_fdp1.c
11515 MEDIA DRIVERS FOR RENESAS - VIN
11516 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
11517 L: linux-media@vger.kernel.org
11518 L: linux-renesas-soc@vger.kernel.org
11520 T: git git://linuxtv.org/media_tree.git
11521 F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
11522 F: Documentation/devicetree/bindings/media/renesas,isp.yaml
11523 F: Documentation/devicetree/bindings/media/renesas,vin.yaml
11524 F: drivers/media/platform/rcar-vin/
11526 MEDIA DRIVERS FOR RENESAS - VSP1
11527 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11528 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11529 L: linux-media@vger.kernel.org
11530 L: linux-renesas-soc@vger.kernel.org
11532 T: git git://linuxtv.org/media_tree.git
11533 F: Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11534 F: drivers/media/platform/vsp1/
11536 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11537 L: linux-media@vger.kernel.org
11539 W: https://linuxtv.org
11540 T: git git://linuxtv.org/media_tree.git
11541 F: drivers/media/dvb-frontends/stv0910*
11543 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11544 L: linux-media@vger.kernel.org
11546 W: https://linuxtv.org
11547 T: git git://linuxtv.org/media_tree.git
11548 F: drivers/media/dvb-frontends/stv6111*
11550 MEDIA DRIVERS FOR STM32 - DCMI
11551 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
11552 L: linux-media@vger.kernel.org
11554 T: git git://linuxtv.org/media_tree.git
11555 F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11556 F: drivers/media/platform/stm32/stm32-dcmi.c
11558 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11559 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11560 L: linux-media@vger.kernel.org
11562 W: https://linuxtv.org
11563 Q: http://patchwork.kernel.org/project/linux-media/list/
11564 T: git git://linuxtv.org/media_tree.git
11565 F: Documentation/admin-guide/media/
11566 F: Documentation/devicetree/bindings/media/
11567 F: Documentation/driver-api/media/
11568 F: Documentation/userspace-api/media/
11570 F: drivers/staging/media/
11571 F: include/linux/platform_data/media/
11573 F: include/uapi/linux/dvb/
11574 F: include/uapi/linux/ivtv*
11575 F: include/uapi/linux/media.h
11576 F: include/uapi/linux/meye.h
11577 F: include/uapi/linux/uvcvideo.h
11578 F: include/uapi/linux/v4l2-*
11579 F: include/uapi/linux/videodev2.h
11581 MEDIATEK BLUETOOTH DRIVER
11582 M: Sean Wang <sean.wang@mediatek.com>
11583 L: linux-bluetooth@vger.kernel.org
11584 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11586 F: Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11587 F: drivers/bluetooth/btmtkuart.c
11589 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11590 M: Sean Wang <sean.wang@mediatek.com>
11591 L: linux-pm@vger.kernel.org
11593 F: Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11594 F: drivers/power/reset/mt6323-poweroff.c
11596 MEDIATEK CIR DRIVER
11597 M: Sean Wang <sean.wang@mediatek.com>
11599 F: drivers/media/rc/mtk-cir.c
11601 MEDIATEK DMA DRIVER
11602 M: Sean Wang <sean.wang@mediatek.com>
11603 L: dmaengine@vger.kernel.org
11604 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11605 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11607 F: Documentation/devicetree/bindings/dma/mtk-*
11608 F: drivers/dma/mediatek/
11610 MEDIATEK ETHERNET DRIVER
11611 M: Felix Fietkau <nbd@nbd.name>
11612 M: John Crispin <john@phrozen.org>
11613 M: Sean Wang <sean.wang@mediatek.com>
11614 M: Mark Lee <Mark-MC.Lee@mediatek.com>
11615 L: netdev@vger.kernel.org
11617 F: drivers/net/ethernet/mediatek/
11619 MEDIATEK I2C CONTROLLER DRIVER
11620 M: Qii Wang <qii.wang@mediatek.com>
11621 L: linux-i2c@vger.kernel.org
11623 F: Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11624 F: drivers/i2c/busses/i2c-mt65xx.c
11626 MEDIATEK IOMMU DRIVER
11627 M: Yong Wu <yong.wu@mediatek.com>
11628 L: iommu@lists.linux-foundation.org
11629 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11631 F: Documentation/devicetree/bindings/iommu/mediatek*
11632 F: drivers/iommu/mtk_iommu*
11633 F: include/dt-bindings/memory/mt*-port.h
11635 MEDIATEK JPEG DRIVER
11636 M: Rick Chang <rick.chang@mediatek.com>
11637 M: Bin Liu <bin.liu@mediatek.com>
11639 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11640 F: drivers/media/platform/mtk-jpeg/
11642 MEDIATEK MDP DRIVER
11643 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11644 M: Houlong Wei <houlong.wei@mediatek.com>
11645 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11647 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
11648 F: drivers/media/platform/mtk-mdp/
11649 F: drivers/media/platform/mtk-vpu/
11651 MEDIATEK MEDIA DRIVER
11652 M: Tiffany Lin <tiffany.lin@mediatek.com>
11653 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11655 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11656 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
11657 F: drivers/media/platform/mtk-vcodec/
11658 F: drivers/media/platform/mtk-vpu/
11660 MEDIATEK MMC/SD/SDIO DRIVER
11661 M: Chaotian Jing <chaotian.jing@mediatek.com>
11663 F: Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11664 F: drivers/mmc/host/mtk-sd.c
11666 MEDIATEK MT76 WIRELESS LAN DRIVER
11667 M: Felix Fietkau <nbd@nbd.name>
11668 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11669 R: Ryder Lee <ryder.lee@mediatek.com>
11670 L: linux-wireless@vger.kernel.org
11672 F: drivers/net/wireless/mediatek/mt76/
11674 MEDIATEK MT7601U WIRELESS LAN DRIVER
11675 M: Jakub Kicinski <kubakici@wp.pl>
11676 L: linux-wireless@vger.kernel.org
11678 F: drivers/net/wireless/mediatek/mt7601u/
11680 MEDIATEK MT7621 CLOCK DRIVER
11681 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11683 F: Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11684 F: drivers/clk/ralink/clk-mt7621.c
11686 MEDIATEK MT7621/28/88 I2C DRIVER
11687 M: Stefan Roese <sr@denx.de>
11688 L: linux-i2c@vger.kernel.org
11690 F: Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11691 F: drivers/i2c/busses/i2c-mt7621.c
11693 MEDIATEK MT7621 PHY PCI DRIVER
11694 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11696 F: Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11697 F: drivers/phy/ralink/phy-mt7621-pci.c
11699 MEDIATEK NAND CONTROLLER DRIVER
11700 L: linux-mtd@lists.infradead.org
11702 F: Documentation/devicetree/bindings/mtd/mtk-nand.txt
11703 F: drivers/mtd/nand/raw/mtk_*
11705 MEDIATEK PMIC LED DRIVER
11706 M: Sean Wang <sean.wang@mediatek.com>
11708 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
11709 F: drivers/leds/leds-mt6323.c
11711 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11712 M: Sean Wang <sean.wang@mediatek.com>
11714 F: drivers/char/hw_random/mtk-rng.c
11716 MEDIATEK SWITCH DRIVER
11717 M: Sean Wang <sean.wang@mediatek.com>
11718 M: Landen Chao <Landen.Chao@mediatek.com>
11719 L: netdev@vger.kernel.org
11721 F: drivers/net/dsa/mt7530.*
11722 F: net/dsa/tag_mtk.c
11724 MEDIATEK USB3 DRD IP DRIVER
11725 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
11726 L: linux-usb@vger.kernel.org
11727 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11728 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11730 F: Documentation/devicetree/bindings/usb/mediatek,*
11731 F: drivers/usb/host/xhci-mtk*
11732 F: drivers/usb/mtu3/
11734 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11735 M: Peter Senna Tschudin <peter.senna@gmail.com>
11736 M: Martin Donnelly <martin.donnelly@ge.com>
11737 M: Martyn Welch <martyn.welch@collabora.co.uk>
11739 F: Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11740 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11742 MEGARAID SCSI/SAS DRIVERS
11743 M: Kashyap Desai <kashyap.desai@broadcom.com>
11744 M: Sumit Saxena <sumit.saxena@broadcom.com>
11745 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11746 L: megaraidlinux.pdl@broadcom.com
11747 L: linux-scsi@vger.kernel.org
11749 W: http://www.avagotech.com/support/
11750 F: Documentation/scsi/megaraid.rst
11751 F: drivers/scsi/megaraid.*
11752 F: drivers/scsi/megaraid/
11754 MELEXIS MLX90614 DRIVER
11755 M: Crt Mori <cmo@melexis.com>
11756 L: linux-iio@vger.kernel.org
11758 W: http://www.melexis.com
11759 F: drivers/iio/temperature/mlx90614.c
11761 MELEXIS MLX90632 DRIVER
11762 M: Crt Mori <cmo@melexis.com>
11763 L: linux-iio@vger.kernel.org
11765 W: http://www.melexis.com
11766 F: drivers/iio/temperature/mlx90632.c
11768 MELFAS MIP4 TOUCHSCREEN DRIVER
11769 M: Sangwon Jee <jeesw@melfas.com>
11771 W: http://www.melfas.com
11772 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11773 F: drivers/input/touchscreen/melfas_mip4.c
11775 MELLANOX BLUEFIELD I2C DRIVER
11776 M: Khalil Blaiech <kblaiech@nvidia.com>
11777 L: linux-i2c@vger.kernel.org
11779 F: Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11780 F: drivers/i2c/busses/i2c-mlxbf.c
11782 MELLANOX ETHERNET DRIVER (mlx4_en)
11783 M: Tariq Toukan <tariqt@nvidia.com>
11784 L: netdev@vger.kernel.org
11786 W: http://www.mellanox.com
11787 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11788 F: drivers/net/ethernet/mellanox/mlx4/en_*
11790 MELLANOX ETHERNET DRIVER (mlx5e)
11791 M: Saeed Mahameed <saeedm@nvidia.com>
11792 L: netdev@vger.kernel.org
11794 W: http://www.mellanox.com
11795 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11796 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
11798 MELLANOX ETHERNET INNOVA DRIVERS
11799 R: Boris Pismenny <borisp@nvidia.com>
11800 L: netdev@vger.kernel.org
11802 W: http://www.mellanox.com
11803 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11804 F: drivers/net/ethernet/mellanox/mlx5/core/accel/*
11805 F: drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11806 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11807 F: include/linux/mlx5/mlx5_ifc_fpga.h
11809 MELLANOX ETHERNET SWITCH DRIVERS
11810 M: Jiri Pirko <jiri@nvidia.com>
11811 M: Ido Schimmel <idosch@nvidia.com>
11812 L: netdev@vger.kernel.org
11814 W: http://www.mellanox.com
11815 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11816 F: drivers/net/ethernet/mellanox/mlxsw/
11817 F: tools/testing/selftests/drivers/net/mlxsw/
11819 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11820 M: mlxsw@nvidia.com
11821 L: netdev@vger.kernel.org
11823 W: http://www.mellanox.com
11824 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11825 F: drivers/net/ethernet/mellanox/mlxfw/
11827 MELLANOX HARDWARE PLATFORM SUPPORT
11828 M: Hans de Goede <hdegoede@redhat.com>
11829 M: Mark Gross <mgross@linux.intel.com>
11830 M: Vadim Pasternak <vadimp@nvidia.com>
11831 L: platform-driver-x86@vger.kernel.org
11833 F: Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11834 F: drivers/platform/mellanox/
11835 F: include/linux/platform_data/mlxreg.h
11837 MELLANOX MLX4 core VPI driver
11838 M: Tariq Toukan <tariqt@nvidia.com>
11839 L: netdev@vger.kernel.org
11840 L: linux-rdma@vger.kernel.org
11842 W: http://www.mellanox.com
11843 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11844 F: drivers/net/ethernet/mellanox/mlx4/
11845 F: include/linux/mlx4/
11847 MELLANOX MLX4 IB driver
11848 M: Yishai Hadas <yishaih@nvidia.com>
11849 L: linux-rdma@vger.kernel.org
11851 W: http://www.mellanox.com
11852 Q: http://patchwork.kernel.org/project/linux-rdma/list/
11853 F: drivers/infiniband/hw/mlx4/
11854 F: include/linux/mlx4/
11855 F: include/uapi/rdma/mlx4-abi.h
11857 MELLANOX MLX5 core VPI driver
11858 M: Saeed Mahameed <saeedm@nvidia.com>
11859 M: Leon Romanovsky <leonro@nvidia.com>
11860 L: netdev@vger.kernel.org
11861 L: linux-rdma@vger.kernel.org
11863 W: http://www.mellanox.com
11864 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11865 F: Documentation/networking/device_drivers/ethernet/mellanox/
11866 F: drivers/net/ethernet/mellanox/mlx5/core/
11867 F: include/linux/mlx5/
11869 MELLANOX MLX5 IB driver
11870 M: Leon Romanovsky <leonro@nvidia.com>
11871 L: linux-rdma@vger.kernel.org
11873 W: http://www.mellanox.com
11874 Q: http://patchwork.kernel.org/project/linux-rdma/list/
11875 F: drivers/infiniband/hw/mlx5/
11876 F: include/linux/mlx5/
11877 F: include/uapi/rdma/mlx5-abi.h
11879 MELLANOX MLXCPLD I2C AND MUX DRIVER
11880 M: Vadim Pasternak <vadimp@nvidia.com>
11881 M: Michael Shych <michaelsh@nvidia.com>
11882 L: linux-i2c@vger.kernel.org
11884 F: Documentation/i2c/busses/i2c-mlxcpld.rst
11885 F: drivers/i2c/busses/i2c-mlxcpld.c
11886 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
11888 MELLANOX MLXCPLD LED DRIVER
11889 M: Vadim Pasternak <vadimp@nvidia.com>
11890 L: linux-leds@vger.kernel.org
11892 F: Documentation/leds/leds-mlxcpld.rst
11893 F: drivers/leds/leds-mlxcpld.c
11894 F: drivers/leds/leds-mlxreg.c
11896 MELLANOX PLATFORM DRIVER
11897 M: Vadim Pasternak <vadimp@nvidia.com>
11898 L: platform-driver-x86@vger.kernel.org
11900 F: drivers/platform/x86/mlx-platform.c
11903 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11904 M: "Paul E. McKenney" <paulmck@kernel.org>
11905 L: linux-kernel@vger.kernel.org
11907 F: arch/powerpc/include/asm/membarrier.h
11908 F: include/uapi/linux/membarrier.h
11909 F: kernel/sched/membarrier.c
11912 M: Mike Rapoport <rppt@linux.ibm.com>
11913 L: linux-mm@kvack.org
11915 F: Documentation/core-api/boot-time-mm.rst
11916 F: include/linux/memblock.h
11919 MEMORY CONTROLLER DRIVERS
11920 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11921 L: linux-kernel@vger.kernel.org
11923 T: git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11924 F: Documentation/devicetree/bindings/memory-controllers/
11926 F: include/dt-bindings/memory/
11928 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11929 M: Dmitry Osipenko <digetx@gmail.com>
11930 L: linux-pm@vger.kernel.org
11931 L: linux-tegra@vger.kernel.org
11932 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11934 F: drivers/devfreq/tegra30-devfreq.c
11937 M: Andrew Morton <akpm@linux-foundation.org>
11938 L: linux-mm@kvack.org
11940 W: http://www.linux-mm.org
11941 T: quilt https://ozlabs.org/~akpm/mmotm/
11942 T: quilt https://ozlabs.org/~akpm/mmots/
11943 T: git git://github.com/hnaz/linux-mm.git
11944 F: include/linux/gfp.h
11945 F: include/linux/memory_hotplug.h
11946 F: include/linux/mm.h
11947 F: include/linux/mmzone.h
11948 F: include/linux/pagewalk.h
11949 F: include/linux/vmalloc.h
11951 F: tools/testing/selftests/vm/
11953 MEMORY TECHNOLOGY DEVICES (MTD)
11954 M: Miquel Raynal <miquel.raynal@bootlin.com>
11955 M: Richard Weinberger <richard@nod.at>
11956 M: Vignesh Raghavendra <vigneshr@ti.com>
11957 L: linux-mtd@lists.infradead.org
11959 W: http://www.linux-mtd.infradead.org/
11960 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
11961 C: irc://irc.oftc.net/mtd
11962 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11963 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11964 F: Documentation/devicetree/bindings/mtd/
11966 F: include/linux/mtd/
11967 F: include/uapi/mtd/
11969 MEN A21 WATCHDOG DRIVER
11970 M: Johannes Thumshirn <morbidrsa@gmail.com>
11971 L: linux-watchdog@vger.kernel.org
11973 F: drivers/watchdog/mena21_wdt.c
11975 MEN CHAMELEON BUS (mcb)
11976 M: Johannes Thumshirn <morbidrsa@gmail.com>
11978 F: Documentation/driver-api/men-chameleon-bus.rst
11980 F: include/linux/mcb.h
11982 MEN F21BMC (Board Management Controller)
11983 M: Andreas Werner <andreas.werner@men.de>
11985 F: Documentation/hwmon/menf21bmc.rst
11986 F: drivers/hwmon/menf21bmc_hwmon.c
11987 F: drivers/leds/leds-menf21bmc.c
11988 F: drivers/mfd/menf21bmc.c
11989 F: drivers/watchdog/menf21bmc_wdt.c
11991 MEN Z069 WATCHDOG DRIVER
11992 M: Johannes Thumshirn <jth@kernel.org>
11993 L: linux-watchdog@vger.kernel.org
11995 F: drivers/watchdog/menz69_wdt.c
11997 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11998 M: Neil Armstrong <narmstrong@baylibre.com>
11999 L: linux-media@vger.kernel.org
12000 L: linux-amlogic@lists.infradead.org
12002 W: http://linux-meson.com/
12003 T: git git://linuxtv.org/media_tree.git
12004 F: Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12005 F: drivers/media/cec/platform/meson/ao-cec-g12a.c
12006 F: drivers/media/cec/platform/meson/ao-cec.c
12008 MESON GE2D DRIVER FOR AMLOGIC SOCS
12009 M: Neil Armstrong <narmstrong@baylibre.com>
12010 L: linux-media@vger.kernel.org
12011 L: linux-amlogic@lists.infradead.org
12013 T: git git://linuxtv.org/media_tree.git
12014 F: Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12015 F: drivers/media/platform/meson/ge2d/
12017 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12018 M: Liang Yang <liang.yang@amlogic.com>
12019 L: linux-mtd@lists.infradead.org
12021 F: Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12022 F: drivers/mtd/nand/raw/meson_*
12024 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12025 M: Neil Armstrong <narmstrong@baylibre.com>
12026 L: linux-media@vger.kernel.org
12027 L: linux-amlogic@lists.infradead.org
12029 T: git git://linuxtv.org/media_tree.git
12030 F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12031 F: drivers/staging/media/meson/vdec/
12033 METHODE UDPU SUPPORT
12034 M: Vladimir Vid <vladimir.vid@sartura.hr>
12036 F: arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12039 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12040 M: Hemant Kumar <hemantk@codeaurora.org>
12041 L: linux-arm-msm@vger.kernel.org
12043 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12044 F: Documentation/ABI/stable/sysfs-bus-mhi
12045 F: Documentation/mhi/
12046 F: drivers/bus/mhi/
12047 F: include/linux/mhi.h
12049 MICROBLAZE ARCHITECTURE
12050 M: Michal Simek <monstr@monstr.eu>
12052 W: http://www.monstr.eu/fdt/
12053 T: git git://git.monstr.eu/linux-2.6-microblaze.git
12054 F: arch/microblaze/
12056 MICROCHIP AT91 DMA DRIVERS
12057 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12058 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12059 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12060 L: dmaengine@vger.kernel.org
12062 F: Documentation/devicetree/bindings/dma/atmel-dma.txt
12063 F: drivers/dma/at_hdmac.c
12064 F: drivers/dma/at_hdmac_regs.h
12065 F: drivers/dma/at_xdmac.c
12066 F: include/dt-bindings/dma/at91.h
12068 MICROCHIP AT91 SERIAL DRIVER
12069 M: Richard Genoud <richard.genoud@gmail.com>
12071 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12072 F: drivers/tty/serial/atmel_serial.c
12073 F: drivers/tty/serial/atmel_serial.h
12075 MICROCHIP AT91 USART MFD DRIVER
12076 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12077 L: linux-kernel@vger.kernel.org
12079 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12080 F: drivers/mfd/at91-usart.c
12081 F: include/dt-bindings/mfd/at91-usart.h
12083 MICROCHIP AT91 USART SPI DRIVER
12084 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12085 L: linux-spi@vger.kernel.org
12087 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12088 F: drivers/spi/spi-at91-usart.c
12090 MICROCHIP AUDIO ASOC DRIVERS
12091 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12092 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12096 MICROCHIP ECC DRIVER
12097 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12098 L: linux-crypto@vger.kernel.org
12100 F: drivers/crypto/atmel-ecc.*
12102 MICROCHIP I2C DRIVER
12103 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12104 L: linux-i2c@vger.kernel.org
12106 F: drivers/i2c/busses/i2c-at91-*.c
12107 F: drivers/i2c/busses/i2c-at91.h
12109 MICROCHIP ISC DRIVER
12110 M: Eugen Hristev <eugen.hristev@microchip.com>
12111 L: linux-media@vger.kernel.org
12113 F: Documentation/devicetree/bindings/media/atmel,isc.yaml
12114 F: Documentation/devicetree/bindings/media/microchip,xisc.yaml
12115 F: drivers/media/platform/atmel/atmel-isc-base.c
12116 F: drivers/media/platform/atmel/atmel-isc-regs.h
12117 F: drivers/media/platform/atmel/atmel-isc.h
12118 F: drivers/media/platform/atmel/atmel-sama5d2-isc.c
12119 F: drivers/media/platform/atmel/atmel-sama7g5-isc.c
12120 F: include/linux/atmel-isc-media.h
12122 MICROCHIP ISI DRIVER
12123 M: Eugen Hristev <eugen.hristev@microchip.com>
12124 L: linux-media@vger.kernel.org
12126 F: drivers/media/platform/atmel/atmel-isi.c
12127 F: drivers/media/platform/atmel/atmel-isi.h
12129 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12130 M: Woojung Huh <woojung.huh@microchip.com>
12131 M: UNGLinuxDriver@microchip.com
12132 L: netdev@vger.kernel.org
12134 F: Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12135 F: drivers/net/dsa/microchip/*
12136 F: include/linux/platform_data/microchip-ksz.h
12137 F: net/dsa/tag_ksz.c
12139 MICROCHIP LAN743X ETHERNET DRIVER
12140 M: Bryan Whitehead <bryan.whitehead@microchip.com>
12141 M: UNGLinuxDriver@microchip.com
12142 L: netdev@vger.kernel.org
12144 F: drivers/net/ethernet/microchip/lan743x_*
12146 MICROCHIP LCDFB DRIVER
12147 M: Nicolas Ferre <nicolas.ferre@microchip.com>
12148 L: linux-fbdev@vger.kernel.org
12150 F: drivers/video/fbdev/atmel_lcdfb.c
12151 F: include/video/atmel_lcdc.h
12153 MICROCHIP MCP16502 PMIC DRIVER
12154 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12155 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12157 F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12158 F: drivers/regulator/mcp16502.c
12160 MICROCHIP MCP3911 ADC DRIVER
12161 M: Marcus Folkesson <marcus.folkesson@gmail.com>
12162 M: Kent Gustavsson <kent@minoris.se>
12163 L: linux-iio@vger.kernel.org
12165 F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12166 F: drivers/iio/adc/mcp3911.c
12168 MICROCHIP MMC/SD/SDIO MCI DRIVER
12169 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12171 F: drivers/mmc/host/atmel-mci.c
12173 MICROCHIP NAND DRIVER
12174 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12175 L: linux-mtd@lists.infradead.org
12177 F: Documentation/devicetree/bindings/mtd/atmel-nand.txt
12178 F: drivers/mtd/nand/raw/atmel/*
12180 MICROCHIP PWM DRIVER
12181 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12182 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12183 L: linux-pwm@vger.kernel.org
12185 F: Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12186 F: drivers/pwm/pwm-atmel.c
12188 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12189 M: Eugen Hristev <eugen.hristev@microchip.com>
12190 L: linux-iio@vger.kernel.org
12192 F: Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12193 F: drivers/iio/adc/at91-sama5d2_adc.c
12194 F: include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12196 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12197 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12199 F: drivers/power/reset/at91-sama5d2_shdwc.c
12201 MICROCHIP SPI DRIVER
12202 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12204 F: drivers/spi/spi-atmel.*
12206 MICROCHIP SSC DRIVER
12207 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12208 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12210 F: drivers/misc/atmel-ssc.c
12211 F: include/linux/atmel-ssc.h
12213 MICROCHIP USB251XB DRIVER
12214 M: Richard Leitner <richard.leitner@skidata.com>
12215 L: linux-usb@vger.kernel.org
12217 F: Documentation/devicetree/bindings/usb/usb251xb.txt
12218 F: drivers/usb/misc/usb251xb.c
12220 MICROCHIP USBA UDC DRIVER
12221 M: Cristian Birsan <cristian.birsan@microchip.com>
12222 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12224 F: drivers/usb/gadget/udc/atmel_usba_udc.*
12226 MICROCHIP WILC1000 WIFI DRIVER
12227 M: Ajay Singh <ajay.kathat@microchip.com>
12228 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12229 L: linux-wireless@vger.kernel.org
12231 F: drivers/net/wireless/microchip/wilc1000/
12233 MICROSEMI MIPS SOCS
12234 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
12235 M: UNGLinuxDriver@microchip.com
12236 L: linux-mips@vger.kernel.org
12238 F: Documentation/devicetree/bindings/mips/mscc.txt
12239 F: Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12240 F: arch/mips/boot/dts/mscc/
12241 F: arch/mips/configs/generic/board-ocelot.config
12242 F: arch/mips/generic/board-ocelot.c
12244 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12245 M: Don Brace <don.brace@microchip.com>
12246 L: storagedev@microchip.com
12247 L: linux-scsi@vger.kernel.org
12249 F: Documentation/scsi/smartpqi.rst
12250 F: drivers/scsi/smartpqi/Kconfig
12251 F: drivers/scsi/smartpqi/Makefile
12252 F: drivers/scsi/smartpqi/smartpqi*.[ch]
12253 F: include/linux/cciss*.h
12254 F: include/uapi/linux/cciss*.h
12256 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12257 M: Maximilian Luz <luzmaximilian@gmail.com>
12258 L: linux-pm@vger.kernel.org
12259 L: platform-driver-x86@vger.kernel.org
12261 F: drivers/power/supply/surface_battery.c
12262 F: drivers/power/supply/surface_charger.c
12264 MICROSOFT SURFACE DTX DRIVER
12265 M: Maximilian Luz <luzmaximilian@gmail.com>
12266 L: platform-driver-x86@vger.kernel.org
12268 F: Documentation/driver-api/surface_aggregator/clients/dtx.rst
12269 F: drivers/platform/surface/surface_dtx.c
12270 F: include/uapi/linux/surface_aggregator/dtx.h
12272 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12273 M: Maximilian Luz <luzmaximilian@gmail.com>
12274 L: platform-driver-x86@vger.kernel.org
12276 F: drivers/platform/surface/surface_gpe.c
12278 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12279 M: Hans de Goede <hdegoede@redhat.com>
12280 M: Mark Gross <mgross@linux.intel.com>
12281 M: Maximilian Luz <luzmaximilian@gmail.com>
12282 L: platform-driver-x86@vger.kernel.org
12284 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12285 F: drivers/platform/surface/
12287 MICROSOFT SURFACE HID TRANSPORT DRIVER
12288 M: Maximilian Luz <luzmaximilian@gmail.com>
12289 L: linux-input@vger.kernel.org
12290 L: platform-driver-x86@vger.kernel.org
12292 F: drivers/hid/surface-hid/
12294 MICROSOFT SURFACE HOT-PLUG DRIVER
12295 M: Maximilian Luz <luzmaximilian@gmail.com>
12296 L: platform-driver-x86@vger.kernel.org
12298 F: drivers/platform/surface/surface_hotplug.c
12300 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12301 M: Maximilian Luz <luzmaximilian@gmail.com>
12302 L: platform-driver-x86@vger.kernel.org
12304 F: drivers/platform/surface/surface_platform_profile.c
12306 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12307 M: Chen Yu <yu.c.chen@intel.com>
12308 L: platform-driver-x86@vger.kernel.org
12310 F: drivers/platform/surface/surfacepro3_button.c
12312 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12313 M: Maximilian Luz <luzmaximilian@gmail.com>
12314 L: platform-driver-x86@vger.kernel.org
12316 W: https://github.com/linux-surface/surface-aggregator-module
12317 C: irc://irc.libera.chat/linux-surface
12318 F: Documentation/driver-api/surface_aggregator/
12319 F: drivers/platform/surface/aggregator/
12320 F: drivers/platform/surface/surface_acpi_notify.c
12321 F: drivers/platform/surface/surface_aggregator_cdev.c
12322 F: drivers/platform/surface/surface_aggregator_registry.c
12323 F: include/linux/surface_acpi_notify.h
12324 F: include/linux/surface_aggregator/
12325 F: include/uapi/linux/surface_aggregator/
12327 MICROTEK X6 SCANNER
12328 M: Oliver Neukum <oliver@neukum.org>
12330 F: drivers/usb/image/microtek.*
12332 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12333 M: Luka Kovacic <luka.kovacic@sartura.hr>
12334 M: Luka Perkov <luka.perkov@sartura.hr>
12336 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12337 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12338 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12339 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12340 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12341 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12343 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12344 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12345 L: linux-media@vger.kernel.org
12347 F: Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12348 F: Documentation/driver-api/media/drivers/ccs/
12349 F: Documentation/userspace-api/media/drivers/ccs.rst
12350 F: drivers/media/i2c/ccs-pll.c
12351 F: drivers/media/i2c/ccs-pll.h
12352 F: drivers/media/i2c/ccs/
12353 F: include/uapi/linux/ccs.h
12354 F: include/uapi/linux/smiapp.h
12357 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12358 L: linux-mips@vger.kernel.org
12360 W: http://www.linux-mips.org/
12361 Q: https://patchwork.kernel.org/project/linux-mips/list/
12362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12363 F: Documentation/devicetree/bindings/mips/
12364 F: Documentation/mips/
12366 F: drivers/platform/mips/
12368 MIPS BOSTON DEVELOPMENT BOARD
12369 M: Paul Burton <paulburton@kernel.org>
12370 L: linux-mips@vger.kernel.org
12372 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
12373 F: arch/mips/boot/dts/img/boston.dts
12374 F: arch/mips/configs/generic/board-boston.config
12375 F: drivers/clk/imgtec/clk-boston.c
12376 F: include/dt-bindings/clock/boston-clock.h
12379 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12380 M: Serge Semin <fancer.lancer@gmail.com>
12381 L: linux-mips@vger.kernel.org
12383 F: drivers/bus/mips_cdmm.c
12384 F: drivers/clocksource/mips-gic-timer.c
12385 F: drivers/cpuidle/cpuidle-cps.c
12386 F: drivers/irqchip/irq-mips-cpu.c
12387 F: drivers/irqchip/irq-mips-gic.c
12389 MIPS GENERIC PLATFORM
12390 M: Paul Burton <paulburton@kernel.org>
12391 L: linux-mips@vger.kernel.org
12393 F: Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12394 F: arch/mips/generic/
12395 F: arch/mips/tools/generic-board-config.sh
12397 MIPS RINT INSTRUCTION EMULATION
12398 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
12399 L: linux-mips@vger.kernel.org
12401 F: arch/mips/math-emu/dp_rint.c
12402 F: arch/mips/math-emu/sp_rint.c
12404 MIPS/LOONGSON1 ARCHITECTURE
12405 M: Keguang Zhang <keguang.zhang@gmail.com>
12406 L: linux-mips@vger.kernel.org
12408 F: arch/mips/include/asm/mach-loongson32/
12409 F: arch/mips/loongson32/
12410 F: drivers/*/*/*loongson1*
12411 F: drivers/*/*loongson1*
12413 MIPS/LOONGSON2EF ARCHITECTURE
12414 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12415 L: linux-mips@vger.kernel.org
12417 F: arch/mips/include/asm/mach-loongson2ef/
12418 F: arch/mips/loongson2ef/
12419 F: drivers/cpufreq/loongson2_cpufreq.c
12421 MIPS/LOONGSON64 ARCHITECTURE
12422 M: Huacai Chen <chenhuacai@kernel.org>
12423 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12424 L: linux-mips@vger.kernel.org
12426 F: arch/mips/include/asm/mach-loongson64/
12427 F: arch/mips/loongson64/
12428 F: drivers/irqchip/irq-loongson*
12429 F: drivers/platform/mips/cpu_hwmon.c
12431 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12432 M: Hans Verkuil <hverkuil@xs4all.nl>
12433 L: linux-media@vger.kernel.org
12435 W: https://linuxtv.org
12436 T: git git://linuxtv.org/media_tree.git
12437 F: drivers/media/radio/radio-miropcm20*
12440 R: Lubomir Rintel <lkundrak@v3.sk>
12441 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12443 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12444 F: arch/arm/boot/dts/mmp*
12445 F: arch/arm/mach-mmp/
12446 F: include/linux/soc/mmp/
12448 MMP USB PHY DRIVERS
12449 R: Lubomir Rintel <lkundrak@v3.sk>
12450 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12452 F: drivers/phy/marvell/phy-mmp3-usb.c
12453 F: drivers/phy/marvell/phy-pxa-usb.c
12455 MMU GATHER AND TLB INVALIDATION
12456 M: Will Deacon <will@kernel.org>
12457 M: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12458 M: Andrew Morton <akpm@linux-foundation.org>
12459 M: Nick Piggin <npiggin@gmail.com>
12460 M: Peter Zijlstra <peterz@infradead.org>
12461 L: linux-arch@vger.kernel.org
12462 L: linux-mm@kvack.org
12464 F: arch/*/include/asm/tlb.h
12465 F: include/asm-generic/tlb.h
12468 MN88472 MEDIA DRIVER
12469 M: Antti Palosaari <crope@iki.fi>
12470 L: linux-media@vger.kernel.org
12472 W: https://linuxtv.org
12473 W: http://palosaari.fi/linux/
12474 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12475 F: drivers/media/dvb-frontends/mn88472*
12477 MN88473 MEDIA DRIVER
12478 M: Antti Palosaari <crope@iki.fi>
12479 L: linux-media@vger.kernel.org
12481 W: https://linuxtv.org
12482 W: http://palosaari.fi/linux/
12483 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12484 F: drivers/media/dvb-frontends/mn88473*
12487 M: Jessica Yu <jeyu@kernel.org>
12489 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12490 F: include/linux/module.h
12493 MONOLITHIC POWER SYSTEM PMIC DRIVER
12494 M: Saravanan Sekar <sravanhome@gmail.com>
12496 F: Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12497 F: Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12498 F: drivers/iio/adc/mp2629_adc.c
12499 F: drivers/mfd/mp2629.c
12500 F: drivers/power/supply/mp2629_charger.c
12501 F: drivers/regulator/mp5416.c
12502 F: drivers/regulator/mpq7920.c
12503 F: drivers/regulator/mpq7920.h
12504 F: include/linux/mfd/mp2629.h
12506 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12508 W: http://popies.net/meye/
12509 F: Documentation/userspace-api/media/drivers/meye*
12510 F: drivers/media/pci/meye/
12511 F: include/uapi/linux/meye.h
12513 MOTORCOMM PHY DRIVER
12514 M: Peter Geis <pgwipeout@gmail.com>
12515 L: netdev@vger.kernel.org
12517 F: drivers/net/phy/motorcomm.c
12519 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12521 F: Documentation/driver-api/serial/moxa-smartio.rst
12522 F: drivers/tty/mxser.*
12524 MR800 AVERMEDIA USB FM RADIO DRIVER
12525 M: Alexey Klimov <klimov.linux@gmail.com>
12526 L: linux-media@vger.kernel.org
12528 T: git git://linuxtv.org/media_tree.git
12529 F: drivers/media/radio/radio-mr800.c
12531 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12532 M: Alan Ott <alan@signal11.us>
12533 L: linux-wpan@vger.kernel.org
12535 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12536 F: drivers/net/ieee802154/mrf24j40.c
12539 M: "Lee, Chun-Yi" <jlee@suse.com>
12540 L: platform-driver-x86@vger.kernel.org
12542 F: drivers/platform/x86/msi-laptop.c
12545 L: platform-driver-x86@vger.kernel.org
12547 F: drivers/platform/x86/msi-wmi.c
12549 MSI001 MEDIA DRIVER
12550 M: Antti Palosaari <crope@iki.fi>
12551 L: linux-media@vger.kernel.org
12553 W: https://linuxtv.org
12554 W: http://palosaari.fi/linux/
12555 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12556 T: git git://linuxtv.org/anttip/media_tree.git
12557 F: drivers/media/tuners/msi001*
12559 MSI2500 MEDIA DRIVER
12560 M: Antti Palosaari <crope@iki.fi>
12561 L: linux-media@vger.kernel.org
12563 W: https://linuxtv.org
12564 W: http://palosaari.fi/linux/
12565 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12566 T: git git://linuxtv.org/anttip/media_tree.git
12567 F: drivers/media/usb/msi2500/
12569 MSTAR INTERRUPT CONTROLLER DRIVER
12570 M: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12571 M: Daniel Palmer <daniel@thingy.jp>
12573 F: Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12574 F: drivers/irqchip/irq-mst-intc.c
12576 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12577 M: Robert Jarzmik <robert.jarzmik@free.fr>
12578 L: linux-mtd@lists.infradead.org
12580 F: drivers/mtd/devices/docg3*
12582 MT9M032 APTINA SENSOR DRIVER
12583 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12584 L: linux-media@vger.kernel.org
12586 T: git git://linuxtv.org/media_tree.git
12587 F: drivers/media/i2c/mt9m032.c
12588 F: include/media/i2c/mt9m032.h
12590 MT9P031 APTINA CAMERA SENSOR
12591 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12592 L: linux-media@vger.kernel.org
12594 T: git git://linuxtv.org/media_tree.git
12595 F: drivers/media/i2c/mt9p031.c
12596 F: include/media/i2c/mt9p031.h
12598 MT9T001 APTINA CAMERA SENSOR
12599 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12600 L: linux-media@vger.kernel.org
12602 T: git git://linuxtv.org/media_tree.git
12603 F: drivers/media/i2c/mt9t001.c
12604 F: include/media/i2c/mt9t001.h
12606 MT9T112 APTINA CAMERA SENSOR
12607 M: Jacopo Mondi <jacopo@jmondi.org>
12608 L: linux-media@vger.kernel.org
12610 T: git git://linuxtv.org/media_tree.git
12611 F: drivers/media/i2c/mt9t112.c
12612 F: include/media/i2c/mt9t112.h
12614 MT9V032 APTINA CAMERA SENSOR
12615 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12616 L: linux-media@vger.kernel.org
12618 T: git git://linuxtv.org/media_tree.git
12619 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12620 F: drivers/media/i2c/mt9v032.c
12621 F: include/media/i2c/mt9v032.h
12623 MT9V111 APTINA CAMERA SENSOR
12624 M: Jacopo Mondi <jacopo@jmondi.org>
12625 L: linux-media@vger.kernel.org
12627 T: git git://linuxtv.org/media_tree.git
12628 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12629 F: drivers/media/i2c/mt9v111.c
12631 MULTIFUNCTION DEVICES (MFD)
12632 M: Lee Jones <lee.jones@linaro.org>
12634 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12635 F: Documentation/devicetree/bindings/mfd/
12637 F: include/dt-bindings/mfd/
12638 F: include/linux/mfd/
12640 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12642 F: drivers/mmc/host/mmc_spi.c
12643 F: include/linux/spi/mmc_spi.h
12645 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12646 M: Ulf Hansson <ulf.hansson@linaro.org>
12647 L: linux-mmc@vger.kernel.org
12649 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12650 F: Documentation/devicetree/bindings/mmc/
12652 F: include/linux/mmc/
12653 F: include/uapi/linux/mmc/
12655 MULTIPLEXER SUBSYSTEM
12656 M: Peter Rosin <peda@axentia.se>
12658 F: Documentation/ABI/testing/sysfs-class-mux*
12659 F: Documentation/devicetree/bindings/mux/
12661 F: include/dt-bindings/mux/
12662 F: include/linux/mux/
12664 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12665 M: Bin Liu <b-liu@ti.com>
12666 L: linux-usb@vger.kernel.org
12668 F: drivers/usb/musb/
12670 MXL301RF MEDIA DRIVER
12671 M: Akihiro Tsukada <tskd08@gmail.com>
12672 L: linux-media@vger.kernel.org
12674 F: drivers/media/tuners/mxl301rf*
12676 MXL5007T MEDIA DRIVER
12677 M: Michael Krufky <mkrufky@linuxtv.org>
12678 L: linux-media@vger.kernel.org
12680 W: https://linuxtv.org
12681 W: http://github.com/mkrufky
12682 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12683 T: git git://linuxtv.org/mkrufky/tuners.git
12684 F: drivers/media/tuners/mxl5007t.*
12687 M: Marek Vasut <marex@denx.de>
12688 M: Stefan Agner <stefan@agner.ch>
12689 L: dri-devel@lists.freedesktop.org
12691 T: git git://anongit.freedesktop.org/drm/drm-misc
12692 F: Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12693 F: drivers/gpu/drm/mxsfb/
12695 MYLEX DAC960 PCI RAID Controller
12696 M: Hannes Reinecke <hare@kernel.org>
12697 L: linux-scsi@vger.kernel.org
12699 F: drivers/scsi/myrb.*
12700 F: drivers/scsi/myrs.*
12702 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12703 M: Chris Lee <christopher.lee@cspi.com>
12704 L: netdev@vger.kernel.org
12706 W: https://www.cspi.com/ethernet-products/support/downloads/
12707 F: drivers/net/ethernet/myricom/myri10ge/
12709 NAND FLASH SUBSYSTEM
12710 M: Miquel Raynal <miquel.raynal@bootlin.com>
12711 R: Richard Weinberger <richard@nod.at>
12712 L: linux-mtd@lists.infradead.org
12714 W: http://www.linux-mtd.infradead.org/
12715 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12716 C: irc://irc.oftc.net/mtd
12717 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12718 F: drivers/mtd/nand/
12719 F: include/linux/mtd/*nand*.h
12721 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12722 M: Daniel Mack <zonque@gmail.com>
12723 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12725 W: http://www.native-instruments.com
12726 F: sound/usb/caiaq/
12728 NATSEMI ETHERNET DRIVER (DP8381x)
12730 F: drivers/net/ethernet/natsemi/natsemi.c
12732 NCR 5380 SCSI DRIVERS
12733 M: Finn Thain <fthain@linux-m68k.org>
12734 M: Michael Schmitz <schmitzmic@gmail.com>
12735 L: linux-scsi@vger.kernel.org
12737 F: Documentation/scsi/g_NCR5380.rst
12738 F: drivers/scsi/NCR5380.*
12739 F: drivers/scsi/arm/cumana_1.c
12740 F: drivers/scsi/arm/oak.c
12741 F: drivers/scsi/atari_scsi.*
12742 F: drivers/scsi/dmx3191d.c
12743 F: drivers/scsi/g_NCR5380.*
12744 F: drivers/scsi/mac_scsi.*
12745 F: drivers/scsi/sun3_scsi.*
12746 F: drivers/scsi/sun3_scsi_vme.c
12749 M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
12753 NCT6775 HARDWARE MONITOR DRIVER
12754 M: Guenter Roeck <linux@roeck-us.net>
12755 L: linux-hwmon@vger.kernel.org
12757 F: Documentation/hwmon/nct6775.rst
12758 F: drivers/hwmon/nct6775.c
12761 M: Jakub Kicinski <kuba@kernel.org>
12763 F: drivers/net/netdevsim/*
12765 NETEM NETWORK EMULATOR
12766 M: Stephen Hemminger <stephen@networkplumber.org>
12767 L: netdev@vger.kernel.org
12769 F: net/sched/sch_netem.c
12771 NETERION 10GbE DRIVERS (s2io/vxge)
12772 M: Jon Mason <jdmason@kudzu.us>
12773 L: netdev@vger.kernel.org
12775 F: Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12776 F: Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12777 F: drivers/net/ethernet/neterion/
12780 M: Pablo Neira Ayuso <pablo@netfilter.org>
12781 M: Jozsef Kadlecsik <kadlec@netfilter.org>
12782 M: Florian Westphal <fw@strlen.de>
12783 L: netfilter-devel@vger.kernel.org
12784 L: coreteam@netfilter.org
12786 W: http://www.netfilter.org/
12787 W: http://www.iptables.org/
12788 W: http://www.nftables.org/
12789 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
12790 C: irc://irc.libera.chat/netfilter
12791 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12792 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12793 F: include/linux/netfilter*
12794 F: include/linux/netfilter/
12795 F: include/net/netfilter/
12796 F: include/uapi/linux/netfilter*
12797 F: include/uapi/linux/netfilter/
12798 F: net/*/netfilter.c
12799 F: net/*/netfilter/
12800 F: net/bridge/br_netfilter*.c
12803 NETROM NETWORK LAYER
12804 M: Ralf Baechle <ralf@linux-mips.org>
12805 L: linux-hams@vger.kernel.org
12807 W: http://www.linux-ax25.org/
12808 F: include/net/netrom.h
12809 F: include/uapi/linux/netrom.h
12812 NETRONIX EMBEDDED CONTROLLER
12813 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
12815 F: Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12816 F: drivers/mfd/ntxec.c
12817 F: drivers/pwm/pwm-ntxec.c
12818 F: drivers/rtc/rtc-ntxec.c
12819 F: include/linux/mfd/ntxec.h
12821 NETRONOME ETHERNET DRIVERS
12822 M: Simon Horman <simon.horman@corigine.com>
12823 R: Jakub Kicinski <kuba@kernel.org>
12824 L: oss-drivers@corigine.com
12826 F: drivers/net/ethernet/netronome/
12828 NETWORK BLOCK DEVICE (NBD)
12829 M: Josef Bacik <josef@toxicpanda.com>
12830 L: linux-block@vger.kernel.org
12831 L: nbd@other.debian.org
12833 F: Documentation/admin-guide/blockdev/nbd.rst
12834 F: drivers/block/nbd.c
12835 F: include/trace/events/nbd.h
12836 F: include/uapi/linux/nbd.h
12838 NETWORK DROP MONITOR
12839 M: Neil Horman <nhorman@tuxdriver.com>
12840 L: netdev@vger.kernel.org
12842 W: https://fedorahosted.org/dropwatch/
12843 F: include/uapi/linux/net_dropmon.h
12844 F: net/core/drop_monitor.c
12847 M: "David S. Miller" <davem@davemloft.net>
12848 M: Jakub Kicinski <kuba@kernel.org>
12849 L: netdev@vger.kernel.org
12851 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12852 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12853 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12854 F: Documentation/devicetree/bindings/net/
12855 F: drivers/connector/
12857 F: include/linux/etherdevice.h
12858 F: include/linux/fcdevice.h
12859 F: include/linux/fddidevice.h
12860 F: include/linux/hippidevice.h
12861 F: include/linux/if_*
12862 F: include/linux/inetdevice.h
12863 F: include/linux/netdevice.h
12864 F: include/uapi/linux/if_*
12865 F: include/uapi/linux/netdevice.h
12867 NETWORKING DRIVERS (WIRELESS)
12868 M: Kalle Valo <kvalo@codeaurora.org>
12869 L: linux-wireless@vger.kernel.org
12871 Q: http://patchwork.kernel.org/project/linux-wireless/list/
12872 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12873 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12874 F: Documentation/devicetree/bindings/net/wireless/
12875 F: drivers/net/wireless/
12878 M: Andrew Lunn <andrew@lunn.ch>
12879 M: Vivien Didelot <vivien.didelot@gmail.com>
12880 M: Florian Fainelli <f.fainelli@gmail.com>
12881 M: Vladimir Oltean <olteanv@gmail.com>
12883 F: Documentation/devicetree/bindings/net/dsa/
12884 F: drivers/net/dsa/
12885 F: include/linux/dsa/
12886 F: include/linux/platform_data/dsa.h
12887 F: include/net/dsa.h
12890 NETWORKING [GENERAL]
12891 M: "David S. Miller" <davem@davemloft.net>
12892 M: Jakub Kicinski <kuba@kernel.org>
12893 L: netdev@vger.kernel.org
12895 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12896 B: mailto:netdev@vger.kernel.org
12897 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12898 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12899 F: Documentation/networking/
12900 F: include/linux/in.h
12901 F: include/linux/net.h
12902 F: include/linux/netdevice.h
12904 F: include/uapi/linux/in.h
12905 F: include/uapi/linux/net.h
12906 F: include/uapi/linux/net_namespace.h
12907 F: include/uapi/linux/netdevice.h
12911 F: tools/testing/selftests/net/
12914 M: Steffen Klassert <steffen.klassert@secunet.com>
12915 M: Herbert Xu <herbert@gondor.apana.org.au>
12916 M: "David S. Miller" <davem@davemloft.net>
12917 L: netdev@vger.kernel.org
12919 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12920 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12921 F: include/net/xfrm.h
12922 F: include/uapi/linux/xfrm.h
12925 F: net/ipv4/ip_vti.c
12926 F: net/ipv4/ipcomp.c
12930 F: net/ipv6/ip6_vti.c
12931 F: net/ipv6/ipcomp6.c
12935 F: tools/testing/selftests/net/ipsec.c
12937 NETWORKING [IPv4/IPv6]
12938 M: "David S. Miller" <davem@davemloft.net>
12939 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12940 M: David Ahern <dsahern@kernel.org>
12941 L: netdev@vger.kernel.org
12943 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12949 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12950 M: Paul Moore <paul@paul-moore.com>
12951 L: netdev@vger.kernel.org
12952 L: linux-security-module@vger.kernel.org
12954 W: https://github.com/netlabel
12955 F: Documentation/netlabel/
12956 F: include/net/calipso.h
12957 F: include/net/cipso_ipv4.h
12958 F: include/net/netlabel.h
12959 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
12960 F: include/uapi/linux/netfilter/xt_SECMARK.h
12961 F: net/ipv4/cipso_ipv4.c
12962 F: net/ipv6/calipso.c
12963 F: net/netfilter/xt_CONNSECMARK.c
12964 F: net/netfilter/xt_SECMARK.c
12968 M: Mat Martineau <mathew.j.martineau@linux.intel.com>
12969 M: Matthieu Baerts <matthieu.baerts@tessares.net>
12970 L: netdev@vger.kernel.org
12971 L: mptcp@lists.linux.dev
12973 W: https://github.com/multipath-tcp/mptcp_net-next/wiki
12974 B: https://github.com/multipath-tcp/mptcp_net-next/issues
12975 F: Documentation/networking/mptcp-sysctl.rst
12976 F: include/net/mptcp.h
12977 F: include/trace/events/mptcp.h
12978 F: include/uapi/linux/mptcp.h
12980 F: tools/testing/selftests/net/mptcp/
12983 M: Eric Dumazet <edumazet@google.com>
12984 L: netdev@vger.kernel.org
12986 F: include/linux/tcp.h
12987 F: include/net/tcp.h
12988 F: include/trace/events/tcp.h
12989 F: include/uapi/linux/tcp.h
12990 F: net/ipv4/syncookies.c
12992 F: net/ipv6/syncookies.c
12996 M: Boris Pismenny <borisp@nvidia.com>
12997 M: John Fastabend <john.fastabend@gmail.com>
12998 M: Daniel Borkmann <daniel@iogearbox.net>
12999 M: Jakub Kicinski <kuba@kernel.org>
13000 L: netdev@vger.kernel.org
13002 F: include/net/tls.h
13003 F: include/uapi/linux/tls.h
13006 NETWORKING [WIRELESS]
13007 L: linux-wireless@vger.kernel.org
13008 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13010 NETXEN (1/10) GbE SUPPORT
13011 M: Manish Chopra <manishc@marvell.com>
13012 M: Rahul Verma <rahulv@marvell.com>
13013 M: GR-Linux-NIC-Dev@marvell.com
13014 L: netdev@vger.kernel.org
13016 F: drivers/net/ethernet/qlogic/netxen/
13018 NET_FAILOVER MODULE
13019 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
13020 L: netdev@vger.kernel.org
13022 F: Documentation/networking/net_failover.rst
13023 F: drivers/net/net_failover.c
13024 F: include/net/net_failover.h
13027 M: David Ahern <dsahern@kernel.org>
13028 L: netdev@vger.kernel.org
13030 F: include/net/netns/nexthop.h
13031 F: include/net/nexthop.h
13032 F: include/uapi/linux/nexthop.h
13033 F: net/ipv4/nexthop.c
13036 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13037 L: linux-nfc@lists.01.org (subscribers-only)
13038 L: netdev@vger.kernel.org
13040 F: Documentation/devicetree/bindings/net/nfc/
13042 F: include/linux/platform_data/nfcmrvl.h
13043 F: include/net/nfc/
13044 F: include/uapi/linux/nfc.h
13047 NFC VIRTUAL NCI DEVICE DRIVER
13048 M: Bongsu Jeon <bongsu.jeon@samsung.com>
13049 L: netdev@vger.kernel.org
13050 L: linux-nfc@lists.01.org (subscribers-only)
13052 F: drivers/nfc/virtual_ncidev.c
13053 F: tools/testing/selftests/nci/
13055 NFS, SUNRPC, AND LOCKD CLIENTS
13056 M: Trond Myklebust <trond.myklebust@hammerspace.com>
13057 M: Anna Schumaker <anna.schumaker@netapp.com>
13058 L: linux-nfs@vger.kernel.org
13060 W: http://client.linux-nfs.org
13061 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13065 F: include/linux/lockd/
13066 F: include/linux/nfs*
13067 F: include/linux/sunrpc/
13068 F: include/uapi/linux/nfs*
13069 F: include/uapi/linux/sunrpc/
13071 F: Documentation/filesystems/nfs/
13074 M: Ryusuke Konishi <konishi.ryusuke@gmail.com>
13075 L: linux-nilfs@vger.kernel.org
13077 W: https://nilfs.sourceforge.io/
13078 W: https://nilfs.osdn.jp/
13079 T: git git://github.com/konis/nilfs2.git
13080 F: Documentation/filesystems/nilfs2.rst
13082 F: include/trace/events/nilfs2.h
13083 F: include/uapi/linux/nilfs2_api.h
13084 F: include/uapi/linux/nilfs2_ondisk.h
13086 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13087 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13089 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13090 F: Documentation/scsi/NinjaSCSI.rst
13091 F: drivers/scsi/pcmcia/nsp_*
13093 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13094 M: GOTO Masanori <gotom@debian.or.jp>
13095 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13097 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13098 F: Documentation/scsi/NinjaSCSI.rst
13099 F: drivers/scsi/nsp32*
13102 M: Ley Foon Tan <ley.foon.tan@intel.com>
13104 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
13107 NITRO ENCLAVES (NE)
13108 M: Andra Paraschiv <andraprs@amazon.com>
13109 M: Alexandru Vasile <lexnv@amazon.com>
13110 M: Alexandru Ciobotaru <alcioa@amazon.com>
13111 L: linux-kernel@vger.kernel.org
13113 W: https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13114 F: Documentation/virt/ne_overview.rst
13115 F: drivers/virt/nitro_enclaves/
13116 F: include/linux/nitro_enclaves.h
13117 F: include/uapi/linux/nitro_enclaves.h
13118 F: samples/nitro_enclaves/
13120 NOHZ, DYNTICKS SUPPORT
13121 M: Frederic Weisbecker <fweisbec@gmail.com>
13122 M: Thomas Gleixner <tglx@linutronix.de>
13123 M: Ingo Molnar <mingo@kernel.org>
13124 L: linux-kernel@vger.kernel.org
13126 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13127 F: include/linux/sched/nohz.h
13128 F: include/linux/tick.h
13129 F: kernel/time/tick*.*
13131 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13132 M: Pavel Machek <pavel@ucw.cz>
13133 M: Sakari Ailus <sakari.ailus@iki.fi>
13134 L: linux-media@vger.kernel.org
13136 F: drivers/media/i2c/ad5820.c
13137 F: drivers/media/i2c/et8ek8
13139 NOKIA N900 POWER SUPPLY DRIVERS
13140 R: Pali Rohár <pali@kernel.org>
13141 F: drivers/power/supply/bq2415x_charger.c
13142 F: drivers/power/supply/bq27xxx_battery.c
13143 F: drivers/power/supply/bq27xxx_battery_i2c.c
13144 F: drivers/power/supply/isp1704_charger.c
13145 F: drivers/power/supply/rx51_battery.c
13146 F: include/linux/power/bq2415x_charger.h
13147 F: include/linux/power/bq27xxx_battery.h
13150 M: Willy Tarreau <w@1wt.eu>
13152 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13153 F: tools/include/nolibc/
13156 M: Matthias Maennich <maennich@google.com>
13158 F: Documentation/core-api/symbol-namespaces.rst
13162 M: Sanjay R Mehta <sanju.mehta@amd.com>
13163 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13164 L: linux-ntb@googlegroups.com
13166 F: drivers/ntb/hw/amd/
13169 M: Jon Mason <jdmason@kudzu.us>
13170 M: Dave Jiang <dave.jiang@intel.com>
13171 M: Allen Hubbe <allenbh@gmail.com>
13172 L: linux-ntb@googlegroups.com
13174 W: https://github.com/jonmason/ntb/wiki
13175 T: git git://github.com/jonmason/ntb.git
13176 F: drivers/net/ntb_netdev.c
13178 F: include/linux/ntb.h
13179 F: include/linux/ntb_transport.h
13180 F: tools/testing/selftests/ntb/
13183 M: Serge Semin <fancer.lancer@gmail.com>
13184 L: linux-ntb@googlegroups.com
13186 F: drivers/ntb/hw/idt/
13189 M: Dave Jiang <dave.jiang@intel.com>
13190 L: linux-ntb@googlegroups.com
13192 W: https://github.com/davejiang/linux/wiki
13193 T: git https://github.com/davejiang/linux.git
13194 F: drivers/ntb/hw/intel/
13197 M: Anton Altaparmakov <anton@tuxera.com>
13198 L: linux-ntfs-dev@lists.sourceforge.net
13200 W: http://www.tuxera.com/
13201 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13202 F: Documentation/filesystems/ntfs.rst
13206 M: Finn Thain <fthain@linux-m68k.org>
13207 L: linux-m68k@lists.linux-m68k.org
13209 F: arch/*/include/asm/nubus.h
13211 F: include/linux/nubus.h
13212 F: include/uapi/linux/nubus.h
13214 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13215 M: Antonino Daplas <adaplas@gmail.com>
13216 L: linux-fbdev@vger.kernel.org
13218 F: drivers/video/fbdev/nvidia/
13219 F: drivers/video/fbdev/riva/
13222 M: Keith Busch <kbusch@kernel.org>
13223 M: Jens Axboe <axboe@fb.com>
13224 M: Christoph Hellwig <hch@lst.de>
13225 M: Sagi Grimberg <sagi@grimberg.me>
13226 L: linux-nvme@lists.infradead.org
13228 W: http://git.infradead.org/nvme.git
13229 T: git://git.infradead.org/nvme.git
13230 F: drivers/nvme/host/
13231 F: include/linux/nvme.h
13232 F: include/uapi/linux/nvme_ioctl.h
13234 NVM EXPRESS FC TRANSPORT DRIVERS
13235 M: James Smart <james.smart@broadcom.com>
13236 L: linux-nvme@lists.infradead.org
13238 F: drivers/nvme/host/fc.c
13239 F: drivers/nvme/target/fc.c
13240 F: drivers/nvme/target/fcloop.c
13241 F: include/linux/nvme-fc-driver.h
13242 F: include/linux/nvme-fc.h
13244 NVM EXPRESS TARGET DRIVER
13245 M: Christoph Hellwig <hch@lst.de>
13246 M: Sagi Grimberg <sagi@grimberg.me>
13247 M: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
13248 L: linux-nvme@lists.infradead.org
13250 W: http://git.infradead.org/nvme.git
13251 T: git://git.infradead.org/nvme.git
13252 F: drivers/nvme/target/
13255 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13257 T: git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13258 F: Documentation/ABI/stable/sysfs-bus-nvmem
13259 F: Documentation/devicetree/bindings/nvmem/
13261 F: include/linux/nvmem-consumer.h
13262 F: include/linux/nvmem-provider.h
13264 NXP C45 TJA11XX PHY DRIVER
13265 M: Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13266 L: netdev@vger.kernel.org
13268 F: drivers/net/phy/nxp-c45-tja11xx.c
13271 M: Ashish Kumar <ashish.kumar@nxp.com>
13272 R: Yogesh Gaur <yogeshgaur.83@gmail.com>
13273 L: linux-spi@vger.kernel.org
13275 F: Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13276 F: drivers/spi/spi-nxp-fspi.c
13278 NXP FXAS21002C DRIVER
13279 M: Rui Miguel Silva <rmfrfs@gmail.com>
13280 L: linux-iio@vger.kernel.org
13282 F: Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13283 F: drivers/iio/gyro/fxas21002c.h
13284 F: drivers/iio/gyro/fxas21002c_core.c
13285 F: drivers/iio/gyro/fxas21002c_i2c.c
13286 F: drivers/iio/gyro/fxas21002c_spi.c
13288 NXP i.MX CLOCK DRIVERS
13289 M: Abel Vesa <abel.vesa@nxp.com>
13290 L: linux-clk@vger.kernel.org
13291 L: linux-imx@nxp.com
13293 F: drivers/clk/imx/
13295 NXP i.MX 8MQ DCSS DRIVER
13296 M: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13297 R: Lucas Stach <l.stach@pengutronix.de>
13298 L: dri-devel@lists.freedesktop.org
13300 F: Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13301 F: drivers/gpu/drm/imx/dcss/
13303 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13304 M: Jagan Teki <jagan@amarulasolutions.com>
13306 F: Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13307 F: drivers/regulator/pf8x00-regulator.c
13309 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13310 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13311 L: linux-kernel@vger.kernel.org
13313 F: Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13314 F: drivers/extcon/extcon-ptn5150.c
13316 NXP SGTL5000 DRIVER
13317 M: Fabio Estevam <festevam@gmail.com>
13318 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13320 F: Documentation/devicetree/bindings/sound/sgtl5000.yaml
13321 F: sound/soc/codecs/sgtl5000*
13323 NXP SJA1105 ETHERNET SWITCH DRIVER
13324 M: Vladimir Oltean <olteanv@gmail.com>
13325 L: linux-kernel@vger.kernel.org
13327 F: drivers/net/dsa/sja1105
13328 F: drivers/net/pcs/pcs-xpcs-nxp.c
13330 NXP TDA998X DRM DRIVER
13331 M: Russell King <linux@armlinux.org.uk>
13333 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13334 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13335 F: drivers/gpu/drm/i2c/tda998x_drv.c
13336 F: include/drm/i2c/tda998x.h
13337 F: include/dt-bindings/display/tda998x.h
13341 M: Peter Rosin <peda@axentia.se>
13342 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13344 F: Documentation/devicetree/bindings/sound/tfa9879.txt
13345 F: sound/soc/codecs/tfa9879*
13347 NXP/Goodix TFA989X (TFA1) DRIVER
13348 M: Stephan Gerhold <stephan@gerhold.net>
13349 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13351 F: Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13352 F: sound/soc/codecs/tfa989x.c
13355 R: Charles Gorand <charles.gorand@effinnov.com>
13356 L: linux-nfc@lists.01.org (subscribers-only)
13358 F: drivers/nfc/nxp-nci
13360 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13361 M: Mirela Rabulea <mirela.rabulea@nxp.com>
13362 R: NXP Linux Team <linux-imx@nxp.com>
13363 L: linux-media@vger.kernel.org
13365 F: Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13366 F: drivers/media/platform/imx-jpeg
13368 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13369 M: Jonas Malaco <jonas@protocubo.io>
13370 L: linux-hwmon@vger.kernel.org
13372 F: Documentation/hwmon/nzxt-kraken2.rst
13373 F: drivers/hwmon/nzxt-kraken2.c
13376 M: Jiri Pirko <jiri@nvidia.com>
13377 L: netdev@vger.kernel.org
13379 F: include/linux/objagg.h
13381 F: lib/test_objagg.c
13384 M: Josh Poimboeuf <jpoimboe@redhat.com>
13385 M: Peter Zijlstra <peterz@infradead.org>
13388 F: include/linux/objtool.h
13390 OCELOT ETHERNET SWITCH DRIVER
13391 M: Vladimir Oltean <vladimir.oltean@nxp.com>
13392 M: Claudiu Manoil <claudiu.manoil@nxp.com>
13393 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
13394 M: UNGLinuxDriver@microchip.com
13395 L: netdev@vger.kernel.org
13397 F: drivers/net/dsa/ocelot/*
13398 F: drivers/net/ethernet/mscc/
13399 F: include/soc/mscc/ocelot*
13400 F: net/dsa/tag_ocelot.c
13401 F: net/dsa/tag_ocelot_8021q.c
13402 F: tools/testing/selftests/drivers/net/ocelot/*
13404 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13405 M: Frederic Barrat <fbarrat@linux.ibm.com>
13406 M: Andrew Donnellan <ajd@linux.ibm.com>
13407 L: linuxppc-dev@lists.ozlabs.org
13409 F: Documentation/userspace-api/accelerators/ocxl.rst
13410 F: arch/powerpc/include/asm/pnv-ocxl.h
13411 F: arch/powerpc/platforms/powernv/ocxl.c
13412 F: drivers/misc/ocxl/
13413 F: include/misc/ocxl*
13414 F: include/uapi/misc/ocxl.h
13417 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
13418 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
13419 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13420 L: linux-omap@vger.kernel.org
13422 F: sound/soc/ti/n810.c
13423 F: sound/soc/ti/omap*
13424 F: sound/soc/ti/rx51.c
13425 F: sound/soc/ti/sdma-pcm.*
13427 OMAP CLOCK FRAMEWORK SUPPORT
13428 M: Paul Walmsley <paul@pwsan.com>
13429 L: linux-omap@vger.kernel.org
13431 F: arch/arm/*omap*/*clock*
13433 OMAP DEVICE TREE SUPPORT
13434 M: Benoît Cousson <bcousson@baylibre.com>
13435 M: Tony Lindgren <tony@atomide.com>
13436 L: linux-omap@vger.kernel.org
13437 L: devicetree@vger.kernel.org
13439 F: arch/arm/boot/dts/*am3*
13440 F: arch/arm/boot/dts/*am4*
13441 F: arch/arm/boot/dts/*am5*
13442 F: arch/arm/boot/dts/*dra7*
13443 F: arch/arm/boot/dts/*omap*
13444 F: arch/arm/boot/dts/logicpd-som-lv*
13445 F: arch/arm/boot/dts/logicpd-torpedo*
13447 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13448 L: linux-omap@vger.kernel.org
13449 L: linux-fbdev@vger.kernel.org
13451 F: Documentation/arm/omap/dss.rst
13452 F: drivers/video/fbdev/omap2/
13454 OMAP FRAMEBUFFER SUPPORT
13455 L: linux-fbdev@vger.kernel.org
13456 L: linux-omap@vger.kernel.org
13458 F: drivers/video/fbdev/omap/
13460 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13461 M: Roger Quadros <rogerq@kernel.org>
13462 M: Tony Lindgren <tony@atomide.com>
13463 L: linux-omap@vger.kernel.org
13465 F: arch/arm/mach-omap2/*gpmc*
13466 F: drivers/memory/omap-gpmc.c
13469 M: Grygorii Strashko <grygorii.strashko@ti.com>
13470 M: Santosh Shilimkar <ssantosh@kernel.org>
13471 M: Kevin Hilman <khilman@kernel.org>
13472 L: linux-omap@vger.kernel.org
13474 F: Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13475 F: drivers/gpio/gpio-omap.c
13477 OMAP HARDWARE SPINLOCK SUPPORT
13478 M: Ohad Ben-Cohen <ohad@wizery.com>
13479 L: linux-omap@vger.kernel.org
13481 F: drivers/hwspinlock/omap_hwspinlock.c
13483 OMAP HS MMC SUPPORT
13484 L: linux-mmc@vger.kernel.org
13485 L: linux-omap@vger.kernel.org
13487 F: drivers/mmc/host/omap_hsmmc.c
13490 M: Paul Walmsley <paul@pwsan.com>
13491 L: linux-omap@vger.kernel.org
13493 F: arch/arm/mach-omap2/omap_hwmod*data*
13495 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
13496 M: Benoît Cousson <bcousson@baylibre.com>
13497 L: linux-omap@vger.kernel.org
13499 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
13502 M: Benoît Cousson <bcousson@baylibre.com>
13503 M: Paul Walmsley <paul@pwsan.com>
13504 L: linux-omap@vger.kernel.org
13506 F: arch/arm/mach-omap2/omap_hwmod.*
13509 M: Vignesh R <vigneshr@ti.com>
13510 L: linux-omap@vger.kernel.org
13511 L: linux-i2c@vger.kernel.org
13513 F: Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13514 F: drivers/i2c/busses/i2c-omap.c
13516 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13517 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13518 L: linux-media@vger.kernel.org
13520 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
13521 F: drivers/media/platform/omap3isp/
13522 F: drivers/staging/media/omap4iss/
13525 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13526 L: linux-omap@vger.kernel.org
13528 F: drivers/mmc/host/omap.c
13530 OMAP POWER MANAGEMENT SUPPORT
13531 M: Kevin Hilman <khilman@kernel.org>
13532 L: linux-omap@vger.kernel.org
13534 F: arch/arm/*omap*/*pm*
13535 F: drivers/cpufreq/omap-cpufreq.c
13537 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13538 M: Rajendra Nayak <rnayak@codeaurora.org>
13539 M: Paul Walmsley <paul@pwsan.com>
13540 L: linux-omap@vger.kernel.org
13542 F: arch/arm/mach-omap2/prm*
13544 OMAP RANDOM NUMBER GENERATOR SUPPORT
13545 M: Deepak Saxena <dsaxena@plexity.net>
13547 F: drivers/char/hw_random/omap-rng.c
13550 L: linux-usb@vger.kernel.org
13551 L: linux-omap@vger.kernel.org
13553 F: arch/arm/*omap*/usb*
13554 F: drivers/usb/*/*omap*
13556 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13557 M: Mark Jackson <mpfj@newflow.co.uk>
13558 L: linux-omap@vger.kernel.org
13560 F: arch/arm/boot/dts/am335x-nano.dts
13563 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13564 M: Tony Lindgren <tony@atomide.com>
13565 L: linux-omap@vger.kernel.org
13567 Q: http://patchwork.kernel.org/project/linux-omap/list/
13568 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13569 F: arch/arm/configs/omap1_defconfig
13570 F: arch/arm/mach-omap1/
13571 F: arch/arm/plat-omap/
13572 F: drivers/i2c/busses/i2c-omap.c
13573 F: include/linux/platform_data/ams-delta-fiq.h
13574 F: include/linux/platform_data/i2c-omap.h
13577 M: Tony Lindgren <tony@atomide.com>
13578 L: linux-omap@vger.kernel.org
13580 W: http://www.muru.com/linux/omap/
13581 W: http://linux.omap.com/
13582 Q: http://patchwork.kernel.org/project/linux-omap/list/
13583 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13584 F: arch/arm/configs/omap2plus_defconfig
13585 F: arch/arm/mach-omap2/
13586 F: arch/arm/plat-omap/
13587 F: drivers/bus/ti-sysc.c
13588 F: drivers/i2c/busses/i2c-omap.c
13589 F: drivers/irqchip/irq-omap-intc.c
13590 F: drivers/mfd/*omap*.c
13591 F: drivers/mfd/menelaus.c
13592 F: drivers/mfd/palmas.c
13593 F: drivers/mfd/tps65217.c
13594 F: drivers/mfd/tps65218.c
13595 F: drivers/mfd/tps65910.c
13596 F: drivers/mfd/twl-core.[ch]
13597 F: drivers/mfd/twl4030*.c
13598 F: drivers/mfd/twl6030*.c
13599 F: drivers/mfd/twl6040*.c
13600 F: drivers/regulator/palmas-regulator*.c
13601 F: drivers/regulator/pbias-regulator.c
13602 F: drivers/regulator/tps65217-regulator.c
13603 F: drivers/regulator/tps65218-regulator.c
13604 F: drivers/regulator/tps65910-regulator.c
13605 F: drivers/regulator/twl-regulator.c
13606 F: drivers/regulator/twl6030-regulator.c
13607 F: include/linux/platform_data/i2c-omap.h
13608 F: include/linux/platform_data/ti-sysc.h
13611 M: Bob Copeland <me@bobcopeland.com>
13612 L: linux-karma-devel@lists.sourceforge.net
13614 F: Documentation/filesystems/omfs.rst
13617 OMNIKEY CARDMAN 4000 DRIVER
13618 M: Harald Welte <laforge@gnumonks.org>
13620 F: drivers/char/pcmcia/cm4000_cs.c
13621 F: include/linux/cm4000_cs.h
13622 F: include/uapi/linux/cm4000_cs.h
13624 OMNIKEY CARDMAN 4040 DRIVER
13625 M: Harald Welte <laforge@gnumonks.org>
13627 F: drivers/char/pcmcia/cm4040_cs.*
13629 OMNIVISION OV02A10 SENSOR DRIVER
13630 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13631 L: linux-media@vger.kernel.org
13633 T: git git://linuxtv.org/media_tree.git
13634 F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13635 F: drivers/media/i2c/ov02a10.c
13637 OMNIVISION OV13858 SENSOR DRIVER
13638 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13639 L: linux-media@vger.kernel.org
13641 T: git git://linuxtv.org/media_tree.git
13642 F: drivers/media/i2c/ov13858.c
13644 OMNIVISION OV2680 SENSOR DRIVER
13645 M: Rui Miguel Silva <rmfrfs@gmail.com>
13646 L: linux-media@vger.kernel.org
13648 T: git git://linuxtv.org/media_tree.git
13649 F: Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13650 F: drivers/media/i2c/ov2680.c
13652 OMNIVISION OV2685 SENSOR DRIVER
13653 M: Shunqian Zheng <zhengsq@rock-chips.com>
13654 L: linux-media@vger.kernel.org
13656 T: git git://linuxtv.org/media_tree.git
13657 F: drivers/media/i2c/ov2685.c
13659 OMNIVISION OV2740 SENSOR DRIVER
13660 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13661 R: Shawn Tu <shawnx.tu@intel.com>
13662 R: Bingbu Cao <bingbu.cao@intel.com>
13663 L: linux-media@vger.kernel.org
13665 T: git git://linuxtv.org/media_tree.git
13666 F: drivers/media/i2c/ov2740.c
13668 OMNIVISION OV5640 SENSOR DRIVER
13669 M: Steve Longerbeam <slongerbeam@gmail.com>
13670 L: linux-media@vger.kernel.org
13672 T: git git://linuxtv.org/media_tree.git
13673 F: drivers/media/i2c/ov5640.c
13675 OMNIVISION OV5647 SENSOR DRIVER
13676 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
13677 M: Jacopo Mondi <jacopo@jmondi.org>
13678 L: linux-media@vger.kernel.org
13680 T: git git://linuxtv.org/media_tree.git
13681 F: Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13682 F: drivers/media/i2c/ov5647.c
13684 OMNIVISION OV5670 SENSOR DRIVER
13685 M: Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13686 M: Hyungwoo Yang <hyungwoo.yang@intel.com>
13687 L: linux-media@vger.kernel.org
13689 T: git git://linuxtv.org/media_tree.git
13690 F: drivers/media/i2c/ov5670.c
13692 OMNIVISION OV5675 SENSOR DRIVER
13693 M: Shawn Tu <shawnx.tu@intel.com>
13694 L: linux-media@vger.kernel.org
13696 T: git git://linuxtv.org/media_tree.git
13697 F: drivers/media/i2c/ov5675.c
13699 OMNIVISION OV5695 SENSOR DRIVER
13700 M: Shunqian Zheng <zhengsq@rock-chips.com>
13701 L: linux-media@vger.kernel.org
13703 T: git git://linuxtv.org/media_tree.git
13704 F: drivers/media/i2c/ov5695.c
13706 OMNIVISION OV7670 SENSOR DRIVER
13707 L: linux-media@vger.kernel.org
13709 T: git git://linuxtv.org/media_tree.git
13710 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
13711 F: drivers/media/i2c/ov7670.c
13713 OMNIVISION OV772x SENSOR DRIVER
13714 M: Jacopo Mondi <jacopo@jmondi.org>
13715 L: linux-media@vger.kernel.org
13717 T: git git://linuxtv.org/media_tree.git
13718 F: Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13719 F: drivers/media/i2c/ov772x.c
13720 F: include/media/i2c/ov772x.h
13722 OMNIVISION OV7740 SENSOR DRIVER
13723 M: Wenyou Yang <wenyou.yang@microchip.com>
13724 L: linux-media@vger.kernel.org
13726 T: git git://linuxtv.org/media_tree.git
13727 F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
13728 F: drivers/media/i2c/ov7740.c
13730 OMNIVISION OV8856 SENSOR DRIVER
13731 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13732 L: linux-media@vger.kernel.org
13734 T: git git://linuxtv.org/media_tree.git
13735 F: Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13736 F: drivers/media/i2c/ov8856.c
13738 OMNIVISION OV9640 SENSOR DRIVER
13739 M: Petr Cvek <petrcvekcz@gmail.com>
13740 L: linux-media@vger.kernel.org
13742 F: drivers/media/i2c/ov9640.*
13744 OMNIVISION OV9650 SENSOR DRIVER
13745 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13746 R: Akinobu Mita <akinobu.mita@gmail.com>
13747 R: Sylwester Nawrocki <s.nawrocki@samsung.com>
13748 L: linux-media@vger.kernel.org
13750 T: git git://linuxtv.org/media_tree.git
13751 F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
13752 F: drivers/media/i2c/ov9650.c
13754 OMNIVISION OV9734 SENSOR DRIVER
13755 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13756 R: Bingbu Cao <bingbu.cao@intel.com>
13757 L: linux-media@vger.kernel.org
13759 T: git git://linuxtv.org/media_tree.git
13760 F: drivers/media/i2c/ov9734.c
13762 ONENAND FLASH DRIVER
13763 M: Kyungmin Park <kyungmin.park@samsung.com>
13764 L: linux-mtd@lists.infradead.org
13766 F: drivers/mtd/nand/onenand/
13767 F: include/linux/mtd/onenand*.h
13769 ONION OMEGA2+ BOARD
13770 M: Harvey Hunt <harveyhuntnexus@gmail.com>
13771 L: linux-mips@vger.kernel.org
13773 F: arch/mips/boot/dts/ralink/omega2p.dts
13776 M: Jens Wiklander <jens.wiklander@linaro.org>
13777 L: op-tee@lists.trustedfirmware.org
13779 F: Documentation/ABI/testing/sysfs-bus-optee-devices
13780 F: drivers/tee/optee/
13782 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13783 M: Sumit Garg <sumit.garg@linaro.org>
13784 L: op-tee@lists.trustedfirmware.org
13786 F: drivers/char/hw_random/optee-rng.c
13789 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13790 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13791 L: linux-rdma@vger.kernel.org
13793 F: drivers/infiniband/ulp/opa_vnic
13795 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13796 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13797 M: Frank Rowand <frowand.list@gmail.com>
13798 L: devicetree@vger.kernel.org
13800 F: Documentation/devicetree/dynamic-resolution-notes.rst
13801 F: Documentation/devicetree/overlay-notes.rst
13802 F: drivers/of/overlay.c
13803 F: drivers/of/resolver.c
13804 K: of_overlay_notifier_
13806 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13807 M: Rob Herring <robh+dt@kernel.org>
13808 M: Frank Rowand <frowand.list@gmail.com>
13809 L: devicetree@vger.kernel.org
13811 W: http://www.devicetree.org/
13812 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13813 F: Documentation/ABI/testing/sysfs-firmware-ofw
13815 F: include/linux/of*.h
13818 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13819 M: Rob Herring <robh+dt@kernel.org>
13820 L: devicetree@vger.kernel.org
13822 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13823 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13824 F: Documentation/devicetree/
13825 F: arch/*/boot/dts/
13826 F: include/dt-bindings/
13828 OPENCORES I2C BUS DRIVER
13829 M: Peter Korsgaard <peter@korsgaard.com>
13830 M: Andrew Lunn <andrew@lunn.ch>
13831 L: linux-i2c@vger.kernel.org
13833 F: Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13834 F: Documentation/i2c/busses/i2c-ocores.rst
13835 F: drivers/i2c/busses/i2c-ocores.c
13836 F: include/linux/platform_data/i2c-ocores.h
13838 OPENRISC ARCHITECTURE
13839 M: Jonas Bonn <jonas@southpole.se>
13840 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13841 M: Stafford Horne <shorne@gmail.com>
13842 L: openrisc@lists.librecores.org
13844 W: http://openrisc.io
13845 T: git git://github.com/openrisc/linux.git
13846 F: Documentation/devicetree/bindings/openrisc/
13847 F: Documentation/openrisc/
13849 F: drivers/irqchip/irq-ompic.c
13850 F: drivers/irqchip/irq-or1k-*
13853 M: Pravin B Shelar <pshelar@ovn.org>
13854 L: netdev@vger.kernel.org
13855 L: dev@openvswitch.org
13857 W: http://openvswitch.org
13858 F: include/uapi/linux/openvswitch.h
13859 F: net/openvswitch/
13861 OPERATING PERFORMANCE POINTS (OPP)
13862 M: Viresh Kumar <vireshk@kernel.org>
13863 M: Nishanth Menon <nm@ti.com>
13864 M: Stephen Boyd <sboyd@kernel.org>
13865 L: linux-pm@vger.kernel.org
13867 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13868 F: Documentation/devicetree/bindings/opp/
13869 F: Documentation/power/opp.rst
13871 F: include/linux/pm_opp.h
13874 M: Clemens Ladisch <clemens@ladisch.de>
13875 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13877 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13878 F: sound/drivers/opl4/
13880 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13881 M: Mark Fasheh <mark@fasheh.com>
13882 M: Joel Becker <jlbec@evilplan.org>
13883 M: Joseph Qi <joseph.qi@linux.alibaba.com>
13884 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13886 W: http://ocfs2.wiki.kernel.org
13887 F: Documentation/filesystems/dlmfs.rst
13888 F: Documentation/filesystems/ocfs2.rst
13891 ORANGEFS FILESYSTEM
13892 M: Mike Marshall <hubcap@omnibond.com>
13893 R: Martin Brandenburg <martin@omnibond.com>
13894 L: devel@lists.orangefs.org
13896 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13897 F: Documentation/filesystems/orangefs.rst
13901 L: linux-wireless@vger.kernel.org
13903 W: https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13904 W: http://www.nongnu.org/orinoco/
13905 F: drivers/net/wireless/intersil/orinoco/
13907 OV2659 OMNIVISION SENSOR DRIVER
13908 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13909 L: linux-media@vger.kernel.org
13911 W: https://linuxtv.org
13912 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13913 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13914 F: drivers/media/i2c/ov2659.c
13915 F: include/media/i2c/ov2659.h
13918 M: Miklos Szeredi <miklos@szeredi.hu>
13919 L: linux-unionfs@vger.kernel.org
13921 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13922 F: Documentation/filesystems/overlayfs.rst
13925 P54 WIRELESS DRIVER
13926 M: Christian Lamparter <chunkeey@googlemail.com>
13927 L: linux-wireless@vger.kernel.org
13929 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
13930 F: drivers/net/wireless/intersil/p54/
13933 M: Vladimir Oltean <olteanv@gmail.com>
13934 L: netdev@vger.kernel.org
13936 F: Documentation/core-api/packing.rst
13937 F: include/linux/packing.h
13940 PADATA PARALLEL EXECUTION MECHANISM
13941 M: Steffen Klassert <steffen.klassert@secunet.com>
13942 M: Daniel Jordan <daniel.m.jordan@oracle.com>
13943 L: linux-crypto@vger.kernel.org
13944 L: linux-kernel@vger.kernel.org
13946 F: Documentation/core-api/padata.rst
13947 F: include/linux/padata.h
13951 M: Jesper Dangaard Brouer <hawk@kernel.org>
13952 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
13953 L: netdev@vger.kernel.org
13955 F: Documentation/networking/page_pool.rst
13956 F: include/net/page_pool.h
13957 F: include/trace/events/page_pool.h
13958 F: net/core/page_pool.c
13960 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13961 M: Kenneth Chan <kenneth.t.chan@gmail.com>
13962 L: platform-driver-x86@vger.kernel.org
13964 F: drivers/platform/x86/panasonic-laptop.c
13966 PARALLAX PING IIO SENSOR DRIVER
13967 M: Andreas Klinger <ak@it-klinger.de>
13968 L: linux-iio@vger.kernel.org
13970 F: Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13971 F: drivers/iio/proximity/ping.c
13973 PARALLEL LCD/KEYPAD PANEL DRIVER
13974 M: Willy Tarreau <willy@haproxy.com>
13975 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13977 F: Documentation/admin-guide/lcd-panel-cgram.rst
13978 F: drivers/auxdisplay/panel.c
13980 PARALLEL PORT SUBSYSTEM
13981 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13982 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13983 L: linux-parport@lists.infradead.org (subscribers-only)
13985 F: Documentation/driver-api/parport*.rst
13986 F: drivers/char/ppdev.c
13987 F: drivers/parport/
13988 F: include/linux/parport*.h
13989 F: include/uapi/linux/ppdev.h
13991 PARAVIRT_OPS INTERFACE
13992 M: Juergen Gross <jgross@suse.com>
13993 M: Deep Shah <sdeep@vmware.com>
13994 M: "VMware, Inc." <pv-drivers@vmware.com>
13995 L: virtualization@lists.linux-foundation.org
13997 F: Documentation/virt/paravirt_ops.rst
13998 F: arch/*/include/asm/paravirt*.h
13999 F: arch/*/kernel/paravirt*
14000 F: include/linux/hypervisor.h
14002 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14003 M: Tim Waugh <tim@cyberelk.net>
14004 L: linux-parport@lists.infradead.org (subscribers-only)
14006 F: Documentation/admin-guide/blockdev/paride.rst
14007 F: drivers/block/paride/
14009 PARISC ARCHITECTURE
14010 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14011 M: Helge Deller <deller@gmx.de>
14012 L: linux-parisc@vger.kernel.org
14014 W: https://parisc.wiki.kernel.org
14015 Q: http://patchwork.kernel.org/project/linux-parisc/list/
14016 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14017 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14018 F: Documentation/parisc/
14020 F: drivers/char/agp/parisc-agp.c
14021 F: drivers/input/misc/hp_sdc_rtc.c
14022 F: drivers/input/serio/gscps2.c
14023 F: drivers/input/serio/hp_sdc*
14025 F: drivers/parport/parport_gsc.*
14026 F: drivers/tty/serial/8250/8250_gsc.c
14027 F: drivers/video/console/sti*
14028 F: drivers/video/fbdev/sti*
14029 F: drivers/video/logo/logo_parisc*
14030 F: include/linux/hp_sdc.h
14033 M: Jiri Pirko <jiri@nvidia.com>
14034 L: netdev@vger.kernel.org
14036 F: include/linux/parman.h
14038 F: lib/test_parman.c
14040 PC ENGINES APU BOARD DRIVER
14041 M: Enrico Weigelt, metux IT consult <info@metux.net>
14043 F: drivers/platform/x86/pcengines-apuv2.c
14045 PC87360 HARDWARE MONITORING DRIVER
14046 M: Jim Cromie <jim.cromie@gmail.com>
14047 L: linux-hwmon@vger.kernel.org
14049 F: Documentation/hwmon/pc87360.rst
14050 F: drivers/hwmon/pc87360.c
14052 PC8736x GPIO DRIVER
14053 M: Jim Cromie <jim.cromie@gmail.com>
14055 F: drivers/char/pc8736x_gpio.c
14057 PC87427 HARDWARE MONITORING DRIVER
14058 M: Jean Delvare <jdelvare@suse.com>
14059 L: linux-hwmon@vger.kernel.org
14061 F: Documentation/hwmon/pc87427.rst
14062 F: drivers/hwmon/pc87427.c
14065 M: Riku Voipio <riku.voipio@iki.fi>
14067 F: drivers/leds/leds-pca9532.c
14068 F: include/linux/leds-pca9532.h
14070 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14071 M: Guenter Roeck <linux@roeck-us.net>
14072 L: linux-i2c@vger.kernel.org
14074 F: drivers/i2c/muxes/i2c-mux-pca9541.c
14076 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14077 M: Khalid Aziz <khalid@gonehiking.org>
14079 F: drivers/firmware/pcdp.*
14081 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14082 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14083 M: Pali Rohár <pali@kernel.org>
14084 L: linux-pci@vger.kernel.org
14085 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14087 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
14088 F: drivers/pci/controller/pci-aardvark.c
14090 PCI DRIVER FOR ALTERA PCIE IP
14091 M: Ley Foon Tan <ley.foon.tan@intel.com>
14092 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
14093 L: linux-pci@vger.kernel.org
14095 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
14096 F: drivers/pci/controller/pcie-altera.c
14098 PCI DRIVER FOR APPLIEDMICRO XGENE
14099 M: Toan Le <toan@os.amperecomputing.com>
14100 L: linux-pci@vger.kernel.org
14101 L: linux-arm-kernel@lists.infradead.org
14103 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
14104 F: drivers/pci/controller/pci-xgene.c
14106 PCI DRIVER FOR ARM VERSATILE PLATFORM
14107 M: Rob Herring <robh@kernel.org>
14108 L: linux-pci@vger.kernel.org
14109 L: linux-arm-kernel@lists.infradead.org
14111 F: Documentation/devicetree/bindings/pci/versatile.yaml
14112 F: drivers/pci/controller/pci-versatile.c
14114 PCI DRIVER FOR ARMADA 8K
14115 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14116 L: linux-pci@vger.kernel.org
14117 L: linux-arm-kernel@lists.infradead.org
14119 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
14120 F: drivers/pci/controller/dwc/pcie-armada8k.c
14122 PCI DRIVER FOR CADENCE PCIE IP
14123 M: Tom Joseph <tjoseph@cadence.com>
14124 L: linux-pci@vger.kernel.org
14126 F: Documentation/devicetree/bindings/pci/cdns,*
14127 F: drivers/pci/controller/cadence/
14129 PCI DRIVER FOR FREESCALE LAYERSCAPE
14130 M: Minghuan Lian <minghuan.Lian@nxp.com>
14131 M: Mingkai Hu <mingkai.hu@nxp.com>
14132 M: Roy Zang <roy.zang@nxp.com>
14133 L: linuxppc-dev@lists.ozlabs.org
14134 L: linux-pci@vger.kernel.org
14135 L: linux-arm-kernel@lists.infradead.org
14137 F: drivers/pci/controller/dwc/*layerscape*
14139 PCI DRIVER FOR GENERIC OF HOSTS
14140 M: Will Deacon <will@kernel.org>
14141 L: linux-pci@vger.kernel.org
14142 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14144 F: Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14145 F: drivers/pci/controller/pci-host-common.c
14146 F: drivers/pci/controller/pci-host-generic.c
14148 PCI DRIVER FOR IMX6
14149 M: Richard Zhu <hongxing.zhu@nxp.com>
14150 M: Lucas Stach <l.stach@pengutronix.de>
14151 L: linux-pci@vger.kernel.org
14152 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14154 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
14155 F: drivers/pci/controller/dwc/*imx6*
14157 PCI DRIVER FOR FU740
14158 M: Paul Walmsley <paul.walmsley@sifive.com>
14159 M: Greentime Hu <greentime.hu@sifive.com>
14160 L: linux-pci@vger.kernel.org
14162 F: Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14163 F: drivers/pci/controller/dwc/pcie-fu740.c
14165 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14166 M: Jonathan Derrick <jonathan.derrick@intel.com>
14167 L: linux-pci@vger.kernel.org
14169 F: drivers/pci/controller/vmd.c
14171 PCI DRIVER FOR MICROSEMI SWITCHTEC
14172 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14173 M: Logan Gunthorpe <logang@deltatee.com>
14174 L: linux-pci@vger.kernel.org
14176 F: Documentation/ABI/testing/sysfs-class-switchtec
14177 F: Documentation/driver-api/switchtec.rst
14178 F: drivers/ntb/hw/mscc/
14179 F: drivers/pci/switch/switchtec*
14180 F: include/linux/switchtec.h
14181 F: include/uapi/linux/switchtec_ioctl.h
14183 PCI DRIVER FOR MOBIVEIL PCIE IP
14184 M: Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14185 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14186 L: linux-pci@vger.kernel.org
14188 F: Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14189 F: drivers/pci/controller/mobiveil/pcie-mobiveil*
14191 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14192 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14193 L: linux-pci@vger.kernel.org
14194 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14196 F: drivers/pci/controller/*mvebu*
14198 PCI DRIVER FOR NVIDIA TEGRA
14199 M: Thierry Reding <thierry.reding@gmail.com>
14200 L: linux-tegra@vger.kernel.org
14201 L: linux-pci@vger.kernel.org
14203 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14204 F: drivers/pci/controller/pci-tegra.c
14206 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14207 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14208 L: linux-pci@vger.kernel.org
14209 L: linux-arm-kernel@lists.infradead.org
14211 F: Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14212 F: drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14214 PCI DRIVER FOR RENESAS R-CAR
14215 M: Marek Vasut <marek.vasut+renesas@gmail.com>
14216 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14217 L: linux-pci@vger.kernel.org
14218 L: linux-renesas-soc@vger.kernel.org
14220 F: Documentation/devicetree/bindings/pci/*rcar*
14221 F: drivers/pci/controller/*rcar*
14223 PCI DRIVER FOR SAMSUNG EXYNOS
14224 M: Jingoo Han <jingoohan1@gmail.com>
14225 L: linux-pci@vger.kernel.org
14226 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14227 L: linux-samsung-soc@vger.kernel.org
14229 F: drivers/pci/controller/dwc/pci-exynos.c
14231 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14232 M: Jingoo Han <jingoohan1@gmail.com>
14233 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14234 L: linux-pci@vger.kernel.org
14236 F: Documentation/devicetree/bindings/pci/designware-pcie.txt
14237 F: drivers/pci/controller/dwc/*designware*
14239 PCI DRIVER FOR TI DRA7XX/J721E
14240 M: Kishon Vijay Abraham I <kishon@ti.com>
14241 L: linux-omap@vger.kernel.org
14242 L: linux-pci@vger.kernel.org
14243 L: linux-arm-kernel@lists.infradead.org
14245 F: Documentation/devicetree/bindings/pci/ti-pci.txt
14246 F: drivers/pci/controller/cadence/pci-j721e.c
14247 F: drivers/pci/controller/dwc/pci-dra7xx.c
14249 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14250 M: Linus Walleij <linus.walleij@linaro.org>
14251 L: linux-pci@vger.kernel.org
14253 F: Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14254 F: drivers/pci/controller/pci-v3-semi.c
14256 PCI ENDPOINT SUBSYSTEM
14257 M: Kishon Vijay Abraham I <kishon@ti.com>
14258 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14259 R: Krzysztof Wilczyński <kw@linux.com>
14260 L: linux-pci@vger.kernel.org
14262 F: Documentation/PCI/endpoint/*
14263 F: Documentation/misc-devices/pci-endpoint-test.rst
14264 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14265 F: drivers/misc/pci_endpoint_test.c
14266 F: drivers/pci/endpoint/
14269 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14270 M: Russell Currey <ruscur@russell.cc>
14271 M: Oliver O'Halloran <oohall@gmail.com>
14272 L: linuxppc-dev@lists.ozlabs.org
14274 F: Documentation/PCI/pci-error-recovery.rst
14275 F: Documentation/powerpc/eeh-pci-error-recovery.rst
14276 F: arch/powerpc/include/*/eeh*.h
14277 F: arch/powerpc/kernel/eeh*.c
14278 F: arch/powerpc/platforms/*/eeh*.c
14279 F: drivers/pci/pcie/aer.c
14280 F: drivers/pci/pcie/dpc.c
14281 F: drivers/pci/pcie/err.c
14284 M: Linas Vepstas <linasvepstas@gmail.com>
14285 L: linux-pci@vger.kernel.org
14287 F: Documentation/PCI/pci-error-recovery.rst
14289 PCI MSI DRIVER FOR ALTERA MSI IP
14290 M: Ley Foon Tan <ley.foon.tan@intel.com>
14291 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
14292 L: linux-pci@vger.kernel.org
14294 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14295 F: drivers/pci/controller/pcie-altera-msi.c
14297 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14298 M: Toan Le <toan@os.amperecomputing.com>
14299 L: linux-pci@vger.kernel.org
14300 L: linux-arm-kernel@lists.infradead.org
14302 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14303 F: drivers/pci/controller/pci-xgene-msi.c
14305 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14306 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14307 R: Rob Herring <robh@kernel.org>
14308 R: Krzysztof Wilczyński <kw@linux.com>
14309 L: linux-pci@vger.kernel.org
14311 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14312 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14313 F: drivers/pci/controller/
14316 M: Bjorn Helgaas <bhelgaas@google.com>
14317 L: linux-pci@vger.kernel.org
14319 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14320 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14321 F: Documentation/PCI/
14322 F: Documentation/devicetree/bindings/pci/
14323 F: arch/x86/kernel/early-quirks.c
14324 F: arch/x86/kernel/quirks.c
14326 F: drivers/acpi/pci*
14328 F: include/asm-generic/pci*
14329 F: include/linux/of_pci.h
14330 F: include/linux/pci*
14331 F: include/uapi/linux/pci*
14334 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14335 M: Jonathan Chocron <jonnyc@amazon.com>
14336 L: linux-pci@vger.kernel.org
14338 F: Documentation/devicetree/bindings/pci/pcie-al.txt
14339 F: drivers/pci/controller/dwc/pcie-al.c
14341 PCIE DRIVER FOR AMLOGIC MESON
14342 M: Yue Wang <yue.wang@Amlogic.com>
14343 L: linux-pci@vger.kernel.org
14344 L: linux-amlogic@lists.infradead.org
14346 F: drivers/pci/controller/dwc/pci-meson.c
14348 PCIE DRIVER FOR AXIS ARTPEC
14349 M: Jesper Nilsson <jesper.nilsson@axis.com>
14350 L: linux-arm-kernel@axis.com
14351 L: linux-pci@vger.kernel.org
14353 F: Documentation/devicetree/bindings/pci/axis,artpec*
14354 F: drivers/pci/controller/dwc/*artpec*
14356 PCIE DRIVER FOR CAVIUM THUNDERX
14357 M: Robert Richter <rric@kernel.org>
14358 L: linux-pci@vger.kernel.org
14359 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14361 F: drivers/pci/controller/pci-thunder-*
14363 PCIE DRIVER FOR HISILICON
14364 M: Zhou Wang <wangzhou1@hisilicon.com>
14365 L: linux-pci@vger.kernel.org
14367 F: drivers/pci/controller/dwc/pcie-hisi.c
14369 PCIE DRIVER FOR HISILICON KIRIN
14370 M: Xiaowei Song <songxiaowei@hisilicon.com>
14371 M: Binghui Wang <wangbinghui@hisilicon.com>
14372 L: linux-pci@vger.kernel.org
14374 F: Documentation/devicetree/bindings/pci/kirin-pcie.txt
14375 F: drivers/pci/controller/dwc/pcie-kirin.c
14377 PCIE DRIVER FOR HISILICON STB
14378 M: Shawn Guo <shawn.guo@linaro.org>
14379 L: linux-pci@vger.kernel.org
14381 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14382 F: drivers/pci/controller/dwc/pcie-histb.c
14384 PCIE DRIVER FOR MEDIATEK
14385 M: Ryder Lee <ryder.lee@mediatek.com>
14386 M: Jianjun Wang <jianjun.wang@mediatek.com>
14387 L: linux-pci@vger.kernel.org
14388 L: linux-mediatek@lists.infradead.org
14390 F: Documentation/devicetree/bindings/pci/mediatek*
14391 F: drivers/pci/controller/*mediatek*
14393 PCIE DRIVER FOR MICROCHIP
14394 M: Daire McNamara <daire.mcnamara@microchip.com>
14395 L: linux-pci@vger.kernel.org
14397 F: Documentation/devicetree/bindings/pci/microchip*
14398 F: drivers/pci/controller/*microchip*
14400 PCIE DRIVER FOR QUALCOMM MSM
14401 M: Stanimir Varbanov <svarbanov@mm-sol.com>
14402 L: linux-pci@vger.kernel.org
14403 L: linux-arm-msm@vger.kernel.org
14405 F: drivers/pci/controller/dwc/*qcom*
14407 PCIE DRIVER FOR ROCKCHIP
14408 M: Shawn Lin <shawn.lin@rock-chips.com>
14409 L: linux-pci@vger.kernel.org
14410 L: linux-rockchip@lists.infradead.org
14412 F: Documentation/devicetree/bindings/pci/rockchip-pcie*
14413 F: drivers/pci/controller/pcie-rockchip*
14415 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14416 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14417 L: linux-pci@vger.kernel.org
14419 F: Documentation/devicetree/bindings/pci/uniphier-pcie*
14420 F: drivers/pci/controller/dwc/pcie-uniphier*
14422 PCIE DRIVER FOR ST SPEAR13XX
14423 M: Pratyush Anand <pratyush.anand@gmail.com>
14424 L: linux-pci@vger.kernel.org
14426 F: drivers/pci/controller/dwc/*spear*
14429 M: Dominik Brodowski <linux@dominikbrodowski.net>
14431 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14432 F: Documentation/pcmcia/
14437 PCNET32 NETWORK DRIVER
14438 M: Don Fry <pcnet32@frontier.com>
14439 L: netdev@vger.kernel.org
14441 F: drivers/net/ethernet/amd/pcnet32.c
14443 PCRYPT PARALLEL CRYPTO ENGINE
14444 M: Steffen Klassert <steffen.klassert@secunet.com>
14445 L: linux-crypto@vger.kernel.org
14448 F: include/crypto/pcrypt.h
14450 PEAQ WMI HOTKEYS DRIVER
14451 M: Hans de Goede <hdegoede@redhat.com>
14452 L: platform-driver-x86@vger.kernel.org
14454 F: drivers/platform/x86/peaq-wmi.c
14456 PENSANDO ETHERNET DRIVERS
14457 M: Shannon Nelson <snelson@pensando.io>
14458 M: drivers@pensando.io
14459 L: netdev@vger.kernel.org
14461 F: Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14462 F: drivers/net/ethernet/pensando/
14464 PER-CPU MEMORY ALLOCATOR
14465 M: Dennis Zhou <dennis@kernel.org>
14466 M: Tejun Heo <tj@kernel.org>
14467 M: Christoph Lameter <cl@linux.com>
14468 L: linux-mm@kvack.org
14470 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14471 F: arch/*/include/asm/percpu.h
14472 F: include/linux/percpu*.h
14476 PER-TASK DELAY ACCOUNTING
14477 M: Balbir Singh <bsingharora@gmail.com>
14479 F: include/linux/delayacct.h
14480 F: kernel/delayacct.c
14482 PERFORMANCE EVENTS SUBSYSTEM
14483 M: Peter Zijlstra <peterz@infradead.org>
14484 M: Ingo Molnar <mingo@redhat.com>
14485 M: Arnaldo Carvalho de Melo <acme@kernel.org>
14486 R: Mark Rutland <mark.rutland@arm.com>
14487 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
14488 R: Jiri Olsa <jolsa@redhat.com>
14489 R: Namhyung Kim <namhyung@kernel.org>
14490 L: linux-perf-users@vger.kernel.org
14491 L: linux-kernel@vger.kernel.org
14493 W: https://perf.wiki.kernel.org/
14494 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14496 F: arch/*/events/*/*
14497 F: arch/*/include/asm/perf_event.h
14498 F: arch/*/kernel/*/*/perf_event*.c
14499 F: arch/*/kernel/*/perf_event*.c
14500 F: arch/*/kernel/perf_callchain.c
14501 F: arch/*/kernel/perf_event*.c
14502 F: include/linux/perf_event.h
14503 F: include/uapi/linux/perf_event.h
14508 PERFORMANCE EVENTS TOOLING ARM64
14509 R: John Garry <john.garry@huawei.com>
14510 R: Will Deacon <will@kernel.org>
14511 R: Mathieu Poirier <mathieu.poirier@linaro.org>
14512 R: Leo Yan <leo.yan@linaro.org>
14513 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14515 F: tools/build/feature/test-libopencsd.c
14516 F: tools/perf/arch/arm*/
14517 F: tools/perf/pmu-events/arch/arm64/
14518 F: tools/perf/util/arm-spe*
14519 F: tools/perf/util/cs-etm*
14521 PERSONALITY HANDLING
14522 M: Christoph Hellwig <hch@infradead.org>
14523 L: linux-abi-devel@lists.sourceforge.net
14525 F: include/linux/personality.h
14526 F: include/uapi/linux/personality.h
14528 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14529 M: Marcus Folkesson <marcus.folkesson@gmail.com>
14530 L: linux-input@vger.kernel.org
14532 F: Documentation/input/devices/pxrc.rst
14533 F: drivers/input/joystick/pxrc.c
14536 M: Remi Denis-Courmont <courmisch@gmail.com>
14538 F: Documentation/networking/phonet.rst
14539 F: include/linux/phonet.h
14540 F: include/net/phonet/
14541 F: include/uapi/linux/phonet.h
14545 M: Joern Engel <joern@lazybastard.org>
14546 L: linux-mtd@lists.infradead.org
14548 F: drivers/mtd/devices/phram.c
14551 M: Bruno Prémont <bonbons@linux-vserver.org>
14552 L: linux-input@vger.kernel.org
14554 F: drivers/hid/hid-picolcd*
14557 M: Christian Brauner <christian@brauner.io>
14558 L: linux-kernel@vger.kernel.org
14560 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14562 F: tools/testing/selftests/clone3/
14563 F: tools/testing/selftests/pid_namespace/
14564 F: tools/testing/selftests/pidfd/
14567 K: \b(clone_args|kernel_clone_args)\b
14569 PIN CONTROL SUBSYSTEM
14570 M: Linus Walleij <linus.walleij@linaro.org>
14571 L: linux-gpio@vger.kernel.org
14573 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14574 F: Documentation/devicetree/bindings/pinctrl/
14575 F: Documentation/driver-api/pin-control.rst
14576 F: drivers/pinctrl/
14577 F: include/linux/pinctrl/
14579 PIN CONTROLLER - FREESCALE
14580 M: Dong Aisheng <aisheng.dong@nxp.com>
14581 M: Fabio Estevam <festevam@gmail.com>
14582 M: Shawn Guo <shawnguo@kernel.org>
14583 M: Stefan Agner <stefan@agner.ch>
14584 R: Pengutronix Kernel Team <kernel@pengutronix.de>
14585 L: linux-gpio@vger.kernel.org
14587 F: Documentation/devicetree/bindings/pinctrl/fsl,*
14588 F: drivers/pinctrl/freescale/
14590 PIN CONTROLLER - INTEL
14591 M: Mika Westerberg <mika.westerberg@linux.intel.com>
14592 M: Andy Shevchenko <andy@kernel.org>
14594 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14595 F: drivers/pinctrl/intel/
14597 PIN CONTROLLER - MEDIATEK
14598 M: Sean Wang <sean.wang@kernel.org>
14599 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14601 F: Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14602 F: Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14603 F: drivers/pinctrl/mediatek/
14605 PIN CONTROLLER - MICROCHIP AT91
14606 M: Ludovic Desroches <ludovic.desroches@microchip.com>
14607 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14608 L: linux-gpio@vger.kernel.org
14610 F: drivers/gpio/gpio-sama5d2-piobu.c
14611 F: drivers/pinctrl/pinctrl-at91*
14613 PIN CONTROLLER - QUALCOMM
14614 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14615 L: linux-arm-msm@vger.kernel.org
14617 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14618 F: drivers/pinctrl/qcom/
14620 PIN CONTROLLER - RENESAS
14621 M: Geert Uytterhoeven <geert+renesas@glider.be>
14622 L: linux-renesas-soc@vger.kernel.org
14624 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14625 F: Documentation/devicetree/bindings/pinctrl/renesas,*
14626 F: drivers/pinctrl/renesas/
14628 PIN CONTROLLER - SAMSUNG
14629 M: Tomasz Figa <tomasz.figa@gmail.com>
14630 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14631 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14632 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14633 L: linux-samsung-soc@vger.kernel.org
14635 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
14636 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14637 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14638 F: drivers/pinctrl/samsung/
14639 F: include/dt-bindings/pinctrl/samsung.h
14641 PIN CONTROLLER - SINGLE
14642 M: Tony Lindgren <tony@atomide.com>
14643 M: Haojian Zhuang <haojian.zhuang@linaro.org>
14644 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14645 L: linux-omap@vger.kernel.org
14647 F: drivers/pinctrl/pinctrl-single.c
14649 PIN CONTROLLER - ST SPEAR
14650 M: Viresh Kumar <vireshk@kernel.org>
14651 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14653 W: http://www.st.com/spear
14654 F: drivers/pinctrl/spear/
14656 PISTACHIO SOC SUPPORT
14657 M: James Hartley <james.hartley@sondrel.com>
14658 L: linux-mips@vger.kernel.org
14660 F: arch/mips/boot/dts/img/pistachio*
14661 F: arch/mips/configs/pistachio*_defconfig
14662 F: arch/mips/pistachio/
14665 M: linux-block@vger.kernel.org
14667 F: drivers/block/pktcdvd.c
14668 F: include/linux/pktcdvd.h
14669 F: include/uapi/linux/pktcdvd.h
14671 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14672 M: Tomasz Duszynski <tduszyns@gmail.com>
14674 F: Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14675 F: drivers/iio/chemical/pms7003.c
14678 M: Jacob Keller <jacob.e.keller@intel.com>
14680 F: Documentation/driver-api/pldmfw/
14681 F: include/linux/pldmfw.h
14685 M: Logan Gunthorpe <logang@deltatee.com>
14687 F: drivers/dma/plx_dma.c
14690 M: Charles Hsu <hsu.yungteng@gmail.com>
14691 L: linux-hwmon@vger.kernel.org
14693 F: Documentation/hwmon/pm6764tr.rst
14694 F: drivers/hwmon/pmbus/pm6764tr.c
14697 M: "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14698 L: linux-pm@vger.kernel.org
14700 W: https://01.org/pm-graph
14701 B: https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14702 T: git git://github.com/intel/pm-graph
14703 F: tools/power/pm-graph
14705 PMBUS HARDWARE MONITORING DRIVERS
14706 M: Guenter Roeck <linux@roeck-us.net>
14707 L: linux-hwmon@vger.kernel.org
14709 W: http://hwmon.wiki.kernel.org/
14710 W: http://www.roeck-us.net/linux/drivers/
14711 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14712 F: Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14713 F: Documentation/devicetree/bindings/hwmon/ltc2978.txt
14714 F: Documentation/devicetree/bindings/hwmon/max31785.txt
14715 F: Documentation/hwmon/adm1275.rst
14716 F: Documentation/hwmon/ibm-cffps.rst
14717 F: Documentation/hwmon/ir35221.rst
14718 F: Documentation/hwmon/lm25066.rst
14719 F: Documentation/hwmon/ltc2978.rst
14720 F: Documentation/hwmon/ltc3815.rst
14721 F: Documentation/hwmon/max16064.rst
14722 F: Documentation/hwmon/max20751.rst
14723 F: Documentation/hwmon/max31785.rst
14724 F: Documentation/hwmon/max34440.rst
14725 F: Documentation/hwmon/max8688.rst
14726 F: Documentation/hwmon/pmbus-core.rst
14727 F: Documentation/hwmon/pmbus.rst
14728 F: Documentation/hwmon/tps40422.rst
14729 F: Documentation/hwmon/ucd9000.rst
14730 F: Documentation/hwmon/ucd9200.rst
14731 F: Documentation/hwmon/zl6100.rst
14732 F: drivers/hwmon/pmbus/
14733 F: include/linux/pmbus.h
14735 PMC SIERRA MaxRAID DRIVER
14736 L: linux-scsi@vger.kernel.org
14738 W: http://www.pmc-sierra.com/
14739 F: drivers/scsi/pmcraid.*
14741 PMC SIERRA PM8001 DRIVER
14742 M: Jack Wang <jinpu.wang@cloud.ionos.com>
14743 L: linux-scsi@vger.kernel.org
14745 F: drivers/scsi/pm8001/
14747 PNI RM3100 IIO DRIVER
14748 M: Song Qiang <songqiang1304521@gmail.com>
14749 L: linux-iio@vger.kernel.org
14751 F: Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14752 F: drivers/iio/magnetometer/rm3100*
14755 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14756 L: linux-acpi@vger.kernel.org
14759 F: include/linux/pnp.h
14761 POSIX CLOCKS and TIMERS
14762 M: Thomas Gleixner <tglx@linutronix.de>
14763 L: linux-kernel@vger.kernel.org
14765 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14767 F: include/linux/time_namespace.h
14768 F: include/linux/timer*
14769 F: kernel/time/*timer*
14770 F: kernel/time/namespace.c
14772 POWER MANAGEMENT CORE
14773 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
14774 L: linux-pm@vger.kernel.org
14776 B: https://bugzilla.kernel.org
14777 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14778 F: drivers/base/power/
14779 F: drivers/powercap/
14780 F: include/linux/intel_rapl.h
14781 F: include/linux/pm.h
14782 F: include/linux/pm_*
14783 F: include/linux/powercap.h
14784 F: kernel/configs/nopm.config
14786 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
14787 M: Daniel Lezcano <daniel.lezcano@kernel.org>
14788 L: linux-pm@vger.kernel.org
14790 B: https://bugzilla.kernel.org
14791 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14792 F: drivers/powercap/dtpm*
14793 F: include/linux/dtpm.h
14795 POWER STATE COORDINATION INTERFACE (PSCI)
14796 M: Mark Rutland <mark.rutland@arm.com>
14797 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14798 L: linux-arm-kernel@lists.infradead.org
14800 F: drivers/firmware/psci/
14801 F: include/linux/psci.h
14802 F: include/uapi/linux/psci.h
14804 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14805 M: Sebastian Reichel <sre@kernel.org>
14806 L: linux-pm@vger.kernel.org
14808 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14809 F: Documentation/ABI/testing/sysfs-class-power
14810 F: Documentation/devicetree/bindings/power/supply/
14811 F: drivers/power/supply/
14812 F: include/linux/power_supply.h
14814 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14815 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14816 L: linuxppc-dev@lists.ozlabs.org
14818 F: drivers/char/powernv-op-panel.c
14820 PPP OVER ATM (RFC 2364)
14821 M: Mitchell Blank Jr <mitch@sfgoth.com>
14823 F: include/uapi/linux/atmppp.h
14824 F: net/atm/pppoatm.c
14827 M: Michal Ostrowski <mostrows@earthlink.net>
14829 F: drivers/net/ppp/pppoe.c
14830 F: drivers/net/ppp/pppox.c
14833 M: James Chapman <jchapman@katalix.com>
14835 F: include/linux/if_pppol2tp.h
14836 F: include/uapi/linux/if_pppol2tp.h
14837 F: net/l2tp/l2tp_ppp.c
14839 PPP PROTOCOL DRIVERS AND COMPRESSORS
14840 M: Paul Mackerras <paulus@samba.org>
14841 L: linux-ppp@vger.kernel.org
14843 F: drivers/net/ppp/ppp_*
14846 M: Rodolfo Giometti <giometti@enneenne.com>
14847 L: linuxpps@ml.enneenne.com (subscribers-only)
14849 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
14850 F: Documentation/ABI/testing/sysfs-pps
14851 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
14852 F: Documentation/driver-api/pps.rst
14854 F: include/linux/pps*.h
14855 F: include/uapi/linux/pps.h
14858 M: Dmitry Kozlov <xeb@mail.ru>
14859 L: netdev@vger.kernel.org
14861 W: http://sourceforge.net/projects/accel-pptp
14862 F: drivers/net/ppp/pptp.c
14864 PRESSURE STALL INFORMATION (PSI)
14865 M: Johannes Weiner <hannes@cmpxchg.org>
14867 F: include/linux/psi*
14868 F: kernel/sched/psi.c
14871 M: Petr Mladek <pmladek@suse.com>
14872 M: Sergey Senozhatsky <senozhatsky@chromium.org>
14873 R: Steven Rostedt <rostedt@goodmis.org>
14874 R: John Ogness <john.ogness@linutronix.de>
14876 F: include/linux/printk.h
14879 PRISM54 WIRELESS DRIVER
14880 M: Luis Chamberlain <mcgrof@kernel.org>
14881 L: linux-wireless@vger.kernel.org
14883 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
14884 F: drivers/net/wireless/intersil/prism54/
14887 L: linux-kernel@vger.kernel.org
14888 L: linux-fsdevel@vger.kernel.org
14890 F: Documentation/filesystems/proc.rst
14892 F: include/linux/proc_fs.h
14893 F: tools/testing/selftests/proc/
14896 M: Luis Chamberlain <mcgrof@kernel.org>
14897 M: Kees Cook <keescook@chromium.org>
14898 M: Iurii Zaikin <yzaikin@google.com>
14899 L: linux-kernel@vger.kernel.org
14900 L: linux-fsdevel@vger.kernel.org
14902 F: fs/proc/proc_sysctl.c
14903 F: include/linux/sysctl.h
14904 F: kernel/sysctl-test.c
14906 F: tools/testing/selftests/sysctl/
14908 PS3 NETWORK SUPPORT
14909 M: Geoff Levand <geoff@infradead.org>
14910 L: netdev@vger.kernel.org
14911 L: linuxppc-dev@lists.ozlabs.org
14913 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
14915 PS3 PLATFORM SUPPORT
14916 M: Geoff Levand <geoff@infradead.org>
14917 L: linuxppc-dev@lists.ozlabs.org
14919 F: arch/powerpc/boot/ps3*
14920 F: arch/powerpc/include/asm/lv1call.h
14921 F: arch/powerpc/include/asm/ps3*.h
14922 F: arch/powerpc/platforms/ps3/
14925 F: drivers/rtc/rtc-ps3.c
14926 F: drivers/usb/host/*ps3.c
14927 F: sound/ppc/snd_ps3*
14930 M: Jim Paris <jim@jtan.com>
14931 M: Geoff Levand <geoff@infradead.org>
14932 L: linuxppc-dev@lists.ozlabs.org
14934 F: drivers/block/ps3vram.c
14936 PSAMPLE PACKET SAMPLING SUPPORT
14937 M: Yotam Gigi <yotam.gi@gmail.com>
14939 F: include/net/psample.h
14940 F: include/uapi/linux/psample.h
14944 M: Kees Cook <keescook@chromium.org>
14945 M: Anton Vorontsov <anton@enomsg.org>
14946 M: Colin Cross <ccross@android.com>
14947 M: Tony Luck <tony.luck@intel.com>
14949 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14950 F: Documentation/admin-guide/ramoops.rst
14951 F: Documentation/admin-guide/pstore-blk.rst
14952 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14953 F: drivers/acpi/apei/erst.c
14954 F: drivers/firmware/efi/efi-pstore.c
14956 F: include/linux/pstore*
14957 K: \b(pstore|ramoops)
14959 PTP HARDWARE CLOCK SUPPORT
14960 M: Richard Cochran <richardcochran@gmail.com>
14961 L: netdev@vger.kernel.org
14963 W: http://linuxptp.sourceforge.net/
14964 F: Documentation/ABI/testing/sysfs-ptp
14965 F: Documentation/driver-api/ptp.rst
14966 F: drivers/net/phy/dp83640*
14968 F: include/linux/ptp_cl*
14971 M: Oleg Nesterov <oleg@redhat.com>
14973 F: arch/*/*/ptrace*.c
14974 F: arch/*/include/asm/ptrace*.h
14975 F: arch/*/ptrace*.c
14976 F: include/asm-generic/syscall.h
14977 F: include/linux/ptrace.h
14978 F: include/linux/regset.h
14979 F: include/linux/tracehook.h
14980 F: include/uapi/linux/ptrace.h
14981 F: include/uapi/linux/ptrace.h
14985 M: Hans Verkuil <hverkuil@xs4all.nl>
14986 L: linux-media@vger.kernel.org
14988 T: git git://linuxtv.org/media_tree.git
14989 F: Documentation/admin-guide/media/pulse8-cec.rst
14990 F: drivers/media/cec/usb/pulse8/
14992 PVRUSB2 VIDEO4LINUX DRIVER
14993 M: Mike Isely <isely@pobox.com>
14994 L: pvrusb2@isely.net (subscribers-only)
14995 L: linux-media@vger.kernel.org
14997 W: http://www.isely.net/pvrusb2/
14998 T: git git://linuxtv.org/media_tree.git
14999 F: Documentation/driver-api/media/drivers/pvrusb2*
15000 F: drivers/media/usb/pvrusb2/
15003 M: Hans Verkuil <hverkuil@xs4all.nl>
15004 L: linux-media@vger.kernel.org
15006 T: git git://linuxtv.org/media_tree.git
15007 F: drivers/media/usb/pwc/*
15008 F: include/trace/events/pwc.h
15011 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15012 L: linux-hwmon@vger.kernel.org
15014 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15015 F: Documentation/hwmon/pwm-fan.rst
15016 F: drivers/hwmon/pwm-fan.c
15019 M: Sean Young <sean@mess.org>
15020 L: linux-media@vger.kernel.org
15022 F: drivers/media/rc/pwm-ir-tx.c
15025 M: Thierry Reding <thierry.reding@gmail.com>
15026 R: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15027 M: Lee Jones <lee.jones@linaro.org>
15028 L: linux-pwm@vger.kernel.org
15030 Q: https://patchwork.ozlabs.org/project/linux-pwm/list/
15031 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15032 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15033 F: Documentation/devicetree/bindings/pwm/
15034 F: Documentation/driver-api/pwm.rst
15035 F: drivers/gpio/gpio-mvebu.c
15037 F: drivers/video/backlight/pwm_bl.c
15038 F: include/linux/pwm.h
15039 F: include/linux/pwm_backlight.h
15040 K: pwm_(config|apply_state|ops)
15043 M: Robert Jarzmik <robert.jarzmik@free.fr>
15044 L: linux-gpio@vger.kernel.org
15046 F: drivers/gpio/gpio-pxa.c
15052 M: Robert Jarzmik <robert.jarzmik@free.fr>
15053 L: linux-rtc@vger.kernel.org
15056 PXA2xx/PXA3xx SUPPORT
15057 M: Daniel Mack <daniel@zonque.org>
15058 M: Haojian Zhuang <haojian.zhuang@gmail.com>
15059 M: Robert Jarzmik <robert.jarzmik@free.fr>
15060 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15062 T: git git://github.com/hzhuang1/linux.git
15063 T: git git://github.com/rjarzmik/linux.git
15064 F: arch/arm/boot/dts/pxa*
15065 F: arch/arm/mach-pxa/
15066 F: drivers/dma/pxa*
15067 F: drivers/pcmcia/pxa2xx*
15068 F: drivers/pinctrl/pxa/
15069 F: drivers/spi/spi-pxa2xx*
15070 F: drivers/usb/gadget/udc/pxa2*
15071 F: include/sound/pxa2xx-lib.h
15076 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15077 L: qat-linux@intel.com
15079 F: drivers/crypto/qat/
15081 QCOM AUDIO (ASoC) DRIVERS
15082 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15083 M: Banajit Goswami <bgoswami@codeaurora.org>
15084 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15086 F: sound/soc/codecs/lpass-va-macro.c
15087 F: sound/soc/codecs/lpass-wsa-macro.*
15088 F: sound/soc/codecs/msm8916-wcd-analog.c
15089 F: sound/soc/codecs/msm8916-wcd-digital.c
15090 F: sound/soc/codecs/wcd9335.*
15091 F: sound/soc/codecs/wcd934x.c
15092 F: sound/soc/codecs/wcd-clsh-v2.*
15093 F: sound/soc/codecs/wsa881x.c
15097 M: Alex Elder <elder@kernel.org>
15098 L: netdev@vger.kernel.org
15100 F: drivers/net/ipa/
15102 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15103 M: Gabriel Somlo <somlo@cmu.edu>
15104 M: "Michael S. Tsirkin" <mst@redhat.com>
15105 L: qemu-devel@nongnu.org
15107 F: drivers/firmware/qemu_fw_cfg.c
15108 F: include/uapi/linux/qemu_fw_cfg.h
15111 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15112 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15113 L: linux-rdma@vger.kernel.org
15115 F: drivers/infiniband/hw/qib/
15117 QLOGIC QL41xxx FCOE DRIVER
15118 M: Saurav Kashyap <skashyap@marvell.com>
15119 M: Javed Hasan <jhasan@marvell.com>
15120 M: GR-QLogic-Storage-Upstream@marvell.com
15121 L: linux-scsi@vger.kernel.org
15123 F: drivers/scsi/qedf/
15125 QLOGIC QL41xxx ISCSI DRIVER
15126 M: Nilesh Javali <njavali@marvell.com>
15127 M: Manish Rangankar <mrangankar@marvell.com>
15128 M: GR-QLogic-Storage-Upstream@marvell.com
15129 L: linux-scsi@vger.kernel.org
15131 F: drivers/scsi/qedi/
15133 QLOGIC QL4xxx ETHERNET DRIVER
15134 M: Ariel Elior <aelior@marvell.com>
15135 M: GR-everest-linux-l2@marvell.com
15136 L: netdev@vger.kernel.org
15138 F: drivers/net/ethernet/qlogic/qed/
15139 F: drivers/net/ethernet/qlogic/qede/
15140 F: include/linux/qed/
15142 QLOGIC QL4xxx RDMA DRIVER
15143 M: Michal Kalderon <mkalderon@marvell.com>
15144 M: Ariel Elior <aelior@marvell.com>
15145 L: linux-rdma@vger.kernel.org
15147 F: drivers/infiniband/hw/qedr/
15148 F: include/uapi/rdma/qedr-abi.h
15150 QLOGIC QLA1280 SCSI DRIVER
15151 M: Michael Reed <mdr@sgi.com>
15152 L: linux-scsi@vger.kernel.org
15154 F: drivers/scsi/qla1280.[ch]
15156 QLOGIC QLA2XXX FC-SCSI DRIVER
15157 M: Nilesh Javali <njavali@marvell.com>
15158 M: GR-QLogic-Storage-Upstream@marvell.com
15159 L: linux-scsi@vger.kernel.org
15161 F: drivers/scsi/qla2xxx/
15163 QLOGIC QLA3XXX NETWORK DRIVER
15164 M: GR-Linux-NIC-Dev@marvell.com
15165 L: netdev@vger.kernel.org
15167 F: drivers/net/ethernet/qlogic/qla3xxx.*
15169 QLOGIC QLA4XXX iSCSI DRIVER
15170 M: Nilesh Javali <njavali@marvell.com>
15171 M: Manish Rangankar <mrangankar@marvell.com>
15172 M: GR-QLogic-Storage-Upstream@marvell.com
15173 L: linux-scsi@vger.kernel.org
15175 F: drivers/scsi/qla4xxx/
15177 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15178 M: Shahed Shaikh <shshaikh@marvell.com>
15179 M: Manish Chopra <manishc@marvell.com>
15180 M: GR-Linux-NIC-Dev@marvell.com
15181 L: netdev@vger.kernel.org
15183 F: drivers/net/ethernet/qlogic/qlcnic/
15185 QLOGIC QLGE 10Gb ETHERNET DRIVER
15186 M: Manish Chopra <manishc@marvell.com>
15187 M: GR-Linux-NIC-Dev@marvell.com
15188 M: Coiby Xu <coiby.xu@gmail.com>
15189 L: netdev@vger.kernel.org
15191 F: Documentation/networking/device_drivers/qlogic/qlge.rst
15192 F: drivers/staging/qlge/
15194 QM1D1B0004 MEDIA DRIVER
15195 M: Akihiro Tsukada <tskd08@gmail.com>
15196 L: linux-media@vger.kernel.org
15198 F: drivers/media/tuners/qm1d1b0004*
15200 QM1D1C0042 MEDIA DRIVER
15201 M: Akihiro Tsukada <tskd08@gmail.com>
15202 L: linux-media@vger.kernel.org
15204 F: drivers/media/tuners/qm1d1c0042*
15207 M: Anders Larsen <al@alarsen.net>
15209 W: http://www.alarsen.net/linux/qnx4fs/
15211 F: include/uapi/linux/qnx4_fs.h
15212 F: include/uapi/linux/qnxtypes.h
15214 QORIQ DPAA2 FSL-MC BUS DRIVER
15215 M: Stuart Yoder <stuyoder@gmail.com>
15216 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
15217 L: linux-kernel@vger.kernel.org
15219 F: Documentation/ABI/stable/sysfs-bus-fsl-mc
15220 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15221 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15222 F: drivers/bus/fsl-mc/
15223 F: include/uapi/linux/fsl_mc.h
15225 QT1010 MEDIA DRIVER
15226 M: Antti Palosaari <crope@iki.fi>
15227 L: linux-media@vger.kernel.org
15229 W: https://linuxtv.org
15230 W: http://palosaari.fi/linux/
15231 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15232 T: git git://linuxtv.org/anttip/media_tree.git
15233 F: drivers/media/tuners/qt1010*
15235 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15236 M: Kalle Valo <kvalo@codeaurora.org>
15237 L: ath10k@lists.infradead.org
15239 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15240 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15241 F: drivers/net/wireless/ath/ath10k/
15243 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15244 M: Kalle Valo <kvalo@codeaurora.org>
15245 L: ath11k@lists.infradead.org
15247 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15248 F: drivers/net/wireless/ath/ath11k/
15250 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15251 M: ath9k-devel@qca.qualcomm.com
15252 L: linux-wireless@vger.kernel.org
15254 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15255 F: drivers/net/wireless/ath/ath9k/
15257 QUALCOMM CAMERA SUBSYSTEM DRIVER
15258 M: Robert Foss <robert.foss@linaro.org>
15259 M: Todor Tomov <todor.too@gmail.com>
15260 L: linux-media@vger.kernel.org
15262 F: Documentation/admin-guide/media/qcom_camss.rst
15263 F: Documentation/devicetree/bindings/media/*camss*
15264 F: drivers/media/platform/qcom/camss/
15266 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15267 M: Niklas Cassel <nks@flawful.org>
15268 L: linux-pm@vger.kernel.org
15269 L: linux-arm-msm@vger.kernel.org
15271 F: Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15272 F: drivers/soc/qcom/cpr.c
15274 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15275 M: Ilia Lin <ilia.lin@kernel.org>
15276 L: linux-pm@vger.kernel.org
15278 F: Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15279 F: drivers/cpufreq/qcom-cpufreq-nvmem.c
15281 QUALCOMM CRYPTO DRIVERS
15282 M: Thara Gopinath <thara.gopinath@linaro.org>
15283 L: linux-crypto@vger.kernel.org
15284 L: linux-arm-msm@vger.kernel.org
15286 F: drivers/crypto/qce/
15288 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15289 M: Timur Tabi <timur@kernel.org>
15290 L: netdev@vger.kernel.org
15292 F: drivers/net/ethernet/qualcomm/emac/
15294 QUALCOMM ETHQOS ETHERNET DRIVER
15295 M: Vinod Koul <vkoul@kernel.org>
15296 L: netdev@vger.kernel.org
15298 F: Documentation/devicetree/bindings/net/qcom,ethqos.txt
15299 F: drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15301 QUALCOMM GENERIC INTERFACE I2C DRIVER
15302 M: Akash Asthana <akashast@codeaurora.org>
15303 M: Mukesh Savaliya <msavaliy@codeaurora.org>
15304 L: linux-i2c@vger.kernel.org
15305 L: linux-arm-msm@vger.kernel.org
15307 F: drivers/i2c/busses/i2c-qcom-geni.c
15309 QUALCOMM HEXAGON ARCHITECTURE
15310 M: Brian Cain <bcain@codeaurora.org>
15311 L: linux-hexagon@vger.kernel.org
15315 QUALCOMM HIDMA DRIVER
15316 M: Sinan Kaya <okaya@kernel.org>
15317 L: linux-arm-kernel@lists.infradead.org
15318 L: linux-arm-msm@vger.kernel.org
15319 L: dmaengine@vger.kernel.org
15321 F: drivers/dma/qcom/hidma*
15323 QUALCOMM I2C CCI DRIVER
15324 M: Loic Poulain <loic.poulain@linaro.org>
15325 M: Robert Foss <robert.foss@linaro.org>
15326 L: linux-i2c@vger.kernel.org
15327 L: linux-arm-msm@vger.kernel.org
15329 F: Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15330 F: drivers/i2c/busses/i2c-qcom-cci.c
15333 M: Rob Clark <robdclark@gmail.com>
15334 L: iommu@lists.linux-foundation.org
15335 L: linux-arm-msm@vger.kernel.org
15337 F: drivers/iommu/arm/arm-smmu/qcom_iommu.c
15339 QUALCOMM IPC ROUTER (QRTR) DRIVER
15340 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15341 L: linux-arm-msm@vger.kernel.org
15343 F: include/trace/events/qrtr.h
15344 F: include/uapi/linux/qrtr.h
15347 QUALCOMM IPCC MAILBOX DRIVER
15348 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15349 L: linux-arm-msm@vger.kernel.org
15351 F: Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15352 F: drivers/mailbox/qcom-ipcc.c
15353 F: include/dt-bindings/mailbox/qcom-ipcc.h
15355 QUALCOMM IPQ4019 USB PHY DRIVER
15356 M: Robert Marko <robert.marko@sartura.hr>
15357 M: Luka Perkov <luka.perkov@sartura.hr>
15358 L: linux-arm-msm@vger.kernel.org
15360 F: Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15361 F: drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15363 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15364 M: Robert Marko <robert.marko@sartura.hr>
15365 M: Luka Perkov <luka.perkov@sartura.hr>
15366 L: linux-arm-msm@vger.kernel.org
15368 F: Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15369 F: drivers/regulator/vqmmc-ipq4019-regulator.c
15371 QUALCOMM RMNET DRIVER
15372 M: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15373 M: Sean Tranchetti <stranche@codeaurora.org>
15374 L: netdev@vger.kernel.org
15376 F: Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15377 F: drivers/net/ethernet/qualcomm/rmnet/
15378 F: include/linux/if_rmnet.h
15380 QUALCOMM TSENS THERMAL DRIVER
15381 M: Amit Kucheria <amitk@kernel.org>
15382 M: Thara Gopinath <thara.gopinath@linaro.org>
15383 L: linux-pm@vger.kernel.org
15384 L: linux-arm-msm@vger.kernel.org
15386 F: Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15387 F: drivers/thermal/qcom/
15389 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15390 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
15391 L: linux-media@vger.kernel.org
15392 L: linux-arm-msm@vger.kernel.org
15394 T: git git://linuxtv.org/media_tree.git
15395 F: Documentation/devicetree/bindings/media/*venus*
15396 F: drivers/media/platform/qcom/venus/
15398 QUALCOMM WCN36XX WIRELESS DRIVER
15399 M: Kalle Valo <kvalo@codeaurora.org>
15400 L: wcn36xx@lists.infradead.org
15402 W: https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15403 T: git git://github.com/KrasnikovEugene/wcn36xx.git
15404 F: drivers/net/wireless/ath/wcn36xx/
15406 QUANTENNA QTNFMAC WIRELESS DRIVER
15407 M: Igor Mitsyanko <imitsyanko@quantenna.com>
15408 R: Sergey Matyukevich <geomatsi@gmail.com>
15409 L: linux-wireless@vger.kernel.org
15411 F: drivers/net/wireless/quantenna
15413 RADEON and AMDGPU DRM DRIVERS
15414 M: Alex Deucher <alexander.deucher@amd.com>
15415 M: Christian König <christian.koenig@amd.com>
15416 M: Pan, Xinhui <Xinhui.Pan@amd.com>
15417 L: amd-gfx@lists.freedesktop.org
15419 T: git https://gitlab.freedesktop.org/agd5f/linux.git
15420 F: drivers/gpu/drm/amd/
15421 F: drivers/gpu/drm/radeon/
15422 F: include/uapi/drm/amdgpu_drm.h
15423 F: include/uapi/drm/radeon_drm.h
15425 RADEON FRAMEBUFFER DISPLAY DRIVER
15426 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
15427 L: linux-fbdev@vger.kernel.org
15429 F: drivers/video/fbdev/aty/radeon*
15430 F: include/uapi/linux/radeonfb.h
15432 RADIOSHARK RADIO DRIVER
15433 M: Hans Verkuil <hverkuil@xs4all.nl>
15434 L: linux-media@vger.kernel.org
15436 T: git git://linuxtv.org/media_tree.git
15437 F: drivers/media/radio/radio-shark.c
15439 RADIOSHARK2 RADIO DRIVER
15440 M: Hans Verkuil <hverkuil@xs4all.nl>
15441 L: linux-media@vger.kernel.org
15443 T: git git://linuxtv.org/media_tree.git
15444 F: drivers/media/radio/radio-shark2.c
15445 F: drivers/media/radio/radio-tea5777.c
15447 RADOS BLOCK DEVICE (RBD)
15448 M: Ilya Dryomov <idryomov@gmail.com>
15449 R: Dongsheng Yang <dongsheng.yang@easystack.cn>
15450 L: ceph-devel@vger.kernel.org
15452 W: http://ceph.com/
15453 T: git git://github.com/ceph/ceph-client.git
15454 F: Documentation/ABI/testing/sysfs-bus-rbd
15455 F: drivers/block/rbd.c
15456 F: drivers/block/rbd_types.h
15458 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15459 M: Paul Mackerras <paulus@samba.org>
15460 L: linux-fbdev@vger.kernel.org
15462 F: drivers/video/fbdev/aty/aty128fb.c
15464 RAINSHADOW-CEC DRIVER
15465 M: Hans Verkuil <hverkuil@xs4all.nl>
15466 L: linux-media@vger.kernel.org
15468 T: git git://linuxtv.org/media_tree.git
15469 F: drivers/media/cec/usb/rainshadow/
15471 RALINK MIPS ARCHITECTURE
15472 M: John Crispin <john@phrozen.org>
15473 L: linux-mips@vger.kernel.org
15475 F: arch/mips/ralink
15477 RALINK RT2X00 WIRELESS LAN DRIVER
15478 M: Stanislaw Gruszka <stf_xl@wp.pl>
15479 M: Helmut Schaa <helmut.schaa@googlemail.com>
15480 L: linux-wireless@vger.kernel.org
15482 F: drivers/net/wireless/ralink/rt2x00/
15484 RAMDISK RAM BLOCK DEVICE DRIVER
15485 M: Jens Axboe <axboe@kernel.dk>
15487 F: Documentation/admin-guide/blockdev/ramdisk.rst
15488 F: drivers/block/brd.c
15490 RANCHU VIRTUAL BOARD FOR MIPS
15491 M: Miodrag Dinic <miodrag.dinic@mips.com>
15492 L: linux-mips@vger.kernel.org
15494 F: arch/mips/configs/generic/board-ranchu.config
15495 F: arch/mips/generic/board-ranchu.c
15497 RANDOM NUMBER DRIVER
15498 M: "Theodore Ts'o" <tytso@mit.edu>
15500 F: drivers/char/random.c
15503 M: Matt Porter <mporter@kernel.crashing.org>
15504 M: Alexandre Bounine <alex.bou9@gmail.com>
15506 F: drivers/rapidio/
15509 M: Tony Luck <tony.luck@intel.com>
15510 M: Borislav Petkov <bp@alien8.de>
15511 L: linux-edac@vger.kernel.org
15513 F: Documentation/admin-guide/ras.rst
15515 F: include/linux/ras.h
15516 F: include/ras/ras_event.h
15518 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15519 L: linux-wireless@vger.kernel.org
15521 F: drivers/net/wireless/ray*
15523 RC-CORE / LIRC FRAMEWORK
15524 M: Sean Young <sean@mess.org>
15525 L: linux-media@vger.kernel.org
15527 W: http://linuxtv.org
15528 T: git git://linuxtv.org/media_tree.git
15529 F: Documentation/driver-api/media/rc-core.rst
15530 F: Documentation/userspace-api/media/rc/
15531 F: drivers/media/rc/
15532 F: include/media/rc-map.h
15533 F: include/media/rc-core.h
15534 F: include/uapi/linux/lirc.h
15536 RCMM REMOTE CONTROLS DECODER
15537 M: Patrick Lerda <patrick9876@free.fr>
15539 F: drivers/media/rc/ir-rcmm-decoder.c
15541 RCUTORTURE TEST FRAMEWORK
15542 M: "Paul E. McKenney" <paulmck@kernel.org>
15543 M: Josh Triplett <josh@joshtriplett.org>
15544 R: Steven Rostedt <rostedt@goodmis.org>
15545 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15546 R: Lai Jiangshan <jiangshanlai@gmail.com>
15547 L: rcu@vger.kernel.org
15549 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15550 F: tools/testing/selftests/rcutorture
15552 RDACM20 Camera Sensor
15553 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15554 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15555 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15556 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15557 L: linux-media@vger.kernel.org
15559 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15560 F: drivers/media/i2c/max9271.c
15561 F: drivers/media/i2c/max9271.h
15562 F: drivers/media/i2c/rdacm20.c
15564 RDACM21 Camera Sensor
15565 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15566 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15567 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15568 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15569 L: linux-media@vger.kernel.org
15571 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15572 F: drivers/media/i2c/max9271.c
15573 F: drivers/media/i2c/max9271.h
15574 F: drivers/media/i2c/rdacm21.c
15577 M: Florian Fainelli <florian@openwrt.org>
15580 RDC R6040 FAST ETHERNET DRIVER
15581 M: Florian Fainelli <f.fainelli@gmail.com>
15582 L: netdev@vger.kernel.org
15584 F: drivers/net/ethernet/rdc/r6040.c
15586 RDMAVT - RDMA verbs software
15587 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15588 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15589 L: linux-rdma@vger.kernel.org
15591 F: drivers/infiniband/sw/rdmavt
15593 RDS - RELIABLE DATAGRAM SOCKETS
15594 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
15595 L: netdev@vger.kernel.org
15596 L: linux-rdma@vger.kernel.org
15597 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
15599 W: https://oss.oracle.com/projects/rds/
15600 F: Documentation/networking/rds.rst
15603 RDT - RESOURCE ALLOCATION
15604 M: Fenghua Yu <fenghua.yu@intel.com>
15605 M: Reinette Chatre <reinette.chatre@intel.com>
15606 L: linux-kernel@vger.kernel.org
15608 F: Documentation/x86/resctrl*
15609 F: arch/x86/include/asm/resctrl.h
15610 F: arch/x86/kernel/cpu/resctrl/
15611 F: tools/testing/selftests/resctrl/
15613 READ-COPY UPDATE (RCU)
15614 M: "Paul E. McKenney" <paulmck@kernel.org>
15615 M: Josh Triplett <josh@joshtriplett.org>
15616 R: Steven Rostedt <rostedt@goodmis.org>
15617 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15618 R: Lai Jiangshan <jiangshanlai@gmail.com>
15619 R: Joel Fernandes <joel@joelfernandes.org>
15620 L: rcu@vger.kernel.org
15622 W: http://www.rdrop.com/users/paulmck/RCU/
15623 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15624 F: Documentation/RCU/
15625 F: include/linux/rcu*
15627 X: Documentation/RCU/torture.rst
15628 X: include/linux/srcu*.h
15629 X: kernel/rcu/srcu*.c
15631 REAL TIME CLOCK (RTC) SUBSYSTEM
15632 M: Alessandro Zummo <a.zummo@towertech.it>
15633 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
15634 L: linux-rtc@vger.kernel.org
15636 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
15637 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15638 F: Documentation/admin-guide/rtc.rst
15639 F: Documentation/devicetree/bindings/rtc/
15641 F: include/linux/platform_data/rtc-*
15642 F: include/linux/rtc.h
15643 F: include/linux/rtc/
15644 F: include/uapi/linux/rtc.h
15645 F: tools/testing/selftests/rtc/
15647 REALTEK AUDIO CODECS
15648 M: Oder Chiou <oder_chiou@realtek.com>
15650 F: include/sound/rt*.h
15651 F: sound/soc/codecs/rt*
15653 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15654 M: Linus Walleij <linus.walleij@linaro.org>
15656 F: Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15657 F: drivers/net/dsa/realtek-smi*
15658 F: drivers/net/dsa/rtl83*
15660 REALTEK WIRELESS DRIVER (rtlwifi family)
15661 M: Ping-Ke Shih <pkshih@realtek.com>
15662 L: linux-wireless@vger.kernel.org
15664 W: https://wireless.wiki.kernel.org/
15665 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15666 F: drivers/net/wireless/realtek/rtlwifi/
15668 REALTEK WIRELESS DRIVER (rtw88)
15669 M: Yan-Hsuan Chuang <tony0620emma@gmail.com>
15670 L: linux-wireless@vger.kernel.org
15672 F: drivers/net/wireless/realtek/rtw88/
15674 REDPINE WIRELESS DRIVER
15675 M: Amitkumar Karwar <amitkarwar@gmail.com>
15676 M: Siva Rebbagondla <siva8118@gmail.com>
15677 L: linux-wireless@vger.kernel.org
15679 F: drivers/net/wireless/rsi/
15681 REGISTER MAP ABSTRACTION
15682 M: Mark Brown <broonie@kernel.org>
15683 L: linux-kernel@vger.kernel.org
15685 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15686 F: Documentation/devicetree/bindings/regmap/
15687 F: drivers/base/regmap/
15688 F: include/linux/regmap.h
15690 REISERFS FILE SYSTEM
15691 L: reiserfs-devel@vger.kernel.org
15695 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15696 M: Ohad Ben-Cohen <ohad@wizery.com>
15697 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15698 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15699 L: linux-remoteproc@vger.kernel.org
15701 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15702 F: Documentation/ABI/testing/sysfs-class-remoteproc
15703 F: Documentation/devicetree/bindings/remoteproc/
15704 F: Documentation/staging/remoteproc.rst
15705 F: drivers/remoteproc/
15706 F: include/linux/remoteproc.h
15707 F: include/linux/remoteproc/
15709 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15710 M: Ohad Ben-Cohen <ohad@wizery.com>
15711 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15712 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15713 L: linux-remoteproc@vger.kernel.org
15715 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15716 F: Documentation/ABI/testing/sysfs-bus-rpmsg
15717 F: Documentation/staging/rpmsg.rst
15719 F: include/linux/rpmsg.h
15720 F: include/linux/rpmsg/
15721 F: include/uapi/linux/rpmsg.h
15724 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15725 M: Stephan Gerhold <stephan@gerhold.net>
15726 L: netdev@vger.kernel.org
15727 L: linux-remoteproc@vger.kernel.org
15729 F: drivers/net/wwan/rpmsg_wwan_ctrl.c
15731 RENESAS CLOCK DRIVERS
15732 M: Geert Uytterhoeven <geert+renesas@glider.be>
15733 L: linux-renesas-soc@vger.kernel.org
15735 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15736 F: Documentation/devicetree/bindings/clock/renesas,*
15737 F: drivers/clk/renesas/
15739 RENESAS EMEV2 I2C DRIVER
15740 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
15741 L: linux-renesas-soc@vger.kernel.org
15743 F: Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
15744 F: drivers/i2c/busses/i2c-emev2.c
15746 RENESAS ETHERNET DRIVERS
15747 R: Sergei Shtylyov <sergei.shtylyov@gmail.com>
15748 L: netdev@vger.kernel.org
15749 L: linux-renesas-soc@vger.kernel.org
15750 F: Documentation/devicetree/bindings/net/renesas,*.yaml
15751 F: drivers/net/ethernet/renesas/
15752 F: include/linux/sh_eth.h
15754 RENESAS R-CAR GYROADC DRIVER
15755 M: Marek Vasut <marek.vasut@gmail.com>
15756 L: linux-iio@vger.kernel.org
15758 F: Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15759 F: drivers/iio/adc/rcar-gyroadc.c
15761 RENESAS R-CAR I2C DRIVERS
15762 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
15763 L: linux-renesas-soc@vger.kernel.org
15765 F: Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
15766 F: Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
15767 F: drivers/i2c/busses/i2c-rcar.c
15768 F: drivers/i2c/busses/i2c-sh_mobile.c
15770 RENESAS R-CAR THERMAL DRIVERS
15771 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
15772 L: linux-renesas-soc@vger.kernel.org
15774 F: Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15775 F: Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15776 F: drivers/thermal/rcar_gen3_thermal.c
15777 F: drivers/thermal/rcar_thermal.c
15779 RENESAS RIIC DRIVER
15780 M: Chris Brandt <chris.brandt@renesas.com>
15781 L: linux-renesas-soc@vger.kernel.org
15783 F: Documentation/devicetree/bindings/i2c/renesas,riic.yaml
15784 F: drivers/i2c/busses/i2c-riic.c
15786 RENESAS USB PHY DRIVER
15787 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15788 L: linux-renesas-soc@vger.kernel.org
15790 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
15792 RESET CONTROLLER FRAMEWORK
15793 M: Philipp Zabel <p.zabel@pengutronix.de>
15795 T: git git://git.pengutronix.de/git/pza/linux
15796 F: Documentation/devicetree/bindings/reset/
15797 F: Documentation/driver-api/reset.rst
15799 F: include/dt-bindings/reset/
15800 F: include/linux/reset-controller.h
15801 F: include/linux/reset.h
15802 F: include/linux/reset/
15803 K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15805 RESTARTABLE SEQUENCES SUPPORT
15806 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15807 M: Peter Zijlstra <peterz@infradead.org>
15808 M: "Paul E. McKenney" <paulmck@kernel.org>
15809 M: Boqun Feng <boqun.feng@gmail.com>
15810 L: linux-kernel@vger.kernel.org
15812 F: include/trace/events/rseq.h
15813 F: include/uapi/linux/rseq.h
15815 F: tools/testing/selftests/rseq/
15818 M: Johannes Berg <johannes@sipsolutions.net>
15819 L: linux-wireless@vger.kernel.org
15821 W: https://wireless.wiki.kernel.org/
15822 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15823 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15824 F: Documentation/ABI/stable/sysfs-class-rfkill
15825 F: Documentation/driver-api/rfkill.rst
15826 F: include/linux/rfkill.h
15827 F: include/uapi/linux/rfkill.h
15831 M: Thomas Graf <tgraf@suug.ch>
15832 M: Herbert Xu <herbert@gondor.apana.org.au>
15833 L: netdev@vger.kernel.org
15835 F: include/linux/rhashtable-types.h
15836 F: include/linux/rhashtable.h
15837 F: lib/rhashtable.c
15838 F: lib/test_rhashtable.c
15840 RICOH R5C592 MEMORYSTICK DRIVER
15841 M: Maxim Levitsky <maximlevitsky@gmail.com>
15843 F: drivers/memstick/host/r592.*
15845 RICOH SMARTMEDIA/XD DRIVER
15846 M: Maxim Levitsky <maximlevitsky@gmail.com>
15848 F: drivers/mtd/nand/raw/r852.c
15849 F: drivers/mtd/nand/raw/r852.h
15851 RISC-V ARCHITECTURE
15852 M: Paul Walmsley <paul.walmsley@sifive.com>
15853 M: Palmer Dabbelt <palmer@dabbelt.com>
15854 M: Albert Ou <aou@eecs.berkeley.edu>
15855 L: linux-riscv@lists.infradead.org
15857 P: Documentation/riscv/patch-acceptance.rst
15858 T: git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15863 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
15864 M: Lewis Hanly <lewis.hanly@microchip.com>
15865 L: linux-riscv@lists.infradead.org
15867 F: drivers/mailbox/mailbox-mpfs.c
15868 F: drivers/soc/microchip/
15869 F: include/soc/microchip/mpfs.h
15872 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
15873 M: Jack Wang <jinpu.wang@ionos.com>
15874 L: linux-block@vger.kernel.org
15876 F: drivers/block/rnbd/
15879 M: Stefan Achatz <erazor_de@users.sourceforge.net>
15881 W: http://sourceforge.net/projects/roccat/
15882 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
15883 F: drivers/hid/hid-roccat*
15884 F: include/linux/hid-roccat*
15886 ROCKCHIP ISP V1 DRIVER
15887 M: Helen Koike <helen.koike@collabora.com>
15888 M: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15889 L: linux-media@vger.kernel.org
15890 L: linux-rockchip@lists.infradead.org
15892 F: Documentation/admin-guide/media/rkisp1.rst
15893 F: Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15894 F: Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15895 F: drivers/media/platform/rockchip/rkisp1
15896 F: include/uapi/linux/rkisp1-config.h
15898 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15899 M: Jacob Chen <jacob-chen@iotwrt.com>
15900 M: Ezequiel Garcia <ezequiel@collabora.com>
15901 L: linux-media@vger.kernel.org
15902 L: linux-rockchip@lists.infradead.org
15904 F: Documentation/devicetree/bindings/media/rockchip-rga.yaml
15905 F: drivers/media/platform/rockchip/rga/
15907 ROCKCHIP VIDEO DECODER DRIVER
15908 M: Ezequiel Garcia <ezequiel@collabora.com>
15909 L: linux-media@vger.kernel.org
15910 L: linux-rockchip@lists.infradead.org
15912 F: Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15913 F: drivers/staging/media/rkvdec/
15916 M: Jiri Pirko <jiri@resnulli.us>
15917 L: netdev@vger.kernel.org
15919 F: drivers/net/ethernet/rocker/
15921 ROCKETPORT EXPRESS/INFINITY DRIVER
15922 M: Kevin Cernekee <cernekee@gmail.com>
15923 L: linux-serial@vger.kernel.org
15925 F: drivers/tty/serial/rp2.*
15927 ROHM BD99954 CHARGER IC
15928 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15929 L: linux-power@fi.rohmeurope.com
15931 F: drivers/power/supply/bd99954-charger.c
15932 F: drivers/power/supply/bd99954-charger.h
15934 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15935 M: Tomasz Duszynski <tduszyns@gmail.com>
15937 F: Documentation/devicetree/bindings/iio/light/bh1750.yaml
15938 F: drivers/iio/light/bh1750.c
15940 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15941 M: Marek Vasut <marek.vasut+renesas@gmail.com>
15942 L: linux-kernel@vger.kernel.org
15943 L: linux-renesas-soc@vger.kernel.org
15945 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15946 F: drivers/gpio/gpio-bd9571mwv.c
15947 F: drivers/mfd/bd9571mwv.c
15948 F: drivers/regulator/bd9571mwv-regulator.c
15949 F: include/linux/mfd/bd9571mwv.h
15951 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15952 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15953 L: linux-power@fi.rohmeurope.com
15955 F: Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15956 F: Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15957 F: drivers/clk/clk-bd718x7.c
15958 F: drivers/gpio/gpio-bd70528.c
15959 F: drivers/gpio/gpio-bd71815.c
15960 F: drivers/gpio/gpio-bd71828.c
15961 F: drivers/mfd/rohm-bd70528.c
15962 F: drivers/mfd/rohm-bd71828.c
15963 F: drivers/mfd/rohm-bd718x7.c
15964 F: drivers/mfd/rohm-bd9576.c
15965 F: drivers/power/supply/bd70528-charger.c
15966 F: drivers/regulator/bd70528-regulator.c
15967 F: drivers/regulator/bd71815-regulator.c
15968 F: drivers/regulator/bd71828-regulator.c
15969 F: drivers/regulator/bd718x7-regulator.c
15970 F: drivers/regulator/bd9576-regulator.c
15971 F: drivers/regulator/rohm-regulator.c
15972 F: drivers/rtc/rtc-bd70528.c
15973 F: drivers/watchdog/bd70528_wdt.c
15974 F: drivers/watchdog/bd9576_wdt.c
15975 F: include/linux/mfd/rohm-bd70528.h
15976 F: include/linux/mfd/rohm-bd71815.h
15977 F: include/linux/mfd/rohm-bd71828.h
15978 F: include/linux/mfd/rohm-bd718x7.h
15979 F: include/linux/mfd/rohm-bd957x.h
15980 F: include/linux/mfd/rohm-generic.h
15981 F: include/linux/mfd/rohm-shared.h
15984 M: Ralf Baechle <ralf@linux-mips.org>
15985 L: linux-hams@vger.kernel.org
15987 W: http://www.linux-ax25.org/
15988 F: include/net/rose.h
15989 F: include/uapi/linux/rose.h
15992 ROTATION DRIVER FOR ALLWINNER A83T
15993 M: Jernej Skrabec <jernej.skrabec@gmail.com>
15994 L: linux-media@vger.kernel.org
15996 T: git git://linuxtv.org/media_tree.git
15997 F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15998 F: drivers/media/platform/sunxi/sun8i-rotate/
16000 RTL2830 MEDIA DRIVER
16001 M: Antti Palosaari <crope@iki.fi>
16002 L: linux-media@vger.kernel.org
16004 W: https://linuxtv.org
16005 W: http://palosaari.fi/linux/
16006 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16007 T: git git://linuxtv.org/anttip/media_tree.git
16008 F: drivers/media/dvb-frontends/rtl2830*
16010 RTL2832 MEDIA DRIVER
16011 M: Antti Palosaari <crope@iki.fi>
16012 L: linux-media@vger.kernel.org
16014 W: https://linuxtv.org
16015 W: http://palosaari.fi/linux/
16016 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16017 T: git git://linuxtv.org/anttip/media_tree.git
16018 F: drivers/media/dvb-frontends/rtl2832*
16020 RTL2832_SDR MEDIA DRIVER
16021 M: Antti Palosaari <crope@iki.fi>
16022 L: linux-media@vger.kernel.org
16024 W: https://linuxtv.org
16025 W: http://palosaari.fi/linux/
16026 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16027 T: git git://linuxtv.org/anttip/media_tree.git
16028 F: drivers/media/dvb-frontends/rtl2832_sdr*
16030 RTL8180 WIRELESS DRIVER
16031 L: linux-wireless@vger.kernel.org
16033 W: https://wireless.wiki.kernel.org/
16034 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16035 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
16037 RTL8187 WIRELESS DRIVER
16038 M: Herton Ronaldo Krzesinski <herton@canonical.com>
16039 M: Hin-Tak Leung <htl10@users.sourceforge.net>
16040 M: Larry Finger <Larry.Finger@lwfinger.net>
16041 L: linux-wireless@vger.kernel.org
16043 W: https://wireless.wiki.kernel.org/
16044 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16045 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
16047 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16048 M: Jes Sorensen <Jes.Sorensen@gmail.com>
16049 L: linux-wireless@vger.kernel.org
16051 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16052 F: drivers/net/wireless/realtek/rtl8xxxu/
16054 RTRS TRANSPORT DRIVERS
16055 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16056 M: Jack Wang <jinpu.wang@ionos.com>
16057 L: linux-rdma@vger.kernel.org
16059 F: drivers/infiniband/ulp/rtrs/
16061 RXRPC SOCKETS (AF_RXRPC)
16062 M: David Howells <dhowells@redhat.com>
16063 M: Marc Dionne <marc.dionne@auristor.com>
16064 L: linux-afs@lists.infradead.org
16066 W: https://www.infradead.org/~dhowells/kafs/
16067 F: Documentation/networking/rxrpc.rst
16068 F: include/keys/rxrpc-type.h
16069 F: include/net/af_rxrpc.h
16070 F: include/trace/events/rxrpc.h
16071 F: include/uapi/linux/rxrpc.h
16074 S3 SAVAGE FRAMEBUFFER DRIVER
16075 M: Antonino Daplas <adaplas@gmail.com>
16076 L: linux-fbdev@vger.kernel.org
16078 F: drivers/video/fbdev/savage/
16081 M: Heiko Carstens <hca@linux.ibm.com>
16082 M: Vasily Gorbik <gor@linux.ibm.com>
16083 M: Christian Borntraeger <borntraeger@de.ibm.com>
16084 L: linux-s390@vger.kernel.org
16086 W: http://www.ibm.com/developerworks/linux/linux390/
16087 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16088 F: Documentation/driver-api/s390-drivers.rst
16089 F: Documentation/s390/
16093 S390 COMMON I/O LAYER
16094 M: Vineeth Vijayan <vneethv@linux.ibm.com>
16095 M: Peter Oberparleiter <oberpar@linux.ibm.com>
16096 L: linux-s390@vger.kernel.org
16098 W: http://www.ibm.com/developerworks/linux/linux390/
16099 F: drivers/s390/cio/
16102 M: Stefan Haberland <sth@linux.ibm.com>
16103 M: Jan Hoeppner <hoeppner@linux.ibm.com>
16104 L: linux-s390@vger.kernel.org
16106 W: http://www.ibm.com/developerworks/linux/linux390/
16107 F: block/partitions/ibm.c
16108 F: drivers/s390/block/dasd*
16109 F: include/linux/dasd_mod.h
16112 M: Matthew Rosato <mjrosato@linux.ibm.com>
16113 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16114 L: linux-s390@vger.kernel.org
16116 W: http://www.ibm.com/developerworks/linux/linux390/
16117 F: drivers/iommu/s390-iommu.c
16119 S390 IUCV NETWORK LAYER
16120 M: Julian Wiedmann <jwi@linux.ibm.com>
16121 M: Karsten Graul <kgraul@linux.ibm.com>
16122 L: linux-s390@vger.kernel.org
16123 L: netdev@vger.kernel.org
16125 W: http://www.ibm.com/developerworks/linux/linux390/
16126 F: drivers/s390/net/*iucv*
16127 F: include/net/iucv/
16130 S390 NETWORK DRIVERS
16131 M: Julian Wiedmann <jwi@linux.ibm.com>
16132 M: Karsten Graul <kgraul@linux.ibm.com>
16133 L: linux-s390@vger.kernel.org
16134 L: netdev@vger.kernel.org
16136 W: http://www.ibm.com/developerworks/linux/linux390/
16137 F: drivers/s390/net/
16140 M: Niklas Schnelle <schnelle@linux.ibm.com>
16141 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16142 L: linux-s390@vger.kernel.org
16144 W: http://www.ibm.com/developerworks/linux/linux390/
16146 F: drivers/pci/hotplug/s390_pci_hpc.c
16147 F: Documentation/s390/pci.rst
16149 S390 VFIO AP DRIVER
16150 M: Tony Krowiak <akrowiak@linux.ibm.com>
16151 M: Halil Pasic <pasic@linux.ibm.com>
16152 M: Jason Herne <jjherne@linux.ibm.com>
16153 L: linux-s390@vger.kernel.org
16155 W: http://www.ibm.com/developerworks/linux/linux390/
16156 F: Documentation/s390/vfio-ap.rst
16157 F: drivers/s390/crypto/vfio_ap_drv.c
16158 F: drivers/s390/crypto/vfio_ap_ops.c
16159 F: drivers/s390/crypto/vfio_ap_private.h
16161 S390 VFIO-CCW DRIVER
16162 M: Cornelia Huck <cohuck@redhat.com>
16163 M: Eric Farman <farman@linux.ibm.com>
16164 M: Matthew Rosato <mjrosato@linux.ibm.com>
16165 R: Halil Pasic <pasic@linux.ibm.com>
16166 L: linux-s390@vger.kernel.org
16167 L: kvm@vger.kernel.org
16169 F: Documentation/s390/vfio-ccw.rst
16170 F: drivers/s390/cio/vfio_ccw*
16171 F: include/uapi/linux/vfio_ccw.h
16173 S390 VFIO-PCI DRIVER
16174 M: Matthew Rosato <mjrosato@linux.ibm.com>
16175 M: Eric Farman <farman@linux.ibm.com>
16176 L: linux-s390@vger.kernel.org
16177 L: kvm@vger.kernel.org
16179 F: drivers/vfio/pci/vfio_pci_zdev.c
16180 F: include/uapi/linux/vfio_zdev.h
16183 M: Harald Freudenberger <freude@linux.ibm.com>
16184 L: linux-s390@vger.kernel.org
16186 W: http://www.ibm.com/developerworks/linux/linux390/
16187 F: drivers/s390/crypto/
16190 M: Steffen Maier <maier@linux.ibm.com>
16191 M: Benjamin Block <bblock@linux.ibm.com>
16192 L: linux-s390@vger.kernel.org
16194 W: http://www.ibm.com/developerworks/linux/linux390/
16195 F: drivers/s390/scsi/zfcp_*
16197 S3C ADC BATTERY DRIVER
16198 M: Krzysztof Kozlowski <krzk@kernel.org>
16199 L: linux-samsung-soc@vger.kernel.org
16201 F: drivers/power/supply/s3c_adc_battery.c
16202 F: include/linux/s3c_adc_battery.h
16204 S3C24XX SD/MMC Driver
16205 M: Ben Dooks <ben-linux@fluff.org>
16206 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16208 F: drivers/mmc/host/s3cmci.*
16210 SAA6588 RDS RECEIVER DRIVER
16211 M: Hans Verkuil <hverkuil@xs4all.nl>
16212 L: linux-media@vger.kernel.org
16214 W: https://linuxtv.org
16215 T: git git://linuxtv.org/media_tree.git
16216 F: drivers/media/i2c/saa6588*
16218 SAA7134 VIDEO4LINUX DRIVER
16219 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16220 L: linux-media@vger.kernel.org
16222 W: https://linuxtv.org
16223 T: git git://linuxtv.org/media_tree.git
16224 F: Documentation/driver-api/media/drivers/saa7134*
16225 F: drivers/media/pci/saa7134/
16227 SAA7146 VIDEO4LINUX-2 DRIVER
16228 M: Hans Verkuil <hverkuil@xs4all.nl>
16229 L: linux-media@vger.kernel.org
16231 T: git git://linuxtv.org/media_tree.git
16232 F: drivers/media/common/saa7146/
16233 F: drivers/media/pci/saa7146/
16234 F: include/media/drv-intf/saa7146*
16236 SAFESETID SECURITY MODULE
16237 M: Micah Morton <mortonm@chromium.org>
16239 F: Documentation/admin-guide/LSM/SafeSetID.rst
16240 F: security/safesetid/
16242 SAMSUNG AUDIO (ASoC) DRIVERS
16243 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16244 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16245 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16247 F: Documentation/devicetree/bindings/sound/samsung*
16248 F: sound/soc/samsung/
16250 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16251 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16252 L: linux-crypto@vger.kernel.org
16253 L: linux-samsung-soc@vger.kernel.org
16255 F: Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16256 F: drivers/crypto/exynos-rng.c
16258 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16259 M: Łukasz Stelmach <l.stelmach@samsung.com>
16260 L: linux-samsung-soc@vger.kernel.org
16262 F: Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
16263 F: drivers/char/hw_random/exynos-trng.c
16265 SAMSUNG FRAMEBUFFER DRIVER
16266 M: Jingoo Han <jingoohan1@gmail.com>
16267 L: linux-fbdev@vger.kernel.org
16269 F: drivers/video/fbdev/s3c-fb.c
16271 SAMSUNG INTERCONNECT DRIVERS
16272 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16273 M: Artur Świgoń <a.swigon@samsung.com>
16274 L: linux-pm@vger.kernel.org
16275 L: linux-samsung-soc@vger.kernel.org
16277 F: drivers/interconnect/samsung/
16279 SAMSUNG LAPTOP DRIVER
16280 M: Corentin Chary <corentin.chary@gmail.com>
16281 L: platform-driver-x86@vger.kernel.org
16283 F: drivers/platform/x86/samsung-laptop.c
16285 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16286 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16287 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16288 L: linux-kernel@vger.kernel.org
16289 L: linux-samsung-soc@vger.kernel.org
16291 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16292 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16293 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16294 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16295 F: drivers/clk/clk-s2mps11.c
16296 F: drivers/mfd/sec*.c
16297 F: drivers/regulator/s2m*.c
16298 F: drivers/regulator/s5m*.c
16299 F: drivers/rtc/rtc-s5m.c
16300 F: include/linux/mfd/samsung/
16302 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16303 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16304 L: linux-media@vger.kernel.org
16305 L: linux-samsung-soc@vger.kernel.org
16307 F: drivers/media/platform/s3c-camif/
16308 F: include/media/drv-intf/s3c_camif.h
16310 SAMSUNG S3FWRN5 NFC DRIVER
16311 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16312 M: Krzysztof Opasiak <k.opasiak@samsung.com>
16313 L: linux-nfc@lists.01.org (subscribers-only)
16315 F: Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16316 F: drivers/nfc/s3fwrn5
16318 SAMSUNG S5C73M3 CAMERA DRIVER
16319 M: Andrzej Hajda <a.hajda@samsung.com>
16320 L: linux-media@vger.kernel.org
16322 F: drivers/media/i2c/s5c73m3/*
16324 SAMSUNG S5K5BAF CAMERA DRIVER
16325 M: Andrzej Hajda <a.hajda@samsung.com>
16326 L: linux-media@vger.kernel.org
16328 F: drivers/media/i2c/s5k5baf.c
16330 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16331 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16332 M: Vladimir Zapolskiy <vz@mleia.com>
16333 L: linux-crypto@vger.kernel.org
16334 L: linux-samsung-soc@vger.kernel.org
16336 F: Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16337 F: Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16338 F: drivers/crypto/s5p-sss.c
16340 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16341 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16342 L: linux-media@vger.kernel.org
16344 Q: https://patchwork.linuxtv.org/project/linux-media/list/
16345 F: drivers/media/platform/exynos4-is/
16347 SAMSUNG SOC CLOCK DRIVERS
16348 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16349 M: Tomasz Figa <tomasz.figa@gmail.com>
16350 M: Chanwoo Choi <cw00.choi@samsung.com>
16351 L: linux-samsung-soc@vger.kernel.org
16353 T: git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16354 F: Documentation/devicetree/bindings/clock/exynos*.txt
16355 F: Documentation/devicetree/bindings/clock/samsung,s3c*
16356 F: Documentation/devicetree/bindings/clock/samsung,s5p*
16357 F: drivers/clk/samsung/
16358 F: include/dt-bindings/clock/exynos*.h
16359 F: include/linux/clk/samsung.h
16360 F: include/linux/platform_data/clk-s3c2410.h
16362 SAMSUNG SPI DRIVERS
16363 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16364 M: Andi Shyti <andi@etezian.org>
16365 L: linux-spi@vger.kernel.org
16366 L: linux-samsung-soc@vger.kernel.org
16368 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
16369 F: drivers/spi/spi-s3c*
16370 F: include/linux/platform_data/spi-s3c64xx.h
16371 F: include/linux/spi/s3c24xx-fiq.h
16373 SAMSUNG SXGBE DRIVERS
16374 M: Byungho An <bh74.an@samsung.com>
16375 L: netdev@vger.kernel.org
16377 F: drivers/net/ethernet/samsung/sxgbe/
16379 SAMSUNG THERMAL DRIVER
16380 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16381 L: linux-pm@vger.kernel.org
16382 L: linux-samsung-soc@vger.kernel.org
16384 T: git https://github.com/lmajewski/linux-samsung-thermal.git
16385 F: drivers/thermal/samsung/
16387 SAMSUNG USB2 PHY DRIVER
16388 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16389 L: linux-kernel@vger.kernel.org
16391 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
16392 F: Documentation/driver-api/phy/samsung-usb2.rst
16393 F: drivers/phy/samsung/phy-exynos4210-usb2.c
16394 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
16395 F: drivers/phy/samsung/phy-exynos5250-usb2.c
16396 F: drivers/phy/samsung/phy-s5pv210-usb2.c
16397 F: drivers/phy/samsung/phy-samsung-usb2.c
16398 F: drivers/phy/samsung/phy-samsung-usb2.h
16401 M: Zwane Mwaikambo <zwanem@gmail.com>
16403 F: drivers/watchdog/sc1200wdt.c
16406 M: Ingo Molnar <mingo@redhat.com>
16407 M: Peter Zijlstra <peterz@infradead.org>
16408 M: Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16409 M: Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16410 R: Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16411 R: Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16412 R: Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16413 R: Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16414 R: Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16415 L: linux-kernel@vger.kernel.org
16417 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16418 F: include/linux/preempt.h
16419 F: include/linux/sched.h
16420 F: include/linux/wait.h
16421 F: include/uapi/linux/sched.h
16424 SCR24X CHIP CARD INTERFACE DRIVER
16425 M: Lubomir Rintel <lkundrak@v3.sk>
16427 F: drivers/char/pcmcia/scr24x_cs.c
16430 M: Jens Axboe <axboe@kernel.dk>
16431 L: linux-scsi@vger.kernel.org
16433 W: http://www.kernel.dk
16434 F: drivers/scsi/sr*
16436 SCSI RDMA PROTOCOL (SRP) INITIATOR
16437 M: Bart Van Assche <bvanassche@acm.org>
16438 L: linux-rdma@vger.kernel.org
16440 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16441 F: drivers/infiniband/ulp/srp/
16442 F: include/scsi/srp.h
16444 SCSI RDMA PROTOCOL (SRP) TARGET
16445 M: Bart Van Assche <bvanassche@acm.org>
16446 L: linux-rdma@vger.kernel.org
16447 L: target-devel@vger.kernel.org
16449 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16450 F: drivers/infiniband/ulp/srpt/
16453 M: Doug Gilbert <dgilbert@interlog.com>
16454 L: linux-scsi@vger.kernel.org
16456 W: http://sg.danny.cz/sg
16457 F: Documentation/scsi/scsi-generic.rst
16458 F: drivers/scsi/sg.c
16459 F: include/scsi/sg.h
16462 M: "James E.J. Bottomley" <jejb@linux.ibm.com>
16463 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16464 L: linux-scsi@vger.kernel.org
16466 Q: https://patchwork.kernel.org/project/linux-scsi/list/
16467 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16468 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16469 F: Documentation/devicetree/bindings/scsi/
16474 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16475 L: linux-scsi@vger.kernel.org
16477 F: Documentation/scsi/st.rst
16478 F: drivers/scsi/st.*
16479 F: drivers/scsi/st_*.h
16481 SCSI TARGET CORE USER DRIVER
16482 M: Bodo Stroesser <bostroesser@gmail.com>
16483 L: linux-scsi@vger.kernel.org
16484 L: target-devel@vger.kernel.org
16486 F: Documentation/target/tcmu-design.rst
16487 F: drivers/target/target_core_user.c
16488 F: include/uapi/linux/target_core_user.h
16490 SCSI TARGET SUBSYSTEM
16491 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16492 L: linux-scsi@vger.kernel.org
16493 L: target-devel@vger.kernel.org
16495 W: http://www.linux-iscsi.org
16496 Q: https://patchwork.kernel.org/project/target-devel/list/
16497 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16498 F: Documentation/target/
16503 M: Vlad Yasevich <vyasevich@gmail.com>
16504 M: Neil Horman <nhorman@tuxdriver.com>
16505 M: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16506 L: linux-sctp@vger.kernel.org
16508 W: http://lksctp.sourceforge.net
16509 F: Documentation/networking/sctp.rst
16510 F: include/linux/sctp.h
16511 F: include/net/sctp/
16512 F: include/uapi/linux/sctp.h
16516 M: Jim Cromie <jim.cromie@gmail.com>
16518 F: Documentation/i2c/busses/scx200_acb.rst
16519 F: arch/x86/platform/scx200/
16520 F: drivers/i2c/busses/scx200*
16521 F: drivers/mtd/maps/scx200_docflash.c
16522 F: drivers/watchdog/scx200_wdt.c
16523 F: include/linux/scx200.h
16526 M: Jim Cromie <jim.cromie@gmail.com>
16528 F: drivers/char/scx200_gpio.c
16529 F: include/linux/scx200_gpio.h
16531 SCx200 HRT CLOCKSOURCE DRIVER
16532 M: Jim Cromie <jim.cromie@gmail.com>
16534 F: drivers/clocksource/scx200_hrt.c
16536 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16537 M: Sascha Sommer <saschasommer@freenet.de>
16538 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16540 F: drivers/mmc/host/sdricoh_cs.c
16542 SECO BOARDS CEC DRIVER
16543 M: Ettore Chimenti <ek5.chimenti@gmail.com>
16545 F: drivers/media/cec/platform/seco/seco-cec.c
16546 F: drivers/media/cec/platform/seco/seco-cec.h
16549 M: Kees Cook <keescook@chromium.org>
16550 R: Andy Lutomirski <luto@amacapital.net>
16551 R: Will Drewry <wad@chromium.org>
16553 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16554 F: Documentation/userspace-api/seccomp_filter.rst
16555 F: include/linux/seccomp.h
16556 F: include/uapi/linux/seccomp.h
16557 F: kernel/seccomp.c
16558 F: tools/testing/selftests/kselftest_harness.h
16559 F: tools/testing/selftests/seccomp/*
16560 K: \bsecure_computing
16563 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16564 M: Al Cooper <alcooperx@gmail.com>
16565 L: linux-mmc@vger.kernel.org
16566 L: bcm-kernel-feedback-list@broadcom.com
16568 F: drivers/mmc/host/sdhci-brcmstb*
16570 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16571 M: Adrian Hunter <adrian.hunter@intel.com>
16572 L: linux-mmc@vger.kernel.org
16574 F: drivers/mmc/host/sdhci*
16575 F: include/linux/mmc/sdhci*
16577 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16578 M: Eugen Hristev <eugen.hristev@microchip.com>
16579 L: linux-mmc@vger.kernel.org
16581 F: drivers/mmc/host/sdhci-of-at91.c
16583 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16584 M: Ben Dooks <ben-linux@fluff.org>
16585 M: Jaehoon Chung <jh80.chung@samsung.com>
16586 L: linux-mmc@vger.kernel.org
16588 F: drivers/mmc/host/sdhci-s3c*
16590 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16591 M: Viresh Kumar <vireshk@kernel.org>
16592 L: linux-mmc@vger.kernel.org
16594 F: drivers/mmc/host/sdhci-spear.c
16596 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16597 M: Kishon Vijay Abraham I <kishon@ti.com>
16598 L: linux-mmc@vger.kernel.org
16600 F: drivers/mmc/host/sdhci-omap.c
16602 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16603 M: Jonathan Derrick <jonathan.derrick@intel.com>
16604 M: Revanth Rajashekar <revanth.rajashekar@intel.com>
16605 L: linux-block@vger.kernel.org
16607 F: block/opal_proto.h
16609 F: include/linux/sed*
16610 F: include/uapi/linux/sed*
16613 M: Security Officers <security@kernel.org>
16615 F: Documentation/admin-guide/security-bugs.rst
16618 M: James Morris <jmorris@namei.org>
16619 M: "Serge E. Hallyn" <serge@hallyn.com>
16620 L: linux-security-module@vger.kernel.org (suggested Cc:)
16622 W: http://kernsec.org/
16623 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16625 X: security/selinux/
16627 SELINUX SECURITY MODULE
16628 M: Paul Moore <paul@paul-moore.com>
16629 M: Stephen Smalley <stephen.smalley.work@gmail.com>
16630 M: Eric Paris <eparis@parisplace.org>
16631 L: selinux@vger.kernel.org
16633 W: https://selinuxproject.org
16634 W: https://github.com/SELinuxProject
16635 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16636 F: Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16637 F: Documentation/ABI/obsolete/sysfs-selinux-disable
16638 F: Documentation/admin-guide/LSM/SELinux.rst
16639 F: include/trace/events/avc.h
16640 F: include/uapi/linux/selinux_netlink.h
16641 F: scripts/selinux/
16642 F: security/selinux/
16645 M: Jiri Slaby <jirislaby@kernel.org>
16647 F: drivers/misc/phantom.c
16648 F: include/uapi/linux/phantom.h
16650 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16651 M: Tomasz Duszynski <tomasz.duszynski@octakon.com>
16653 F: Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16654 F: drivers/iio/chemical/scd30.h
16655 F: drivers/iio/chemical/scd30_core.c
16656 F: drivers/iio/chemical/scd30_i2c.c
16657 F: drivers/iio/chemical/scd30_serial.c
16659 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16660 M: Tomasz Duszynski <tduszyns@gmail.com>
16662 F: Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16663 F: drivers/iio/chemical/sps30.c
16666 M: Rob Herring <robh@kernel.org>
16667 L: linux-serial@vger.kernel.org
16669 F: Documentation/devicetree/bindings/serial/serial.yaml
16670 F: drivers/tty/serdev/
16671 F: include/linux/serdev.h
16674 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16675 L: linux-serial@vger.kernel.org
16677 F: Documentation/devicetree/bindings/serial/
16678 F: drivers/tty/serial/
16681 M: Sean Young <sean@mess.org>
16682 L: linux-media@vger.kernel.org
16684 F: drivers/media/rc/serial_ir.c
16686 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16687 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16688 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16690 F: Documentation/devicetree/bindings/slimbus/
16691 F: drivers/slimbus/
16692 F: include/linux/slimbus.h
16695 M: Edward Cree <ecree.xilinx@gmail.com>
16696 M: Martin Habets <habetsm.xilinx@gmail.com>
16697 L: netdev@vger.kernel.org
16699 F: drivers/net/ethernet/sfc/
16701 SFF/SFP/SFP+ MODULE SUPPORT
16702 M: Russell King <linux@armlinux.org.uk>
16703 L: netdev@vger.kernel.org
16705 F: drivers/net/phy/phylink.c
16706 F: drivers/net/phy/sfp*
16707 F: include/linux/mdio/mdio-i2c.h
16708 F: include/linux/phylink.h
16709 F: include/linux/sfp.h
16710 K: phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
16713 M: Dimitri Sivanich <dimitri.sivanich@hpe.com>
16715 F: drivers/misc/sgi-gru/
16717 SGI XP/XPC/XPNET DRIVER
16718 M: Robin Holt <robinmholt@gmail.com>
16719 M: Steve Wahl <steve.wahl@hpe.com>
16720 R: Mike Travis <mike.travis@hpe.com>
16722 F: drivers/misc/sgi-xp/
16724 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16725 M: Karsten Graul <kgraul@linux.ibm.com>
16726 M: Guvenc Gulce <guvenc@linux.ibm.com>
16727 L: linux-s390@vger.kernel.org
16729 W: http://www.ibm.com/developerworks/linux/linux390/
16732 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16733 M: Linus Walleij <linus.walleij@linaro.org>
16734 L: linux-iio@vger.kernel.org
16736 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16737 F: Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16738 F: drivers/iio/light/gp2ap002.c
16740 SHARP RJ54N1CB0C SENSOR DRIVER
16741 M: Jacopo Mondi <jacopo@jmondi.org>
16742 L: linux-media@vger.kernel.org
16744 T: git git://linuxtv.org/media_tree.git
16745 F: drivers/media/i2c/rj54n1cb0c.c
16746 F: include/media/i2c/rj54n1cb0c.h
16748 SH_VOU V4L2 OUTPUT DRIVER
16749 L: linux-media@vger.kernel.org
16751 F: drivers/media/platform/sh_vou.c
16752 F: include/media/drv-intf/sh_vou.h
16754 SI2157 MEDIA DRIVER
16755 M: Antti Palosaari <crope@iki.fi>
16756 L: linux-media@vger.kernel.org
16758 W: https://linuxtv.org
16759 W: http://palosaari.fi/linux/
16760 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16761 T: git git://linuxtv.org/anttip/media_tree.git
16762 F: drivers/media/tuners/si2157*
16764 SI2165 MEDIA DRIVER
16765 M: Matthias Schwarzott <zzam@gentoo.org>
16766 L: linux-media@vger.kernel.org
16768 W: https://linuxtv.org
16769 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16770 F: drivers/media/dvb-frontends/si2165*
16772 SI2168 MEDIA DRIVER
16773 M: Antti Palosaari <crope@iki.fi>
16774 L: linux-media@vger.kernel.org
16776 W: https://linuxtv.org
16777 W: http://palosaari.fi/linux/
16778 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16779 T: git git://linuxtv.org/anttip/media_tree.git
16780 F: drivers/media/dvb-frontends/si2168*
16782 SI470X FM RADIO RECEIVER I2C DRIVER
16783 M: Hans Verkuil <hverkuil@xs4all.nl>
16784 L: linux-media@vger.kernel.org
16786 W: https://linuxtv.org
16787 T: git git://linuxtv.org/media_tree.git
16788 F: drivers/media/radio/si470x/radio-si470x-i2c.c
16790 SI470X FM RADIO RECEIVER USB DRIVER
16791 M: Hans Verkuil <hverkuil@xs4all.nl>
16792 L: linux-media@vger.kernel.org
16794 W: https://linuxtv.org
16795 T: git git://linuxtv.org/media_tree.git
16796 F: drivers/media/radio/si470x/radio-si470x-common.c
16797 F: drivers/media/radio/si470x/radio-si470x-usb.c
16798 F: drivers/media/radio/si470x/radio-si470x.h
16800 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16801 M: Eduardo Valentin <edubezval@gmail.com>
16802 L: linux-media@vger.kernel.org
16804 W: https://linuxtv.org
16805 T: git git://linuxtv.org/media_tree.git
16806 F: drivers/media/radio/si4713/si4713.?
16808 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16809 M: Eduardo Valentin <edubezval@gmail.com>
16810 L: linux-media@vger.kernel.org
16812 W: https://linuxtv.org
16813 T: git git://linuxtv.org/media_tree.git
16814 F: drivers/media/radio/si4713/radio-platform-si4713.c
16816 SI4713 FM RADIO TRANSMITTER USB DRIVER
16817 M: Hans Verkuil <hverkuil@xs4all.nl>
16818 L: linux-media@vger.kernel.org
16820 W: https://linuxtv.org
16821 T: git git://linuxtv.org/media_tree.git
16822 F: drivers/media/radio/si4713/radio-usb-si4713.c
16825 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16826 L: linux-media@vger.kernel.org
16828 W: https://linuxtv.org
16829 T: git git://linuxtv.org/media_tree.git
16830 F: drivers/media/common/siano/
16831 F: drivers/media/mmc/siano/
16832 F: drivers/media/usb/siano/
16833 F: drivers/media/usb/siano/
16836 M: Palmer Dabbelt <palmer@dabbelt.com>
16837 M: Paul Walmsley <paul.walmsley@sifive.com>
16838 L: linux-riscv@lists.infradead.org
16840 T: git git://github.com/sifive/riscv-linux.git
16844 SIFIVE FU540 SYSTEM-ON-CHIP
16845 M: Paul Walmsley <paul.walmsley@sifive.com>
16846 M: Palmer Dabbelt <palmer@dabbelt.com>
16847 L: linux-riscv@lists.infradead.org
16849 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16854 M: Green Wan <green.wan@sifive.com>
16856 F: Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16857 F: drivers/dma/sf-pdma/
16859 SILEAD TOUCHSCREEN DRIVER
16860 M: Hans de Goede <hdegoede@redhat.com>
16861 L: linux-input@vger.kernel.org
16862 L: platform-driver-x86@vger.kernel.org
16864 F: drivers/input/touchscreen/silead.c
16865 F: drivers/platform/x86/touchscreen_dmi.c
16867 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16868 M: Jérôme Pouiller <jerome.pouiller@silabs.com>
16870 F: drivers/staging/wfx/
16872 SILICON MOTION SM712 FRAME BUFFER DRIVER
16873 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16874 M: Teddy Wang <teddy.wang@siliconmotion.com>
16875 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16876 L: linux-fbdev@vger.kernel.org
16878 F: Documentation/fb/sm712fb.rst
16879 F: drivers/video/fbdev/sm712*
16881 SILVACO I3C DUAL-ROLE MASTER
16882 M: Miquel Raynal <miquel.raynal@bootlin.com>
16883 M: Conor Culhane <conor.culhane@silvaco.com>
16884 L: linux-i3c@lists.infradead.org
16886 F: Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
16887 F: drivers/i3c/master/svc-i3c-master.c
16890 M: Hans de Goede <hdegoede@redhat.com>
16891 L: linux-fbdev@vger.kernel.org
16893 F: Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16894 F: drivers/video/fbdev/simplefb.c
16895 F: include/linux/platform_data/simplefb.h
16897 SIMTEC EB110ATX (Chalice CATS)
16898 M: Simtec Linux Team <linux@simtec.co.uk>
16900 W: http://www.simtec.co.uk/products/EB110ATX/
16902 SIMTEC EB2410ITX (BAST)
16903 M: Simtec Linux Team <linux@simtec.co.uk>
16905 W: http://www.simtec.co.uk/products/EB2410ITX/
16906 F: arch/arm/mach-s3c/bast-ide.c
16907 F: arch/arm/mach-s3c/bast-irq.c
16908 F: arch/arm/mach-s3c/mach-bast.c
16911 M: Thorsten Scherer <t.scherer@eckelmann.de>
16912 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16913 R: Pengutronix Kernel Team <kernel@pengutronix.de>
16915 F: drivers/gpio/gpio-siox.c
16917 F: include/trace/events/siox.h
16919 SIPHASH PRF ROUTINES
16920 M: Jason A. Donenfeld <Jason@zx2c4.com>
16922 F: include/linux/siphash.h
16924 F: lib/test_siphash.c
16926 SIS 190 ETHERNET DRIVER
16927 M: Francois Romieu <romieu@fr.zoreil.com>
16928 L: netdev@vger.kernel.org
16930 F: drivers/net/ethernet/sis/sis190.c
16932 SIS 900/7016 FAST ETHERNET DRIVER
16933 M: Daniele Venzano <venza@brownhat.org>
16934 L: netdev@vger.kernel.org
16936 W: http://www.brownhat.org/sis900.html
16937 F: drivers/net/ethernet/sis/sis900.*
16939 SIS FRAMEBUFFER DRIVER
16940 M: Thomas Winischhofer <thomas@winischhofer.net>
16942 W: http://www.winischhofer.net/linuxsisvga.shtml
16943 F: Documentation/fb/sisfb.rst
16944 F: drivers/video/fbdev/sis/
16945 F: include/video/sisfb.h
16947 SIS I2C TOUCHSCREEN DRIVER
16948 M: Mika Penttilä <mika.penttila@nextfour.com>
16949 L: linux-input@vger.kernel.org
16951 F: Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16952 F: drivers/input/touchscreen/sis_i2c.c
16955 M: Thomas Winischhofer <thomas@winischhofer.net>
16957 W: http://www.winischhofer.at/linuxsisusbvga.shtml
16958 F: drivers/usb/misc/sisusbvga/
16961 M: Christoph Lameter <cl@linux.com>
16962 M: Pekka Enberg <penberg@kernel.org>
16963 M: David Rientjes <rientjes@google.com>
16964 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
16965 M: Andrew Morton <akpm@linux-foundation.org>
16966 M: Vlastimil Babka <vbabka@suse.cz>
16967 L: linux-mm@kvack.org
16969 F: include/linux/sl?b*.h
16972 SLEEPABLE READ-COPY UPDATE (SRCU)
16973 M: Lai Jiangshan <jiangshanlai@gmail.com>
16974 M: "Paul E. McKenney" <paulmck@kernel.org>
16975 M: Josh Triplett <josh@joshtriplett.org>
16976 R: Steven Rostedt <rostedt@goodmis.org>
16977 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16978 L: rcu@vger.kernel.org
16980 W: http://www.rdrop.com/users/paulmck/RCU/
16981 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16982 F: include/linux/srcu*.h
16983 F: kernel/rcu/srcu*.c
16985 SMACK SECURITY MODULE
16986 M: Casey Schaufler <casey@schaufler-ca.com>
16987 L: linux-security-module@vger.kernel.org
16989 W: http://schaufler-ca.com
16990 T: git git://github.com/cschaufler/smack-next
16991 F: Documentation/admin-guide/LSM/Smack.rst
16994 SMC91x ETHERNET DRIVER
16995 M: Nicolas Pitre <nico@fluxnic.net>
16997 F: drivers/net/ethernet/smsc/smc91x.*
16999 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17000 M: Mark Rutland <mark.rutland@arm.com>
17001 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17002 M: Sudeep Holla <sudeep.holla@arm.com>
17003 L: linux-arm-kernel@lists.infradead.org
17005 F: drivers/firmware/smccc/
17006 F: include/linux/arm-smccc.h
17008 SMM665 HARDWARE MONITOR DRIVER
17009 M: Guenter Roeck <linux@roeck-us.net>
17010 L: linux-hwmon@vger.kernel.org
17012 F: Documentation/hwmon/smm665.rst
17013 F: drivers/hwmon/smm665.c
17015 SMSC EMC2103 HARDWARE MONITOR DRIVER
17016 M: Steve Glendinning <steve.glendinning@shawell.net>
17017 L: linux-hwmon@vger.kernel.org
17019 F: Documentation/hwmon/emc2103.rst
17020 F: drivers/hwmon/emc2103.c
17022 SMSC SCH5627 HARDWARE MONITOR DRIVER
17023 M: Hans de Goede <hdegoede@redhat.com>
17024 L: linux-hwmon@vger.kernel.org
17026 F: Documentation/hwmon/sch5627.rst
17027 F: drivers/hwmon/sch5627.c
17029 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17030 M: Steve Glendinning <steve.glendinning@shawell.net>
17031 L: linux-fbdev@vger.kernel.org
17033 F: drivers/video/fbdev/smscufx.c
17035 SMSC47B397 HARDWARE MONITOR DRIVER
17036 M: Jean Delvare <jdelvare@suse.com>
17037 L: linux-hwmon@vger.kernel.org
17039 F: Documentation/hwmon/smsc47b397.rst
17040 F: drivers/hwmon/smsc47b397.c
17042 SMSC911x ETHERNET DRIVER
17043 M: Steve Glendinning <steve.glendinning@shawell.net>
17044 L: netdev@vger.kernel.org
17046 F: drivers/net/ethernet/smsc/smsc911x.*
17047 F: include/linux/smsc911x.h
17049 SMSC9420 PCI ETHERNET DRIVER
17050 M: Steve Glendinning <steve.glendinning@shawell.net>
17051 L: netdev@vger.kernel.org
17053 F: drivers/net/ethernet/smsc/smsc9420.*
17055 SOCIONEXT (SNI) AVE NETWORK DRIVER
17056 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17057 L: netdev@vger.kernel.org
17059 F: Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17060 F: drivers/net/ethernet/socionext/sni_ave.c
17062 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17063 M: Jassi Brar <jaswinder.singh@linaro.org>
17064 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
17065 L: netdev@vger.kernel.org
17067 F: Documentation/devicetree/bindings/net/socionext-netsec.txt
17068 F: drivers/net/ethernet/socionext/netsec.c
17070 SOCIONEXT (SNI) Synquacer SPI DRIVER
17071 M: Masahisa Kojima <masahisa.kojima@linaro.org>
17072 M: Jassi Brar <jaswinder.singh@linaro.org>
17073 L: linux-spi@vger.kernel.org
17075 F: Documentation/devicetree/bindings/spi/spi-synquacer.txt
17076 F: drivers/spi/spi-synquacer.c
17078 SOCIONEXT SYNQUACER I2C DRIVER
17079 M: Ard Biesheuvel <ardb@kernel.org>
17080 L: linux-i2c@vger.kernel.org
17082 F: Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17083 F: drivers/i2c/busses/i2c-synquacer.c
17085 SOCIONEXT UNIPHIER SOUND DRIVER
17086 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17088 F: sound/soc/uniphier/
17090 SOEKRIS NET48XX LED SUPPORT
17091 M: Chris Boot <bootc@bootc.net>
17093 F: drivers/leds/leds-net48xx.c
17095 SOFT-IWARP DRIVER (siw)
17096 M: Bernard Metzler <bmt@zurich.ibm.com>
17097 L: linux-rdma@vger.kernel.org
17099 F: drivers/infiniband/sw/siw/
17100 F: include/uapi/rdma/siw-abi.h
17102 SOFT-ROCE DRIVER (rxe)
17103 M: Zhu Yanjun <zyjzyj2000@gmail.com>
17104 L: linux-rdma@vger.kernel.org
17106 F: drivers/infiniband/sw/rxe/
17107 F: include/uapi/rdma/rdma_user_rxe.h
17109 SOFTLOGIC 6x10 MPEG CODEC
17110 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17111 M: Anton Sviridenko <anton@corp.bluecherry.net>
17112 M: Andrey Utkin <andrey_utkin@fastmail.com>
17113 M: Ismael Luceno <ismael@iodev.co.uk>
17114 L: linux-media@vger.kernel.org
17116 F: drivers/media/pci/solo6x10/
17118 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17119 M: James Morse <james.morse@arm.com>
17120 L: linux-arm-kernel@lists.infradead.org
17122 F: Documentation/devicetree/bindings/arm/firmware/sdei.txt
17123 F: drivers/firmware/arm_sdei.c
17124 F: include/linux/arm_sdei.h
17125 F: include/uapi/linux/arm_sdei.h
17128 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17129 R: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17130 L: linux-acpi@vger.kernel.org
17132 F: drivers/base/swnode.c
17134 SOFTWARE RAID (Multiple Disks) SUPPORT
17135 M: Song Liu <song@kernel.org>
17136 L: linux-raid@vger.kernel.org
17138 T: git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17139 F: drivers/md/Kconfig
17140 F: drivers/md/Makefile
17142 F: drivers/md/raid*
17143 F: include/linux/raid/
17144 F: include/uapi/linux/raid/
17146 SOLIDRUN CLEARFOG SUPPORT
17147 M: Russell King <linux@armlinux.org.uk>
17149 F: arch/arm/boot/dts/armada-388-clearfog*
17150 F: arch/arm/boot/dts/armada-38x-solidrun-*
17152 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17153 M: Russell King <linux@armlinux.org.uk>
17155 F: arch/arm/boot/dts/imx6*-cubox-i*
17156 F: arch/arm/boot/dts/imx6*-hummingboard*
17157 F: arch/arm/boot/dts/imx6*-sr-*
17159 SONIC NETWORK DRIVER
17160 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17161 L: netdev@vger.kernel.org
17163 F: drivers/net/ethernet/natsemi/sonic.*
17165 SONICS SILICON BACKPLANE DRIVER (SSB)
17166 M: Michael Buesch <m@bues.ch>
17167 L: linux-wireless@vger.kernel.org
17170 F: include/linux/ssb/
17172 SONY IMX208 SENSOR DRIVER
17173 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17174 L: linux-media@vger.kernel.org
17176 T: git git://linuxtv.org/media_tree.git
17177 F: drivers/media/i2c/imx208.c
17179 SONY IMX214 SENSOR DRIVER
17180 M: Ricardo Ribalda <ribalda@kernel.org>
17181 L: linux-media@vger.kernel.org
17183 T: git git://linuxtv.org/media_tree.git
17184 F: Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17185 F: drivers/media/i2c/imx214.c
17187 SONY IMX219 SENSOR DRIVER
17188 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
17189 L: linux-media@vger.kernel.org
17191 T: git git://linuxtv.org/media_tree.git
17192 F: Documentation/devicetree/bindings/media/i2c/imx219.yaml
17193 F: drivers/media/i2c/imx219.c
17195 SONY IMX258 SENSOR DRIVER
17196 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17197 L: linux-media@vger.kernel.org
17199 T: git git://linuxtv.org/media_tree.git
17200 F: Documentation/devicetree/bindings/media/i2c/imx258.yaml
17201 F: drivers/media/i2c/imx258.c
17203 SONY IMX274 SENSOR DRIVER
17204 M: Leon Luo <leonl@leopardimaging.com>
17205 L: linux-media@vger.kernel.org
17207 T: git git://linuxtv.org/media_tree.git
17208 F: Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17209 F: drivers/media/i2c/imx274.c
17211 SONY IMX290 SENSOR DRIVER
17212 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17213 L: linux-media@vger.kernel.org
17215 T: git git://linuxtv.org/media_tree.git
17216 F: Documentation/devicetree/bindings/media/i2c/imx290.txt
17217 F: drivers/media/i2c/imx290.c
17219 SONY IMX319 SENSOR DRIVER
17220 M: Bingbu Cao <bingbu.cao@intel.com>
17221 L: linux-media@vger.kernel.org
17223 T: git git://linuxtv.org/media_tree.git
17224 F: drivers/media/i2c/imx319.c
17226 SONY IMX334 SENSOR DRIVER
17227 M: Paul J. Murphy <paul.j.murphy@intel.com>
17228 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17229 L: linux-media@vger.kernel.org
17231 T: git git://linuxtv.org/media_tree.git
17232 F: Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17233 F: drivers/media/i2c/imx334.c
17235 SONY IMX355 SENSOR DRIVER
17236 M: Tianshu Qiu <tian.shu.qiu@intel.com>
17237 L: linux-media@vger.kernel.org
17239 T: git git://linuxtv.org/media_tree.git
17240 F: drivers/media/i2c/imx355.c
17242 SONY MEMORYSTICK SUBSYSTEM
17243 M: Maxim Levitsky <maximlevitsky@gmail.com>
17244 M: Alex Dubov <oakad@yahoo.com>
17245 M: Ulf Hansson <ulf.hansson@linaro.org>
17246 L: linux-mmc@vger.kernel.org
17248 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17249 F: drivers/memstick/
17250 F: include/linux/memstick.h
17252 SONY VAIO CONTROL DEVICE DRIVER
17253 M: Mattia Dongili <malattia@linux.it>
17254 L: platform-driver-x86@vger.kernel.org
17256 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17257 F: Documentation/admin-guide/laptops/sony-laptop.rst
17258 F: drivers/char/sonypi.c
17259 F: drivers/platform/x86/sony-laptop.c
17260 F: include/linux/sony-laptop.h
17263 M: Jaroslav Kysela <perex@perex.cz>
17264 M: Takashi Iwai <tiwai@suse.com>
17265 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17267 W: http://www.alsa-project.org/
17268 Q: http://patchwork.kernel.org/project/alsa-devel/list/
17269 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17270 F: Documentation/sound/
17272 F: include/uapi/sound/
17275 SOUND - COMPRESSED AUDIO
17276 M: Vinod Koul <vkoul@kernel.org>
17277 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17279 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17280 F: Documentation/sound/designs/compress-offload.rst
17281 F: include/sound/compress_driver.h
17282 F: include/uapi/sound/compress_*
17283 F: sound/core/compress_offload.c
17284 F: sound/soc/soc-compress.c
17286 SOUND - DMAENGINE HELPERS
17287 M: Lars-Peter Clausen <lars@metafoo.de>
17289 F: include/sound/dmaengine_pcm.h
17290 F: sound/core/pcm_dmaengine.c
17291 F: sound/soc/soc-generic-dmaengine-pcm.c
17293 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17294 M: Liam Girdwood <lgirdwood@gmail.com>
17295 M: Mark Brown <broonie@kernel.org>
17296 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17298 W: http://alsa-project.org/main/index.php/ASoC
17299 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17300 F: Documentation/devicetree/bindings/sound/
17301 F: Documentation/sound/soc/
17302 F: include/dt-bindings/sound/
17303 F: include/sound/soc*
17306 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17307 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17308 M: Liam Girdwood <lgirdwood@gmail.com>
17309 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17310 M: Kai Vehmanen <kai.vehmanen@linux.intel.com>
17311 M: Daniel Baluta <daniel.baluta@nxp.com>
17312 L: sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17314 W: https://github.com/thesofproject/linux/
17317 SOUNDWIRE SUBSYSTEM
17318 M: Vinod Koul <vkoul@kernel.org>
17319 M: Bard Liao <yung-chuan.liao@linux.intel.com>
17320 R: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17321 R: Sanyog Kale <sanyog.r.kale@intel.com>
17322 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17324 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17325 F: Documentation/driver-api/soundwire/
17326 F: drivers/soundwire/
17327 F: include/linux/soundwire/
17330 M: Olli Salonen <olli.salonen@iki.fi>
17331 L: linux-media@vger.kernel.org
17333 W: https://linuxtv.org
17334 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17335 F: drivers/media/dvb-frontends/sp2*
17337 SPARC + UltraSPARC (sparc/sparc64)
17338 M: "David S. Miller" <davem@davemloft.net>
17339 L: sparclinux@vger.kernel.org
17341 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
17342 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17347 SPARC SERIAL DRIVERS
17348 M: "David S. Miller" <davem@davemloft.net>
17349 L: sparclinux@vger.kernel.org
17351 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17352 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17353 F: drivers/tty/serial/suncore.c
17354 F: drivers/tty/serial/sunhv.c
17355 F: drivers/tty/serial/sunsab.c
17356 F: drivers/tty/serial/sunsab.h
17357 F: drivers/tty/serial/sunsu.c
17358 F: drivers/tty/serial/sunzilog.c
17359 F: drivers/tty/serial/sunzilog.h
17360 F: drivers/tty/vcc.c
17361 F: include/linux/sunserialcore.h
17364 M: "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17365 L: linux-sparse@vger.kernel.org
17367 W: https://sparse.docs.kernel.org/
17368 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17369 Q: https://patchwork.kernel.org/project/linux-sparse/list/
17370 B: https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17371 F: include/linux/compiler.h
17373 SPEAKUP CONSOLE SPEECH DRIVER
17374 M: William Hubbs <w.d.hubbs@gmail.com>
17375 M: Chris Brannon <chris@the-brannons.com>
17376 M: Kirk Reiser <kirk@reisers.ca>
17377 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
17378 L: speakup@linux-speakup.org
17380 W: http://www.linux-speakup.org/
17381 W: https://github.com/linux-speakup/speakup
17382 B: https://github.com/linux-speakup/speakup/issues
17383 F: drivers/accessibility/speakup/
17385 SPEAR CLOCK FRAMEWORK SUPPORT
17386 M: Viresh Kumar <vireshk@kernel.org>
17387 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17389 W: http://www.st.com/spear
17390 F: drivers/clk/spear/
17392 SPEAR PLATFORM SUPPORT
17393 M: Viresh Kumar <vireshk@kernel.org>
17394 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17395 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17397 W: http://www.st.com/spear
17398 F: arch/arm/boot/dts/spear*
17399 F: arch/arm/mach-spear/
17402 M: Tudor Ambarus <tudor.ambarus@microchip.com>
17403 R: Michael Walle <michael@walle.cc>
17404 R: Pratyush Yadav <p.yadav@ti.com>
17405 L: linux-mtd@lists.infradead.org
17407 W: http://www.linux-mtd.infradead.org/
17408 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
17409 C: irc://irc.oftc.net/mtd
17410 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17411 F: drivers/mtd/spi-nor/
17412 F: include/linux/mtd/spi-nor.h
17415 M: Mark Brown <broonie@kernel.org>
17416 L: linux-spi@vger.kernel.org
17418 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
17419 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17420 F: Documentation/devicetree/bindings/spi/
17421 F: Documentation/spi/
17423 F: include/linux/spi/
17424 F: include/uapi/linux/spi/
17427 SPIDERNET NETWORK DRIVER for CELL
17428 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17429 M: Geoff Levand <geoff@infradead.org>
17430 L: netdev@vger.kernel.org
17431 L: linuxppc-dev@lists.ozlabs.org
17433 F: Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17434 F: drivers/net/ethernet/toshiba/spider_net*
17437 M: Stephen Boyd <sboyd@kernel.org>
17438 L: linux-kernel@vger.kernel.org
17440 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17441 F: Documentation/devicetree/bindings/spmi/
17443 F: include/dt-bindings/spmi/spmi.h
17444 F: include/linux/spmi.h
17445 F: include/trace/events/spmi.h
17448 M: Jeremy Kerr <jk@ozlabs.org>
17449 L: linuxppc-dev@lists.ozlabs.org
17451 W: http://www.ibm.com/developerworks/power/cell/
17452 F: Documentation/filesystems/spufs/spufs.rst
17453 F: arch/powerpc/platforms/cell/spufs/
17455 SQUASHFS FILE SYSTEM
17456 M: Phillip Lougher <phillip@squashfs.org.uk>
17457 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
17459 W: http://squashfs.org.uk
17460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17461 F: Documentation/filesystems/squashfs.rst
17464 SRM (Alpha) environment access
17465 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
17467 F: arch/alpha/kernel/srm_env.c
17469 ST LSM6DSx IMU IIO DRIVER
17470 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17471 L: linux-iio@vger.kernel.org
17473 W: http://www.st.com/
17474 F: Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17475 F: drivers/iio/imu/st_lsm6dsx/
17477 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17478 M: Mickael Guene <mickael.guene@st.com>
17479 L: linux-media@vger.kernel.org
17481 T: git git://linuxtv.org/media_tree.git
17482 F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17483 F: drivers/media/i2c/st-mipid02.c
17485 ST STM32 I2C/SMBUS DRIVER
17486 M: Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17487 M: Alain Volmat <alain.volmat@foss.st.com>
17488 L: linux-i2c@vger.kernel.org
17490 F: drivers/i2c/busses/i2c-stm32*
17492 ST STM32 SPI DRIVER
17493 M: Alain Volmat <alain.volmat@foss.st.com>
17494 L: linux-spi@vger.kernel.org
17496 F: drivers/spi/spi-stm32.c
17499 M: Daniel Nilsson <daniel.nilsson@flex.com>
17500 L: linux-hwmon@vger.kernel.org
17502 F: Documentation/hwmon/stpddc60.rst
17503 F: drivers/hwmon/pmbus/stpddc60.c
17505 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17506 M: Song Qiang <songqiang1304521@gmail.com>
17507 L: linux-iio@vger.kernel.org
17509 F: Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17510 F: drivers/iio/proximity/vl53l0x-i2c.c
17513 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17514 M: Sasha Levin <sashal@kernel.org>
17515 L: stable@vger.kernel.org
17517 F: Documentation/process/stable-kernel-rules.rst
17519 STAGING - ATOMISP DRIVER
17520 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17521 R: Sakari Ailus <sakari.ailus@linux.intel.com>
17522 L: linux-media@vger.kernel.org
17524 F: drivers/staging/media/atomisp/
17526 STAGING - FIELDBUS SUBSYSTEM
17527 M: Sven Van Asbroeck <TheSven73@gmail.com>
17529 F: drivers/staging/fieldbus/*
17530 F: drivers/staging/fieldbus/Documentation/
17532 STAGING - HMS ANYBUS-S BUS
17533 M: Sven Van Asbroeck <TheSven73@gmail.com>
17535 F: drivers/staging/fieldbus/anybuss/
17537 STAGING - INDUSTRIAL IO
17538 M: Jonathan Cameron <jic23@kernel.org>
17539 L: linux-iio@vger.kernel.org
17541 F: Documentation/devicetree/bindings/staging/iio/
17542 F: drivers/staging/iio/
17544 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17545 M: Marc Dietrich <marvin24@gmx.de>
17546 L: ac100@lists.launchpad.net (moderated for non-subscribers)
17547 L: linux-tegra@vger.kernel.org
17549 F: drivers/staging/nvec/
17551 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17552 M: Jens Frederich <jfrederich@gmail.com>
17553 M: Daniel Drake <dsd@laptop.org>
17554 M: Jon Nettleton <jon.nettleton@gmail.com>
17556 W: http://wiki.laptop.org/go/DCON
17557 F: drivers/staging/olpc_dcon/
17559 STAGING - REALTEK RTL8188EU DRIVERS
17560 M: Larry Finger <Larry.Finger@lwfinger.net>
17562 F: drivers/staging/rtl8188eu/
17564 STAGING - REALTEK RTL8712U DRIVERS
17565 M: Larry Finger <Larry.Finger@lwfinger.net>
17566 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17568 F: drivers/staging/rtl8712/
17570 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17571 M: Michael Hennerich <michael.hennerich@analog.com>
17572 L: linux-fbdev@vger.kernel.org
17574 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17575 F: drivers/staging/fbtft/fb_seps525.c
17577 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17578 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17579 M: Teddy Wang <teddy.wang@siliconmotion.com>
17580 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17581 L: linux-fbdev@vger.kernel.org
17583 F: drivers/staging/sm750fb/
17585 STAGING - VIA VT665X DRIVERS
17586 M: Forest Bond <forest@alittletooquiet.net>
17588 F: drivers/staging/vt665?/
17591 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17592 L: linux-staging@lists.linux.dev
17594 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17595 F: drivers/staging/
17597 STARFIRE/DURALAN NETWORK DRIVER
17598 M: Ion Badulescu <ionut@badula.org>
17600 F: drivers/net/ethernet/adaptec/starfire*
17603 M: Peter Zijlstra <peterz@infradead.org>
17604 M: Josh Poimboeuf <jpoimboe@redhat.com>
17605 M: Jason Baron <jbaron@akamai.com>
17606 R: Steven Rostedt <rostedt@goodmis.org>
17607 R: Ard Biesheuvel <ardb@kernel.org>
17609 F: arch/*/include/asm/jump_label*.h
17610 F: arch/*/include/asm/static_call*.h
17611 F: arch/*/kernel/jump_label.c
17612 F: arch/*/kernel/static_call.c
17613 F: include/linux/jump_label*.h
17614 F: include/linux/static_call*.h
17615 F: kernel/jump_label.c
17616 F: kernel/static_call.c
17618 STI AUDIO (ASoC) DRIVERS
17619 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17620 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17622 F: Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17626 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
17628 F: Documentation/devicetree/bindings/media/stih-cec.txt
17629 F: drivers/media/cec/platform/sti/
17631 STK1160 USB VIDEO CAPTURE DRIVER
17632 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17633 L: linux-media@vger.kernel.org
17635 T: git git://linuxtv.org/media_tree.git
17636 F: drivers/media/usb/stk1160/
17638 STM32 AUDIO (ASoC) DRIVERS
17639 M: Olivier Moysan <olivier.moysan@foss.st.com>
17640 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17641 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17643 F: Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
17646 STM32 TIMER/LPTIMER DRIVERS
17647 M: Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17649 F: Documentation/ABI/testing/*timer-stm32
17650 F: Documentation/devicetree/bindings/*/*stm32-*timer*
17651 F: drivers/*/stm32-*timer*
17652 F: drivers/pwm/pwm-stm32*
17653 F: include/linux/*/stm32-*tim*
17655 STMMAC ETHERNET DRIVER
17656 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
17657 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
17658 M: Jose Abreu <joabreu@synopsys.com>
17659 L: netdev@vger.kernel.org
17661 W: http://www.stlinux.com
17662 F: Documentation/networking/device_drivers/ethernet/stmicro/
17663 F: drivers/net/ethernet/stmicro/stmmac/
17666 M: Sam Creasey <sammy@sammy.net>
17668 W: http://sammy.net/sun3/
17669 F: arch/m68k/include/asm/sun3*
17670 F: arch/m68k/kernel/*sun3*
17671 F: arch/m68k/sun3*/
17672 F: drivers/net/ethernet/i825xx/sun3*
17674 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17675 M: Hans de Goede <hdegoede@redhat.com>
17676 L: linux-input@vger.kernel.org
17678 F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17679 F: drivers/input/keyboard/sun4i-lradc-keys.c
17681 SUNDANCE NETWORK DRIVER
17682 M: Denis Kirjanov <kda@linux-powerpc.org>
17683 L: netdev@vger.kernel.org
17685 F: drivers/net/ethernet/dlink/sundance.c
17688 M: Yoshinori Sato <ysato@users.sourceforge.jp>
17689 M: Rich Felker <dalias@libc.org>
17690 L: linux-sh@vger.kernel.org
17692 Q: http://patchwork.kernel.org/project/linux-sh/list/
17693 F: Documentation/sh/
17698 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
17699 M: Len Brown <len.brown@intel.com>
17700 M: Pavel Machek <pavel@ucw.cz>
17701 L: linux-pm@vger.kernel.org
17703 B: https://bugzilla.kernel.org
17704 F: Documentation/power/
17705 F: arch/x86/kernel/acpi/
17706 F: drivers/base/power/
17707 F: include/linux/freezer.h
17708 F: include/linux/pm.h
17709 F: include/linux/suspend.h
17713 M: Martin Mares <mj@ucw.cz>
17714 L: linux-video@atrey.karlin.mff.cuni.cz
17716 F: Documentation/admin-guide/svga.rst
17717 F: arch/x86/boot/video*
17720 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17721 L: iommu@lists.linux-foundation.org
17723 T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17724 F: arch/*/kernel/pci-swiotlb.c
17725 F: include/linux/swiotlb.h
17726 F: kernel/dma/swiotlb.c
17729 M: Jiri Pirko <jiri@resnulli.us>
17730 M: Ivan Vecera <ivecera@redhat.com>
17731 L: netdev@vger.kernel.org
17733 F: include/net/switchdev.h
17736 SY8106A REGULATOR DRIVER
17737 M: Icenowy Zheng <icenowy@aosc.io>
17739 F: Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17740 F: drivers/regulator/sy8106a-regulator.c
17742 SYNC FILE FRAMEWORK
17743 M: Sumit Semwal <sumit.semwal@linaro.org>
17744 R: Gustavo Padovan <gustavo@padovan.org>
17745 L: linux-media@vger.kernel.org
17746 L: dri-devel@lists.freedesktop.org
17748 T: git git://anongit.freedesktop.org/drm/drm-misc
17749 F: Documentation/driver-api/sync_file.rst
17750 F: drivers/dma-buf/dma-fence*
17751 F: drivers/dma-buf/sw_sync.c
17752 F: drivers/dma-buf/sync_*
17753 F: include/linux/sync_file.h
17754 F: include/uapi/linux/sync_file.h
17756 SYNOPSYS ARC ARCHITECTURE
17757 M: Vineet Gupta <vgupta@synopsys.com>
17758 L: linux-snps-arc@lists.infradead.org
17760 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17761 F: Documentation/devicetree/bindings/arc/*
17762 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17764 F: drivers/clocksource/arc_timer.c
17765 F: drivers/tty/serial/arc_uart.c
17767 SYNOPSYS ARC HSDK SDP pll clock driver
17768 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17770 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17771 F: drivers/clk/clk-hsdk-pll.c
17773 SYNOPSYS ARC SDP clock driver
17774 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17776 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17777 F: drivers/clk/axs10x/*
17779 SYNOPSYS ARC SDP platform support
17780 M: Alexey Brodkin <abrodkin@synopsys.com>
17782 F: Documentation/devicetree/bindings/arc/axs10*
17783 F: arch/arc/boot/dts/ax*
17784 F: arch/arc/plat-axs10x
17786 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17787 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17789 F: Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17790 F: drivers/reset/reset-axs10x.c
17792 SYNOPSYS CREG GPIO DRIVER
17793 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17795 F: Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17796 F: drivers/gpio/gpio-creg-snps.c
17798 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17799 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17801 F: drivers/tty/serial/8250/8250_dw.c
17802 F: drivers/tty/serial/8250/8250_dwlib.*
17803 F: drivers/tty/serial/8250/8250_lpss.c
17805 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17806 M: Hoan Tran <hoan@os.amperecomputing.com>
17807 M: Serge Semin <fancer.lancer@gmail.com>
17808 L: linux-gpio@vger.kernel.org
17810 F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17811 F: drivers/gpio/gpio-dwapb.c
17813 SYNOPSYS DESIGNWARE APB SSI DRIVER
17814 M: Serge Semin <fancer.lancer@gmail.com>
17815 L: linux-spi@vger.kernel.org
17817 F: Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17818 F: drivers/spi/spi-dw*
17820 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17821 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17823 F: Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
17824 F: drivers/dma/dw-axi-dmac/
17826 SYNOPSYS DESIGNWARE DMAC DRIVER
17827 M: Viresh Kumar <vireshk@kernel.org>
17828 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17830 F: Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17832 F: include/dt-bindings/dma/dw-dmac.h
17833 F: include/linux/dma/dw.h
17834 F: include/linux/platform_data/dma-dw.h
17836 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17837 M: Jose Abreu <Jose.Abreu@synopsys.com>
17838 L: netdev@vger.kernel.org
17840 F: drivers/net/ethernet/synopsys/
17842 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17843 M: Jose Abreu <Jose.Abreu@synopsys.com>
17844 L: netdev@vger.kernel.org
17846 F: drivers/net/pcs/pcs-xpcs.c
17847 F: drivers/net/pcs/pcs-xpcs.h
17848 F: include/linux/pcs/pcs-xpcs.h
17850 SYNOPSYS DESIGNWARE I2C DRIVER
17851 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
17852 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17853 R: Mika Westerberg <mika.westerberg@linux.intel.com>
17854 L: linux-i2c@vger.kernel.org
17856 F: drivers/i2c/busses/i2c-designware-*
17858 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17859 M: Jaehoon Chung <jh80.chung@samsung.com>
17860 L: linux-mmc@vger.kernel.org
17862 F: drivers/mmc/host/dw_mmc*
17864 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17865 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17867 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17868 F: drivers/reset/reset-hsdk.c
17869 F: include/dt-bindings/reset/snps,hsdk-reset.h
17871 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17872 M: Prabu Thangamuthu <prabu.t@synopsys.com>
17873 M: Manjunath M B <manjumb@synopsys.com>
17874 L: linux-mmc@vger.kernel.org
17876 F: drivers/mmc/host/sdhci-pci-dwc-mshc.c
17878 SYSTEM CONFIGURATION (SYSCON)
17879 M: Lee Jones <lee.jones@linaro.org>
17880 M: Arnd Bergmann <arnd@arndb.de>
17882 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17883 F: drivers/mfd/syscon.c
17885 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17886 M: Sudeep Holla <sudeep.holla@arm.com>
17887 R: Cristian Marussi <cristian.marussi@arm.com>
17888 L: linux-arm-kernel@lists.infradead.org
17890 F: Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
17891 F: drivers/clk/clk-sc[mp]i.c
17892 F: drivers/cpufreq/sc[mp]i-cpufreq.c
17893 F: drivers/firmware/arm_scmi/
17894 F: drivers/firmware/arm_scpi.c
17895 F: drivers/regulator/scmi-regulator.c
17896 F: drivers/reset/reset-scmi.c
17897 F: include/linux/sc[mp]i_protocol.h
17898 F: include/trace/events/scmi.h
17900 SYSTEM RESET/SHUTDOWN DRIVERS
17901 M: Sebastian Reichel <sre@kernel.org>
17902 L: linux-pm@vger.kernel.org
17904 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17905 F: Documentation/devicetree/bindings/power/reset/
17906 F: drivers/power/reset/
17908 SYSTEM TRACE MODULE CLASS
17909 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
17911 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17912 F: Documentation/trace/stm.rst
17913 F: drivers/hwtracing/stm/
17914 F: include/linux/stm.h
17915 F: include/uapi/linux/stm.h
17917 SYSTEM76 ACPI DRIVER
17918 M: Jeremy Soller <jeremy@system76.com>
17919 M: System76 Product Development <productdev@system76.com>
17920 L: platform-driver-x86@vger.kernel.org
17922 F: drivers/platform/x86/system76_acpi.c
17925 M: Christoph Hellwig <hch@infradead.org>
17927 F: Documentation/filesystems/sysv-fs.rst
17929 F: include/linux/sysv_fs.h
17931 TASKSTATS STATISTICS INTERFACE
17932 M: Balbir Singh <bsingharora@gmail.com>
17934 F: Documentation/accounting/taskstats*
17935 F: include/linux/taskstats*
17936 F: kernel/taskstats.c
17939 M: Jamal Hadi Salim <jhs@mojatatu.com>
17940 M: Cong Wang <xiyou.wangcong@gmail.com>
17941 M: Jiri Pirko <jiri@resnulli.us>
17942 L: netdev@vger.kernel.org
17944 F: include/net/pkt_cls.h
17945 F: include/net/pkt_sched.h
17946 F: include/net/tc_act/
17947 F: include/uapi/linux/pkt_cls.h
17948 F: include/uapi/linux/pkt_sched.h
17949 F: include/uapi/linux/tc_act/
17950 F: include/uapi/linux/tc_ematch/
17953 TC90522 MEDIA DRIVER
17954 M: Akihiro Tsukada <tskd08@gmail.com>
17955 L: linux-media@vger.kernel.org
17957 F: drivers/media/dvb-frontends/tc90522*
17959 TCP LOW PRIORITY MODULE
17960 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17961 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17963 W: http://tcp-lp-mod.sourceforge.net/
17964 F: net/ipv4/tcp_lp.c
17966 TDA10071 MEDIA DRIVER
17967 M: Antti Palosaari <crope@iki.fi>
17968 L: linux-media@vger.kernel.org
17970 W: https://linuxtv.org
17971 W: http://palosaari.fi/linux/
17972 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17973 T: git git://linuxtv.org/anttip/media_tree.git
17974 F: drivers/media/dvb-frontends/tda10071*
17976 TDA18212 MEDIA DRIVER
17977 M: Antti Palosaari <crope@iki.fi>
17978 L: linux-media@vger.kernel.org
17980 W: https://linuxtv.org
17981 W: http://palosaari.fi/linux/
17982 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17983 T: git git://linuxtv.org/anttip/media_tree.git
17984 F: drivers/media/tuners/tda18212*
17986 TDA18218 MEDIA DRIVER
17987 M: Antti Palosaari <crope@iki.fi>
17988 L: linux-media@vger.kernel.org
17990 W: https://linuxtv.org
17991 W: http://palosaari.fi/linux/
17992 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17993 T: git git://linuxtv.org/anttip/media_tree.git
17994 F: drivers/media/tuners/tda18218*
17996 TDA18250 MEDIA DRIVER
17997 M: Olli Salonen <olli.salonen@iki.fi>
17998 L: linux-media@vger.kernel.org
18000 W: https://linuxtv.org
18001 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18002 T: git git://linuxtv.org/media_tree.git
18003 F: drivers/media/tuners/tda18250*
18005 TDA18271 MEDIA DRIVER
18006 M: Michael Krufky <mkrufky@linuxtv.org>
18007 L: linux-media@vger.kernel.org
18009 W: https://linuxtv.org
18010 W: http://github.com/mkrufky
18011 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18012 T: git git://linuxtv.org/mkrufky/tuners.git
18013 F: drivers/media/tuners/tda18271*
18015 TDA1997x MEDIA DRIVER
18016 M: Tim Harvey <tharvey@gateworks.com>
18017 L: linux-media@vger.kernel.org
18019 W: https://linuxtv.org
18020 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18021 F: drivers/media/i2c/tda1997x.*
18023 TDA827x MEDIA DRIVER
18024 M: Michael Krufky <mkrufky@linuxtv.org>
18025 L: linux-media@vger.kernel.org
18027 W: https://linuxtv.org
18028 W: http://github.com/mkrufky
18029 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18030 T: git git://linuxtv.org/mkrufky/tuners.git
18031 F: drivers/media/tuners/tda8290.*
18033 TDA8290 MEDIA DRIVER
18034 M: Michael Krufky <mkrufky@linuxtv.org>
18035 L: linux-media@vger.kernel.org
18037 W: https://linuxtv.org
18038 W: http://github.com/mkrufky
18039 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18040 T: git git://linuxtv.org/mkrufky/tuners.git
18041 F: drivers/media/tuners/tda8290.*
18043 TDA9840 MEDIA DRIVER
18044 M: Hans Verkuil <hverkuil@xs4all.nl>
18045 L: linux-media@vger.kernel.org
18047 W: https://linuxtv.org
18048 T: git git://linuxtv.org/media_tree.git
18049 F: drivers/media/i2c/tda9840*
18051 TEA5761 TUNER DRIVER
18052 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18053 L: linux-media@vger.kernel.org
18055 W: https://linuxtv.org
18056 T: git git://linuxtv.org/media_tree.git
18057 F: drivers/media/tuners/tea5761.*
18059 TEA5767 TUNER DRIVER
18060 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18061 L: linux-media@vger.kernel.org
18063 W: https://linuxtv.org
18064 T: git git://linuxtv.org/media_tree.git
18065 F: drivers/media/tuners/tea5767.*
18067 TEA6415C MEDIA DRIVER
18068 M: Hans Verkuil <hverkuil@xs4all.nl>
18069 L: linux-media@vger.kernel.org
18071 W: https://linuxtv.org
18072 T: git git://linuxtv.org/media_tree.git
18073 F: drivers/media/i2c/tea6415c*
18075 TEA6420 MEDIA DRIVER
18076 M: Hans Verkuil <hverkuil@xs4all.nl>
18077 L: linux-media@vger.kernel.org
18079 W: https://linuxtv.org
18080 T: git git://linuxtv.org/media_tree.git
18081 F: drivers/media/i2c/tea6420*
18084 M: Jiri Pirko <jiri@resnulli.us>
18085 L: netdev@vger.kernel.org
18087 F: drivers/net/team/
18088 F: include/linux/if_team.h
18089 F: include/uapi/linux/if_team.h
18091 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18092 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18094 F: arch/x86/platform/ts5500/
18096 TECHNOTREND USB IR RECEIVER
18097 M: Sean Young <sean@mess.org>
18098 L: linux-media@vger.kernel.org
18100 F: drivers/media/rc/ttusbir.c
18102 TECHWELL TW9910 VIDEO DECODER
18103 L: linux-media@vger.kernel.org
18105 F: drivers/media/i2c/tw9910.c
18106 F: include/media/i2c/tw9910.h
18109 M: Jens Wiklander <jens.wiklander@linaro.org>
18110 L: op-tee@lists.trustedfirmware.org
18112 F: Documentation/staging/tee.rst
18114 F: include/linux/tee_drv.h
18115 F: include/uapi/linux/tee.h
18117 TEGRA ARCHITECTURE SUPPORT
18118 M: Thierry Reding <thierry.reding@gmail.com>
18119 M: Jonathan Hunter <jonathanh@nvidia.com>
18120 L: linux-tegra@vger.kernel.org
18122 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
18123 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18127 M: Peter De Schrijver <pdeschrijver@nvidia.com>
18128 M: Prashant Gaikwad <pgaikwad@nvidia.com>
18130 F: drivers/clk/tegra/
18133 M: Laxman Dewangan <ldewangan@nvidia.com>
18134 M: Jon Hunter <jonathanh@nvidia.com>
18136 F: drivers/dma/tegra*
18139 M: Laxman Dewangan <ldewangan@nvidia.com>
18140 R: Dmitry Osipenko <digetx@gmail.com>
18142 F: drivers/i2c/busses/i2c-tegra.c
18144 TEGRA IOMMU DRIVERS
18145 M: Thierry Reding <thierry.reding@gmail.com>
18146 R: Krishna Reddy <vdumpa@nvidia.com>
18147 L: linux-tegra@vger.kernel.org
18149 F: drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18150 F: drivers/iommu/tegra*
18153 M: Laxman Dewangan <ldewangan@nvidia.com>
18155 F: drivers/input/keyboard/tegra-kbc.c
18158 M: Stefan Agner <stefan@agner.ch>
18159 M: Lucas Stach <dev@lynxeye.de>
18161 F: Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18162 F: drivers/mtd/nand/raw/tegra_nand.c
18165 M: Thierry Reding <thierry.reding@gmail.com>
18167 F: drivers/pwm/pwm-tegra.c
18169 TEGRA SERIAL DRIVER
18170 M: Laxman Dewangan <ldewangan@nvidia.com>
18172 F: drivers/tty/serial/serial-tegra.c
18175 M: Laxman Dewangan <ldewangan@nvidia.com>
18177 F: drivers/spi/spi-tegra*
18179 TEGRA QUAD SPI DRIVER
18180 M: Thierry Reding <thierry.reding@gmail.com>
18181 M: Jonathan Hunter <jonathanh@nvidia.com>
18182 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18183 L: linux-tegra@vger.kernel.org
18185 F: drivers/spi/spi-tegra210-quad.c
18188 M: Thierry Reding <thierry.reding@gmail.com>
18189 M: Jonathan Hunter <jonathanh@nvidia.com>
18190 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18191 L: linux-media@vger.kernel.org
18192 L: linux-tegra@vger.kernel.org
18194 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18195 F: drivers/staging/media/tegra-video/
18197 TEGRA XUSB PADCTL DRIVER
18198 M: JC Kuo <jckuo@nvidia.com>
18200 F: drivers/phy/tegra/xusb*
18202 TEHUTI ETHERNET DRIVER
18203 M: Andy Gospodarek <andy@greyhouse.net>
18204 L: netdev@vger.kernel.org
18206 F: drivers/net/ethernet/tehuti/*
18208 TELECOM CLOCK DRIVER FOR MCPL0010
18209 M: Mark Gross <mark.gross@intel.com>
18211 F: drivers/char/tlclk.c
18213 TEMPO SEMICONDUCTOR DRIVERS
18214 M: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18216 F: Documentation/devicetree/bindings/sound/tscs*.txt
18217 F: sound/soc/codecs/tscs*.c
18218 F: sound/soc/codecs/tscs*.h
18220 TENSILICA XTENSA PORT (xtensa)
18221 M: Chris Zankel <chris@zankel.net>
18222 M: Max Filippov <jcmvbkbc@gmail.com>
18223 L: linux-xtensa@linux-xtensa.org
18225 T: git git://github.com/czankel/xtensa-linux.git
18227 F: drivers/irqchip/irq-xtensa-*
18229 TEXAS INSTRUMENTS ASoC DRIVERS
18230 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18231 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18235 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18236 M: Ricardo Ribalda <ribalda@kernel.org>
18237 L: linux-iio@vger.kernel.org
18239 F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18240 F: drivers/iio/dac/ti-dac7612.c
18242 TEXAS INSTRUMENTS DMA DRIVERS
18243 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18244 L: dmaengine@vger.kernel.org
18246 F: Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18247 F: Documentation/devicetree/bindings/dma/ti-edma.txt
18248 F: Documentation/devicetree/bindings/dma/ti/
18250 X: drivers/dma/ti/cppi41.c
18251 F: include/linux/dma/k3-udma-glue.h
18252 F: include/linux/dma/ti-cppi5.h
18253 F: include/linux/dma/k3-psil.h
18255 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18256 M: Nishanth Menon <nm@ti.com>
18257 M: Tero Kristo <kristo@kernel.org>
18258 M: Santosh Shilimkar <ssantosh@kernel.org>
18259 L: linux-arm-kernel@lists.infradead.org
18261 F: Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18262 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18263 F: Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18264 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18265 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18266 F: Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18267 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18268 F: drivers/clk/keystone/sci-clk.c
18269 F: drivers/firmware/ti_sci*
18270 F: drivers/irqchip/irq-ti-sci-inta.c
18271 F: drivers/irqchip/irq-ti-sci-intr.c
18272 F: drivers/reset/reset-ti-sci.c
18273 F: drivers/soc/ti/ti_sci_inta_msi.c
18274 F: drivers/soc/ti/ti_sci_pm_domains.c
18275 F: include/dt-bindings/soc/ti,sci_pm_domain.h
18276 F: include/linux/soc/ti/ti_sci_inta_msi.h
18277 F: include/linux/soc/ti/ti_sci_protocol.h
18279 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18280 M: Robert Marko <robert.marko@sartura.hr>
18281 M: Luka Perkov <luka.perkov@sartura.hr>
18282 L: linux-hwmon@vger.kernel.org
18284 F: Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18285 F: Documentation/hwmon/tps23861.rst
18286 F: drivers/hwmon/tps23861.c
18288 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18289 M: Hans Verkuil <hverkuil@xs4all.nl>
18290 L: linux-media@vger.kernel.org
18292 W: https://linuxtv.org
18293 T: git git://linuxtv.org/media_tree.git
18294 F: drivers/media/radio/radio-raremono.c
18297 M: Zhang Rui <rui.zhang@intel.com>
18298 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18299 R: Amit Kucheria <amitk@kernel.org>
18300 L: linux-pm@vger.kernel.org
18302 Q: https://patchwork.kernel.org/project/linux-pm/list/
18303 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
18304 F: Documentation/devicetree/bindings/thermal/
18305 F: drivers/thermal/
18306 F: include/linux/cpu_cooling.h
18307 F: include/linux/thermal.h
18308 F: include/uapi/linux/thermal.h
18310 THERMAL DRIVER FOR AMLOGIC SOCS
18311 M: Guillaume La Roque <glaroque@baylibre.com>
18312 L: linux-pm@vger.kernel.org
18313 L: linux-amlogic@lists.infradead.org
18315 W: http://linux-meson.com/
18316 F: Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18317 F: drivers/thermal/amlogic_thermal.c
18319 THERMAL/CPU_COOLING
18320 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
18321 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18322 M: Viresh Kumar <viresh.kumar@linaro.org>
18323 R: Lukasz Luba <lukasz.luba@arm.com>
18324 L: linux-pm@vger.kernel.org
18326 F: Documentation/driver-api/thermal/cpu-cooling-api.rst
18327 F: Documentation/driver-api/thermal/cpu-idle-cooling.rst
18328 F: drivers/thermal/cpufreq_cooling.c
18329 F: drivers/thermal/cpuidle_cooling.c
18330 F: include/linux/cpu_cooling.h
18332 THERMAL/POWER_ALLOCATOR
18333 M: Lukasz Luba <lukasz.luba@arm.com>
18334 L: linux-pm@vger.kernel.org
18336 F: Documentation/driver-api/thermal/power_allocator.rst
18337 F: drivers/thermal/gov_power_allocator.c
18338 F: include/trace/events/thermal_power_allocator.h
18340 THINKPAD ACPI EXTRAS DRIVER
18341 M: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18342 L: ibm-acpi-devel@lists.sourceforge.net
18343 L: platform-driver-x86@vger.kernel.org
18345 W: http://ibm-acpi.sourceforge.net
18346 W: http://thinkwiki.org/wiki/Ibm-acpi
18347 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18348 F: drivers/platform/x86/thinkpad_acpi.c
18350 THINKPAD LMI DRIVER
18351 M: Mark Pearson <markpearson@lenovo.com>
18352 L: platform-driver-x86@vger.kernel.org
18354 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
18355 F: drivers/platform/x86/think-lmi.?
18357 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18358 M: Isaac Hazan <isaac.hazan@intel.com>
18359 L: linux-usb@vger.kernel.org
18361 F: drivers/thunderbolt/dma_test.c
18364 M: Andreas Noever <andreas.noever@gmail.com>
18365 M: Michael Jamet <michael.jamet@intel.com>
18366 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18367 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18368 L: linux-usb@vger.kernel.org
18370 T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18371 F: Documentation/admin-guide/thunderbolt.rst
18372 F: drivers/thunderbolt/
18373 F: include/linux/thunderbolt.h
18375 THUNDERBOLT NETWORK DRIVER
18376 M: Michael Jamet <michael.jamet@intel.com>
18377 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18378 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18379 L: netdev@vger.kernel.org
18381 F: drivers/net/thunderbolt.c
18383 THUNDERX GPIO DRIVER
18384 M: Robert Richter <rric@kernel.org>
18386 F: drivers/gpio/gpio-thunderx.c
18388 TI ADS131E0X ADC SERIES DRIVER
18389 M: Tomislav Denis <tomislav.denis@avl.com>
18390 L: linux-iio@vger.kernel.org
18392 F: Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18393 F: drivers/iio/adc/ti-ads131e08.c
18395 TI AM437X VPFE DRIVER
18396 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18397 L: linux-media@vger.kernel.org
18399 W: https://linuxtv.org
18400 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18401 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18402 F: drivers/media/platform/am437x/
18404 TI BANDGAP AND THERMAL DRIVER
18405 M: Eduardo Valentin <edubezval@gmail.com>
18406 M: Keerthy <j-keerthy@ti.com>
18407 L: linux-pm@vger.kernel.org
18408 L: linux-omap@vger.kernel.org
18410 F: drivers/thermal/ti-soc-thermal/
18412 TI BQ27XXX POWER SUPPLY DRIVER
18413 F: drivers/power/supply/bq27xxx_battery.c
18414 F: drivers/power/supply/bq27xxx_battery_i2c.c
18415 F: include/linux/power/bq27xxx_battery.h
18417 TI CDCE706 CLOCK DRIVER
18418 M: Max Filippov <jcmvbkbc@gmail.com>
18420 F: drivers/clk/clk-cdce706.c
18423 M: Tero Kristo <kristo@kernel.org>
18424 L: linux-omap@vger.kernel.org
18427 F: include/linux/clk/ti.h
18429 TI DAVINCI MACHINE SUPPORT
18430 M: Sekhar Nori <nsekhar@ti.com>
18431 R: Bartosz Golaszewski <bgolaszewski@baylibre.com>
18432 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18434 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18435 F: Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18436 F: arch/arm/boot/dts/da850*
18437 F: arch/arm/mach-davinci/
18438 F: drivers/i2c/busses/i2c-davinci.c
18440 TI DAVINCI SERIES CLOCK DRIVER
18441 M: David Lechner <david@lechnology.com>
18442 R: Sekhar Nori <nsekhar@ti.com>
18444 F: Documentation/devicetree/bindings/clock/ti/davinci/
18445 F: drivers/clk/davinci/
18447 TI DAVINCI SERIES GPIO DRIVER
18448 M: Keerthy <j-keerthy@ti.com>
18449 L: linux-gpio@vger.kernel.org
18451 F: Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18452 F: drivers/gpio/gpio-davinci.c
18454 TI DAVINCI SERIES MEDIA DRIVER
18455 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18456 L: linux-media@vger.kernel.org
18458 W: https://linuxtv.org
18459 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18460 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18461 F: drivers/media/platform/davinci/
18462 F: include/media/davinci/
18464 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18465 R: David Lechner <david@lechnology.com>
18466 L: linux-iio@vger.kernel.org
18467 F: Documentation/devicetree/bindings/counter/ti-eqep.yaml
18468 F: drivers/counter/ti-eqep.c
18470 TI ETHERNET SWITCH DRIVER (CPSW)
18471 R: Grygorii Strashko <grygorii.strashko@ti.com>
18472 L: linux-omap@vger.kernel.org
18473 L: netdev@vger.kernel.org
18475 F: drivers/net/ethernet/ti/cpsw*
18476 F: drivers/net/ethernet/ti/davinci*
18478 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18479 M: Alex Dubov <oakad@yahoo.com>
18481 W: http://tifmxx.berlios.de/
18482 F: drivers/memstick/host/tifm_ms.c
18483 F: drivers/misc/tifm*
18484 F: drivers/mmc/host/tifm_sd.c
18485 F: include/linux/tifm.h
18487 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18488 M: Santosh Shilimkar <ssantosh@kernel.org>
18489 L: linux-kernel@vger.kernel.org
18490 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18492 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18493 F: drivers/soc/ti/*
18495 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18496 M: M R Swami Reddy <mr.swami.reddy@ti.com>
18497 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18498 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18500 F: sound/soc/codecs/isabelle*
18501 F: sound/soc/codecs/lm49453*
18503 TI PCM3060 ASoC CODEC DRIVER
18504 M: Kirill Marinushkin <kmarinushkin@birdec.com>
18505 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18507 F: Documentation/devicetree/bindings/sound/pcm3060.txt
18508 F: sound/soc/codecs/pcm3060*
18510 TI TAS571X FAMILY ASoC CODEC DRIVER
18511 M: Kevin Cernekee <cernekee@chromium.org>
18512 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18514 F: sound/soc/codecs/tas571x*
18516 TI TRF7970A NFC DRIVER
18517 M: Mark Greer <mgreer@animalcreek.com>
18518 L: linux-wireless@vger.kernel.org
18519 L: linux-nfc@lists.01.org (subscribers-only)
18521 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18522 F: drivers/nfc/trf7970a.c
18524 TI TWL4030 SERIES SOC CODEC DRIVER
18525 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18526 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18528 F: sound/soc/codecs/twl4030*
18531 M: Benoit Parrot <bparrot@ti.com>
18532 L: linux-media@vger.kernel.org
18534 W: http://linuxtv.org/
18535 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18536 F: Documentation/devicetree/bindings/media/ti,cal.yaml
18537 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
18538 F: drivers/media/platform/ti-vpe/
18540 TI WILINK WIRELESS DRIVERS
18541 L: linux-wireless@vger.kernel.org
18543 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18544 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18545 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18546 F: drivers/net/wireless/ti/
18547 F: include/linux/wl12xx.h
18549 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18550 M: John Stultz <john.stultz@linaro.org>
18551 M: Thomas Gleixner <tglx@linutronix.de>
18552 R: Stephen Boyd <sboyd@kernel.org>
18553 L: linux-kernel@vger.kernel.org
18555 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18556 F: include/linux/clocksource.h
18557 F: include/linux/time.h
18558 F: include/linux/timex.h
18559 F: include/uapi/linux/time.h
18560 F: include/uapi/linux/timex.h
18561 F: kernel/time/alarmtimer.c
18562 F: kernel/time/clocksource.c
18563 F: kernel/time/ntp.c
18564 F: kernel/time/time*.c
18565 F: tools/testing/selftests/timers/
18568 M: Jon Maloy <jmaloy@redhat.com>
18569 M: Ying Xue <ying.xue@windriver.com>
18570 L: netdev@vger.kernel.org (core kernel code)
18571 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18573 W: http://tipc.sourceforge.net/
18574 F: include/uapi/linux/tipc*.h
18577 TLAN NETWORK DRIVER
18578 M: Samuel Chessman <chessman@tux.org>
18579 L: tlan-devel@lists.sourceforge.net (subscribers-only)
18581 W: http://sourceforge.net/projects/tlan/
18582 F: Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18583 F: drivers/net/ethernet/ti/tlan.*
18585 TM6000 VIDEO4LINUX DRIVER
18586 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18587 L: linux-media@vger.kernel.org
18589 W: https://linuxtv.org
18590 T: git git://linuxtv.org/media_tree.git
18591 F: Documentation/admin-guide/media/tm6000*
18592 F: drivers/media/usb/tm6000/
18594 TMIO/SDHI MMC DRIVER
18595 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
18596 L: linux-mmc@vger.kernel.org
18598 F: drivers/mmc/host/renesas_sdhi*
18599 F: drivers/mmc/host/tmio_mmc*
18600 F: include/linux/mfd/tmio.h
18602 TMP401 HARDWARE MONITOR DRIVER
18603 M: Guenter Roeck <linux@roeck-us.net>
18604 L: linux-hwmon@vger.kernel.org
18606 F: Documentation/hwmon/tmp401.rst
18607 F: drivers/hwmon/tmp401.c
18609 TMP513 HARDWARE MONITOR DRIVER
18610 M: Eric Tremblay <etremblay@distech-controls.com>
18611 L: linux-hwmon@vger.kernel.org
18613 F: Documentation/hwmon/tmp513.rst
18614 F: drivers/hwmon/tmp513.c
18616 TMPFS (SHMEM FILESYSTEM)
18617 M: Hugh Dickins <hughd@google.com>
18618 L: linux-mm@kvack.org
18620 F: include/linux/shmem_fs.h
18623 TOMOYO SECURITY MODULE
18624 M: Kentaro Takeda <takedakn@nttdata.co.jp>
18625 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18626 L: tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18627 L: tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18628 L: tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18629 L: tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18631 W: https://tomoyo.osdn.jp/
18632 F: security/tomoyo/
18634 TOPSTAR LAPTOP EXTRAS DRIVER
18635 M: Herton Ronaldo Krzesinski <herton@canonical.com>
18636 L: platform-driver-x86@vger.kernel.org
18638 F: drivers/platform/x86/topstar-laptop.c
18640 TORTURE-TEST MODULES
18641 M: Davidlohr Bueso <dave@stgolabs.net>
18642 M: "Paul E. McKenney" <paulmck@kernel.org>
18643 M: Josh Triplett <josh@joshtriplett.org>
18644 L: linux-kernel@vger.kernel.org
18646 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18647 F: Documentation/RCU/torture.rst
18648 F: kernel/locking/locktorture.c
18649 F: kernel/rcu/rcuscale.c
18650 F: kernel/rcu/rcutorture.c
18651 F: kernel/rcu/refscale.c
18652 F: kernel/torture.c
18654 TOSHIBA ACPI EXTRAS DRIVER
18655 M: Azael Avalos <coproscefalo@gmail.com>
18656 L: platform-driver-x86@vger.kernel.org
18658 F: drivers/platform/x86/toshiba_acpi.c
18660 TOSHIBA BLUETOOTH DRIVER
18661 M: Azael Avalos <coproscefalo@gmail.com>
18662 L: platform-driver-x86@vger.kernel.org
18664 F: drivers/platform/x86/toshiba_bluetooth.c
18666 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18667 M: Azael Avalos <coproscefalo@gmail.com>
18668 L: platform-driver-x86@vger.kernel.org
18670 F: drivers/platform/x86/toshiba_haps.c
18673 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
18675 W: http://www.buzzard.org.uk/toshiba/
18676 F: drivers/char/toshiba.c
18677 F: include/linux/toshiba.h
18678 F: include/uapi/linux/toshiba.h
18680 TOSHIBA TC358743 DRIVER
18681 M: Mats Randgaard <matrandg@cisco.com>
18682 L: linux-media@vger.kernel.org
18684 F: drivers/media/i2c/tc358743*
18685 F: include/media/i2c/tc358743.h
18687 TOSHIBA WMI HOTKEYS DRIVER
18688 M: Azael Avalos <coproscefalo@gmail.com>
18689 L: platform-driver-x86@vger.kernel.org
18691 F: drivers/platform/x86/toshiba-wmi.c
18694 M: Peter Huewe <peterhuewe@gmx.de>
18695 M: Jarkko Sakkinen <jarkko@kernel.org>
18696 R: Jason Gunthorpe <jgg@ziepe.ca>
18697 L: linux-integrity@vger.kernel.org
18699 W: https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18700 Q: https://patchwork.kernel.org/project/linux-integrity/list/
18701 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18702 F: drivers/char/tpm/
18705 M: Steven Rostedt <rostedt@goodmis.org>
18706 M: Ingo Molnar <mingo@redhat.com>
18708 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18709 F: Documentation/trace/ftrace.rst
18710 F: arch/*/*/*/ftrace.h
18711 F: arch/*/kernel/ftrace.c
18713 F: include/*/ftrace.h
18714 F: include/linux/trace*.h
18717 F: tools/testing/selftests/ftrace/
18719 TRACING MMIO ACCESSES (MMIOTRACE)
18720 M: Steven Rostedt <rostedt@goodmis.org>
18721 M: Ingo Molnar <mingo@kernel.org>
18722 R: Karol Herbst <karolherbst@gmail.com>
18723 R: Pekka Paalanen <ppaalanen@gmail.com>
18724 L: linux-kernel@vger.kernel.org
18725 L: nouveau@lists.freedesktop.org
18727 F: arch/x86/mm/kmmio.c
18728 F: arch/x86/mm/mmio-mod.c
18729 F: arch/x86/mm/testmmiotrace.c
18730 F: include/linux/mmiotrace.h
18731 F: kernel/trace/trace_mmiotrace.c
18734 M: Jiri Kosina <trivial@kernel.org>
18736 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18737 K: ^Subject:.*(?i)trivial
18740 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18741 M: Jiri Slaby <jirislaby@kernel.org>
18743 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18744 F: Documentation/driver-api/serial/
18746 F: drivers/tty/serial/serial_core.c
18747 F: include/linux/serial.h
18748 F: include/linux/serial_core.h
18749 F: include/linux/tty.h
18750 F: include/uapi/linux/serial.h
18751 F: include/uapi/linux/serial_core.h
18752 F: include/uapi/linux/tty.h
18754 TUA9001 MEDIA DRIVER
18755 M: Antti Palosaari <crope@iki.fi>
18756 L: linux-media@vger.kernel.org
18758 W: https://linuxtv.org
18759 W: http://palosaari.fi/linux/
18760 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18761 T: git git://linuxtv.org/anttip/media_tree.git
18762 F: drivers/media/tuners/tua9001*
18764 TULIP NETWORK DRIVERS
18765 L: netdev@vger.kernel.org
18766 L: linux-parisc@vger.kernel.org
18768 F: drivers/net/ethernet/dec/tulip/
18771 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
18773 W: http://vtun.sourceforge.net/tun
18774 F: Documentation/networking/tuntap.rst
18775 F: arch/um/os-Linux/drivers/
18777 TURBOCHANNEL SUBSYSTEM
18778 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
18779 M: Ralf Baechle <ralf@linux-mips.org>
18780 L: linux-mips@vger.kernel.org
18782 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
18784 F: include/linux/tc.h
18787 M: "Len Brown" <lenb@kernel.org>
18788 L: linux-pm@vger.kernel.org
18790 Q: https://patchwork.kernel.org/project/linux-pm/list/
18791 B: https://bugzilla.kernel.org
18792 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18793 F: tools/power/x86/turbostat/
18795 TW5864 VIDEO4LINUX DRIVER
18796 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18797 M: Anton Sviridenko <anton@corp.bluecherry.net>
18798 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18799 M: Andrey Utkin <andrey_utkin@fastmail.com>
18800 L: linux-media@vger.kernel.org
18802 F: drivers/media/pci/tw5864/
18804 TW68 VIDEO4LINUX DRIVER
18805 M: Hans Verkuil <hverkuil@xs4all.nl>
18806 L: linux-media@vger.kernel.org
18808 W: https://linuxtv.org
18809 T: git git://linuxtv.org/media_tree.git
18810 F: drivers/media/pci/tw68/
18812 TW686X VIDEO4LINUX DRIVER
18813 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18814 L: linux-media@vger.kernel.org
18816 W: http://linuxtv.org
18817 T: git git://linuxtv.org/media_tree.git
18818 F: drivers/media/pci/tw686x/
18820 UACCE ACCELERATOR FRAMEWORK
18821 M: Zhangfei Gao <zhangfei.gao@linaro.org>
18822 M: Zhou Wang <wangzhou1@hisilicon.com>
18823 L: linux-accelerators@lists.ozlabs.org
18824 L: linux-kernel@vger.kernel.org
18826 F: Documentation/ABI/testing/sysfs-driver-uacce
18827 F: Documentation/misc-devices/uacce.rst
18828 F: drivers/misc/uacce/
18829 F: include/linux/uacce.h
18830 F: include/uapi/misc/uacce/
18832 UBI FILE SYSTEM (UBIFS)
18833 M: Richard Weinberger <richard@nod.at>
18834 L: linux-mtd@lists.infradead.org
18836 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
18837 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18838 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18839 F: Documentation/filesystems/ubifs-authentication.rst
18840 F: Documentation/filesystems/ubifs.rst
18843 UCLINUX (M68KNOMMU AND COLDFIRE)
18844 M: Greg Ungerer <gerg@linux-m68k.org>
18845 L: linux-m68k@lists.linux-m68k.org
18846 L: uclinux-dev@uclinux.org (subscribers-only)
18848 W: http://www.linux-m68k.org/
18849 W: http://www.uclinux.org/
18850 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18851 F: arch/m68k/*/*_no.*
18853 F: arch/m68k/coldfire/
18854 F: arch/m68k/include/asm/*_no.*
18857 M: Jan Kara <jack@suse.com>
18859 F: Documentation/filesystems/udf.rst
18863 M: Bastien Nocera <hadess@hadess.net>
18864 L: linux-input@vger.kernel.org
18866 F: drivers/hid/hid-udraw-ps3.c
18869 M: Evgeniy Dushistov <dushistov@mail.ru>
18871 F: Documentation/admin-guide/ufs.rst
18874 UHID USERSPACE HID IO DRIVER
18875 M: David Rheinsberg <david.rheinsberg@gmail.com>
18876 L: linux-input@vger.kernel.org
18878 F: drivers/hid/uhid.c
18879 F: include/uapi/linux/uhid.h
18882 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
18883 L: linux-usb@vger.kernel.org
18885 F: drivers/usb/common/ulpi.c
18886 F: include/linux/ulpi/
18889 M: Gabriel Krisman Bertazi <krisman@collabora.com>
18890 L: linux-fsdevel@vger.kernel.org
18895 M: Tony Finch <dot@dotat.at>
18897 W: http://dotat.at/prog/unifdef
18898 F: scripts/unifdef.c
18900 UNIFORM CDROM DRIVER
18901 M: Jens Axboe <axboe@kernel.dk>
18903 W: http://www.kernel.dk
18904 F: Documentation/cdrom/
18905 F: drivers/cdrom/cdrom.c
18906 F: include/linux/cdrom.h
18907 F: include/uapi/linux/cdrom.h
18909 UNISYS S-PAR DRIVERS
18910 M: David Kershner <david.kershner@unisys.com>
18911 L: sparmaintainer@unisys.com (Unisys internal)
18913 F: drivers/staging/unisys/
18914 F: drivers/visorbus/
18915 F: include/linux/visorbus.h
18917 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18918 R: Alim Akhtar <alim.akhtar@samsung.com>
18919 R: Avri Altman <avri.altman@wdc.com>
18920 L: linux-scsi@vger.kernel.org
18922 F: Documentation/scsi/ufs.rst
18923 F: drivers/scsi/ufs/
18925 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18926 M: Pedro Sousa <pedrom.sousa@synopsys.com>
18927 L: linux-scsi@vger.kernel.org
18929 F: drivers/scsi/ufs/*dwc*
18931 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18932 M: Stanley Chu <stanley.chu@mediatek.com>
18933 L: linux-scsi@vger.kernel.org
18934 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18936 F: drivers/scsi/ufs/ufs-mediatek*
18938 UNSORTED BLOCK IMAGES (UBI)
18939 M: Richard Weinberger <richard@nod.at>
18940 L: linux-mtd@lists.infradead.org
18942 W: http://www.linux-mtd.infradead.org/
18943 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18944 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18945 F: drivers/mtd/ubi/
18946 F: include/linux/mtd/ubi.h
18947 F: include/uapi/mtd/ubi-user.h
18949 USB "USBNET" DRIVER FRAMEWORK
18950 M: Oliver Neukum <oneukum@suse.com>
18951 L: netdev@vger.kernel.org
18953 W: http://www.linux-usb.org/usbnet
18954 F: drivers/net/usb/usbnet.c
18955 F: include/linux/usb/usbnet.h
18958 M: Oliver Neukum <oneukum@suse.com>
18959 L: linux-usb@vger.kernel.org
18961 F: Documentation/usb/acm.rst
18962 F: drivers/usb/class/cdc-acm.*
18964 USB APPLE MFI FASTCHARGE DRIVER
18965 M: Bastien Nocera <hadess@hadess.net>
18966 L: linux-usb@vger.kernel.org
18968 F: drivers/usb/misc/apple-mfi-fastcharge.c
18970 USB AR5523 WIRELESS DRIVER
18971 M: Pontus Fuchs <pontus.fuchs@gmail.com>
18972 L: linux-wireless@vger.kernel.org
18974 F: drivers/net/wireless/ath/ar5523/
18977 M: Oliver Neukum <oneukum@suse.com>
18978 L: linux-usb@vger.kernel.org
18979 L: linux-scsi@vger.kernel.org
18981 F: drivers/usb/storage/uas.c
18983 USB CDC ETHERNET DRIVER
18984 M: Oliver Neukum <oliver@neukum.org>
18985 L: linux-usb@vger.kernel.org
18987 F: drivers/net/usb/cdc_*.c
18988 F: include/uapi/linux/usb/cdc.h
18990 USB CHAOSKEY DRIVER
18991 M: Keith Packard <keithp@keithp.com>
18992 L: linux-usb@vger.kernel.org
18994 F: drivers/usb/misc/chaoskey.c
18996 USB CYPRESS C67X00 DRIVER
18997 M: Peter Korsgaard <jacmet@sunsite.dk>
18998 L: linux-usb@vger.kernel.org
19000 F: drivers/usb/c67x00/
19002 USB DAVICOM DM9601 DRIVER
19003 M: Peter Korsgaard <jacmet@sunsite.dk>
19004 L: netdev@vger.kernel.org
19006 W: http://www.linux-usb.org/usbnet
19007 F: drivers/net/usb/dm9601.c
19010 M: Alan Stern <stern@rowland.harvard.edu>
19011 L: linux-usb@vger.kernel.org
19013 F: Documentation/usb/ehci.rst
19014 F: drivers/usb/host/ehci*
19016 USB GADGET/PERIPHERAL SUBSYSTEM
19017 M: Felipe Balbi <balbi@kernel.org>
19018 L: linux-usb@vger.kernel.org
19020 W: http://www.linux-usb.org/gadget
19021 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19022 F: drivers/usb/gadget/
19023 F: include/linux/usb/gadget*
19025 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19026 M: Jiri Kosina <jikos@kernel.org>
19027 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
19028 L: linux-usb@vger.kernel.org
19030 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19031 F: Documentation/hid/hiddev.rst
19032 F: drivers/hid/usbhid/
19034 USB INTEL XHCI ROLE MUX DRIVER
19035 M: Hans de Goede <hdegoede@redhat.com>
19036 L: linux-usb@vger.kernel.org
19038 F: drivers/usb/roles/intel-xhci-usb-role-switch.c
19040 USB IP DRIVER FOR HISILICON KIRIN
19041 M: Yu Chen <chenyu56@huawei.com>
19042 M: Binghui Wang <wangbinghui@hisilicon.com>
19043 L: linux-usb@vger.kernel.org
19045 F: Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19046 F: drivers/phy/hisilicon/phy-hi3660-usb3.c
19049 M: Olav Kongas <ok@artecdesign.ee>
19050 L: linux-usb@vger.kernel.org
19052 F: drivers/usb/host/isp116x*
19053 F: include/linux/usb/isp116x.h
19056 M: Rui Miguel Silva <rui.silva@linaro.org>
19057 L: linux-usb@vger.kernel.org
19059 F: drivers/usb/isp1760/*
19060 F: Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19062 USB LAN78XX ETHERNET DRIVER
19063 M: Woojung Huh <woojung.huh@microchip.com>
19064 M: UNGLinuxDriver@microchip.com
19065 L: netdev@vger.kernel.org
19067 F: Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19068 F: drivers/net/usb/lan78xx.*
19069 F: include/dt-bindings/net/microchip-lan78xx.h
19071 USB MASS STORAGE DRIVER
19072 M: Alan Stern <stern@rowland.harvard.edu>
19073 L: linux-usb@vger.kernel.org
19074 L: usb-storage@lists.one-eyed-alien.net
19076 F: drivers/usb/storage/
19079 M: Clemens Ladisch <clemens@ladisch.de>
19080 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19082 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19083 F: sound/usb/midi.*
19085 USB NETWORKING DRIVERS
19086 L: linux-usb@vger.kernel.org
19088 F: drivers/net/usb/
19091 M: Alan Stern <stern@rowland.harvard.edu>
19092 L: linux-usb@vger.kernel.org
19094 F: Documentation/usb/ohci.rst
19095 F: drivers/usb/host/ohci*
19097 USB OTG FSM (Finite State Machine)
19098 M: Peter Chen <peter.chen@kernel.org>
19099 L: linux-usb@vger.kernel.org
19101 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19102 F: drivers/usb/common/usb-otg-fsm.c
19105 M: Valentina Manea <valentina.manea.m@gmail.com>
19106 M: Shuah Khan <shuah@kernel.org>
19107 M: Shuah Khan <skhan@linuxfoundation.org>
19108 L: linux-usb@vger.kernel.org
19110 F: Documentation/usb/usbip_protocol.rst
19111 F: drivers/usb/usbip/
19112 F: tools/testing/selftests/drivers/usb/usbip/
19113 F: tools/usb/usbip/
19116 M: Petko Manolov <petkan@nucleusys.com>
19117 L: linux-usb@vger.kernel.org
19118 L: netdev@vger.kernel.org
19120 W: https://github.com/petkan/pegasus
19121 T: git git://github.com/petkan/pegasus.git
19122 F: drivers/net/usb/pegasus.*
19125 M: Felipe Balbi <balbi@kernel.org>
19126 L: linux-usb@vger.kernel.org
19128 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19129 F: drivers/usb/phy/
19131 USB PRINTER DRIVER (usblp)
19132 M: Pete Zaitcev <zaitcev@redhat.com>
19133 L: linux-usb@vger.kernel.org
19135 F: drivers/usb/class/usblp.c
19137 USB RAW GADGET DRIVER
19138 R: Andrey Konovalov <andreyknvl@gmail.com>
19139 L: linux-usb@vger.kernel.org
19141 F: Documentation/usb/raw-gadget.rst
19142 F: drivers/usb/gadget/legacy/raw_gadget.c
19143 F: include/uapi/linux/usb/raw_gadget.h
19145 USB QMI WWAN NETWORK DRIVER
19146 M: Bjørn Mork <bjorn@mork.no>
19147 L: netdev@vger.kernel.org
19149 F: Documentation/ABI/testing/sysfs-class-net-qmi
19150 F: drivers/net/usb/qmi_wwan.c
19153 M: Petko Manolov <petkan@nucleusys.com>
19154 L: linux-usb@vger.kernel.org
19155 L: netdev@vger.kernel.org
19157 W: https://github.com/petkan/rtl8150
19158 T: git git://github.com/petkan/rtl8150.git
19159 F: drivers/net/usb/rtl8150.c
19161 USB SERIAL SUBSYSTEM
19162 M: Johan Hovold <johan@kernel.org>
19163 L: linux-usb@vger.kernel.org
19165 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19166 F: Documentation/usb/usb-serial.rst
19167 F: drivers/usb/serial/
19168 F: include/linux/usb/serial.h
19170 USB SMSC75XX ETHERNET DRIVER
19171 M: Steve Glendinning <steve.glendinning@shawell.net>
19172 L: netdev@vger.kernel.org
19174 F: drivers/net/usb/smsc75xx.*
19176 USB SMSC95XX ETHERNET DRIVER
19177 M: Steve Glendinning <steve.glendinning@shawell.net>
19178 M: UNGLinuxDriver@microchip.com
19179 L: netdev@vger.kernel.org
19181 F: drivers/net/usb/smsc95xx.*
19184 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19185 L: linux-usb@vger.kernel.org
19187 W: http://www.linux-usb.org
19188 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19189 F: Documentation/devicetree/bindings/usb/
19190 F: Documentation/usb/
19192 F: include/linux/usb.h
19193 F: include/linux/usb/
19195 USB TYPEC BUS FOR ALTERNATE MODES
19196 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19197 L: linux-usb@vger.kernel.org
19199 F: Documentation/ABI/testing/sysfs-bus-typec
19200 F: Documentation/driver-api/usb/typec_bus.rst
19201 F: drivers/usb/typec/altmodes/
19202 F: include/linux/usb/typec_altmode.h
19205 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19206 L: linux-usb@vger.kernel.org
19208 F: Documentation/ABI/testing/sysfs-class-typec
19209 F: Documentation/driver-api/usb/typec.rst
19210 F: drivers/usb/typec/
19211 F: include/linux/usb/typec.h
19213 USB TYPEC INTEL PMC MUX DRIVER
19214 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19215 L: linux-usb@vger.kernel.org
19217 F: Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19218 F: drivers/usb/typec/mux/intel_pmc_mux.c
19220 USB TYPEC PI3USB30532 MUX DRIVER
19221 M: Hans de Goede <hdegoede@redhat.com>
19222 L: linux-usb@vger.kernel.org
19224 F: drivers/usb/typec/mux/pi3usb30532.c
19226 USB TYPEC PORT CONTROLLER DRIVERS
19227 M: Guenter Roeck <linux@roeck-us.net>
19228 L: linux-usb@vger.kernel.org
19230 F: drivers/usb/typec/tcpm/
19233 M: Alan Stern <stern@rowland.harvard.edu>
19234 L: linux-usb@vger.kernel.org
19236 F: drivers/usb/host/uhci*
19239 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19240 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19241 L: linux-media@vger.kernel.org
19243 W: http://www.ideasonboard.org/uvc/
19244 T: git git://linuxtv.org/media_tree.git
19245 F: drivers/media/usb/uvc/
19246 F: include/uapi/linux/uvcvideo.h
19249 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19250 L: linux-usb@vger.kernel.org
19252 F: drivers/usb/gadget/function/*uvc*
19253 F: drivers/usb/gadget/legacy/webcam.c
19254 F: include/uapi/linux/usb/g_uvc.h
19256 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19257 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
19258 L: linux-wireless@vger.kernel.org
19260 F: drivers/net/wireless/rndis_wlan.c
19263 M: Mathias Nyman <mathias.nyman@intel.com>
19264 L: linux-usb@vger.kernel.org
19266 F: drivers/usb/host/pci-quirks*
19267 F: drivers/usb/host/xhci*
19270 L: linux-wireless@vger.kernel.org
19272 W: http://linux-lc100020.sourceforge.net
19273 F: drivers/net/wireless/zydas/zd1201.*
19276 M: Antoine Jacquet <royale@zerezo.com>
19277 L: linux-usb@vger.kernel.org
19278 L: linux-media@vger.kernel.org
19280 W: http://royale.zerezo.com/zr364xx/
19281 T: git git://linuxtv.org/media_tree.git
19282 F: Documentation/admin-guide/media/zr364xx*
19283 F: drivers/media/usb/zr364xx/
19285 USER-MODE LINUX (UML)
19286 M: Jeff Dike <jdike@addtoit.com>
19287 M: Richard Weinberger <richard@nod.at>
19288 M: Anton Ivanov <anton.ivanov@cambridgegreys.com>
19289 L: linux-um@lists.infradead.org
19291 W: http://user-mode-linux.sourceforge.net
19292 Q: https://patchwork.ozlabs.org/project/linux-um/list/
19293 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19294 F: Documentation/virt/uml/
19299 USERSPACE COPYIN/COPYOUT (UIOVEC)
19300 M: Alexander Viro <viro@zeniv.linux.org.uk>
19302 F: include/linux/uio.h
19305 USERSPACE DMA BUFFER DRIVER
19306 M: Gerd Hoffmann <kraxel@redhat.com>
19307 L: dri-devel@lists.freedesktop.org
19309 T: git git://anongit.freedesktop.org/drm/drm-misc
19310 F: drivers/dma-buf/udmabuf.c
19311 F: include/uapi/linux/udmabuf.h
19313 USERSPACE I/O (UIO)
19314 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19316 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19317 F: Documentation/driver-api/uio-howto.rst
19319 F: include/linux/uio_driver.h
19322 M: Karel Zak <kzak@redhat.com>
19323 L: util-linux@vger.kernel.org
19325 W: http://en.wikipedia.org/wiki/Util-linux
19326 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19329 M: Christoph Hellwig <hch@lst.de>
19330 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19331 L: linux-kernel@vger.kernel.org
19333 T: git git://git.infradead.org/users/hch/uuid.git
19334 F: include/linux/uuid.h
19335 F: include/uapi/linux/uuid.h
19340 M: Justin Ernst <justin.ernst@hpe.com>
19341 L: platform-driver-x86@vger.kernel.org
19343 F: drivers/platform/x86/uv_sysfs.c
19346 M: Michal Januszewski <spock@gentoo.org>
19347 L: linux-fbdev@vger.kernel.org
19349 W: https://github.com/mjanusz/v86d
19350 F: Documentation/fb/uvesafb.rst
19351 F: drivers/video/fbdev/uvesafb.*
19353 Ux500 CLOCK DRIVERS
19354 M: Ulf Hansson <ulf.hansson@linaro.org>
19355 L: linux-clk@vger.kernel.org
19356 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19358 F: drivers/clk/ux500/
19361 M: Stefan Agner <stefan@agner.ch>
19362 L: linux-mtd@lists.infradead.org
19364 F: drivers/mtd/nand/raw/vf610_nfc.c
19366 VFAT/FAT/MSDOS FILESYSTEM
19367 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19369 F: Documentation/filesystems/vfat.rst
19373 M: Alex Williamson <alex.williamson@redhat.com>
19374 R: Cornelia Huck <cohuck@redhat.com>
19375 L: kvm@vger.kernel.org
19377 T: git git://github.com/awilliam/linux-vfio.git
19378 F: Documentation/driver-api/vfio.rst
19380 F: include/linux/vfio.h
19381 F: include/uapi/linux/vfio.h
19384 M: Diana Craciun <diana.craciun@oss.nxp.com>
19385 L: kvm@vger.kernel.org
19387 F: drivers/vfio/fsl-mc/
19389 VFIO MEDIATED DEVICE DRIVERS
19390 M: Kirti Wankhede <kwankhede@nvidia.com>
19391 L: kvm@vger.kernel.org
19393 F: Documentation/driver-api/vfio-mediated-device.rst
19394 F: drivers/vfio/mdev/
19395 F: include/linux/mdev.h
19396 F: samples/vfio-mdev/
19398 VFIO PLATFORM DRIVER
19399 M: Eric Auger <eric.auger@redhat.com>
19400 L: kvm@vger.kernel.org
19402 F: drivers/vfio/platform/
19405 R: Lukas Wunner <lukas@wunner.de>
19407 T: git git://anongit.freedesktop.org/drm/drm-misc
19408 F: Documentation/gpu/vga-switcheroo.rst
19409 F: drivers/gpu/vga/vga_switcheroo.c
19410 F: include/linux/vga_switcheroo.h
19412 VIA RHINE NETWORK DRIVER
19414 M: Kevin Brace <kevinbrace@bracecomputerlab.com>
19415 F: drivers/net/ethernet/via/via-rhine.c
19417 VIA SD/MMC CARD CONTROLLER DRIVER
19418 M: Bruce Chang <brucechang@via.com.tw>
19419 M: Harald Welte <HaraldWelte@viatech.com>
19421 F: drivers/mmc/host/via-sdmmc.c
19423 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19424 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19425 L: linux-fbdev@vger.kernel.org
19427 F: drivers/video/fbdev/via/
19428 F: include/linux/via-core.h
19429 F: include/linux/via-gpio.h
19430 F: include/linux/via_i2c.h
19432 VIA VELOCITY NETWORK DRIVER
19433 M: Francois Romieu <romieu@fr.zoreil.com>
19434 L: netdev@vger.kernel.org
19436 F: drivers/net/ethernet/via/via-velocity.*
19438 VICODEC VIRTUAL CODEC DRIVER
19439 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
19440 L: linux-media@vger.kernel.org
19442 W: https://linuxtv.org
19443 T: git git://linuxtv.org/media_tree.git
19444 F: drivers/media/test-drivers/vicodec/*
19446 VIDEO I2C POLLING DRIVER
19447 M: Matt Ranostay <matt.ranostay@konsulko.com>
19448 L: linux-media@vger.kernel.org
19450 F: drivers/media/i2c/video-i2c.c
19452 VIDEO MULTIPLEXER DRIVER
19453 M: Philipp Zabel <p.zabel@pengutronix.de>
19454 L: linux-media@vger.kernel.org
19456 F: drivers/media/platform/video-mux.c
19458 VIDEOBUF2 FRAMEWORK
19459 M: Tomasz Figa <tfiga@chromium.org>
19460 M: Marek Szyprowski <m.szyprowski@samsung.com>
19461 L: linux-media@vger.kernel.org
19463 F: drivers/media/common/videobuf2/*
19464 F: include/media/videobuf2-*
19466 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19467 M: Helen Koike <helen.koike@collabora.com>
19468 R: Shuah Khan <skhan@linuxfoundation.org>
19469 L: linux-media@vger.kernel.org
19471 W: https://linuxtv.org
19472 T: git git://linuxtv.org/media_tree.git
19473 F: drivers/media/test-drivers/vimc/*
19476 M: Alex Williamson <alex.williamson@redhat.com>
19477 M: Paolo Bonzini <pbonzini@redhat.com>
19478 L: kvm@vger.kernel.org
19482 VIRTIO AND VHOST VSOCK DRIVER
19483 M: Stefan Hajnoczi <stefanha@redhat.com>
19484 M: Stefano Garzarella <sgarzare@redhat.com>
19485 L: kvm@vger.kernel.org
19486 L: virtualization@lists.linux-foundation.org
19487 L: netdev@vger.kernel.org
19489 F: drivers/net/vsockmon.c
19490 F: drivers/vhost/vsock.c
19491 F: include/linux/virtio_vsock.h
19492 F: include/uapi/linux/virtio_vsock.h
19493 F: include/uapi/linux/vm_sockets_diag.h
19494 F: include/uapi/linux/vsockmon.h
19495 F: net/vmw_vsock/af_vsock_tap.c
19496 F: net/vmw_vsock/diag.c
19497 F: net/vmw_vsock/virtio_transport.c
19498 F: net/vmw_vsock/virtio_transport_common.c
19499 F: net/vmw_vsock/vsock_loopback.c
19500 F: tools/testing/vsock/
19502 VIRTIO BLOCK AND SCSI DRIVERS
19503 M: "Michael S. Tsirkin" <mst@redhat.com>
19504 M: Jason Wang <jasowang@redhat.com>
19505 R: Paolo Bonzini <pbonzini@redhat.com>
19506 R: Stefan Hajnoczi <stefanha@redhat.com>
19507 L: virtualization@lists.linux-foundation.org
19509 F: drivers/block/virtio_blk.c
19510 F: drivers/scsi/virtio_scsi.c
19511 F: drivers/vhost/scsi.c
19512 F: include/uapi/linux/virtio_blk.h
19513 F: include/uapi/linux/virtio_scsi.h
19515 VIRTIO CONSOLE DRIVER
19516 M: Amit Shah <amit@kernel.org>
19517 L: virtualization@lists.linux-foundation.org
19519 F: drivers/char/virtio_console.c
19520 F: include/linux/virtio_console.h
19521 F: include/uapi/linux/virtio_console.h
19523 VIRTIO CORE AND NET DRIVERS
19524 M: "Michael S. Tsirkin" <mst@redhat.com>
19525 M: Jason Wang <jasowang@redhat.com>
19526 L: virtualization@lists.linux-foundation.org
19528 F: Documentation/devicetree/bindings/virtio/
19529 F: drivers/block/virtio_blk.c
19530 F: drivers/crypto/virtio/
19531 F: drivers/net/virtio_net.c
19534 F: include/linux/vdpa.h
19535 F: include/linux/virtio*.h
19536 F: include/uapi/linux/virtio_*.h
19540 M: "Michael S. Tsirkin" <mst@redhat.com>
19541 M: David Hildenbrand <david@redhat.com>
19542 L: virtualization@lists.linux-foundation.org
19544 F: drivers/virtio/virtio_balloon.c
19545 F: include/uapi/linux/virtio_balloon.h
19546 F: include/linux/balloon_compaction.h
19547 F: mm/balloon_compaction.c
19549 VIRTIO CRYPTO DRIVER
19550 M: Gonglei <arei.gonglei@huawei.com>
19551 L: virtualization@lists.linux-foundation.org
19552 L: linux-crypto@vger.kernel.org
19554 F: drivers/crypto/virtio/
19555 F: include/uapi/linux/virtio_crypto.h
19557 VIRTIO DRIVERS FOR S390
19558 M: Cornelia Huck <cohuck@redhat.com>
19559 M: Halil Pasic <pasic@linux.ibm.com>
19560 L: linux-s390@vger.kernel.org
19561 L: virtualization@lists.linux-foundation.org
19562 L: kvm@vger.kernel.org
19564 F: arch/s390/include/uapi/asm/virtio-ccw.h
19565 F: drivers/s390/virtio/
19568 M: Vivek Goyal <vgoyal@redhat.com>
19569 M: Stefan Hajnoczi <stefanha@redhat.com>
19570 M: Miklos Szeredi <miklos@szeredi.hu>
19571 L: virtualization@lists.linux-foundation.org
19572 L: linux-fsdevel@vger.kernel.org
19574 W: https://virtio-fs.gitlab.io/
19575 F: Documentation/filesystems/virtiofs.rst
19576 F: fs/fuse/virtio_fs.c
19577 F: include/uapi/linux/virtio_fs.h
19580 M: David Airlie <airlied@linux.ie>
19581 M: Gerd Hoffmann <kraxel@redhat.com>
19582 L: dri-devel@lists.freedesktop.org
19583 L: virtualization@lists.linux-foundation.org
19585 T: git git://anongit.freedesktop.org/drm/drm-misc
19586 F: drivers/gpu/drm/virtio/
19587 F: include/uapi/linux/virtio_gpu.h
19589 VIRTIO HOST (VHOST)
19590 M: "Michael S. Tsirkin" <mst@redhat.com>
19591 M: Jason Wang <jasowang@redhat.com>
19592 L: kvm@vger.kernel.org
19593 L: virtualization@lists.linux-foundation.org
19594 L: netdev@vger.kernel.org
19596 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19598 F: include/linux/vhost_iotlb.h
19599 F: include/uapi/linux/vhost.h
19601 VIRTIO INPUT DRIVER
19602 M: Gerd Hoffmann <kraxel@redhat.com>
19604 F: drivers/virtio/virtio_input.c
19605 F: include/uapi/linux/virtio_input.h
19607 VIRTIO IOMMU DRIVER
19608 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
19609 L: virtualization@lists.linux-foundation.org
19611 F: drivers/iommu/virtio-iommu.c
19612 F: include/uapi/linux/virtio_iommu.h
19615 M: David Hildenbrand <david@redhat.com>
19616 L: virtualization@lists.linux-foundation.org
19618 W: https://virtio-mem.gitlab.io/
19619 F: drivers/virtio/virtio_mem.c
19620 F: include/uapi/linux/virtio_mem.h
19622 VIRTIO SOUND DRIVER
19623 M: Anton Yakovlev <anton.yakovlev@opensynergy.com>
19624 M: "Michael S. Tsirkin" <mst@redhat.com>
19625 L: virtualization@lists.linux-foundation.org
19626 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19628 F: include/uapi/linux/virtio_snd.h
19631 VIRTUAL BOX GUEST DEVICE DRIVER
19632 M: Hans de Goede <hdegoede@redhat.com>
19633 M: Arnd Bergmann <arnd@arndb.de>
19634 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19636 F: drivers/virt/vboxguest/
19637 F: include/linux/vbox_utils.h
19638 F: include/uapi/linux/vbox*.h
19640 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19641 M: Hans de Goede <hdegoede@redhat.com>
19642 L: linux-fsdevel@vger.kernel.org
19646 VIRTUAL SERIO DEVICE DRIVER
19647 M: Stephen Chandler Paul <thatslyude@gmail.com>
19649 F: drivers/input/serio/userio.c
19650 F: include/uapi/linux/userio.h
19652 VIVID VIRTUAL VIDEO DRIVER
19653 M: Hans Verkuil <hverkuil@xs4all.nl>
19654 L: linux-media@vger.kernel.org
19656 W: https://linuxtv.org
19657 T: git git://linuxtv.org/media_tree.git
19658 F: drivers/media/test-drivers/vivid/*
19660 VIDTV VIRTUAL DIGITAL TV DRIVER
19661 M: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19662 L: linux-media@vger.kernel.org
19664 W: https://linuxtv.org
19665 T: git git://linuxtv.org/media_tree.git
19666 F: drivers/media/test-drivers/vidtv/*
19669 M: Florian Fainelli <f.fainelli@gmail.com>
19670 L: openwrt-devel@lists.openwrt.org (subscribers-only)
19672 F: drivers/vlynq/vlynq.c
19673 F: include/linux/vlynq.h
19676 M: Martyn Welch <martyn@welchs.me.uk>
19677 M: Manohar Vanga <manohar.vanga@gmail.com>
19678 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19679 L: linux-kernel@vger.kernel.org
19681 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19682 F: Documentation/driver-api/vme.rst
19683 F: drivers/staging/vme/
19685 F: include/linux/vme*
19687 VMWARE BALLOON DRIVER
19688 M: Nadav Amit <namit@vmware.com>
19689 M: "VMware, Inc." <pv-drivers@vmware.com>
19690 L: linux-kernel@vger.kernel.org
19692 F: drivers/misc/vmw_balloon.c
19694 VMWARE HYPERVISOR INTERFACE
19695 M: Deep Shah <sdeep@vmware.com>
19696 M: "VMware, Inc." <pv-drivers@vmware.com>
19697 L: virtualization@lists.linux-foundation.org
19699 F: arch/x86/include/asm/vmware.h
19700 F: arch/x86/kernel/cpu/vmware.c
19702 VMWARE PVRDMA DRIVER
19703 M: Adit Ranadive <aditr@vmware.com>
19704 M: VMware PV-Drivers <pv-drivers@vmware.com>
19705 L: linux-rdma@vger.kernel.org
19707 F: drivers/infiniband/hw/vmw_pvrdma/
19709 VMware PVSCSI driver
19710 M: Vishal Bhakta <vbhakta@vmware.com>
19711 M: VMware PV-Drivers <pv-drivers@vmware.com>
19712 L: linux-scsi@vger.kernel.org
19714 F: drivers/scsi/vmw_pvscsi.c
19715 F: drivers/scsi/vmw_pvscsi.h
19717 VMWARE VIRTUAL PTP CLOCK DRIVER
19718 M: Vivek Thampi <vithampi@vmware.com>
19719 M: "VMware, Inc." <pv-drivers@vmware.com>
19720 L: netdev@vger.kernel.org
19722 F: drivers/ptp/ptp_vmw.c
19724 VMWARE VMMOUSE SUBDRIVER
19725 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19726 M: "VMware, Inc." <pv-drivers@vmware.com>
19727 L: linux-input@vger.kernel.org
19729 F: drivers/input/mouse/vmmouse.c
19730 F: drivers/input/mouse/vmmouse.h
19732 VMWARE VMXNET3 ETHERNET DRIVER
19733 M: Ronak Doshi <doshir@vmware.com>
19734 M: pv-drivers@vmware.com
19735 L: netdev@vger.kernel.org
19737 F: drivers/net/vmxnet3/
19739 VOCORE VOCORE2 BOARD
19740 M: Harvey Hunt <harveyhuntnexus@gmail.com>
19741 L: linux-mips@vger.kernel.org
19743 F: arch/mips/boot/dts/ralink/vocore2.dts
19745 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19746 M: Liam Girdwood <lgirdwood@gmail.com>
19747 M: Mark Brown <broonie@kernel.org>
19748 L: linux-kernel@vger.kernel.org
19750 W: http://www.slimlogic.co.uk/?p=48
19751 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19752 F: Documentation/devicetree/bindings/regulator/
19753 F: Documentation/power/regulator/
19754 F: drivers/regulator/
19755 F: include/dt-bindings/regulator/
19756 F: include/linux/regulator/
19757 K: regulator_get_optional
19759 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
19760 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
19761 F: drivers/regulator/irq_helpers.c
19764 M: David Ahern <dsahern@kernel.org>
19765 L: netdev@vger.kernel.org
19767 F: Documentation/networking/vrf.rst
19768 F: drivers/net/vrf.c
19771 M: Petr Mladek <pmladek@suse.com>
19772 M: Steven Rostedt <rostedt@goodmis.org>
19773 M: Sergey Senozhatsky <senozhatsky@chromium.org>
19774 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19775 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
19777 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19778 F: Documentation/core-api/printk-formats.rst
19779 F: lib/test_printf.c
19780 F: lib/test_scanf.c
19783 VT1211 HARDWARE MONITOR DRIVER
19784 M: Juerg Haefliger <juergh@gmail.com>
19785 L: linux-hwmon@vger.kernel.org
19787 F: Documentation/hwmon/vt1211.rst
19788 F: drivers/hwmon/vt1211.c
19790 VT8231 HARDWARE MONITOR DRIVER
19791 M: Roger Lucas <vt8231@hiddenengine.co.uk>
19792 L: linux-hwmon@vger.kernel.org
19794 F: drivers/hwmon/vt8231.c
19796 VUB300 USB to SDIO/SD/MMC bridge chip
19797 L: linux-mmc@vger.kernel.org
19799 F: drivers/mmc/host/vub300.c
19801 W1 DALLAS'S 1-WIRE BUS
19802 M: Evgeniy Polyakov <zbr@ioremap.net>
19804 F: Documentation/devicetree/bindings/w1/
19805 F: Documentation/w1/
19807 F: include/linux/w1.h
19809 W83791D HARDWARE MONITORING DRIVER
19810 M: Marc Hulsman <m.hulsman@tudelft.nl>
19811 L: linux-hwmon@vger.kernel.org
19813 F: Documentation/hwmon/w83791d.rst
19814 F: drivers/hwmon/w83791d.c
19816 W83793 HARDWARE MONITORING DRIVER
19817 M: Rudolf Marek <r.marek@assembler.cz>
19818 L: linux-hwmon@vger.kernel.org
19820 F: Documentation/hwmon/w83793.rst
19821 F: drivers/hwmon/w83793.c
19823 W83795 HARDWARE MONITORING DRIVER
19824 M: Jean Delvare <jdelvare@suse.com>
19825 L: linux-hwmon@vger.kernel.org
19827 F: drivers/hwmon/w83795.c
19829 W83L51xD SD/MMC CARD INTERFACE DRIVER
19830 M: Pierre Ossman <pierre@ossman.eu>
19832 F: drivers/mmc/host/wbsd.*
19834 WACOM PROTOCOL 4 SERIAL TABLETS
19835 M: Julian Squires <julian@cipht.net>
19836 M: Hans de Goede <hdegoede@redhat.com>
19837 L: linux-input@vger.kernel.org
19839 F: drivers/input/tablet/wacom_serial4.c
19841 WATCHDOG DEVICE DRIVERS
19842 M: Wim Van Sebroeck <wim@linux-watchdog.org>
19843 M: Guenter Roeck <linux@roeck-us.net>
19844 L: linux-watchdog@vger.kernel.org
19846 W: http://www.linux-watchdog.org/
19847 T: git git://www.linux-watchdog.org/linux-watchdog.git
19848 F: Documentation/devicetree/bindings/watchdog/
19849 F: Documentation/watchdog/
19850 F: drivers/watchdog/
19851 F: include/linux/watchdog.h
19852 F: include/uapi/linux/watchdog.h
19854 WHISKEYCOVE PMIC GPIO DRIVER
19855 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19856 L: linux-gpio@vger.kernel.org
19858 F: drivers/gpio/gpio-wcove.c
19861 M: Dianlong Li <long17.cool@163.com>
19862 L: linux-rtc@vger.kernel.org
19864 F: drivers/rtc/rtc-sd3078.c
19867 M: David Rheinsberg <david.rheinsberg@gmail.com>
19868 L: linux-input@vger.kernel.org
19870 F: drivers/hid/hid-wiimote*
19872 WILOCITY WIL6210 WIRELESS DRIVER
19873 M: Maya Erez <merez@codeaurora.org>
19874 L: linux-wireless@vger.kernel.org
19875 L: wil6210@qti.qualcomm.com
19877 W: https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19878 F: drivers/net/wireless/ath/wil6210/
19881 M: David Härdeman <david@hardeman.nu>
19883 F: drivers/media/rc/winbond-cir.c
19885 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19886 M: William Breathitt Gray <vilhelm.gray@gmail.com>
19887 L: linux-watchdog@vger.kernel.org
19889 F: drivers/watchdog/ebc-c384_wdt.c
19891 WINSYSTEMS WS16C48 GPIO DRIVER
19892 M: William Breathitt Gray <vilhelm.gray@gmail.com>
19893 L: linux-gpio@vger.kernel.org
19895 F: drivers/gpio/gpio-ws16c48.c
19897 WIREGUARD SECURE NETWORK TUNNEL
19898 M: Jason A. Donenfeld <Jason@zx2c4.com>
19899 L: wireguard@lists.zx2c4.com
19900 L: netdev@vger.kernel.org
19902 F: drivers/net/wireguard/
19903 F: tools/testing/selftests/wireguard/
19905 WISTRON LAPTOP BUTTON DRIVER
19906 M: Miloslav Trmac <mitr@volny.cz>
19908 F: drivers/input/misc/wistron_btns.c
19910 WL3501 WIRELESS PCMCIA CARD DRIVER
19911 L: linux-wireless@vger.kernel.org
19913 F: drivers/net/wireless/wl3501*
19915 WOLFSON MICROELECTRONICS DRIVERS
19916 L: patches@opensource.cirrus.com
19918 W: https://github.com/CirrusLogic/linux-drivers/wiki
19919 T: git https://github.com/CirrusLogic/linux-drivers.git
19920 F: Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19921 F: Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19922 F: Documentation/devicetree/bindings/mfd/wm831x.txt
19923 F: Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19924 F: Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19925 F: Documentation/hwmon/wm83??.rst
19926 F: arch/arm/mach-s3c/mach-crag6410*
19927 F: drivers/clk/clk-wm83*.c
19928 F: drivers/gpio/gpio-*wm*.c
19929 F: drivers/gpio/gpio-arizona.c
19930 F: drivers/hwmon/wm83??-hwmon.c
19931 F: drivers/input/misc/wm831x-on.c
19932 F: drivers/input/touchscreen/wm831x-ts.c
19933 F: drivers/input/touchscreen/wm97*.c
19934 F: drivers/leds/leds-wm83*.c
19935 F: drivers/mfd/arizona*
19936 F: drivers/mfd/cs47l24*
19937 F: drivers/mfd/wm*.c
19938 F: drivers/power/supply/wm83*.c
19939 F: drivers/regulator/arizona*
19940 F: drivers/regulator/wm8*.c
19941 F: drivers/rtc/rtc-wm83*.c
19942 F: drivers/video/backlight/wm83*_bl.c
19943 F: drivers/watchdog/wm83*_wdt.c
19944 F: include/linux/mfd/arizona/
19945 F: include/linux/mfd/wm831x/
19946 F: include/linux/mfd/wm8350/
19947 F: include/linux/mfd/wm8400*
19948 F: include/linux/regulator/arizona*
19949 F: include/linux/wm97xx.h
19950 F: include/sound/wm????.h
19951 F: sound/soc/codecs/arizona*
19952 F: sound/soc/codecs/cs47l24*
19953 F: sound/soc/codecs/wm*
19956 M: Tejun Heo <tj@kernel.org>
19957 R: Lai Jiangshan <jiangshanlai@gmail.com>
19959 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19960 F: Documentation/core-api/workqueue.rst
19961 F: include/linux/workqueue.h
19962 F: kernel/workqueue.c
19965 M: Loic Poulain <loic.poulain@linaro.org>
19966 M: Sergey Ryazanov <ryazanov.s.a@gmail.com>
19967 R: Johannes Berg <johannes@sipsolutions.net>
19968 L: netdev@vger.kernel.org
19970 F: drivers/net/wwan/
19971 F: include/linux/wwan.h
19972 F: include/uapi/linux/wwan.h
19974 X-POWERS AXP288 PMIC DRIVERS
19975 M: Hans de Goede <hdegoede@redhat.com>
19977 F: drivers/acpi/pmic/intel_pmic_xpower.c
19980 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19981 M: Chen-Yu Tsai <wens@csie.org>
19982 L: linux-kernel@vger.kernel.org
19987 M: Martin Schiller <ms@dev.tdt.de>
19988 L: linux-x25@vger.kernel.org
19990 F: Documentation/networking/lapb-module.rst
19991 F: Documentation/networking/x25*
19992 F: drivers/net/wan/hdlc_x25.c
19993 F: drivers/net/wan/lapbether.c
19994 F: include/*/lapb.h
19995 F: include/net/x25*
19996 F: include/uapi/linux/x25.h
20000 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20001 M: Thomas Gleixner <tglx@linutronix.de>
20002 M: Ingo Molnar <mingo@redhat.com>
20003 M: Borislav Petkov <bp@alien8.de>
20005 R: "H. Peter Anvin" <hpa@zytor.com>
20006 L: linux-kernel@vger.kernel.org
20008 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20009 F: Documentation/devicetree/bindings/x86/
20010 F: Documentation/x86/
20014 M: Andy Lutomirski <luto@kernel.org>
20015 L: linux-kernel@vger.kernel.org
20017 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20020 X86 MCE INFRASTRUCTURE
20021 M: Tony Luck <tony.luck@intel.com>
20022 M: Borislav Petkov <bp@alien8.de>
20023 L: linux-edac@vger.kernel.org
20025 F: arch/x86/kernel/cpu/mce/*
20027 X86 MICROCODE UPDATE SUPPORT
20028 M: Borislav Petkov <bp@alien8.de>
20030 F: arch/x86/kernel/cpu/microcode/*
20033 M: Dave Hansen <dave.hansen@linux.intel.com>
20034 M: Andy Lutomirski <luto@kernel.org>
20035 M: Peter Zijlstra <peterz@infradead.org>
20036 L: linux-kernel@vger.kernel.org
20038 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20041 X86 PLATFORM DRIVERS
20042 M: Hans de Goede <hdegoede@redhat.com>
20043 M: Mark Gross <mgross@linux.intel.com>
20044 L: platform-driver-x86@vger.kernel.org
20046 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20047 F: drivers/platform/olpc/
20048 F: drivers/platform/x86/
20050 X86 PLATFORM DRIVERS - ARCH
20051 R: Darren Hart <dvhart@infradead.org>
20052 R: Andy Shevchenko <andy@infradead.org>
20053 L: platform-driver-x86@vger.kernel.org
20056 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20057 F: arch/x86/platform
20059 X86 PLATFORM UV HPE SUPERDOME FLEX
20060 M: Steve Wahl <steve.wahl@hpe.com>
20061 R: Mike Travis <mike.travis@hpe.com>
20062 R: Dimitri Sivanich <dimitri.sivanich@hpe.com>
20063 R: Russ Anderson <russ.anderson@hpe.com>
20065 F: arch/x86/include/asm/uv/
20066 F: arch/x86/kernel/apic/x2apic_uv_x.c
20067 F: arch/x86/platform/uv/
20070 M: Andy Lutomirski <luto@kernel.org>
20071 L: linux-kernel@vger.kernel.org
20073 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20074 F: arch/x86/entry/vdso/
20077 M: Matthew Wilcox <willy@infradead.org>
20078 L: linux-fsdevel@vger.kernel.org
20080 F: Documentation/core-api/xarray.rst
20081 F: include/linux/idr.h
20082 F: include/linux/xarray.h
20085 F: tools/testing/radix-tree
20088 M: Benjamin Valentin <benpicco@googlemail.com>
20090 F: drivers/media/rc/keymaps/rc-xbox-dvd.c
20091 F: drivers/media/rc/xbox_remote.c
20093 XC2028/3028 TUNER DRIVER
20094 M: Mauro Carvalho Chehab <mchehab@kernel.org>
20095 L: linux-media@vger.kernel.org
20097 W: https://linuxtv.org
20098 T: git git://linuxtv.org/media_tree.git
20099 F: drivers/media/tuners/tuner-xc2028.*
20101 XDP (eXpress Data Path)
20102 M: Alexei Starovoitov <ast@kernel.org>
20103 M: Daniel Borkmann <daniel@iogearbox.net>
20104 M: David S. Miller <davem@davemloft.net>
20105 M: Jakub Kicinski <kuba@kernel.org>
20106 M: Jesper Dangaard Brouer <hawk@kernel.org>
20107 M: John Fastabend <john.fastabend@gmail.com>
20108 L: netdev@vger.kernel.org
20109 L: bpf@vger.kernel.org
20111 F: include/net/xdp.h
20112 F: include/net/xdp_priv.h
20113 F: include/trace/events/xdp.h
20114 F: kernel/bpf/cpumap.c
20115 F: kernel/bpf/devmap.c
20117 F: samples/bpf/xdp*
20118 F: tools/testing/selftests/bpf/*xdp*
20119 F: tools/testing/selftests/bpf/*/*xdp*
20120 F: drivers/net/ethernet/*/*/*/*/*xdp*
20121 F: drivers/net/ethernet/*/*/*xdp*
20122 K: (?:\b|_)xdp(?:\b|_)
20124 XDP SOCKETS (AF_XDP)
20125 M: Björn Töpel <bjorn@kernel.org>
20126 M: Magnus Karlsson <magnus.karlsson@intel.com>
20127 R: Jonathan Lemon <jonathan.lemon@gmail.com>
20128 L: netdev@vger.kernel.org
20129 L: bpf@vger.kernel.org
20131 F: Documentation/networking/af_xdp.rst
20132 F: include/net/xdp_sock*
20133 F: include/net/xsk_buff_pool.h
20134 F: include/uapi/linux/if_xdp.h
20135 F: include/uapi/linux/xdp_diag.h
20136 F: include/net/netns/xdp.h
20138 F: samples/bpf/xdpsock*
20139 F: tools/lib/bpf/xsk*
20141 XEN BLOCK SUBSYSTEM
20142 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20143 M: Roger Pau Monné <roger.pau@citrix.com>
20144 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20146 F: drivers/block/xen*
20147 F: drivers/block/xen-blkback/*
20150 M: Stefano Stabellini <sstabellini@kernel.org>
20151 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20153 F: arch/arm/include/asm/xen/
20156 XEN HYPERVISOR ARM64
20157 M: Stefano Stabellini <sstabellini@kernel.org>
20158 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20160 F: arch/arm64/include/asm/xen/
20163 XEN HYPERVISOR INTERFACE
20164 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
20165 M: Juergen Gross <jgross@suse.com>
20166 R: Stefano Stabellini <sstabellini@kernel.org>
20167 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20169 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20170 F: Documentation/ABI/stable/sysfs-hypervisor-xen
20171 F: Documentation/ABI/testing/sysfs-hypervisor-xen
20172 F: arch/x86/include/asm/pvclock-abi.h
20173 F: arch/x86/include/asm/xen/
20174 F: arch/x86/platform/pvh/
20176 F: drivers/*/xen-*front.c
20178 F: include/uapi/xen/
20181 XEN NETWORK BACKEND DRIVER
20182 M: Wei Liu <wei.liu@kernel.org>
20183 M: Paul Durrant <paul@xen.org>
20184 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20185 L: netdev@vger.kernel.org
20187 F: drivers/net/xen-netback/*
20190 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20191 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20193 F: arch/x86/pci/*xen*
20194 F: drivers/pci/*xen*
20197 M: Juergen Gross <jgross@suse.com>
20198 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20199 L: linux-scsi@vger.kernel.org
20201 F: drivers/scsi/xen-scsifront.c
20202 F: drivers/xen/xen-scsiback.c
20203 F: include/xen/interface/io/vscsiif.h
20205 XEN SOUND FRONTEND DRIVER
20206 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20207 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20208 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20212 XEN SWIOTLB SUBSYSTEM
20213 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
20214 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20215 L: iommu@lists.linux-foundation.org
20217 F: arch/x86/xen/*swiotlb*
20218 F: drivers/xen/*swiotlb*
20221 C: irc://irc.oftc.net/xfs
20222 M: Darrick J. Wong <djwong@kernel.org>
20223 M: linux-xfs@vger.kernel.org
20224 L: linux-xfs@vger.kernel.org
20227 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20228 F: Documentation/ABI/testing/sysfs-fs-xfs
20229 F: Documentation/admin-guide/xfs.rst
20230 F: Documentation/filesystems/xfs-delayed-logging-design.rst
20231 F: Documentation/filesystems/xfs-self-describing-metadata.rst
20233 F: include/uapi/linux/dqblk_xfs.h
20234 F: include/uapi/linux/fsmap.h
20236 XILINX AXI ETHERNET DRIVER
20237 M: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20239 F: drivers/net/ethernet/xilinx/xilinx_axienet*
20242 M: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20243 R: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20244 L: linux-can@vger.kernel.org
20246 F: Documentation/devicetree/bindings/net/can/xilinx_can.txt
20247 F: drivers/net/can/xilinx_can.c
20250 M: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20251 R: Srinivas Neeli <srinivas.neeli@xilinx.com>
20252 R: Michal Simek <michal.simek@xilinx.com>
20254 F: Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20255 F: Documentation/devicetree/bindings/gpio/gpio-zynq.txt
20256 F: drivers/gpio/gpio-xilinx.c
20257 F: drivers/gpio/gpio-zynq.c
20259 XILINX SD-FEC IP CORES
20260 M: Derek Kiernan <derek.kiernan@xilinx.com>
20261 M: Dragan Cvetic <dragan.cvetic@xilinx.com>
20263 F: Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20264 F: Documentation/misc-devices/xilinx_sdfec.rst
20265 F: drivers/misc/Kconfig
20266 F: drivers/misc/Makefile
20267 F: drivers/misc/xilinx_sdfec.c
20268 F: include/uapi/misc/xilinx_sdfec.h
20270 XILINX UARTLITE SERIAL DRIVER
20271 M: Peter Korsgaard <jacmet@sunsite.dk>
20272 L: linux-serial@vger.kernel.org
20274 F: drivers/tty/serial/uartlite.c
20276 XILINX VIDEO IP CORES
20277 M: Hyun Kwon <hyun.kwon@xilinx.com>
20278 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20279 L: linux-media@vger.kernel.org
20281 T: git git://linuxtv.org/media_tree.git
20282 F: Documentation/devicetree/bindings/media/xilinx/
20283 F: drivers/media/platform/xilinx/
20284 F: include/uapi/linux/xilinx-v4l2-controls.h
20286 XILINX ZYNQMP DPDMA DRIVER
20287 M: Hyun Kwon <hyun.kwon@xilinx.com>
20288 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20289 L: dmaengine@vger.kernel.org
20291 F: Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20292 F: drivers/dma/xilinx/xilinx_dpdma.c
20293 F: include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20295 XILINX ZYNQMP PSGTR PHY DRIVER
20296 M: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20297 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20298 L: linux-kernel@vger.kernel.org
20300 T: git https://github.com/Xilinx/linux-xlnx.git
20301 F: Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20302 F: drivers/phy/xilinx/phy-zynqmp.c
20305 M: Eli Billauer <eli.billauer@gmail.com>
20306 L: linux-kernel@vger.kernel.org
20308 F: drivers/char/xillybus/
20311 M: George Cherian <gcherian@marvell.com>
20312 L: linux-i2c@vger.kernel.org
20314 W: http://www.marvell.com
20315 F: Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20316 F: drivers/i2c/busses/i2c-xlp9xx.c
20318 XRA1403 GPIO EXPANDER
20319 M: Nandor Han <nandor.han@ge.com>
20320 M: Semi Malinen <semi.malinen@ge.com>
20321 L: linux-gpio@vger.kernel.org
20323 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20324 F: drivers/gpio/gpio-xra1403.c
20326 XTENSA XTFPGA PLATFORM SUPPORT
20327 M: Max Filippov <jcmvbkbc@gmail.com>
20328 L: linux-xtensa@linux-xtensa.org
20330 F: drivers/spi/spi-xtensa-xtfpga.c
20331 F: sound/soc/xtensa/xtfpga-i2s.c
20333 YAM DRIVER FOR AX.25
20334 M: Jean-Paul Roubelat <jpr@f6fbb.org>
20335 L: linux-hams@vger.kernel.org
20337 F: drivers/net/hamradio/yam*
20338 F: include/linux/yam.h
20340 YAMA SECURITY MODULE
20341 M: Kees Cook <keescook@chromium.org>
20343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20344 F: Documentation/admin-guide/LSM/Yama.rst
20347 YEALINK PHONE DRIVER
20348 M: Henk Vergonet <Henk.Vergonet@gmail.com>
20349 L: usbb2k-api-dev@nongnu.org
20351 F: Documentation/input/devices/yealink.rst
20352 F: drivers/input/misc/yealink.*
20354 Z8530 DRIVER FOR AX.25
20355 M: Joerg Reuter <jreuter@yaina.de>
20356 L: linux-hams@vger.kernel.org
20358 W: http://yaina.de/jreuter/
20359 W: http://www.qsl.net/dl1bke/
20360 F: Documentation/networking/device_drivers/hamradio/z8530drv.rst
20361 F: drivers/net/hamradio/*scc.c
20362 F: drivers/net/hamradio/z8530.h
20364 ZBUD COMPRESSED PAGE ALLOCATOR
20365 M: Seth Jennings <sjenning@redhat.com>
20366 M: Dan Streetman <ddstreet@ieee.org>
20367 L: linux-mm@kvack.org
20371 ZD1211RW WIRELESS DRIVER
20372 M: Daniel Drake <dsd@gentoo.org>
20373 M: Ulrich Kunitz <kune@deine-taler.de>
20374 L: linux-wireless@vger.kernel.org
20375 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
20377 W: http://zd1211.ath.cx/wiki/DriverRewrite
20378 F: drivers/net/wireless/zydas/zd1211rw/
20380 ZD1301 MEDIA DRIVER
20381 M: Antti Palosaari <crope@iki.fi>
20382 L: linux-media@vger.kernel.org
20384 W: https://linuxtv.org/
20385 W: http://palosaari.fi/linux/
20386 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20387 F: drivers/media/usb/dvb-usb-v2/zd1301*
20389 ZD1301_DEMOD MEDIA DRIVER
20390 M: Antti Palosaari <crope@iki.fi>
20391 L: linux-media@vger.kernel.org
20393 W: https://linuxtv.org/
20394 W: http://palosaari.fi/linux/
20395 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20396 F: drivers/media/dvb-frontends/zd1301_demod*
20398 ZHAOXIN PROCESSOR SUPPORT
20399 M: Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20400 L: linux-kernel@vger.kernel.org
20402 F: arch/x86/kernel/cpu/zhaoxin.c
20405 M: Damien Le Moal <damien.lemoal@wdc.com>
20406 M: Naohiro Aota <naohiro.aota@wdc.com>
20407 R: Johannes Thumshirn <jth@kernel.org>
20408 L: linux-fsdevel@vger.kernel.org
20410 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20411 F: Documentation/filesystems/zonefs.rst
20414 ZPOOL COMPRESSED PAGE STORAGE API
20415 M: Dan Streetman <ddstreet@ieee.org>
20416 L: linux-mm@kvack.org
20418 F: include/linux/zpool.h
20421 ZR36067 VIDEO FOR LINUX DRIVER
20422 M: Corentin Labbe <clabbe@baylibre.com>
20423 L: mjpeg-users@lists.sourceforge.net
20424 L: linux-media@vger.kernel.org
20426 W: http://mjpeg.sourceforge.net/driver-zoran/
20427 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20428 F: Documentation/driver-api/media/drivers/zoran.rst
20429 F: drivers/staging/media/zoran/
20431 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20432 M: Minchan Kim <minchan@kernel.org>
20433 M: Nitin Gupta <ngupta@vflare.org>
20434 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20435 L: linux-kernel@vger.kernel.org
20437 F: Documentation/admin-guide/blockdev/zram.rst
20438 F: drivers/block/zram/
20440 ZS DECSTATION Z85C30 SERIAL DRIVER
20441 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
20443 F: drivers/tty/serial/zs.*
20445 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20446 M: Minchan Kim <minchan@kernel.org>
20447 M: Nitin Gupta <ngupta@vflare.org>
20448 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20449 L: linux-mm@kvack.org
20451 F: Documentation/vm/zsmalloc.rst
20452 F: include/linux/zsmalloc.h
20455 ZSWAP COMPRESSED SWAP CACHING
20456 M: Seth Jennings <sjenning@redhat.com>
20457 M: Dan Streetman <ddstreet@ieee.org>
20458 M: Vitaly Wool <vitaly.wool@konsulko.com>
20459 L: linux-mm@kvack.org
20464 M: Linus Torvalds <torvalds@linux-foundation.org>
20465 L: linux-kernel@vger.kernel.org
20466 S: Buried alive in reporters
20467 Q: http://patchwork.kernel.org/project/LKML/list/
20468 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git