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 L: linux-bluetooth@vger.kernel.org
175 L: linux-wpan@vger.kernel.org
177 F: Documentation/networking/6lowpan.rst
178 F: include/net/6lowpan.h
181 6PACK NETWORK DRIVER FOR AX.25
182 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
183 L: linux-hams@vger.kernel.org
185 F: drivers/net/hamradio/6pack.c
187 802.11 (including CFG80211/NL80211)
188 M: Johannes Berg <johannes@sipsolutions.net>
189 L: linux-wireless@vger.kernel.org
191 W: https://wireless.wiki.kernel.org/
192 Q: https://patchwork.kernel.org/project/linux-wireless/list/
193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-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
203 F: include/uapi/linux/wireless.h
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M: Heiner Kallweit <hkallweit1@gmail.com>
208 M: nic_swsd@realtek.com
209 L: netdev@vger.kernel.org
211 F: drivers/net/ethernet/realtek/r8169*
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L: linux-serial@vger.kernel.org
217 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F: drivers/tty/serial/8250*
219 F: include/linux/serial_8250.h
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L: netdev@vger.kernel.org
224 F: drivers/net/ethernet/8390/
227 M: Eric Van Hensbergen <ericvh@gmail.com>
228 M: Latchesar Ionkov <lucho@ionkov.net>
229 M: Dominique Martinet <asmadeus@codewreck.org>
230 R: Christian Schoenebeck <linux_oss@crudebyte.com>
231 L: v9fs-developer@lists.sourceforge.net
233 W: http://swik.net/v9fs
234 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
235 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T: git git://github.com/martinetd/linux.git
237 F: Documentation/filesystems/9p.rst
240 F: include/trace/events/9p.h
241 F: include/uapi/linux/virtio_9p.h
245 M: Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
247 F: drivers/soc/fujitsu/a64fx-diag.c
250 M: Antti Palosaari <crope@iki.fi>
251 L: linux-media@vger.kernel.org
253 W: https://linuxtv.org
254 W: http://palosaari.fi/linux/
255 Q: http://patchwork.linuxtv.org/project/linux-media/list/
256 T: git git://linuxtv.org/anttip/media_tree.git
257 F: drivers/media/dvb-frontends/a8293*
259 AACRAID SCSI RAID DRIVER
260 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
261 L: linux-scsi@vger.kernel.org
263 W: http://www.adaptec.com/
264 F: Documentation/scsi/aacraid.rst
265 F: drivers/scsi/aacraid/
267 AB8500 BATTERY AND CHARGER DRIVERS
268 M: Linus Walleij <linus.walleij@linaro.org>
269 F: Documentation/devicetree/bindings/power/supply/*ab8500*
270 F: drivers/power/supply/*ab8500*
273 L: linux-api@vger.kernel.org
274 F: include/linux/syscalls.h
277 X: arch/*/include/uapi/
279 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280 M: Hans de Goede <hdegoede@redhat.com>
281 L: linux-hwmon@vger.kernel.org
283 F: drivers/hwmon/abituguru.c
285 ABIT UGURU 3 HARDWARE MONITOR DRIVER
286 M: Alistair John Strachan <alistair@devzero.co.uk>
287 L: linux-hwmon@vger.kernel.org
289 F: drivers/hwmon/abituguru3.c
291 ACCES 104-DIO-48E GPIO DRIVER
292 M: William Breathitt Gray <william.gray@linaro.org>
293 L: linux-gpio@vger.kernel.org
295 F: drivers/gpio/gpio-104-dio-48e.c
297 ACCES 104-IDI-48 GPIO DRIVER
298 M: William Breathitt Gray <william.gray@linaro.org>
299 L: linux-gpio@vger.kernel.org
301 F: drivers/gpio/gpio-104-idi-48.c
303 ACCES 104-IDIO-16 GPIO DRIVER
304 M: William Breathitt Gray <william.gray@linaro.org>
305 L: linux-gpio@vger.kernel.org
307 F: drivers/gpio/gpio-104-idio-16.c
309 ACCES 104-QUAD-8 DRIVER
310 M: William Breathitt Gray <william.gray@linaro.org>
311 L: linux-iio@vger.kernel.org
313 F: drivers/counter/104-quad-8.c
315 ACCES IDIO-16 GPIO LIBRARY
316 M: William Breathitt Gray <william.gray@linaro.org>
317 L: linux-gpio@vger.kernel.org
319 F: drivers/gpio/gpio-idio-16.c
320 F: drivers/gpio/gpio-idio-16.h
322 ACCES PCI-IDIO-16 GPIO DRIVER
323 M: William Breathitt Gray <william.gray@linaro.org>
324 L: linux-gpio@vger.kernel.org
326 F: drivers/gpio/gpio-pci-idio-16.c
328 ACCES PCIe-IDIO-24 GPIO DRIVER
329 M: William Breathitt Gray <william.gray@linaro.org>
330 L: linux-gpio@vger.kernel.org
332 F: drivers/gpio/gpio-pcie-idio-24.c
335 M: Jes Sorensen <jes@trained-monkey.org>
336 L: linux-acenic@sunsite.dk
338 F: drivers/net/ethernet/alteon/acenic*
340 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
341 M: Peter Kaestle <peter@piie.net>
342 L: platform-driver-x86@vger.kernel.org
344 W: http://piie.net/?section=acerhdf
345 F: drivers/platform/x86/acerhdf.c
347 ACER WMI LAPTOP EXTRAS
348 M: "Lee, Chun-Yi" <jlee@suse.com>
349 L: platform-driver-x86@vger.kernel.org
351 F: drivers/platform/x86/acer-wmi.c
354 M: "Rafael J. Wysocki" <rafael@kernel.org>
355 R: Len Brown <lenb@kernel.org>
356 L: linux-acpi@vger.kernel.org
358 Q: https://patchwork.kernel.org/project/linux-acpi/list/
359 B: https://bugzilla.kernel.org
360 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
361 F: Documentation/ABI/testing/configfs-acpi
362 F: Documentation/ABI/testing/sysfs-bus-acpi
363 F: Documentation/firmware-guide/acpi/
365 F: drivers/pci/*/*acpi*
366 F: drivers/pci/*acpi*
367 F: drivers/pnp/pnpacpi/
369 F: include/linux/acpi.h
370 F: include/linux/fwnode.h
374 M: "Rafael J. Wysocki" <rafael@kernel.org>
375 R: Len Brown <lenb@kernel.org>
376 R: James Morse <james.morse@arm.com>
377 R: Tony Luck <tony.luck@intel.com>
378 R: Borislav Petkov <bp@alien8.de>
379 L: linux-acpi@vger.kernel.org
380 F: drivers/acpi/apei/
382 ACPI COMPONENT ARCHITECTURE (ACPICA)
383 M: Robert Moore <robert.moore@intel.com>
384 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
385 L: linux-acpi@vger.kernel.org
386 L: acpica-devel@lists.linuxfoundation.org
388 W: https://acpica.org/
389 W: https://github.com/acpica/acpica/
390 Q: https://patchwork.kernel.org/project/linux-acpi/list/
391 B: https://bugzilla.kernel.org
392 B: https://bugs.acpica.org
393 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
394 F: drivers/acpi/acpica/
398 ACPI FOR ARM64 (ACPI/arm64)
399 M: Lorenzo Pieralisi <lpieralisi@kernel.org>
400 M: Hanjun Guo <guohanjun@huawei.com>
401 M: Sudeep Holla <sudeep.holla@arm.com>
402 L: linux-acpi@vger.kernel.org
403 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
405 F: drivers/acpi/arm64
407 ACPI SERIAL MULTI INSTANTIATE DRIVER
408 M: Hans de Goede <hdegoede@redhat.com>
409 L: platform-driver-x86@vger.kernel.org
411 F: drivers/platform/x86/serial-multi-instantiate.c
413 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
414 M: Sudeep Holla <sudeep.holla@arm.com>
415 L: linux-acpi@vger.kernel.org
417 F: drivers/mailbox/pcc.c
420 M: "Rafael J. Wysocki" <rafael@kernel.org>
421 M: Len Brown <lenb@kernel.org>
422 R: Andy Shevchenko <andy@kernel.org>
423 R: Mika Westerberg <mika.westerberg@linux.intel.com>
424 L: linux-acpi@vger.kernel.org
426 Q: https://patchwork.kernel.org/project/linux-acpi/list/
427 B: https://bugzilla.kernel.org
428 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
429 F: drivers/acpi/pmic/
432 M: Rafael J. Wysocki <rafael@kernel.org>
433 R: Zhang Rui <rui.zhang@intel.com>
434 L: linux-acpi@vger.kernel.org
436 B: https://bugzilla.kernel.org
437 F: drivers/acpi/*thermal*
440 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
441 L: linux-acpi@vger.kernel.org
442 L: iommu@lists.linux.dev
444 F: drivers/acpi/viot.c
445 F: include/linux/acpi_viot.h
448 L: platform-driver-x86@vger.kernel.org
450 F: drivers/platform/x86/wmi.c
451 F: include/uapi/linux/wmi.h
453 ACRN HYPERVISOR SERVICE MODULE
454 M: Fei Li <fei1.li@intel.com>
455 L: acrn-dev@lists.projectacrn.org (subscribers-only)
457 W: https://projectacrn.org
458 F: Documentation/virt/acrn/
459 F: drivers/virt/acrn/
460 F: include/uapi/linux/acrn.h
462 AD1889 ALSA SOUND DRIVER
463 L: linux-parisc@vger.kernel.org
465 W: https://parisc.wiki.kernel.org/index.php/AD1889
466 F: sound/pci/ad1889.*
468 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
469 M: Mugilraj Dhavachelvan <dmugil2000@gmail.com>
470 L: linux-iio@vger.kernel.org
472 F: drivers/iio/potentiometer/ad5110.c
474 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
475 M: Michael Hennerich <michael.hennerich@analog.com>
477 W: http://wiki.analog.com/AD5254
478 W: https://ez.analog.com/linux-software-drivers
479 F: drivers/misc/ad525x_dpot.c
481 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
482 M: Michael Hennerich <michael.hennerich@analog.com>
484 W: http://wiki.analog.com/AD5398
485 W: https://ez.analog.com/linux-software-drivers
486 F: drivers/regulator/ad5398.c
488 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
489 M: Michael Hennerich <michael.hennerich@analog.com>
491 W: http://wiki.analog.com/AD7142
492 W: https://ez.analog.com/linux-software-drivers
493 F: drivers/input/misc/ad714x.c
495 AD7877 TOUCHSCREEN DRIVER
496 M: Michael Hennerich <michael.hennerich@analog.com>
498 W: http://wiki.analog.com/AD7877
499 W: https://ez.analog.com/linux-software-drivers
500 F: drivers/input/touchscreen/ad7877.c
502 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
503 M: Michael Hennerich <michael.hennerich@analog.com>
505 W: http://wiki.analog.com/AD7879
506 W: https://ez.analog.com/linux-software-drivers
507 F: drivers/input/touchscreen/ad7879.c
509 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
510 M: Jiri Kosina <jikos@kernel.org>
513 ADF7242 IEEE 802.15.4 RADIO DRIVER
514 M: Michael Hennerich <michael.hennerich@analog.com>
515 L: linux-wpan@vger.kernel.org
517 W: https://wiki.analog.com/ADF7242
518 W: https://ez.analog.com/linux-software-drivers
519 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
520 F: drivers/net/ieee802154/adf7242.c
522 ADM1025 HARDWARE MONITOR DRIVER
523 M: Jean Delvare <jdelvare@suse.com>
524 L: linux-hwmon@vger.kernel.org
526 F: Documentation/hwmon/adm1025.rst
527 F: drivers/hwmon/adm1025.c
529 ADM1029 HARDWARE MONITOR DRIVER
530 M: Corentin Labbe <clabbe.montjoie@gmail.com>
531 L: linux-hwmon@vger.kernel.org
533 F: drivers/hwmon/adm1029.c
535 ADM8211 WIRELESS DRIVER
536 L: linux-wireless@vger.kernel.org
538 W: https://wireless.wiki.kernel.org/
539 F: drivers/net/wireless/admtek/adm8211.*
541 ADP1653 FLASH CONTROLLER DRIVER
542 M: Sakari Ailus <sakari.ailus@iki.fi>
543 L: linux-media@vger.kernel.org
545 F: drivers/media/i2c/adp1653.c
546 F: include/media/i2c/adp1653.h
548 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
549 M: Michael Hennerich <michael.hennerich@analog.com>
551 W: http://wiki.analog.com/ADP5520
552 W: https://ez.analog.com/linux-software-drivers
553 F: drivers/gpio/gpio-adp5520.c
554 F: drivers/input/keyboard/adp5520-keys.c
555 F: drivers/leds/leds-adp5520.c
556 F: drivers/mfd/adp5520.c
557 F: drivers/video/backlight/adp5520_bl.c
559 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
560 M: Michael Hennerich <michael.hennerich@analog.com>
562 W: http://wiki.analog.com/ADP5588
563 W: https://ez.analog.com/linux-software-drivers
564 F: Documentation/devicetree/bindings/input/adi,adp5588.yaml
565 F: drivers/input/keyboard/adp5588-keys.c
567 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
568 M: Michael Hennerich <michael.hennerich@analog.com>
570 W: http://wiki.analog.com/ADP8860
571 W: https://ez.analog.com/linux-software-drivers
572 F: drivers/video/backlight/adp8860_bl.c
575 M: Colin Leroy <colin@colino.net>
577 F: drivers/macintosh/therm_adt746x.c
579 ADT7475 HARDWARE MONITOR DRIVER
580 M: Jean Delvare <jdelvare@suse.com>
581 L: linux-hwmon@vger.kernel.org
583 F: Documentation/hwmon/adt7475.rst
584 F: drivers/hwmon/adt7475.c
587 M: Matthew Wilcox <willy@infradead.org>
588 M: Hannes Reinecke <hare@suse.com>
589 L: linux-scsi@vger.kernel.org
591 F: Documentation/scsi/advansys.rst
592 F: drivers/scsi/advansys.c
594 ADVANTECH SWBTN DRIVER
595 M: Andrea Ho <Andrea.Ho@advantech.com.tw>
596 L: platform-driver-x86@vger.kernel.org
598 F: drivers/platform/x86/adv_swbutton.c
600 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
601 M: Lucas Stankus <lucas.p.stankus@gmail.com>
603 F: Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
604 F: drivers/iio/accel/adxl313*
606 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
607 M: Michael Hennerich <michael.hennerich@analog.com>
609 W: http://wiki.analog.com/ADXL345
610 W: https://ez.analog.com/linux-software-drivers
611 F: Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
612 F: drivers/input/misc/adxl34x.c
614 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
615 M: Puranjay Mohan <puranjay12@gmail.com>
616 L: linux-iio@vger.kernel.org
618 F: Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
619 F: drivers/iio/accel/adxl355.h
620 F: drivers/iio/accel/adxl355_core.c
621 F: drivers/iio/accel/adxl355_i2c.c
622 F: drivers/iio/accel/adxl355_spi.c
624 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
625 M: Cosmin Tanislav <cosmin.tanislav@analog.com>
626 L: linux-iio@vger.kernel.org
628 W: https://ez.analog.com/linux-software-drivers
629 F: Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
630 F: drivers/iio/accel/adxl367*
632 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
633 M: Michael Hennerich <michael.hennerich@analog.com>
635 W: https://ez.analog.com/linux-software-drivers
636 F: Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
637 F: drivers/iio/accel/adxl372.c
638 F: drivers/iio/accel/adxl372_i2c.c
639 F: drivers/iio/accel/adxl372_spi.c
642 M: Antti Palosaari <crope@iki.fi>
643 L: linux-media@vger.kernel.org
645 W: https://linuxtv.org
646 W: http://palosaari.fi/linux/
647 Q: http://patchwork.linuxtv.org/project/linux-media/list/
648 T: git git://linuxtv.org/anttip/media_tree.git
649 F: drivers/media/dvb-frontends/af9013*
652 M: Antti Palosaari <crope@iki.fi>
653 L: linux-media@vger.kernel.org
655 W: https://linuxtv.org
656 W: http://palosaari.fi/linux/
657 Q: http://patchwork.linuxtv.org/project/linux-media/list/
658 T: git git://linuxtv.org/anttip/media_tree.git
659 F: drivers/media/dvb-frontends/af9033*
662 M: David Sterba <dsterba@suse.com>
663 L: linux-fsdevel@vger.kernel.org
665 F: Documentation/filesystems/affs.rst
669 M: David Howells <dhowells@redhat.com>
670 M: Marc Dionne <marc.dionne@auristor.com>
671 L: linux-afs@lists.infradead.org
673 W: https://www.infradead.org/~dhowells/kafs/
674 F: Documentation/filesystems/afs.rst
676 F: include/trace/events/afs.h
679 M: David Airlie <airlied@redhat.com>
680 L: dri-devel@lists.freedesktop.org
682 T: git git://anongit.freedesktop.org/drm/drm
684 F: include/linux/agp*
685 F: include/uapi/linux/agp*
688 M: "Juergen E. Fischer" <fischer@norbit.de>
689 L: linux-scsi@vger.kernel.org
691 F: drivers/scsi/aha152x*
692 F: drivers/scsi/pcmcia/aha152x*
694 AIC7XXX / AIC79XX SCSI DRIVER
695 M: Hannes Reinecke <hare@suse.com>
696 L: linux-scsi@vger.kernel.org
698 F: drivers/scsi/aic7xxx/
700 AIMSLAB FM RADIO RECEIVER DRIVER
701 M: Hans Verkuil <hverkuil@xs4all.nl>
702 L: linux-media@vger.kernel.org
704 W: https://linuxtv.org
705 T: git git://linuxtv.org/media_tree.git
706 F: drivers/media/radio/radio-aimslab*
709 M: Benjamin LaHaise <bcrl@kvack.org>
710 L: linux-aio@kvack.org
713 F: include/linux/*aio*.h
716 M: Antti Palosaari <crope@iki.fi>
717 L: linux-media@vger.kernel.org
719 W: https://linuxtv.org
720 W: http://palosaari.fi/linux/
721 Q: http://patchwork.linuxtv.org/project/linux-media/list/
722 T: git git://linuxtv.org/anttip/media_tree.git
723 F: drivers/media/usb/airspy/
725 ALACRITECH GIGABIT ETHERNET DRIVER
726 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
728 F: drivers/net/ethernet/alacritech/*
730 ALCATEL SPEEDTOUCH USB DRIVER
731 M: Duncan Sands <duncan.sands@free.fr>
732 L: linux-usb@vger.kernel.org
734 W: http://www.linux-usb.org/SpeedTouch/
735 F: drivers/usb/atm/speedtch.c
736 F: drivers/usb/atm/usbatm.c
738 ALCHEMY AU1XX0 MMC DRIVER
739 M: Manuel Lauss <manuel.lauss@gmail.com>
741 F: drivers/mmc/host/au1xmmc.c
744 M: Rudolf Marek <r.marek@assembler.cz>
745 L: linux-i2c@vger.kernel.org
747 F: Documentation/i2c/busses/i2c-ali1563.rst
748 F: drivers/i2c/busses/i2c-ali1563.c
750 ALIBABA ELASTIC RDMA DRIVER
751 M: Cheng Xu <chengyou@linux.alibaba.com>
752 M: Kai Shen <kaishen@linux.alibaba.com>
753 L: linux-rdma@vger.kernel.org
755 F: drivers/infiniband/hw/erdma
756 F: include/uapi/rdma/erdma-abi.h
759 M: Shuai Xue <xueshuai@linux.alibaba.com>
761 F: Documentation/admin-guide/perf/alibaba_pmu.rst
762 F: drivers/perf/alibaba_uncore_drw_pmu.c
765 L: Dell.Client.Kernel@dell.com
767 F: drivers/platform/x86/dell/alienware-wmi.c
769 ALLEGRO DVT VIDEO IP CORE DRIVER
770 M: Michael Tretter <m.tretter@pengutronix.de>
771 R: Pengutronix Kernel Team <kernel@pengutronix.de>
772 L: linux-media@vger.kernel.org
774 F: Documentation/devicetree/bindings/media/allegro,al5e.yaml
775 F: drivers/media/platform/allegro-dvt/
777 ALLWINNER A10 CSI DRIVER
778 M: Maxime Ripard <mripard@kernel.org>
779 L: linux-media@vger.kernel.org
781 T: git git://linuxtv.org/media_tree.git
782 F: Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
783 F: drivers/media/platform/sunxi/sun4i-csi/
785 ALLWINNER A31 CSI DRIVER
786 M: Yong Deng <yong.deng@magewell.com>
787 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
788 L: linux-media@vger.kernel.org
790 T: git git://linuxtv.org/media_tree.git
791 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
792 F: drivers/media/platform/sunxi/sun6i-csi/
794 ALLWINNER A31 ISP DRIVER
795 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
796 L: linux-media@vger.kernel.org
798 T: git git://linuxtv.org/media_tree.git
799 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml
800 F: drivers/staging/media/sunxi/sun6i-isp/
801 F: drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h
803 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
804 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
805 L: linux-media@vger.kernel.org
807 T: git git://linuxtv.org/media_tree.git
808 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
809 F: drivers/media/platform/sunxi/sun6i-mipi-csi2/
811 ALLWINNER CPUFREQ DRIVER
812 M: Yangtao Li <tiny.windzz@gmail.com>
813 L: linux-pm@vger.kernel.org
815 F: Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
816 F: drivers/cpufreq/sun50i-cpufreq-nvmem.c
818 ALLWINNER CRYPTO DRIVERS
819 M: Corentin Labbe <clabbe.montjoie@gmail.com>
820 L: linux-crypto@vger.kernel.org
822 F: drivers/crypto/allwinner/
824 ALLWINNER HARDWARE SPINLOCK SUPPORT
825 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
827 F: Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
828 F: drivers/hwspinlock/sun6i_hwspinlock.c
830 ALLWINNER THERMAL DRIVER
831 M: Vasily Khoruzhick <anarsoul@gmail.com>
832 M: Yangtao Li <tiny.windzz@gmail.com>
833 L: linux-pm@vger.kernel.org
835 F: Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
836 F: drivers/thermal/sun8i_thermal.c
839 M: Maxime Ripard <mripard@kernel.org>
840 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
841 L: linux-media@vger.kernel.org
843 F: drivers/staging/media/sunxi/cedrus/
845 ALLWINNER DMIC DRIVERS
846 M: Ban Tao <fengzheng923@gmail.com>
847 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
849 F: Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
850 F: sound/soc/sunxi/sun50i-dmic.c
853 M: Richard Henderson <richard.henderson@linaro.org>
854 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
855 M: Matt Turner <mattst88@gmail.com>
856 L: linux-alpha@vger.kernel.org
860 ALPS PS/2 TOUCHPAD DRIVER
861 R: Pali Rohár <pali@kernel.org>
862 F: drivers/input/mouse/alps.*
864 ALTERA I2C CONTROLLER DRIVER
865 M: Thor Thayer <thor.thayer@linux.intel.com>
867 F: Documentation/devicetree/bindings/i2c/i2c-altera.txt
868 F: drivers/i2c/busses/i2c-altera.c
870 ALTERA MAILBOX DRIVER
871 M: Mun Yew Tham <mun.yew.tham@intel.com>
873 F: drivers/mailbox/mailbox-altera.c
875 ALTERA MSGDMA IP CORE DRIVER
876 M: Olivier Dautricourt <olivierdautricourt@gmail.com>
877 R: Stefan Roese <sr@denx.de>
878 L: dmaengine@vger.kernel.org
880 F: Documentation/devicetree/bindings/dma/altr,msgdma.yaml
881 F: drivers/dma/altera-msgdma.c
884 M: Mun Yew Tham <mun.yew.tham@intel.com>
885 L: linux-gpio@vger.kernel.org
887 F: drivers/gpio/gpio-altera.c
889 ALTERA SYSTEM MANAGER DRIVER
890 M: Thor Thayer <thor.thayer@linux.intel.com>
892 F: drivers/mfd/altera-sysmgr.c
893 F: include/linux/mfd/altera-sysmgr.h
895 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
896 M: Thor Thayer <thor.thayer@linux.intel.com>
898 F: drivers/gpio/gpio-altera-a10sr.c
899 F: drivers/mfd/altera-a10sr.c
900 F: drivers/reset/reset-a10sr.c
901 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
902 F: include/linux/mfd/altera-a10sr.h
904 ALTERA TRIPLE SPEED ETHERNET DRIVER
905 M: Joyce Ooi <joyce.ooi@intel.com>
906 L: netdev@vger.kernel.org
908 F: drivers/net/ethernet/altera/
911 M: Maxime Chevallier <maxime.chevallier@bootlin.com>
912 L: netdev@vger.kernel.org
914 F: drivers/net/pcs/pcs-altera-tse.c
915 F: include/linux/pcs-altera-tse.h
917 ALTERA UART/JTAG UART SERIAL DRIVERS
918 M: Tobias Klauser <tklauser@distanz.ch>
919 L: linux-serial@vger.kernel.org
921 F: drivers/tty/serial/altera_jtaguart.c
922 F: drivers/tty/serial/altera_uart.c
923 F: include/linux/altera_jtaguart.h
924 F: include/linux/altera_uart.h
926 AMAZON ANNAPURNA LABS FIC DRIVER
927 M: Talel Shenhar <talel@amazon.com>
929 F: Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
930 F: drivers/irqchip/irq-al-fic.c
932 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
933 M: Talel Shenhar <talel@amazon.com>
934 M: Talel Shenhar <talelshenhar@gmail.com>
936 F: Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
937 F: drivers/edac/al_mc_edac.c
939 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
940 M: Talel Shenhar <talel@amazon.com>
942 F: Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
943 F: drivers/thermal/thermal_mmio.c
945 AMAZON ETHERNET DRIVERS
946 M: Shay Agroskin <shayagr@amazon.com>
947 M: Arthur Kiyanovski <akiyano@amazon.com>
948 R: David Arinzon <darinzon@amazon.com>
949 R: Noam Dagan <ndagan@amazon.com>
950 R: Saeed Bishara <saeedb@amazon.com>
951 L: netdev@vger.kernel.org
953 F: Documentation/networking/device_drivers/ethernet/amazon/ena.rst
954 F: drivers/net/ethernet/amazon/
956 AMAZON RDMA EFA DRIVER
957 M: Gal Pressman <galpress@amazon.com>
958 R: Yossi Leybovich <sleybo@amazon.com>
959 L: linux-rdma@vger.kernel.org
961 Q: https://patchwork.kernel.org/project/linux-rdma/list/
962 F: drivers/infiniband/hw/efa/
963 F: include/uapi/rdma/efa-abi.h
965 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
966 M: Tom Lendacky <thomas.lendacky@amd.com>
967 M: John Allen <john.allen@amd.com>
968 L: linux-crypto@vger.kernel.org
970 F: drivers/crypto/ccp/
971 F: include/linux/ccp.h
973 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
974 M: Brijesh Singh <brijesh.singh@amd.com>
975 M: Tom Lendacky <thomas.lendacky@amd.com>
976 L: linux-crypto@vger.kernel.org
978 F: drivers/crypto/ccp/sev*
979 F: include/uapi/linux/psp-sev.h
982 M: Harry Wentland <harry.wentland@amd.com>
983 M: Leo Li <sunpeng.li@amd.com>
984 M: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
985 L: amd-gfx@lists.freedesktop.org
987 T: git https://gitlab.freedesktop.org/agd5f/linux.git
988 F: drivers/gpu/drm/amd/display/
990 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
991 M: Huang Rui <ray.huang@amd.com>
992 L: linux-hwmon@vger.kernel.org
994 F: Documentation/hwmon/fam15h_power.rst
995 F: drivers/hwmon/fam15h_power.c
998 M: Enrico Weigelt, metux IT consult <info@metux.net>
999 L: linux-gpio@vger.kernel.org
1001 F: drivers/gpio/gpio-amd-fch.c
1002 F: include/linux/platform_data/gpio/gpio-amd-fch.h
1004 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
1005 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
1007 F: drivers/usb/gadget/udc/amd5536udc.*
1009 AMD GEODE PROCESSOR/CHIPSET SUPPORT
1010 M: Andres Salomon <dilinger@queued.net>
1011 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
1013 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
1014 F: arch/x86/include/asm/geode.h
1015 F: drivers/char/hw_random/geode-rng.c
1016 F: drivers/crypto/geode*
1017 F: drivers/video/fbdev/geode/
1020 M: Joerg Roedel <joro@8bytes.org>
1021 R: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1022 L: iommu@lists.linux.dev
1024 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
1025 F: drivers/iommu/amd/
1026 F: include/linux/amd-iommu.h
1029 M: Felix Kuehling <Felix.Kuehling@amd.com>
1030 L: amd-gfx@lists.freedesktop.org
1032 T: git https://gitlab.freedesktop.org/agd5f/linux.git
1033 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
1034 F: drivers/gpu/drm/amd/amdkfd/
1035 F: drivers/gpu/drm/amd/include/cik_structs.h
1036 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
1037 F: drivers/gpu/drm/amd/include/v9_structs.h
1038 F: drivers/gpu/drm/amd/include/vi_structs.h
1039 F: include/uapi/linux/kfd_ioctl.h
1040 F: include/uapi/linux/kfd_sysfs.h
1043 M: Sanjay R Mehta <sanju.mehta@amd.com>
1045 F: drivers/spi/spi-amd.c
1048 M: Elie Morisse <syniurge@gmail.com>
1049 M: Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1050 L: linux-i2c@vger.kernel.org
1052 F: drivers/i2c/busses/i2c-amd-mp2*
1055 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1056 L: platform-driver-x86@vger.kernel.org
1058 F: drivers/platform/x86/amd/pmc.c
1061 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1062 L: platform-driver-x86@vger.kernel.org
1064 F: Documentation/ABI/testing/sysfs-amd-pmf
1065 F: drivers/platform/x86/amd/pmf/
1068 M: Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1069 R: Carlos Bilbao <carlos.bilbao@amd.com>
1070 L: platform-driver-x86@vger.kernel.org
1072 F: Documentation/x86/amd_hsmp.rst
1073 F: arch/x86/include/asm/amd_hsmp.h
1074 F: arch/x86/include/uapi/asm/amd_hsmp.h
1075 F: drivers/platform/x86/amd/hsmp.c
1077 AMD POWERPLAY AND SWSMU
1078 M: Evan Quan <evan.quan@amd.com>
1079 L: amd-gfx@lists.freedesktop.org
1081 T: git https://gitlab.freedesktop.org/agd5f/linux.git
1082 F: drivers/gpu/drm/amd/pm/
1085 M: Huang Rui <ray.huang@amd.com>
1086 L: linux-pm@vger.kernel.org
1088 F: Documentation/admin-guide/pm/amd-pstate.rst
1089 F: drivers/cpufreq/amd-pstate*
1090 F: include/linux/amd-pstate.h
1091 F: tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1094 M: Sanjay R Mehta <sanju.mehta@amd.com>
1095 L: dmaengine@vger.kernel.org
1097 F: drivers/dma/ptdma/
1099 AMD SEATTLE DEVICE TREE SUPPORT
1100 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1101 M: Tom Lendacky <thomas.lendacky@amd.com>
1103 F: arch/arm64/boot/dts/amd/
1106 M: "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1107 L: netdev@vger.kernel.org
1109 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1110 F: drivers/net/ethernet/amd/xgbe/
1112 AMD SENSOR FUSION HUB DRIVER
1113 M: Basavaraj Natikar <basavaraj.natikar@amd.com>
1114 L: linux-input@vger.kernel.org
1116 F: Documentation/hid/amd-sfh*
1117 F: drivers/hid/amd-sfh-hid/
1119 AMLOGIC DDR PMU DRIVER
1120 M: Jiucheng Xu <jiucheng.xu@amlogic.com>
1121 L: linux-amlogic@lists.infradead.org
1123 W: http://www.amlogic.com
1124 F: Documentation/admin-guide/perf/meson-ddr-pmu.rst
1125 F: Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1126 F: drivers/perf/amlogic/
1127 F: include/soc/amlogic/
1129 AMPHION VPU CODEC V4L2 DRIVER
1130 M: Ming Qian <ming.qian@nxp.com>
1131 M: Shijie Qin <shijie.qin@nxp.com>
1132 M: Zhou Peng <eagle.zhou@nxp.com>
1133 L: linux-media@vger.kernel.org
1135 F: Documentation/devicetree/bindings/media/amphion,vpu.yaml
1136 F: drivers/media/platform/amphion/
1139 M: Christian Eggers <ceggers@arri.de>
1140 L: linux-iio@vger.kernel.org
1142 F: Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1143 F: drivers/iio/light/as73211.c
1145 AMT (Automatic Multicast Tunneling)
1146 M: Taehee Yoo <ap420073@gmail.com>
1147 L: netdev@vger.kernel.org
1149 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1150 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1151 F: drivers/net/amt.c
1153 ANALOG DEVICES INC AD4130 DRIVER
1154 M: Cosmin Tanislav <cosmin.tanislav@analog.com>
1155 L: linux-iio@vger.kernel.org
1157 W: http://ez.analog.com/community/linux-device-drivers
1158 F: Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1159 F: Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1160 F: drivers/iio/adc/ad4130.c
1162 ANALOG DEVICES INC AD7192 DRIVER
1163 M: Alexandru Tachici <alexandru.tachici@analog.com>
1164 L: linux-iio@vger.kernel.org
1166 W: https://ez.analog.com/linux-software-drivers
1167 F: Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1168 F: drivers/iio/adc/ad7192.c
1170 ANALOG DEVICES INC AD7292 DRIVER
1171 M: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1172 L: linux-iio@vger.kernel.org
1174 W: https://ez.analog.com/linux-software-drivers
1175 F: Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1176 F: drivers/iio/adc/ad7292.c
1178 ANALOG DEVICES INC AD3552R DRIVER
1179 M: Nuno Sá <nuno.sa@analog.com>
1180 L: linux-iio@vger.kernel.org
1182 W: https://ez.analog.com/linux-software-drivers
1183 F: Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1184 F: drivers/iio/dac/ad3552r.c
1186 ANALOG DEVICES INC AD7293 DRIVER
1187 M: Antoniu Miclaus <antoniu.miclaus@analog.com>
1188 L: linux-iio@vger.kernel.org
1190 W: https://ez.analog.com/linux-software-drivers
1191 F: Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1192 F: drivers/iio/dac/ad7293.c
1194 ANALOG DEVICES INC AD7768-1 DRIVER
1195 M: Michael Hennerich <Michael.Hennerich@analog.com>
1196 L: linux-iio@vger.kernel.org
1198 W: https://ez.analog.com/linux-software-drivers
1199 F: Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1200 F: drivers/iio/adc/ad7768-1.c
1202 ANALOG DEVICES INC AD7780 DRIVER
1203 M: Michael Hennerich <Michael.Hennerich@analog.com>
1204 M: Renato Lui Geh <renatogeh@gmail.com>
1205 L: linux-iio@vger.kernel.org
1207 W: https://ez.analog.com/linux-software-drivers
1208 F: Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1209 F: drivers/iio/adc/ad7780.c
1211 ANALOG DEVICES INC AD74115 DRIVER
1212 M: Cosmin Tanislav <cosmin.tanislav@analog.com>
1213 L: linux-iio@vger.kernel.org
1215 W: http://ez.analog.com/community/linux-device-drivers
1216 F: Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1217 F: drivers/iio/addac/ad74115.c
1219 ANALOG DEVICES INC AD74413R DRIVER
1220 M: Cosmin Tanislav <cosmin.tanislav@analog.com>
1221 L: linux-iio@vger.kernel.org
1223 W: https://ez.analog.com/linux-software-drivers
1224 F: Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1225 F: drivers/iio/addac/ad74413r.c
1226 F: include/dt-bindings/iio/addac/adi,ad74413r.h
1228 ANALOG DEVICES INC AD9389B DRIVER
1229 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1230 L: linux-media@vger.kernel.org
1232 F: drivers/media/i2c/ad9389b*
1234 ANALOG DEVICES INC ADA4250 DRIVER
1235 M: Antoniu Miclaus <antoniu.miclaus@analog.com>
1236 L: linux-iio@vger.kernel.org
1238 W: https://ez.analog.com/linux-software-drivers
1239 F: Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1240 F: drivers/iio/amplifiers/ada4250.c
1242 ANALOG DEVICES INC ADF4377 DRIVER
1243 M: Antoniu Miclaus <antoniu.miclaus@analog.com>
1244 L: linux-iio@vger.kernel.org
1246 W: https://ez.analog.com/linux-software-drivers
1247 F: Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1248 F: drivers/iio/frequency/adf4377.c
1250 ANALOG DEVICES INC ADGS1408 DRIVER
1251 M: Mircea Caprioru <mircea.caprioru@analog.com>
1253 F: Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1254 F: drivers/mux/adgs1408.c
1256 ANALOG DEVICES INC ADIN DRIVER
1257 M: Michael Hennerich <michael.hennerich@analog.com>
1258 L: netdev@vger.kernel.org
1260 W: https://ez.analog.com/linux-software-drivers
1261 F: Documentation/devicetree/bindings/net/adi,adin.yaml
1262 F: drivers/net/phy/adin.c
1264 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1265 M: Nuno Sa <nuno.sa@analog.com>
1266 L: linux-iio@vger.kernel.org
1268 F: drivers/iio/imu/adis.c
1269 F: drivers/iio/imu/adis_buffer.c
1270 F: drivers/iio/imu/adis_trigger.c
1271 F: include/linux/iio/imu/adis.h
1273 ANALOG DEVICES INC ADIS16460 DRIVER
1274 M: Dragos Bogdan <dragos.bogdan@analog.com>
1275 L: linux-iio@vger.kernel.org
1277 W: https://ez.analog.com/linux-software-drivers
1278 F: Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1279 F: drivers/iio/imu/adis16460.c
1281 ANALOG DEVICES INC ADIS16475 DRIVER
1282 M: Nuno Sa <nuno.sa@analog.com>
1283 L: linux-iio@vger.kernel.org
1284 W: https://ez.analog.com/linux-software-drivers
1286 F: drivers/iio/imu/adis16475.c
1287 F: Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1289 ANALOG DEVICES INC ADM1177 DRIVER
1290 M: Michael Hennerich <Michael.Hennerich@analog.com>
1291 L: linux-hwmon@vger.kernel.org
1293 W: https://ez.analog.com/linux-software-drivers
1294 F: Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1295 F: drivers/hwmon/adm1177.c
1297 ANALOG DEVICES INC ADMV1013 DRIVER
1298 M: Antoniu Miclaus <antoniu.miclaus@analog.com>
1299 L: linux-iio@vger.kernel.org
1301 W: https://ez.analog.com/linux-software-drivers
1302 F: Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1303 F: drivers/iio/frequency/admv1013.c
1305 ANALOG DEVICES INC ADMV8818 DRIVER
1306 M: Antoniu Miclaus <antoniu.miclaus@analog.com>
1307 L: linux-iio@vger.kernel.org
1309 W: https://ez.analog.com/linux-software-drivers
1310 F: Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1311 F: drivers/iio/filter/admv8818.c
1313 ANALOG DEVICES INC ADMV1014 DRIVER
1314 M: Antoniu Miclaus <antoniu.miclaus@analog.com>
1315 L: linux-iio@vger.kernel.org
1317 W: https://ez.analog.com/linux-software-drivers
1318 F: Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1319 F: drivers/iio/frequency/admv1014.c
1321 ANALOG DEVICES INC ADP5061 DRIVER
1322 M: Michael Hennerich <Michael.Hennerich@analog.com>
1323 L: linux-pm@vger.kernel.org
1325 W: https://ez.analog.com/linux-software-drivers
1326 F: drivers/power/supply/adp5061.c
1328 ANALOG DEVICES INC ADRF6780 DRIVER
1329 M: Antoniu Miclaus <antoniu.miclaus@analog.com>
1330 L: linux-iio@vger.kernel.org
1332 W: https://ez.analog.com/linux-software-drivers
1333 F: Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1334 F: drivers/iio/frequency/adrf6780.c
1336 ANALOG DEVICES INC ADV7180 DRIVER
1337 M: Lars-Peter Clausen <lars@metafoo.de>
1338 L: linux-media@vger.kernel.org
1340 W: https://ez.analog.com/linux-software-drivers
1341 F: drivers/media/i2c/adv7180.c
1342 F: Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1344 ANALOG DEVICES INC ADV748X DRIVER
1345 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
1346 L: linux-media@vger.kernel.org
1348 F: Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1349 F: drivers/media/i2c/adv748x/*
1351 ANALOG DEVICES INC ADV7511 DRIVER
1352 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1353 L: linux-media@vger.kernel.org
1355 F: drivers/media/i2c/adv7511*
1357 ANALOG DEVICES INC ADV7604 DRIVER
1358 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1359 L: linux-media@vger.kernel.org
1361 F: drivers/media/i2c/adv7604*
1362 F: Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1364 ANALOG DEVICES INC ADV7842 DRIVER
1365 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1366 L: linux-media@vger.kernel.org
1368 F: drivers/media/i2c/adv7842*
1370 ANALOG DEVICES INC ADXRS290 DRIVER
1371 M: Nishant Malpani <nish.malpani25@gmail.com>
1372 L: linux-iio@vger.kernel.org
1374 F: drivers/iio/gyro/adxrs290.c
1375 F: Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1377 ANALOG DEVICES INC ASOC CODEC DRIVERS
1378 M: Lars-Peter Clausen <lars@metafoo.de>
1379 M: Nuno Sá <nuno.sa@analog.com>
1380 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1382 W: http://wiki.analog.com/
1383 W: https://ez.analog.com/linux-software-drivers
1384 F: sound/soc/codecs/ad1*
1385 F: sound/soc/codecs/ad7*
1386 F: sound/soc/codecs/adau*
1387 F: sound/soc/codecs/adav*
1388 F: sound/soc/codecs/sigmadsp.*
1389 F: sound/soc/codecs/ssm*
1391 ANALOG DEVICES INC DMA DRIVERS
1392 M: Lars-Peter Clausen <lars@metafoo.de>
1394 W: https://ez.analog.com/linux-software-drivers
1395 F: drivers/dma/dma-axi-dmac.c
1397 ANALOG DEVICES INC IIO DRIVERS
1398 M: Lars-Peter Clausen <lars@metafoo.de>
1399 M: Michael Hennerich <Michael.Hennerich@analog.com>
1401 W: http://wiki.analog.com/
1402 W: https://ez.analog.com/linux-software-drivers
1403 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1404 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1405 F: Documentation/devicetree/bindings/iio/*/adi,*
1406 F: Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1407 F: Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1408 F: drivers/iio/*/ad*
1409 F: drivers/iio/adc/ltc249*
1410 F: drivers/iio/amplifiers/hmc425a.c
1411 F: drivers/staging/iio/*/ad*
1412 X: drivers/iio/*/adjd*
1414 ANALOG DEVICES INC MAX31760 DRIVER
1415 M: Ibrahim Tilki <Ibrahim.Tilki@analog.com>
1417 W: http://wiki.analog.com/
1418 W: https://ez.analog.com/linux-software-drivers
1419 F: Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1420 F: Documentation/hwmon/max31760.rst
1421 F: drivers/hwmon/max31760.c
1423 ANALOGBITS PLL LIBRARIES
1424 M: Paul Walmsley <paul.walmsley@sifive.com>
1426 F: drivers/clk/analogbits/*
1427 F: include/linux/clk/analogbits*
1429 ANDROID CONFIG FRAGMENTS
1430 M: Rob Herring <robh@kernel.org>
1432 F: kernel/configs/android*
1435 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1436 M: Arve Hjønnevåg <arve@android.com>
1437 M: Todd Kjos <tkjos@android.com>
1438 M: Martijn Coenen <maco@android.com>
1439 M: Joel Fernandes <joel@joelfernandes.org>
1440 M: Christian Brauner <christian@brauner.io>
1441 M: Carlos Llamas <cmllamas@google.com>
1442 M: Suren Baghdasaryan <surenb@google.com>
1443 L: linux-kernel@vger.kernel.org
1445 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1448 ANDROID GOLDFISH PIC DRIVER
1449 M: Miodrag Dinic <miodrag.dinic@mips.com>
1451 F: Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1452 F: drivers/irqchip/irq-goldfish-pic.c
1454 ANDROID GOLDFISH RTC DRIVER
1455 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
1457 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1458 F: drivers/rtc/rtc-goldfish.c
1460 AOA (Apple Onboard Audio) ALSA DRIVER
1461 M: Johannes Berg <johannes@sipsolutions.net>
1462 L: linuxppc-dev@lists.ozlabs.org
1463 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1467 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1468 M: William Breathitt Gray <william.gray@linaro.org>
1469 L: linux-iio@vger.kernel.org
1471 F: drivers/iio/addac/stx104.c
1474 M: Jiri Kosina <jikos@kernel.org>
1476 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1477 F: arch/x86/kernel/apm_32.c
1478 F: drivers/char/apm-emulation.c
1479 F: include/linux/apm_bios.h
1480 F: include/uapi/linux/apm_bios.h
1482 APPARMOR SECURITY MODULE
1483 M: John Johansen <john.johansen@canonical.com>
1484 M: John Johansen <john@apparmor.net>
1485 L: apparmor@lists.ubuntu.com (moderated for non-subscribers)
1488 B: https://gitlab.com/apparmor/apparmor-kernel
1489 C: irc://irc.oftc.net/apparmor
1490 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1491 T: https://gitlab.com/apparmor/apparmor-kernel.git
1492 F: Documentation/admin-guide/LSM/apparmor.rst
1493 F: security/apparmor/
1495 APPLE BCM5974 MULTITOUCH DRIVER
1496 M: Henrik Rydberg <rydberg@bitmath.org>
1497 L: linux-input@vger.kernel.org
1499 F: drivers/input/mouse/bcm5974.c
1501 APPLE PCIE CONTROLLER DRIVER
1502 M: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1503 M: Marc Zyngier <maz@kernel.org>
1504 L: linux-pci@vger.kernel.org
1506 F: drivers/pci/controller/pcie-apple.c
1509 M: Henrik Rydberg <rydberg@bitmath.org>
1510 L: linux-hwmon@vger.kernel.org
1512 F: drivers/hwmon/applesmc.c
1514 APPLETALK NETWORK LAYER
1515 L: netdev@vger.kernel.org
1517 F: drivers/net/appletalk/
1518 F: include/linux/atalk.h
1519 F: include/uapi/linux/atalk.h
1522 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1523 M: Khuong Dinh <khuong@os.amperecomputing.com>
1525 F: arch/arm64/boot/dts/apm/
1527 APPLIED MICRO (APM) X-GENE SOC EDAC
1528 M: Khuong Dinh <khuong@os.amperecomputing.com>
1530 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1531 F: drivers/edac/xgene_edac.c
1533 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1534 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1535 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1537 F: drivers/net/ethernet/apm/xgene-v2/
1539 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1540 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1541 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1542 M: Quan Nguyen <quan@os.amperecomputing.com>
1544 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1545 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1546 F: drivers/net/ethernet/apm/xgene/
1547 F: drivers/net/mdio/mdio-xgene.c
1549 APPLIED MICRO (APM) X-GENE SOC PMU
1550 M: Khuong Dinh <khuong@os.amperecomputing.com>
1552 F: Documentation/admin-guide/perf/xgene-pmu.rst
1553 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1554 F: drivers/perf/xgene_pmu.c
1556 APTINA CAMERA SENSOR PLL
1557 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1558 L: linux-media@vger.kernel.org
1560 F: drivers/media/i2c/aptina-pll.*
1562 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1563 M: Aleksa Savic <savicaleksa83@gmail.com>
1564 M: Jack Doan <me@jackdoan.com>
1565 L: linux-hwmon@vger.kernel.org
1567 F: Documentation/hwmon/aquacomputer_d5next.rst
1568 F: drivers/hwmon/aquacomputer_d5next.c
1570 AQUANTIA ETHERNET DRIVER (atlantic)
1571 M: Igor Russkikh <irusskikh@marvell.com>
1572 L: netdev@vger.kernel.org
1574 W: https://www.marvell.com/
1575 Q: https://patchwork.kernel.org/project/netdevbpf/list/
1576 F: Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1577 F: drivers/net/ethernet/aquantia/atlantic/
1579 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1580 M: Egor Pomozov <epomozov@marvell.com>
1581 L: netdev@vger.kernel.org
1583 W: http://www.aquantia.com
1584 F: drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1586 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1587 M: Krzysztof Hałasa <khalasa@piap.pl>
1588 L: linux-media@vger.kernel.org
1590 F: Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1591 F: drivers/media/i2c/ar0521.c
1593 ARASAN NAND CONTROLLER DRIVER
1594 M: Miquel Raynal <miquel.raynal@bootlin.com>
1595 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1596 L: linux-mtd@lists.infradead.org
1598 F: Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1599 F: drivers/mtd/nand/raw/arasan-nand-controller.c
1601 ARC FRAMEBUFFER DRIVER
1602 M: Jaya Kumar <jayalk@intworks.biz>
1604 F: drivers/video/fbdev/arcfb.c
1605 F: drivers/video/fbdev/core/fb_defio.c
1608 M: Alexey Brodkin <abrodkin@synopsys.com>
1610 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
1611 F: drivers/gpu/drm/tiny/arcpgu.c
1613 ARCNET NETWORK LAYER
1614 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
1615 L: netdev@vger.kernel.org
1617 F: drivers/net/arcnet/
1618 F: include/uapi/linux/if_arcnet.h
1620 ARM ARCHITECTED TIMER DRIVER
1621 M: Mark Rutland <mark.rutland@arm.com>
1622 M: Marc Zyngier <maz@kernel.org>
1623 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1625 F: arch/arm/include/asm/arch_timer.h
1626 F: arch/arm64/include/asm/arch_timer.h
1627 F: drivers/clocksource/arm_arch_timer.c
1629 ARM HDLCD DRM DRIVER
1630 M: Liviu Dudau <liviu.dudau@arm.com>
1632 F: Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1633 F: drivers/gpu/drm/arm/hdlcd_*
1635 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1636 M: Linus Walleij <linus.walleij@linaro.org>
1637 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 F: Documentation/devicetree/bindings/arm/arm,integrator.yaml
1640 F: Documentation/devicetree/bindings/arm/arm,realview.yaml
1641 F: Documentation/devicetree/bindings/arm/arm,versatile.yaml
1642 F: Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1643 F: Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1644 F: Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1645 F: Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1646 F: Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1647 F: Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1648 F: arch/arm/boot/dts/arm-realview-*
1649 F: arch/arm/boot/dts/integrator*
1650 F: arch/arm/boot/dts/versatile*
1651 F: arch/arm/mach-versatile/
1652 F: drivers/bus/arm-integrator-lm.c
1653 F: drivers/clk/versatile/
1654 F: drivers/i2c/busses/i2c-versatile.c
1655 F: drivers/irqchip/irq-versatile-fpga.c
1656 F: drivers/mtd/maps/physmap-versatile.*
1657 F: drivers/power/reset/arm-versatile-reboot.c
1658 F: drivers/soc/versatile/
1660 ARM KOMEDA DRM-KMS DRIVER
1661 M: James (Qian) Wang <james.qian.wang@arm.com>
1662 M: Liviu Dudau <liviu.dudau@arm.com>
1663 M: Mihail Atanassov <mihail.atanassov@arm.com>
1664 L: Mali DP Maintainers <malidp@foss.arm.com>
1666 T: git git://anongit.freedesktop.org/drm/drm-misc
1667 F: Documentation/devicetree/bindings/display/arm,komeda.yaml
1668 F: Documentation/gpu/komeda-kms.rst
1669 F: drivers/gpu/drm/arm/display/include/
1670 F: drivers/gpu/drm/arm/display/komeda/
1672 ARM MALI PANFROST DRM DRIVER
1673 M: Rob Herring <robh@kernel.org>
1674 M: Tomeu Vizoso <tomeu.vizoso@collabora.com>
1675 R: Steven Price <steven.price@arm.com>
1676 R: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1677 L: dri-devel@lists.freedesktop.org
1679 T: git git://anongit.freedesktop.org/drm/drm-misc
1680 F: drivers/gpu/drm/panfrost/
1681 F: include/uapi/drm/panfrost_drm.h
1683 ARM MALI-DP DRM DRIVER
1684 M: Liviu Dudau <liviu.dudau@arm.com>
1685 M: Brian Starkey <brian.starkey@arm.com>
1686 L: Mali DP Maintainers <malidp@foss.arm.com>
1688 T: git git://anongit.freedesktop.org/drm/drm-misc
1689 F: Documentation/devicetree/bindings/display/arm,malidp.yaml
1690 F: Documentation/gpu/afbc.rst
1691 F: drivers/gpu/drm/arm/
1693 ARM MFM AND FLOPPY DRIVERS
1694 M: Ian Molton <spyro@f2s.com>
1696 F: arch/arm/include/asm/floppy.h
1697 F: arch/arm/mach-rpc/floppydma.S
1699 ARM PMU PROFILING AND DEBUGGING
1700 M: Will Deacon <will@kernel.org>
1701 M: Mark Rutland <mark.rutland@arm.com>
1702 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 F: Documentation/devicetree/bindings/arm/pmu.yaml
1705 F: Documentation/devicetree/bindings/perf/
1706 F: arch/arm*/include/asm/hw_breakpoint.h
1707 F: arch/arm*/include/asm/perf_event.h
1708 F: arch/arm*/kernel/hw_breakpoint.c
1709 F: arch/arm*/kernel/perf_*
1711 F: include/linux/perf/arm_pmu.h
1714 M: Russell King <linux@armlinux.org.uk>
1715 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717 W: http://www.armlinux.org.uk/
1718 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1720 X: arch/arm/boot/dts/
1722 ARM PRIMECELL AACI PL041 DRIVER
1723 M: Russell King <linux@armlinux.org.uk>
1727 ARM PRIMECELL BUS SUPPORT
1728 M: Russell King <linux@armlinux.org.uk>
1731 F: include/linux/amba/bus.h
1733 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1734 M: Miquel Raynal <miquel.raynal@bootlin.com>
1735 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1736 L: linux-mtd@lists.infradead.org
1738 F: Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1739 F: drivers/mtd/nand/raw/pl35x-nand-controller.c
1741 ARM PRIMECELL PL35X SMC DRIVER
1742 M: Miquel Raynal <miquel.raynal@bootlin.com>
1743 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1744 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1746 F: Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1747 F: drivers/memory/pl353-smc.c
1749 ARM PRIMECELL CLCD PL110 DRIVER
1750 M: Russell King <linux@armlinux.org.uk>
1752 F: drivers/video/fbdev/amba-clcd.*
1754 ARM PRIMECELL KMI PL050 DRIVER
1755 M: Russell King <linux@armlinux.org.uk>
1757 F: drivers/input/serio/ambakmi.*
1758 F: include/linux/amba/kmi.h
1760 ARM PRIMECELL MMCI PL180/1 DRIVER
1761 M: Russell King <linux@armlinux.org.uk>
1763 F: drivers/mmc/host/mmci.*
1764 F: include/linux/amba/mmci.h
1766 ARM PRIMECELL SSP PL022 SPI DRIVER
1767 M: Linus Walleij <linus.walleij@linaro.org>
1768 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1770 F: Documentation/devicetree/bindings/spi/spi-pl022.yaml
1771 F: drivers/spi/spi-pl022.c
1773 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1774 M: Russell King <linux@armlinux.org.uk>
1776 F: drivers/tty/serial/amba-pl01*.c
1777 F: include/linux/amba/serial.h
1779 ARM PRIMECELL VIC PL190/PL192 DRIVER
1780 M: Linus Walleij <linus.walleij@linaro.org>
1781 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1783 F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1784 F: drivers/irqchip/irq-vic.c
1786 ARM SMC WATCHDOG DRIVER
1787 M: Julius Werner <jwerner@chromium.org>
1788 R: Evan Benn <evanbenn@chromium.org>
1790 F: Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1791 F: drivers/watchdog/arm_smc_wdt.c
1794 M: Will Deacon <will@kernel.org>
1795 R: Robin Murphy <robin.murphy@arm.com>
1796 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 F: Documentation/devicetree/bindings/iommu/arm,smmu*
1799 F: drivers/iommu/arm/
1800 F: drivers/iommu/io-pgtable-arm*
1802 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1803 M: Arnd Bergmann <arnd@arndb.de>
1804 M: Olof Johansson <olof@lixom.net>
1806 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1808 C: irc://irc.libera.chat/armlinux
1809 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1810 F: arch/arm/boot/dts/Makefile
1811 F: arch/arm64/boot/dts/Makefile
1813 ARM SUB-ARCHITECTURES
1814 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816 C: irc://irc.libera.chat/armlinux
1817 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1821 ARM/ACTIONS SEMI ARCHITECTURE
1822 M: Andreas Färber <afaerber@suse.de>
1823 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1824 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 L: linux-actions@lists.infradead.org (moderated for non-subscribers)
1827 F: Documentation/devicetree/bindings/arm/actions.yaml
1828 F: Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1829 F: Documentation/devicetree/bindings/dma/owl-dma.yaml
1830 F: Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1831 F: Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1832 F: Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1833 F: Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1834 F: Documentation/devicetree/bindings/pinctrl/actions,*
1835 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1836 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1837 F: arch/arm/boot/dts/owl-*
1838 F: arch/arm/mach-actions/
1839 F: arch/arm64/boot/dts/actions/
1840 F: drivers/clk/actions/
1841 F: drivers/clocksource/timer-owl*
1842 F: drivers/dma/owl-dma.c
1843 F: drivers/i2c/busses/i2c-owl.c
1844 F: drivers/irqchip/irq-owl-sirq.c
1845 F: drivers/mmc/host/owl-mmc.c
1846 F: drivers/net/ethernet/actions/
1847 F: drivers/pinctrl/actions/*
1848 F: drivers/soc/actions/
1849 F: include/dt-bindings/power/owl-*
1850 F: include/dt-bindings/reset/actions,*
1851 F: include/linux/soc/actions/
1854 ARM/Allwinner SoC Clock Support
1855 M: Emilio López <emilio@elopez.com.ar>
1857 F: drivers/clk/sunxi/
1859 ARM/Allwinner sunXi SoC support
1860 M: Chen-Yu Tsai <wens@csie.org>
1861 M: Jernej Skrabec <jernej.skrabec@gmail.com>
1862 M: Samuel Holland <samuel@sholland.org>
1863 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1865 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1866 L: linux-sunxi@lists.linux.dev
1867 F: arch/arm/mach-sunxi/
1868 F: arch/arm64/boot/dts/allwinner/
1869 F: drivers/clk/sunxi-ng/
1870 F: drivers/pinctrl/sunxi/
1871 F: drivers/soc/sunxi/
1876 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1877 M: Neil Armstrong <neil.armstrong@linaro.org>
1878 M: Jerome Brunet <jbrunet@baylibre.com>
1879 L: linux-amlogic@lists.infradead.org
1881 F: Documentation/devicetree/bindings/clock/amlogic*
1882 F: drivers/clk/meson/
1883 F: include/dt-bindings/clock/gxbb*
1884 F: include/dt-bindings/clock/meson*
1886 ARM/Amlogic Meson SoC Crypto Drivers
1887 M: Corentin Labbe <clabbe@baylibre.com>
1888 L: linux-crypto@vger.kernel.org
1889 L: linux-amlogic@lists.infradead.org
1891 F: Documentation/devicetree/bindings/crypto/amlogic*
1892 F: drivers/crypto/amlogic/
1894 ARM/Amlogic Meson SoC Sound Drivers
1895 M: Jerome Brunet <jbrunet@baylibre.com>
1896 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1898 F: Documentation/devicetree/bindings/sound/amlogic*
1901 ARM/Amlogic Meson SoC support
1902 M: Neil Armstrong <neil.armstrong@linaro.org>
1903 M: Kevin Hilman <khilman@baylibre.com>
1904 R: Jerome Brunet <jbrunet@baylibre.com>
1905 R: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1906 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1907 L: linux-amlogic@lists.infradead.org
1909 W: http://linux-meson.com/
1910 F: arch/arm/boot/dts/meson*
1911 F: arch/arm/mach-meson/
1912 F: arch/arm64/boot/dts/amlogic/
1913 F: drivers/mmc/host/meson*
1914 F: drivers/pinctrl/meson/
1915 F: drivers/rtc/rtc-meson*
1916 F: drivers/soc/amlogic/
1919 ARM/Annapurna Labs ALPINE ARCHITECTURE
1920 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1921 M: Antoine Tenart <atenart@kernel.org>
1922 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1924 F: arch/arm/boot/dts/alpine*
1925 F: arch/arm/mach-alpine/
1926 F: arch/arm64/boot/dts/amazon/
1927 F: drivers/*/*alpine*
1929 ARM/APPLE MACHINE SUPPORT
1930 M: Hector Martin <marcan@marcan.st>
1931 M: Sven Peter <sven@svenpeter.dev>
1932 R: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1933 L: asahi@lists.linux.dev
1934 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1936 W: https://asahilinux.org
1937 B: https://github.com/AsahiLinux/linux/issues
1938 C: irc://irc.oftc.net/asahi-dev
1939 T: git https://github.com/AsahiLinux/linux.git
1940 F: Documentation/devicetree/bindings/arm/apple.yaml
1941 F: Documentation/devicetree/bindings/arm/apple/*
1942 F: Documentation/devicetree/bindings/clock/apple,nco.yaml
1943 F: Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1944 F: Documentation/devicetree/bindings/dma/apple,admac.yaml
1945 F: Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1946 F: Documentation/devicetree/bindings/interrupt-controller/apple,*
1947 F: Documentation/devicetree/bindings/iommu/apple,dart.yaml
1948 F: Documentation/devicetree/bindings/iommu/apple,sart.yaml
1949 F: Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1950 F: Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1951 F: Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1952 F: Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1953 F: Documentation/devicetree/bindings/pci/apple,pcie.yaml
1954 F: Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1955 F: Documentation/devicetree/bindings/power/apple*
1956 F: Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1957 F: arch/arm64/boot/dts/apple/
1958 F: drivers/bluetooth/hci_bcm4377.c
1959 F: drivers/clk/clk-apple-nco.c
1960 F: drivers/cpufreq/apple-soc-cpufreq.c
1961 F: drivers/dma/apple-admac.c
1962 F: drivers/i2c/busses/i2c-pasemi-core.c
1963 F: drivers/i2c/busses/i2c-pasemi-platform.c
1964 F: drivers/iommu/apple-dart.c
1965 F: drivers/iommu/io-pgtable-dart.c
1966 F: drivers/irqchip/irq-apple-aic.c
1967 F: drivers/mailbox/apple-mailbox.c
1968 F: drivers/nvme/host/apple.c
1969 F: drivers/nvmem/apple-efuses.c
1970 F: drivers/pinctrl/pinctrl-apple-gpio.c
1971 F: drivers/soc/apple/*
1972 F: drivers/watchdog/apple_wdt.c
1973 F: include/dt-bindings/interrupt-controller/apple-aic.h
1974 F: include/dt-bindings/pinctrl/apple.h
1975 F: include/linux/apple-mailbox.h
1976 F: include/linux/soc/apple/*
1978 ARM/APPLE MACHINE SOUND DRIVERS
1979 M: Martin Povišer <povik+lin@cutebit.org>
1980 L: asahi@lists.linux.dev
1981 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1983 F: Documentation/devicetree/bindings/sound/apple,*
1984 F: sound/soc/apple/*
1985 F: sound/soc/codecs/cs42l83-i2c.c
1987 ARM/ARTPEC MACHINE SUPPORT
1988 M: Jesper Nilsson <jesper.nilsson@axis.com>
1989 M: Lars Persson <lars.persson@axis.com>
1990 L: linux-arm-kernel@axis.com
1992 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1993 F: arch/arm/boot/dts/artpec6*
1994 F: arch/arm/mach-artpec
1996 F: drivers/crypto/axis
1997 F: drivers/mmc/host/usdhi6rol0.c
1998 F: drivers/pinctrl/pinctrl-artpec*
2000 ARM/ASPEED I2C DRIVER
2001 M: Brendan Higgins <brendanhiggins@google.com>
2002 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
2003 R: Joel Stanley <joel@jms.id.au>
2004 L: linux-i2c@vger.kernel.org
2005 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2007 F: Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2008 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2009 F: drivers/i2c/busses/i2c-aspeed.c
2010 F: drivers/irqchip/irq-aspeed-i2c-ic.c
2012 ARM/ASPEED MACHINE SUPPORT
2013 M: Joel Stanley <joel@jms.id.au>
2014 R: Andrew Jeffery <andrew@aj.id.au>
2015 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2016 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2018 Q: https://patchwork.ozlabs.org/project/linux-aspeed/list/
2019 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2020 F: Documentation/devicetree/bindings/arm/aspeed/
2021 F: arch/arm/boot/dts/aspeed-*
2022 F: arch/arm/mach-aspeed/
2025 ARM/BITMAIN ARCHITECTURE
2026 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2027 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2029 F: Documentation/devicetree/bindings/arm/bitmain.yaml
2030 F: Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2031 F: Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2032 F: arch/arm64/boot/dts/bitmain/
2033 F: drivers/clk/clk-bm1880.c
2034 F: drivers/pinctrl/pinctrl-bm1880.c
2036 ARM/CALXEDA HIGHBANK ARCHITECTURE
2037 M: Andre Przywara <andre.przywara@arm.com>
2038 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2040 F: arch/arm/boot/dts/ecx-*.dts*
2041 F: arch/arm/boot/dts/highbank.dts
2042 F: arch/arm/mach-highbank/
2044 ARM/CAVIUM THUNDER NETWORK DRIVER
2045 M: Sunil Goutham <sgoutham@marvell.com>
2046 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2048 F: drivers/net/ethernet/cavium/thunder/
2050 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2051 M: Lukasz Majewski <lukma@denx.de>
2052 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 F: arch/arm/mach-ep93xx/ts72xx.c
2056 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2057 M: Alexander Shiyan <shc_work@mail.ru>
2058 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2062 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2063 M: Lennert Buytenhek <kernel@wantstofly.org>
2064 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2068 M: Hartley Sweeten <hsweeten@visionengravers.com>
2069 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
2070 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2072 F: arch/arm/boot/compressed/misc-ep93xx.h
2073 F: arch/arm/mach-ep93xx/
2076 M: Russell King <linux@armlinux.org.uk>
2077 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2080 F: drivers/clk/clkdev.c
2082 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2083 M: Baruch Siach <baruch@tkos.co.il>
2084 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2086 F: arch/arm/boot/dts/cx92755*
2089 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2090 M: Mathieu Poirier <mathieu.poirier@linaro.org>
2091 M: Suzuki K Poulose <suzuki.poulose@arm.com>
2092 R: Mike Leach <mike.leach@linaro.org>
2093 R: Leo Yan <leo.yan@linaro.org>
2094 L: coresight@lists.linaro.org (moderated for non-subscribers)
2095 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2098 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2099 F: Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2100 F: Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2101 F: Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2102 F: Documentation/trace/coresight/*
2103 F: drivers/hwtracing/coresight/*
2104 F: include/dt-bindings/arm/coresight-cti-dt.h
2105 F: include/linux/coresight*
2106 F: samples/coresight/*
2107 F: tools/perf/tests/shell/coresight/*
2108 F: tools/perf/arch/arm/util/auxtrace.c
2109 F: tools/perf/arch/arm/util/cs-etm.c
2110 F: tools/perf/arch/arm/util/cs-etm.h
2111 F: tools/perf/arch/arm/util/pmu.c
2112 F: tools/perf/util/cs-etm-decoder/*
2113 F: tools/perf/util/cs-etm.*
2115 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2116 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
2117 M: Linus Walleij <linus.walleij@linaro.org>
2118 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2120 T: git git://github.com/ulli-kroll/linux.git
2121 F: Documentation/devicetree/bindings/arm/gemini.yaml
2122 F: Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2123 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2124 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2125 F: arch/arm/boot/dts/gemini*
2126 F: arch/arm/mach-gemini/
2127 F: drivers/crypto/gemini/
2128 F: drivers/net/ethernet/cortina/
2129 F: drivers/pinctrl/pinctrl-gemini.c
2130 F: drivers/rtc/rtc-ftrtc010.c
2132 ARM/CZ.NIC TURRIS SUPPORT
2133 M: Marek Behún <kabel@kernel.org>
2135 W: https://www.turris.cz/
2136 F: Documentation/ABI/testing/debugfs-moxtet
2137 F: Documentation/ABI/testing/sysfs-bus-moxtet-devices
2138 F: Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2139 F: Documentation/devicetree/bindings/bus/moxtet.txt
2140 F: Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2141 F: Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2142 F: Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2143 F: Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2144 F: drivers/bus/moxtet.c
2145 F: drivers/firmware/turris-mox-rwtm.c
2146 F: drivers/leds/leds-turris-omnia.c
2147 F: drivers/mailbox/armada-37xx-rwtm-mailbox.c
2148 F: drivers/gpio/gpio-moxtet.c
2149 F: drivers/watchdog/armada_37xx_wdt.c
2150 F: include/dt-bindings/bus/moxtet.h
2151 F: include/linux/armada-37xx-rwtm-mailbox.h
2152 F: include/linux/moxtet.h
2154 ARM/FARADAY FA526 PORT
2155 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
2156 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2158 T: git git://git.berlios.de/gemini-board
2159 F: arch/arm/mm/*-fa*
2161 ARM/FOOTBRIDGE ARCHITECTURE
2162 M: Russell King <linux@armlinux.org.uk>
2163 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2165 W: http://www.armlinux.org.uk/
2166 F: arch/arm/include/asm/hardware/dec21285.h
2167 F: arch/arm/mach-footbridge/
2169 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2170 M: Shawn Guo <shawnguo@kernel.org>
2171 M: Sascha Hauer <s.hauer@pengutronix.de>
2172 R: Pengutronix Kernel Team <kernel@pengutronix.de>
2173 R: Fabio Estevam <festevam@gmail.com>
2174 R: NXP Linux Team <linux-imx@nxp.com>
2175 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2177 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2178 X: drivers/media/i2c/
2179 F: arch/arm64/boot/dts/freescale/
2180 X: arch/arm64/boot/dts/freescale/fsl-*
2181 X: arch/arm64/boot/dts/freescale/qoriq-*
2185 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2186 M: Shawn Guo <shawnguo@kernel.org>
2187 M: Li Yang <leoyang.li@nxp.com>
2188 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2190 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2191 F: arch/arm/boot/dts/ls1021a*
2192 F: arch/arm64/boot/dts/freescale/fsl-*
2193 F: arch/arm64/boot/dts/freescale/qoriq-*
2195 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2196 M: Shawn Guo <shawnguo@kernel.org>
2197 M: Sascha Hauer <s.hauer@pengutronix.de>
2198 R: Pengutronix Kernel Team <kernel@pengutronix.de>
2199 R: Stefan Agner <stefan@agner.ch>
2200 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2202 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2203 F: arch/arm/boot/dts/vf*
2204 F: arch/arm/mach-imx/*vf610*
2206 ARM/GUMSTIX MACHINE SUPPORT
2207 M: Steve Sakoman <sakoman@gmail.com>
2208 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2211 ARM/HISILICON SOC SUPPORT
2212 M: Wei Xu <xuwei5@hisilicon.com>
2213 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2215 W: http://www.hisilicon.com
2216 T: git https://github.com/hisilicon/linux-hisi.git
2217 F: arch/arm/boot/dts/hi3*
2218 F: arch/arm/boot/dts/hip*
2219 F: arch/arm/boot/dts/hisi*
2220 F: arch/arm/mach-hisi/
2221 F: arch/arm64/boot/dts/hisilicon/
2223 ARM/HP JORNADA 7XX MACHINE SUPPORT
2224 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
2227 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2228 F: arch/arm/mach-sa1100/include/mach/jornada720.h
2229 F: arch/arm/mach-sa1100/jornada720.c
2231 ARM/HPE GXP ARCHITECTURE
2232 M: Jean-Marie Verdun <verdun@hpe.com>
2233 M: Nick Hawkins <nick.hawkins@hpe.com>
2235 F: Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2236 F: Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2237 F: Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2238 F: arch/arm/boot/dts/hpe-bmc*
2239 F: arch/arm/boot/dts/hpe-gxp*
2240 F: arch/arm/mach-hpe/
2241 F: drivers/clocksource/timer-gxp.c
2242 F: drivers/spi/spi-gxp.c
2243 F: drivers/watchdog/gxp-wdt.c
2245 ARM/IGEP MACHINE SUPPORT
2246 M: Enric Balletbo i Serra <eballetbo@gmail.com>
2247 M: Javier Martinez Canillas <javier@dowhile0.org>
2248 L: linux-omap@vger.kernel.org
2249 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2251 F: arch/arm/boot/dts/omap3-igep*
2253 ARM/INTEL IXP4XX ARM ARCHITECTURE
2254 M: Linus Walleij <linusw@kernel.org>
2255 M: Imre Kaloz <kaloz@openwrt.org>
2256 M: Krzysztof Halasa <khalasa@piap.pl>
2257 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2259 F: Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2260 F: Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2261 F: Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2262 F: Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2263 F: Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2264 F: arch/arm/boot/dts/intel-ixp*
2265 F: arch/arm/mach-ixp4xx/
2266 F: drivers/bus/intel-ixp4xx-eb.c
2267 F: drivers/clocksource/timer-ixp4xx.c
2268 F: drivers/crypto/ixp4xx_crypto.c
2269 F: drivers/gpio/gpio-ixp4xx.c
2270 F: drivers/irqchip/irq-ixp4xx.c
2272 ARM/INTEL KEEMBAY ARCHITECTURE
2273 M: Paul J. Murphy <paul.j.murphy@intel.com>
2274 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2276 F: Documentation/devicetree/bindings/arm/intel,keembay.yaml
2277 F: arch/arm64/boot/dts/intel/keembay-evm.dts
2278 F: arch/arm64/boot/dts/intel/keembay-soc.dtsi
2280 ARM/INTEL XSC3 (MANZANO) ARM CORE
2281 M: Lennert Buytenhek <kernel@wantstofly.org>
2282 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2285 ARM/LG1K ARCHITECTURE
2286 M: Chanho Min <chanho.min@lge.com>
2287 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2289 F: arch/arm64/boot/dts/lg/
2291 ARM/LPC18XX ARCHITECTURE
2292 M: Vladimir Zapolskiy <vz@mleia.com>
2293 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2295 F: Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2296 F: arch/arm/boot/dts/lpc43*
2297 F: drivers/i2c/busses/i2c-lpc2k.c
2298 F: drivers/memory/pl172.c
2299 F: drivers/mtd/spi-nor/controllers/nxp-spifi.c
2300 F: drivers/rtc/rtc-lpc24xx.c
2303 ARM/LPC32XX SOC SUPPORT
2304 M: Vladimir Zapolskiy <vz@mleia.com>
2305 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2307 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
2308 F: Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2309 F: arch/arm/boot/dts/lpc32*
2310 F: arch/arm/mach-lpc32xx/
2311 F: drivers/i2c/busses/i2c-pnx.c
2312 F: drivers/net/ethernet/nxp/lpc_eth.c
2313 F: drivers/usb/host/ohci-nxp.c
2314 F: drivers/watchdog/pnx4008_wdt.c
2317 ARM/Marvell Dove/MV78xx0/Orion SOC support
2318 M: Andrew Lunn <andrew@lunn.ch>
2319 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2320 M: Gregory Clement <gregory.clement@bootlin.com>
2321 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2323 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2324 F: Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2325 F: Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2326 F: Documentation/devicetree/bindings/soc/dove/
2327 F: arch/arm/boot/dts/dove*
2328 F: arch/arm/boot/dts/orion5x*
2329 F: arch/arm/mach-dove/
2330 F: arch/arm/mach-mv78xx0/
2331 F: arch/arm/mach-orion5x/
2332 F: arch/arm/plat-orion/
2333 F: drivers/soc/dove/
2335 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2336 M: Andrew Lunn <andrew@lunn.ch>
2337 M: Gregory Clement <gregory.clement@bootlin.com>
2338 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2339 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2341 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2342 F: Documentation/devicetree/bindings/arm/marvell/
2343 F: arch/arm/boot/dts/armada*
2344 F: arch/arm/boot/dts/kirkwood*
2345 F: arch/arm/configs/mvebu_*_defconfig
2346 F: arch/arm/mach-mvebu/
2347 F: arch/arm64/boot/dts/marvell/armada*
2348 F: arch/arm64/boot/dts/marvell/cn913*
2349 F: drivers/cpufreq/armada-37xx-cpufreq.c
2350 F: drivers/cpufreq/armada-8k-cpufreq.c
2351 F: drivers/cpufreq/mvebu-cpufreq.c
2352 F: drivers/irqchip/irq-armada-370-xp.c
2353 F: drivers/irqchip/irq-mvebu-*
2354 F: drivers/pinctrl/mvebu/
2355 F: drivers/rtc/rtc-armada38x.c
2357 ARM/Mediatek RTC DRIVER
2358 M: Eddie Huang <eddie.huang@mediatek.com>
2359 M: Sean Wang <sean.wang@mediatek.com>
2360 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2361 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2363 F: Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2364 F: Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2365 F: drivers/rtc/rtc-mt2712.c
2366 F: drivers/rtc/rtc-mt6397.c
2367 F: drivers/rtc/rtc-mt7622.c
2369 ARM/Mediatek SoC support
2370 M: Matthias Brugger <matthias.bgg@gmail.com>
2371 R: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
2372 L: linux-kernel@vger.kernel.org
2373 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2374 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2376 W: https://mtk.wiki.kernel.org/
2377 C: irc://irc.libera.chat/linux-mediatek
2378 F: arch/arm/boot/dts/mt2*
2379 F: arch/arm/boot/dts/mt6*
2380 F: arch/arm/boot/dts/mt7*
2381 F: arch/arm/boot/dts/mt8*
2382 F: arch/arm/mach-mediatek/
2383 F: arch/arm64/boot/dts/mediatek/
2384 F: drivers/soc/mediatek/
2389 ARM/Mediatek USB3 PHY DRIVER
2390 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
2391 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2392 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2394 F: Documentation/devicetree/bindings/phy/mediatek,*
2395 F: drivers/phy/mediatek/
2397 ARM/Microchip (AT91) SoC support
2398 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2399 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
2400 M: Claudiu Beznea <claudiu.beznea@microchip.com>
2401 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2403 W: http://www.linux4sam.org
2404 T: git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2405 F: arch/arm/boot/dts/at91*.dts
2406 F: arch/arm/boot/dts/at91*.dtsi
2407 F: arch/arm/boot/dts/sama*.dts
2408 F: arch/arm/boot/dts/sama*.dtsi
2409 F: arch/arm/include/debug/at91.S
2410 F: arch/arm/mach-at91/
2411 F: drivers/memory/atmel*
2412 F: drivers/watchdog/sama5d4_wdt.c
2413 F: include/soc/at91/
2414 X: drivers/input/touchscreen/atmel_mxt_ts.c
2415 X: drivers/net/wireless/atmel/
2419 ARM/Microchip Sparx5 SoC support
2420 M: Lars Povlsen <lars.povlsen@microchip.com>
2421 M: Steen Hegelund <Steen.Hegelund@microchip.com>
2422 M: Daniel Machon <daniel.machon@microchip.com>
2423 M: UNGLinuxDriver@microchip.com
2424 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2426 T: git git://github.com/microchip-ung/linux-upstream.git
2427 F: arch/arm64/boot/dts/microchip/
2428 F: drivers/net/ethernet/microchip/vcap/
2429 F: drivers/pinctrl/pinctrl-microchip-sgpio.c
2432 Microchip Timer Counter Block (TCB) Capture Driver
2433 M: Kamel Bouhara <kamel.bouhara@bootlin.com>
2434 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2435 L: linux-iio@vger.kernel.org
2437 F: drivers/counter/microchip-tcb-capture.c
2439 ARM/MILBEAUT ARCHITECTURE
2440 M: Taichi Sugaya <sugaya.taichi@socionext.com>
2441 M: Takao Orito <orito.takao@socionext.com>
2442 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2444 F: arch/arm/boot/dts/milbeaut*
2445 F: arch/arm/mach-milbeaut/
2448 ARM/MStar/Sigmastar Armv7 SoC support
2449 M: Daniel Palmer <daniel@thingy.jp>
2450 M: Romain Perier <romain.perier@gmail.com>
2451 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2453 W: http://linux-chenxing.org/
2454 T: git git://github.com/linux-chenxing/linux.git
2455 F: Documentation/devicetree/bindings/arm/mstar/*
2456 F: Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2457 F: Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2458 F: arch/arm/boot/dts/mstar-*
2459 F: arch/arm/mach-mstar/
2460 F: drivers/clk/mstar/
2461 F: drivers/clocksource/timer-msc313e.c
2462 F: drivers/gpio/gpio-msc313.c
2463 F: drivers/rtc/rtc-msc313.c
2464 F: drivers/watchdog/msc313e_wdt.c
2465 F: include/dt-bindings/clock/mstar-*
2466 F: include/dt-bindings/gpio/msc313-gpio.h
2468 ARM/NOMADIK/Ux500 ARCHITECTURES
2469 M: Linus Walleij <linus.walleij@linaro.org>
2470 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2472 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2473 F: Documentation/devicetree/bindings/arm/ste-*
2474 F: Documentation/devicetree/bindings/arm/ux500.yaml
2475 F: Documentation/devicetree/bindings/arm/ux500/
2476 F: Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2477 F: arch/arm/boot/dts/ste-*
2478 F: arch/arm/mach-nomadik/
2479 F: arch/arm/mach-ux500/
2480 F: drivers/clk/clk-nomadik.c
2481 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2482 F: drivers/dma/ste_dma40*
2483 F: drivers/hwspinlock/u8500_hsem.c
2484 F: drivers/i2c/busses/i2c-nomadik.c
2485 F: drivers/iio/adc/ab8500-gpadc.c
2486 F: drivers/mfd/ab8500*
2487 F: drivers/mfd/abx500*
2488 F: drivers/mfd/db8500*
2489 F: drivers/pinctrl/nomadik/
2490 F: drivers/rtc/rtc-ab8500.c
2491 F: drivers/rtc/rtc-pl031.c
2492 F: drivers/soc/ux500/
2494 ARM/NUVOTON NPCM ARCHITECTURE
2495 M: Avi Fishman <avifishman70@gmail.com>
2496 M: Tomer Maimon <tmaimon77@gmail.com>
2497 M: Tali Perry <tali.perry1@gmail.com>
2498 R: Patrick Venture <venture@google.com>
2499 R: Nancy Yuen <yuenn@google.com>
2500 R: Benjamin Fair <benjaminfair@google.com>
2501 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2503 F: Documentation/devicetree/bindings/*/*/*npcm*
2504 F: Documentation/devicetree/bindings/*/*npcm*
2505 F: Documentation/devicetree/bindings/arm/npcm/*
2506 F: Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2507 F: arch/arm/boot/dts/nuvoton-npcm*
2508 F: arch/arm/mach-npcm/
2509 F: arch/arm64/boot/dts/nuvoton/
2511 F: drivers/*/*/*npcm*
2512 F: drivers/rtc/rtc-nct3018y.c
2513 F: include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2514 F: include/dt-bindings/clock/nuvoton,npcm845-clk.h
2516 ARM/NUVOTON WPCM450 ARCHITECTURE
2517 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2518 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2520 W: https://github.com/neuschaefer/wpcm450/wiki
2521 F: Documentation/devicetree/bindings/*/*wpcm*
2522 F: arch/arm/boot/dts/nuvoton-wpcm450*
2523 F: arch/arm/configs/wpcm450_defconfig
2524 F: arch/arm/mach-npcm/wpcm450.c
2525 F: drivers/*/*/*wpcm*
2528 ARM/NXP S32G ARCHITECTURE
2529 M: Chester Lin <clin@suse.com>
2530 R: Andreas Färber <afaerber@suse.de>
2531 R: Matthias Brugger <mbrugger@suse.com>
2532 R: NXP S32 Linux Team <s32@nxp.com>
2533 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2535 F: arch/arm64/boot/dts/freescale/s32g*.dts*
2537 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2538 M: Alexander Clouter <alex@digriz.org.uk>
2539 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2541 W: http://www.digriz.org.uk/ts78xx/kernel
2542 F: arch/arm/mach-orion5x/ts78xx-*
2544 ARM/OXNAS platform support
2545 M: Neil Armstrong <neil.armstrong@linaro.org>
2546 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 L: linux-oxnas@groups.io (moderated for non-subscribers)
2549 F: arch/arm/boot/dts/ox8*.dts*
2550 F: arch/arm/mach-oxnas/
2551 F: drivers/power/reset/oxnas-restart.c
2554 ARM/QUALCOMM SUPPORT
2555 M: Andy Gross <agross@kernel.org>
2556 M: Bjorn Andersson <andersson@kernel.org>
2557 R: Konrad Dybcio <konrad.dybcio@linaro.org>
2558 L: linux-arm-msm@vger.kernel.org
2560 T: git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2561 F: Documentation/devicetree/bindings/*/qcom*
2562 F: Documentation/devicetree/bindings/soc/qcom/
2563 F: arch/arm/boot/dts/qcom-*.dts
2564 F: arch/arm/boot/dts/qcom-*.dtsi
2565 F: arch/arm/configs/qcom_defconfig
2566 F: arch/arm/mach-qcom/
2567 F: arch/arm64/boot/dts/qcom/
2568 F: drivers/*/*/qcom*
2569 F: drivers/*/*/qcom/
2570 F: drivers/*/pm8???-*
2573 F: drivers/bluetooth/btqcomsmd.c
2574 F: drivers/clocksource/timer-qcom.c
2575 F: drivers/cpuidle/cpuidle-qcom-spm.c
2576 F: drivers/extcon/extcon-qcom*
2577 F: drivers/i2c/busses/i2c-qcom-geni.c
2578 F: drivers/i2c/busses/i2c-qup.c
2579 F: drivers/iommu/msm*
2580 F: drivers/mfd/ssbi.c
2581 F: drivers/mmc/host/mmci_qcom*
2582 F: drivers/mmc/host/sdhci-msm.c
2583 F: drivers/pci/controller/dwc/pcie-qcom.c
2584 F: drivers/phy/qualcomm/
2585 F: drivers/power/*/msm*
2586 F: drivers/reset/reset-qcom-*
2587 F: drivers/ufs/host/ufs-qcom*
2588 F: drivers/spi/spi-geni-qcom.c
2589 F: drivers/spi/spi-qcom-qspi.c
2590 F: drivers/spi/spi-qup.c
2591 F: drivers/tty/serial/msm_serial.c
2592 F: drivers/usb/dwc3/dwc3-qcom.c
2593 F: include/dt-bindings/*/qcom*
2594 F: include/linux/*/qcom*
2595 F: include/linux/soc/qcom/
2597 ARM/RDA MICRO ARCHITECTURE
2598 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2599 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2600 L: linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2602 F: Documentation/devicetree/bindings/arm/rda.yaml
2603 F: Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2604 F: Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2605 F: Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2606 F: Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2607 F: arch/arm/boot/dts/rda8810pl-*
2608 F: drivers/clocksource/timer-rda.c
2609 F: drivers/gpio/gpio-rda.c
2610 F: drivers/irqchip/irq-rda-intc.c
2611 F: drivers/tty/serial/rda-uart.c
2613 ARM/REALTEK ARCHITECTURE
2614 M: Andreas Färber <afaerber@suse.de>
2615 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2616 L: linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2618 F: Documentation/devicetree/bindings/arm/realtek.yaml
2619 F: arch/arm/boot/dts/rtd*
2620 F: arch/arm/mach-realtek/
2621 F: arch/arm64/boot/dts/realtek/
2623 ARM/RISC-V/RENESAS ARCHITECTURE
2624 M: Geert Uytterhoeven <geert+renesas@glider.be>
2625 M: Magnus Damm <magnus.damm@gmail.com>
2626 L: linux-renesas-soc@vger.kernel.org
2628 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2629 C: irc://irc.libera.chat/renesas-soc
2630 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2631 F: Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2632 F: Documentation/devicetree/bindings/soc/renesas/
2633 F: arch/arm/boot/dts/emev2*
2634 F: arch/arm/boot/dts/gr-peach*
2635 F: arch/arm/boot/dts/iwg20d-q7*
2636 F: arch/arm/boot/dts/r7s*
2637 F: arch/arm/boot/dts/r8a*
2638 F: arch/arm/boot/dts/r9a*
2639 F: arch/arm/boot/dts/sh*
2640 F: arch/arm/configs/shmobile_defconfig
2641 F: arch/arm/include/debug/renesas-scif.S
2642 F: arch/arm/mach-shmobile/
2643 F: arch/arm64/boot/dts/renesas/
2644 F: arch/riscv/boot/dts/renesas/
2645 F: drivers/soc/renesas/
2646 F: include/linux/soc/renesas/
2648 ARM/RISCPC ARCHITECTURE
2649 M: Russell King <linux@armlinux.org.uk>
2650 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2652 W: http://www.armlinux.org.uk/
2653 F: arch/arm/include/asm/hardware/ioc.h
2654 F: arch/arm/include/asm/hardware/iomd.h
2655 F: arch/arm/include/asm/hardware/memc.h
2656 F: arch/arm/mach-rpc/
2657 F: drivers/net/ethernet/8390/etherh.c
2658 F: drivers/net/ethernet/i825xx/ether1*
2659 F: drivers/net/ethernet/seeq/ether3*
2660 F: drivers/scsi/arm/
2662 ARM/Rockchip SoC support
2663 M: Heiko Stuebner <heiko@sntech.de>
2664 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 L: linux-rockchip@lists.infradead.org
2667 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2668 F: Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2669 F: Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2670 F: Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2671 F: arch/arm/boot/dts/rk3*
2672 F: arch/arm/boot/dts/rv11*
2673 F: arch/arm/mach-rockchip/
2674 F: drivers/*/*/*rockchip*
2675 F: drivers/*/*rockchip*
2676 F: drivers/clk/rockchip/
2677 F: drivers/i2c/busses/i2c-rk3x.c
2678 F: sound/soc/rockchip/
2681 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2682 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2683 R: Alim Akhtar <alim.akhtar@samsung.com>
2684 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 L: linux-samsung-soc@vger.kernel.org
2687 C: irc://irc.libera.chat/linux-exynos
2688 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
2689 B: mailto:linux-samsung-soc@vger.kernel.org
2690 T: git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2691 F: Documentation/arm/samsung/
2692 F: Documentation/devicetree/bindings/arm/samsung/
2693 F: Documentation/devicetree/bindings/hwinfo/samsung,*
2694 F: Documentation/devicetree/bindings/power/pd-samsung.yaml
2695 F: Documentation/devicetree/bindings/soc/samsung/
2696 F: arch/arm/boot/dts/exynos*
2697 F: arch/arm/boot/dts/s3c*
2698 F: arch/arm/boot/dts/s5p*
2699 F: arch/arm/mach-exynos*/
2700 F: arch/arm/mach-s3c/
2701 F: arch/arm/mach-s5p*/
2702 F: arch/arm64/boot/dts/exynos/
2703 F: drivers/*/*/*s3c24*
2704 F: drivers/*/*s3c24*
2705 F: drivers/*/*s3c64xx*
2706 F: drivers/*/*s5pv210*
2707 F: drivers/clocksource/samsung_pwm_timer.c
2708 F: drivers/memory/samsung/
2709 F: drivers/pwm/pwm-samsung.c
2710 F: drivers/soc/samsung/
2711 F: drivers/tty/serial/samsung*
2712 F: include/clocksource/samsung_pwm.h
2713 F: include/linux/platform_data/*s3c*
2714 F: include/linux/serial_s3c.h
2715 F: include/linux/soc/samsung/
2720 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2721 M: Łukasz Stelmach <l.stelmach@samsung.com>
2722 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2723 L: linux-media@vger.kernel.org
2725 F: drivers/media/platform/samsung/s5p-g2d/
2727 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2728 M: Marek Szyprowski <m.szyprowski@samsung.com>
2729 L: linux-samsung-soc@vger.kernel.org
2730 L: linux-media@vger.kernel.org
2732 F: Documentation/devicetree/bindings/media/s5p-cec.txt
2733 F: drivers/media/cec/platform/s5p/
2735 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2736 M: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2737 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
2738 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
2739 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2740 L: linux-media@vger.kernel.org
2742 F: Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2743 F: drivers/media/platform/samsung/s5p-jpeg/
2745 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2746 M: Marek Szyprowski <m.szyprowski@samsung.com>
2747 M: Andrzej Hajda <andrzej.hajda@intel.com>
2748 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2749 L: linux-media@vger.kernel.org
2751 F: drivers/media/platform/samsung/s5p-mfc/
2753 ARM/SOCFPGA ARCHITECTURE
2754 M: Dinh Nguyen <dinguyen@kernel.org>
2756 W: http://www.rocketboards.org
2757 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2758 F: arch/arm/boot/dts/socfpga*
2759 F: arch/arm/configs/socfpga_defconfig
2760 F: arch/arm/mach-socfpga/
2761 F: arch/arm64/boot/dts/altera/
2762 F: arch/arm64/boot/dts/intel/
2764 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2765 M: Dinh Nguyen <dinguyen@kernel.org>
2767 F: drivers/clk/socfpga/
2769 ARM/SOCFPGA EDAC SUPPORT
2770 M: Dinh Nguyen <dinguyen@kernel.org>
2772 F: drivers/edac/altera_edac.[ch]
2774 ARM/SPREADTRUM SoC SUPPORT
2775 M: Orson Zhai <orsonzhai@gmail.com>
2776 M: Baolin Wang <baolin.wang7@gmail.com>
2777 M: Chunyan Zhang <zhang.lyra@gmail.com>
2779 F: arch/arm64/boot/dts/sprd
2784 ARM/STI ARCHITECTURE
2785 M: Patrice Chotard <patrice.chotard@foss.st.com>
2786 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2788 W: http://www.stlinux.com
2789 F: Documentation/devicetree/bindings/i2c/i2c-st.txt
2790 F: arch/arm/boot/dts/sti*
2791 F: arch/arm/mach-sti/
2792 F: drivers/ata/ahci_st.c
2793 F: drivers/char/hw_random/st-rng.c
2794 F: drivers/clocksource/arm_global_timer.c
2795 F: drivers/clocksource/clksrc_st_lpc.c
2796 F: drivers/cpufreq/sti-cpufreq.c
2797 F: drivers/dma/st_fdma*
2798 F: drivers/i2c/busses/i2c-st.c
2799 F: drivers/media/platform/st/sti/c8sectpfe/
2800 F: drivers/media/rc/st_rc.c
2801 F: drivers/mmc/host/sdhci-st.c
2802 F: drivers/phy/st/phy-miphy28lp.c
2803 F: drivers/phy/st/phy-stih407-usb.c
2804 F: drivers/pinctrl/pinctrl-st.c
2805 F: drivers/remoteproc/st_remoteproc.c
2806 F: drivers/remoteproc/st_slim_rproc.c
2807 F: drivers/reset/sti/
2808 F: drivers/rtc/rtc-st-lpc.c
2809 F: drivers/tty/serial/st-asc.c
2810 F: drivers/usb/dwc3/dwc3-st.c
2811 F: drivers/usb/host/ehci-st.c
2812 F: drivers/usb/host/ohci-st.c
2813 F: drivers/watchdog/st_lpc_wdt.c
2814 F: include/linux/remoteproc/st_slim_rproc.h
2816 ARM/STM32 ARCHITECTURE
2817 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
2818 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
2819 L: linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2820 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2822 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2823 F: arch/arm/boot/dts/stm32*
2824 F: arch/arm/mach-stm32/
2825 F: drivers/clocksource/armv7m_systick.c
2829 ARM/SUNPLUS SP7021 SOC SUPPORT
2830 M: Qin Jian <qinjian@cqplus1.com>
2831 L: linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2833 W: https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2834 F: Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2835 F: Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2836 F: Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2837 F: Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2838 F: arch/arm/boot/dts/sunplus-sp7021*.dts*
2839 F: arch/arm/configs/sp7021_*defconfig
2840 F: arch/arm/mach-sunplus/
2841 F: drivers/irqchip/irq-sp7021-intc.c
2842 F: drivers/reset/reset-sunplus.c
2843 F: include/dt-bindings/clock/sunplus,sp7021-clkc.h
2844 F: include/dt-bindings/reset/sunplus,sp7021-reset.h
2846 ARM/Synaptics SoC support
2847 M: Jisheng Zhang <jszhang@kernel.org>
2848 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2849 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2851 F: arch/arm/boot/dts/berlin*
2852 F: arch/arm/mach-berlin/
2853 F: arch/arm64/boot/dts/synaptics/
2855 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2856 M: Lennert Buytenhek <kernel@wantstofly.org>
2857 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2860 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2861 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
2862 L: linux-tegra@vger.kernel.org
2863 L: linux-media@vger.kernel.org
2865 F: Documentation/devicetree/bindings/media/tegra-cec.txt
2866 F: drivers/media/cec/platform/tegra/
2868 ARM/TESLA FSD SoC SUPPORT
2869 M: Alim Akhtar <alim.akhtar@samsung.com>
2870 M: linux-fsd@tesla.com
2871 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2872 L: linux-samsung-soc@vger.kernel.org
2874 F: arch/arm64/boot/dts/tesla/
2876 ARM/TETON BGA MACHINE SUPPORT
2877 M: "Mark F. Brown" <mark.brown314@gmail.com>
2878 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2881 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2882 M: Santosh Shilimkar <ssantosh@kernel.org>
2883 L: linux-kernel@vger.kernel.org
2885 F: drivers/memory/*emif*
2887 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2888 M: Nishanth Menon <nm@ti.com>
2889 M: Santosh Shilimkar <ssantosh@kernel.org>
2890 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2892 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2893 F: arch/arm/boot/dts/keystone-*
2894 F: arch/arm/mach-keystone/
2896 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2897 M: Santosh Shilimkar <ssantosh@kernel.org>
2898 L: linux-kernel@vger.kernel.org
2900 F: drivers/clk/keystone/
2902 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2903 M: Santosh Shilimkar <ssantosh@kernel.org>
2904 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2905 L: linux-kernel@vger.kernel.org
2907 F: drivers/clocksource/timer-keystone.c
2909 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2910 M: Santosh Shilimkar <ssantosh@kernel.org>
2911 L: linux-kernel@vger.kernel.org
2913 F: drivers/power/reset/keystone-reset.c
2915 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2916 M: Nishanth Menon <nm@ti.com>
2917 M: Vignesh Raghavendra <vigneshr@ti.com>
2918 M: Tero Kristo <kristo@kernel.org>
2919 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2921 F: Documentation/devicetree/bindings/arm/ti/k3.yaml
2922 F: Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2923 F: arch/arm64/boot/dts/ti/Makefile
2924 F: arch/arm64/boot/dts/ti/k3-*
2925 F: include/dt-bindings/pinctrl/k3.h
2927 ARM/TOSHIBA VISCONTI ARCHITECTURE
2928 M: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2929 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2931 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2932 F: Documentation/devicetree/bindings/arm/toshiba.yaml
2933 F: Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2934 F: Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2935 F: Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2936 F: Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2937 F: Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2938 F: Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2939 F: Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2940 F: arch/arm64/boot/dts/toshiba/
2941 F: drivers/clk/visconti/
2942 F: drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2943 F: drivers/gpio/gpio-visconti.c
2944 F: drivers/pci/controller/dwc/pcie-visconti.c
2945 F: drivers/pinctrl/visconti/
2946 F: drivers/watchdog/visconti_wdt.c
2949 ARM/UNIPHIER ARCHITECTURE
2950 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2951 M: Masami Hiramatsu <mhiramat@kernel.org>
2952 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2954 F: Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2955 F: Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2956 F: Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2957 F: arch/arm/boot/dts/uniphier*
2958 F: arch/arm/include/asm/hardware/cache-uniphier.h
2959 F: arch/arm/mach-uniphier/
2960 F: arch/arm/mm/cache-uniphier.c
2961 F: arch/arm64/boot/dts/socionext/uniphier*
2962 F: drivers/bus/uniphier-system-bus.c
2963 F: drivers/clk/uniphier/
2964 F: drivers/dma/uniphier-mdmac.c
2965 F: drivers/gpio/gpio-uniphier.c
2966 F: drivers/i2c/busses/i2c-uniphier*
2967 F: drivers/irqchip/irq-uniphier-aidet.c
2968 F: drivers/mmc/host/uniphier-sd.c
2969 F: drivers/pinctrl/uniphier/
2970 F: drivers/reset/reset-uniphier.c
2971 F: drivers/tty/serial/8250/8250_uniphier.c
2974 ARM/VERSATILE EXPRESS PLATFORM
2975 M: Liviu Dudau <liviu.dudau@arm.com>
2976 M: Sudeep Holla <sudeep.holla@arm.com>
2977 M: Lorenzo Pieralisi <lpieralisi@kernel.org>
2978 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2982 F: arch/arm/boot/dts/vexpress*
2983 F: arch/arm/mach-versatile/
2984 F: arch/arm64/boot/dts/arm/
2985 F: drivers/clk/versatile/clk-vexpress-osc.c
2986 F: drivers/clocksource/timer-versatile.c
2990 M: Russell King <linux@armlinux.org.uk>
2991 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2993 W: http://www.armlinux.org.uk/
2996 ARM/VT8500 ARM ARCHITECTURE
2997 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2999 F: Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3000 F: arch/arm/mach-vt8500/
3001 F: drivers/clocksource/timer-vt8500.c
3002 F: drivers/i2c/busses/i2c-wmt.c
3003 F: drivers/mmc/host/wmt-sdmmc.c
3004 F: drivers/pwm/pwm-vt8500.c
3005 F: drivers/rtc/rtc-vt8500.c
3006 F: drivers/tty/serial/vt8500_serial.c
3007 F: drivers/usb/host/ehci-platform.c
3008 F: drivers/usb/host/uhci-platform.c
3009 F: drivers/video/fbdev/vt8500lcdfb.*
3010 F: drivers/video/fbdev/wm8505fb*
3011 F: drivers/video/fbdev/wmt_ge_rops.*
3013 ARM/ZYNQ ARCHITECTURE
3014 M: Michal Simek <michal.simek@xilinx.com>
3015 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3017 W: http://wiki.xilinx.com
3018 T: git https://github.com/Xilinx/linux-xlnx.git
3019 F: Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3020 F: Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3021 F: Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3022 F: Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3023 F: Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3024 F: arch/arm/mach-zynq/
3025 F: drivers/clocksource/timer-cadence-ttc.c
3026 F: drivers/cpuidle/cpuidle-zynq.c
3027 F: drivers/edac/synopsys_edac.c
3028 F: drivers/i2c/busses/i2c-cadence.c
3029 F: drivers/i2c/busses/i2c-xiic.c
3030 F: drivers/mmc/host/sdhci-of-arasan.c
3034 ARM64 PORT (AARCH64 ARCHITECTURE)
3035 M: Catalin Marinas <catalin.marinas@arm.com>
3036 M: Will Deacon <will@kernel.org>
3037 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3039 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3040 F: Documentation/arm64/
3042 F: tools/testing/selftests/arm64/
3043 X: arch/arm64/boot/dts/
3045 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3046 M: George McCollister <george.mccollister@gmail.com>
3047 L: netdev@vger.kernel.org
3049 F: Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3050 F: drivers/net/dsa/xrs700x/*
3051 F: net/dsa/tag_xrs700x.c
3053 AS3645A LED FLASH CONTROLLER DRIVER
3054 M: Sakari Ailus <sakari.ailus@iki.fi>
3055 L: linux-leds@vger.kernel.org
3057 F: drivers/leds/flash/leds-as3645a.c
3059 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3060 M: Tianshu Qiu <tian.shu.qiu@intel.com>
3061 L: linux-media@vger.kernel.org
3063 T: git git://linuxtv.org/media_tree.git
3064 F: Documentation/devicetree/bindings/media/i2c/ak7375.txt
3065 F: drivers/media/i2c/ak7375.c
3067 ASAHI KASEI AK8974 DRIVER
3068 M: Linus Walleij <linus.walleij@linaro.org>
3069 L: linux-iio@vger.kernel.org
3071 W: http://www.akm.com/
3072 F: drivers/iio/magnetometer/ak8974.c
3074 ASC7621 HARDWARE MONITOR DRIVER
3075 M: George Joseph <george.joseph@fairview5.com>
3076 L: linux-hwmon@vger.kernel.org
3078 F: Documentation/hwmon/asc7621.rst
3079 F: drivers/hwmon/asc7621.c
3081 ASIX AX88796C SPI ETHERNET ADAPTER
3082 M: Łukasz Stelmach <l.stelmach@samsung.com>
3084 F: Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3085 F: drivers/net/ethernet/asix/ax88796c_*
3087 ASPEED PECI CONTROLLER
3088 M: Iwona Winiarska <iwona.winiarska@intel.com>
3089 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3090 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
3092 F: Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3093 F: drivers/peci/controller/peci-aspeed.c
3095 ASPEED PINCTRL DRIVERS
3096 M: Andrew Jeffery <andrew@aj.id.au>
3097 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3098 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
3099 L: linux-gpio@vger.kernel.org
3101 F: Documentation/devicetree/bindings/pinctrl/aspeed,*
3102 F: drivers/pinctrl/aspeed/
3104 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3105 M: Eddie James <eajames@linux.ibm.com>
3106 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3108 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3109 F: drivers/irqchip/irq-aspeed-scu-ic.c
3110 F: include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3112 ASPEED SD/MMC DRIVER
3113 M: Andrew Jeffery <andrew@aj.id.au>
3114 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3115 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
3116 L: linux-mmc@vger.kernel.org
3118 F: Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3119 F: drivers/mmc/host/sdhci-of-aspeed*
3121 ASPEED SMC SPI DRIVER
3122 M: Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3123 M: Cédric Le Goater <clg@kaod.org>
3124 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3125 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
3126 L: linux-spi@vger.kernel.org
3128 F: Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3129 F: drivers/spi/spi-aspeed-smc.c
3131 ASPEED VIDEO ENGINE DRIVER
3132 M: Eddie James <eajames@linux.ibm.com>
3133 L: linux-media@vger.kernel.org
3134 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
3136 F: Documentation/devicetree/bindings/media/aspeed-video.txt
3137 F: drivers/media/platform/aspeed/
3139 ASPEED USB UDC DRIVER
3140 M: Neal Liu <neal_liu@aspeedtech.com>
3141 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3143 F: Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3144 F: drivers/usb/gadget/udc/aspeed_udc.c
3146 ASPEED CRYPTO DRIVER
3147 M: Neal Liu <neal_liu@aspeedtech.com>
3148 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3150 F: Documentation/devicetree/bindings/crypto/aspeed,ast2500-hace.yaml
3151 F: drivers/crypto/aspeed/
3153 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3154 M: Corentin Chary <corentin.chary@gmail.com>
3155 L: acpi4asus-user@lists.sourceforge.net
3156 L: platform-driver-x86@vger.kernel.org
3158 W: http://acpi4asus.sf.net
3159 F: drivers/platform/x86/asus*.c
3160 F: drivers/platform/x86/eeepc*.c
3162 ASUS TF103C DOCK DRIVER
3163 M: Hans de Goede <hdegoede@redhat.com>
3164 L: platform-driver-x86@vger.kernel.org
3166 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3167 F: drivers/platform/x86/asus-tf103c-dock.c
3169 ASUS WMI HARDWARE MONITOR DRIVER
3170 M: Ed Brindley <kernel@maidavale.org>
3171 M: Denis Pauk <pauk.denis@gmail.com>
3172 L: linux-hwmon@vger.kernel.org
3174 F: drivers/hwmon/asus_wmi_sensors.c
3176 ASUS EC HARDWARE MONITOR DRIVER
3177 M: Eugene Shalygin <eugene.shalygin@gmail.com>
3178 L: linux-hwmon@vger.kernel.org
3180 F: drivers/hwmon/asus-ec-sensors.c
3182 ASUS WIRELESS RADIO CONTROL DRIVER
3183 M: João Paulo Rechi Vita <jprvita@gmail.com>
3184 L: platform-driver-x86@vger.kernel.org
3186 F: drivers/platform/x86/asus-wireless.c
3189 M: David Howells <dhowells@redhat.com>
3190 L: keyrings@vger.kernel.org
3192 F: Documentation/crypto/asymmetric-keys.rst
3193 F: crypto/asymmetric_keys/
3194 F: include/crypto/pkcs7.h
3195 F: include/crypto/public_key.h
3196 F: include/linux/verification.h
3198 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3199 R: Dan Williams <dan.j.williams@intel.com>
3201 W: http://sourceforge.net/projects/xscaleiop
3202 F: Documentation/crypto/async-tx-api.rst
3204 F: include/linux/async_tx.h
3207 M: Bartosz Golaszewski <brgl@bgdev.pl>
3208 L: linux-i2c@vger.kernel.org
3210 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3211 F: Documentation/devicetree/bindings/eeprom/at24.yaml
3212 F: drivers/misc/eeprom/at24.c
3214 ATA OVER ETHERNET (AOE) DRIVER
3215 M: "Justin Sanders" <justin@coraid.com>
3217 W: http://www.openaoe.org/
3218 F: Documentation/admin-guide/aoe/
3219 F: drivers/block/aoe/
3221 ATC260X PMIC MFD DRIVER
3222 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3223 M: Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3224 L: linux-actions@lists.infradead.org
3226 F: Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3227 F: drivers/input/misc/atc260x-onkey.c
3228 F: drivers/mfd/atc260*
3229 F: drivers/power/reset/atc260x-poweroff.c
3230 F: drivers/regulator/atc260x-regulator.c
3231 F: include/linux/mfd/atc260x/*
3233 ATHEROS 71XX/9XXX GPIO DRIVER
3234 M: Alban Bedel <albeu@free.fr>
3236 W: https://github.com/AlbanBedel/linux
3237 T: git git://github.com/AlbanBedel/linux
3238 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3239 F: drivers/gpio/gpio-ath79.c
3241 ATHEROS 71XX/9XXX USB PHY DRIVER
3242 M: Alban Bedel <albeu@free.fr>
3244 W: https://github.com/AlbanBedel/linux
3245 T: git git://github.com/AlbanBedel/linux
3246 F: Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3247 F: drivers/phy/qualcomm/phy-ath79-usb.c
3249 ATHEROS ATH GENERIC UTILITIES
3250 M: Kalle Valo <kvalo@kernel.org>
3251 L: linux-wireless@vger.kernel.org
3253 F: drivers/net/wireless/ath/*
3255 ATHEROS ATH5K WIRELESS DRIVER
3256 M: Jiri Slaby <jirislaby@kernel.org>
3257 M: Nick Kossifidis <mickflemm@gmail.com>
3258 M: Luis Chamberlain <mcgrof@kernel.org>
3259 L: linux-wireless@vger.kernel.org
3261 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3262 F: drivers/net/wireless/ath/ath5k/
3264 ATHEROS ATH6KL WIRELESS DRIVER
3265 L: linux-wireless@vger.kernel.org
3267 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3268 F: drivers/net/wireless/ath/ath6kl/
3271 M: Ville Syrjala <syrjala@sci.fi>
3273 F: drivers/input/misc/ati_remote2.c
3275 ATK0110 HWMON DRIVER
3276 M: Luca Tettamanti <kronos.it@gmail.com>
3277 L: linux-hwmon@vger.kernel.org
3279 F: drivers/hwmon/asus_atk0110.c
3281 ATLX ETHERNET DRIVERS
3282 M: Chris Snook <chris.snook@gmail.com>
3283 L: netdev@vger.kernel.org
3285 W: http://sourceforge.net/projects/atl1
3286 W: http://atl1.sourceforge.net
3287 F: drivers/net/ethernet/atheros/
3290 M: Chas Williams <3chas3@gmail.com>
3291 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3292 L: netdev@vger.kernel.org
3294 W: http://linux-atm.sourceforge.net
3296 F: include/linux/atm*
3297 F: include/uapi/linux/atm*
3299 ATMEL MACB ETHERNET DRIVER
3300 M: Nicolas Ferre <nicolas.ferre@microchip.com>
3301 M: Claudiu Beznea <claudiu.beznea@microchip.com>
3303 F: drivers/net/ethernet/cadence/
3305 ATMEL MAXTOUCH DRIVER
3306 M: Nick Dyer <nick@shmanahar.org>
3308 T: git git://github.com/ndyer/linux.git
3309 F: Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3310 F: drivers/input/touchscreen/atmel_mxt_ts.c
3312 ATMEL WIRELESS DRIVER
3313 M: Simon Kelley <simon@thekelleys.org.uk>
3314 L: linux-wireless@vger.kernel.org
3316 W: http://www.thekelleys.org.uk/atmel
3317 W: http://atmelwlandriver.sourceforge.net/
3318 F: drivers/net/wireless/atmel/atmel*
3320 ATOMIC INFRASTRUCTURE
3321 M: Will Deacon <will@kernel.org>
3322 M: Peter Zijlstra <peterz@infradead.org>
3323 R: Boqun Feng <boqun.feng@gmail.com>
3324 R: Mark Rutland <mark.rutland@arm.com>
3325 L: linux-kernel@vger.kernel.org
3327 F: arch/*/include/asm/atomic*.h
3328 F: include/*/atomic*.h
3329 F: include/linux/refcount.h
3330 F: Documentation/atomic_*.txt
3333 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3334 M: Bradley Grove <linuxdrivers@attotech.com>
3335 L: linux-scsi@vger.kernel.org
3337 W: http://www.attotech.com
3338 F: drivers/scsi/esas2r
3340 ATUSB IEEE 802.15.4 RADIO DRIVER
3341 M: Stefan Schmidt <stefan@datenfreihafen.org>
3342 L: linux-wpan@vger.kernel.org
3344 F: drivers/net/ieee802154/at86rf230.h
3345 F: drivers/net/ieee802154/atusb.c
3346 F: drivers/net/ieee802154/atusb.h
3349 M: Paul Moore <paul@paul-moore.com>
3350 M: Eric Paris <eparis@redhat.com>
3351 L: linux-audit@redhat.com (moderated for non-subscribers)
3353 W: https://github.com/linux-audit
3354 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3355 F: include/asm-generic/audit_*.h
3356 F: include/linux/audit.h
3357 F: include/linux/audit_arch.h
3358 F: include/uapi/linux/audit.h
3362 AUXILIARY DISPLAY DRIVERS
3363 M: Miguel Ojeda <ojeda@kernel.org>
3365 F: Documentation/devicetree/bindings/auxdisplay/
3366 F: drivers/auxdisplay/
3367 F: include/linux/cfag12864b.h
3369 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3370 M: Andreas Klinger <ak@it-klinger.de>
3371 L: linux-iio@vger.kernel.org
3373 F: Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3374 F: drivers/iio/adc/hx711.c
3377 M: Ralf Baechle <ralf@linux-mips.org>
3378 L: linux-hams@vger.kernel.org
3380 W: http://www.linux-ax25.org/
3381 F: include/net/ax25.h
3382 F: include/uapi/linux/ax25.h
3386 M: Peter Rosin <peda@axentia.se>
3387 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3389 F: arch/arm/boot/dts/at91-linea.dtsi
3390 F: arch/arm/boot/dts/at91-natte.dtsi
3391 F: arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3392 F: arch/arm/boot/dts/at91-tse850-3.dts
3394 AXENTIA ASOC DRIVERS
3395 M: Peter Rosin <peda@axentia.se>
3396 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3398 F: Documentation/devicetree/bindings/sound/axentia,*
3399 F: sound/soc/atmel/tse850-pcm5142.c
3401 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3402 M: Nuno Sá <nuno.sa@analog.com>
3403 L: linux-hwmon@vger.kernel.org
3405 W: https://ez.analog.com/linux-software-drivers
3406 F: Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3407 F: drivers/hwmon/axi-fan-control.c
3409 AXXIA I2C CONTROLLER
3410 M: Krzysztof Adamski <krzysztof.adamski@nokia.com>
3411 L: linux-i2c@vger.kernel.org
3413 F: Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3414 F: drivers/i2c/busses/i2c-axxia.c
3417 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3418 L: linux-media@vger.kernel.org
3420 W: https://linuxtv.org
3421 T: git git://linuxtv.org/media_tree.git
3422 F: drivers/media/usb/dvb-usb-v2/az6007.c
3424 AZTECH FM RADIO RECEIVER DRIVER
3425 M: Hans Verkuil <hverkuil@xs4all.nl>
3426 L: linux-media@vger.kernel.org
3428 W: https://linuxtv.org
3429 T: git git://linuxtv.org/media_tree.git
3430 F: drivers/media/radio/radio-aztech*
3433 L: linux-wireless@vger.kernel.org
3434 L: b43-dev@lists.infradead.org
3436 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3437 F: drivers/net/wireless/broadcom/b43/
3439 B43LEGACY WIRELESS DRIVER
3440 M: Larry Finger <Larry.Finger@lwfinger.net>
3441 L: linux-wireless@vger.kernel.org
3442 L: b43-dev@lists.infradead.org
3444 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3445 F: drivers/net/wireless/broadcom/b43legacy/
3447 BACKLIGHT CLASS/SUBSYSTEM
3448 M: Lee Jones <lee@kernel.org>
3449 M: Daniel Thompson <daniel.thompson@linaro.org>
3450 M: Jingoo Han <jingoohan1@gmail.com>
3451 L: dri-devel@lists.freedesktop.org
3453 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3454 F: Documentation/ABI/stable/sysfs-class-backlight
3455 F: Documentation/ABI/testing/sysfs-class-backlight
3456 F: Documentation/devicetree/bindings/leds/backlight
3457 F: drivers/video/backlight/
3458 F: include/linux/backlight.h
3459 F: include/linux/pwm_backlight.h
3461 BARCO P50 GPIO DRIVER
3462 M: Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3463 M: Peter Korsgaard <peter.korsgaard@barco.com>
3465 F: drivers/platform/x86/barco-p50-gpio.c
3468 M: Marek Lindner <mareklindner@neomailbox.ch>
3469 M: Simon Wunderlich <sw@simonwunderlich.de>
3470 M: Antonio Quartulli <a@unstable.cc>
3471 M: Sven Eckelmann <sven@narfation.org>
3472 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3474 W: https://www.open-mesh.org/
3475 Q: https://patchwork.open-mesh.org/project/batman/list/
3476 B: https://www.open-mesh.org/projects/batman-adv/issues
3477 C: ircs://irc.hackint.org/batadv
3478 T: git https://git.open-mesh.org/linux-merge.git
3479 F: Documentation/networking/batman-adv.rst
3480 F: include/uapi/linux/batadv_packet.h
3481 F: include/uapi/linux/batman_adv.h
3484 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3485 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
3486 L: linux-hams@vger.kernel.org
3488 W: http://www.baycom.org/~tom/ham/ham.html
3489 F: drivers/net/hamradio/baycom*
3491 BCACHE (BLOCK LAYER CACHE)
3492 M: Coly Li <colyli@suse.de>
3493 M: Kent Overstreet <kent.overstreet@gmail.com>
3494 L: linux-bcache@vger.kernel.org
3496 W: http://bcache.evilpiepirate.org
3497 C: irc://irc.oftc.net/bcache
3498 F: drivers/md/bcache/
3500 BDISP ST MEDIA DRIVER
3501 M: Fabien Dessenne <fabien.dessenne@foss.st.com>
3502 L: linux-media@vger.kernel.org
3504 W: https://linuxtv.org
3505 T: git git://linuxtv.org/media_tree.git
3506 F: drivers/media/platform/st/sti/bdisp
3508 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3509 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
3510 L: netdev@vger.kernel.org
3512 F: drivers/net/ethernet/ec_bhf.c
3515 M: Luis de Bethencourt <luisbg@kernel.org>
3516 M: Salah Triki <salah.triki@gmail.com>
3518 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3519 F: Documentation/filesystems/befs.rst
3523 M: Paolo Valente <paolo.valente@linaro.org>
3524 M: Jens Axboe <axboe@kernel.dk>
3525 L: linux-block@vger.kernel.org
3527 F: Documentation/block/bfq-iosched.rst
3531 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3533 F: Documentation/filesystems/bfs.rst
3535 F: include/uapi/linux/bfs_fs.h
3538 M: Yury Norov <yury.norov@gmail.com>
3539 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3540 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
3542 F: include/linux/bitmap.h
3543 F: include/linux/cpumask.h
3544 F: include/linux/find.h
3545 F: include/linux/nodemask.h
3548 F: lib/cpumask_kunit.c
3550 F: lib/find_bit_benchmark.c
3551 F: lib/test_bitmap.c
3552 F: tools/include/linux/bitmap.h
3553 F: tools/include/linux/find.h
3554 F: tools/lib/bitmap.c
3555 F: tools/lib/find_bit.c
3557 BLINKM RGB LED DRIVER
3558 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
3560 F: drivers/leds/leds-blinkm.c
3563 M: Jens Axboe <axboe@kernel.dk>
3564 L: linux-block@vger.kernel.org
3566 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3567 F: Documentation/ABI/stable/sysfs-block
3568 F: Documentation/block/
3571 F: include/linux/bio.h
3572 F: include/linux/blk*
3573 F: kernel/trace/blktrace.c
3577 M: Joern Engel <joern@lazybastard.org>
3578 L: linux-mtd@lists.infradead.org
3580 F: drivers/mtd/devices/block2mtd.c
3583 M: Marcel Holtmann <marcel@holtmann.org>
3584 M: Johan Hedberg <johan.hedberg@gmail.com>
3585 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3586 L: linux-bluetooth@vger.kernel.org
3588 W: http://www.bluez.org/
3589 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3590 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3591 F: drivers/bluetooth/
3594 M: Marcel Holtmann <marcel@holtmann.org>
3595 M: Johan Hedberg <johan.hedberg@gmail.com>
3596 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3597 L: linux-bluetooth@vger.kernel.org
3599 W: http://www.bluez.org/
3600 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3601 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3602 F: include/net/bluetooth/
3606 M: Jay Vosburgh <j.vosburgh@gmail.com>
3607 M: Andy Gospodarek <andy@greyhouse.net>
3608 L: netdev@vger.kernel.org
3610 W: http://sourceforge.net/projects/bonding/
3611 F: Documentation/networking/bonding.rst
3612 F: drivers/net/bonding/
3613 F: include/net/bond*
3614 F: include/uapi/linux/if_bonding.h
3615 F: tools/testing/selftests/drivers/net/bonding/
3617 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3618 M: Dan Robertson <dan@dlrobertson.com>
3619 L: linux-iio@vger.kernel.org
3621 F: Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3622 F: drivers/iio/accel/bma400*
3624 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3625 M: Alexei Starovoitov <ast@kernel.org>
3626 M: Daniel Borkmann <daniel@iogearbox.net>
3627 M: Andrii Nakryiko <andrii@kernel.org>
3628 R: Martin KaFai Lau <martin.lau@linux.dev>
3629 R: Song Liu <song@kernel.org>
3630 R: Yonghong Song <yhs@fb.com>
3631 R: John Fastabend <john.fastabend@gmail.com>
3632 R: KP Singh <kpsingh@kernel.org>
3633 R: Stanislav Fomichev <sdf@google.com>
3634 R: Hao Luo <haoluo@google.com>
3635 R: Jiri Olsa <jolsa@kernel.org>
3636 L: bpf@vger.kernel.org
3639 Q: https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3640 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3641 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3642 F: Documentation/bpf/
3643 F: Documentation/networking/filter.rst
3644 F: Documentation/userspace-api/ebpf/
3646 F: include/linux/bpf*
3647 F: include/linux/btf*
3648 F: include/linux/filter.h
3649 F: include/trace/events/xdp.h
3650 F: include/uapi/linux/bpf*
3651 F: include/uapi/linux/btf*
3652 F: include/uapi/linux/filter.h
3654 F: kernel/trace/bpf_trace.c
3657 F: net/core/filter.c
3658 F: net/sched/act_bpf.c
3659 F: net/sched/cls_bpf.c
3661 F: scripts/bpf_doc.py
3662 F: scripts/pahole-flags.sh
3663 F: scripts/pahole-version.sh
3666 F: tools/testing/selftests/bpf/
3669 M: Shubham Bansal <illusionist.neo@gmail.com>
3670 L: bpf@vger.kernel.org
3675 M: Daniel Borkmann <daniel@iogearbox.net>
3676 M: Alexei Starovoitov <ast@kernel.org>
3677 M: Zi Shen Lim <zlim.lnx@gmail.com>
3678 L: bpf@vger.kernel.org
3682 BPF JIT for MIPS (32-BIT AND 64-BIT)
3683 M: Johan Almbladh <johan.almbladh@anyfinetworks.com>
3684 M: Paul Burton <paulburton@kernel.org>
3685 L: bpf@vger.kernel.org
3689 BPF JIT for NFP NICs
3690 M: Jakub Kicinski <kuba@kernel.org>
3691 L: bpf@vger.kernel.org
3693 F: drivers/net/ethernet/netronome/nfp/bpf/
3695 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3696 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3697 M: Michael Ellerman <mpe@ellerman.id.au>
3698 L: bpf@vger.kernel.org
3700 F: arch/powerpc/net/
3702 BPF JIT for RISC-V (32-bit)
3703 M: Luke Nelson <luke.r.nels@gmail.com>
3704 M: Xi Wang <xi.wang@gmail.com>
3705 L: bpf@vger.kernel.org
3708 X: arch/riscv/net/bpf_jit_comp64.c
3710 BPF JIT for RISC-V (64-bit)
3711 M: Björn Töpel <bjorn@kernel.org>
3712 L: bpf@vger.kernel.org
3715 X: arch/riscv/net/bpf_jit_comp32.c
3718 M: Ilya Leoshkevich <iii@linux.ibm.com>
3719 M: Heiko Carstens <hca@linux.ibm.com>
3720 M: Vasily Gorbik <gor@linux.ibm.com>
3721 L: bpf@vger.kernel.org
3724 X: arch/s390/net/pnet.c
3726 BPF JIT for SPARC (32-BIT AND 64-BIT)
3727 M: David S. Miller <davem@davemloft.net>
3728 L: bpf@vger.kernel.org
3732 BPF JIT for X86 32-BIT
3733 M: Wang YanQing <udknight@gmail.com>
3734 L: bpf@vger.kernel.org
3736 F: arch/x86/net/bpf_jit_comp32.c
3738 BPF JIT for X86 64-BIT
3739 M: Alexei Starovoitov <ast@kernel.org>
3740 M: Daniel Borkmann <daniel@iogearbox.net>
3741 L: bpf@vger.kernel.org
3744 X: arch/x86/net/bpf_jit_comp32.c
3747 M: Alexei Starovoitov <ast@kernel.org>
3748 M: Daniel Borkmann <daniel@iogearbox.net>
3749 R: John Fastabend <john.fastabend@gmail.com>
3750 L: bpf@vger.kernel.org
3752 F: kernel/bpf/verifier.c
3753 F: kernel/bpf/tnum.c
3754 F: kernel/bpf/core.c
3755 F: kernel/bpf/syscall.c
3756 F: kernel/bpf/dispatcher.c
3757 F: kernel/bpf/trampoline.c
3758 F: include/linux/bpf*
3759 F: include/linux/filter.h
3760 F: include/linux/tnum.h
3763 M: Martin KaFai Lau <martin.lau@linux.dev>
3764 L: bpf@vger.kernel.org
3767 F: include/linux/btf*
3770 M: Song Liu <song@kernel.org>
3771 R: Jiri Olsa <jolsa@kernel.org>
3772 L: bpf@vger.kernel.org
3774 F: kernel/trace/bpf_trace.c
3775 F: kernel/bpf/stackmap.c
3777 BPF [NETWORKING] (tc BPF, sock_addr)
3778 M: Martin KaFai Lau <martin.lau@linux.dev>
3779 M: Daniel Borkmann <daniel@iogearbox.net>
3780 R: John Fastabend <john.fastabend@gmail.com>
3781 L: bpf@vger.kernel.org
3782 L: netdev@vger.kernel.org
3784 F: net/core/filter.c
3785 F: net/sched/act_bpf.c
3786 F: net/sched/cls_bpf.c
3788 BPF [NETWORKING] (struct_ops, reuseport)
3789 M: Martin KaFai Lau <martin.lau@linux.dev>
3790 L: bpf@vger.kernel.org
3791 L: netdev@vger.kernel.org
3793 F: kernel/bpf/bpf_struct*
3795 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3796 M: KP Singh <kpsingh@kernel.org>
3797 R: Florent Revest <revest@chromium.org>
3798 R: Brendan Jackman <jackmanb@chromium.org>
3799 L: bpf@vger.kernel.org
3801 F: Documentation/bpf/prog_lsm.rst
3802 F: include/linux/bpf_lsm.h
3803 F: kernel/bpf/bpf_lsm.c
3806 BPF [STORAGE & CGROUPS]
3807 M: Martin KaFai Lau <martin.lau@linux.dev>
3808 L: bpf@vger.kernel.org
3810 F: kernel/bpf/cgroup.c
3811 F: kernel/bpf/*storage.c
3812 F: kernel/bpf/bpf_lru*
3815 M: Andrii Nakryiko <andrii@kernel.org>
3816 L: bpf@vger.kernel.org
3818 F: kernel/bpf/ringbuf.c
3821 M: Yonghong Song <yhs@fb.com>
3822 L: bpf@vger.kernel.org
3824 F: kernel/bpf/*iter.c
3826 BPF [L7 FRAMEWORK] (sockmap)
3827 M: John Fastabend <john.fastabend@gmail.com>
3828 M: Jakub Sitnicki <jakub@cloudflare.com>
3829 L: netdev@vger.kernel.org
3830 L: bpf@vger.kernel.org
3832 F: include/linux/skmsg.h
3834 F: net/core/sock_map.c
3835 F: net/ipv4/tcp_bpf.c
3836 F: net/ipv4/udp_bpf.c
3837 F: net/unix/unix_bpf.c
3839 BPF [LIBRARY] (libbpf)
3840 M: Andrii Nakryiko <andrii@kernel.org>
3841 L: bpf@vger.kernel.org
3845 BPF [TOOLING] (bpftool)
3846 M: Quentin Monnet <quentin@isovalent.com>
3847 L: bpf@vger.kernel.org
3849 F: kernel/bpf/disasm.*
3850 F: tools/bpf/bpftool/
3852 BPF [SELFTESTS] (Test Runners & Infrastructure)
3853 M: Andrii Nakryiko <andrii@kernel.org>
3854 R: Mykola Lysenko <mykolal@fb.com>
3855 L: bpf@vger.kernel.org
3857 F: tools/testing/selftests/bpf/
3860 L: bpf@vger.kernel.org
3862 K: (?:\b|_)bpf(?:\b|_)
3864 BROADCOM B44 10/100 ETHERNET DRIVER
3865 M: Michael Chan <michael.chan@broadcom.com>
3866 L: netdev@vger.kernel.org
3868 F: drivers/net/ethernet/broadcom/b44.*
3870 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3871 M: Florian Fainelli <f.fainelli@gmail.com>
3872 L: netdev@vger.kernel.org
3873 L: openwrt-devel@lists.openwrt.org (subscribers-only)
3875 F: Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3876 F: drivers/net/dsa/b53/*
3877 F: drivers/net/dsa/bcm_sf2*
3878 F: include/linux/dsa/brcm.h
3879 F: include/linux/platform_data/b53.h
3881 BROADCOM BCMBCA ARM ARCHITECTURE
3882 M: William Zhang <william.zhang@broadcom.com>
3883 M: Anand Gore <anand.gore@broadcom.com>
3884 M: Kursad Oney <kursad.oney@broadcom.com>
3885 M: Florian Fainelli <f.fainelli@gmail.com>
3886 M: Rafał Miłecki <rafal@milecki.pl>
3887 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3888 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3890 T: git https://github.com/broadcom/stblinux.git
3891 F: Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3892 F: arch/arm64/boot/dts/broadcom/bcmbca/*
3909 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3910 M: Florian Fainelli <f.fainelli@gmail.com>
3911 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3912 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3913 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3915 T: git https://github.com/broadcom/stblinux.git
3916 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3917 F: drivers/pci/controller/pcie-brcmstb.c
3918 F: drivers/staging/vc04_services
3923 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3924 M: Florian Fainelli <f.fainelli@gmail.com>
3925 M: Ray Jui <rjui@broadcom.com>
3926 M: Scott Branden <sbranden@broadcom.com>
3927 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3929 T: git https://github.com/broadcom/mach-bcm
3930 F: arch/arm/mach-bcm/
3936 BROADCOM BCM47XX MIPS ARCHITECTURE
3937 M: Hauke Mehrtens <hauke@hauke-m.de>
3938 M: Rafał Miłecki <zajec5@gmail.com>
3939 L: linux-mips@vger.kernel.org
3941 F: Documentation/devicetree/bindings/mips/brcm/
3942 F: arch/mips/bcm47xx/*
3943 F: arch/mips/include/asm/mach-bcm47xx/*
3945 BROADCOM BCM4908 ETHERNET DRIVER
3946 M: Rafał Miłecki <rafal@milecki.pl>
3947 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3948 L: netdev@vger.kernel.org
3950 F: Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3951 F: drivers/net/ethernet/broadcom/bcm4908_enet.*
3952 F: drivers/net/ethernet/broadcom/unimac.h
3954 BROADCOM BCM4908 PINMUX DRIVER
3955 M: Rafał Miłecki <rafal@milecki.pl>
3956 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3957 L: linux-gpio@vger.kernel.org
3959 F: Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3960 F: drivers/pinctrl/bcm/pinctrl-bcm4908.c
3962 BROADCOM BCM5301X ARM ARCHITECTURE
3963 M: Florian Fainelli <f.fainelli@gmail.com>
3964 M: Hauke Mehrtens <hauke@hauke-m.de>
3965 M: Rafał Miłecki <zajec5@gmail.com>
3966 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3967 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3969 F: arch/arm/boot/dts/bcm470*
3970 F: arch/arm/boot/dts/bcm5301*
3971 F: arch/arm/boot/dts/bcm953012*
3972 F: arch/arm/mach-bcm/bcm_5301x.c
3974 BROADCOM BCM53573 ARM ARCHITECTURE
3975 M: Florian Fainelli <f.fainelli@gmail.com>
3976 M: Rafał Miłecki <rafal@milecki.pl>
3977 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3978 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3980 F: arch/arm/boot/dts/bcm47189*
3981 F: arch/arm/boot/dts/bcm53573*
3983 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3984 M: Kevin Cernekee <cernekee@gmail.com>
3985 L: linux-usb@vger.kernel.org
3987 F: drivers/usb/gadget/udc/bcm63xx_udc.*
3989 BROADCOM BCM7XXX ARM ARCHITECTURE
3990 M: Florian Fainelli <f.fainelli@gmail.com>
3991 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3992 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3994 T: git https://github.com/broadcom/stblinux.git
3995 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3996 F: arch/arm/boot/dts/bcm7*.dts*
3997 F: arch/arm/include/asm/hardware/cache-b15-rac.h
3998 F: arch/arm/mach-bcm/*brcmstb*
3999 F: arch/arm/mm/cache-b15-rac.c
4000 F: drivers/bus/brcmstb_gisb.c
4001 F: drivers/pci/controller/pcie-brcmstb.c
4007 M: Justin Chen <justinpopo6@gmail.com>
4008 M: Al Cooper <alcooperx@gmail.com>
4009 L: linux-usb@vger.kernel.org
4010 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4012 F: Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4013 F: drivers/usb/gadget/udc/bdc/
4015 BROADCOM BMIPS CPUFREQ DRIVER
4016 M: Markus Mayer <mmayer@broadcom.com>
4017 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4018 L: linux-pm@vger.kernel.org
4020 F: drivers/cpufreq/bmips-cpufreq.c
4022 BROADCOM BMIPS MIPS ARCHITECTURE
4023 M: Florian Fainelli <f.fainelli@gmail.com>
4024 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4025 L: linux-mips@vger.kernel.org
4027 T: git https://github.com/broadcom/stblinux.git
4028 F: arch/mips/bmips/*
4029 F: arch/mips/boot/dts/brcm/bcm*.dts*
4030 F: arch/mips/include/asm/mach-bmips/*
4031 F: arch/mips/kernel/*bmips*
4032 F: drivers/soc/bcm/bcm63xx
4033 F: drivers/irqchip/irq-bcm63*
4034 F: drivers/irqchip/irq-bcm7*
4035 F: drivers/irqchip/irq-brcmstb*
4036 F: include/linux/bcm963xx_nvram.h
4037 F: include/linux/bcm963xx_tag.h
4039 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4040 M: Rasesh Mody <rmody@marvell.com>
4041 M: GR-Linux-NIC-Dev@marvell.com
4042 L: netdev@vger.kernel.org
4044 F: drivers/net/ethernet/broadcom/bnx2.*
4045 F: drivers/net/ethernet/broadcom/bnx2_*
4047 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4048 M: Saurav Kashyap <skashyap@marvell.com>
4049 M: Javed Hasan <jhasan@marvell.com>
4050 M: GR-QLogic-Storage-Upstream@marvell.com
4051 L: linux-scsi@vger.kernel.org
4053 F: drivers/scsi/bnx2fc/
4055 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4056 M: Nilesh Javali <njavali@marvell.com>
4057 M: Manish Rangankar <mrangankar@marvell.com>
4058 M: GR-QLogic-Storage-Upstream@marvell.com
4059 L: linux-scsi@vger.kernel.org
4061 F: drivers/scsi/bnx2i/
4063 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4064 M: Ariel Elior <aelior@marvell.com>
4065 M: Sudarsana Kalluru <skalluru@marvell.com>
4066 M: Manish Chopra <manishc@marvell.com>
4067 L: netdev@vger.kernel.org
4069 F: drivers/net/ethernet/broadcom/bnx2x/
4071 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4072 M: Michael Chan <michael.chan@broadcom.com>
4073 L: netdev@vger.kernel.org
4075 F: drivers/firmware/broadcom/tee_bnxt_fw.c
4076 F: drivers/net/ethernet/broadcom/bnxt/
4077 F: include/linux/firmware/broadcom/tee_bnxt_fw.h
4079 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4080 M: Arend van Spriel <aspriel@gmail.com>
4081 M: Franky Lin <franky.lin@broadcom.com>
4082 M: Hante Meuleman <hante.meuleman@broadcom.com>
4083 L: linux-wireless@vger.kernel.org
4084 L: brcm80211-dev-list.pdl@broadcom.com
4085 L: SHA-cyfmac-dev-list@infineon.com
4087 F: drivers/net/wireless/broadcom/brcm80211/
4089 BROADCOM BRCMSTB GPIO DRIVER
4090 M: Doug Berger <opendmb@gmail.com>
4091 M: Florian Fainelli <f.fainelli@gmail.com>
4092 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4094 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4095 F: drivers/gpio/gpio-brcmstb.c
4097 BROADCOM BRCMSTB I2C DRIVER
4098 M: Kamal Dasu <kdasu.kdev@gmail.com>
4099 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4100 L: linux-i2c@vger.kernel.org
4102 F: Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4103 F: drivers/i2c/busses/i2c-brcmstb.c
4105 BROADCOM BRCMSTB UART DRIVER
4106 M: Al Cooper <alcooperx@gmail.com>
4107 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4108 L: linux-serial@vger.kernel.org
4110 F: Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4111 F: drivers/tty/serial/8250/8250_bcm7271.c
4113 BROADCOM BRCMSTB USB EHCI DRIVER
4114 M: Justin Chen <justinpopo6@gmail.com>
4115 M: Al Cooper <alcooperx@gmail.com>
4116 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4117 L: linux-usb@vger.kernel.org
4119 F: Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4120 F: drivers/usb/host/ehci-brcm.*
4122 BROADCOM BRCMSTB USB PIN MAP DRIVER
4123 M: Al Cooper <alcooperx@gmail.com>
4124 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4125 L: linux-usb@vger.kernel.org
4127 F: Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4128 F: drivers/usb/misc/brcmstb-usb-pinmap.c
4130 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4131 M: Justin Chen <justinpopo6@gmail.com>
4132 M: Al Cooper <alcooperx@gmail.com>
4133 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4134 L: linux-kernel@vger.kernel.org
4136 F: drivers/phy/broadcom/phy-brcm-usb*
4138 BROADCOM ETHERNET PHY DRIVERS
4139 M: Florian Fainelli <f.fainelli@gmail.com>
4140 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4141 L: netdev@vger.kernel.org
4143 F: Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4144 F: drivers/net/phy/bcm*.[ch]
4145 F: drivers/net/phy/broadcom.c
4146 F: include/linux/brcmphy.h
4148 BROADCOM GENET ETHERNET DRIVER
4149 M: Doug Berger <opendmb@gmail.com>
4150 M: Florian Fainelli <f.fainelli@gmail.com>
4151 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4152 L: netdev@vger.kernel.org
4154 F: Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4155 F: Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4156 F: drivers/net/ethernet/broadcom/genet/
4157 F: drivers/net/ethernet/broadcom/unimac.h
4158 F: drivers/net/mdio/mdio-bcm-unimac.c
4159 F: include/linux/platform_data/bcmgenet.h
4160 F: include/linux/platform_data/mdio-bcm-unimac.h
4162 BROADCOM IPROC ARM ARCHITECTURE
4163 M: Ray Jui <rjui@broadcom.com>
4164 M: Scott Branden <sbranden@broadcom.com>
4165 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4166 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4168 T: git https://github.com/broadcom/stblinux.git
4169 F: arch/arm64/boot/dts/broadcom/northstar2/*
4170 F: arch/arm64/boot/dts/broadcom/stingray/*
4171 F: drivers/clk/bcm/clk-ns*
4172 F: drivers/clk/bcm/clk-sr*
4173 F: drivers/pinctrl/bcm/pinctrl-ns*
4174 F: include/dt-bindings/clock/bcm-sr*
4191 BROADCOM IPROC GBIT ETHERNET DRIVER
4192 M: Rafał Miłecki <rafal@milecki.pl>
4193 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4194 L: netdev@vger.kernel.org
4196 F: Documentation/devicetree/bindings/net/brcm,amac.yaml
4197 F: drivers/net/ethernet/broadcom/bgmac*
4198 F: drivers/net/ethernet/broadcom/unimac.h
4200 BROADCOM KONA GPIO DRIVER
4201 M: Ray Jui <rjui@broadcom.com>
4202 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4204 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4205 F: drivers/gpio/gpio-bcm-kona.c
4207 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4208 M: Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4209 M: Kashyap Desai <kashyap.desai@broadcom.com>
4210 M: Sumit Saxena <sumit.saxena@broadcom.com>
4211 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4212 L: mpi3mr-linuxdrv.pdl@broadcom.com
4213 L: linux-scsi@vger.kernel.org
4215 W: https://www.broadcom.com/support/storage
4216 F: drivers/scsi/mpi3mr/
4218 BROADCOM NETXTREME-E ROCE DRIVER
4219 M: Selvin Xavier <selvin.xavier@broadcom.com>
4220 L: linux-rdma@vger.kernel.org
4222 W: http://www.broadcom.com
4223 F: drivers/infiniband/hw/bnxt_re/
4224 F: include/uapi/rdma/bnxt_re-abi.h
4226 BROADCOM NVRAM DRIVER
4227 M: Rafał Miłecki <zajec5@gmail.com>
4228 L: linux-mips@vger.kernel.org
4230 F: drivers/firmware/broadcom/*
4232 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4233 M: Rafał Miłecki <rafal@milecki.pl>
4234 M: Florian Fainelli <f.fainelli@gmail.com>
4235 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4236 L: linux-pm@vger.kernel.org
4238 T: git https://github.com/broadcom/stblinux.git
4239 F: drivers/soc/bcm/bcm63xx/bcm-pmb.c
4240 F: include/dt-bindings/soc/bcm-pmb.h
4242 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4243 M: Rafał Miłecki <zajec5@gmail.com>
4244 L: linux-wireless@vger.kernel.org
4247 F: include/linux/bcma/
4250 M: Kamal Dasu <kdasu.kdev@gmail.com>
4251 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4253 F: Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4254 F: drivers/spi/spi-bcm-qspi.*
4255 F: drivers/spi/spi-brcmstb-qspi.c
4256 F: drivers/spi/spi-iproc-qspi.c
4258 BROADCOM STB AVS CPUFREQ DRIVER
4259 M: Markus Mayer <mmayer@broadcom.com>
4260 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4261 L: linux-pm@vger.kernel.org
4263 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4264 F: drivers/cpufreq/brcmstb*
4266 BROADCOM STB AVS TMON DRIVER
4267 M: Markus Mayer <mmayer@broadcom.com>
4268 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4269 L: linux-pm@vger.kernel.org
4271 F: Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4272 F: drivers/thermal/broadcom/brcmstb*
4274 BROADCOM STB DPFE DRIVER
4275 M: Markus Mayer <mmayer@broadcom.com>
4276 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4277 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4279 F: Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4280 F: drivers/memory/brcmstb_dpfe.c
4282 BROADCOM STB NAND FLASH DRIVER
4283 M: Brian Norris <computersforpeace@gmail.com>
4284 M: Kamal Dasu <kdasu.kdev@gmail.com>
4285 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4286 L: linux-mtd@lists.infradead.org
4288 F: drivers/mtd/nand/raw/brcmnand/
4289 F: include/linux/platform_data/brcmnand.h
4291 BROADCOM STB PCIE DRIVER
4292 M: Jim Quinlan <jim2101024@gmail.com>
4293 M: Nicolas Saenz Julienne <nsaenz@kernel.org>
4294 M: Florian Fainelli <f.fainelli@gmail.com>
4295 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4296 L: linux-pci@vger.kernel.org
4298 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4299 F: drivers/pci/controller/pcie-brcmstb.c
4301 BROADCOM SYSTEMPORT ETHERNET DRIVER
4302 M: Florian Fainelli <f.fainelli@gmail.com>
4303 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4304 L: netdev@vger.kernel.org
4306 F: drivers/net/ethernet/broadcom/bcmsysport.*
4307 F: drivers/net/ethernet/broadcom/unimac.h
4308 F: Documentation/devicetree/bindings/net/brcm,systemport.yaml
4310 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4311 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
4312 M: Prashant Sreedharan <prashant@broadcom.com>
4313 M: Michael Chan <mchan@broadcom.com>
4314 L: netdev@vger.kernel.org
4316 F: drivers/net/ethernet/broadcom/tg3.*
4319 M: Scott Branden <scott.branden@broadcom.com>
4320 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4322 F: drivers/misc/bcm-vk/
4323 F: include/uapi/linux/misc/bcm_vk.h
4325 BROCADE BFA FC SCSI DRIVER
4326 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4327 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4328 L: linux-scsi@vger.kernel.org
4330 F: drivers/scsi/bfa/
4332 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4333 M: Rasesh Mody <rmody@marvell.com>
4334 M: Sudarsana Kalluru <skalluru@marvell.com>
4335 M: GR-Linux-NIC-Dev@marvell.com
4336 L: netdev@vger.kernel.org
4338 F: drivers/net/ethernet/brocade/bna/
4340 BSG (block layer generic sg v4 driver)
4341 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4342 L: linux-scsi@vger.kernel.org
4345 F: include/linux/bsg.h
4346 F: include/uapi/linux/bsg.h
4349 M: Clemens Ladisch <clemens@ladisch.de>
4350 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4352 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4353 F: Documentation/sound/cards/bt87x.rst
4354 F: sound/pci/bt87x.c
4357 M: Michael Buesch <m@bues.ch>
4359 W: http://bu3sch.de/btgpio.php
4360 F: drivers/gpio/gpio-bt8xx.c
4363 M: Chris Mason <clm@fb.com>
4364 M: Josef Bacik <josef@toxicpanda.com>
4365 M: David Sterba <dsterba@suse.com>
4366 L: linux-btrfs@vger.kernel.org
4368 W: https://btrfs.readthedocs.io
4369 W: https://btrfs.wiki.kernel.org/
4370 Q: https://patchwork.kernel.org/project/linux-btrfs/list/
4371 C: irc://irc.libera.chat/btrfs
4372 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4373 F: Documentation/filesystems/btrfs.rst
4375 F: include/linux/btrfs*
4376 F: include/trace/events/btrfs.h
4377 F: include/uapi/linux/btrfs*
4379 BTTV VIDEO4LINUX DRIVER
4380 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4381 L: linux-media@vger.kernel.org
4383 W: https://linuxtv.org
4384 T: git git://linuxtv.org/media_tree.git
4385 F: Documentation/driver-api/media/drivers/bttv*
4386 F: drivers/media/pci/bt8xx/bttv*
4388 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4389 M: Chanwoo Choi <cw00.choi@samsung.com>
4390 L: linux-pm@vger.kernel.org
4391 L: linux-samsung-soc@vger.kernel.org
4393 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4394 F: Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4395 F: drivers/devfreq/exynos-bus.c
4397 BUSLOGIC SCSI DRIVER
4398 M: Khalid Aziz <khalid@gonehiking.org>
4399 L: linux-scsi@vger.kernel.org
4401 F: drivers/scsi/BusLogic.*
4402 F: drivers/scsi/FlashPoint.*
4404 C-MEDIA CMI8788 DRIVER
4405 M: Clemens Ladisch <clemens@ladisch.de>
4406 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4408 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4409 F: sound/pci/oxygen/
4412 M: Guo Ren <guoren@kernel.org>
4413 L: linux-csky@vger.kernel.org
4415 T: git https://github.com/c-sky/csky-linux.git
4416 F: Documentation/devicetree/bindings/csky/
4417 F: Documentation/devicetree/bindings/interrupt-controller/csky,*
4418 F: Documentation/devicetree/bindings/timer/csky,*
4420 F: drivers/clocksource/timer-gx6605s.c
4421 F: drivers/clocksource/timer-mp-csky.c
4422 F: drivers/irqchip/irq-csky-*
4426 CA8210 IEEE-802.15.4 RADIO DRIVER
4427 L: linux-wpan@vger.kernel.org
4429 W: https://github.com/Cascoda/ca8210-linux.git
4430 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4431 F: drivers/net/ieee802154/ca8210.c
4433 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4434 M: Damien Le Moal <damien.lemoal@wdc.com>
4435 L: linux-riscv@lists.infradead.org
4436 L: linux-gpio@vger.kernel.org (pinctrl driver)
4437 F: Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4438 F: drivers/pinctrl/pinctrl-k210.c
4440 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4441 M: Damien Le Moal <damien.lemoal@wdc.com>
4442 L: linux-kernel@vger.kernel.org
4443 L: linux-riscv@lists.infradead.org
4445 F: Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4446 F: drivers/reset/reset-k210.c
4448 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4449 M: Damien Le Moal <damien.lemoal@wdc.com>
4450 L: linux-riscv@lists.infradead.org
4452 F: Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4453 F: drivers/soc/canaan/
4454 F: include/soc/canaan/
4456 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4457 M: David Howells <dhowells@redhat.com>
4458 L: linux-cachefs@redhat.com (moderated for non-subscribers)
4460 F: Documentation/filesystems/caching/cachefiles.rst
4463 CADENCE MIPI-CSI2 BRIDGES
4464 M: Maxime Ripard <mripard@kernel.org>
4465 L: linux-media@vger.kernel.org
4467 F: Documentation/devicetree/bindings/media/cdns,*.txt
4468 F: drivers/media/platform/cadence/cdns-csi2*
4471 L: linux-mtd@lists.infradead.org
4473 F: Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4474 F: drivers/mtd/nand/raw/cadence-nand-controller.c
4476 CADENCE USB3 DRD IP DRIVER
4477 M: Peter Chen <peter.chen@kernel.org>
4478 M: Pawel Laszczak <pawell@cadence.com>
4479 R: Roger Quadros <rogerq@kernel.org>
4480 R: Aswath Govindraju <a-govindraju@ti.com>
4481 L: linux-usb@vger.kernel.org
4483 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4484 F: Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4485 F: drivers/usb/cdns3/
4486 X: drivers/usb/cdns3/cdnsp*
4488 CADENCE USBSSP DRD IP DRIVER
4489 M: Pawel Laszczak <pawell@cadence.com>
4490 L: linux-usb@vger.kernel.org
4492 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4493 F: drivers/usb/cdns3/
4494 X: drivers/usb/cdns3/cdns3*
4496 CADET FM/AM RADIO RECEIVER DRIVER
4497 M: Hans Verkuil <hverkuil@xs4all.nl>
4498 L: linux-media@vger.kernel.org
4500 W: https://linuxtv.org
4501 T: git git://linuxtv.org/media_tree.git
4502 F: drivers/media/radio/radio-cadet*
4504 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4505 L: linux-media@vger.kernel.org
4507 T: git git://linuxtv.org/media_tree.git
4508 F: Documentation/admin-guide/media/cafe_ccic*
4509 F: drivers/media/platform/marvell/
4512 L: netdev@vger.kernel.org
4514 F: Documentation/networking/caif/
4515 F: drivers/net/caif/
4516 F: include/net/caif/
4517 F: include/uapi/linux/caif/
4521 M: Toke Høiland-Jørgensen <toke@toke.dk>
4522 L: cake@lists.bufferbloat.net (moderated for non-subscribers)
4524 F: net/sched/sch_cake.c
4527 M: Wolfgang Grandegger <wg@grandegger.com>
4528 M: Marc Kleine-Budde <mkl@pengutronix.de>
4529 L: linux-can@vger.kernel.org
4531 W: https://github.com/linux-can
4532 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4533 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4534 F: Documentation/devicetree/bindings/net/can/
4535 F: Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4537 F: drivers/phy/phy-can-transceiver.c
4538 F: include/linux/can/bittiming.h
4539 F: include/linux/can/dev.h
4540 F: include/linux/can/length.h
4541 F: include/linux/can/platform/
4542 F: include/linux/can/rx-offload.h
4543 F: include/uapi/linux/can/error.h
4544 F: include/uapi/linux/can/netlink.h
4545 F: include/uapi/linux/can/vxcan.h
4548 M: Oliver Hartkopp <socketcan@hartkopp.net>
4549 M: Marc Kleine-Budde <mkl@pengutronix.de>
4550 L: linux-can@vger.kernel.org
4552 W: https://github.com/linux-can
4553 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4554 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4555 F: Documentation/networking/can.rst
4556 F: include/linux/can/can-ml.h
4557 F: include/linux/can/core.h
4558 F: include/linux/can/skb.h
4559 F: include/net/netns/can.h
4560 F: include/uapi/linux/can.h
4561 F: include/uapi/linux/can/bcm.h
4562 F: include/uapi/linux/can/gw.h
4563 F: include/uapi/linux/can/isotp.h
4564 F: include/uapi/linux/can/raw.h
4567 CAN-J1939 NETWORK LAYER
4568 M: Robin van der Gracht <robin@protonic.nl>
4569 M: Oleksij Rempel <o.rempel@pengutronix.de>
4570 R: kernel@pengutronix.de
4571 L: linux-can@vger.kernel.org
4573 F: Documentation/networking/j1939.rst
4574 F: include/uapi/linux/can/j1939.h
4578 M: Serge Hallyn <serge@hallyn.com>
4579 L: linux-security-module@vger.kernel.org
4581 F: include/linux/capability.h
4582 F: include/uapi/linux/capability.h
4583 F: kernel/capability.c
4584 F: security/commoncap.c
4586 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4587 M: Kevin Tsai <ktsai@capellamicro.com>
4589 F: drivers/iio/light/cm*
4591 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4592 M: Christian Lamparter <chunkeey@googlemail.com>
4593 L: linux-wireless@vger.kernel.org
4595 W: https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4596 F: drivers/net/wireless/ath/carl9170/
4599 M: Robert Richter <rric@kernel.org>
4601 W: http://www.marvell.com
4602 F: drivers/i2c/busses/i2c-octeon*
4603 F: drivers/i2c/busses/i2c-thunderx*
4605 CAVIUM LIQUIDIO NETWORK DRIVER
4606 M: Derek Chickles <dchickles@marvell.com>
4607 M: Satanand Burla <sburla@marvell.com>
4608 M: Felix Manlunas <fmanlunas@marvell.com>
4609 L: netdev@vger.kernel.org
4611 W: http://www.marvell.com
4612 F: drivers/net/ethernet/cavium/liquidio/
4615 M: Robert Richter <rric@kernel.org>
4617 W: http://www.marvell.com
4618 F: drivers/mmc/host/cavium*
4620 CAVIUM OCTEON-TX CRYPTO DRIVER
4621 M: George Cherian <gcherian@marvell.com>
4622 L: linux-crypto@vger.kernel.org
4624 W: http://www.marvell.com
4625 F: drivers/crypto/cavium/cpt/
4627 CAVIUM THUNDERX2 ARM64 SOC
4628 M: Robert Richter <rric@kernel.org>
4629 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4631 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4632 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
4634 CBS/ETF/TAPRIO QDISCS
4635 M: Vinicius Costa Gomes <vinicius.gomes@intel.com>
4637 L: netdev@vger.kernel.org
4638 F: net/sched/sch_cbs.c
4639 F: net/sched/sch_etf.c
4640 F: net/sched/sch_taprio.c
4642 CC2520 IEEE-802.15.4 RADIO DRIVER
4643 M: Varka Bhadram <varkabhadram@gmail.com>
4644 L: linux-wpan@vger.kernel.org
4646 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4647 F: drivers/net/ieee802154/cc2520.c
4648 F: include/linux/spi/cc2520.h
4650 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4651 M: Gilad Ben-Yossef <gilad@benyossef.com>
4652 L: linux-crypto@vger.kernel.org
4654 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4655 F: drivers/crypto/ccree/
4657 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4658 M: Hadar Gat <hadar.gat@arm.com>
4659 L: linux-crypto@vger.kernel.org
4661 F: drivers/char/hw_random/cctrng.c
4662 F: drivers/char/hw_random/cctrng.h
4663 F: Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4664 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4667 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4668 L: linux-media@vger.kernel.org
4670 W: http://linuxtv.org
4671 T: git git://linuxtv.org/media_tree.git
4672 F: Documentation/ABI/testing/debugfs-cec-error-inj
4673 F: Documentation/devicetree/bindings/media/cec.txt
4674 F: Documentation/driver-api/media/cec-core.rst
4675 F: Documentation/userspace-api/media/cec
4676 F: drivers/media/cec/
4677 F: drivers/media/rc/keymaps/rc-cec.c
4678 F: include/media/cec-notifier.h
4679 F: include/media/cec.h
4680 F: include/uapi/linux/cec-funcs.h
4681 F: include/uapi/linux/cec.h
4684 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4685 L: linux-media@vger.kernel.org
4687 W: http://linuxtv.org
4688 T: git git://linuxtv.org/media_tree.git
4689 F: Documentation/devicetree/bindings/media/cec-gpio.txt
4690 F: drivers/media/cec/platform/cec-gpio/
4692 CELL BROADBAND ENGINE ARCHITECTURE
4693 M: Arnd Bergmann <arnd@arndb.de>
4694 L: linuxppc-dev@lists.ozlabs.org
4696 W: http://www.ibm.com/developerworks/power/cell/
4697 F: arch/powerpc/include/asm/cell*.h
4698 F: arch/powerpc/include/asm/spu*.h
4699 F: arch/powerpc/include/uapi/asm/spu*.h
4700 F: arch/powerpc/platforms/cell/
4702 CELLWISE CW2015 BATTERY DRIVER
4703 M: Tobias Schrammm <t.schramm@manjaro.org>
4705 F: Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4706 F: drivers/power/supply/cw2015_battery.c
4708 CEPH COMMON CODE (LIBCEPH)
4709 M: Ilya Dryomov <idryomov@gmail.com>
4710 M: Xiubo Li <xiubli@redhat.com>
4711 R: Jeff Layton <jlayton@kernel.org>
4712 L: ceph-devel@vger.kernel.org
4715 T: git https://github.com/ceph/ceph-client.git
4716 F: include/linux/ceph/
4717 F: include/linux/crush/
4720 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4721 M: Xiubo Li <xiubli@redhat.com>
4722 M: Ilya Dryomov <idryomov@gmail.com>
4723 R: Jeff Layton <jlayton@kernel.org>
4724 L: ceph-devel@vger.kernel.org
4727 T: git https://github.com/ceph/ceph-client.git
4728 F: Documentation/filesystems/ceph.rst
4731 CERTIFICATE HANDLING
4732 M: David Howells <dhowells@redhat.com>
4733 M: David Woodhouse <dwmw2@infradead.org>
4734 L: keyrings@vger.kernel.org
4736 F: Documentation/admin-guide/module-signing.rst
4738 F: scripts/sign-file.c
4741 CFAG12864B LCD DRIVER
4742 M: Miguel Ojeda <ojeda@kernel.org>
4744 F: drivers/auxdisplay/cfag12864b.c
4745 F: include/linux/cfag12864b.h
4747 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4748 M: Miguel Ojeda <ojeda@kernel.org>
4750 F: drivers/auxdisplay/cfag12864bfb.c
4751 F: include/linux/cfag12864b.h
4753 CHAR and MISC DRIVERS
4754 M: Arnd Bergmann <arnd@arndb.de>
4755 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4757 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4760 F: include/linux/miscdevice.h
4761 X: drivers/char/agp/
4762 X: drivers/char/hw_random/
4763 X: drivers/char/ipmi/
4764 X: drivers/char/random.c
4765 X: drivers/char/tpm/
4768 M: Andy Whitcroft <apw@canonical.com>
4769 M: Joe Perches <joe@perches.com>
4770 R: Dwaipayan Ray <dwaipayanray1@gmail.com>
4771 R: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4773 F: scripts/checkpatch.pl
4775 CHECKPATCH DOCUMENTATION
4776 M: Dwaipayan Ray <dwaipayanray1@gmail.com>
4777 M: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4778 R: Joe Perches <joe@perches.com>
4780 F: Documentation/dev-tools/checkpatch.rst
4782 CHINESE DOCUMENTATION
4783 M: Alex Shi <alexs@kernel.org>
4784 M: Yanteng Si <siyanteng@loongson.cn>
4786 F: Documentation/translations/zh_CN/
4788 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4789 M: Peter Chen <peter.chen@kernel.org>
4790 L: linux-usb@vger.kernel.org
4792 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4793 F: drivers/usb/chipidea/
4795 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4796 M: Hans de Goede <hdegoede@redhat.com>
4797 L: linux-input@vger.kernel.org
4799 F: Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4800 F: drivers/input/touchscreen/chipone_icn8318.c
4802 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4803 M: Hans de Goede <hdegoede@redhat.com>
4804 L: linux-input@vger.kernel.org
4806 F: drivers/input/touchscreen/chipone_icn8505.c
4808 CHROME HARDWARE PLATFORM SUPPORT
4809 M: Benson Leung <bleung@chromium.org>
4810 L: chrome-platform@lists.linux.dev
4812 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4813 F: drivers/platform/chrome/
4815 CHROMEOS EC CODEC DRIVER
4816 M: Cheng-Yi Chiang <cychiang@chromium.org>
4817 M: Tzung-Bi Shih <tzungbi@kernel.org>
4818 R: Guenter Roeck <groeck@chromium.org>
4819 L: chrome-platform@lists.linux.dev
4821 F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4822 F: sound/soc/codecs/cros_ec_codec.*
4824 CHROMEOS EC SUBDRIVERS
4825 M: Benson Leung <bleung@chromium.org>
4826 R: Guenter Roeck <groeck@chromium.org>
4827 L: chrome-platform@lists.linux.dev
4829 F: drivers/power/supply/cros_usbpd-charger.c
4833 CHROMEOS EC USB TYPE-C DRIVER
4834 M: Prashant Malani <pmalani@chromium.org>
4835 L: chrome-platform@lists.linux.dev
4837 F: drivers/platform/chrome/cros_ec_typec.c
4838 F: drivers/platform/chrome/cros_typec_switch.c
4840 CHROMEOS EC USB PD NOTIFY DRIVER
4841 M: Prashant Malani <pmalani@chromium.org>
4842 L: chrome-platform@lists.linux.dev
4844 F: drivers/platform/chrome/cros_usbpd_notify.c
4845 F: include/linux/platform_data/cros_usbpd_notify.h
4848 M: Dan Callaghan <dcallagh@chromium.org>
4849 R: Sami Kyöstilä <skyostil@chromium.org>
4851 F: drivers/platform/chrome/cros_hps_i2c.c
4853 CHRONTEL CH7322 CEC DRIVER
4854 M: Joe Tessler <jrt@google.com>
4855 L: linux-media@vger.kernel.org
4857 T: git git://linuxtv.org/media_tree.git
4858 F: Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4859 F: drivers/media/cec/i2c/ch7322.c
4861 CIRRUS LOGIC AUDIO CODEC DRIVERS
4862 M: James Schulman <james.schulman@cirrus.com>
4863 M: David Rhodes <david.rhodes@cirrus.com>
4864 M: Lucas Tanure <tanureal@opensource.cirrus.com>
4865 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4866 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4867 L: patches@opensource.cirrus.com
4869 F: Documentation/devicetree/bindings/sound/cirrus,cs*
4870 F: include/dt-bindings/sound/cs*
4871 F: sound/pci/hda/cs*
4872 F: sound/pci/hda/hda_cs_dsp_ctl.*
4873 F: sound/soc/codecs/cs*
4875 CIRRUS LOGIC DSP FIRMWARE DRIVER
4876 M: Simon Trimmer <simont@opensource.cirrus.com>
4877 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4878 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4879 L: patches@opensource.cirrus.com
4881 W: https://github.com/CirrusLogic/linux-drivers/wiki
4882 T: git https://github.com/CirrusLogic/linux-drivers.git
4883 F: drivers/firmware/cirrus/*
4884 F: include/linux/firmware/cirrus/*
4886 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4887 M: Hartley Sweeten <hsweeten@visionengravers.com>
4888 L: netdev@vger.kernel.org
4890 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
4892 CIRRUS LOGIC LOCHNAGAR DRIVER
4893 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4894 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4895 L: patches@opensource.cirrus.com
4897 F: Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4898 F: Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4899 F: Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4900 F: Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4901 F: Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4902 F: Documentation/hwmon/lochnagar.rst
4903 F: drivers/clk/clk-lochnagar.c
4904 F: drivers/hwmon/lochnagar-hwmon.c
4905 F: drivers/mfd/lochnagar-i2c.c
4906 F: drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4907 F: drivers/regulator/lochnagar-regulator.c
4908 F: include/dt-bindings/clock/lochnagar.h
4909 F: include/dt-bindings/pinctrl/lochnagar.h
4910 F: include/linux/mfd/lochnagar*
4911 F: sound/soc/codecs/lochnagar-sc.c
4913 CIRRUS LOGIC MADERA CODEC DRIVERS
4914 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4915 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4916 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4917 L: patches@opensource.cirrus.com
4919 W: https://github.com/CirrusLogic/linux-drivers/wiki
4920 T: git https://github.com/CirrusLogic/linux-drivers.git
4921 F: Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4922 F: Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4923 F: Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4924 F: drivers/gpio/gpio-madera*
4925 F: drivers/irqchip/irq-madera*
4926 F: drivers/mfd/cs47l*
4927 F: drivers/mfd/madera*
4928 F: drivers/pinctrl/cirrus/*
4929 F: include/dt-bindings/sound/madera*
4930 F: include/linux/irqchip/irq-madera*
4931 F: include/linux/mfd/madera/*
4932 F: include/sound/madera*
4933 F: sound/soc/codecs/cs47l*
4934 F: sound/soc/codecs/madera*
4936 CISCO FCOE HBA DRIVER
4937 M: Satish Kharat <satishkh@cisco.com>
4938 M: Sesidhar Baddela <sebaddel@cisco.com>
4939 M: Karan Tilak Kumar <kartilak@cisco.com>
4940 L: linux-scsi@vger.kernel.org
4942 F: drivers/scsi/fnic/
4944 CISCO SCSI HBA DRIVER
4945 M: Karan Tilak Kumar <kartilak@cisco.com>
4946 M: Sesidhar Baddela <sebaddel@cisco.com>
4947 L: linux-scsi@vger.kernel.org
4949 F: drivers/scsi/snic/
4951 CISCO VIC ETHERNET NIC DRIVER
4952 M: Christian Benvenuti <benve@cisco.com>
4953 M: Satish Kharat <satishkh@cisco.com>
4955 F: drivers/net/ethernet/cisco/enic/
4957 CISCO VIC LOW LATENCY NIC DRIVER
4958 M: Christian Benvenuti <benve@cisco.com>
4959 M: Nelson Escobar <neescoba@cisco.com>
4961 F: drivers/infiniband/hw/usnic/
4964 M: Miguel Ojeda <ojeda@kernel.org>
4968 CLANG/LLVM BUILD SUPPORT
4969 M: Nathan Chancellor <nathan@kernel.org>
4970 M: Nick Desaulniers <ndesaulniers@google.com>
4971 R: Tom Rix <trix@redhat.com>
4972 L: llvm@lists.linux.dev
4974 W: https://clangbuiltlinux.github.io/
4975 B: https://github.com/ClangBuiltLinux/linux/issues
4976 C: irc://irc.libera.chat/clangbuiltlinux
4977 F: Documentation/kbuild/llvm.rst
4978 F: include/linux/compiler-clang.h
4979 F: scripts/Makefile.clang
4980 F: scripts/clang-tools/
4981 K: \b(?i:clang|llvm)\b
4983 CLANG CONTROL FLOW INTEGRITY SUPPORT
4984 M: Sami Tolvanen <samitolvanen@google.com>
4985 M: Kees Cook <keescook@chromium.org>
4986 R: Nathan Chancellor <nathan@kernel.org>
4987 R: Nick Desaulniers <ndesaulniers@google.com>
4988 L: llvm@lists.linux.dev
4990 B: https://github.com/ClangBuiltLinux/linux/issues
4991 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
4992 F: include/linux/cfi.h
4996 M: Russell King <linux@armlinux.org.uk>
4997 L: linux-clk@vger.kernel.org
4999 F: include/linux/clk.h
5001 CLOCKSOURCE, CLOCKEVENT DRIVERS
5002 M: Daniel Lezcano <daniel.lezcano@linaro.org>
5003 M: Thomas Gleixner <tglx@linutronix.de>
5004 L: linux-kernel@vger.kernel.org
5006 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5007 F: Documentation/devicetree/bindings/timer/
5008 F: drivers/clocksource/
5011 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5012 M: Daniel Oliveira Nascimento <don@syst.com.br>
5013 L: platform-driver-x86@vger.kernel.org
5015 F: drivers/platform/x86/classmate-laptop.c
5018 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
5019 L: linux-media@vger.kernel.org
5021 W: https://linuxtv.org
5022 T: git git://linuxtv.org/media_tree.git
5023 F: drivers/media/pci/cobalt/
5025 COCCINELLE/Semantic Patches (SmPL)
5026 M: Julia Lawall <Julia.Lawall@inria.fr>
5027 M: Nicolas Palix <nicolas.palix@imag.fr>
5028 L: cocci@inria.fr (moderated for non-subscribers)
5030 W: https://coccinelle.gitlabpages.inria.fr/website/
5031 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5032 F: Documentation/dev-tools/coccinelle.rst
5033 F: scripts/coccicheck
5034 F: scripts/coccinelle/
5037 M: Jan Harkes <jaharkes@cs.cmu.edu>
5039 L: codalist@coda.cs.cmu.edu
5041 W: http://www.coda.cs.cmu.edu/
5042 F: Documentation/filesystems/coda.rst
5044 F: include/linux/coda*.h
5045 F: include/uapi/linux/coda*.h
5047 CODA V4L2 MEM2MEM DRIVER
5048 M: Philipp Zabel <p.zabel@pengutronix.de>
5049 L: linux-media@vger.kernel.org
5051 F: Documentation/devicetree/bindings/media/coda.yaml
5052 F: drivers/media/platform/chips-media/
5055 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5057 F: Documentation/process/code-of-conduct-interpretation.rst
5058 F: Documentation/process/code-of-conduct.rst
5061 M: Ian Abbott <abbotti@mev.co.uk>
5062 M: H Hartley Sweeten <hsweeten@visionengravers.com>
5065 F: include/linux/comedi/
5066 F: include/uapi/linux/comedi.h
5068 COMMON CLK FRAMEWORK
5069 M: Michael Turquette <mturquette@baylibre.com>
5070 M: Stephen Boyd <sboyd@kernel.org>
5071 L: linux-clk@vger.kernel.org
5073 Q: http://patchwork.kernel.org/project/linux-clk/list/
5074 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5075 F: Documentation/devicetree/bindings/clock/
5077 F: include/dt-bindings/clock/
5078 F: include/linux/clk-pr*
5079 F: include/linux/clk/
5080 F: include/linux/of_clk.h
5081 X: drivers/clk/clkdev.c
5083 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5084 M: Steve French <sfrench@samba.org>
5085 R: Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5086 R: Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5087 R: Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5088 R: Tom Talpey <tom@talpey.com> (RDMA, smbdirect)
5089 L: linux-cifs@vger.kernel.org
5090 L: samba-technical@lists.samba.org (moderated for non-subscribers)
5092 W: https://wiki.samba.org/index.php/LinuxCIFS
5093 T: git git://git.samba.org/sfrench/cifs-2.6.git
5094 F: Documentation/admin-guide/cifs/
5097 F: include/uapi/linux/cifs
5099 COMPACTPCI HOTPLUG CORE
5100 M: Scott Murray <scott@spiteful.org>
5101 L: linux-pci@vger.kernel.org
5103 F: drivers/pci/hotplug/cpci_hotplug*
5105 COMPACTPCI HOTPLUG GENERIC DRIVER
5106 M: Scott Murray <scott@spiteful.org>
5107 L: linux-pci@vger.kernel.org
5109 F: drivers/pci/hotplug/cpcihp_generic.c
5111 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5112 M: Scott Murray <scott@spiteful.org>
5113 L: linux-pci@vger.kernel.org
5115 F: drivers/pci/hotplug/cpcihp_zt5550.*
5117 COMPAL LAPTOP SUPPORT
5118 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5119 L: platform-driver-x86@vger.kernel.org
5121 F: drivers/platform/x86/compal-laptop.c
5124 M: Miguel Ojeda <ojeda@kernel.org>
5125 R: Nick Desaulniers <ndesaulniers@google.com>
5127 F: include/linux/compiler_attributes.h
5129 COMPUTE EXPRESS LINK (CXL)
5130 M: Alison Schofield <alison.schofield@intel.com>
5131 M: Vishal Verma <vishal.l.verma@intel.com>
5132 M: Ira Weiny <ira.weiny@intel.com>
5133 M: Ben Widawsky <bwidawsk@kernel.org>
5134 M: Dan Williams <dan.j.williams@intel.com>
5135 L: linux-cxl@vger.kernel.org
5138 F: include/uapi/linux/cxl_mem.h
5140 CONEXANT ACCESSRUNNER USB DRIVER
5141 L: accessrunner-general@lists.sourceforge.net
5143 W: http://accessrunner.sourceforge.net/
5144 F: drivers/usb/atm/cxacru.c
5147 M: Joel Becker <jlbec@evilplan.org>
5148 M: Christoph Hellwig <hch@lst.de>
5150 T: git git://git.infradead.org/users/hch/configfs.git
5152 F: include/linux/configfs.h
5153 F: samples/configfs/
5156 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5158 F: drivers/video/console/
5159 F: include/linux/console*
5162 M: Frederic Weisbecker <frederic@kernel.org>
5163 M: "Paul E. McKenney" <paulmck@kernel.org>
5165 F: kernel/context_tracking.c
5166 F: include/linux/context_tracking*
5168 CONTROL GROUP (CGROUP)
5169 M: Tejun Heo <tj@kernel.org>
5170 M: Zefan Li <lizefan.x@bytedance.com>
5171 M: Johannes Weiner <hannes@cmpxchg.org>
5172 L: cgroups@vger.kernel.org
5174 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5175 F: Documentation/admin-guide/cgroup-v1/
5176 F: Documentation/admin-guide/cgroup-v2.rst
5177 F: include/linux/cgroup*
5179 F: tools/testing/selftests/cgroup/
5181 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5182 M: Tejun Heo <tj@kernel.org>
5183 M: Josef Bacik <josef@toxicpanda.com>
5184 M: Jens Axboe <axboe@kernel.dk>
5185 L: cgroups@vger.kernel.org
5186 L: linux-block@vger.kernel.org
5187 T: git git://git.kernel.dk/linux-block
5188 F: Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5189 F: block/bfq-cgroup.c
5190 F: block/blk-cgroup.c
5191 F: block/blk-iocost.c
5192 F: block/blk-iolatency.c
5193 F: block/blk-throttle.c
5194 F: include/linux/blk-cgroup.h
5196 CONTROL GROUP - CPUSET
5197 M: Waiman Long <longman@redhat.com>
5198 M: Zefan Li <lizefan.x@bytedance.com>
5199 L: cgroups@vger.kernel.org
5201 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5202 F: Documentation/admin-guide/cgroup-v1/cpusets.rst
5203 F: include/linux/cpuset.h
5204 F: kernel/cgroup/cpuset.c
5206 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5207 M: Johannes Weiner <hannes@cmpxchg.org>
5208 M: Michal Hocko <mhocko@kernel.org>
5209 M: Roman Gushchin <roman.gushchin@linux.dev>
5210 M: Shakeel Butt <shakeelb@google.com>
5211 R: Muchun Song <muchun.song@linux.dev>
5212 L: cgroups@vger.kernel.org
5213 L: linux-mm@kvack.org
5217 F: tools/testing/selftests/cgroup/memcg_protection.m
5218 F: tools/testing/selftests/cgroup/test_kmem.c
5219 F: tools/testing/selftests/cgroup/test_memcontrol.c
5221 CORETEMP HARDWARE MONITORING DRIVER
5222 M: Fenghua Yu <fenghua.yu@intel.com>
5223 L: linux-hwmon@vger.kernel.org
5225 F: Documentation/hwmon/coretemp.rst
5226 F: drivers/hwmon/coretemp.c
5228 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5229 M: Marius Zachmann <mail@mariuszachmann.de>
5230 L: linux-hwmon@vger.kernel.org
5232 F: drivers/hwmon/corsair-cpro.c
5234 CORSAIR-PSU HARDWARE MONITOR DRIVER
5235 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
5236 L: linux-hwmon@vger.kernel.org
5238 F: Documentation/hwmon/corsair-psu.rst
5239 F: drivers/hwmon/corsair-psu.c
5242 M: William Breathitt Gray <william.gray@linaro.org>
5243 L: linux-iio@vger.kernel.org
5245 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5246 F: Documentation/ABI/testing/sysfs-bus-counter
5247 F: Documentation/driver-api/generic-counter.rst
5249 F: include/linux/counter.h
5250 F: include/uapi/linux/counter.h
5254 M: Bence Csókás <bence98@sch.bme.hu>
5256 F: drivers/i2c/busses/i2c-cp2615.c
5258 CPMAC ETHERNET DRIVER
5259 M: Florian Fainelli <f.fainelli@gmail.com>
5260 L: netdev@vger.kernel.org
5262 F: drivers/net/ethernet/ti/cpmac.c
5264 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5265 M: Viresh Kumar <viresh.kumar@linaro.org>
5266 M: Sudeep Holla <sudeep.holla@arm.com>
5267 L: linux-pm@vger.kernel.org
5269 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5270 F: drivers/cpufreq/vexpress-spc-cpufreq.c
5272 CPU FREQUENCY SCALING FRAMEWORK
5273 M: "Rafael J. Wysocki" <rafael@kernel.org>
5274 M: Viresh Kumar <viresh.kumar@linaro.org>
5275 L: linux-pm@vger.kernel.org
5277 B: https://bugzilla.kernel.org
5278 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5279 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5280 F: Documentation/admin-guide/pm/cpufreq.rst
5281 F: Documentation/admin-guide/pm/intel_pstate.rst
5282 F: Documentation/cpu-freq/
5283 F: Documentation/devicetree/bindings/cpufreq/
5285 F: include/linux/cpufreq.h
5286 F: include/linux/sched/cpufreq.h
5287 F: kernel/sched/cpufreq*.c
5288 F: tools/testing/selftests/cpufreq/
5290 CPU IDLE TIME MANAGEMENT FRAMEWORK
5291 M: "Rafael J. Wysocki" <rafael@kernel.org>
5292 M: Daniel Lezcano <daniel.lezcano@linaro.org>
5293 L: linux-pm@vger.kernel.org
5295 B: https://bugzilla.kernel.org
5296 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5297 F: Documentation/admin-guide/pm/cpuidle.rst
5298 F: Documentation/driver-api/pm/cpuidle.rst
5300 F: include/linux/cpuidle.h
5302 CPU POWER MONITORING SUBSYSTEM
5303 M: Thomas Renninger <trenn@suse.com>
5304 M: Shuah Khan <shuah@kernel.org>
5305 M: Shuah Khan <skhan@linuxfoundation.org>
5306 L: linux-pm@vger.kernel.org
5308 F: tools/power/cpupower/
5311 M: "H. Peter Anvin" <hpa@zytor.com>
5313 F: arch/x86/kernel/cpuid.c
5314 F: arch/x86/kernel/msr.c
5316 CPUIDLE DRIVER - ARM BIG LITTLE
5317 M: Lorenzo Pieralisi <lpieralisi@kernel.org>
5318 M: Daniel Lezcano <daniel.lezcano@linaro.org>
5319 L: linux-pm@vger.kernel.org
5320 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5322 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5323 F: drivers/cpuidle/cpuidle-big_little.c
5325 CPUIDLE DRIVER - ARM EXYNOS
5326 M: Daniel Lezcano <daniel.lezcano@linaro.org>
5327 R: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5328 M: Kukjin Kim <kgene@kernel.org>
5329 L: linux-pm@vger.kernel.org
5330 L: linux-samsung-soc@vger.kernel.org
5332 F: arch/arm/mach-exynos/pm.c
5333 F: drivers/cpuidle/cpuidle-exynos.c
5334 F: include/linux/platform_data/cpuidle-exynos.h
5336 CPUIDLE DRIVER - ARM PSCI
5337 M: Lorenzo Pieralisi <lpieralisi@kernel.org>
5338 M: Sudeep Holla <sudeep.holla@arm.com>
5339 L: linux-pm@vger.kernel.org
5340 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5342 F: drivers/cpuidle/cpuidle-psci.c
5344 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5345 M: Ulf Hansson <ulf.hansson@linaro.org>
5346 L: linux-pm@vger.kernel.org
5347 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5349 F: drivers/cpuidle/cpuidle-psci.h
5350 F: drivers/cpuidle/cpuidle-psci-domain.c
5352 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5353 M: Ulf Hansson <ulf.hansson@linaro.org>
5354 L: linux-pm@vger.kernel.org
5356 F: drivers/cpuidle/dt_idle_genpd.c
5357 F: drivers/cpuidle/dt_idle_genpd.h
5359 CPUIDLE DRIVER - RISC-V SBI
5360 M: Anup Patel <anup@brainfault.org>
5361 L: linux-pm@vger.kernel.org
5362 L: linux-riscv@lists.infradead.org
5364 F: drivers/cpuidle/cpuidle-riscv-sbi.c
5367 M: Nicolas Pitre <nico@fluxnic.net>
5369 F: Documentation/filesystems/cramfs.rst
5373 M: Bastien Nocera <hadess@hadess.net>
5374 L: linux-input@vger.kernel.org
5376 F: drivers/hid/hid-creative-sb0540.c
5379 M: Herbert Xu <herbert@gondor.apana.org.au>
5380 M: "David S. Miller" <davem@davemloft.net>
5381 L: linux-crypto@vger.kernel.org
5383 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5384 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5385 F: Documentation/crypto/
5386 F: Documentation/devicetree/bindings/crypto/
5391 F: include/linux/crypto*
5394 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5395 M: Neil Horman <nhorman@tuxdriver.com>
5396 L: linux-crypto@vger.kernel.org
5398 F: crypto/ansi_cprng.c
5402 M: Hans Verkuil <hverkuil@xs4all.nl>
5403 L: linux-media@vger.kernel.org
5405 W: http://linuxtv.org
5406 T: git git://linuxtv.org/media_tree.git
5407 F: drivers/media/i2c/cs3308.c
5409 CS5535 Audio ALSA driver
5410 M: Jaya Kumar <jayakumar.alsa@gmail.com>
5412 F: sound/pci/cs5535audio/
5415 M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
5416 M: Ondrej Ille <ondrej.ille@gmail.com>
5417 L: linux-can@vger.kernel.org
5419 F: Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5420 F: drivers/net/can/ctucanfd/
5423 M: Solomon Peachy <pizza@shaftnet.org>
5425 F: drivers/net/wireless/st/cw1200/
5427 CX18 VIDEO4LINUX DRIVER
5428 M: Andy Walls <awalls@md.metrocast.net>
5429 L: linux-media@vger.kernel.org
5431 W: https://linuxtv.org
5432 T: git git://linuxtv.org/media_tree.git
5433 F: drivers/media/pci/cx18/
5434 F: include/uapi/linux/ivtv*
5436 CX2341X MPEG ENCODER HELPER MODULE
5437 M: Hans Verkuil <hverkuil@xs4all.nl>
5438 L: linux-media@vger.kernel.org
5440 W: https://linuxtv.org
5441 T: git git://linuxtv.org/media_tree.git
5442 F: drivers/media/common/cx2341x*
5443 F: include/media/drv-intf/cx2341x.h
5445 CX24120 MEDIA DRIVER
5446 M: Jemma Denson <jdenson@gmail.com>
5447 M: Patrick Boettcher <patrick.boettcher@posteo.de>
5448 L: linux-media@vger.kernel.org
5450 W: https://linuxtv.org
5451 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5452 F: drivers/media/dvb-frontends/cx24120*
5454 CX88 VIDEO4LINUX DRIVER
5455 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5456 L: linux-media@vger.kernel.org
5458 W: https://linuxtv.org
5459 T: git git://linuxtv.org/media_tree.git
5460 F: Documentation/driver-api/media/drivers/cx88*
5461 F: drivers/media/pci/cx88/
5463 CXD2820R MEDIA DRIVER
5464 M: Antti Palosaari <crope@iki.fi>
5465 L: linux-media@vger.kernel.org
5467 W: https://linuxtv.org
5468 W: http://palosaari.fi/linux/
5469 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5470 T: git git://linuxtv.org/anttip/media_tree.git
5471 F: drivers/media/dvb-frontends/cxd2820r*
5473 CXGB3 ETHERNET DRIVER (CXGB3)
5474 M: Raju Rangoju <rajur@chelsio.com>
5475 L: netdev@vger.kernel.org
5477 W: http://www.chelsio.com
5478 F: drivers/net/ethernet/chelsio/cxgb3/
5480 CXGB3 ISCSI DRIVER (CXGB3I)
5481 M: Varun Prakash <varun@chelsio.com>
5482 L: linux-scsi@vger.kernel.org
5484 W: http://www.chelsio.com
5485 F: drivers/scsi/cxgbi/cxgb3i
5487 CXGB4 CRYPTO DRIVER (chcr)
5488 M: Ayush Sawal <ayush.sawal@chelsio.com>
5489 L: linux-crypto@vger.kernel.org
5491 W: http://www.chelsio.com
5492 F: drivers/crypto/chelsio
5494 CXGB4 INLINE CRYPTO DRIVER
5495 M: Ayush Sawal <ayush.sawal@chelsio.com>
5496 L: netdev@vger.kernel.org
5498 W: http://www.chelsio.com
5499 F: drivers/net/ethernet/chelsio/inline_crypto/
5501 CXGB4 ETHERNET DRIVER (CXGB4)
5502 M: Raju Rangoju <rajur@chelsio.com>
5503 L: netdev@vger.kernel.org
5505 W: http://www.chelsio.com
5506 F: drivers/net/ethernet/chelsio/cxgb4/
5508 CXGB4 ISCSI DRIVER (CXGB4I)
5509 M: Varun Prakash <varun@chelsio.com>
5510 L: linux-scsi@vger.kernel.org
5512 W: http://www.chelsio.com
5513 F: drivers/scsi/cxgbi/cxgb4i
5515 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5516 M: Potnuri Bharat Teja <bharat@chelsio.com>
5517 L: linux-rdma@vger.kernel.org
5519 W: http://www.openfabrics.org
5520 F: drivers/infiniband/hw/cxgb4/
5521 F: include/uapi/rdma/cxgb4-abi.h
5523 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5524 M: Raju Rangoju <rajur@chelsio.com>
5525 L: netdev@vger.kernel.org
5527 W: http://www.chelsio.com
5528 F: drivers/net/ethernet/chelsio/cxgb4vf/
5530 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5531 M: Frederic Barrat <fbarrat@linux.ibm.com>
5532 M: Andrew Donnellan <ajd@linux.ibm.com>
5533 L: linuxppc-dev@lists.ozlabs.org
5535 F: Documentation/ABI/testing/sysfs-class-cxl
5536 F: Documentation/powerpc/cxl.rst
5537 F: arch/powerpc/platforms/powernv/pci-cxl.c
5538 F: drivers/misc/cxl/
5539 F: include/misc/cxl*
5540 F: include/uapi/misc/cxl.h
5542 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5543 M: Manoj N. Kumar <manoj@linux.ibm.com>
5544 M: Matthew R. Ochs <mrochs@linux.ibm.com>
5545 M: Uma Krishnan <ukrishn@linux.ibm.com>
5546 L: linux-scsi@vger.kernel.org
5548 F: Documentation/powerpc/cxlflash.rst
5549 F: drivers/scsi/cxlflash/
5550 F: include/uapi/scsi/cxlflash_ioctl.h
5553 M: Russell King <linux@armlinux.org.uk>
5554 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5556 W: http://www.armlinux.org.uk/
5557 F: drivers/video/fbdev/cyber2000fb.*
5559 CYCLADES PC300 DRIVER
5561 F: drivers/net/wan/pc300*
5563 CYPRESS_FIRMWARE MEDIA DRIVER
5564 M: Antti Palosaari <crope@iki.fi>
5565 L: linux-media@vger.kernel.org
5567 W: https://linuxtv.org
5568 W: http://palosaari.fi/linux/
5569 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5570 T: git git://linuxtv.org/anttip/media_tree.git
5571 F: drivers/media/common/cypress_firmware*
5573 CYPRESS CY8C95X0 PINCTRL DRIVER
5574 M: Patrick Rudolph <patrick.rudolph@9elements.com>
5575 L: linux-gpio@vger.kernel.org
5577 F: drivers/pinctrl/pinctrl-cy8c95x0.c
5579 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5580 M: Linus Walleij <linus.walleij@linaro.org>
5581 L: linux-input@vger.kernel.org
5583 F: drivers/input/touchscreen/cy8ctma140.c
5585 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5586 M: Yassine Oudjana <y.oudjana@protonmail.com>
5587 L: linux-input@vger.kernel.org
5589 F: Documentation/devicetree/bindings/input/cypress-sf.yaml
5590 F: drivers/input/keyboard/cypress-sf.c
5592 CYTTSP TOUCHSCREEN DRIVER
5593 M: Linus Walleij <linus.walleij@linaro.org>
5594 L: linux-input@vger.kernel.org
5596 F: drivers/input/touchscreen/cyttsp*
5598 D-LINK DIR-685 TOUCHKEYS DRIVER
5599 M: Linus Walleij <linus.walleij@linaro.org>
5600 L: linux-input@vger.kernel.org
5602 F: drivers/input/keyboard/dlink-dir685-touchkeys.c
5604 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5605 M: Joshua Kinard <kumba@gentoo.org>
5607 F: drivers/rtc/rtc-ds1685.c
5608 F: include/linux/rtc/ds1685.h
5610 DAMA SLAVE for AX.25
5611 M: Joerg Reuter <jreuter@yaina.de>
5612 L: linux-hams@vger.kernel.org
5614 W: http://yaina.de/jreuter/
5615 W: http://www.qsl.net/dl1bke/
5616 F: net/ax25/af_ax25.c
5617 F: net/ax25/ax25_dev.c
5618 F: net/ax25/ax25_ds_*
5619 F: net/ax25/ax25_in.c
5620 F: net/ax25/ax25_out.c
5621 F: net/ax25/ax25_timer.c
5622 F: net/ax25/sysctl_net_ax25.c
5625 M: SeongJae Park <sj@kernel.org>
5626 L: damon@lists.linux.dev
5627 L: linux-mm@kvack.org
5629 F: Documentation/ABI/testing/sysfs-kernel-mm-damon
5630 F: Documentation/admin-guide/mm/damon/
5631 F: Documentation/mm/damon/
5632 F: include/linux/damon.h
5633 F: include/trace/events/damon.h
5635 F: tools/testing/selftests/damon/
5637 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5638 L: netdev@vger.kernel.org
5640 F: Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5641 F: drivers/net/ethernet/dec/tulip/dmfe.c
5643 DC390/AM53C974 SCSI driver
5644 M: Hannes Reinecke <hare@suse.com>
5645 L: linux-scsi@vger.kernel.org
5647 F: drivers/scsi/am53c974.c
5650 M: Oliver Neukum <oliver@neukum.org>
5651 M: Ali Akcaagac <aliakc@web.de>
5652 M: Jamie Lenehan <lenehan@twibble.org>
5653 L: dc395x@twibble.org
5655 W: http://twibble.org/dist/dc395x/
5656 W: http://lists.twibble.org/mailman/listinfo/dc395x/
5657 F: Documentation/scsi/dc395x.rst
5658 F: drivers/scsi/dc395x.*
5661 L: dccp@vger.kernel.org
5663 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5664 F: include/linux/dccp.h
5665 F: include/linux/tfrc.h
5666 F: include/uapi/linux/dccp.h
5669 DECSTATION PLATFORM SUPPORT
5670 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5671 L: linux-mips@vger.kernel.org
5673 W: http://www.linux-mips.org/wiki/DECstation
5675 F: arch/mips/include/asm/dec/
5676 F: arch/mips/include/asm/mach-dec/
5678 DEFXX FDDI NETWORK DRIVER
5679 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5681 F: drivers/net/fddi/defxx.*
5683 DEFZA FDDI NETWORK DRIVER
5684 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5686 F: drivers/net/fddi/defza.*
5688 DEINTERLACE DRIVERS FOR ALLWINNER H3
5689 M: Jernej Skrabec <jernej.skrabec@gmail.com>
5690 L: linux-media@vger.kernel.org
5692 T: git git://linuxtv.org/media_tree.git
5693 F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5694 F: drivers/media/platform/sunxi/sun8i-di/
5697 M: Matthew Garrett <mjg59@srcf.ucam.org>
5698 M: Pali Rohár <pali@kernel.org>
5699 L: platform-driver-x86@vger.kernel.org
5701 F: drivers/platform/x86/dell/dell-laptop.c
5703 DELL LAPTOP FREEFALL DRIVER
5704 M: Pali Rohár <pali@kernel.org>
5706 F: drivers/platform/x86/dell/dell-smo8800.c
5708 DELL LAPTOP RBTN DRIVER
5709 M: Pali Rohár <pali@kernel.org>
5711 F: drivers/platform/x86/dell/dell-rbtn.*
5713 DELL LAPTOP SMM DRIVER
5714 M: Pali Rohár <pali@kernel.org>
5716 F: Documentation/ABI/obsolete/procfs-i8k
5717 F: drivers/hwmon/dell-smm-hwmon.c
5718 F: include/uapi/linux/i8k.h
5720 DELL REMOTE BIOS UPDATE DRIVER
5721 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5722 L: platform-driver-x86@vger.kernel.org
5724 F: drivers/platform/x86/dell/dell_rbu.c
5727 M: Pali Rohár <pali@kernel.org>
5728 L: Dell.Client.Kernel@dell.com
5729 L: platform-driver-x86@vger.kernel.org
5731 F: drivers/platform/x86/dell/dell-smbios.*
5733 DELL SMBIOS SMM DRIVER
5734 L: Dell.Client.Kernel@dell.com
5735 L: platform-driver-x86@vger.kernel.org
5737 F: drivers/platform/x86/dell/dell-smbios-smm.c
5739 DELL SMBIOS WMI DRIVER
5740 L: Dell.Client.Kernel@dell.com
5741 L: platform-driver-x86@vger.kernel.org
5743 F: drivers/platform/x86/dell/dell-smbios-wmi.c
5744 F: tools/wmi/dell-smbios-example.c
5746 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5747 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5748 L: platform-driver-x86@vger.kernel.org
5750 F: Documentation/driver-api/dcdbas.rst
5751 F: drivers/platform/x86/dell/dcdbas.*
5753 DELL WMI DESCRIPTOR DRIVER
5754 L: Dell.Client.Kernel@dell.com
5756 F: drivers/platform/x86/dell/dell-wmi-descriptor.c
5759 M: Armin Wolf <W_Armin@gmx.de>
5761 F: Documentation/ABI/testing/debugfs-dell-wmi-ddv
5762 F: Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5763 F: drivers/platform/x86/dell/dell-wmi-ddv.c
5765 DELL WMI SYSMAN DRIVER
5766 M: Divya Bharathi <divya.bharathi@dell.com>
5767 M: Prasanth Ksr <prasanth.ksr@dell.com>
5768 L: Dell.Client.Kernel@dell.com
5769 L: platform-driver-x86@vger.kernel.org
5771 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
5772 F: drivers/platform/x86/dell/dell-wmi-sysman/
5774 DELL WMI NOTIFICATIONS DRIVER
5775 M: Matthew Garrett <mjg59@srcf.ucam.org>
5776 M: Pali Rohár <pali@kernel.org>
5778 F: drivers/platform/x86/dell/dell-wmi-base.c
5780 DELL WMI HARDWARE PRIVACY SUPPORT
5781 M: Perry Yuan <Perry.Yuan@dell.com>
5782 L: Dell.Client.Kernel@dell.com
5783 L: platform-driver-x86@vger.kernel.org
5785 F: drivers/platform/x86/dell/dell-wmi-privacy.c
5787 DELTA ST MEDIA DRIVER
5788 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
5789 L: linux-media@vger.kernel.org
5791 W: https://linuxtv.org
5792 T: git git://linuxtv.org/media_tree.git
5793 F: drivers/media/platform/st/sti/delta
5795 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5796 M: Zev Weiss <zev@bewilderbeest.net>
5797 L: linux-hwmon@vger.kernel.org
5799 F: drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5801 DELTA DPS920AB PSU DRIVER
5802 M: Robert Marko <robert.marko@sartura.hr>
5803 L: linux-hwmon@vger.kernel.org
5805 F: Documentation/hwmon/dps920ab.rst
5806 F: drivers/hwmon/pmbus/dps920ab.c
5808 DELTA NETWORKS TN48M CPLD DRIVERS
5809 M: Robert Marko <robert.marko@sartura.hr>
5811 F: Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5812 F: Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5813 F: Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5814 F: drivers/gpio/gpio-tn48m.c
5815 F: include/dt-bindings/reset/delta,tn48m-reset.h
5818 L: linux-mtd@lists.infradead.org
5820 F: drivers/mtd/nand/raw/denali*
5822 DESIGNWARE EDMA CORE IP DRIVER
5823 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5824 L: dmaengine@vger.kernel.org
5826 F: drivers/dma/dw-edma/
5827 F: include/linux/dma/edma.h
5829 DESIGNWARE XDATA IP DRIVER
5830 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5831 L: linux-pci@vger.kernel.org
5833 F: Documentation/misc-devices/dw-xdata-pcie.rst
5834 F: drivers/misc/dw-xdata-pcie.c
5836 DESIGNWARE USB2 DRD IP DRIVER
5837 M: Minas Harutyunyan <hminas@synopsys.com>
5838 L: linux-usb@vger.kernel.org
5840 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5841 F: drivers/usb/dwc2/
5843 DESIGNWARE USB3 DRD IP DRIVER
5844 M: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
5845 L: linux-usb@vger.kernel.org
5847 F: drivers/usb/dwc3/
5849 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5850 M: Andreas Klinger <ak@it-klinger.de>
5851 L: linux-iio@vger.kernel.org
5853 F: Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5854 F: drivers/iio/proximity/srf*.c
5856 DEVICE COREDUMP (DEV_COREDUMP)
5857 M: Johannes Berg <johannes@sipsolutions.net>
5858 L: linux-kernel@vger.kernel.org
5860 F: drivers/base/devcoredump.c
5861 F: include/linux/devcoredump.h
5863 DEVICE DEPENDENCY HELPER SCRIPT
5864 M: Saravana Kannan <saravanak@google.com>
5865 L: linux-kernel@vger.kernel.org
5867 F: scripts/dev-needs.sh
5869 DEVICE DIRECT ACCESS (DAX)
5870 M: Dan Williams <dan.j.williams@intel.com>
5871 M: Vishal Verma <vishal.l.verma@intel.com>
5872 M: Dave Jiang <dave.jiang@intel.com>
5873 L: nvdimm@lists.linux.dev
5877 DEVICE FREQUENCY (DEVFREQ)
5878 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5879 M: Kyungmin Park <kyungmin.park@samsung.com>
5880 M: Chanwoo Choi <cw00.choi@samsung.com>
5881 L: linux-pm@vger.kernel.org
5883 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5884 F: Documentation/devicetree/bindings/devfreq/
5885 F: Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5887 F: include/linux/devfreq.h
5888 F: include/trace/events/devfreq.h
5890 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5891 M: Chanwoo Choi <cw00.choi@samsung.com>
5892 L: linux-pm@vger.kernel.org
5894 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5895 F: Documentation/devicetree/bindings/devfreq/event/
5896 F: drivers/devfreq/devfreq-event.c
5897 F: drivers/devfreq/event/
5898 F: include/dt-bindings/pmu/exynos_ppmu.h
5899 F: include/linux/devfreq-event.h
5901 DEVICE NUMBER REGISTRY
5902 M: Torben Mathiasen <device@lanana.org>
5904 W: http://lanana.org/docs/device-list/index.html
5906 DEVICE RESOURCE MANAGEMENT HELPERS
5907 M: Hans de Goede <hdegoede@redhat.com>
5908 R: Matti Vaittinen <mazziesaccount@gmail.com>
5910 F: include/linux/devm-helpers.h
5913 M: Alasdair Kergon <agk@redhat.com>
5914 M: Mike Snitzer <snitzer@kernel.org>
5915 M: dm-devel@redhat.com
5916 L: dm-devel@redhat.com
5918 W: http://sources.redhat.com/dm
5919 Q: http://patchwork.kernel.org/project/dm-devel/list/
5920 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5921 T: quilt http://people.redhat.com/agk/patches/linux/editing/
5922 F: Documentation/admin-guide/device-mapper/
5923 F: drivers/md/Kconfig
5924 F: drivers/md/Makefile
5926 F: drivers/md/persistent-data/
5927 F: include/linux/device-mapper.h
5928 F: include/linux/dm-*.h
5929 F: include/uapi/linux/dm-*.h
5932 M: Jiri Pirko <jiri@nvidia.com>
5933 L: netdev@vger.kernel.org
5935 F: Documentation/networking/devlink
5936 F: include/net/devlink.h
5937 F: include/uapi/linux/devlink.h
5938 F: net/core/devlink.c
5940 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
5941 M: Christoph Niedermaier <cniedermaier@dh-electronics.com>
5942 L: kernel@dh-electronics.com
5944 F: arch/arm/boot/dts/imx6*-dhcom-*
5945 F: arch/arm/boot/dts/imx6*-dhcor-*
5947 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5948 M: Marek Vasut <marex@denx.de>
5949 L: kernel@dh-electronics.com
5951 F: arch/arm/boot/dts/stm32mp1*-dhcom-*
5952 F: arch/arm/boot/dts/stm32mp1*-dhcor-*
5954 DIALOG SEMICONDUCTOR DRIVERS
5955 M: Support Opensource <support.opensource@diasemi.com>
5957 W: http://www.dialog-semiconductor.com/products
5958 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
5959 F: Documentation/devicetree/bindings/input/dlg,da72??.txt
5960 F: Documentation/devicetree/bindings/mfd/da90*.txt
5961 F: Documentation/devicetree/bindings/mfd/da90*.yaml
5962 F: Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5963 F: Documentation/devicetree/bindings/regulator/da92*.txt
5964 F: Documentation/devicetree/bindings/regulator/slg51000.txt
5965 F: Documentation/devicetree/bindings/sound/da[79]*.txt
5966 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5967 F: Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5968 F: Documentation/hwmon/da90??.rst
5969 F: drivers/gpio/gpio-da90??.c
5970 F: drivers/hwmon/da90??-hwmon.c
5971 F: drivers/iio/adc/da91??-*.c
5972 F: drivers/input/misc/da72??.[ch]
5973 F: drivers/input/misc/da90??_onkey.c
5974 F: drivers/input/touchscreen/da9052_tsi.c
5975 F: drivers/leds/leds-da90??.c
5976 F: drivers/mfd/da903x.c
5977 F: drivers/mfd/da90??-*.c
5978 F: drivers/mfd/da91??-*.c
5979 F: drivers/pinctrl/pinctrl-da90??.c
5980 F: drivers/power/supply/da9052-battery.c
5981 F: drivers/power/supply/da91??-*.c
5982 F: drivers/regulator/da9???-regulator.[ch]
5983 F: drivers/regulator/slg51000-regulator.[ch]
5984 F: drivers/rtc/rtc-da90??.c
5985 F: drivers/thermal/da90??-thermal.c
5986 F: drivers/video/backlight/da90??_bl.c
5987 F: drivers/watchdog/da90??_wdt.c
5988 F: include/dt-bindings/regulator/dlg,da9*-regulator.h
5989 F: include/linux/mfd/da903x.h
5990 F: include/linux/mfd/da9052/
5991 F: include/linux/mfd/da9055/
5992 F: include/linux/mfd/da9062/
5993 F: include/linux/mfd/da9063/
5994 F: include/linux/mfd/da9150/
5995 F: include/linux/regulator/da9211.h
5996 F: include/sound/da[79]*.h
5997 F: sound/soc/codecs/da[79]*.[ch]
5999 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6000 M: William Breathitt Gray <william.gray@linaro.org>
6001 L: linux-gpio@vger.kernel.org
6003 F: drivers/gpio/gpio-gpio-mm.c
6005 DIOLAN U2C-12 I2C DRIVER
6006 M: Guenter Roeck <linux@roeck-us.net>
6007 L: linux-i2c@vger.kernel.org
6009 F: drivers/i2c/busses/i2c-diolan-u2c.c
6011 DIRECTORY NOTIFICATION (DNOTIFY)
6012 M: Jan Kara <jack@suse.cz>
6013 R: Amir Goldstein <amir73il@gmail.com>
6014 L: linux-fsdevel@vger.kernel.org
6016 F: Documentation/filesystems/dnotify.rst
6017 F: fs/notify/dnotify/
6018 F: include/linux/dnotify.h
6020 DISK GEOMETRY AND PARTITION HANDLING
6021 M: Andries Brouwer <aeb@cwi.nl>
6023 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6024 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6025 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6028 M: Jan Kara <jack@suse.com>
6030 F: Documentation/filesystems/quota.rst
6032 F: include/linux/quota*.h
6033 F: include/uapi/linux/quota*.h
6035 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6036 M: Bernie Thompson <bernie@plugable.com>
6037 L: linux-fbdev@vger.kernel.org
6039 W: http://plugable.com/category/projects/udlfb/
6040 F: Documentation/fb/udlfb.rst
6041 F: drivers/video/fbdev/udlfb.c
6042 F: include/video/udlfb.h
6044 DISTRIBUTED LOCK MANAGER (DLM)
6045 M: Christine Caulfield <ccaulfie@redhat.com>
6046 M: David Teigland <teigland@redhat.com>
6047 L: cluster-devel@redhat.com
6049 W: http://sources.redhat.com/cluster/
6050 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6053 DMA BUFFER SHARING FRAMEWORK
6054 M: Sumit Semwal <sumit.semwal@linaro.org>
6055 M: Christian König <christian.koenig@amd.com>
6056 L: linux-media@vger.kernel.org
6057 L: dri-devel@lists.freedesktop.org
6058 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6060 T: git git://anongit.freedesktop.org/drm/drm-misc
6061 F: Documentation/driver-api/dma-buf.rst
6063 F: include/linux/*fence.h
6064 F: include/linux/dma-buf.h
6065 F: include/linux/dma-resv.h
6066 K: \bdma_(?:buf|fence|resv)\b
6068 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6069 M: Vinod Koul <vkoul@kernel.org>
6070 L: dmaengine@vger.kernel.org
6072 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
6073 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6074 F: Documentation/devicetree/bindings/dma/
6075 F: Documentation/driver-api/dmaengine/
6077 F: include/dt-bindings/dma/
6078 F: include/linux/dma/
6079 F: include/linux/dmaengine.h
6080 F: include/linux/of_dma.h
6083 M: Christoph Hellwig <hch@lst.de>
6084 M: Marek Szyprowski <m.szyprowski@samsung.com>
6085 R: Robin Murphy <robin.murphy@arm.com>
6086 L: iommu@lists.linux.dev
6088 W: http://git.infradead.org/users/hch/dma-mapping.git
6089 T: git git://git.infradead.org/users/hch/dma-mapping.git
6090 F: include/asm-generic/dma-mapping.h
6091 F: include/linux/dma-direct.h
6092 F: include/linux/dma-mapping.h
6093 F: include/linux/dma-map-ops.h
6094 F: include/linux/swiotlb.h
6097 DMA MAPPING BENCHMARK
6098 M: Xiang Chen <chenxiang66@hisilicon.com>
6099 L: iommu@lists.linux.dev
6100 F: kernel/dma/map_benchmark.c
6101 F: tools/testing/selftests/dma/
6103 DMA-BUF HEAPS FRAMEWORK
6104 M: Sumit Semwal <sumit.semwal@linaro.org>
6105 R: Benjamin Gaignard <benjamin.gaignard@collabora.com>
6106 R: Liam Mark <lmark@codeaurora.org>
6107 R: Laura Abbott <labbott@redhat.com>
6108 R: Brian Starkey <Brian.Starkey@arm.com>
6109 R: John Stultz <jstultz@google.com>
6110 L: linux-media@vger.kernel.org
6111 L: dri-devel@lists.freedesktop.org
6112 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6114 T: git git://anongit.freedesktop.org/drm/drm-misc
6115 F: drivers/dma-buf/dma-heap.c
6116 F: drivers/dma-buf/heaps/*
6117 F: include/linux/dma-heap.h
6118 F: include/uapi/linux/dma-heap.h
6120 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6121 M: Lukasz Luba <lukasz.luba@arm.com>
6122 L: linux-pm@vger.kernel.org
6123 L: linux-samsung-soc@vger.kernel.org
6125 F: Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6126 F: drivers/memory/samsung/exynos5422-dmc.c
6128 DME1737 HARDWARE MONITOR DRIVER
6129 M: Juerg Haefliger <juergh@proton.me>
6130 L: linux-hwmon@vger.kernel.org
6132 F: Documentation/hwmon/dme1737.rst
6133 F: drivers/hwmon/dme1737.c
6136 M: Jean Delvare <jdelvare@suse.com>
6138 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6139 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
6140 F: drivers/firmware/dmi-id.c
6141 F: drivers/firmware/dmi_scan.c
6142 F: include/linux/dmi.h
6145 M: Jonathan Corbet <corbet@lwn.net>
6146 L: linux-doc@vger.kernel.org
6148 P: Documentation/doc-guide/maintainer-profile.rst
6149 T: git git://git.lwn.net/linux.git docs-next
6151 F: scripts/documentation-file-ref-check
6152 F: scripts/kernel-doc
6153 F: scripts/sphinx-pre-install
6154 X: Documentation/ABI/
6155 X: Documentation/admin-guide/media/
6156 X: Documentation/devicetree/
6157 X: Documentation/driver-api/media/
6158 X: Documentation/firmware-guide/acpi/
6159 X: Documentation/i2c/
6160 X: Documentation/power/
6161 X: Documentation/spi/
6162 X: Documentation/userspace-api/media/
6164 DOCUMENTATION REPORTING ISSUES
6165 M: Thorsten Leemhuis <linux@leemhuis.info>
6166 L: linux-doc@vger.kernel.org
6168 F: Documentation/admin-guide/reporting-issues.rst
6170 DOCUMENTATION SCRIPTS
6171 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6172 L: linux-doc@vger.kernel.org
6174 F: Documentation/sphinx/parse-headers.pl
6175 F: scripts/documentation-file-ref-check
6176 F: scripts/sphinx-pre-install
6178 DOCUMENTATION/ITALIAN
6179 M: Federico Vaga <federico.vaga@vaga.pv.it>
6180 L: linux-doc@vger.kernel.org
6182 F: Documentation/translations/it_IT
6184 DOCUMENTATION/JAPANESE
6185 R: Akira Yokosawa <akiyks@gmail.com>
6186 L: linux-doc@vger.kernel.org
6188 F: Documentation/translations/ja_JP
6190 DONGWOON DW9714 LENS VOICE COIL DRIVER
6191 M: Sakari Ailus <sakari.ailus@linux.intel.com>
6192 L: linux-media@vger.kernel.org
6194 T: git git://linuxtv.org/media_tree.git
6195 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6196 F: drivers/media/i2c/dw9714.c
6198 DONGWOON DW9768 LENS VOICE COIL DRIVER
6199 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
6200 L: linux-media@vger.kernel.org
6202 T: git git://linuxtv.org/media_tree.git
6203 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6204 F: drivers/media/i2c/dw9768.c
6206 DONGWOON DW9807 LENS VOICE COIL DRIVER
6207 M: Sakari Ailus <sakari.ailus@linux.intel.com>
6208 L: linux-media@vger.kernel.org
6210 T: git git://linuxtv.org/media_tree.git
6211 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6212 F: drivers/media/i2c/dw9807-vcm.c
6215 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
6216 L: blinux-list@redhat.com
6218 F: drivers/char/dtlk.c
6219 F: include/linux/dtlk.h
6221 DPAA2 DATAPATH I/O (DPIO) DRIVER
6222 M: Roy Pledge <Roy.Pledge@nxp.com>
6223 L: linux-kernel@vger.kernel.org
6225 F: drivers/soc/fsl/dpio
6227 DPAA2 ETHERNET DRIVER
6228 M: Ioana Ciornei <ioana.ciornei@nxp.com>
6229 L: netdev@vger.kernel.org
6231 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6232 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6233 F: drivers/net/ethernet/freescale/dpaa2/Kconfig
6234 F: drivers/net/ethernet/freescale/dpaa2/Makefile
6235 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6236 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6237 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6238 F: drivers/net/ethernet/freescale/dpaa2/dpkg.h
6239 F: drivers/net/ethernet/freescale/dpaa2/dpmac*
6240 F: drivers/net/ethernet/freescale/dpaa2/dpni*
6242 DPAA2 ETHERNET SWITCH DRIVER
6243 M: Ioana Ciornei <ioana.ciornei@nxp.com>
6244 L: netdev@vger.kernel.org
6246 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6247 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6248 F: drivers/net/ethernet/freescale/dpaa2/dpsw*
6251 M: Philipp Reisner <philipp.reisner@linbit.com>
6252 M: Lars Ellenberg <lars.ellenberg@linbit.com>
6253 M: Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6254 L: drbd-dev@lists.linbit.com
6256 W: http://www.drbd.org
6257 T: git git://git.linbit.com/linux-drbd.git
6258 T: git git://git.linbit.com/drbd-8.4.git
6259 F: Documentation/admin-guide/blockdev/
6260 F: drivers/block/drbd/
6261 F: include/linux/drbd*
6264 DRIVER COMPONENT FRAMEWORK
6265 L: dri-devel@lists.freedesktop.org
6266 F: drivers/base/component.c
6267 F: include/linux/component.h
6269 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6270 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6271 R: "Rafael J. Wysocki" <rafael@kernel.org>
6273 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6274 F: Documentation/core-api/kobject.rst
6278 F: include/linux/debugfs.h
6279 F: include/linux/kobj*
6282 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6283 M: Nishanth Menon <nm@ti.com>
6284 L: linux-pm@vger.kernel.org
6286 F: drivers/soc/ti/smartreflex.c
6287 F: include/linux/power/smartreflex.h
6289 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6290 M: Maxime Ripard <mripard@kernel.org>
6291 M: Chen-Yu Tsai <wens@csie.org>
6292 R: Jernej Skrabec <jernej.skrabec@gmail.com>
6293 L: dri-devel@lists.freedesktop.org
6295 T: git git://anongit.freedesktop.org/drm/drm-misc
6296 F: drivers/gpu/drm/sun4i/sun8i*
6298 DRM DRIVER FOR ARM PL111 CLCD
6299 M: Emma Anholt <emma@anholt.net>
6301 T: git git://anongit.freedesktop.org/drm/drm-misc
6302 F: drivers/gpu/drm/pl111/
6304 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6305 M: Linus Walleij <linus.walleij@linaro.org>
6307 T: git git://anongit.freedesktop.org/drm/drm-misc
6308 F: Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6309 F: drivers/gpu/drm/panel/panel-arm-versatile.c
6311 DRM DRIVER FOR ASPEED BMC GFX
6312 M: Joel Stanley <joel@jms.id.au>
6313 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6315 T: git git://anongit.freedesktop.org/drm/drm-misc
6316 F: Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6317 F: drivers/gpu/drm/aspeed/
6319 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6320 M: Dave Airlie <airlied@redhat.com>
6321 R: Thomas Zimmermann <tzimmermann@suse.de>
6322 L: dri-devel@lists.freedesktop.org
6324 T: git git://anongit.freedesktop.org/drm/drm-misc
6325 F: drivers/gpu/drm/ast/
6327 DRM DRIVER FOR BOCHS VIRTUAL GPU
6328 M: Gerd Hoffmann <kraxel@redhat.com>
6329 L: virtualization@lists.linux-foundation.org
6331 T: git git://anongit.freedesktop.org/drm/drm-misc
6332 F: drivers/gpu/drm/tiny/bochs.c
6334 DRM DRIVER FOR BOE HIMAX8279D PANELS
6335 M: Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6337 F: Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6338 F: drivers/gpu/drm/panel/panel-boe-himax8279d.c
6340 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6341 M: Jagan Teki <jagan@amarulasolutions.com>
6343 F: Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6344 F: drivers/gpu/drm/bridge/chipone-icn6211.c
6346 DRM DRIVER FOR EBBG FT8719 PANEL
6347 M: Joel Selvaraj <jo@jsfamily.in>
6349 T: git git://anongit.freedesktop.org/drm/drm-misc
6350 F: Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6351 F: drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6353 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6354 M: Linus Walleij <linus.walleij@linaro.org>
6356 T: git git://anongit.freedesktop.org/drm/drm-misc
6357 F: drivers/gpu/drm/tve200/
6359 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6360 M: Icenowy Zheng <icenowy@aosc.io>
6362 F: Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6363 F: drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6365 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6366 M: Jagan Teki <jagan@amarulasolutions.com>
6368 F: Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6369 F: drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6371 DRM DRIVER FOR GENERIC EDP PANELS
6372 R: Douglas Anderson <dianders@chromium.org>
6373 F: Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6374 F: drivers/gpu/drm/panel/panel-edp.c
6376 DRM DRIVER FOR GENERIC USB DISPLAY
6377 M: Noralf Trønnes <noralf@tronnes.org>
6379 W: https://github.com/notro/gud/wiki
6380 T: git git://anongit.freedesktop.org/drm/drm-misc
6381 F: drivers/gpu/drm/gud/
6382 F: include/drm/gud.h
6384 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6385 M: Hans de Goede <hdegoede@redhat.com>
6387 T: git git://anongit.freedesktop.org/drm/drm-misc
6388 F: drivers/gpu/drm/tiny/gm12u320.c
6390 DRM DRIVER FOR HX8357D PANELS
6391 M: Emma Anholt <emma@anholt.net>
6393 T: git git://anongit.freedesktop.org/drm/drm-misc
6394 F: Documentation/devicetree/bindings/display/himax,hx8357d.txt
6395 F: drivers/gpu/drm/tiny/hx8357d.c
6397 DRM DRIVER FOR ILITEK ILI9225 PANELS
6398 M: David Lechner <david@lechnology.com>
6400 T: git git://anongit.freedesktop.org/drm/drm-misc
6401 F: Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6402 F: drivers/gpu/drm/tiny/ili9225.c
6404 DRM DRIVER FOR ILITEK ILI9486 PANELS
6405 M: Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6407 T: git git://anongit.freedesktop.org/drm/drm-misc
6408 F: Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6409 F: drivers/gpu/drm/tiny/ili9486.c
6411 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6412 S: Orphan / Obsolete
6413 F: drivers/gpu/drm/i810/
6414 F: include/uapi/drm/i810_drm.h
6416 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6417 M: Jagan Teki <jagan@edgeble.ai>
6419 F: Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6420 F: drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6422 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6423 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6425 T: git git://anongit.freedesktop.org/drm/drm-misc
6426 F: drivers/gpu/drm/logicvc/
6428 DRM DRIVER FOR LVDS PANELS
6429 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6430 L: dri-devel@lists.freedesktop.org
6431 T: git git://anongit.freedesktop.org/drm/drm-misc
6433 F: drivers/gpu/drm/panel/panel-lvds.c
6434 F: Documentation/devicetree/bindings/display/lvds.yaml
6435 F: Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6437 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6438 M: Guido Günther <agx@sigxcpu.org>
6439 R: Purism Kernel Team <kernel@puri.sm>
6441 F: Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6442 F: drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6444 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6445 S: Orphan / Obsolete
6446 F: drivers/gpu/drm/mga/
6447 F: include/uapi/drm/mga_drm.h
6449 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6450 M: Dave Airlie <airlied@redhat.com>
6451 R: Thomas Zimmermann <tzimmermann@suse.de>
6452 L: dri-devel@lists.freedesktop.org
6454 T: git git://anongit.freedesktop.org/drm/drm-misc
6455 F: drivers/gpu/drm/mgag200/
6457 DRM DRIVER FOR MI0283QT
6458 M: Noralf Trønnes <noralf@tronnes.org>
6460 T: git git://anongit.freedesktop.org/drm/drm-misc
6461 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6462 F: drivers/gpu/drm/tiny/mi0283qt.c
6464 DRM DRIVER FOR MIPI DBI compatible panels
6465 M: Noralf Trønnes <noralf@tronnes.org>
6467 W: https://github.com/notro/panel-mipi-dbi/wiki
6468 T: git git://anongit.freedesktop.org/drm/drm-misc
6469 F: Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6470 F: drivers/gpu/drm/tiny/panel-mipi-dbi.c
6472 DRM DRIVER FOR MSM ADRENO GPU
6473 M: Rob Clark <robdclark@gmail.com>
6474 M: Abhinav Kumar <quic_abhinavk@quicinc.com>
6475 M: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6476 R: Sean Paul <sean@poorly.run>
6477 L: linux-arm-msm@vger.kernel.org
6478 L: dri-devel@lists.freedesktop.org
6479 L: freedreno@lists.freedesktop.org
6481 T: git https://gitlab.freedesktop.org/drm/msm.git
6482 F: Documentation/devicetree/bindings/display/msm/
6483 F: drivers/gpu/drm/msm/
6484 F: include/uapi/drm/msm_drm.h
6486 DRM DRIVER FOR NOVATEK NT35510 PANELS
6487 M: Linus Walleij <linus.walleij@linaro.org>
6489 T: git git://anongit.freedesktop.org/drm/drm-misc
6490 F: Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6491 F: drivers/gpu/drm/panel/panel-novatek-nt35510.c
6493 DRM DRIVER FOR NOVATEK NT35560 PANELS
6494 M: Linus Walleij <linus.walleij@linaro.org>
6496 T: git git://anongit.freedesktop.org/drm/drm-misc
6497 F: Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6498 F: drivers/gpu/drm/panel/panel-novatek-nt35560.c
6500 DRM DRIVER FOR NOVATEK NT36672A PANELS
6501 M: Sumit Semwal <sumit.semwal@linaro.org>
6503 T: git git://anongit.freedesktop.org/drm/drm-misc
6504 F: Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6505 F: drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6507 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6508 M: Ben Skeggs <bskeggs@redhat.com>
6509 M: Karol Herbst <kherbst@redhat.com>
6510 M: Lyude Paul <lyude@redhat.com>
6511 L: dri-devel@lists.freedesktop.org
6512 L: nouveau@lists.freedesktop.org
6514 W: https://nouveau.freedesktop.org/
6515 Q: https://patchwork.freedesktop.org/project/nouveau/
6516 Q: https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6517 B: https://gitlab.freedesktop.org/drm/nouveau/-/issues
6518 C: irc://irc.oftc.net/nouveau
6519 T: git https://gitlab.freedesktop.org/drm/nouveau.git
6520 F: drivers/gpu/drm/nouveau/
6521 F: include/uapi/drm/nouveau_drm.h
6523 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6524 M: Stefan Mavrodiev <stefan@olimex.com>
6526 F: Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6527 F: drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6529 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6530 R: Douglas Anderson <dianders@chromium.org>
6531 F: Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6532 F: drivers/gpu/drm/bridge/parade-ps8640.c
6534 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6535 M: Noralf Trønnes <noralf@tronnes.org>
6537 T: git git://anongit.freedesktop.org/drm/drm-misc
6538 F: Documentation/devicetree/bindings/display/repaper.txt
6539 F: drivers/gpu/drm/tiny/repaper.c
6541 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6542 M: Javier Martinez Canillas <javierm@redhat.com>
6544 T: git git://anongit.freedesktop.org/drm/drm-misc
6545 F: Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6546 F: drivers/gpu/drm/solomon/ssd130x*
6548 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6549 M: Dave Airlie <airlied@redhat.com>
6550 M: Gerd Hoffmann <kraxel@redhat.com>
6551 L: virtualization@lists.linux-foundation.org
6553 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6554 T: git git://anongit.freedesktop.org/drm/drm-misc
6555 F: drivers/gpu/drm/tiny/cirrus.c
6557 DRM DRIVER FOR QXL VIRTUAL GPU
6558 M: Dave Airlie <airlied@redhat.com>
6559 M: Gerd Hoffmann <kraxel@redhat.com>
6560 L: virtualization@lists.linux-foundation.org
6561 L: spice-devel@lists.freedesktop.org
6563 T: git git://anongit.freedesktop.org/drm/drm-misc
6564 F: drivers/gpu/drm/qxl/
6565 F: include/uapi/drm/qxl_drm.h
6567 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6568 S: Orphan / Obsolete
6569 F: drivers/gpu/drm/r128/
6570 F: include/uapi/drm/r128_drm.h
6572 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6573 M: Robert Chiras <robert.chiras@nxp.com>
6575 F: Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6576 F: drivers/gpu/drm/panel/panel-raydium-rm67191.c
6578 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6579 M: Linus Walleij <linus.walleij@linaro.org>
6581 T: git git://anongit.freedesktop.org/drm/drm-misc
6582 F: Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6583 F: drivers/gpu/drm/panel/panel-samsung-db7430.c
6585 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6586 M: Markuss Broks <markuss.broks@gmail.com>
6588 F: Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6589 F: drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6591 DRM DRIVER FOR SITRONIX ST7703 PANELS
6592 M: Guido Günther <agx@sigxcpu.org>
6593 R: Purism Kernel Team <kernel@puri.sm>
6594 R: Ondrej Jirman <megous@megous.com>
6596 F: Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6597 F: drivers/gpu/drm/panel/panel-sitronix-st7703.c
6599 DRM DRIVER FOR SAVAGE VIDEO CARDS
6600 S: Orphan / Obsolete
6601 F: drivers/gpu/drm/savage/
6602 F: include/uapi/drm/savage_drm.h
6604 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6605 M: Thomas Zimmermann <tzimmermann@suse.de>
6606 M: Javier Martinez Canillas <javierm@redhat.com>
6607 L: dri-devel@lists.freedesktop.org
6609 T: git git://anongit.freedesktop.org/drm/drm-misc
6610 F: drivers/gpu/drm/drm_aperture.c
6611 F: drivers/gpu/drm/tiny/ofdrm.c
6612 F: drivers/gpu/drm/tiny/simpledrm.c
6613 F: drivers/video/aperture.c
6614 F: drivers/video/nomodeset.c
6615 F: include/drm/drm_aperture.h
6616 F: include/linux/aperture.h
6617 F: include/video/nomodeset.h
6619 DRM DRIVER FOR SIS VIDEO CARDS
6620 S: Orphan / Obsolete
6621 F: drivers/gpu/drm/sis/
6622 F: include/uapi/drm/sis_drm.h
6624 DRM DRIVER FOR SITRONIX ST7586 PANELS
6625 M: David Lechner <david@lechnology.com>
6627 T: git git://anongit.freedesktop.org/drm/drm-misc
6628 F: Documentation/devicetree/bindings/display/sitronix,st7586.txt
6629 F: drivers/gpu/drm/tiny/st7586.c
6631 DRM DRIVER FOR SITRONIX ST7701 PANELS
6632 M: Jagan Teki <jagan@amarulasolutions.com>
6634 F: Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6635 F: drivers/gpu/drm/panel/panel-sitronix-st7701.c
6637 DRM DRIVER FOR SITRONIX ST7735R PANELS
6638 M: David Lechner <david@lechnology.com>
6640 T: git git://anongit.freedesktop.org/drm/drm-misc
6641 F: Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6642 F: drivers/gpu/drm/tiny/st7735r.c
6644 DRM DRIVER FOR ST-ERICSSON MCDE
6645 M: Linus Walleij <linus.walleij@linaro.org>
6647 T: git git://anongit.freedesktop.org/drm/drm-misc
6648 F: Documentation/devicetree/bindings/display/ste,mcde.yaml
6649 F: drivers/gpu/drm/mcde/
6651 DRM DRIVER FOR TDFX VIDEO CARDS
6652 S: Orphan / Obsolete
6653 F: drivers/gpu/drm/tdfx/
6655 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6656 M: Jagan Teki <jagan@amarulasolutions.com>
6658 F: Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6659 F: drivers/gpu/drm/bridge/ti-dlpc3433.c
6661 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6662 R: Douglas Anderson <dianders@chromium.org>
6663 F: Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6664 F: drivers/gpu/drm/bridge/ti-sn65dsi86.c
6666 DRM DRIVER FOR TPO TPG110 PANELS
6667 M: Linus Walleij <linus.walleij@linaro.org>
6669 T: git git://anongit.freedesktop.org/drm/drm-misc
6670 F: Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6671 F: drivers/gpu/drm/panel/panel-tpo-tpg110.c
6673 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6674 M: Dave Airlie <airlied@redhat.com>
6675 R: Sean Paul <sean@poorly.run>
6676 R: Thomas Zimmermann <tzimmermann@suse.de>
6677 L: dri-devel@lists.freedesktop.org
6679 T: git git://anongit.freedesktop.org/drm/drm-misc
6680 F: drivers/gpu/drm/udl/
6682 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6683 M: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6684 M: Melissa Wen <melissa.srw@gmail.com>
6685 R: Haneen Mohammed <hamohammed.sa@gmail.com>
6686 R: Daniel Vetter <daniel@ffwll.ch>
6687 L: dri-devel@lists.freedesktop.org
6689 T: git git://anongit.freedesktop.org/drm/drm-misc
6690 F: Documentation/gpu/vkms.rst
6691 F: drivers/gpu/drm/vkms/
6693 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6694 M: Hans de Goede <hdegoede@redhat.com>
6695 L: dri-devel@lists.freedesktop.org
6697 T: git git://anongit.freedesktop.org/drm/drm-misc
6698 F: drivers/gpu/drm/vboxvideo/
6700 DRM DRIVER FOR VMWARE VIRTUAL GPU
6701 M: Zack Rusin <zackr@vmware.com>
6702 R: VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6703 L: dri-devel@lists.freedesktop.org
6705 T: git git://anongit.freedesktop.org/drm/drm-misc
6706 F: drivers/gpu/drm/vmwgfx/
6707 F: include/uapi/drm/vmwgfx_drm.h
6709 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6710 M: Linus Walleij <linus.walleij@linaro.org>
6712 T: git git://anongit.freedesktop.org/drm/drm-misc
6713 F: Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6714 F: drivers/gpu/drm/panel/panel-widechips-ws2401.c
6717 M: David Airlie <airlied@gmail.com>
6718 M: Daniel Vetter <daniel@ffwll.ch>
6719 L: dri-devel@lists.freedesktop.org
6721 B: https://gitlab.freedesktop.org/drm
6722 C: irc://irc.oftc.net/dri-devel
6723 T: git git://anongit.freedesktop.org/drm/drm
6724 F: Documentation/devicetree/bindings/display/
6725 F: Documentation/devicetree/bindings/gpu/
6726 F: Documentation/gpu/
6729 F: include/linux/vga*
6730 F: include/uapi/drm/
6732 DRM DRIVERS AND MISC GPU PATCHES
6733 M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6734 M: Maxime Ripard <mripard@kernel.org>
6735 M: Thomas Zimmermann <tzimmermann@suse.de>
6737 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6738 T: git git://anongit.freedesktop.org/drm/drm-misc
6739 F: Documentation/gpu/
6740 F: drivers/gpu/drm/*
6743 F: include/linux/vga*
6744 F: include/uapi/drm/drm*
6746 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6747 M: Oded Gabbay <ogabbay@kernel.org>
6748 L: dri-devel@lists.freedesktop.org
6750 C: irc://irc.oftc.net/dri-devel
6751 T: git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6752 F: Documentation/accel/
6755 DRM DRIVERS FOR ALLWINNER A10
6756 M: Maxime Ripard <mripard@kernel.org>
6757 M: Chen-Yu Tsai <wens@csie.org>
6758 L: dri-devel@lists.freedesktop.org
6760 T: git git://anongit.freedesktop.org/drm/drm-misc
6761 F: Documentation/devicetree/bindings/display/allwinner*
6762 F: drivers/gpu/drm/sun4i/
6764 DRM DRIVERS FOR AMLOGIC SOCS
6765 M: Neil Armstrong <neil.armstrong@linaro.org>
6766 L: dri-devel@lists.freedesktop.org
6767 L: linux-amlogic@lists.infradead.org
6769 W: http://linux-meson.com/
6770 T: git git://anongit.freedesktop.org/drm/drm-misc
6771 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6772 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6773 F: Documentation/gpu/meson.rst
6774 F: drivers/gpu/drm/meson/
6776 DRM DRIVERS FOR ATMEL HLCDC
6777 M: Sam Ravnborg <sam@ravnborg.org>
6778 M: Boris Brezillon <bbrezillon@kernel.org>
6779 L: dri-devel@lists.freedesktop.org
6781 T: git git://anongit.freedesktop.org/drm/drm-misc
6782 F: Documentation/devicetree/bindings/display/atmel/
6783 F: drivers/gpu/drm/atmel-hlcdc/
6785 DRM DRIVERS FOR BRIDGE CHIPS
6786 M: Andrzej Hajda <andrzej.hajda@intel.com>
6787 M: Neil Armstrong <neil.armstrong@linaro.org>
6788 M: Robert Foss <rfoss@kernel.org>
6789 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6790 R: Jonas Karlman <jonas@kwiboo.se>
6791 R: Jernej Skrabec <jernej.skrabec@gmail.com>
6793 T: git git://anongit.freedesktop.org/drm/drm-misc
6794 F: Documentation/devicetree/bindings/display/bridge/
6795 F: drivers/gpu/drm/bridge/
6797 DRM DRIVERS FOR EXYNOS
6798 M: Inki Dae <inki.dae@samsung.com>
6799 M: Seung-Woo Kim <sw0312.kim@samsung.com>
6800 M: Kyungmin Park <kyungmin.park@samsung.com>
6801 L: dri-devel@lists.freedesktop.org
6803 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6804 F: Documentation/devicetree/bindings/display/exynos/
6805 F: Documentation/devicetree/bindings/display/samsung/
6806 F: drivers/gpu/drm/exynos/
6807 F: include/uapi/drm/exynos_drm.h
6809 DRM DRIVERS FOR FREESCALE DCU
6810 M: Stefan Agner <stefan@agner.ch>
6811 M: Alison Wang <alison.wang@nxp.com>
6812 L: dri-devel@lists.freedesktop.org
6814 T: git git://anongit.freedesktop.org/drm/drm-misc
6815 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
6816 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
6817 F: drivers/gpu/drm/fsl-dcu/
6819 DRM DRIVERS FOR FREESCALE IMX
6820 M: Philipp Zabel <p.zabel@pengutronix.de>
6821 L: dri-devel@lists.freedesktop.org
6823 F: Documentation/devicetree/bindings/display/imx/
6824 F: drivers/gpu/drm/imx/
6825 F: drivers/gpu/ipu-v3/
6827 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6828 M: Liu Ying <victor.liu@nxp.com>
6829 L: dri-devel@lists.freedesktop.org
6831 F: Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6832 F: Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6833 F: Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6834 F: Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6835 F: drivers/gpu/drm/bridge/imx/
6837 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6838 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6839 L: dri-devel@lists.freedesktop.org
6841 T: git git://github.com/patjak/drm-gma500
6842 F: drivers/gpu/drm/gma500/
6844 DRM DRIVERS FOR HISILICON
6845 M: Xinliang Liu <xinliang.liu@linaro.org>
6846 M: Tian Tao <tiantao6@hisilicon.com>
6847 R: John Stultz <jstultz@google.com>
6848 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
6849 R: Chen Feng <puck.chen@hisilicon.com>
6850 L: dri-devel@lists.freedesktop.org
6852 T: git git://anongit.freedesktop.org/drm/drm-misc
6853 F: Documentation/devicetree/bindings/display/hisilicon/
6854 F: drivers/gpu/drm/hisilicon/
6856 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6857 M: Deepak Rawat <drawat.floss@gmail.com>
6858 L: linux-hyperv@vger.kernel.org
6859 L: dri-devel@lists.freedesktop.org
6861 T: git git://anongit.freedesktop.org/drm/drm-misc
6862 F: drivers/gpu/drm/hyperv
6864 DRM DRIVERS FOR LIMA
6865 M: Qiang Yu <yuq825@gmail.com>
6866 L: dri-devel@lists.freedesktop.org
6867 L: lima@lists.freedesktop.org (moderated for non-subscribers)
6869 T: git git://anongit.freedesktop.org/drm/drm-misc
6870 F: drivers/gpu/drm/lima/
6871 F: include/uapi/drm/lima_drm.h
6873 DRM DRIVERS FOR MEDIATEK
6874 M: Chun-Kuang Hu <chunkuang.hu@kernel.org>
6875 M: Philipp Zabel <p.zabel@pengutronix.de>
6876 L: dri-devel@lists.freedesktop.org
6877 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6879 F: Documentation/devicetree/bindings/display/mediatek/
6880 F: drivers/gpu/drm/mediatek/
6881 F: drivers/phy/mediatek/phy-mtk-dp.c
6882 F: drivers/phy/mediatek/phy-mtk-hdmi*
6883 F: drivers/phy/mediatek/phy-mtk-mipi*
6885 DRM DRIVERS FOR NVIDIA TEGRA
6886 M: Thierry Reding <thierry.reding@gmail.com>
6887 L: dri-devel@lists.freedesktop.org
6888 L: linux-tegra@vger.kernel.org
6890 T: git git://anongit.freedesktop.org/tegra/linux.git
6891 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6892 F: Documentation/devicetree/bindings/gpu/host1x/
6893 F: drivers/gpu/drm/tegra/
6894 F: drivers/gpu/host1x/
6895 F: include/linux/host1x.h
6896 F: include/uapi/drm/tegra_drm.h
6898 DRM DRIVERS FOR RENESAS
6899 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6900 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6901 L: dri-devel@lists.freedesktop.org
6902 L: linux-renesas-soc@vger.kernel.org
6904 T: git git://linuxtv.org/pinchartl/media drm/du/next
6905 F: Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6906 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6907 F: Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6908 F: Documentation/devicetree/bindings/display/renesas,du.yaml
6909 F: drivers/gpu/drm/rcar-du/
6910 F: drivers/gpu/drm/shmobile/
6911 F: include/linux/platform_data/shmob_drm.h
6913 DRM DRIVERS FOR ROCKCHIP
6914 M: Sandy Huang <hjc@rock-chips.com>
6915 M: Heiko Stübner <heiko@sntech.de>
6916 L: dri-devel@lists.freedesktop.org
6918 T: git git://anongit.freedesktop.org/drm/drm-misc
6919 F: Documentation/devicetree/bindings/display/rockchip/
6920 F: drivers/gpu/drm/rockchip/
6923 M: Alain Volmat <alain.volmat@foss.st.com>
6924 L: dri-devel@lists.freedesktop.org
6926 T: git git://anongit.freedesktop.org/drm/drm-misc
6927 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
6928 F: drivers/gpu/drm/sti
6931 M: Yannick Fertre <yannick.fertre@foss.st.com>
6932 M: Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6933 M: Philippe Cornu <philippe.cornu@foss.st.com>
6934 L: dri-devel@lists.freedesktop.org
6936 T: git git://anongit.freedesktop.org/drm/drm-misc
6937 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6938 F: drivers/gpu/drm/stm
6940 DRM DRIVERS FOR TI KEYSTONE
6941 M: Jyri Sarha <jyri.sarha@iki.fi>
6942 M: Tomi Valkeinen <tomba@kernel.org>
6943 L: dri-devel@lists.freedesktop.org
6945 T: git git://anongit.freedesktop.org/drm/drm-misc
6946 F: Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6947 F: Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6948 F: Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6949 F: drivers/gpu/drm/tidss/
6951 DRM DRIVERS FOR TI LCDC
6952 M: Jyri Sarha <jyri.sarha@iki.fi>
6953 R: Tomi Valkeinen <tomba@kernel.org>
6954 L: dri-devel@lists.freedesktop.org
6956 F: Documentation/devicetree/bindings/display/tilcdc/
6957 F: drivers/gpu/drm/tilcdc/
6959 DRM DRIVERS FOR TI OMAP
6960 M: Tomi Valkeinen <tomba@kernel.org>
6961 L: dri-devel@lists.freedesktop.org
6963 F: Documentation/devicetree/bindings/display/ti/
6964 F: drivers/gpu/drm/omapdrm/
6967 M: Emma Anholt <emma@anholt.net>
6968 M: Melissa Wen <mwen@igalia.com>
6970 T: git git://anongit.freedesktop.org/drm/drm-misc
6971 F: Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6972 F: drivers/gpu/drm/v3d/
6973 F: include/uapi/drm/v3d_drm.h
6976 M: Emma Anholt <emma@anholt.net>
6977 M: Maxime Ripard <mripard@kernel.org>
6979 T: git git://github.com/anholt/linux
6980 T: git git://anongit.freedesktop.org/drm/drm-misc
6981 F: Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6982 F: drivers/gpu/drm/vc4/
6983 F: include/uapi/drm/vc4_drm.h
6985 DRM DRIVERS FOR VIVANTE GPU IP
6986 M: Lucas Stach <l.stach@pengutronix.de>
6987 R: Russell King <linux+etnaviv@armlinux.org.uk>
6988 R: Christian Gmeiner <christian.gmeiner@gmail.com>
6989 L: etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6990 L: dri-devel@lists.freedesktop.org
6992 F: Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6993 F: drivers/gpu/drm/etnaviv/
6994 F: include/uapi/drm/etnaviv_drm.h
6997 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6998 L: dri-devel@lists.freedesktop.org
6999 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
7001 T: git git://anongit.freedesktop.org/drm/drm-misc
7002 F: Documentation/gpu/xen-front.rst
7003 F: drivers/gpu/drm/xen/
7005 DRM DRIVERS FOR XILINX
7006 M: Hyun Kwon <hyun.kwon@xilinx.com>
7007 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7008 L: dri-devel@lists.freedesktop.org
7010 T: git git://anongit.freedesktop.org/drm/drm-misc
7011 F: Documentation/devicetree/bindings/display/xlnx/
7012 F: drivers/gpu/drm/xlnx/
7015 M: Thierry Reding <thierry.reding@gmail.com>
7016 R: Sam Ravnborg <sam@ravnborg.org>
7017 L: dri-devel@lists.freedesktop.org
7019 T: git git://anongit.freedesktop.org/drm/drm-misc
7020 F: Documentation/devicetree/bindings/display/panel/
7021 F: drivers/gpu/drm/drm_panel.c
7022 F: drivers/gpu/drm/panel/
7023 F: include/drm/drm_panel.h
7025 DRM PRIVACY-SCREEN CLASS
7026 M: Hans de Goede <hdegoede@redhat.com>
7027 L: dri-devel@lists.freedesktop.org
7029 T: git git://anongit.freedesktop.org/drm/drm-misc
7030 F: drivers/gpu/drm/drm_privacy_screen*
7031 F: include/drm/drm_privacy_screen*
7034 M: Christian Koenig <christian.koenig@amd.com>
7035 M: Huang Rui <ray.huang@amd.com>
7036 L: dri-devel@lists.freedesktop.org
7038 T: git git://anongit.freedesktop.org/drm/drm-misc
7039 F: drivers/gpu/drm/ttm/
7043 M: Luben Tuikov <luben.tuikov@amd.com>
7044 L: dri-devel@lists.freedesktop.org
7046 T: git git://anongit.freedesktop.org/drm/drm-misc
7047 F: drivers/gpu/drm/scheduler/
7048 F: include/drm/gpu_scheduler.h
7050 DSBR100 USB FM RADIO DRIVER
7051 M: Alexey Klimov <klimov.linux@gmail.com>
7052 L: linux-media@vger.kernel.org
7054 T: git git://linuxtv.org/media_tree.git
7055 F: drivers/media/radio/dsbr100.c
7058 M: Hans Verkuil <hverkuil@xs4all.nl>
7059 L: linux-media@vger.kernel.org
7061 W: https://linuxtv.org
7062 T: git git://linuxtv.org/media_tree.git
7063 F: drivers/media/pci/dt3155/
7065 DVB_USB_AF9015 MEDIA DRIVER
7066 M: Antti Palosaari <crope@iki.fi>
7067 L: linux-media@vger.kernel.org
7069 W: https://linuxtv.org
7070 W: http://palosaari.fi/linux/
7071 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7072 T: git git://linuxtv.org/anttip/media_tree.git
7073 F: drivers/media/usb/dvb-usb-v2/af9015*
7075 DVB_USB_AF9035 MEDIA DRIVER
7076 M: Antti Palosaari <crope@iki.fi>
7077 L: linux-media@vger.kernel.org
7079 W: https://linuxtv.org
7080 W: http://palosaari.fi/linux/
7081 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7082 T: git git://linuxtv.org/anttip/media_tree.git
7083 F: drivers/media/usb/dvb-usb-v2/af9035*
7085 DVB_USB_ANYSEE MEDIA DRIVER
7086 M: Antti Palosaari <crope@iki.fi>
7087 L: linux-media@vger.kernel.org
7089 W: https://linuxtv.org
7090 W: http://palosaari.fi/linux/
7091 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7092 T: git git://linuxtv.org/anttip/media_tree.git
7093 F: drivers/media/usb/dvb-usb-v2/anysee*
7095 DVB_USB_AU6610 MEDIA DRIVER
7096 M: Antti Palosaari <crope@iki.fi>
7097 L: linux-media@vger.kernel.org
7099 W: https://linuxtv.org
7100 W: http://palosaari.fi/linux/
7101 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7102 T: git git://linuxtv.org/anttip/media_tree.git
7103 F: drivers/media/usb/dvb-usb-v2/au6610*
7105 DVB_USB_CE6230 MEDIA DRIVER
7106 M: Antti Palosaari <crope@iki.fi>
7107 L: linux-media@vger.kernel.org
7109 W: https://linuxtv.org
7110 W: http://palosaari.fi/linux/
7111 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7112 T: git git://linuxtv.org/anttip/media_tree.git
7113 F: drivers/media/usb/dvb-usb-v2/ce6230*
7115 DVB_USB_CXUSB MEDIA DRIVER
7116 M: Michael Krufky <mkrufky@linuxtv.org>
7117 L: linux-media@vger.kernel.org
7119 W: https://linuxtv.org
7120 W: http://github.com/mkrufky
7121 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7122 T: git git://linuxtv.org/media_tree.git
7123 F: drivers/media/usb/dvb-usb/cxusb*
7125 DVB_USB_EC168 MEDIA DRIVER
7126 M: Antti Palosaari <crope@iki.fi>
7127 L: linux-media@vger.kernel.org
7129 W: https://linuxtv.org
7130 W: http://palosaari.fi/linux/
7131 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7132 T: git git://linuxtv.org/anttip/media_tree.git
7133 F: drivers/media/usb/dvb-usb-v2/ec168*
7135 DVB_USB_GL861 MEDIA DRIVER
7136 M: Antti Palosaari <crope@iki.fi>
7137 L: linux-media@vger.kernel.org
7139 W: https://linuxtv.org
7140 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7141 T: git git://linuxtv.org/anttip/media_tree.git
7142 F: drivers/media/usb/dvb-usb-v2/gl861*
7144 DVB_USB_MXL111SF MEDIA DRIVER
7145 M: Michael Krufky <mkrufky@linuxtv.org>
7146 L: linux-media@vger.kernel.org
7148 W: https://linuxtv.org
7149 W: http://github.com/mkrufky
7150 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7151 T: git git://linuxtv.org/mkrufky/mxl111sf.git
7152 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
7154 DVB_USB_RTL28XXU MEDIA DRIVER
7155 M: Antti Palosaari <crope@iki.fi>
7156 L: linux-media@vger.kernel.org
7158 W: https://linuxtv.org
7159 W: http://palosaari.fi/linux/
7160 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7161 T: git git://linuxtv.org/anttip/media_tree.git
7162 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
7164 DVB_USB_V2 MEDIA DRIVER
7165 M: Antti Palosaari <crope@iki.fi>
7166 L: linux-media@vger.kernel.org
7168 W: https://linuxtv.org
7169 W: http://palosaari.fi/linux/
7170 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7171 T: git git://linuxtv.org/anttip/media_tree.git
7172 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
7173 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
7176 M: Jason Baron <jbaron@akamai.com>
7178 F: include/linux/dynamic_debug.h
7179 F: lib/dynamic_debug.c
7180 M: Jim Cromie <jim.cromie@gmail.com>
7181 F: lib/test_dynamic_debug.c
7183 DYNAMIC INTERRUPT MODERATION
7184 M: Tal Gilboa <talgi@nvidia.com>
7186 F: Documentation/networking/net_dim.rst
7187 F: include/linux/dim.h
7190 DZ DECSTATION DZ11 SERIAL DRIVER
7191 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
7193 F: drivers/tty/serial/dz.*
7195 E3X0 POWER BUTTON DRIVER
7196 M: Moritz Fischer <moritz.fischer@ettus.com>
7197 L: usrp-users@lists.ettus.com
7199 W: http://www.ettus.com
7200 F: Documentation/devicetree/bindings/input/e3x0-button.txt
7201 F: drivers/input/misc/e3x0-button.c
7204 M: Antti Palosaari <crope@iki.fi>
7205 L: linux-media@vger.kernel.org
7207 W: https://linuxtv.org
7208 W: http://palosaari.fi/linux/
7209 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7210 T: git git://linuxtv.org/anttip/media_tree.git
7211 F: drivers/media/tuners/e4000*
7213 EARTH_PT1 MEDIA DRIVER
7214 M: Akihiro Tsukada <tskd08@gmail.com>
7215 L: linux-media@vger.kernel.org
7217 F: drivers/media/pci/pt1/
7219 EARTH_PT3 MEDIA DRIVER
7220 M: Akihiro Tsukada <tskd08@gmail.com>
7221 L: linux-media@vger.kernel.org
7223 F: drivers/media/pci/pt3/
7226 M: Antti Palosaari <crope@iki.fi>
7227 L: linux-media@vger.kernel.org
7229 W: https://linuxtv.org
7230 W: http://palosaari.fi/linux/
7231 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7232 T: git git://linuxtv.org/anttip/media_tree.git
7233 F: drivers/media/dvb-frontends/ec100*
7236 M: Tyler Hicks <code@tyhicks.com>
7237 L: ecryptfs@vger.kernel.org
7239 W: http://ecryptfs.org
7240 W: https://launchpad.net/ecryptfs
7241 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7242 F: Documentation/filesystems/ecryptfs.rst
7246 M: Yazen Ghannam <yazen.ghannam@amd.com>
7247 L: linux-edac@vger.kernel.org
7249 F: drivers/edac/amd64_edac*
7250 F: drivers/edac/mce_amd*
7253 M: Jan Luebbe <jlu@pengutronix.de>
7254 L: linux-edac@vger.kernel.org
7256 F: Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7257 F: drivers/edac/armada_xp_*
7260 M: Stefan Schaeckeler <sschaeck@cisco.com>
7262 F: Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7263 F: drivers/edac/aspeed_edac.c
7266 M: Shravan Kumar Ramani <shravankr@nvidia.com>
7268 F: drivers/edac/bluefield_edac.c
7271 M: Andre Przywara <andre.przywara@arm.com>
7272 L: linux-edac@vger.kernel.org
7274 F: drivers/edac/highbank*
7277 M: Ralf Baechle <ralf@linux-mips.org>
7278 L: linux-edac@vger.kernel.org
7279 L: linux-mips@vger.kernel.org
7281 F: drivers/edac/octeon_edac*
7283 EDAC-CAVIUM THUNDERX
7284 M: Robert Richter <rric@kernel.org>
7285 L: linux-edac@vger.kernel.org
7287 F: drivers/edac/thunderx_edac*
7290 M: Borislav Petkov <bp@alien8.de>
7291 M: Tony Luck <tony.luck@intel.com>
7292 R: James Morse <james.morse@arm.com>
7293 R: Mauro Carvalho Chehab <mchehab@kernel.org>
7294 R: Robert Richter <rric@kernel.org>
7295 L: linux-edac@vger.kernel.org
7297 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7298 F: Documentation/admin-guide/ras.rst
7299 F: Documentation/driver-api/edac.rst
7301 F: include/linux/edac.h
7304 M: Lei Wang <lewan@microsoft.com>
7305 L: linux-edac@vger.kernel.org
7307 F: drivers/edac/dmc520_edac.c
7310 M: Mark Gross <markgross@kernel.org>
7311 L: linux-edac@vger.kernel.org
7313 F: drivers/edac/e752x_edac.c
7316 L: linux-edac@vger.kernel.org
7318 F: drivers/edac/e7xxx_edac.c
7321 M: York Sun <york.sun@nxp.com>
7322 L: linux-edac@vger.kernel.org
7324 F: drivers/edac/fsl_ddr_edac.*
7327 M: Mauro Carvalho Chehab <mchehab@kernel.org>
7328 L: linux-edac@vger.kernel.org
7330 F: drivers/edac/ghes_edac.c
7333 M: Tony Luck <tony.luck@intel.com>
7334 L: linux-edac@vger.kernel.org
7336 F: drivers/edac/i10nm_base.c
7339 L: linux-edac@vger.kernel.org
7341 F: drivers/edac/i3000_edac.c
7344 L: linux-edac@vger.kernel.org
7346 F: drivers/edac/i5000_edac.c
7349 M: Mauro Carvalho Chehab <mchehab@kernel.org>
7350 L: linux-edac@vger.kernel.org
7352 F: drivers/edac/i5400_edac.c
7355 M: Mauro Carvalho Chehab <mchehab@kernel.org>
7356 L: linux-edac@vger.kernel.org
7358 F: drivers/edac/i7300_edac.c
7361 M: Mauro Carvalho Chehab <mchehab@kernel.org>
7362 L: linux-edac@vger.kernel.org
7364 F: drivers/edac/i7core_edac.c
7367 M: Tim Small <tim@buttersideup.com>
7368 L: linux-edac@vger.kernel.org
7370 F: drivers/edac/i82443bxgx_edac.c
7373 M: "Arvind R." <arvino55@gmail.com>
7374 L: linux-edac@vger.kernel.org
7376 F: drivers/edac/i82975x_edac.c
7379 M: Jason Baron <jbaron@akamai.com>
7380 L: linux-edac@vger.kernel.org
7382 F: drivers/edac/ie31200_edac.c
7385 M: Tony Luck <tony.luck@intel.com>
7386 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7387 L: linux-edac@vger.kernel.org
7389 F: drivers/edac/igen6_edac.c
7392 M: Johannes Thumshirn <morbidrsa@gmail.com>
7393 L: linux-edac@vger.kernel.org
7395 F: drivers/edac/mpc85xx_edac.[ch]
7398 M: Egor Martovetsky <egor@pasemi.com>
7399 L: linux-edac@vger.kernel.org
7401 F: drivers/edac/pasemi_edac.c
7404 M: Tony Luck <tony.luck@intel.com>
7405 L: linux-edac@vger.kernel.org
7407 F: drivers/edac/pnd2_edac.[ch]
7410 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
7411 L: linux-arm-msm@vger.kernel.org
7412 L: linux-edac@vger.kernel.org
7414 F: drivers/edac/qcom_edac.c
7417 M: Tim Small <tim@buttersideup.com>
7418 L: linux-edac@vger.kernel.org
7420 F: drivers/edac/r82600_edac.c
7423 M: Tony Luck <tony.luck@intel.com>
7424 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7425 L: linux-edac@vger.kernel.org
7427 F: drivers/edac/sb_edac.c
7430 M: Tony Luck <tony.luck@intel.com>
7431 L: linux-edac@vger.kernel.org
7433 F: drivers/edac/skx_*.[ch]
7436 M: Tero Kristo <kristo@kernel.org>
7437 L: linux-edac@vger.kernel.org
7439 F: drivers/edac/ti_edac.c
7441 EDIROL UA-101/UA-1000 DRIVER
7442 M: Clemens Ladisch <clemens@ladisch.de>
7443 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7445 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7446 F: sound/usb/misc/ua101.c
7449 M: Ivan Hu <ivan.hu@canonical.com>
7450 M: Ard Biesheuvel <ardb@kernel.org>
7451 L: linux-efi@vger.kernel.org
7453 F: drivers/firmware/efi/test/
7455 EFI VARIABLE FILESYSTEM
7456 M: Jeremy Kerr <jk@ozlabs.org>
7457 M: Ard Biesheuvel <ardb@kernel.org>
7458 L: linux-efi@vger.kernel.org
7460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7463 EFIFB FRAMEBUFFER DRIVER
7464 M: Peter Jones <pjones@redhat.com>
7465 L: linux-fbdev@vger.kernel.org
7467 F: drivers/video/fbdev/efifb.c
7471 W: http://aeschi.ch.eu.org/efs/
7474 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7475 M: Douglas Miller <dougmill@linux.ibm.com>
7476 L: netdev@vger.kernel.org
7478 F: drivers/net/ethernet/ibm/ehea/
7480 ELM327 CAN NETWORK DRIVER
7481 M: Max Staudt <max@enpas.org>
7482 L: linux-can@vger.kernel.org
7484 F: Documentation/networking/device_drivers/can/can327.rst
7485 F: drivers/net/can/can327.c
7487 EM28XX VIDEO4LINUX DRIVER
7488 M: Mauro Carvalho Chehab <mchehab@kernel.org>
7489 L: linux-media@vger.kernel.org
7491 W: https://linuxtv.org
7492 T: git git://linuxtv.org/media_tree.git
7493 F: Documentation/admin-guide/media/em28xx*
7494 F: drivers/media/usb/em28xx/
7497 M: Olivia Mackall <olivia@selenic.com>
7498 M: David Woodhouse <dwmw2@infradead.org>
7499 L: linux-embedded@vger.kernel.org
7502 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7503 M: Adrian Hunter <adrian.hunter@intel.com>
7504 M: Ritesh Harjani <riteshh@codeaurora.org>
7505 M: Asutosh Das <asutoshd@codeaurora.org>
7506 L: linux-mmc@vger.kernel.org
7508 F: drivers/mmc/host/cqhci*
7510 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7511 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
7512 L: linux-scsi@vger.kernel.org
7514 W: http://www.broadcom.com
7515 F: drivers/scsi/be2iscsi/
7517 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7518 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
7519 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7520 M: Somnath Kotur <somnath.kotur@broadcom.com>
7521 L: netdev@vger.kernel.org
7523 W: http://www.emulex.com
7524 F: drivers/net/ethernet/emulex/benet/
7526 EMULEX ONECONNECT ROCE DRIVER
7527 M: Selvin Xavier <selvin.xavier@broadcom.com>
7528 L: linux-rdma@vger.kernel.org
7530 W: http://www.broadcom.com
7531 F: drivers/infiniband/hw/ocrdma/
7532 F: include/uapi/rdma/ocrdma-abi.h
7534 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7535 M: James Smart <james.smart@broadcom.com>
7536 M: Dick Kennedy <dick.kennedy@broadcom.com>
7537 L: linux-scsi@vger.kernel.org
7539 W: http://www.broadcom.com
7540 F: drivers/scsi/lpfc/
7542 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7543 M: James Smart <james.smart@broadcom.com>
7544 M: Ram Vegesna <ram.vegesna@broadcom.com>
7545 L: linux-scsi@vger.kernel.org
7546 L: target-devel@vger.kernel.org
7548 W: http://www.broadcom.com
7549 F: drivers/scsi/elx/
7551 ENE CB710 FLASH CARD READER DRIVER
7552 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
7554 F: drivers/misc/cb710/
7555 F: drivers/mmc/host/cb710-mmc.*
7556 F: include/linux/cb710.h
7558 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7559 M: Maxim Levitsky <maximlevitsky@gmail.com>
7561 F: drivers/media/rc/ene_ir.*
7563 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7564 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
7565 L: linuxppc-dev@lists.ozlabs.org
7567 F: drivers/tty/ehv_bytechan.c
7569 EPSON S1D13XXX FRAMEBUFFER DRIVER
7570 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
7572 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7573 F: drivers/video/fbdev/s1d13xxxfb.c
7574 F: include/video/s1d13xxxfb.h
7577 M: Gao Xiang <xiang@kernel.org>
7578 M: Chao Yu <chao@kernel.org>
7579 R: Yue Hu <huyue2@coolpad.com>
7580 R: Jeffle Xu <jefflexu@linux.alibaba.com>
7581 L: linux-erofs@lists.ozlabs.org
7583 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7584 F: Documentation/ABI/testing/sysfs-fs-erofs
7585 F: Documentation/filesystems/erofs.rst
7587 F: include/trace/events/erofs.h
7589 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7590 M: Jeff Layton <jlayton@kernel.org>
7592 F: include/linux/errseq.h
7596 M: Frank Jungclaus <frank.jungclaus@esd.eu>
7598 L: linux-can@vger.kernel.org
7600 F: drivers/net/can/usb/esd_usb.c
7602 ET131X NETWORK DRIVER
7603 M: Mark Einon <mark.einon@gmail.com>
7605 F: drivers/net/ethernet/agere/
7607 ETAS ES58X CAN/USB DRIVER
7608 M: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7609 L: linux-can@vger.kernel.org
7611 F: Documentation/networking/devlink/etas_es58x.rst
7612 F: drivers/net/can/usb/etas_es58x/
7615 M: Roopa Prabhu <roopa@nvidia.com>
7616 M: Nikolay Aleksandrov <razor@blackwall.org>
7617 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
7618 L: netdev@vger.kernel.org
7620 W: http://www.linuxfoundation.org/en/Net:Bridge
7621 F: include/linux/netfilter_bridge/
7624 ETHERNET PHY LIBRARY
7625 M: Andrew Lunn <andrew@lunn.ch>
7626 M: Heiner Kallweit <hkallweit1@gmail.com>
7627 R: Russell King <linux@armlinux.org.uk>
7628 L: netdev@vger.kernel.org
7630 F: Documentation/ABI/testing/sysfs-class-net-phydev
7631 F: Documentation/devicetree/bindings/net/ethernet-phy.yaml
7632 F: Documentation/devicetree/bindings/net/mdio*
7633 F: Documentation/devicetree/bindings/net/qca,ar803x.yaml
7634 F: Documentation/networking/phy.rst
7635 F: drivers/net/mdio/
7636 F: drivers/net/mdio/acpi_mdio.c
7637 F: drivers/net/mdio/fwnode_mdio.c
7638 F: drivers/net/mdio/of_mdio.c
7641 F: include/dt-bindings/net/qca-ar803x.h
7642 F: include/linux/linkmode.h
7643 F: include/linux/*mdio*.h
7644 F: include/linux/mdio/*.h
7645 F: include/linux/mii.h
7646 F: include/linux/of_net.h
7647 F: include/linux/phy.h
7648 F: include/linux/phy_fixed.h
7649 F: include/linux/platform_data/mdio-bcm-unimac.h
7650 F: include/linux/platform_data/mdio-gpio.h
7651 F: include/trace/events/mdio.h
7652 F: include/uapi/linux/mdio.h
7653 F: include/uapi/linux/mii.h
7654 F: net/core/of_net.c
7657 R: Eric Biederman <ebiederm@xmission.com>
7658 R: Kees Cook <keescook@chromium.org>
7659 L: linux-mm@kvack.org
7661 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7664 F: include/linux/binfmts.h
7665 F: include/linux/elf.h
7666 F: include/uapi/linux/binfmts.h
7667 F: include/uapi/linux/elf.h
7668 F: tools/testing/selftests/exec/
7673 M: Namjae Jeon <linkinjeon@kernel.org>
7674 M: Sungjong Seo <sj1557.seo@samsung.com>
7675 L: linux-fsdevel@vger.kernel.org
7677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7681 M: Jan Kara <jack@suse.com>
7682 L: linux-ext4@vger.kernel.org
7684 F: Documentation/filesystems/ext2.rst
7686 F: include/linux/ext2*
7689 M: "Theodore Ts'o" <tytso@mit.edu>
7690 M: Andreas Dilger <adilger.kernel@dilger.ca>
7691 L: linux-ext4@vger.kernel.org
7693 W: http://ext4.wiki.kernel.org
7694 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
7695 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7696 F: Documentation/filesystems/ext4/
7698 F: include/trace/events/ext4.h
7700 Extended Verification Module (EVM)
7701 M: Mimi Zohar <zohar@linux.ibm.com>
7702 L: linux-integrity@vger.kernel.org
7704 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7705 F: security/integrity/evm/
7706 F: security/integrity/
7708 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7709 M: Ard Biesheuvel <ardb@kernel.org>
7710 L: linux-efi@vger.kernel.org
7712 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7713 F: Documentation/admin-guide/efi-stub.rst
7714 F: arch/*/include/asm/efi.h
7715 F: arch/*/kernel/efi.c
7716 F: arch/arm/boot/compressed/efi-header.S
7717 F: arch/x86/platform/efi/
7718 F: drivers/firmware/efi/
7719 F: include/linux/efi*.h
7721 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7722 M: MyungJoo Ham <myungjoo.ham@samsung.com>
7723 M: Chanwoo Choi <cw00.choi@samsung.com>
7724 L: linux-kernel@vger.kernel.org
7726 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7727 F: Documentation/devicetree/bindings/extcon/
7728 F: Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7730 F: include/linux/extcon.h
7731 F: include/linux/extcon/
7734 M: Masami Hiramatsu <mhiramat@kernel.org>
7735 L: linux-kernel@vger.kernel.org
7736 L: linux-trace-kernel@vger.kernel.org
7737 Q: https://patchwork.kernel.org/project/linux-trace-kernel/list/
7739 T: git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7740 F: Documentation/admin-guide/bootconfig.rst
7741 F: fs/proc/bootconfig.c
7742 F: include/linux/bootconfig.h
7743 F: lib/bootconfig-data.S
7745 F: tools/bootconfig/*
7746 F: tools/bootconfig/scripts/*
7749 M: Jingoo Han <jingoohan1@gmail.com>
7750 L: dri-devel@lists.freedesktop.org
7752 F: drivers/gpu/drm/exynos/exynos_dp*
7754 EXYNOS SYSMMU (IOMMU) driver
7755 M: Marek Szyprowski <m.szyprowski@samsung.com>
7756 L: iommu@lists.linux.dev
7758 F: drivers/iommu/exynos-iommu.c
7761 M: Jaegeuk Kim <jaegeuk@kernel.org>
7762 M: Chao Yu <chao@kernel.org>
7763 L: linux-f2fs-devel@lists.sourceforge.net
7765 W: https://f2fs.wiki.kernel.org/
7766 B: https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7767 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7768 F: Documentation/ABI/testing/sysfs-fs-f2fs
7769 F: Documentation/filesystems/f2fs.rst
7771 F: include/linux/f2fs_fs.h
7772 F: include/trace/events/f2fs.h
7773 F: include/uapi/linux/f2fs.h
7775 F71805F HARDWARE MONITORING DRIVER
7776 M: Jean Delvare <jdelvare@suse.com>
7777 L: linux-hwmon@vger.kernel.org
7779 F: Documentation/hwmon/f71805f.rst
7780 F: drivers/hwmon/f71805f.c
7783 M: Josh Poimboeuf <jpoimboe@kernel.org>
7785 F: scripts/faddr2line
7788 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
7789 L: netdev@vger.kernel.org
7791 F: Documentation/networking/failover.rst
7792 F: include/net/failover.h
7793 F: net/core/failover.c
7796 M: Jan Kara <jack@suse.cz>
7797 R: Amir Goldstein <amir73il@gmail.com>
7798 R: Matthew Bobrowski <repnop@google.com>
7799 L: linux-fsdevel@vger.kernel.org
7801 F: fs/notify/fanotify/
7802 F: include/linux/fanotify.h
7803 F: include/uapi/linux/fanotify.h
7805 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7806 M: Linus Walleij <linus.walleij@linaro.org>
7807 L: linux-usb@vger.kernel.org
7809 F: drivers/usb/fotg210/
7811 FARSYNC SYNCHRONOUS DRIVER
7812 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
7814 W: http://www.farsite.co.uk/
7815 F: drivers/net/wan/farsync.*
7817 FAULT INJECTION SUPPORT
7818 M: Akinobu Mita <akinobu.mita@gmail.com>
7820 F: Documentation/fault-injection/
7821 F: lib/fault-inject.c
7823 FBTFT Framebuffer drivers
7824 L: dri-devel@lists.freedesktop.org
7825 L: linux-fbdev@vger.kernel.org
7827 F: drivers/staging/fbtft/
7830 M: Michael Buesch <m@bues.ch>
7831 L: linux-media@vger.kernel.org
7833 F: drivers/media/tuners/fc0011.c
7834 F: drivers/media/tuners/fc0011.h
7837 M: Antti Palosaari <crope@iki.fi>
7838 L: linux-media@vger.kernel.org
7840 W: https://linuxtv.org
7841 W: http://palosaari.fi/linux/
7842 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7843 T: git git://linuxtv.org/anttip/media_tree.git
7844 F: drivers/media/tuners/fc2580*
7846 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7847 M: Hannes Reinecke <hare@suse.de>
7848 L: linux-scsi@vger.kernel.org
7850 W: www.Open-FCoE.org
7851 F: drivers/scsi/fcoe/
7852 F: drivers/scsi/libfc/
7854 F: include/scsi/libfc.h
7855 F: include/scsi/libfcoe.h
7856 F: include/uapi/scsi/fc/
7858 FILE LOCKING (flock() and fcntl()/lockf())
7859 M: Jeff Layton <jlayton@kernel.org>
7860 M: Chuck Lever <chuck.lever@oracle.com>
7861 L: linux-fsdevel@vger.kernel.org
7865 F: include/linux/fcntl.h
7866 F: include/uapi/linux/fcntl.h
7868 FILESYSTEM DIRECT ACCESS (DAX)
7869 M: Dan Williams <dan.j.williams@intel.com>
7870 R: Matthew Wilcox <willy@infradead.org>
7871 R: Jan Kara <jack@suse.cz>
7872 L: linux-fsdevel@vger.kernel.org
7873 L: nvdimm@lists.linux.dev
7876 F: include/linux/dax.h
7877 F: include/trace/events/fs_dax.h
7879 FILESYSTEMS (VFS and infrastructure)
7880 M: Alexander Viro <viro@zeniv.linux.org.uk>
7881 L: linux-fsdevel@vger.kernel.org
7884 F: include/linux/fs.h
7885 F: include/linux/fs_types.h
7886 F: include/uapi/linux/fs.h
7887 F: include/uapi/linux/openat2.h
7889 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7890 M: Riku Voipio <riku.voipio@iki.fi>
7891 L: linux-hwmon@vger.kernel.org
7893 F: drivers/hwmon/f75375s.c
7894 F: include/linux/f75375s.h
7896 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7897 M: Clemens Ladisch <clemens@ladisch.de>
7898 M: Takashi Sakamoto <o-takashi@sakamocchi.jp>
7899 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7901 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7902 F: include/uapi/sound/firewire.h
7905 FIREWIRE MEDIA DRIVERS (firedtv)
7906 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7907 L: linux-media@vger.kernel.org
7908 L: linux1394-devel@lists.sourceforge.net
7910 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7911 F: drivers/media/firewire/
7913 FIREWIRE SBP-2 TARGET
7914 M: Chris Boot <bootc@bootc.net>
7915 L: linux-scsi@vger.kernel.org
7916 L: target-devel@vger.kernel.org
7917 L: linux1394-devel@lists.sourceforge.net
7919 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7920 F: drivers/target/sbp/
7923 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7924 L: linux1394-devel@lists.sourceforge.net
7926 W: http://ieee1394.wiki.kernel.org/
7927 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7928 F: drivers/firewire/
7929 F: include/linux/firewire.h
7930 F: include/uapi/linux/firewire*.h
7933 FIRMWARE FRAMEWORK FOR ARMV8-A
7934 M: Sudeep Holla <sudeep.holla@arm.com>
7935 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7937 F: drivers/firmware/arm_ffa/
7938 F: include/linux/arm_ffa.h
7940 FIRMWARE LOADER (request_firmware)
7941 M: Luis Chamberlain <mcgrof@kernel.org>
7942 M: Russ Weight <russell.h.weight@intel.com>
7943 L: linux-kernel@vger.kernel.org
7945 F: Documentation/firmware_class/
7946 F: drivers/base/firmware_loader/
7947 F: include/linux/firmware.h
7949 FLEXTIMER FTM-QUADDEC DRIVER
7950 M: Patrick Havelange <patrick.havelange@essensium.com>
7951 L: linux-iio@vger.kernel.org
7953 F: Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7954 F: drivers/counter/ftm-quaddec.c
7957 M: Denis Efremov <efremov@linux.com>
7958 L: linux-block@vger.kernel.org
7960 F: drivers/block/floppy.c
7962 FLYSKY FSIA6B RC RECEIVER
7963 M: Markus Koch <markus@notsyncing.net>
7964 L: linux-input@vger.kernel.org
7966 F: drivers/input/joystick/fsia6b.c
7968 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7969 M: Geoffrey D. Bennett <g@b4.vu>
7970 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7972 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7973 F: sound/usb/mixer_scarlett_gen2.c
7975 FORCEDETH GIGABIT ETHERNET DRIVER
7976 M: Rain River <rain.1986.08.12@gmail.com>
7977 M: Zhu Yanjun <zyjzyj2000@gmail.com>
7978 L: netdev@vger.kernel.org
7980 F: drivers/net/ethernet/nvidia/*
7983 M: Kees Cook <keescook@chromium.org>
7984 L: linux-hardening@vger.kernel.org
7986 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
7987 F: include/linux/fortify-string.h
7988 F: lib/fortify_kunit.c
7989 F: lib/memcpy_kunit.c
7990 F: lib/strscpy_kunit.c
7991 F: lib/test_fortify/*
7992 F: scripts/test_fortify.sh
7996 M: Wu Hao <hao.wu@intel.com>
7997 R: Tom Rix <trix@redhat.com>
7998 L: linux-fpga@vger.kernel.org
8000 F: Documentation/ABI/testing/sysfs-bus-dfl*
8001 F: Documentation/fpga/dfl.rst
8002 F: drivers/fpga/dfl*
8003 F: drivers/uio/uio_dfl.c
8004 F: include/linux/dfl.h
8005 F: include/uapi/linux/fpga-dfl.h
8007 FPGA MANAGER FRAMEWORK
8008 M: Moritz Fischer <mdf@kernel.org>
8009 M: Wu Hao <hao.wu@intel.com>
8010 M: Xu Yilun <yilun.xu@intel.com>
8011 R: Tom Rix <trix@redhat.com>
8012 L: linux-fpga@vger.kernel.org
8014 Q: http://patchwork.kernel.org/project/linux-fpga/list/
8015 T: git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8016 F: Documentation/devicetree/bindings/fpga/
8017 F: Documentation/driver-api/fpga/
8018 F: Documentation/fpga/
8020 F: include/linux/fpga/
8022 INTEL MAX10 BMC SECURE UPDATES
8023 M: Russ Weight <russell.h.weight@intel.com>
8024 L: linux-fpga@vger.kernel.org
8026 F: Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8027 F: drivers/fpga/intel-m10-bmc-sec-update.c
8029 MICROCHIP POLARFIRE FPGA DRIVERS
8030 M: Conor Dooley <conor.dooley@microchip.com>
8031 R: Ivan Bornyakov <i.bornyakov@metrotek.ru>
8032 L: linux-fpga@vger.kernel.org
8034 F: Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8035 F: drivers/fpga/microchip-spi.c
8038 M: Bill Metzenthen <billm@melbpc.org.au>
8040 W: https://floatingpoint.billm.au/
8041 F: arch/x86/math-emu/
8044 M: Daniel Vetter <daniel@ffwll.ch>
8045 F: drivers/video/fbdev/core/
8047 T: git git://anongit.freedesktop.org/drm/drm-misc
8050 M: Helge Deller <deller@gmx.de>
8051 L: linux-fbdev@vger.kernel.org
8052 L: dri-devel@lists.freedesktop.org
8054 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
8055 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8056 F: Documentation/fb/
8058 F: include/linux/fb.h
8059 F: include/uapi/linux/fb.h
8060 F: include/uapi/video/
8063 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8064 M: Horia Geantă <horia.geanta@nxp.com>
8065 M: Pankaj Gupta <pankaj.gupta@nxp.com>
8066 M: Gaurav Jain <gaurav.jain@nxp.com>
8067 L: linux-crypto@vger.kernel.org
8069 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8070 F: drivers/crypto/caam/
8072 FREESCALE COLDFIRE M5441X MMC DRIVER
8073 M: Angelo Dureghello <angelo.dureghello@timesys.com>
8074 L: linux-mmc@vger.kernel.org
8076 F: drivers/mmc/host/sdhci-esdhc-mcf.c
8077 F: include/linux/platform_data/mmc-esdhc-mcf.h
8079 FREESCALE DIU FRAMEBUFFER DRIVER
8080 M: Timur Tabi <timur@kernel.org>
8081 L: linux-fbdev@vger.kernel.org
8083 F: drivers/video/fbdev/fsl-diu-fb.*
8085 FREESCALE DMA DRIVER
8086 M: Li Yang <leoyang.li@nxp.com>
8087 M: Zhang Wei <zw@zh-kernel.org>
8088 L: linuxppc-dev@lists.ozlabs.org
8090 F: drivers/dma/fsldma.*
8092 FREESCALE DSPI DRIVER
8093 M: Vladimir Oltean <olteanv@gmail.com>
8094 L: linux-spi@vger.kernel.org
8096 F: Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8097 F: drivers/spi/spi-fsl-dspi.c
8098 F: include/linux/spi/spi-fsl-dspi.h
8100 FREESCALE ENETC ETHERNET DRIVERS
8101 M: Claudiu Manoil <claudiu.manoil@nxp.com>
8102 L: netdev@vger.kernel.org
8104 F: drivers/net/ethernet/freescale/enetc/
8106 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8107 M: Claudiu Manoil <claudiu.manoil@nxp.com>
8108 L: netdev@vger.kernel.org
8110 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8111 F: drivers/net/ethernet/freescale/gianfar*
8113 FREESCALE GPMI NAND DRIVER
8114 M: Han Xu <han.xu@nxp.com>
8115 L: linux-mtd@lists.infradead.org
8117 F: drivers/mtd/nand/raw/gpmi-nand/*
8119 FREESCALE I2C CPM DRIVER
8120 M: Jochen Friedrich <jochen@scram.de>
8121 L: linuxppc-dev@lists.ozlabs.org
8122 L: linux-i2c@vger.kernel.org
8124 F: drivers/i2c/busses/i2c-cpm.c
8126 FREESCALE IMX / MXC FEC DRIVER
8127 M: Wei Fang <wei.fang@nxp.com>
8128 R: Shenwei Wang <shenwei.wang@nxp.com>
8129 R: Clark Wang <xiaoning.wang@nxp.com>
8130 R: NXP Linux Team <linux-imx@nxp.com>
8131 L: netdev@vger.kernel.org
8133 F: Documentation/devicetree/bindings/net/fsl,fec.yaml
8134 F: drivers/net/ethernet/freescale/fec.h
8135 F: drivers/net/ethernet/freescale/fec_main.c
8136 F: drivers/net/ethernet/freescale/fec_ptp.c
8138 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8139 M: Sascha Hauer <s.hauer@pengutronix.de>
8140 R: Pengutronix Kernel Team <kernel@pengutronix.de>
8141 L: linux-fbdev@vger.kernel.org
8142 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8144 F: drivers/video/fbdev/imxfb.c
8146 FREESCALE IMX DDR PMU DRIVER
8147 M: Frank Li <Frank.li@nxp.com>
8148 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8150 F: Documentation/admin-guide/perf/imx-ddr.rst
8151 F: Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8152 F: drivers/perf/fsl_imx8_ddr_perf.c
8154 FREESCALE IMX I2C DRIVER
8155 M: Oleksij Rempel <o.rempel@pengutronix.de>
8156 R: Pengutronix Kernel Team <kernel@pengutronix.de>
8157 L: linux-i2c@vger.kernel.org
8159 F: Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8160 F: drivers/i2c/busses/i2c-imx.c
8162 FREESCALE IMX LPI2C DRIVER
8163 M: Dong Aisheng <aisheng.dong@nxp.com>
8164 L: linux-i2c@vger.kernel.org
8165 L: linux-imx@nxp.com
8167 F: Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8168 F: drivers/i2c/busses/i2c-imx-lpi2c.c
8170 FREESCALE MPC I2C DRIVER
8171 M: Chris Packham <chris.packham@alliedtelesis.co.nz>
8172 L: linux-i2c@vger.kernel.org
8174 F: Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8175 F: drivers/i2c/busses/i2c-mpc.c
8177 FREESCALE QORIQ DPAA ETHERNET DRIVER
8178 M: Madalin Bucur <madalin.bucur@nxp.com>
8179 L: netdev@vger.kernel.org
8181 F: drivers/net/ethernet/freescale/dpaa
8183 FREESCALE QORIQ DPAA FMAN DRIVER
8184 M: Madalin Bucur <madalin.bucur@nxp.com>
8185 L: netdev@vger.kernel.org
8187 F: Documentation/devicetree/bindings/net/fsl-fman.txt
8188 F: drivers/net/ethernet/freescale/fman
8190 FREESCALE QORIQ PTP CLOCK DRIVER
8191 M: Yangbo Lu <yangbo.lu@nxp.com>
8192 L: netdev@vger.kernel.org
8194 F: Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8195 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8196 F: drivers/net/ethernet/freescale/dpaa2/dprtc*
8197 F: drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8198 F: drivers/ptp/ptp_qoriq.c
8199 F: drivers/ptp/ptp_qoriq_debugfs.c
8200 F: include/linux/fsl/ptp_qoriq.h
8202 FREESCALE QUAD SPI DRIVER
8203 M: Han Xu <han.xu@nxp.com>
8204 L: linux-spi@vger.kernel.org
8206 F: Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8207 F: drivers/spi/spi-fsl-qspi.c
8209 FREESCALE QUICC ENGINE LIBRARY
8210 M: Qiang Zhao <qiang.zhao@nxp.com>
8211 L: linuxppc-dev@lists.ozlabs.org
8213 F: drivers/soc/fsl/qe/
8214 F: include/soc/fsl/qe/
8216 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8217 M: Li Yang <leoyang.li@nxp.com>
8218 L: netdev@vger.kernel.org
8219 L: linuxppc-dev@lists.ozlabs.org
8221 F: drivers/net/ethernet/freescale/ucc_geth*
8223 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8224 M: Zhao Qiang <qiang.zhao@nxp.com>
8225 L: netdev@vger.kernel.org
8226 L: linuxppc-dev@lists.ozlabs.org
8228 F: drivers/net/wan/fsl_ucc_hdlc*
8230 FREESCALE QUICC ENGINE UCC UART DRIVER
8231 M: Timur Tabi <timur@kernel.org>
8232 L: linuxppc-dev@lists.ozlabs.org
8234 F: drivers/tty/serial/ucc_uart.c
8236 FREESCALE SOC DRIVERS
8237 M: Li Yang <leoyang.li@nxp.com>
8238 L: linuxppc-dev@lists.ozlabs.org
8239 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8241 F: Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8242 F: Documentation/devicetree/bindings/soc/fsl/
8244 F: include/linux/fsl/
8247 FREESCALE SOC FS_ENET DRIVER
8248 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
8249 L: linuxppc-dev@lists.ozlabs.org
8250 L: netdev@vger.kernel.org
8252 F: drivers/net/ethernet/freescale/fs_enet/
8253 F: include/linux/fs_enet_pd.h
8255 FREESCALE SOC SOUND DRIVERS
8256 M: Shengjiu Wang <shengjiu.wang@gmail.com>
8257 M: Xiubo Li <Xiubo.Lee@gmail.com>
8258 R: Fabio Estevam <festevam@gmail.com>
8259 R: Nicolin Chen <nicoleotsuka@gmail.com>
8260 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8261 L: linuxppc-dev@lists.ozlabs.org
8263 F: sound/soc/fsl/fsl*
8264 F: sound/soc/fsl/imx*
8265 F: sound/soc/fsl/mpc8610_hpcd.c
8267 FREESCALE USB PERIPHERAL DRIVERS
8268 M: Li Yang <leoyang.li@nxp.com>
8269 L: linux-usb@vger.kernel.org
8270 L: linuxppc-dev@lists.ozlabs.org
8272 F: drivers/usb/gadget/udc/fsl*
8274 FREESCALE USB PHY DRIVER
8275 M: Ran Wang <ran.wang_1@nxp.com>
8276 L: linux-usb@vger.kernel.org
8277 L: linuxppc-dev@lists.ozlabs.org
8279 F: drivers/usb/phy/phy-fsl-usb*
8282 M: Christoph Hellwig <hch@infradead.org>
8284 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
8288 M: "Rafael J. Wysocki" <rafael@kernel.org>
8289 M: Pavel Machek <pavel@ucw.cz>
8290 L: linux-pm@vger.kernel.org
8292 F: Documentation/power/freezing-of-tasks.rst
8293 F: include/linux/freezer.h
8297 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8298 L: linux-kernel@vger.kernel.org
8300 F: include/linux/frontswap.h
8303 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8304 M: David Howells <dhowells@redhat.com>
8305 L: linux-cachefs@redhat.com (moderated for non-subscribers)
8307 F: Documentation/filesystems/caching/
8309 F: include/linux/fscache*.h
8311 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8312 M: Eric Biggers <ebiggers@kernel.org>
8313 M: Theodore Y. Ts'o <tytso@mit.edu>
8314 M: Jaegeuk Kim <jaegeuk@kernel.org>
8315 L: linux-fscrypt@vger.kernel.org
8317 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
8318 T: git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8319 F: Documentation/filesystems/fscrypt.rst
8321 F: include/linux/fscrypt.h
8322 F: include/uapi/linux/fscrypt.h
8325 M: Jeremy Kerr <jk@ozlabs.org>
8326 M: Joel Stanley <joel@jms.id.au>
8327 R: Alistar Popple <alistair@popple.id.au>
8328 R: Eddie James <eajames@linux.ibm.com>
8329 L: linux-fsi@lists.ozlabs.org
8331 Q: http://patchwork.ozlabs.org/project/linux-fsi/list/
8332 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8334 F: include/linux/fsi*.h
8335 F: include/trace/events/fsi*.h
8337 FSI-ATTACHED I2C DRIVER
8338 M: Eddie James <eajames@linux.ibm.com>
8339 L: linux-i2c@vger.kernel.org
8340 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
8342 F: Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8343 F: drivers/i2c/busses/i2c-fsi.c
8345 FSI-ATTACHED SPI DRIVER
8346 M: Eddie James <eajames@linux.ibm.com>
8347 L: linux-spi@vger.kernel.org
8349 F: Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8350 F: drivers/spi/spi-fsi.c
8352 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8353 M: Jan Kara <jack@suse.cz>
8354 R: Amir Goldstein <amir73il@gmail.com>
8355 L: linux-fsdevel@vger.kernel.org
8357 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8359 F: include/linux/fsnotify*.h
8361 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8362 M: Eric Biggers <ebiggers@kernel.org>
8363 M: Theodore Y. Ts'o <tytso@mit.edu>
8364 L: fsverity@lists.linux.dev
8366 Q: https://patchwork.kernel.org/project/fsverity/list/
8367 T: git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8368 F: Documentation/filesystems/fsverity.rst
8370 F: include/linux/fsverity.h
8371 F: include/uapi/linux/fsverity.h
8373 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8374 M: Michael Zaidman <michael.zaidman@gmail.com>
8375 L: linux-i2c@vger.kernel.org
8376 L: linux-input@vger.kernel.org
8378 F: drivers/hid/hid-ft260.c
8380 FUJITSU LAPTOP EXTRAS
8381 M: Jonathan Woithe <jwoithe@just42.net>
8382 L: platform-driver-x86@vger.kernel.org
8384 F: drivers/platform/x86/fujitsu-laptop.c
8386 FUJITSU M-5MO LS CAMERA ISP DRIVER
8387 M: Kyungmin Park <kyungmin.park@samsung.com>
8388 M: Heungjun Kim <riverful.kim@samsung.com>
8389 L: linux-media@vger.kernel.org
8391 F: drivers/media/i2c/m5mols/
8392 F: include/media/i2c/m5mols.h
8394 FUJITSU TABLET EXTRAS
8395 M: Robert Gerlach <khnz@gmx.de>
8396 L: platform-driver-x86@vger.kernel.org
8398 F: drivers/platform/x86/fujitsu-tablet.c
8400 FUNCTION HOOKS (FTRACE)
8401 M: Steven Rostedt <rostedt@goodmis.org>
8402 M: Masami Hiramatsu <mhiramat@kernel.org>
8403 R: Mark Rutland <mark.rutland@arm.com>
8404 L: linux-kernel@vger.kernel.org
8405 L: linux-trace-kernel@vger.kernel.org
8406 Q: https://patchwork.kernel.org/project/linux-trace-kernel/list/
8408 T: git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8409 F: Documentation/trace/ftrace*
8410 F: kernel/trace/ftrace*
8411 F: kernel/trace/fgraph.c
8412 F: arch/*/*/*/*ftrace*
8413 F: arch/*/*/*ftrace*
8414 F: include/*/ftrace.h
8417 FUNGIBLE ETHERNET DRIVERS
8418 M: Dimitris Michailidis <dmichail@fungible.com>
8419 L: netdev@vger.kernel.org
8421 F: drivers/net/ethernet/fungible/
8423 FUSE: FILESYSTEM IN USERSPACE
8424 M: Miklos Szeredi <miklos@szeredi.hu>
8425 L: linux-fsdevel@vger.kernel.org
8427 W: https://github.com/libfuse/
8428 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8429 F: Documentation/filesystems/fuse.rst
8431 F: include/uapi/linux/fuse.h
8434 M: Thomas Gleixner <tglx@linutronix.de>
8435 M: Ingo Molnar <mingo@redhat.com>
8436 R: Peter Zijlstra <peterz@infradead.org>
8437 R: Darren Hart <dvhart@infradead.org>
8438 R: Davidlohr Bueso <dave@stgolabs.net>
8439 R: André Almeida <andrealmeid@igalia.com>
8440 L: linux-kernel@vger.kernel.org
8442 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8443 F: Documentation/locking/*futex*
8444 F: include/asm-generic/futex.h
8445 F: include/linux/futex.h
8446 F: include/uapi/linux/futex.h
8448 F: tools/perf/bench/futex*
8449 F: tools/testing/selftests/futex/
8451 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8452 M: Tim Harvey <tharvey@gateworks.com>
8454 F: Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8455 F: drivers/mfd/gateworks-gsc.c
8456 F: include/linux/mfd/gsc.h
8457 F: Documentation/hwmon/gsc-hwmon.rst
8458 F: drivers/hwmon/gsc-hwmon.c
8459 F: include/linux/platform_data/gsc_hwmon.h
8462 M: Kees Cook <keescook@chromium.org>
8463 L: linux-hardening@vger.kernel.org
8465 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8466 F: Documentation/kbuild/gcc-plugins.rst
8467 F: scripts/Makefile.gcc-plugins
8468 F: scripts/gcc-plugins/
8470 GCOV BASED KERNEL PROFILING
8471 M: Peter Oberparleiter <oberpar@linux.ibm.com>
8473 F: Documentation/dev-tools/gcov.rst
8476 GDB KERNEL DEBUGGING HELPER SCRIPTS
8477 M: Jan Kiszka <jan.kiszka@siemens.com>
8478 M: Kieran Bingham <kbingham@kernel.org>
8482 GEMINI CRYPTO DRIVER
8483 M: Corentin Labbe <clabbe@baylibre.com>
8484 L: linux-crypto@vger.kernel.org
8486 F: drivers/crypto/gemini/
8488 GEMTEK FM RADIO RECEIVER DRIVER
8489 M: Hans Verkuil <hverkuil@xs4all.nl>
8490 L: linux-media@vger.kernel.org
8492 W: https://linuxtv.org
8493 T: git git://linuxtv.org/media_tree.git
8494 F: drivers/media/radio/radio-gemtek*
8496 GENERIC ARCHITECTURE TOPOLOGY
8497 M: Sudeep Holla <sudeep.holla@arm.com>
8498 L: linux-kernel@vger.kernel.org
8500 F: drivers/base/arch_topology.c
8501 F: include/linux/arch_topology.h
8504 M: Thomas Gleixner <tglx@linutronix.de>
8505 M: Peter Zijlstra <peterz@infradead.org>
8506 M: Andy Lutomirski <luto@kernel.org>
8507 L: linux-kernel@vger.kernel.org
8509 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8510 F: include/linux/entry-common.h
8511 F: include/linux/entry-kvm.h
8514 GENERIC GPIO I2C DRIVER
8515 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
8517 F: drivers/i2c/busses/i2c-gpio.c
8518 F: include/linux/platform_data/i2c-gpio.h
8520 GENERIC GPIO I2C MULTIPLEXER DRIVER
8521 M: Peter Korsgaard <peter.korsgaard@barco.com>
8522 L: linux-i2c@vger.kernel.org
8524 F: Documentation/i2c/muxes/i2c-mux-gpio.rst
8525 F: drivers/i2c/muxes/i2c-mux-gpio.c
8526 F: include/linux/platform_data/i2c-mux-gpio.h
8528 GENERIC HDLC (WAN) DRIVERS
8529 M: Krzysztof Halasa <khc@pm.waw.pl>
8531 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
8532 F: drivers/net/wan/c101.c
8533 F: drivers/net/wan/hd6457*
8534 F: drivers/net/wan/hdlc*
8535 F: drivers/net/wan/n2.c
8536 F: drivers/net/wan/pc300too.c
8537 F: drivers/net/wan/pci200syn.c
8538 F: drivers/net/wan/wanxl*
8540 GENERIC INCLUDE/ASM HEADER FILES
8541 M: Arnd Bergmann <arnd@arndb.de>
8542 L: linux-arch@vger.kernel.org
8544 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8545 F: include/asm-generic/
8546 F: include/uapi/asm-generic/
8548 GENERIC PHY FRAMEWORK
8549 M: Vinod Koul <vkoul@kernel.org>
8550 M: Kishon Vijay Abraham I <kishon@kernel.org>
8551 L: linux-phy@lists.infradead.org
8553 Q: https://patchwork.kernel.org/project/linux-phy/list/
8554 T: git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8555 F: Documentation/devicetree/bindings/phy/
8557 F: include/dt-bindings/phy/
8558 F: include/linux/phy/
8560 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8561 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
8563 F: drivers/i2c/muxes/i2c-demux-pinctrl.c
8566 M: "Rafael J. Wysocki" <rafael@kernel.org>
8567 M: Kevin Hilman <khilman@kernel.org>
8568 M: Ulf Hansson <ulf.hansson@linaro.org>
8569 L: linux-pm@vger.kernel.org
8571 F: Documentation/devicetree/bindings/power/power?domain*
8572 F: drivers/base/power/domain*.c
8573 F: include/linux/pm_domain.h
8575 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8576 M: Eugen Hristev <eugen.hristev@microchip.com>
8577 L: linux-input@vger.kernel.org
8579 F: drivers/input/touchscreen/resistive-adc-touch.c
8581 GENERIC STRING LIBRARY
8582 R: Andy Shevchenko <andy@kernel.org>
8585 F: lib/string_helpers.c
8586 F: lib/test_string.c
8587 F: lib/test-string_helpers.c
8589 GENERIC UIO DRIVER FOR PCI DEVICES
8590 M: "Michael S. Tsirkin" <mst@redhat.com>
8591 L: kvm@vger.kernel.org
8593 F: drivers/uio/uio_pci_generic.c
8595 GENERIC VDSO LIBRARY
8596 M: Andy Lutomirski <luto@kernel.org>
8597 M: Thomas Gleixner <tglx@linutronix.de>
8598 M: Vincenzo Frascino <vincenzo.frascino@arm.com>
8599 L: linux-kernel@vger.kernel.org
8601 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8602 F: include/asm-generic/vdso/vsyscall.h
8604 F: kernel/time/vsyscall.c
8607 GENWQE (IBM Generic Workqueue Card)
8608 M: Frank Haverkamp <haver@linux.ibm.com>
8610 F: drivers/misc/genwqe/
8612 GET_MAINTAINER SCRIPT
8613 M: Joe Perches <joe@perches.com>
8615 F: scripts/get_maintainer.pl
8618 M: Bob Peterson <rpeterso@redhat.com>
8619 M: Andreas Gruenbacher <agruenba@redhat.com>
8620 L: cluster-devel@redhat.com
8622 B: https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8623 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8624 F: Documentation/filesystems/gfs2*
8626 F: include/uapi/linux/gfs2_ondisk.h
8629 M: Thomas Weißschuh <thomas@weissschuh.net>
8630 L: platform-driver-x86@vger.kernel.org
8632 F: drivers/platform/x86/gigabyte-wmi.c
8635 M: Johan Hovold <johan@kernel.org>
8637 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8638 F: Documentation/ABI/testing/sysfs-class-gnss
8639 F: Documentation/devicetree/bindings/gnss/
8641 F: include/linux/gnss.h
8644 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
8645 L: linux-media@vger.kernel.org
8647 F: drivers/media/usb/go7007/
8650 M: Bastien Nocera <hadess@hadess.net>
8651 M: Hans de Goede <hdegoede@redhat.com>
8652 L: linux-input@vger.kernel.org
8654 F: drivers/input/touchscreen/goodix*
8656 GOOGLE ETHERNET DRIVERS
8657 M: Jeroen de Borst <jeroendb@google.com>
8658 M: Catherine Sullivan <csully@google.com>
8659 R: Shailend Chand <shailend@google.com>
8660 L: netdev@vger.kernel.org
8662 F: Documentation/networking/device_drivers/ethernet/google/gve.rst
8663 F: drivers/net/ethernet/google
8665 GPD POCKET FAN DRIVER
8666 M: Hans de Goede <hdegoede@redhat.com>
8667 L: platform-driver-x86@vger.kernel.org
8669 F: drivers/platform/x86/gpd-pocket-fan.c
8672 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8673 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8674 L: linux-gpio@vger.kernel.org
8675 L: linux-acpi@vger.kernel.org
8677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8678 F: Documentation/firmware-guide/acpi/gpio-properties.rst
8679 F: drivers/gpio/gpiolib-acpi.c
8680 F: drivers/gpio/gpiolib-acpi.h
8683 M: Geert Uytterhoeven <geert+renesas@glider.be>
8684 L: linux-gpio@vger.kernel.org
8686 F: Documentation/admin-guide/gpio/gpio-aggregator.rst
8687 F: drivers/gpio/gpio-aggregator.c
8690 M: Sean Young <sean@mess.org>
8691 L: linux-media@vger.kernel.org
8693 F: Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8694 F: drivers/media/rc/gpio-ir-tx.c
8697 M: Bamvor Jian Zhang <bamv2005@gmail.com>
8698 L: linux-gpio@vger.kernel.org
8700 F: drivers/gpio/gpio-mockup.c
8701 F: tools/testing/selftests/gpio/
8704 R: Michael Walle <michael@walle.cc>
8706 F: drivers/gpio/gpio-regmap.c
8707 F: include/linux/gpio/regmap.h
8710 M: Linus Walleij <linus.walleij@linaro.org>
8711 M: Bartosz Golaszewski <brgl@bgdev.pl>
8712 L: linux-gpio@vger.kernel.org
8714 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8715 F: Documentation/ABI/obsolete/sysfs-gpio
8716 F: Documentation/ABI/testing/gpio-cdev
8717 F: Documentation/admin-guide/gpio/
8718 F: Documentation/devicetree/bindings/gpio/
8719 F: Documentation/driver-api/gpio/
8721 F: include/asm-generic/gpio.h
8722 F: include/dt-bindings/gpio/
8723 F: include/linux/gpio.h
8724 F: include/linux/gpio/
8725 F: include/linux/of_gpio.h
8726 F: include/uapi/linux/gpio.h
8729 GRE DEMULTIPLEXER DRIVER
8730 M: Dmitry Kozlov <xeb@mail.ru>
8731 L: netdev@vger.kernel.org
8733 F: include/net/gre.h
8734 F: net/ipv4/gre_demux.c
8735 F: net/ipv4/gre_offload.c
8737 GRETH 10/100/1G Ethernet MAC device driver
8738 M: Andreas Larsson <andreas@gaisler.com>
8739 L: netdev@vger.kernel.org
8741 F: drivers/net/ethernet/aeroflex/
8743 GREYBUS AUDIO PROTOCOLS DRIVERS
8744 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
8745 M: Mark Greer <mgreer@animalcreek.com>
8747 F: drivers/staging/greybus/audio_apbridgea.c
8748 F: drivers/staging/greybus/audio_apbridgea.h
8749 F: drivers/staging/greybus/audio_codec.c
8750 F: drivers/staging/greybus/audio_codec.h
8751 F: drivers/staging/greybus/audio_gb.c
8752 F: drivers/staging/greybus/audio_manager.c
8753 F: drivers/staging/greybus/audio_manager.h
8754 F: drivers/staging/greybus/audio_manager_module.c
8755 F: drivers/staging/greybus/audio_manager_private.h
8756 F: drivers/staging/greybus/audio_manager_sysfs.c
8757 F: drivers/staging/greybus/audio_module.c
8758 F: drivers/staging/greybus/audio_topology.c
8760 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8761 M: Viresh Kumar <vireshk@kernel.org>
8763 F: drivers/staging/greybus/authentication.c
8764 F: drivers/staging/greybus/bootrom.c
8765 F: drivers/staging/greybus/firmware.h
8766 F: drivers/staging/greybus/fw-core.c
8767 F: drivers/staging/greybus/fw-download.c
8768 F: drivers/staging/greybus/fw-management.c
8769 F: drivers/staging/greybus/greybus_authentication.h
8770 F: drivers/staging/greybus/greybus_firmware.h
8771 F: drivers/staging/greybus/hid.c
8772 F: drivers/staging/greybus/i2c.c
8773 F: drivers/staging/greybus/spi.c
8774 F: drivers/staging/greybus/spilib.c
8775 F: drivers/staging/greybus/spilib.h
8777 GREYBUS LOOPBACK DRIVER
8778 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
8780 F: drivers/staging/greybus/loopback.c
8782 GREYBUS PLATFORM DRIVERS
8783 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8785 F: drivers/staging/greybus/arche-apb-ctrl.c
8786 F: drivers/staging/greybus/arche-platform.c
8787 F: drivers/staging/greybus/arche_platform.h
8789 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8790 M: Rui Miguel Silva <rmfrfs@gmail.com>
8792 F: drivers/staging/greybus/gpio.c
8793 F: drivers/staging/greybus/light.c
8794 F: drivers/staging/greybus/power_supply.c
8795 F: drivers/staging/greybus/sdio.c
8796 F: drivers/staging/greybus/spi.c
8797 F: drivers/staging/greybus/spilib.c
8800 M: Johan Hovold <johan@kernel.org>
8801 M: Alex Elder <elder@kernel.org>
8802 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8803 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
8806 F: drivers/staging/greybus/
8807 F: include/linux/greybus.h
8808 F: include/linux/greybus/
8810 GREYBUS UART PROTOCOLS DRIVERS
8811 M: David Lin <dtwlin@gmail.com>
8813 F: drivers/staging/greybus/log.c
8814 F: drivers/staging/greybus/uart.c
8816 GS1662 VIDEO SERIALIZER
8817 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8818 L: linux-media@vger.kernel.org
8820 T: git git://linuxtv.org/media_tree.git
8821 F: drivers/media/spi/gs1662.c
8823 GSPCA FINEPIX SUBDRIVER
8824 M: Frank Zago <frank@zago.net>
8825 L: linux-media@vger.kernel.org
8827 T: git git://linuxtv.org/media_tree.git
8828 F: drivers/media/usb/gspca/finepix.c
8830 GSPCA GL860 SUBDRIVER
8831 M: Olivier Lorin <o.lorin@laposte.net>
8832 L: linux-media@vger.kernel.org
8834 T: git git://linuxtv.org/media_tree.git
8835 F: drivers/media/usb/gspca/gl860/
8837 GSPCA M5602 SUBDRIVER
8838 M: Erik Andren <erik.andren@gmail.com>
8839 L: linux-media@vger.kernel.org
8841 T: git git://linuxtv.org/media_tree.git
8842 F: drivers/media/usb/gspca/m5602/
8844 GSPCA PAC207 SONIXB SUBDRIVER
8845 M: Hans Verkuil <hverkuil@xs4all.nl>
8846 L: linux-media@vger.kernel.org
8848 T: git git://linuxtv.org/media_tree.git
8849 F: drivers/media/usb/gspca/pac207.c
8851 GSPCA SN9C20X SUBDRIVER
8852 M: Brian Johnson <brijohn@gmail.com>
8853 L: linux-media@vger.kernel.org
8855 T: git git://linuxtv.org/media_tree.git
8856 F: drivers/media/usb/gspca/sn9c20x.c
8858 GSPCA T613 SUBDRIVER
8859 M: Leandro Costantino <lcostantino@gmail.com>
8860 L: linux-media@vger.kernel.org
8862 T: git git://linuxtv.org/media_tree.git
8863 F: drivers/media/usb/gspca/t613.c
8865 GSPCA USB WEBCAM DRIVER
8866 M: Hans Verkuil <hverkuil@xs4all.nl>
8867 L: linux-media@vger.kernel.org
8869 T: git git://linuxtv.org/media_tree.git
8870 F: drivers/media/usb/gspca/
8872 GTP (GPRS Tunneling Protocol)
8873 M: Pablo Neira Ayuso <pablo@netfilter.org>
8874 M: Harald Welte <laforge@gnumonks.org>
8875 L: osmocom-net-gprs@lists.osmocom.org
8877 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8878 F: drivers/net/gtp.c
8880 GUID PARTITION TABLE (GPT)
8881 M: Davidlohr Bueso <dave@stgolabs.net>
8882 L: linux-efi@vger.kernel.org
8884 F: block/partitions/efi.*
8886 HABANALABS PCI DRIVER
8887 M: Oded Gabbay <ogabbay@kernel.org>
8889 T: git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8890 F: Documentation/ABI/testing/debugfs-driver-habanalabs
8891 F: Documentation/ABI/testing/sysfs-driver-habanalabs
8892 F: drivers/misc/habanalabs/
8893 F: include/trace/events/habanalabs.h
8894 F: include/uapi/misc/habanalabs.h
8897 M: Antti Palosaari <crope@iki.fi>
8898 L: linux-media@vger.kernel.org
8900 W: https://linuxtv.org
8901 W: http://palosaari.fi/linux/
8902 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8903 T: git git://linuxtv.org/anttip/media_tree.git
8904 F: drivers/media/usb/hackrf/
8906 HANTRO VPU CODEC DRIVER
8907 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8908 M: Philipp Zabel <p.zabel@pengutronix.de>
8909 L: linux-media@vger.kernel.org
8910 L: linux-rockchip@lists.infradead.org
8912 F: Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8913 F: Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8914 F: Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8915 F: drivers/media/platform/verisilicon/
8917 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8918 M: Frank Seidel <frank@f-seidel.de>
8919 L: platform-driver-x86@vger.kernel.org
8921 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8922 F: drivers/platform/x86/hdaps.c
8925 M: Jean Delvare <jdelvare@suse.com>
8926 M: Guenter Roeck <linux@roeck-us.net>
8927 L: linux-hwmon@vger.kernel.org
8929 W: http://hwmon.wiki.kernel.org/
8930 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8931 F: Documentation/ABI/testing/sysfs-class-hwmon
8932 F: Documentation/devicetree/bindings/hwmon/
8933 F: Documentation/hwmon/
8935 F: include/linux/hwmon*.h
8936 F: include/trace/events/hwmon*.h
8937 K: (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8939 HARDWARE RANDOM NUMBER GENERATOR CORE
8940 M: Olivia Mackall <olivia@selenic.com>
8941 M: Herbert Xu <herbert@gondor.apana.org.au>
8942 L: linux-crypto@vger.kernel.org
8944 F: Documentation/admin-guide/hw_random.rst
8945 F: Documentation/devicetree/bindings/rng/
8946 F: drivers/char/hw_random/
8947 F: include/linux/hw_random.h
8949 HARDWARE SPINLOCK CORE
8950 M: Ohad Ben-Cohen <ohad@wizery.com>
8951 M: Bjorn Andersson <andersson@kernel.org>
8952 R: Baolin Wang <baolin.wang7@gmail.com>
8953 L: linux-remoteproc@vger.kernel.org
8955 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8956 F: Documentation/devicetree/bindings/hwlock/
8957 F: Documentation/locking/hwspinlock.rst
8958 F: drivers/hwspinlock/
8959 F: include/linux/hwspinlock.h
8961 HARDWARE TRACING FACILITIES
8962 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
8964 F: drivers/hwtracing/
8966 HARMONY SOUND DRIVER
8967 L: linux-parisc@vger.kernel.org
8969 F: sound/parisc/harmony.*
8971 HDPVR USB VIDEO ENCODER DRIVER
8972 M: Hans Verkuil <hverkuil@xs4all.nl>
8973 L: linux-media@vger.kernel.org
8975 W: https://linuxtv.org
8976 T: git git://linuxtv.org/media_tree.git
8977 F: drivers/media/usb/hdpvr/
8979 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8980 M: Matt Hsiao <matt.hsiao@hpe.com>
8982 F: drivers/misc/hpilo.[ch]
8984 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8985 M: Jerry Hoemann <jerry.hoemann@hpe.com>
8987 F: Documentation/watchdog/hpwdt.rst
8988 F: drivers/watchdog/hpwdt.c
8990 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8991 M: Don Brace <don.brace@microchip.com>
8992 L: storagedev@microchip.com
8993 L: linux-scsi@vger.kernel.org
8995 F: Documentation/scsi/hpsa.rst
8996 F: drivers/scsi/hpsa*.[ch]
8997 F: include/linux/cciss*.h
8998 F: include/uapi/linux/cciss*.h
9001 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9002 L: linux-rdma@vger.kernel.org
9004 F: drivers/infiniband/hw/hfi1
9007 L: linux-fsdevel@vger.kernel.org
9009 F: Documentation/filesystems/hfs.rst
9013 L: linux-fsdevel@vger.kernel.org
9015 F: Documentation/filesystems/hfsplus.rst
9018 HGA FRAMEBUFFER DRIVER
9019 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9020 L: linux-nvidia@lists.surfsouth.com
9022 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9023 F: drivers/video/fbdev/hgafb.c
9025 HIBERNATION (aka Software Suspend, aka swsusp)
9026 M: "Rafael J. Wysocki" <rafael@kernel.org>
9027 M: Pavel Machek <pavel@ucw.cz>
9028 L: linux-pm@vger.kernel.org
9030 B: https://bugzilla.kernel.org
9031 F: arch/*/include/asm/suspend*.h
9033 F: drivers/base/power/
9034 F: include/linux/freezer.h
9035 F: include/linux/pm.h
9036 F: include/linux/suspend.h
9040 M: Jiri Kosina <jikos@kernel.org>
9041 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
9042 L: linux-input@vger.kernel.org
9044 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9046 F: include/linux/hid*
9047 F: include/uapi/linux/hid*
9049 HID LOGITECH DRIVERS
9050 R: Filipe Laíns <lains@riseup.net>
9051 L: linux-input@vger.kernel.org
9053 F: drivers/hid/hid-logitech-*
9055 HID PLAYSTATION DRIVER
9056 M: Roderick Colenbrander <roderick.colenbrander@sony.com>
9057 L: linux-input@vger.kernel.org
9059 F: drivers/hid/hid-playstation.c
9061 HID PHOENIX RC FLIGHT CONTROLLER
9062 M: Marcus Folkesson <marcus.folkesson@gmail.com>
9063 L: linux-input@vger.kernel.org
9065 F: drivers/hid/hid-pxrc.c
9067 HID SENSOR HUB DRIVERS
9068 M: Jiri Kosina <jikos@kernel.org>
9069 M: Jonathan Cameron <jic23@kernel.org>
9070 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9071 L: linux-input@vger.kernel.org
9072 L: linux-iio@vger.kernel.org
9074 F: Documentation/hid/hid-sensor*
9075 F: drivers/hid/hid-sensor-*
9076 F: drivers/iio/*/hid-*
9077 F: include/linux/hid-sensor-*
9079 HID VRC-2 CAR CONTROLLER DRIVER
9080 M: Marcus Folkesson <marcus.folkesson@gmail.com>
9081 L: linux-input@vger.kernel.org
9083 F: drivers/hid/hid-vrc2.c
9086 M: Ping Cheng <ping.cheng@wacom.com>
9087 M: Jason Gerecke <jason.gerecke@wacom.com>
9088 L: linux-input@vger.kernel.org
9090 F: drivers/hid/wacom.h
9091 F: drivers/hid/wacom_*
9093 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9094 M: Thomas Gleixner <tglx@linutronix.de>
9095 L: linux-kernel@vger.kernel.org
9097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9098 F: Documentation/timers/
9099 F: include/linux/clockchips.h
9100 F: include/linux/hrtimer.h
9101 F: kernel/time/clockevents.c
9102 F: kernel/time/hrtimer.c
9103 F: kernel/time/timer_*.c
9105 HIGH-SPEED SCC DRIVER FOR AX.25
9106 L: linux-hams@vger.kernel.org
9108 F: drivers/net/hamradio/scc.c
9110 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9111 M: HighPoint Linux Team <linux@highpoint-tech.com>
9113 W: http://www.highpoint-tech.com
9114 F: Documentation/scsi/hptiop.rst
9115 F: drivers/scsi/hptiop.c
9117 HIMAX HX83112B TOUCHSCREEN SUPPORT
9118 M: Job Noorman <job@noorman.info>
9119 L: linux-input@vger.kernel.org
9121 F: Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9122 F: drivers/input/touchscreen/himax_hx83112b.c
9125 M: Jes Sorensen <jes@trained-monkey.org>
9126 L: linux-hippi@sunsite.dk
9128 F: drivers/net/hippi/
9129 F: include/linux/hippidevice.h
9130 F: include/uapi/linux/if_hippi.h
9133 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9134 M: Kurt Kanzenbach <kurt@linutronix.de>
9135 L: netdev@vger.kernel.org
9137 F: Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9138 F: drivers/net/dsa/hirschmann/*
9139 F: include/linux/platform_data/hirschmann-hellcreek.h
9140 F: net/dsa/tag_hellcreek.c
9142 HISILICON DMA DRIVER
9143 M: Zhou Wang <wangzhou1@hisilicon.com>
9144 M: Jie Hai <haijie1@huawei.com>
9145 L: dmaengine@vger.kernel.org
9147 F: drivers/dma/hisi_dma.c
9149 HISILICON GPIO DRIVER
9150 M: Jay Fang <f.fangjian@huawei.com>
9151 L: linux-gpio@vger.kernel.org
9153 F: Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9154 F: drivers/gpio/gpio-hisi.c
9156 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9157 M: Longfang Liu <liulongfang@huawei.com>
9158 L: linux-crypto@vger.kernel.org
9160 F: Documentation/ABI/testing/debugfs-hisi-hpre
9161 F: drivers/crypto/hisilicon/hpre/hpre.h
9162 F: drivers/crypto/hisilicon/hpre/hpre_crypto.c
9163 F: drivers/crypto/hisilicon/hpre/hpre_main.c
9165 HISILICON I2C CONTROLLER DRIVER
9166 M: Yicong Yang <yangyicong@hisilicon.com>
9167 L: linux-i2c@vger.kernel.org
9169 W: https://www.hisilicon.com
9170 F: Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9171 F: drivers/i2c/busses/i2c-hisi.c
9173 HISILICON LPC BUS DRIVER
9174 M: Jay Fang <f.fangjian@huawei.com>
9176 W: http://www.hisilicon.com
9177 F: Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9178 F: drivers/bus/hisi_lpc.c
9180 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9181 M: Yisen Zhuang <yisen.zhuang@huawei.com>
9182 M: Salil Mehta <salil.mehta@huawei.com>
9183 L: netdev@vger.kernel.org
9185 W: http://www.hisilicon.com
9186 F: drivers/net/ethernet/hisilicon/hns3/
9188 HISILICON NETWORK SUBSYSTEM DRIVER
9189 M: Yisen Zhuang <yisen.zhuang@huawei.com>
9190 M: Salil Mehta <salil.mehta@huawei.com>
9191 L: netdev@vger.kernel.org
9193 W: http://www.hisilicon.com
9194 F: Documentation/devicetree/bindings/net/hisilicon*.txt
9195 F: drivers/net/ethernet/hisilicon/
9197 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9198 M: John Stultz <jstultz@google.com>
9199 L: linux-kernel@vger.kernel.org
9201 F: drivers/misc/hisi_hikey_usb.c
9203 HISILICON PMU DRIVER
9204 M: Shaokun Zhang <zhangshaokun@hisilicon.com>
9205 M: Jonathan Cameron <jonathan.cameron@huawei.com>
9207 W: http://www.hisilicon.com
9208 F: Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9209 F: Documentation/admin-guide/perf/hisi-pmu.rst
9210 F: drivers/perf/hisilicon
9212 HISILICON HNS3 PMU DRIVER
9213 M: Guangbin Huang <huangguangbin2@huawei.com>
9215 F: Documentation/admin-guide/perf/hns3-pmu.rst
9216 F: drivers/perf/hisilicon/hns3_pmu.c
9218 HISILICON PTT DRIVER
9219 M: Yicong Yang <yangyicong@hisilicon.com>
9220 L: linux-kernel@vger.kernel.org
9222 F: Documentation/ABI/testing/sysfs-devices-hisi_ptt
9223 F: Documentation/trace/hisi-ptt.rst
9224 F: drivers/hwtracing/ptt/
9227 M: Weili Qian <qianweili@huawei.com>
9228 M: Zhou Wang <wangzhou1@hisilicon.com>
9229 L: linux-crypto@vger.kernel.org
9231 F: drivers/crypto/hisilicon/Kconfig
9232 F: drivers/crypto/hisilicon/Makefile
9233 F: drivers/crypto/hisilicon/qm.c
9234 F: drivers/crypto/hisilicon/sgl.c
9235 F: include/linux/hisi_acc_qm.h
9237 HISILICON ZIP Controller DRIVER
9238 M: Yang Shen <shenyang39@huawei.com>
9239 M: Zhou Wang <wangzhou1@hisilicon.com>
9240 L: linux-crypto@vger.kernel.org
9242 F: Documentation/ABI/testing/debugfs-hisi-zip
9243 F: drivers/crypto/hisilicon/zip/
9245 HISILICON ROCE DRIVER
9246 M: Haoyue Xu <xuhaoyue1@hisilicon.com>
9247 M: Wenpeng Liang <liangwenpeng@huawei.com>
9248 L: linux-rdma@vger.kernel.org
9250 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9251 F: drivers/infiniband/hw/hns/
9253 HISILICON SAS Controller
9254 M: Xiang Chen <chenxiang66@hisilicon.com>
9256 W: http://www.hisilicon.com
9257 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9258 F: drivers/scsi/hisi_sas/
9260 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9261 M: Kai Ye <yekai13@huawei.com>
9262 M: Longfang Liu <liulongfang@huawei.com>
9263 L: linux-crypto@vger.kernel.org
9265 F: Documentation/ABI/testing/debugfs-hisi-sec
9266 F: drivers/crypto/hisilicon/sec2/sec.h
9267 F: drivers/crypto/hisilicon/sec2/sec_crypto.c
9268 F: drivers/crypto/hisilicon/sec2/sec_crypto.h
9269 F: drivers/crypto/hisilicon/sec2/sec_main.c
9271 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9272 M: Jay Fang <f.fangjian@huawei.com>
9273 L: linux-spi@vger.kernel.org
9275 W: http://www.hisilicon.com
9276 F: drivers/spi/spi-hisi-kunpeng.c
9278 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9279 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9280 L: linux-kernel@vger.kernel.org
9282 F: Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9283 F: drivers/spmi/hisi-spmi-controller.c
9285 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9286 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9287 L: linux-kernel@vger.kernel.org
9289 F: Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9290 F: drivers/mfd/hi6421-spmi-pmic.c
9292 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9293 M: Weili Qian <qianweili@huawei.com>
9295 F: drivers/crypto/hisilicon/trng/trng.c
9297 HISILICON V3XX SPI NOR FLASH Controller Driver
9298 M: Jay Fang <f.fangjian@huawei.com>
9300 W: http://www.hisilicon.com
9301 F: drivers/spi/spi-hisi-sfc-v3xx.c
9303 HMM - Heterogeneous Memory Management
9304 M: Jérôme Glisse <jglisse@redhat.com>
9305 L: linux-mm@kvack.org
9307 F: Documentation/mm/hmm.rst
9308 F: include/linux/hmm*
9311 F: tools/testing/selftests/vm/*hmm*
9314 M: Jouni Malinen <j@w1.fi>
9315 L: linux-wireless@vger.kernel.org
9317 W: http://w1.fi/hostap-driver.html
9318 F: drivers/net/wireless/intersil/hostap/
9320 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9321 L: platform-driver-x86@vger.kernel.org
9323 F: drivers/platform/x86/hp/tc1100-wmi.c
9325 HPET: High Precision Event Timers driver
9326 M: Clemens Ladisch <clemens@ladisch.de>
9328 F: Documentation/timers/hpet.rst
9329 F: drivers/char/hpet.c
9330 F: include/linux/hpet.h
9331 F: include/uapi/linux/hpet.h
9335 F: arch/x86/include/asm/hpet.h
9336 F: arch/x86/kernel/hpet.c
9339 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9341 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9345 M: Sebastian Reichel <sre@kernel.org>
9347 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9348 F: Documentation/ABI/testing/sysfs-bus-hsi
9349 F: Documentation/driver-api/hsi.rst
9351 F: include/linux/hsi/
9352 F: include/uapi/linux/hsi/
9355 L: linux-usb@vger.kernel.org
9357 F: drivers/net/usb/hso.c
9359 HSR NETWORK PROTOCOL
9360 L: netdev@vger.kernel.org
9364 HT16K33 LED CONTROLLER DRIVER
9365 M: Robin van der Gracht <robin@protonic.nl>
9367 F: Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9368 F: drivers/auxdisplay/ht16k33.c
9370 HTCPEN TOUCHSCREEN DRIVER
9371 M: Pau Oliva Fora <pof@eslack.org>
9372 L: linux-input@vger.kernel.org
9374 F: drivers/input/touchscreen/htcpen.c
9377 M: Dipen Patel <dipenp@nvidia.com>
9379 F: Documentation/devicetree/bindings/timestamp/
9380 F: Documentation/driver-api/hte/
9382 F: include/linux/hte.h
9384 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9385 M: Lorenzo Bianconi <lorenzo@kernel.org>
9386 L: linux-iio@vger.kernel.org
9388 W: http://www.st.com/
9389 F: Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9390 F: drivers/iio/humidity/hts221*
9392 HUAWEI ETHERNET DRIVER
9393 M: Cai Huoqing <cai.huoqing@linux.dev>
9394 L: netdev@vger.kernel.org
9396 F: Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9397 F: drivers/net/ethernet/huawei/hinic/
9400 M: Mike Kravetz <mike.kravetz@oracle.com>
9401 M: Muchun Song <muchun.song@linux.dev>
9402 L: linux-mm@kvack.org
9404 F: Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9405 F: Documentation/admin-guide/mm/hugetlbpage.rst
9406 F: Documentation/mm/hugetlbfs_reserv.rst
9407 F: Documentation/mm/vmemmap_dedup.rst
9409 F: include/linux/hugetlb.h
9411 F: mm/hugetlb_vmemmap.c
9412 F: mm/hugetlb_vmemmap.h
9415 M: Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9416 L: linux-media@vger.kernel.org
9418 W: https://linuxtv.org
9419 T: git git://linuxtv.org/media_tree.git
9420 F: drivers/media/platform/st/sti/hva
9422 HWPOISON MEMORY FAILURE HANDLING
9423 M: Naoya Horiguchi <naoya.horiguchi@nec.com>
9424 R: Miaohe Lin <linmiaohe@huawei.com>
9425 L: linux-mm@kvack.org
9427 F: mm/hwpoison-inject.c
9428 F: mm/memory-failure.c
9430 HYCON HY46XX TOUCHSCREEN SUPPORT
9431 M: Giulio Benetti <giulio.benetti@benettiengineering.com>
9432 L: linux-input@vger.kernel.org
9434 F: Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9435 F: drivers/input/touchscreen/hycon-hy46xx.c
9437 HYGON PROCESSOR SUPPORT
9438 M: Pu Wen <puwen@hygon.cn>
9439 L: linux-kernel@vger.kernel.org
9441 F: arch/x86/kernel/cpu/hygon.c
9443 HYNIX HI556 SENSOR DRIVER
9444 M: Shawn Tu <shawnx.tu@intel.com>
9445 L: linux-media@vger.kernel.org
9447 T: git git://linuxtv.org/media_tree.git
9448 F: drivers/media/i2c/hi556.c
9450 HYNIX HI846 SENSOR DRIVER
9451 M: Martin Kepplinger <martin.kepplinger@puri.sm>
9452 L: linux-media@vger.kernel.org
9454 F: drivers/media/i2c/hi846.c
9456 HYNIX HI847 SENSOR DRIVER
9457 M: Shawn Tu <shawnx.tu@intel.com>
9458 L: linux-media@vger.kernel.org
9460 F: drivers/media/i2c/hi847.c
9462 Hyper-V/Azure CORE AND DRIVERS
9463 M: "K. Y. Srinivasan" <kys@microsoft.com>
9464 M: Haiyang Zhang <haiyangz@microsoft.com>
9465 M: Wei Liu <wei.liu@kernel.org>
9466 M: Dexuan Cui <decui@microsoft.com>
9467 L: linux-hyperv@vger.kernel.org
9469 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9470 F: Documentation/ABI/stable/sysfs-bus-vmbus
9471 F: Documentation/ABI/testing/debugfs-hyperv
9472 F: Documentation/virt/hyperv
9473 F: Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9474 F: arch/arm64/hyperv
9475 F: arch/arm64/include/asm/hyperv-tlfs.h
9476 F: arch/arm64/include/asm/mshyperv.h
9478 F: arch/x86/include/asm/hyperv-tlfs.h
9479 F: arch/x86/include/asm/mshyperv.h
9480 F: arch/x86/include/asm/trace/hyperv.h
9481 F: arch/x86/kernel/cpu/mshyperv.c
9482 F: drivers/clocksource/hyperv_timer.c
9483 F: drivers/hid/hid-hyperv.c
9485 F: drivers/input/serio/hyperv-keyboard.c
9486 F: drivers/iommu/hyperv-iommu.c
9487 F: drivers/net/ethernet/microsoft/
9488 F: drivers/net/hyperv/
9489 F: drivers/pci/controller/pci-hyperv-intf.c
9490 F: drivers/pci/controller/pci-hyperv.c
9491 F: drivers/scsi/storvsc_drv.c
9492 F: drivers/uio/uio_hv_generic.c
9493 F: drivers/video/fbdev/hyperv_fb.c
9494 F: include/asm-generic/hyperv-tlfs.h
9495 F: include/asm-generic/mshyperv.h
9496 F: include/clocksource/hyperv_timer.h
9497 F: include/linux/hyperv.h
9499 F: include/uapi/linux/hyperv.h
9500 F: net/vmw_vsock/hyperv_transport.c
9504 M: Vignesh Raghavendra <vigneshr@ti.com>
9505 L: linux-mtd@lists.infradead.org
9507 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
9508 C: irc://irc.oftc.net/mtd
9509 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9510 F: Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9511 F: drivers/mtd/hyperbus/
9512 F: include/linux/mtd/hyperbus.h
9514 HYPERVISOR VIRTUAL CONSOLE DRIVER
9515 L: linuxppc-dev@lists.ozlabs.org
9520 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9521 L: linux-i2c@vger.kernel.org
9522 L: linux-acpi@vger.kernel.org
9524 F: drivers/i2c/i2c-core-acpi.c
9526 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9527 M: Ajay Gupta <ajayg@nvidia.com>
9528 L: linux-i2c@vger.kernel.org
9530 F: Documentation/i2c/busses/i2c-nvidia-gpu.rst
9531 F: drivers/i2c/busses/i2c-nvidia-gpu.c
9534 M: Peter Rosin <peda@axentia.se>
9535 L: linux-i2c@vger.kernel.org
9537 F: Documentation/devicetree/bindings/i2c/i2c-arb*
9538 F: Documentation/devicetree/bindings/i2c/i2c-gate*
9539 F: Documentation/devicetree/bindings/i2c/i2c-mux*
9540 F: Documentation/i2c/i2c-topology.rst
9541 F: Documentation/i2c/muxes/
9542 F: drivers/i2c/i2c-mux.c
9543 F: drivers/i2c/muxes/
9544 F: include/linux/i2c-mux.h
9546 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9547 M: Gregory CLEMENT <gregory.clement@bootlin.com>
9548 L: linux-i2c@vger.kernel.org
9550 F: Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9551 F: drivers/i2c/busses/i2c-mv64xxx.c
9553 I2C OVER PARALLEL PORT
9554 M: Jean Delvare <jdelvare@suse.com>
9555 L: linux-i2c@vger.kernel.org
9557 F: Documentation/i2c/busses/i2c-parport.rst
9558 F: drivers/i2c/busses/i2c-parport.c
9561 M: Wolfram Sang <wsa@kernel.org>
9562 L: linux-i2c@vger.kernel.org
9564 W: https://i2c.wiki.kernel.org/
9565 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
9566 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9567 F: Documentation/devicetree/bindings/i2c/i2c.txt
9568 F: Documentation/i2c/
9570 F: include/dt-bindings/i2c/i2c.h
9571 F: include/linux/i2c-dev.h
9572 F: include/linux/i2c-smbus.h
9573 F: include/linux/i2c.h
9574 F: include/uapi/linux/i2c-*.h
9575 F: include/uapi/linux/i2c.h
9577 I2C SUBSYSTEM HOST DRIVERS
9578 L: linux-i2c@vger.kernel.org
9580 W: https://i2c.wiki.kernel.org/
9581 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
9582 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9583 F: Documentation/devicetree/bindings/i2c/
9584 F: drivers/i2c/algos/
9585 F: drivers/i2c/busses/
9586 F: include/dt-bindings/i2c/
9589 M: Jean Delvare <jdelvare@suse.com>
9590 L: linux-i2c@vger.kernel.org
9592 F: Documentation/i2c/busses/i2c-taos-evm.rst
9593 F: drivers/i2c/busses/i2c-taos-evm.c
9596 M: Till Harbaum <till@harbaum.org>
9597 L: linux-i2c@vger.kernel.org
9599 W: http://www.harbaum.org/till/i2c_tiny_usb
9600 F: drivers/i2c/busses/i2c-tiny-usb.c
9602 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9603 M: Jean Delvare <jdelvare@suse.com>
9604 L: linux-i2c@vger.kernel.org
9606 F: Documentation/i2c/busses/i2c-ali1535.rst
9607 F: Documentation/i2c/busses/i2c-ali1563.rst
9608 F: Documentation/i2c/busses/i2c-ali15x3.rst
9609 F: Documentation/i2c/busses/i2c-amd756.rst
9610 F: Documentation/i2c/busses/i2c-amd8111.rst
9611 F: Documentation/i2c/busses/i2c-i801.rst
9612 F: Documentation/i2c/busses/i2c-nforce2.rst
9613 F: Documentation/i2c/busses/i2c-piix4.rst
9614 F: Documentation/i2c/busses/i2c-sis5595.rst
9615 F: Documentation/i2c/busses/i2c-sis630.rst
9616 F: Documentation/i2c/busses/i2c-sis96x.rst
9617 F: Documentation/i2c/busses/i2c-via.rst
9618 F: Documentation/i2c/busses/i2c-viapro.rst
9619 F: drivers/i2c/busses/i2c-ali1535.c
9620 F: drivers/i2c/busses/i2c-ali1563.c
9621 F: drivers/i2c/busses/i2c-ali15x3.c
9622 F: drivers/i2c/busses/i2c-amd756-s4882.c
9623 F: drivers/i2c/busses/i2c-amd756.c
9624 F: drivers/i2c/busses/i2c-amd8111.c
9625 F: drivers/i2c/busses/i2c-i801.c
9626 F: drivers/i2c/busses/i2c-isch.c
9627 F: drivers/i2c/busses/i2c-nforce2-s4985.c
9628 F: drivers/i2c/busses/i2c-nforce2.c
9629 F: drivers/i2c/busses/i2c-piix4.c
9630 F: drivers/i2c/busses/i2c-sis5595.c
9631 F: drivers/i2c/busses/i2c-sis630.c
9632 F: drivers/i2c/busses/i2c-sis96x.c
9633 F: drivers/i2c/busses/i2c-via.c
9634 F: drivers/i2c/busses/i2c-viapro.c
9636 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9637 M: Hans de Goede <hdegoede@redhat.com>
9638 L: linux-i2c@vger.kernel.org
9640 F: drivers/i2c/busses/i2c-cht-wc.c
9642 I2C/SMBUS ISMT DRIVER
9643 M: Seth Heasley <seth.heasley@intel.com>
9644 M: Neil Horman <nhorman@tuxdriver.com>
9645 L: linux-i2c@vger.kernel.org
9646 F: Documentation/i2c/busses/i2c-ismt.rst
9647 F: drivers/i2c/busses/i2c-ismt.c
9649 I2C/SMBUS STUB DRIVER
9650 M: Jean Delvare <jdelvare@suse.com>
9651 L: linux-i2c@vger.kernel.org
9653 F: drivers/i2c/i2c-stub.c
9655 I3C DRIVER FOR CADENCE I3C MASTER IP
9656 M: Przemysław Gaj <pgaj@cadence.com>
9658 F: Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9659 F: drivers/i3c/master/i3c-master-cdns.c
9661 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9663 F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9664 F: drivers/i3c/master/dw*
9667 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
9668 L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
9670 C: irc://chat.freenode.net/linux-i3c
9671 T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9672 F: Documentation/ABI/testing/sysfs-bus-i3c
9673 F: Documentation/devicetree/bindings/i3c/
9674 F: Documentation/driver-api/i3c
9676 F: include/linux/i3c/
9678 IA64 (Itanium) PLATFORM
9679 L: linux-ia64@vger.kernel.org
9681 F: Documentation/ia64/
9684 IBM Operation Panel Input Driver
9685 M: Eddie James <eajames@linux.ibm.com>
9686 L: linux-input@vger.kernel.org
9688 F: Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9689 F: drivers/input/misc/ibm-panel.c
9691 IBM Power 842 compression accelerator
9692 M: Haren Myneni <haren@us.ibm.com>
9695 F: drivers/crypto/nx/Kconfig
9696 F: drivers/crypto/nx/Makefile
9697 F: drivers/crypto/nx/nx-842*
9698 F: include/linux/sw842.h
9701 IBM Power in-Nest Crypto Acceleration
9702 M: Breno Leitão <leitao@debian.org>
9703 M: Nayna Jain <nayna@linux.ibm.com>
9704 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9705 L: linux-crypto@vger.kernel.org
9707 F: drivers/crypto/nx/Kconfig
9708 F: drivers/crypto/nx/Makefile
9709 F: drivers/crypto/nx/nx-aes*
9710 F: drivers/crypto/nx/nx-sha*
9711 F: drivers/crypto/nx/nx.*
9712 F: drivers/crypto/nx/nx_csbcpb.h
9713 F: drivers/crypto/nx/nx_debugfs.c
9715 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9716 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9717 L: linux-pci@vger.kernel.org
9718 L: linuxppc-dev@lists.ozlabs.org
9720 F: drivers/pci/hotplug/rpadlpar*
9722 IBM Power Linux RAID adapter
9723 M: Brian King <brking@us.ibm.com>
9725 F: drivers/scsi/ipr.*
9727 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9728 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9729 L: linux-pci@vger.kernel.org
9730 L: linuxppc-dev@lists.ozlabs.org
9732 F: drivers/pci/hotplug/rpaphp*
9734 IBM Power SRIOV Virtual NIC Device Driver
9735 M: Haren Myneni <haren@linux.ibm.com>
9736 M: Rick Lindsley <ricklind@linux.ibm.com>
9737 R: Nick Child <nnac123@linux.ibm.com>
9738 R: Dany Madden <danymadden@us.ibm.com>
9739 R: Thomas Falcon <tlfalcon@linux.ibm.com>
9740 L: netdev@vger.kernel.org
9742 F: drivers/net/ethernet/ibm/ibmvnic.*
9744 IBM Power Virtual Accelerator Switchboard
9745 L: linuxppc-dev@lists.ozlabs.org
9747 F: arch/powerpc/include/asm/vas.h
9748 F: arch/powerpc/platforms/powernv/copy-paste.h
9749 F: arch/powerpc/platforms/powernv/vas*
9751 IBM Power Virtual Ethernet Device Driver
9752 M: Nick Child <nnac123@linux.ibm.com>
9753 L: netdev@vger.kernel.org
9755 F: drivers/net/ethernet/ibm/ibmveth.*
9757 IBM Power Virtual FC Device Drivers
9758 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9759 L: linux-scsi@vger.kernel.org
9761 F: drivers/scsi/ibmvscsi/ibmvfc*
9763 IBM Power Virtual Management Channel Driver
9764 M: Brad Warrum <bwarrum@linux.ibm.com>
9765 M: Ritu Agarwal <rituagar@linux.ibm.com>
9767 F: drivers/misc/ibmvmc.*
9769 IBM Power Virtual SCSI Device Drivers
9770 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9771 L: linux-scsi@vger.kernel.org
9773 F: drivers/scsi/ibmvscsi/ibmvscsi*
9774 F: include/scsi/viosrp.h
9776 IBM Power Virtual SCSI Device Target Driver
9777 M: Michael Cyr <mikecyr@linux.ibm.com>
9778 L: linux-scsi@vger.kernel.org
9779 L: target-devel@vger.kernel.org
9781 F: drivers/scsi/ibmvscsi_tgt/
9783 IBM Power VMX Cryptographic instructions
9784 M: Breno Leitão <leitao@debian.org>
9785 M: Nayna Jain <nayna@linux.ibm.com>
9786 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9787 L: linux-crypto@vger.kernel.org
9789 F: drivers/crypto/vmx/Kconfig
9790 F: drivers/crypto/vmx/Makefile
9791 F: drivers/crypto/vmx/aes*
9792 F: drivers/crypto/vmx/ghash*
9793 F: drivers/crypto/vmx/ppc-xlate.pl
9794 F: drivers/crypto/vmx/vmx.c
9796 IBM ServeRAID RAID DRIVER
9798 F: drivers/scsi/ips.*
9800 ICH LPC AND GPIO DRIVER
9801 M: Peter Tyser <ptyser@xes-inc.com>
9803 F: drivers/gpio/gpio-ich.c
9804 F: drivers/mfd/lpc_ich.c
9807 M: Max Staudt <max@enpas.org>
9808 L: linux-i2c@vger.kernel.org
9810 F: drivers/i2c/busses/i2c-icy.c
9812 IDEAPAD LAPTOP EXTRAS DRIVER
9813 M: Ike Panhc <ike.pan@canonical.com>
9814 L: platform-driver-x86@vger.kernel.org
9816 W: http://launchpad.net/ideapad-laptop
9817 F: drivers/platform/x86/ideapad-laptop.c
9819 IDEAPAD LAPTOP SLIDEBAR DRIVER
9820 M: Andrey Moiseev <o2g.org.ru@gmail.com>
9821 L: linux-input@vger.kernel.org
9823 W: https://github.com/o2genum/ideapad-slidebar
9824 F: drivers/input/misc/ideapad_slidebar.c
9827 M: Christian Brauner <brauner@kernel.org>
9828 M: Seth Forshee <sforshee@kernel.org>
9829 L: linux-fsdevel@vger.kernel.org
9831 T: git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9832 F: Documentation/filesystems/idmappings.rst
9833 F: tools/testing/selftests/mount_setattr/
9834 F: include/linux/mnt_idmapping.*
9836 IDT VersaClock 5 CLOCK DRIVER
9837 M: Luca Ceresoli <luca@lucaceresoli.net>
9839 F: Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9840 F: drivers/clk/clk-versaclock5.c
9842 IEEE 802.15.4 SUBSYSTEM
9843 M: Alexander Aring <alex.aring@gmail.com>
9844 M: Stefan Schmidt <stefan@datenfreihafen.org>
9845 L: linux-wpan@vger.kernel.org
9847 W: https://linux-wpan.org/
9848 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9849 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9850 F: Documentation/networking/ieee802154.rst
9851 F: drivers/net/ieee802154/
9852 F: include/linux/ieee802154.h
9853 F: include/linux/nl802154.h
9854 F: include/net/af_ieee802154.h
9855 F: include/net/cfg802154.h
9856 F: include/net/ieee802154_netdev.h
9857 F: include/net/mac802154.h
9858 F: include/net/nl802154.h
9863 M: Yotam Gigi <yotam.gi@gmail.com>
9864 M: Jamal Hadi Salim <jhs@mojatatu.com>
9865 F: include/net/ife.h
9866 F: include/uapi/linux/ife.h
9869 IGORPLUG-USB IR RECEIVER
9870 M: Sean Young <sean@mess.org>
9871 L: linux-media@vger.kernel.org
9873 F: drivers/media/rc/igorplugusb.c
9875 IGUANAWORKS USB IR TRANSCEIVER
9876 M: Sean Young <sean@mess.org>
9877 L: linux-media@vger.kernel.org
9879 F: drivers/media/rc/iguanair.c
9881 IIO DIGITAL POTENTIOMETER DAC
9882 M: Peter Rosin <peda@axentia.se>
9883 L: linux-iio@vger.kernel.org
9885 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9886 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9887 F: drivers/iio/dac/dpot-dac.c
9889 IIO ENVELOPE DETECTOR
9890 M: Peter Rosin <peda@axentia.se>
9891 L: linux-iio@vger.kernel.org
9893 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9894 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9895 F: drivers/iio/adc/envelope-detector.c
9898 M: Peter Rosin <peda@axentia.se>
9899 L: linux-iio@vger.kernel.org
9901 F: Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9902 F: drivers/iio/multiplexer/iio-mux.c
9904 IIO SCMI BASED DRIVER
9905 M: Jyoti Bhayana <jbhayana@google.com>
9906 L: linux-iio@vger.kernel.org
9908 F: drivers/iio/common/scmi_sensors/scmi_iio.c
9910 IIO SUBSYSTEM AND DRIVERS
9911 M: Jonathan Cameron <jic23@kernel.org>
9912 R: Lars-Peter Clausen <lars@metafoo.de>
9913 L: linux-iio@vger.kernel.org
9915 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9916 F: Documentation/ABI/testing/configfs-iio*
9917 F: Documentation/ABI/testing/sysfs-bus-iio*
9918 F: Documentation/devicetree/bindings/iio/
9920 F: drivers/staging/iio/
9921 F: include/dt-bindings/iio/
9922 F: include/linux/iio/
9926 M: Peter Rosin <peda@axentia.se>
9927 L: linux-iio@vger.kernel.org
9929 F: Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9930 F: Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9931 F: Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9932 F: drivers/iio/afe/iio-rescale.c
9934 IKANOS/ADI EAGLE ADSL USB DRIVER
9935 M: Matthieu Castet <castet.matthieu@free.fr>
9936 M: Stanislaw Gruszka <stf_xl@wp.pl>
9938 F: drivers/usb/atm/ueagle-atm.c
9940 IMAGIS TOUCHSCREEN DRIVER
9941 M: Markuss Broks <markuss.broks@gmail.com>
9943 F: Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9944 F: drivers/input/touchscreen/imagis.c
9946 IMGTEC ASCII LCD DRIVER
9947 M: Paul Burton <paulburton@kernel.org>
9949 F: Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9950 F: drivers/auxdisplay/img-ascii-lcd.c
9952 IMGTEC IR DECODER DRIVER
9954 F: drivers/media/rc/img-ir/
9956 IMON SOUNDGRAPH USB IR RECEIVER
9957 M: Sean Young <sean@mess.org>
9958 L: linux-media@vger.kernel.org
9960 F: drivers/media/rc/imon.c
9961 F: drivers/media/rc/imon_raw.c
9963 IMS TWINTURBO FRAMEBUFFER DRIVER
9964 L: linux-fbdev@vger.kernel.org
9966 F: drivers/video/fbdev/imsttfb.c
9968 INA209 HARDWARE MONITOR DRIVER
9969 M: Guenter Roeck <linux@roeck-us.net>
9970 L: linux-hwmon@vger.kernel.org
9972 F: Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9973 F: Documentation/hwmon/ina209.rst
9974 F: drivers/hwmon/ina209.c
9976 INA2XX HARDWARE MONITOR DRIVER
9977 M: Guenter Roeck <linux@roeck-us.net>
9978 L: linux-hwmon@vger.kernel.org
9980 F: Documentation/hwmon/ina2xx.rst
9981 F: drivers/hwmon/ina2xx.c
9982 F: include/linux/platform_data/ina2xx.h
9984 INDEX OF FURTHER KERNEL DOCUMENTATION
9985 M: Carlos Bilbao <carlos.bilbao@amd.com>
9987 F: Documentation/process/kernel-docs.rst
9989 INDUSTRY PACK SUBSYSTEM (IPACK)
9990 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9991 M: Jens Taprogge <jens.taprogge@taprogge.org>
9992 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9993 L: industrypack-devel@lists.sourceforge.net
9995 W: http://industrypack.sourceforge.net
9998 INFINEON DPS310 Driver
9999 M: Eddie James <eajames@linux.ibm.com>
10000 L: linux-iio@vger.kernel.org
10002 F: drivers/iio/pressure/dps310.c
10004 INFINIBAND SUBSYSTEM
10005 M: Jason Gunthorpe <jgg@nvidia.com>
10006 M: Leon Romanovsky <leonro@nvidia.com>
10007 L: linux-rdma@vger.kernel.org
10009 W: https://github.com/linux-rdma/rdma-core
10010 Q: http://patchwork.kernel.org/project/linux-rdma/list/
10011 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10012 F: Documentation/devicetree/bindings/infiniband/
10013 F: Documentation/infiniband/
10014 F: drivers/infiniband/
10016 F: include/trace/events/ib_mad.h
10017 F: include/trace/events/ib_umad.h
10018 F: include/trace/misc/rdma.h
10019 F: include/uapi/linux/if_infiniband.h
10020 F: include/uapi/rdma/
10021 F: samples/bpf/ibumad_kern.c
10022 F: samples/bpf/ibumad_user.c
10024 INGENIC JZ4780 NAND DRIVER
10025 M: Harvey Hunt <harveyhuntnexus@gmail.com>
10026 L: linux-mtd@lists.infradead.org
10027 L: linux-mips@vger.kernel.org
10029 F: drivers/mtd/nand/raw/ingenic/
10031 INGENIC JZ47xx SoCs
10032 M: Paul Cercueil <paul@crapouillou.net>
10033 L: linux-mips@vger.kernel.org
10035 F: arch/mips/boot/dts/ingenic/
10036 F: arch/mips/generic/board-ingenic.c
10037 F: arch/mips/include/asm/mach-ingenic/
10038 F: arch/mips/ingenic/Kconfig
10039 F: drivers/clk/ingenic/
10040 F: drivers/dma/dma-jz4780.c
10041 F: drivers/gpu/drm/ingenic/
10042 F: drivers/i2c/busses/i2c-jz4780.c
10043 F: drivers/iio/adc/ingenic-adc.c
10044 F: drivers/irqchip/irq-ingenic.c
10045 F: drivers/memory/jz4780-nemc.c
10046 F: drivers/mmc/host/jz4740_mmc.c
10047 F: drivers/mtd/nand/raw/ingenic/
10048 F: drivers/pinctrl/pinctrl-ingenic.c
10049 F: drivers/power/supply/ingenic-battery.c
10050 F: drivers/pwm/pwm-jz4740.c
10051 F: drivers/remoteproc/ingenic_rproc.c
10052 F: drivers/rtc/rtc-jz4740.c
10053 F: drivers/tty/serial/8250/8250_ingenic.c
10054 F: drivers/usb/musb/jz4740.c
10055 F: drivers/watchdog/jz4740_wdt.c
10056 F: include/dt-bindings/iio/adc/ingenic,adc.h
10057 F: include/linux/mfd/ingenic-tcu.h
10058 F: sound/soc/codecs/jz47*
10059 F: sound/soc/jz4740/
10061 INJOINIC IP5xxx POWER BANK IC DRIVER
10062 M: Samuel Holland <samuel@sholland.org>
10064 F: drivers/power/supply/ip5xxx_power.c
10067 M: Jan Kara <jack@suse.cz>
10068 R: Amir Goldstein <amir73il@gmail.com>
10069 L: linux-fsdevel@vger.kernel.org
10071 F: Documentation/filesystems/inotify.rst
10072 F: fs/notify/inotify/
10073 F: include/linux/inotify.h
10074 F: include/uapi/linux/inotify.h
10076 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10077 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
10078 L: linux-input@vger.kernel.org
10080 Q: http://patchwork.kernel.org/project/linux-input/list/
10081 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10082 F: Documentation/devicetree/bindings/input/
10083 F: Documentation/devicetree/bindings/serio/
10084 F: Documentation/input/
10086 F: include/dt-bindings/input/
10087 F: include/linux/input.h
10088 F: include/linux/input/
10089 F: include/uapi/linux/input-event-codes.h
10090 F: include/uapi/linux/input.h
10092 INPUT MULTITOUCH (MT) PROTOCOL
10093 M: Henrik Rydberg <rydberg@bitmath.org>
10094 L: linux-input@vger.kernel.org
10096 F: Documentation/input/multi-touch-protocol.rst
10097 F: drivers/input/input-mt.c
10100 INSIDE SECURE CRYPTO DRIVER
10101 M: Antoine Tenart <atenart@kernel.org>
10102 L: linux-crypto@vger.kernel.org
10104 F: drivers/crypto/inside-secure/
10106 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10107 M: Mimi Zohar <zohar@linux.ibm.com>
10108 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10109 L: linux-integrity@vger.kernel.org
10111 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10112 F: security/integrity/ima/
10113 F: security/integrity/
10115 INTEL 810/815 FRAMEBUFFER DRIVER
10116 M: Antonino Daplas <adaplas@gmail.com>
10117 L: linux-fbdev@vger.kernel.org
10119 F: drivers/video/fbdev/i810/
10121 INTEL 8255 GPIO DRIVER
10122 M: William Breathitt Gray <william.gray@linaro.org>
10123 L: linux-gpio@vger.kernel.org
10125 F: drivers/gpio/gpio-i8255.c
10126 F: drivers/gpio/gpio-i8255.h
10129 M: Cezary Rojewski <cezary.rojewski@intel.com>
10130 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10131 M: Liam Girdwood <liam.r.girdwood@linux.intel.com>
10132 M: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10133 M: Bard Liao <yung-chuan.liao@linux.intel.com>
10134 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10135 M: Kai Vehmanen <kai.vehmanen@linux.intel.com>
10136 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10138 F: sound/soc/intel/
10140 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10141 M: Hans de Goede <hdegoede@redhat.com>
10142 L: platform-driver-x86@vger.kernel.org
10144 F: drivers/platform/x86/intel/atomisp2/pm.c
10146 INTEL ATOMISP2 LED DRIVER
10147 M: Hans de Goede <hdegoede@redhat.com>
10148 L: platform-driver-x86@vger.kernel.org
10150 F: drivers/platform/x86/intel/atomisp2/led.c
10152 INTEL BIOS SAR INT1092 DRIVER
10153 M: Shravan Sudhakar <s.shravan@intel.com>
10154 M: Intel Corporation <linuxwwan@intel.com>
10155 L: platform-driver-x86@vger.kernel.org
10157 F: drivers/platform/x86/intel/int1092/
10159 INTEL BROXTON PMC DRIVER
10160 M: Mika Westerberg <mika.westerberg@linux.intel.com>
10161 M: Zha Qipeng <qipeng.zha@intel.com>
10163 F: drivers/mfd/intel_pmc_bxt.c
10164 F: include/linux/mfd/intel_pmc_bxt.h
10166 INTEL C600 SERIES SAS CONTROLLER DRIVER
10167 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10168 L: linux-scsi@vger.kernel.org
10170 T: git git://git.code.sf.net/p/intel-sas/isci
10171 F: drivers/scsi/isci/
10173 INTEL CPU family model numbers
10174 M: Tony Luck <tony.luck@intel.com>
10176 L: linux-kernel@vger.kernel.org
10178 F: arch/x86/include/asm/intel-family.h
10180 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10181 M: Jani Nikula <jani.nikula@linux.intel.com>
10182 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10183 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
10184 M: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10185 L: intel-gfx@lists.freedesktop.org
10187 W: https://01.org/linuxgraphics/
10188 Q: http://patchwork.freedesktop.org/project/intel-gfx/
10189 B: https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10190 C: irc://irc.oftc.net/intel-gfx
10191 T: git git://anongit.freedesktop.org/drm-intel
10192 F: Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10193 F: Documentation/gpu/i915.rst
10194 F: drivers/gpu/drm/i915/
10195 F: include/drm/i915*
10196 F: include/uapi/drm/i915_drm.h
10198 INTEL ETHERNET DRIVERS
10199 M: Jesse Brandeburg <jesse.brandeburg@intel.com>
10200 M: Tony Nguyen <anthony.l.nguyen@intel.com>
10201 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10203 W: http://www.intel.com/support/feedback.htm
10204 W: http://e1000.sourceforge.net/
10205 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10206 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10207 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10208 F: Documentation/networking/device_drivers/ethernet/intel/
10209 F: drivers/net/ethernet/intel/
10210 F: drivers/net/ethernet/intel/*/
10211 F: include/linux/avf/virtchnl.h
10212 F: include/linux/net/intel/iidc.h
10214 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10215 M: Mustafa Ismail <mustafa.ismail@intel.com>
10216 M: Shiraz Saleem <shiraz.saleem@intel.com>
10217 L: linux-rdma@vger.kernel.org
10219 F: drivers/infiniband/hw/irdma/
10220 F: include/uapi/rdma/irdma-abi.h
10222 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10223 M: Maik Broemme <mbroemme@libmpq.org>
10224 L: linux-fbdev@vger.kernel.org
10226 F: Documentation/fb/intelfb.rst
10227 F: drivers/video/fbdev/intelfb/
10230 M: Andy Shevchenko <andy@kernel.org>
10231 L: linux-gpio@vger.kernel.org
10233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10234 F: drivers/gpio/gpio-ich.c
10235 F: drivers/gpio/gpio-merrifield.c
10236 F: drivers/gpio/gpio-ml-ioh.c
10237 F: drivers/gpio/gpio-pch.c
10238 F: drivers/gpio/gpio-sch.c
10239 F: drivers/gpio/gpio-sodaville.c
10241 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10242 M: Zhenyu Wang <zhenyuw@linux.intel.com>
10243 M: Zhi Wang <zhi.a.wang@intel.com>
10244 L: intel-gvt-dev@lists.freedesktop.org
10245 L: intel-gfx@lists.freedesktop.org
10247 W: https://01.org/igvt-g
10248 T: git https://github.com/intel/gvt-linux.git
10249 F: drivers/gpu/drm/i915/gvt/
10251 INTEL HID EVENT DRIVER
10252 M: Alex Hung <alexhung@gmail.com>
10253 L: platform-driver-x86@vger.kernel.org
10255 F: drivers/platform/x86/intel/hid.c
10257 INTEL I/OAT DMA DRIVER
10258 M: Dave Jiang <dave.jiang@intel.com>
10259 R: Dan Williams <dan.j.williams@intel.com>
10260 L: dmaengine@vger.kernel.org
10262 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
10263 F: drivers/dma/ioat*
10266 M: Fenghua Yu <fenghua.yu@intel.com>
10267 M: Dave Jiang <dave.jiang@intel.com>
10268 L: dmaengine@vger.kernel.org
10270 F: drivers/dma/idxd/*
10271 F: include/uapi/linux/idxd.h
10274 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
10275 M: Len Brown <lenb@kernel.org>
10276 L: linux-pm@vger.kernel.org
10278 B: https://bugzilla.kernel.org
10279 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10280 F: drivers/idle/intel_idle.c
10282 INTEL IN FIELD SCAN (IFS) DEVICE
10283 M: Jithu Joseph <jithu.joseph@intel.com>
10284 R: Ashok Raj <ashok.raj@intel.com>
10285 R: Tony Luck <tony.luck@intel.com>
10287 F: drivers/platform/x86/intel/ifs
10288 F: include/trace/events/intel_ifs.h
10290 INTEL INTEGRATED SENSOR HUB DRIVER
10291 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10292 M: Jiri Kosina <jikos@kernel.org>
10293 L: linux-input@vger.kernel.org
10295 F: drivers/hid/intel-ish-hid/
10298 M: David Woodhouse <dwmw2@infradead.org>
10299 M: Lu Baolu <baolu.lu@linux.intel.com>
10300 L: iommu@lists.linux.dev
10302 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10303 F: drivers/iommu/intel/
10304 F: include/linux/intel-svm.h
10306 INTEL IPU3 CSI-2 CIO2 DRIVER
10307 M: Yong Zhi <yong.zhi@intel.com>
10308 M: Sakari Ailus <sakari.ailus@linux.intel.com>
10309 M: Bingbu Cao <bingbu.cao@intel.com>
10310 M: Dan Scally <djrscally@gmail.com>
10311 R: Tianshu Qiu <tian.shu.qiu@intel.com>
10312 L: linux-media@vger.kernel.org
10314 T: git git://linuxtv.org/media_tree.git
10315 F: Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10316 F: drivers/media/pci/intel/ipu3/
10318 INTEL IPU3 CSI-2 IMGU DRIVER
10319 M: Sakari Ailus <sakari.ailus@linux.intel.com>
10320 R: Bingbu Cao <bingbu.cao@intel.com>
10321 R: Tianshu Qiu <tian.shu.qiu@intel.com>
10322 L: linux-media@vger.kernel.org
10324 F: Documentation/admin-guide/media/ipu3.rst
10325 F: Documentation/admin-guide/media/ipu3_rcb.svg
10326 F: Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10327 F: drivers/staging/media/ipu3/
10329 INTEL IXP4XX CRYPTO SUPPORT
10330 M: Corentin Labbe <clabbe@baylibre.com>
10331 L: linux-crypto@vger.kernel.org
10333 F: drivers/crypto/ixp4xx_crypto.c
10335 INTEL ISHTP ECLITE DRIVER
10336 M: Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10337 L: platform-driver-x86@vger.kernel.org
10339 F: drivers/platform/x86/intel/ishtp_eclite.c
10341 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10342 M: Krzysztof Halasa <khalasa@piap.pl>
10344 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
10345 F: drivers/net/wan/ixp4xx_hss.c
10346 F: drivers/soc/ixp4xx/ixp4xx-npe.c
10347 F: drivers/soc/ixp4xx/ixp4xx-qmgr.c
10348 F: include/linux/soc/ixp4xx/npe.h
10349 F: include/linux/soc/ixp4xx/qmgr.h
10351 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10352 M: Deepak Saxena <dsaxena@plexity.net>
10354 F: Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10355 F: drivers/char/hw_random/ixp4xx-rng.c
10357 INTEL KEEM BAY DRM DRIVER
10358 M: Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10359 M: Edmund Dea <edmund.j.dea@intel.com>
10361 F: Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10362 F: drivers/gpu/drm/kmb/
10364 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10365 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10367 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10368 F: drivers/crypto/keembay/Kconfig
10369 F: drivers/crypto/keembay/Makefile
10370 F: drivers/crypto/keembay/keembay-ocs-aes-core.c
10371 F: drivers/crypto/keembay/ocs-aes.c
10372 F: drivers/crypto/keembay/ocs-aes.h
10374 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10375 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10376 M: Prabhjot Khurana <prabhjot.khurana@intel.com>
10377 M: Mark Gross <mgross@linux.intel.com>
10379 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10380 F: drivers/crypto/keembay/Kconfig
10381 F: drivers/crypto/keembay/Makefile
10382 F: drivers/crypto/keembay/keembay-ocs-ecc.c
10384 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10385 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10386 M: Declan Murphy <declan.murphy@intel.com>
10388 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10389 F: drivers/crypto/keembay/Kconfig
10390 F: drivers/crypto/keembay/Makefile
10391 F: drivers/crypto/keembay/keembay-ocs-hcu-core.c
10392 F: drivers/crypto/keembay/ocs-hcu.c
10393 F: drivers/crypto/keembay/ocs-hcu.h
10395 INTEL THUNDER BAY EMMC PHY DRIVER
10396 M: Nandhini Srikandan <nandhini.srikandan@intel.com>
10397 M: Rashmi A <rashmi.a@intel.com>
10399 F: Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10400 F: drivers/phy/intel/phy-intel-thunderbay-emmc.c
10402 INTEL MANAGEMENT ENGINE (mei)
10403 M: Tomas Winkler <tomas.winkler@intel.com>
10404 L: linux-kernel@vger.kernel.org
10406 F: Documentation/driver-api/mei/*
10407 F: drivers/misc/mei/
10408 F: drivers/watchdog/mei_wdt.c
10409 F: include/linux/mei_aux.h
10410 F: include/linux/mei_cl_bus.h
10411 F: include/uapi/linux/mei.h
10414 INTEL MAX 10 BMC MFD DRIVER
10415 M: Xu Yilun <yilun.xu@intel.com>
10416 R: Tom Rix <trix@redhat.com>
10418 F: Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10419 F: Documentation/hwmon/intel-m10-bmc-hwmon.rst
10420 F: drivers/hwmon/intel-m10-bmc-hwmon.c
10421 F: drivers/mfd/intel-m10-bmc.c
10422 F: include/linux/mfd/intel-m10-bmc.h
10424 INTEL MENLOW THERMAL DRIVER
10425 M: Sujith Thomas <sujith.thomas@intel.com>
10426 L: linux-pm@vger.kernel.org
10428 F: drivers/thermal/intel/intel_menlow.c
10430 INTEL P-Unit IPC DRIVER
10431 M: Zha Qipeng <qipeng.zha@intel.com>
10432 L: platform-driver-x86@vger.kernel.org
10434 F: arch/x86/include/asm/intel_punit_ipc.h
10435 F: drivers/platform/x86/intel/punit_ipc.c
10437 INTEL PMC CORE DRIVER
10438 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10439 M: David E Box <david.e.box@intel.com>
10440 L: platform-driver-x86@vger.kernel.org
10442 F: Documentation/ABI/testing/sysfs-platform-intel-pmc
10443 F: drivers/platform/x86/intel/pmc/
10445 INTEL PMIC GPIO DRIVERS
10446 M: Andy Shevchenko <andy@kernel.org>
10448 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10449 F: drivers/gpio/gpio-*cove.c
10451 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10452 M: Andy Shevchenko <andy@kernel.org>
10454 F: drivers/mfd/intel_soc_pmic*
10455 F: include/linux/mfd/intel_soc_pmic*
10458 M: David E. Box <david.e.box@linux.intel.com>
10460 F: drivers/platform/x86/intel/pmt/
10462 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10463 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
10464 L: linux-wireless@vger.kernel.org
10466 F: Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10467 F: Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10468 F: drivers/net/wireless/intel/ipw2x00/
10470 INTEL PSTATE DRIVER
10471 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10472 M: Len Brown <lenb@kernel.org>
10473 L: linux-pm@vger.kernel.org
10475 F: drivers/cpufreq/intel_pstate.c
10477 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10478 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
10479 L: linux-iio@vger.kernel.org
10480 F: drivers/counter/intel-qep.c
10483 M: Mika Westerberg <mika.westerberg@linux.intel.com>
10485 F: arch/x86/include/asm/intel_scu_ipc.h
10486 F: drivers/platform/x86/intel_scu_*
10489 M: David E. Box <david.e.box@linux.intel.com>
10491 F: drivers/platform/x86/intel/sdsi.c
10492 F: tools/arch/x86/intel_sdsi/
10493 F: tools/testing/selftests/drivers/sdsi/
10495 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10496 M: Daniel Scally <djrscally@gmail.com>
10498 F: drivers/platform/x86/intel/int3472/
10500 INTEL SPEED SELECT TECHNOLOGY
10501 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10502 L: platform-driver-x86@vger.kernel.org
10504 F: drivers/platform/x86/intel/speed_select_if/
10505 F: include/uapi/linux/isst_if.h
10506 F: tools/power/x86/intel-speed-select/
10508 INTEL STRATIX10 FIRMWARE DRIVERS
10509 M: Dinh Nguyen <dinguyen@kernel.org>
10510 L: linux-kernel@vger.kernel.org
10512 F: Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10513 F: Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10514 F: drivers/firmware/stratix10-rsu.c
10515 F: drivers/firmware/stratix10-svc.c
10516 F: include/linux/firmware/intel/stratix10-smc.h
10517 F: include/linux/firmware/intel/stratix10-svc-client.h
10518 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10520 INTEL TELEMETRY DRIVER
10521 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10522 M: "David E. Box" <david.e.box@linux.intel.com>
10523 L: platform-driver-x86@vger.kernel.org
10525 F: arch/x86/include/asm/intel_telemetry.h
10526 F: drivers/platform/x86/intel/telemetry/
10528 INTEL UNCORE FREQUENCY CONTROL
10529 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10530 L: platform-driver-x86@vger.kernel.org
10532 F: Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10533 F: drivers/platform/x86/intel/uncore-frequency/
10535 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10536 M: David E. Box <david.e.box@linux.intel.com>
10538 F: drivers/platform/x86/intel/vsec.*
10540 INTEL VIRTUAL BUTTON DRIVER
10541 M: AceLan Kao <acelan.kao@canonical.com>
10542 L: platform-driver-x86@vger.kernel.org
10544 F: drivers/platform/x86/intel/vbtn.c
10546 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10547 M: Stanislaw Gruszka <stf_xl@wp.pl>
10548 L: linux-wireless@vger.kernel.org
10550 F: drivers/net/wireless/intel/iwlegacy/
10552 INTEL WIRELESS WIFI LINK (iwlwifi)
10553 M: Gregory Greenman <gregory.greenman@intel.com>
10554 L: linux-wireless@vger.kernel.org
10556 W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10557 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10558 F: drivers/net/wireless/intel/iwlwifi/
10560 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10561 M: Jithu Joseph <jithu.joseph@intel.com>
10562 R: Maurice Ma <maurice.ma@intel.com>
10564 W: https://slimbootloader.github.io/security/firmware-update.html
10565 F: drivers/platform/x86/intel/wmi/sbl-fw-update.c
10567 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10568 L: Dell.Client.Kernel@dell.com
10570 F: drivers/platform/x86/intel/wmi/thunderbolt.c
10572 INTEL WWAN IOSM DRIVER
10573 M: M Chetan Kumar <m.chetan.kumar@intel.com>
10574 M: Intel Corporation <linuxwwan@intel.com>
10575 L: netdev@vger.kernel.org
10577 F: drivers/net/wwan/iosm/
10580 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
10582 F: Documentation/trace/intel_th.rst
10583 F: drivers/hwtracing/intel_th/
10584 F: include/linux/intel_th.h
10586 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10587 M: Ning Sun <ning.sun@intel.com>
10588 L: tboot-devel@lists.sourceforge.net
10590 W: http://tboot.sourceforge.net
10591 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10592 F: Documentation/x86/intel_txt.rst
10593 F: arch/x86/kernel/tboot.c
10594 F: include/linux/tboot.h
10597 M: Jarkko Sakkinen <jarkko@kernel.org>
10598 R: Dave Hansen <dave.hansen@linux.intel.com>
10599 L: linux-sgx@vger.kernel.org
10601 Q: https://patchwork.kernel.org/project/intel-sgx/list/
10602 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10603 F: Documentation/x86/sgx.rst
10604 F: arch/x86/entry/vdso/vsgx.S
10605 F: arch/x86/include/asm/sgx.h
10606 F: arch/x86/include/uapi/asm/sgx.h
10607 F: arch/x86/kernel/cpu/sgx/*
10608 F: tools/testing/selftests/sgx/*
10612 M: Georgi Djakov <djakov@kernel.org>
10613 L: linux-pm@vger.kernel.org
10615 T: git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10616 F: Documentation/devicetree/bindings/interconnect/
10617 F: Documentation/driver-api/interconnect.rst
10618 F: drivers/interconnect/
10619 F: include/dt-bindings/interconnect/
10620 F: include/linux/interconnect-provider.h
10621 F: include/linux/interconnect.h
10623 INTERRUPT COUNTER DRIVER
10624 M: Oleksij Rempel <o.rempel@pengutronix.de>
10625 R: Pengutronix Kernel Team <kernel@pengutronix.de>
10626 L: linux-iio@vger.kernel.org
10627 F: Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10628 F: drivers/counter/interrupt-cnt.c
10630 INTERSIL ISL7998X VIDEO DECODER DRIVER
10631 M: Michael Tretter <m.tretter@pengutronix.de>
10632 R: Pengutronix Kernel Team <kernel@pengutronix.de>
10633 L: linux-media@vger.kernel.org
10635 F: Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10636 F: drivers/media/i2c/isl7998x.c
10638 INVENSENSE ICM-426xx IMU DRIVER
10639 M: Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10640 L: linux-iio@vger.kernel.org
10642 W: https://invensense.tdk.com/
10643 F: Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10644 F: drivers/iio/imu/inv_icm42600/
10646 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10647 M: Linus Walleij <linus.walleij@linaro.org>
10648 L: linux-iio@vger.kernel.org
10650 F: Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10651 F: drivers/iio/gyro/mpu3050*
10653 IOC3 ETHERNET DRIVER
10654 M: Ralf Baechle <ralf@linux-mips.org>
10655 L: linux-mips@vger.kernel.org
10657 F: drivers/net/ethernet/sgi/ioc3-eth.c
10659 IOMAP FILESYSTEM LIBRARY
10660 M: Christoph Hellwig <hch@infradead.org>
10661 M: Darrick J. Wong <djwong@kernel.org>
10662 L: linux-xfs@vger.kernel.org
10663 L: linux-fsdevel@vger.kernel.org
10665 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10667 F: include/linux/iomap.h
10669 IOMMU DMA-API LAYER
10670 M: Robin Murphy <robin.murphy@arm.com>
10671 L: iommu@lists.linux.dev
10673 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10674 F: drivers/iommu/dma-iommu.c
10675 F: drivers/iommu/dma-iommu.h
10676 F: drivers/iommu/iova.c
10677 F: include/linux/iova.h
10680 M: Jason Gunthorpe <jgg@nvidia.com>
10681 M: Kevin Tian <kevin.tian@intel.com>
10682 L: iommu@lists.linux.dev
10684 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10685 F: Documentation/userspace-api/iommufd.rst
10686 F: drivers/iommu/iommufd/
10687 F: include/linux/iommufd.h
10688 F: include/uapi/linux/iommufd.h
10689 F: tools/testing/selftests/iommu/
10692 M: Joerg Roedel <joro@8bytes.org>
10693 M: Will Deacon <will@kernel.org>
10694 R: Robin Murphy <robin.murphy@arm.com>
10695 L: iommu@lists.linux.dev
10697 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10698 F: Documentation/devicetree/bindings/iommu/
10699 F: Documentation/userspace-api/iommu.rst
10701 F: include/linux/iommu.h
10702 F: include/linux/iova.h
10703 F: include/linux/of_iommu.h
10704 F: include/uapi/linux/iommu.h
10707 M: Thomas Zimmermann <tzimmermann@suse.de>
10708 L: dri-devel@lists.freedesktop.org
10710 T: git git://anongit.freedesktop.org/drm/drm-misc
10711 F: include/linux/iosys-map.h
10714 M: Jens Axboe <axboe@kernel.dk>
10715 R: Pavel Begunkov <asml.silence@gmail.com>
10716 L: io-uring@vger.kernel.org
10718 T: git git://git.kernel.dk/linux-block
10719 T: git git://git.kernel.dk/liburing
10721 F: include/linux/io_uring.h
10722 F: include/linux/io_uring_types.h
10723 F: include/trace/events/io_uring.h
10724 F: include/uapi/linux/io_uring.h
10728 M: Corey Minyard <minyard@acm.org>
10729 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10731 W: http://openipmi.sourceforge.net/
10732 T: git https://github.com/cminyard/linux-ipmi.git for-next
10733 F: Documentation/driver-api/ipmi.rst
10734 F: Documentation/devicetree/bindings/ipmi/
10735 F: drivers/char/ipmi/
10736 F: include/linux/ipmi*
10737 F: include/uapi/linux/ipmi*
10739 IPS SCSI RAID DRIVER
10740 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10741 L: linux-scsi@vger.kernel.org
10743 W: http://www.adaptec.com/
10744 F: drivers/scsi/ips*
10747 M: Simon Horman <horms@verge.net.au>
10748 M: Julian Anastasov <ja@ssi.bg>
10749 L: netdev@vger.kernel.org
10750 L: lvs-devel@vger.kernel.org
10752 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10753 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10754 F: Documentation/networking/ipvs-sysctl.rst
10755 F: include/net/ip_vs.h
10756 F: include/uapi/linux/ip_vs.h
10757 F: net/netfilter/ipvs/
10760 M: Jiri Kosina <jikos@kernel.org>
10761 M: David Sterba <dsterba@suse.com>
10763 F: drivers/tty/ipwireless/
10765 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10766 M: Marc Zyngier <maz@kernel.org>
10768 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10769 F: Documentation/core-api/irq/irq-domain.rst
10770 F: include/linux/irqdomain.h
10771 F: kernel/irq/irqdomain.c
10772 F: kernel/irq/msi.c
10775 M: Thomas Gleixner <tglx@linutronix.de>
10776 L: linux-kernel@vger.kernel.org
10778 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10780 F: include/linux/group_cpus.h
10781 F: lib/group_cpus.c
10784 M: Thomas Gleixner <tglx@linutronix.de>
10785 M: Marc Zyngier <maz@kernel.org>
10786 L: linux-kernel@vger.kernel.org
10788 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10789 F: Documentation/devicetree/bindings/interrupt-controller/
10790 F: drivers/irqchip/
10793 M: William Breathitt Gray <william.gray@linaro.org>
10795 F: Documentation/driver-api/isa.rst
10796 F: drivers/base/isa.c
10797 F: include/linux/isa.h
10800 M: Hans Verkuil <hverkuil@xs4all.nl>
10801 L: linux-media@vger.kernel.org
10803 W: https://linuxtv.org
10804 T: git git://linuxtv.org/media_tree.git
10805 F: drivers/media/radio/radio-isa*
10808 M: Jaroslav Kysela <perex@perex.cz>
10810 F: Documentation/driver-api/isapnp.rst
10811 F: drivers/pnp/isapnp/
10812 F: include/linux/isapnp.h
10815 M: Lee Duncan <lduncan@suse.com>
10816 M: Chris Leech <cleech@redhat.com>
10817 M: Mike Christie <michael.christie@oracle.com>
10818 L: open-iscsi@googlegroups.com
10819 L: linux-scsi@vger.kernel.org
10821 W: www.open-iscsi.com
10822 F: drivers/scsi/*iscsi*
10823 F: include/scsi/*iscsi*
10825 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10826 M: Peter Jones <pjones@redhat.com>
10827 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
10829 F: drivers/firmware/iscsi_ibft*
10831 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10832 M: Sagi Grimberg <sagi@grimberg.me>
10833 M: Max Gurtovoy <mgurtovoy@nvidia.com>
10834 L: linux-rdma@vger.kernel.org
10836 W: http://www.openfabrics.org
10837 W: www.open-iscsi.org
10838 Q: http://patchwork.kernel.org/project/linux-rdma/list/
10839 F: drivers/infiniband/ulp/iser/
10841 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10842 M: Sagi Grimberg <sagi@grimberg.me>
10843 L: linux-rdma@vger.kernel.org
10844 L: target-devel@vger.kernel.org
10846 W: http://www.linux-iscsi.org
10847 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10848 F: drivers/infiniband/ulp/isert
10850 ISDN/CMTP OVER BLUETOOTH
10851 M: Karsten Keil <isdn@linux-pingi.de>
10852 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
10853 L: netdev@vger.kernel.org
10855 W: http://www.isdn4linux.de
10856 F: Documentation/isdn/
10857 F: drivers/isdn/capi/
10858 F: include/linux/isdn/
10859 F: include/uapi/linux/isdn/
10860 F: net/bluetooth/cmtp/
10862 ISDN/mISDN SUBSYSTEM
10863 M: Karsten Keil <isdn@linux-pingi.de>
10864 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
10865 L: netdev@vger.kernel.org
10867 W: http://www.isdn4linux.de
10868 F: drivers/isdn/Kconfig
10869 F: drivers/isdn/Makefile
10870 F: drivers/isdn/hardware/
10871 F: drivers/isdn/mISDN/
10874 M: Jan Kara <jack@suse.cz>
10875 L: linux-fsdevel@vger.kernel.org
10877 F: Documentation/filesystems/isofs.rst
10880 IT87 HARDWARE MONITORING DRIVER
10881 M: Jean Delvare <jdelvare@suse.com>
10882 L: linux-hwmon@vger.kernel.org
10884 F: Documentation/hwmon/it87.rst
10885 F: drivers/hwmon/it87.c
10887 IT913X MEDIA DRIVER
10888 M: Antti Palosaari <crope@iki.fi>
10889 L: linux-media@vger.kernel.org
10891 W: https://linuxtv.org
10892 W: http://palosaari.fi/linux/
10893 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10894 T: git git://linuxtv.org/anttip/media_tree.git
10895 F: drivers/media/tuners/it913x*
10897 ITE IT66121 HDMI BRIDGE DRIVER
10898 M: Phong LE <ple@baylibre.com>
10899 M: Neil Armstrong <neil.armstrong@linaro.org>
10901 T: git git://anongit.freedesktop.org/drm/drm-misc
10902 F: Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10903 F: drivers/gpu/drm/bridge/ite-it66121.c
10905 IVTV VIDEO4LINUX DRIVER
10906 M: Andy Walls <awalls@md.metrocast.net>
10907 L: linux-media@vger.kernel.org
10909 W: https://linuxtv.org
10910 T: git git://linuxtv.org/media_tree.git
10911 F: Documentation/admin-guide/media/ivtv*
10912 F: drivers/media/pci/ivtv/
10913 F: include/uapi/linux/ivtv*
10915 IX2505V MEDIA DRIVER
10916 M: Malcolm Priestley <tvboxspy@gmail.com>
10917 L: linux-media@vger.kernel.org
10919 W: https://linuxtv.org
10920 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10921 F: drivers/media/dvb-frontends/ix2505v*
10923 JAILHOUSE HYPERVISOR INTERFACE
10924 M: Jan Kiszka <jan.kiszka@siemens.com>
10925 L: jailhouse-dev@googlegroups.com
10927 F: arch/x86/include/asm/jailhouse_para.h
10928 F: arch/x86/kernel/jailhouse.c
10930 JC42.4 TEMPERATURE SENSOR DRIVER
10931 M: Guenter Roeck <linux@roeck-us.net>
10932 L: linux-hwmon@vger.kernel.org
10934 F: Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10935 F: Documentation/hwmon/jc42.rst
10936 F: drivers/hwmon/jc42.c
10939 M: Dave Kleikamp <shaggy@kernel.org>
10940 L: jfs-discussion@lists.sourceforge.net
10942 W: http://jfs.sourceforge.net/
10943 T: git https://github.com/kleikamp/linux-shaggy.git
10944 F: Documentation/admin-guide/jfs.rst
10948 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
10949 L: netdev@vger.kernel.org
10951 F: drivers/net/ethernet/jme.*
10953 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10954 M: David Woodhouse <dwmw2@infradead.org>
10955 M: Richard Weinberger <richard@nod.at>
10956 L: linux-mtd@lists.infradead.org
10958 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
10959 T: git git://git.infradead.org/ubifs-2.6.git
10961 F: include/uapi/linux/jffs2.h
10963 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10964 M: "Theodore Ts'o" <tytso@mit.edu>
10965 M: Jan Kara <jack@suse.com>
10966 L: linux-ext4@vger.kernel.org
10969 F: include/linux/jbd2.h
10971 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10972 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10973 L: linux-media@vger.kernel.org
10974 L: linux-renesas-soc@vger.kernel.org
10976 F: drivers/media/platform/renesas/rcar_jpu.c
10978 JSM Neo PCI based serial card
10979 L: linux-serial@vger.kernel.org
10981 F: drivers/tty/serial/jsm/
10983 K10TEMP HARDWARE MONITORING DRIVER
10984 M: Clemens Ladisch <clemens@ladisch.de>
10985 L: linux-hwmon@vger.kernel.org
10987 F: Documentation/hwmon/k10temp.rst
10988 F: drivers/hwmon/k10temp.c
10990 K8TEMP HARDWARE MONITORING DRIVER
10991 M: Rudolf Marek <r.marek@assembler.cz>
10992 L: linux-hwmon@vger.kernel.org
10994 F: Documentation/hwmon/k8temp.rst
10995 F: drivers/hwmon/k8temp.c
10998 M: Andrey Ryabinin <ryabinin.a.a@gmail.com>
10999 R: Alexander Potapenko <glider@google.com>
11000 R: Andrey Konovalov <andreyknvl@gmail.com>
11001 R: Dmitry Vyukov <dvyukov@google.com>
11002 R: Vincenzo Frascino <vincenzo.frascino@arm.com>
11003 L: kasan-dev@googlegroups.com
11005 F: Documentation/dev-tools/kasan.rst
11006 F: arch/*/include/asm/*kasan.h
11007 F: arch/*/mm/kasan_init*
11008 F: include/linux/kasan*.h
11009 F: lib/Kconfig.kasan
11011 F: scripts/Makefile.kasan
11014 M: Masahiro Yamada <masahiroy@kernel.org>
11015 L: linux-kbuild@vger.kernel.org
11017 Q: https://patchwork.kernel.org/project/linux-kbuild/list/
11018 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
11019 F: Documentation/kbuild/kconfig*
11020 F: scripts/Kconfig.include
11021 F: scripts/kconfig/
11024 R: Dmitry Vyukov <dvyukov@google.com>
11025 R: Andrey Konovalov <andreyknvl@gmail.com>
11026 L: kasan-dev@googlegroups.com
11028 F: Documentation/dev-tools/kcov.rst
11029 F: include/linux/kcov.h
11030 F: include/uapi/linux/kcov.h
11032 F: scripts/Makefile.kcov
11035 M: Marco Elver <elver@google.com>
11036 R: Dmitry Vyukov <dvyukov@google.com>
11037 L: kasan-dev@googlegroups.com
11039 F: Documentation/dev-tools/kcsan.rst
11040 F: include/linux/kcsan*.h
11042 F: lib/Kconfig.kcsan
11043 F: scripts/Makefile.kcsan
11046 M: Baoquan He <bhe@redhat.com>
11047 R: Vivek Goyal <vgoyal@redhat.com>
11048 R: Dave Young <dyoung@redhat.com>
11049 L: kexec@lists.infradead.org
11051 W: http://lse.sourceforge.net/kdump/
11052 F: Documentation/admin-guide/kdump/
11053 F: fs/proc/vmcore.c
11054 F: include/linux/crash_core.h
11055 F: include/linux/crash_dump.h
11056 F: include/uapi/linux/vmcore.h
11057 F: kernel/crash_*.c
11059 KEENE FM RADIO TRANSMITTER DRIVER
11060 M: Hans Verkuil <hverkuil@xs4all.nl>
11061 L: linux-media@vger.kernel.org
11063 W: https://linuxtv.org
11064 T: git git://linuxtv.org/media_tree.git
11065 F: drivers/media/radio/radio-keene*
11068 M: Ian Kent <raven@themaw.net>
11069 L: autofs@vger.kernel.org
11073 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11074 M: Masahiro Yamada <masahiroy@kernel.org>
11075 R: Nathan Chancellor <nathan@kernel.org>
11076 R: Nick Desaulniers <ndesaulniers@google.com>
11077 R: Nicolas Schier <nicolas@fjasle.eu>
11078 L: linux-kbuild@vger.kernel.org
11080 Q: https://patchwork.kernel.org/project/linux-kbuild/list/
11081 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11082 F: Documentation/kbuild/
11084 F: scripts/*vmlinux*
11086 F: scripts/Makefile*
11088 F: scripts/dummy-tools/
11091 F: scripts/package/
11093 KERNEL HARDENING (not covered by other areas)
11094 M: Kees Cook <keescook@chromium.org>
11095 L: linux-hardening@vger.kernel.org
11097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11098 F: Documentation/ABI/testing/sysfs-kernel-oops_count
11099 F: Documentation/ABI/testing/sysfs-kernel-warn_count
11100 F: include/linux/overflow.h
11101 F: include/linux/randomize_kstack.h
11103 K: \b(add|choose)_random_kstack_offset\b
11104 K: \b__check_(object_size|heap_object)\b
11107 L: kernel-janitors@vger.kernel.org
11109 W: http://kernelnewbies.org/KernelJanitors
11111 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11112 M: Chuck Lever <chuck.lever@oracle.com>
11113 M: Jeff Layton <jlayton@kernel.org>
11114 L: linux-nfs@vger.kernel.org
11116 W: http://nfs.sourceforge.net/
11117 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11122 F: include/linux/lockd/
11123 F: include/linux/sunrpc/
11124 F: include/trace/events/rpcgss.h
11125 F: include/trace/events/rpcrdma.h
11126 F: include/trace/events/sunrpc.h
11127 F: include/trace/misc/fs.h
11128 F: include/trace/misc/nfs.h
11129 F: include/trace/misc/sunrpc.h
11130 F: include/uapi/linux/nfsd/
11131 F: include/uapi/linux/sunrpc/
11133 F: Documentation/filesystems/nfs/
11136 M: Thorsten Leemhuis <linux@leemhuis.info>
11137 L: regressions@lists.linux.dev
11139 F: Documentation/admin-guide/reporting-regressions.rst
11140 F: Documentation/process/handling-regressions.rst
11142 KERNEL SELFTEST FRAMEWORK
11143 M: Shuah Khan <shuah@kernel.org>
11144 M: Shuah Khan <skhan@linuxfoundation.org>
11145 L: linux-kselftest@vger.kernel.org
11147 Q: https://patchwork.kernel.org/project/linux-kselftest/list/
11148 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11149 F: Documentation/dev-tools/kselftest*
11150 F: tools/testing/selftests/
11152 KERNEL SMB3 SERVER (KSMBD)
11153 M: Namjae Jeon <linkinjeon@kernel.org>
11154 M: Steve French <sfrench@samba.org>
11155 R: Sergey Senozhatsky <senozhatsky@chromium.org>
11156 R: Tom Talpey <tom@talpey.com>
11157 L: linux-cifs@vger.kernel.org
11159 T: git git://git.samba.org/ksmbd.git
11160 F: Documentation/filesystems/cifs/ksmbd.rst
11162 F: fs/smbfs_common/
11164 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11165 M: Brendan Higgins <brendanhiggins@google.com>
11166 M: David Gow <davidgow@google.com>
11167 L: linux-kselftest@vger.kernel.org
11168 L: kunit-dev@googlegroups.com
11170 W: https://google.github.io/kunit-docs/third_party/kernel/docs/
11171 F: Documentation/dev-tools/kunit/
11174 F: tools/testing/kunit/
11176 KERNEL USERMODE HELPER
11177 M: Luis Chamberlain <mcgrof@kernel.org>
11178 L: linux-kernel@vger.kernel.org
11180 F: include/linux/umh.h
11183 KERNEL VIRTUAL MACHINE (KVM)
11184 M: Paolo Bonzini <pbonzini@redhat.com>
11185 L: kvm@vger.kernel.org
11187 W: http://www.linux-kvm.org
11188 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11189 F: Documentation/virt/kvm/
11190 F: include/asm-generic/kvm*
11191 F: include/kvm/iodev.h
11192 F: include/linux/kvm*
11193 F: include/trace/events/kvm.h
11194 F: include/uapi/asm-generic/kvm*
11195 F: include/uapi/linux/kvm*
11197 F: tools/testing/selftests/kvm/
11200 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11201 M: Marc Zyngier <maz@kernel.org>
11202 R: James Morse <james.morse@arm.com>
11203 R: Suzuki K Poulose <suzuki.poulose@arm.com>
11204 R: Oliver Upton <oliver.upton@linux.dev>
11205 R: Zenghui Yu <yuzenghui@huawei.com>
11206 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11207 L: kvmarm@lists.linux.dev
11208 L: kvmarm@lists.cs.columbia.edu (deprecated, moderated for non-subscribers)
11210 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11211 F: arch/arm64/include/asm/kvm*
11212 F: arch/arm64/include/uapi/asm/kvm*
11214 F: include/kvm/arm_*
11215 F: tools/testing/selftests/kvm/*/aarch64/
11216 F: tools/testing/selftests/kvm/aarch64/
11218 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11219 M: Huacai Chen <chenhuacai@kernel.org>
11220 M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11221 L: linux-mips@vger.kernel.org
11222 L: kvm@vger.kernel.org
11224 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11225 F: arch/mips/include/asm/kvm*
11226 F: arch/mips/include/uapi/asm/kvm*
11229 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11230 L: linuxppc-dev@lists.ozlabs.org
11231 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11232 F: arch/powerpc/include/asm/kvm*
11233 F: arch/powerpc/include/uapi/asm/kvm*
11234 F: arch/powerpc/kernel/kvm*
11235 F: arch/powerpc/kvm/
11237 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11238 M: Anup Patel <anup@brainfault.org>
11239 R: Atish Patra <atishp@atishpatra.org>
11240 L: kvm@vger.kernel.org
11241 L: kvm-riscv@lists.infradead.org
11242 L: linux-riscv@lists.infradead.org
11244 T: git https://github.com/kvm-riscv/linux.git
11245 F: arch/riscv/include/asm/kvm*
11246 F: arch/riscv/include/uapi/asm/kvm*
11248 F: tools/testing/selftests/kvm/*/riscv/
11250 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11251 M: Christian Borntraeger <borntraeger@linux.ibm.com>
11252 M: Janosch Frank <frankja@linux.ibm.com>
11253 M: Claudio Imbrenda <imbrenda@linux.ibm.com>
11254 R: David Hildenbrand <david@redhat.com>
11255 L: kvm@vger.kernel.org
11257 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11258 F: Documentation/virt/kvm/s390*
11259 F: arch/s390/include/asm/gmap.h
11260 F: arch/s390/include/asm/kvm*
11261 F: arch/s390/include/uapi/asm/kvm*
11262 F: arch/s390/include/uapi/asm/uvdevice.h
11263 F: arch/s390/kernel/uv.c
11265 F: arch/s390/mm/gmap.c
11266 F: drivers/s390/char/uvdevice.c
11267 F: tools/testing/selftests/drivers/s390x/uvdevice/
11268 F: tools/testing/selftests/kvm/*/s390x/
11269 F: tools/testing/selftests/kvm/s390x/
11271 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11272 M: Sean Christopherson <seanjc@google.com>
11273 M: Paolo Bonzini <pbonzini@redhat.com>
11274 L: kvm@vger.kernel.org
11276 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11277 F: arch/x86/include/asm/kvm*
11278 F: arch/x86/include/asm/svm.h
11279 F: arch/x86/include/asm/vmx*.h
11280 F: arch/x86/include/uapi/asm/kvm*
11281 F: arch/x86/include/uapi/asm/svm.h
11282 F: arch/x86/include/uapi/asm/vmx.h
11286 KVM PARAVIRT (KVM/paravirt)
11287 M: Paolo Bonzini <pbonzini@redhat.com>
11288 R: Wanpeng Li <wanpengli@tencent.com>
11289 R: Vitaly Kuznetsov <vkuznets@redhat.com>
11290 L: kvm@vger.kernel.org
11292 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11293 F: arch/x86/kernel/kvm.c
11294 F: arch/x86/kernel/kvmclock.c
11295 F: arch/x86/include/asm/pvclock-abi.h
11296 F: include/linux/kvm_para.h
11297 F: include/uapi/linux/kvm_para.h
11298 F: include/uapi/asm-generic/kvm_para.h
11299 F: include/asm-generic/kvm_para.h
11300 F: arch/um/include/asm/kvm_para.h
11301 F: arch/x86/include/asm/kvm_para.h
11302 F: arch/x86/include/uapi/asm/kvm_para.h
11304 KVM X86 HYPER-V (KVM/hyper-v)
11305 M: Vitaly Kuznetsov <vkuznets@redhat.com>
11306 M: Sean Christopherson <seanjc@google.com>
11307 M: Paolo Bonzini <pbonzini@redhat.com>
11308 L: kvm@vger.kernel.org
11310 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11311 F: arch/x86/kvm/hyperv.*
11312 F: arch/x86/kvm/kvm_onhyperv.*
11313 F: arch/x86/kvm/svm/hyperv.*
11314 F: arch/x86/kvm/svm/svm_onhyperv.*
11315 F: arch/x86/kvm/vmx/hyperv.*
11317 KVM X86 Xen (KVM/Xen)
11318 M: David Woodhouse <dwmw2@infradead.org>
11319 M: Paul Durrant <paul@xen.org>
11320 M: Sean Christopherson <seanjc@google.com>
11321 M: Paolo Bonzini <pbonzini@redhat.com>
11322 L: kvm@vger.kernel.org
11324 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11325 F: arch/x86/kvm/xen.*
11328 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11329 M: Tejun Heo <tj@kernel.org>
11331 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11333 F: include/linux/kernfs.h
11336 M: Eric Biederman <ebiederm@xmission.com>
11337 L: kexec@lists.infradead.org
11339 W: http://kernel.org/pub/linux/utils/kernel/kexec/
11340 F: include/linux/kexec.h
11341 F: include/uapi/linux/kexec.h
11345 M: Mimi Zohar <zohar@linux.ibm.com>
11346 L: linux-integrity@vger.kernel.org
11347 L: keyrings@vger.kernel.org
11349 F: Documentation/security/keys/trusted-encrypted.rst
11350 F: include/keys/encrypted-type.h
11351 F: security/keys/encrypted-keys/
11354 M: James Bottomley <jejb@linux.ibm.com>
11355 M: Jarkko Sakkinen <jarkko@kernel.org>
11356 M: Mimi Zohar <zohar@linux.ibm.com>
11357 L: linux-integrity@vger.kernel.org
11358 L: keyrings@vger.kernel.org
11360 F: Documentation/security/keys/trusted-encrypted.rst
11361 F: include/keys/trusted-type.h
11362 F: include/keys/trusted_tpm.h
11363 F: security/keys/trusted-keys/
11366 M: Sumit Garg <sumit.garg@linaro.org>
11367 L: linux-integrity@vger.kernel.org
11368 L: keyrings@vger.kernel.org
11370 F: include/keys/trusted_tee.h
11371 F: security/keys/trusted-keys/trusted_tee.c
11374 M: Ahmad Fatoum <a.fatoum@pengutronix.de>
11375 R: Pengutronix Kernel Team <kernel@pengutronix.de>
11376 L: linux-integrity@vger.kernel.org
11377 L: keyrings@vger.kernel.org
11379 F: include/keys/trusted_caam.h
11380 F: security/keys/trusted-keys/trusted_caam.c
11383 M: David Howells <dhowells@redhat.com>
11384 M: Jarkko Sakkinen <jarkko@kernel.org>
11385 L: keyrings@vger.kernel.org
11387 F: Documentation/security/keys/core.rst
11389 F: include/linux/key-type.h
11390 F: include/linux/key.h
11391 F: include/linux/keyctl.h
11392 F: include/uapi/linux/keyctl.h
11395 KEYS/KEYRINGS_INTEGRITY
11396 M: Jarkko Sakkinen <jarkko@kernel.org>
11397 M: Mimi Zohar <zohar@linux.ibm.com>
11398 L: linux-integrity@vger.kernel.org
11399 L: keyrings@vger.kernel.org
11401 F: security/integrity/platform_certs
11404 M: Alexander Potapenko <glider@google.com>
11405 M: Marco Elver <elver@google.com>
11406 R: Dmitry Vyukov <dvyukov@google.com>
11407 L: kasan-dev@googlegroups.com
11409 F: Documentation/dev-tools/kfence.rst
11410 F: arch/*/include/asm/kfence.h
11411 F: include/linux/kfence.h
11412 F: lib/Kconfig.kfence
11416 M: Stefani Seibold <stefani@seibold.net>
11418 F: include/linux/kfifo.h
11422 KGDB / KDB /debug_core
11423 M: Jason Wessel <jason.wessel@windriver.com>
11424 M: Daniel Thompson <daniel.thompson@linaro.org>
11425 R: Douglas Anderson <dianders@chromium.org>
11426 L: kgdb-bugreport@lists.sourceforge.net
11428 W: http://kgdb.wiki.kernel.org/
11429 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11430 F: Documentation/dev-tools/kgdb.rst
11431 F: drivers/misc/kgdbts.c
11432 F: drivers/tty/serial/kgdboc.c
11433 F: include/linux/kdb.h
11434 F: include/linux/kgdb.h
11436 F: kernel/module/kdb.c
11438 KHADAS MCU MFD DRIVER
11439 M: Neil Armstrong <neil.armstrong@linaro.org>
11440 L: linux-amlogic@lists.infradead.org
11442 F: Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11443 F: drivers/mfd/khadas-mcu.c
11444 F: include/linux/mfd/khadas-mcu.h
11445 F: drivers/thermal/khadas_mcu_fan.c
11447 KIONIX/ROHM KX022A ACCELEROMETER
11448 M: Matti Vaittinen <mazziesaccount@gmail.com>
11449 L: linux-iio@vger.kernel.org
11451 F: drivers/iio/accel/kionix-kx022a*
11454 M: Catalin Marinas <catalin.marinas@arm.com>
11456 F: Documentation/dev-tools/kmemleak.rst
11457 F: include/linux/kmemleak.h
11459 F: samples/kmemleak/kmemleak-test.c
11461 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11462 M: Luis Chamberlain <mcgrof@kernel.org>
11463 L: linux-kernel@vger.kernel.org
11464 L: linux-modules@vger.kernel.org
11466 F: include/linux/kmod.h
11469 F: tools/testing/selftests/kmod/
11472 M: Alexander Potapenko <glider@google.com>
11473 R: Marco Elver <elver@google.com>
11474 R: Dmitry Vyukov <dvyukov@google.com>
11475 L: kasan-dev@googlegroups.com
11477 F: Documentation/dev-tools/kmsan.rst
11478 F: arch/*/include/asm/kmsan.h
11479 F: arch/*/mm/kmsan_*
11480 F: include/linux/kmsan*.h
11481 F: lib/Kconfig.kmsan
11483 F: scripts/Makefile.kmsan
11486 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11487 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11488 M: "David S. Miller" <davem@davemloft.net>
11489 M: Masami Hiramatsu <mhiramat@kernel.org>
11490 L: linux-kernel@vger.kernel.org
11491 L: linux-trace-kernel@vger.kernel.org
11492 Q: https://patchwork.kernel.org/project/linux-trace-kernel/list/
11494 T: git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11495 F: Documentation/trace/kprobes.rst
11496 F: include/asm-generic/kprobes.h
11497 F: include/linux/kprobes.h
11498 F: kernel/kprobes.c
11499 F: lib/test_kprobes.c
11502 KS0108 LCD CONTROLLER DRIVER
11503 M: Miguel Ojeda <ojeda@kernel.org>
11505 F: Documentation/admin-guide/auxdisplay/ks0108.rst
11506 F: drivers/auxdisplay/ks0108.c
11507 F: include/linux/ks0108.h
11509 KTD253 BACKLIGHT DRIVER
11510 M: Linus Walleij <linus.walleij@linaro.org>
11512 F: Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11513 F: drivers/video/backlight/ktd253-backlight.c
11516 M: Steven Rostedt <rostedt@goodmis.org>
11517 M: John Hawley <warthog9@eaglescrag.net>
11519 F: tools/testing/ktest
11522 M: David Ahern <dsahern@kernel.org>
11523 L: netdev@vger.kernel.org
11525 F: include/net/l3mdev.h
11528 LANDLOCK SECURITY MODULE
11529 M: Mickaël Salaün <mic@digikod.net>
11530 L: linux-security-module@vger.kernel.org
11532 W: https://landlock.io
11533 T: git https://github.com/landlock-lsm/linux.git
11534 F: Documentation/security/landlock.rst
11535 F: Documentation/userspace-api/landlock.rst
11536 F: include/uapi/linux/landlock.h
11537 F: samples/landlock/
11538 F: security/landlock/
11539 F: tools/testing/selftests/landlock/
11543 LANTIQ / INTEL Ethernet drivers
11544 M: Hauke Mehrtens <hauke@hauke-m.de>
11545 L: netdev@vger.kernel.org
11547 F: drivers/net/dsa/lantiq_gswip.c
11548 F: drivers/net/dsa/lantiq_pce.h
11549 F: drivers/net/ethernet/lantiq_xrx200.c
11550 F: net/dsa/tag_gswip.c
11552 LANTIQ MIPS ARCHITECTURE
11553 M: John Crispin <john@phrozen.org>
11554 L: linux-mips@vger.kernel.org
11556 F: arch/mips/lantiq
11557 F: drivers/soc/lantiq
11559 LASI 53c700 driver for PARISC
11560 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11561 L: linux-scsi@vger.kernel.org
11563 F: Documentation/scsi/53c700.rst
11564 F: drivers/scsi/53c700*
11567 M: Tobin C. Harding <me@tobin.cc>
11568 M: Tycho Andersen <tycho@tycho.pizza>
11569 L: linux-hardening@vger.kernel.org
11571 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11572 F: scripts/leaking_addresses.pl
11575 M: Pavel Machek <pavel@ucw.cz>
11576 M: Lee Jones <lee@kernel.org>
11577 L: linux-leds@vger.kernel.org
11579 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11580 F: Documentation/devicetree/bindings/leds/
11582 F: include/dt-bindings/leds/
11583 F: include/linux/leds.h
11585 LEGACY EEPROM DRIVER
11586 M: Jean Delvare <jdelvare@suse.com>
11588 F: Documentation/misc-devices/eeprom.rst
11589 F: drivers/misc/eeprom/eeprom.c
11591 LEGO MINDSTORMS EV3
11592 R: David Lechner <david@lechnology.com>
11594 F: Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11595 F: arch/arm/boot/dts/da850-lego-ev3.dts
11596 F: drivers/power/supply/lego_ev3_battery.c
11598 LEGO USB Tower driver
11599 M: Juergen Stuber <starblue@users.sourceforge.net>
11600 L: legousb-devel@lists.sourceforge.net
11602 W: http://legousb.sourceforge.net/
11603 F: drivers/usb/misc/legousbtower.c
11605 LETSKETCH HID TABLET DRIVER
11606 M: Hans de Goede <hdegoede@redhat.com>
11607 L: linux-input@vger.kernel.org
11609 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11610 F: drivers/hid/hid-letsketch.c
11613 M: Matan Ziv-Av <matan@svgalib.org>
11614 L: platform-driver-x86@vger.kernel.org
11616 F: Documentation/ABI/testing/sysfs-platform-lg-laptop
11617 F: Documentation/admin-guide/laptops/lg-laptop.rst
11618 F: drivers/platform/x86/lg-laptop.c
11620 LG2160 MEDIA DRIVER
11621 M: Michael Krufky <mkrufky@linuxtv.org>
11622 L: linux-media@vger.kernel.org
11624 W: https://linuxtv.org
11625 W: http://github.com/mkrufky
11626 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11627 T: git git://linuxtv.org/mkrufky/tuners.git
11628 F: drivers/media/dvb-frontends/lg2160.*
11630 LGDT3305 MEDIA DRIVER
11631 M: Michael Krufky <mkrufky@linuxtv.org>
11632 L: linux-media@vger.kernel.org
11634 W: https://linuxtv.org
11635 W: http://github.com/mkrufky
11636 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11637 T: git git://linuxtv.org/mkrufky/tuners.git
11638 F: drivers/media/dvb-frontends/lgdt3305.*
11640 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11641 M: Viresh Kumar <vireshk@kernel.org>
11642 L: linux-ide@vger.kernel.org
11644 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11645 F: drivers/ata/pata_arasan_cf.c
11646 F: include/linux/pata_arasan_cf_data.h
11648 LIBATA PATA DRIVERS
11649 R: Sergey Shtylyov <s.shtylyov@omp.ru>
11650 L: linux-ide@vger.kernel.org
11651 F: drivers/ata/ata_*.c
11652 F: drivers/ata/pata_*.c
11654 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11655 M: Linus Walleij <linus.walleij@linaro.org>
11656 L: linux-ide@vger.kernel.org
11658 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11659 F: drivers/ata/pata_ftide010.c
11660 F: drivers/ata/sata_gemini.c
11661 F: drivers/ata/sata_gemini.h
11663 LIBATA SATA AHCI PLATFORM devices support
11664 M: Hans de Goede <hdegoede@redhat.com>
11665 M: Jens Axboe <axboe@kernel.dk>
11666 L: linux-ide@vger.kernel.org
11668 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11669 F: drivers/ata/ahci_platform.c
11670 F: drivers/ata/libahci_platform.c
11671 F: include/linux/ahci_platform.h
11673 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11674 M: Serge Semin <fancer.lancer@gmail.com>
11675 L: linux-ide@vger.kernel.org
11677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11678 F: Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11679 F: Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11680 F: drivers/ata/ahci_dwc.c
11682 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11683 M: Mikael Pettersson <mikpelinux@gmail.com>
11684 L: linux-ide@vger.kernel.org
11686 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11687 F: drivers/ata/sata_promise.*
11689 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11690 M: Damien Le Moal <damien.lemoal@opensource.wdc.com>
11691 L: linux-ide@vger.kernel.org
11693 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11694 F: Documentation/ABI/testing/sysfs-ata
11695 F: Documentation/devicetree/bindings/ata/
11697 F: include/linux/ata.h
11698 F: include/linux/libata.h
11700 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11701 M: Vishal Verma <vishal.l.verma@intel.com>
11702 M: Dan Williams <dan.j.williams@intel.com>
11703 M: Dave Jiang <dave.jiang@intel.com>
11704 L: nvdimm@lists.linux.dev
11706 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
11707 P: Documentation/nvdimm/maintainer-entry-profile.rst
11708 F: drivers/nvdimm/btt*
11710 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11711 M: Dan Williams <dan.j.williams@intel.com>
11712 M: Vishal Verma <vishal.l.verma@intel.com>
11713 M: Dave Jiang <dave.jiang@intel.com>
11714 L: nvdimm@lists.linux.dev
11716 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
11717 P: Documentation/nvdimm/maintainer-entry-profile.rst
11718 F: drivers/nvdimm/pmem*
11720 LIBNVDIMM: DEVICETREE BINDINGS
11721 M: Oliver O'Halloran <oohall@gmail.com>
11722 L: nvdimm@lists.linux.dev
11724 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
11725 F: Documentation/devicetree/bindings/pmem/pmem-region.txt
11726 F: drivers/nvdimm/of_pmem.c
11728 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11729 M: Dan Williams <dan.j.williams@intel.com>
11730 M: Vishal Verma <vishal.l.verma@intel.com>
11731 M: Dave Jiang <dave.jiang@intel.com>
11732 M: Ira Weiny <ira.weiny@intel.com>
11733 L: nvdimm@lists.linux.dev
11735 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
11736 P: Documentation/nvdimm/maintainer-entry-profile.rst
11737 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11738 F: drivers/acpi/nfit/*
11739 F: drivers/nvdimm/*
11740 F: include/linux/libnvdimm.h
11741 F: include/linux/nd.h
11742 F: include/uapi/linux/ndctl.h
11743 F: tools/testing/nvdimm/
11745 LICENSES and SPDX stuff
11746 M: Thomas Gleixner <tglx@linutronix.de>
11747 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11748 L: linux-spdx@vger.kernel.org
11750 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11752 F: Documentation/process/license-rules.rst
11754 F: scripts/spdxcheck-test.sh
11755 F: scripts/spdxcheck.py
11756 F: scripts/spdxexclude
11758 LINEAR RANGES HELPERS
11759 M: Mark Brown <broonie@kernel.org>
11760 R: Matti Vaittinen <mazziesaccount@gmail.com>
11761 F: lib/linear_ranges.c
11762 F: lib/test_linear_ranges.c
11763 F: include/linux/linear_range.h
11765 LINUX FOR POWER MACINTOSH
11766 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
11767 L: linuxppc-dev@lists.ozlabs.org
11769 F: arch/powerpc/platforms/powermac/
11770 F: drivers/macintosh/
11772 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11773 M: Michael Ellerman <mpe@ellerman.id.au>
11774 R: Nicholas Piggin <npiggin@gmail.com>
11775 R: Christophe Leroy <christophe.leroy@csgroup.eu>
11776 L: linuxppc-dev@lists.ozlabs.org
11778 W: https://github.com/linuxppc/wiki/wiki
11779 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11780 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11781 F: Documentation/ABI/stable/sysfs-firmware-opal-*
11782 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
11783 F: Documentation/devicetree/bindings/powerpc/
11784 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
11785 F: Documentation/powerpc/
11787 F: drivers/*/*/*pasemi*
11788 F: drivers/*/*pasemi*
11789 F: drivers/char/tpm/tpm_ibmvtpm*
11790 F: drivers/crypto/nx/
11791 F: drivers/crypto/vmx/
11792 F: drivers/i2c/busses/i2c-opal.c
11793 F: drivers/net/ethernet/ibm/ibmveth.*
11794 F: drivers/net/ethernet/ibm/ibmvnic.*
11795 F: drivers/pci/hotplug/pnv_php.c
11796 F: drivers/pci/hotplug/rpa*
11797 F: drivers/rtc/rtc-opal.c
11798 F: drivers/scsi/ibmvscsi/
11799 F: drivers/tty/hvc/hvc_opal.c
11800 F: drivers/watchdog/wdrtas.c
11801 F: tools/testing/selftests/powerpc
11808 LINUX FOR POWERPC EMBEDDED MPC5XXX
11809 M: Anatolij Gustschin <agust@denx.de>
11810 L: linuxppc-dev@lists.ozlabs.org
11812 F: arch/powerpc/platforms/512x/
11813 F: arch/powerpc/platforms/52xx/
11815 LINUX FOR POWERPC EMBEDDED PPC4XX
11816 L: linuxppc-dev@lists.ozlabs.org
11818 F: arch/powerpc/platforms/40x/
11819 F: arch/powerpc/platforms/44x/
11821 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11822 M: Scott Wood <oss@buserror.net>
11823 L: linuxppc-dev@lists.ozlabs.org
11825 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11826 F: Documentation/devicetree/bindings/powerpc/fsl/
11827 F: arch/powerpc/platforms/83xx/
11828 F: arch/powerpc/platforms/85xx/
11830 LINUX FOR POWERPC EMBEDDED PPC8XX
11831 M: Christophe Leroy <christophe.leroy@csgroup.eu>
11832 L: linuxppc-dev@lists.ozlabs.org
11834 F: arch/powerpc/platforms/8xx/
11836 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11837 M: Kees Cook <keescook@chromium.org>
11839 F: drivers/misc/lkdtm/*
11840 F: tools/testing/selftests/lkdtm/*
11842 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11843 M: Alan Stern <stern@rowland.harvard.edu>
11844 M: Andrea Parri <parri.andrea@gmail.com>
11845 M: Will Deacon <will@kernel.org>
11846 M: Peter Zijlstra <peterz@infradead.org>
11847 M: Boqun Feng <boqun.feng@gmail.com>
11848 M: Nicholas Piggin <npiggin@gmail.com>
11849 M: David Howells <dhowells@redhat.com>
11850 M: Jade Alglave <j.alglave@ucl.ac.uk>
11851 M: Luc Maranget <luc.maranget@inria.fr>
11852 M: "Paul E. McKenney" <paulmck@kernel.org>
11853 R: Akira Yokosawa <akiyks@gmail.com>
11854 R: Daniel Lustig <dlustig@nvidia.com>
11855 R: Joel Fernandes <joel@joelfernandes.org>
11856 L: linux-kernel@vger.kernel.org
11857 L: linux-arch@vger.kernel.org
11859 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11860 F: Documentation/atomic_bitops.txt
11861 F: Documentation/atomic_t.txt
11862 F: Documentation/core-api/refcount-vs-atomic.rst
11863 F: Documentation/litmus-tests/
11864 F: Documentation/memory-barriers.txt
11865 F: tools/memory-model/
11867 LIS3LV02D ACCELEROMETER DRIVER
11868 M: Eric Piel <eric.piel@tremplin-utc.net>
11870 F: Documentation/misc-devices/lis3lv02d.rst
11871 F: drivers/misc/lis3lv02d/
11872 F: drivers/platform/x86/hp/hp_accel.c
11875 M: David Gow <davidgow@google.com>
11876 L: linux-kselftest@vger.kernel.org
11877 L: kunit-dev@googlegroups.com
11882 M: Karol Gugala <kgugala@antmicro.com>
11883 M: Mateusz Holenko <mholenko@antmicro.com>
11884 M: Gabriel Somlo <gsomlo@gmail.com>
11885 M: Joel Stanley <joel@jms.id.au>
11887 F: Documentation/devicetree/bindings/*/litex,*.yaml
11888 F: arch/openrisc/boot/dts/or1klitex.dts
11889 F: include/linux/litex.h
11890 F: drivers/tty/serial/liteuart.c
11891 F: drivers/soc/litex/*
11892 F: drivers/net/ethernet/litex/*
11893 F: drivers/mmc/host/litex_mmc.c
11897 M: Josh Poimboeuf <jpoimboe@kernel.org>
11898 M: Jiri Kosina <jikos@kernel.org>
11899 M: Miroslav Benes <mbenes@suse.cz>
11900 M: Petr Mladek <pmladek@suse.com>
11901 R: Joe Lawrence <joe.lawrence@redhat.com>
11902 L: live-patching@vger.kernel.org
11904 T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11905 F: Documentation/ABI/testing/sysfs-kernel-livepatch
11906 F: Documentation/livepatch/
11907 F: arch/powerpc/include/asm/livepatch.h
11908 F: include/linux/livepatch.h
11909 F: kernel/livepatch/
11910 F: kernel/module/livepatch.c
11912 F: samples/livepatch/
11913 F: tools/testing/selftests/livepatch/
11916 L: netdev@vger.kernel.org
11918 F: include/linux/llc.h
11919 F: include/net/llc*
11920 F: include/uapi/linux/llc.h
11923 LM73 HARDWARE MONITOR DRIVER
11924 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
11925 L: linux-hwmon@vger.kernel.org
11927 F: drivers/hwmon/lm73.c
11929 LM78 HARDWARE MONITOR DRIVER
11930 M: Jean Delvare <jdelvare@suse.com>
11931 L: linux-hwmon@vger.kernel.org
11933 F: Documentation/hwmon/lm78.rst
11934 F: drivers/hwmon/lm78.c
11936 LM83 HARDWARE MONITOR DRIVER
11937 M: Jean Delvare <jdelvare@suse.com>
11938 L: linux-hwmon@vger.kernel.org
11940 F: Documentation/hwmon/lm83.rst
11941 F: drivers/hwmon/lm83.c
11943 LM90 HARDWARE MONITOR DRIVER
11944 M: Jean Delvare <jdelvare@suse.com>
11945 L: linux-hwmon@vger.kernel.org
11947 F: Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11948 F: Documentation/hwmon/lm90.rst
11949 F: drivers/hwmon/lm90.c
11950 F: include/dt-bindings/thermal/lm90.h
11952 LM95234 HARDWARE MONITOR DRIVER
11953 M: Guenter Roeck <linux@roeck-us.net>
11954 L: linux-hwmon@vger.kernel.org
11956 F: Documentation/hwmon/lm95234.rst
11957 F: drivers/hwmon/lm95234.c
11959 LME2510 MEDIA DRIVER
11960 M: Malcolm Priestley <tvboxspy@gmail.com>
11961 L: linux-media@vger.kernel.org
11963 W: https://linuxtv.org
11964 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11965 F: drivers/media/usb/dvb-usb-v2/lmedm04*
11967 LOADPIN SECURITY MODULE
11968 M: Kees Cook <keescook@chromium.org>
11970 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11971 F: Documentation/admin-guide/LSM/LoadPin.rst
11972 F: security/loadpin/
11975 M: Peter Zijlstra <peterz@infradead.org>
11976 M: Ingo Molnar <mingo@redhat.com>
11977 M: Will Deacon <will@kernel.org>
11978 R: Waiman Long <longman@redhat.com>
11979 R: Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11980 L: linux-kernel@vger.kernel.org
11982 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11983 F: Documentation/locking/
11984 F: arch/*/include/asm/spinlock*.h
11985 F: include/linux/lockdep.h
11986 F: include/linux/mutex*.h
11987 F: include/linux/rwlock*.h
11988 F: include/linux/rwsem*.h
11989 F: include/linux/seqlock.h
11990 F: include/linux/spinlock*.h
11992 F: lib/locking*.[ch]
11993 X: kernel/locking/locktorture.c
11995 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11996 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
11997 L: linux-ntfs-dev@lists.sourceforge.net
11999 W: http://www.linux-ntfs.org/content/view/19/37/
12000 F: Documentation/admin-guide/ldm.rst
12001 F: block/partitions/ldm.*
12003 LOGITECH HID GAMING KEYBOARDS
12004 M: Hans de Goede <hdegoede@redhat.com>
12005 L: linux-input@vger.kernel.org
12007 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12008 F: drivers/hid/hid-lg-g15.c
12010 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12011 M: Adrien Grassein <adrien.grassein@gmail.com>
12013 F: Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12014 F: drivers/gpu/drm/bridge/lontium-lt8912b.c
12017 M: Huacai Chen <chenhuacai@kernel.org>
12018 R: WANG Xuerui <kernel@xen0n.name>
12019 L: loongarch@lists.linux.dev
12021 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12023 F: drivers/*/*loongarch*
12024 F: Documentation/loongarch/
12025 F: Documentation/translations/zh_CN/loongarch/
12027 LOONGSON-2 SOC SERIES GUTS DRIVER
12028 M: Yinbo Zhu <zhuyinbo@loongson.cn>
12029 L: loongarch@lists.linux.dev
12031 F: Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12032 F: drivers/soc/loongson/loongson2_guts.c
12034 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12035 M: zhanghongchen <zhanghongchen@loongson.cn>
12036 M: Yinbo Zhu <zhuyinbo@loongson.cn>
12037 L: linux-gpio@vger.kernel.org
12039 F: Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12040 F: drivers/pinctrl/pinctrl-loongson2.c
12042 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12043 M: Sathya Prakash <sathya.prakash@broadcom.com>
12044 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12045 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12046 L: MPT-FusionLinux.pdl@broadcom.com
12047 L: linux-scsi@vger.kernel.org
12049 W: http://www.avagotech.com/support/
12050 F: drivers/message/fusion/
12051 F: drivers/scsi/mpt3sas/
12053 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12054 M: Matthew Wilcox <willy@infradead.org>
12055 L: linux-scsi@vger.kernel.org
12057 F: drivers/scsi/sym53c8xx_2/
12060 M: Marcus Folkesson <marcus.folkesson@gmail.com>
12061 L: linux-iio@vger.kernel.org
12063 F: Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12064 F: drivers/iio/dac/ltc1660.c
12066 LTC2688 IIO DAC DRIVER
12067 M: Nuno Sá <nuno.sa@analog.com>
12068 L: linux-iio@vger.kernel.org
12070 W: https://ez.analog.com/linux-software-drivers
12071 F: Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12072 F: Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12073 F: drivers/iio/dac/ltc2688.c
12075 LTC2947 HARDWARE MONITOR DRIVER
12076 M: Nuno Sá <nuno.sa@analog.com>
12077 L: linux-hwmon@vger.kernel.org
12079 W: https://ez.analog.com/linux-software-drivers
12080 F: Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12081 F: drivers/hwmon/ltc2947-core.c
12082 F: drivers/hwmon/ltc2947-i2c.c
12083 F: drivers/hwmon/ltc2947-spi.c
12084 F: drivers/hwmon/ltc2947.h
12086 LTC2983 IIO TEMPERATURE DRIVER
12087 M: Nuno Sá <nuno.sa@analog.com>
12088 L: linux-iio@vger.kernel.org
12090 W: https://ez.analog.com/linux-software-drivers
12091 F: Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12092 F: drivers/iio/temperature/ltc2983.c
12094 LTC4261 HARDWARE MONITOR DRIVER
12095 M: Guenter Roeck <linux@roeck-us.net>
12096 L: linux-hwmon@vger.kernel.org
12098 F: Documentation/hwmon/ltc4261.rst
12099 F: drivers/hwmon/ltc4261.c
12101 LTC4306 I2C MULTIPLEXER DRIVER
12102 M: Michael Hennerich <michael.hennerich@analog.com>
12103 L: linux-i2c@vger.kernel.org
12105 W: https://ez.analog.com/linux-software-drivers
12106 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12107 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
12109 LTP (Linux Test Project)
12110 M: Mike Frysinger <vapier@gentoo.org>
12111 M: Cyril Hrubis <chrubis@suse.cz>
12112 M: Wanlong Gao <wanlong.gao@gmail.com>
12113 M: Jan Stancek <jstancek@redhat.com>
12114 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12115 M: Alexey Kodanev <alexey.kodanev@oracle.com>
12116 L: ltp@lists.linux.it (subscribers-only)
12118 W: http://linux-test-project.github.io/
12119 T: git https://github.com/linux-test-project/ltp.git
12121 LYNX 28G SERDES PHY DRIVER
12122 M: Ioana Ciornei <ioana.ciornei@nxp.com>
12123 L: netdev@vger.kernel.org
12125 F: Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12126 F: drivers/phy/freescale/phy-fsl-lynx-28g.c
12129 M: Ioana Ciornei <ioana.ciornei@nxp.com>
12130 L: netdev@vger.kernel.org
12132 F: drivers/net/pcs/pcs-lynx.c
12133 F: include/linux/pcs-lynx.h
12136 M: Geert Uytterhoeven <geert@linux-m68k.org>
12137 L: linux-m68k@lists.linux-m68k.org
12139 W: http://www.linux-m68k.org/
12140 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12144 M68K ON APPLE MACINTOSH
12145 M: Joshua Thompson <funaho@jurai.org>
12146 L: linux-m68k@lists.linux-m68k.org
12148 W: http://www.mac.linux-m68k.org/
12150 F: drivers/macintosh/adb-iop.c
12151 F: drivers/macintosh/via-macii.c
12154 M: Philip Blundell <philb@gnu.org>
12156 W: http://www.tazenda.demon.co.uk/phil/linux-hp
12157 F: arch/m68k/hp300/
12159 M88DS3103 MEDIA DRIVER
12160 M: Antti Palosaari <crope@iki.fi>
12161 L: linux-media@vger.kernel.org
12163 W: https://linuxtv.org
12164 W: http://palosaari.fi/linux/
12165 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12166 T: git git://linuxtv.org/anttip/media_tree.git
12167 F: drivers/media/dvb-frontends/m88ds3103*
12169 M88RS2000 MEDIA DRIVER
12170 M: Malcolm Priestley <tvboxspy@gmail.com>
12171 L: linux-media@vger.kernel.org
12173 W: https://linuxtv.org
12174 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12175 F: drivers/media/dvb-frontends/m88rs2000*
12177 MA901 MASTERKIT USB FM RADIO DRIVER
12178 M: Alexey Klimov <klimov.linux@gmail.com>
12179 L: linux-media@vger.kernel.org
12181 T: git git://linuxtv.org/media_tree.git
12182 F: drivers/media/radio/radio-ma901.c
12185 M: Johannes Berg <johannes@sipsolutions.net>
12186 L: linux-wireless@vger.kernel.org
12188 W: https://wireless.wiki.kernel.org/
12189 Q: https://patchwork.kernel.org/project/linux-wireless/list/
12190 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12191 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12192 F: Documentation/networking/mac80211-injection.rst
12193 F: Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12194 F: drivers/net/wireless/mac80211_hwsim.[ch]
12195 F: include/net/mac80211.h
12199 M: Jassi Brar <jassisinghbrar@gmail.com>
12200 L: linux-kernel@vger.kernel.org
12202 F: drivers/mailbox/
12203 F: include/linux/mailbox_client.h
12204 F: include/linux/mailbox_controller.h
12205 F: include/dt-bindings/mailbox/
12206 F: Documentation/devicetree/bindings/mailbox/
12209 M: Viresh Kumar <viresh.kumar@linaro.org>
12210 M: Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12211 L: linux-kernel@vger.kernel.org
12213 F: drivers/mailbox/arm_mhuv2.c
12214 F: include/linux/mailbox/arm_mhuv2_message.h
12215 F: Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12217 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12218 M: Jeremy Kerr <jk@codeconstruct.com.au>
12219 M: Matt Johnston <matt@codeconstruct.com.au>
12220 L: netdev@vger.kernel.org
12222 F: Documentation/networking/mctp.rst
12223 F: drivers/net/mctp/
12224 F: include/net/mctp.h
12225 F: include/net/mctpdevice.h
12226 F: include/net/netns/mctp.h
12229 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12230 M: Michael Kerrisk <mtk.manpages@gmail.com>
12231 L: linux-man@vger.kernel.org
12233 W: http://www.kernel.org/doc/man-pages
12236 M: Liam R. Howlett <Liam.Howlett@oracle.com>
12237 L: linux-mm@kvack.org
12239 F: Documentation/core-api/maple_tree.rst
12240 F: include/linux/maple_tree.h
12241 F: include/trace/events/maple_tree.h
12242 F: lib/maple_tree.c
12243 F: lib/test_maple_tree.c
12244 F: tools/testing/radix-tree/linux/maple_tree.h
12245 F: tools/testing/radix-tree/maple.c
12247 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12248 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
12249 L: linux-mips@vger.kernel.org
12251 F: arch/mips/boot/dts/img/pistachio*
12253 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12254 M: Andrew Lunn <andrew@lunn.ch>
12255 L: netdev@vger.kernel.org
12257 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
12258 F: Documentation/networking/devlink/mv88e6xxx.rst
12259 F: drivers/net/dsa/mv88e6xxx/
12260 F: include/linux/dsa/mv88e6xxx.h
12261 F: include/linux/platform_data/mv88e6xxx.h
12263 MARVELL ARMADA 3700 PHY DRIVERS
12264 M: Miquel Raynal <miquel.raynal@bootlin.com>
12266 F: Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12267 F: Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12268 F: drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12269 F: drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12271 MARVELL ARMADA 3700 SERIAL DRIVER
12272 M: Pali Rohár <pali@kernel.org>
12274 F: Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12275 F: Documentation/devicetree/bindings/serial/mvebu-uart.txt
12276 F: drivers/tty/serial/mvebu-uart.c
12278 MARVELL ARMADA DRM SUPPORT
12279 M: Russell King <linux@armlinux.org.uk>
12281 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12282 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12283 F: Documentation/devicetree/bindings/display/armada/
12284 F: drivers/gpu/drm/armada/
12285 F: include/uapi/drm/armada_drm.h
12287 MARVELL CRYPTO DRIVER
12288 M: Boris Brezillon <bbrezillon@kernel.org>
12289 M: Arnaud Ebalard <arno@natisbad.org>
12290 M: Srujana Challa <schalla@marvell.com>
12291 L: linux-crypto@vger.kernel.org
12293 F: drivers/crypto/marvell/
12294 F: include/linux/soc/marvell/octeontx2/
12296 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12297 M: Mirko Lindner <mlindner@marvell.com>
12298 M: Stephen Hemminger <stephen@networkplumber.org>
12299 L: netdev@vger.kernel.org
12301 F: drivers/net/ethernet/marvell/sk*
12303 MARVELL LIBERTAS WIRELESS DRIVER
12304 L: libertas-dev@lists.infradead.org
12306 F: drivers/net/wireless/marvell/libertas/
12308 MARVELL MACCHIATOBIN SUPPORT
12309 M: Russell King <linux@armlinux.org.uk>
12310 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12312 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12314 MARVELL MV643XX ETHERNET DRIVER
12315 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12316 L: netdev@vger.kernel.org
12318 F: drivers/net/ethernet/marvell/mv643xx_eth.*
12319 F: include/linux/mv643xx.h
12321 MARVELL MV88X3310 PHY DRIVER
12322 M: Russell King <linux@armlinux.org.uk>
12323 M: Marek Behún <kabel@kernel.org>
12324 L: netdev@vger.kernel.org
12326 F: drivers/net/phy/marvell10g.c
12328 MARVELL MVEBU THERMAL DRIVER
12329 M: Miquel Raynal <miquel.raynal@bootlin.com>
12331 F: drivers/thermal/armada_thermal.c
12333 MARVELL MVNETA ETHERNET DRIVER
12334 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12335 L: netdev@vger.kernel.org
12337 F: drivers/net/ethernet/marvell/mvneta.*
12339 MARVELL MVPP2 ETHERNET DRIVER
12340 M: Marcin Wojtas <mw@semihalf.com>
12341 M: Russell King <linux@armlinux.org.uk>
12342 L: netdev@vger.kernel.org
12344 F: Documentation/devicetree/bindings/net/marvell,pp2.yaml
12345 F: drivers/net/ethernet/marvell/mvpp2/
12347 MARVELL MWIFIEX WIRELESS DRIVER
12348 M: Amitkumar Karwar <amitkarwar@gmail.com>
12349 M: Ganapathi Bhat <ganapathi017@gmail.com>
12350 M: Sharvari Harisangam <sharvari.harisangam@nxp.com>
12351 M: Xinming Hu <huxinming820@gmail.com>
12352 L: linux-wireless@vger.kernel.org
12354 F: drivers/net/wireless/marvell/mwifiex/
12356 MARVELL MWL8K WIRELESS DRIVER
12357 M: Lennert Buytenhek <buytenh@wantstofly.org>
12358 L: linux-wireless@vger.kernel.org
12360 F: drivers/net/wireless/marvell/mwl8k.c
12362 MARVELL NAND CONTROLLER DRIVER
12363 M: Miquel Raynal <miquel.raynal@bootlin.com>
12364 L: linux-mtd@lists.infradead.org
12366 F: Documentation/devicetree/bindings/mtd/marvell-nand.txt
12367 F: drivers/mtd/nand/raw/marvell_nand.c
12369 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12370 M: Sunil Goutham <sgoutham@marvell.com>
12371 M: Geetha sowjanya <gakula@marvell.com>
12372 M: Subbaraya Sundeep <sbhatta@marvell.com>
12373 M: hariprasad <hkelam@marvell.com>
12374 L: netdev@vger.kernel.org
12376 F: drivers/net/ethernet/marvell/octeontx2/nic/
12377 F: include/linux/soc/marvell/octeontx2/
12379 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12380 M: Sunil Goutham <sgoutham@marvell.com>
12381 M: Linu Cherian <lcherian@marvell.com>
12382 M: Geetha sowjanya <gakula@marvell.com>
12383 M: Jerin Jacob <jerinj@marvell.com>
12384 M: hariprasad <hkelam@marvell.com>
12385 M: Subbaraya Sundeep <sbhatta@marvell.com>
12386 L: netdev@vger.kernel.org
12388 F: Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12389 F: drivers/net/ethernet/marvell/octeontx2/af/
12391 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12392 M: Taras Chornyi <taras.chornyi@plvision.eu>
12394 W: https://github.com/Marvell-switching/switchdev-prestera
12395 F: drivers/net/ethernet/marvell/prestera/
12397 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12398 M: Nicolas Pitre <nico@fluxnic.net>
12400 F: drivers/mmc/host/mvsdio.*
12402 MARVELL USB MDIO CONTROLLER DRIVER
12403 M: Tobias Waldekranz <tobias@waldekranz.com>
12404 L: netdev@vger.kernel.org
12406 F: Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12407 F: drivers/net/mdio/mdio-mvusb.c
12409 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12410 M: Hu Ziji <huziji@marvell.com>
12411 L: linux-mmc@vger.kernel.org
12413 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12414 F: drivers/mmc/host/sdhci-xenon*
12416 MARVELL OCTEON ENDPOINT DRIVER
12417 M: Veerasenareddy Burru <vburru@marvell.com>
12418 M: Abhijit Ayarekar <aayarekar@marvell.com>
12419 L: netdev@vger.kernel.org
12421 F: drivers/net/ethernet/marvell/octeon_ep
12423 MATROX FRAMEBUFFER DRIVER
12424 L: linux-fbdev@vger.kernel.org
12426 F: drivers/video/fbdev/matrox/matroxfb_*
12427 F: include/uapi/linux/matroxfb.h
12430 M: Daniel Nilsson <daniel.nilsson@flex.com>
12431 L: linux-hwmon@vger.kernel.org
12433 F: Documentation/hwmon/max15301.rst
12434 F: drivers/hwmon/pmbus/max15301.c
12436 MAX16065 HARDWARE MONITOR DRIVER
12437 M: Guenter Roeck <linux@roeck-us.net>
12438 L: linux-hwmon@vger.kernel.org
12440 F: Documentation/hwmon/max16065.rst
12441 F: drivers/hwmon/max16065.c
12443 MAX2175 SDR TUNER DRIVER
12444 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
12445 L: linux-media@vger.kernel.org
12447 T: git git://linuxtv.org/media_tree.git
12448 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
12449 F: Documentation/userspace-api/media/drivers/max2175.rst
12450 F: drivers/media/i2c/max2175*
12451 F: include/uapi/linux/max2175.h
12453 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12454 L: linux-hwmon@vger.kernel.org
12456 F: Documentation/hwmon/max6650.rst
12457 F: drivers/hwmon/max6650.c
12459 MAX6697 HARDWARE MONITOR DRIVER
12460 M: Guenter Roeck <linux@roeck-us.net>
12461 L: linux-hwmon@vger.kernel.org
12463 F: Documentation/devicetree/bindings/hwmon/max6697.txt
12464 F: Documentation/hwmon/max6697.rst
12465 F: drivers/hwmon/max6697.c
12466 F: include/linux/platform_data/max6697.h
12468 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12469 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
12470 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12471 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12472 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12473 L: linux-media@vger.kernel.org
12475 F: Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12476 F: drivers/media/i2c/max9286.c
12478 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12479 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
12480 L: linux-media@vger.kernel.org
12482 F: drivers/staging/media/max96712/max96712.c
12484 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12485 M: Peter Rosin <peda@axentia.se>
12486 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12488 F: Documentation/devicetree/bindings/sound/max9860.txt
12489 F: sound/soc/codecs/max9860.*
12491 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12492 M: Andreas Klinger <ak@it-klinger.de>
12493 L: linux-iio@vger.kernel.org
12495 F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12496 F: drivers/iio/proximity/mb1232.c
12498 MAXIM MAX11205 DRIVER
12499 M: Ramona Bolboaca <ramona.bolboaca@analog.com>
12500 L: linux-iio@vger.kernel.org
12502 W: https://ez.analog.com/linux-software-drivers
12503 F: Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12504 F: drivers/iio/adc/max11205.c
12506 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12507 R: Iskren Chernev <iskren.chernev@gmail.com>
12508 R: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12509 R: Marek Szyprowski <m.szyprowski@samsung.com>
12510 R: Matheus Castello <matheus@castello.eng.br>
12511 L: linux-pm@vger.kernel.org
12513 F: Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12514 F: drivers/power/supply/max17040_battery.c
12516 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12517 R: Hans de Goede <hdegoede@redhat.com>
12518 R: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12519 R: Marek Szyprowski <m.szyprowski@samsung.com>
12520 R: Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12521 R: Purism Kernel Team <kernel@puri.sm>
12522 L: linux-pm@vger.kernel.org
12524 F: Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12525 F: drivers/power/supply/max17042_battery.c
12527 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12528 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12529 L: linux-kernel@vger.kernel.org
12531 F: Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12532 F: drivers/regulator/max20086-regulator.c
12534 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12535 M: Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12536 L: linux-iio@vger.kernel.org
12538 F: drivers/iio/temperature/max30208.c
12540 MAXIM MAX77650 PMIC MFD DRIVER
12541 M: Bartosz Golaszewski <brgl@bgdev.pl>
12542 L: linux-kernel@vger.kernel.org
12544 F: Documentation/devicetree/bindings/*/*max77650.yaml
12545 F: Documentation/devicetree/bindings/*/max77650*.yaml
12546 F: drivers/gpio/gpio-max77650.c
12547 F: drivers/input/misc/max77650-onkey.c
12548 F: drivers/leds/leds-max77650.c
12549 F: drivers/mfd/max77650.c
12550 F: drivers/power/supply/max77650-charger.c
12551 F: drivers/regulator/max77650-regulator.c
12552 F: include/linux/mfd/max77650.h
12554 MAXIM MAX77714 PMIC MFD DRIVER
12555 M: Luca Ceresoli <luca@lucaceresoli.net>
12557 F: Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12558 F: drivers/mfd/max77714.c
12559 F: include/linux/mfd/max77714.h
12561 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12562 M: Javier Martinez Canillas <javier@dowhile0.org>
12563 L: linux-kernel@vger.kernel.org
12565 F: Documentation/devicetree/bindings/*/*max77802.yaml
12566 F: drivers/regulator/max77802-regulator.c
12567 F: include/dt-bindings/*/*max77802.h
12569 MAXIM MAX77976 BATTERY CHARGER
12570 M: Luca Ceresoli <luca@lucaceresoli.net>
12572 F: Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12573 F: drivers/power/supply/max77976_charger.c
12575 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12576 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12577 L: linux-pm@vger.kernel.org
12579 B: mailto:linux-samsung-soc@vger.kernel.org
12580 F: Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12581 F: Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12582 F: drivers/power/supply/max14577_charger.c
12583 F: drivers/power/supply/max77693_charger.c
12585 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12586 M: Chanwoo Choi <cw00.choi@samsung.com>
12587 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12588 L: linux-kernel@vger.kernel.org
12590 B: mailto:linux-samsung-soc@vger.kernel.org
12591 F: Documentation/devicetree/bindings/*/maxim,max14577.yaml
12592 F: Documentation/devicetree/bindings/*/maxim,max77686.yaml
12593 F: Documentation/devicetree/bindings/*/maxim,max77693.yaml
12594 F: Documentation/devicetree/bindings/*/maxim,max77843.yaml
12595 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
12596 F: drivers/*/*max77843.c
12597 F: drivers/*/max14577*.c
12598 F: drivers/*/max77686*.c
12599 F: drivers/*/max77693*.c
12600 F: drivers/clk/clk-max77686.c
12601 F: drivers/extcon/extcon-max14577.c
12602 F: drivers/extcon/extcon-max77693.c
12603 F: drivers/rtc/rtc-max77686.c
12604 F: include/linux/mfd/max14577*.h
12605 F: include/linux/mfd/max77686*.h
12606 F: include/linux/mfd/max77693*.h
12608 MAXIRADIO FM RADIO RECEIVER DRIVER
12609 M: Hans Verkuil <hverkuil@xs4all.nl>
12610 L: linux-media@vger.kernel.org
12612 W: https://linuxtv.org
12613 T: git git://linuxtv.org/media_tree.git
12614 F: drivers/media/radio/radio-maxiradio*
12616 MAXLINEAR ETHERNET PHY DRIVER
12617 M: Xu Liang <lxu@maxlinear.com>
12618 L: netdev@vger.kernel.org
12620 F: drivers/net/phy/mxl-gpy.c
12622 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12623 R: Yasushi SHOJI <yashi@spacecubics.com>
12624 L: linux-can@vger.kernel.org
12626 F: drivers/net/can/usb/mcba_usb.c
12628 MCAN MMIO DEVICE DRIVER
12629 M: Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12630 L: linux-can@vger.kernel.org
12632 F: Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12633 F: drivers/net/can/m_can/m_can.c
12634 F: drivers/net/can/m_can/m_can.h
12635 F: drivers/net/can/m_can/m_can_platform.c
12637 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12638 M: Rishi Gupta <gupt21@gmail.com>
12639 L: linux-i2c@vger.kernel.org
12640 L: linux-input@vger.kernel.org
12642 F: drivers/hid/hid-mcp2221.c
12644 MCP251XFD SPI-CAN NETWORK DRIVER
12645 M: Marc Kleine-Budde <mkl@pengutronix.de>
12646 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12647 R: Thomas Kopp <thomas.kopp@microchip.com>
12648 L: linux-can@vger.kernel.org
12650 F: Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12651 F: drivers/net/can/spi/mcp251xfd/
12653 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12654 M: Peter Rosin <peda@axentia.se>
12655 L: linux-iio@vger.kernel.org
12657 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12658 F: drivers/iio/potentiometer/mcp4018.c
12659 F: drivers/iio/potentiometer/mcp4531.c
12661 MCR20A IEEE-802.15.4 RADIO DRIVER
12662 M: Xue Liu <liuxuenetmail@gmail.com>
12663 L: linux-wpan@vger.kernel.org
12665 W: https://github.com/xueliu/mcr20a-linux
12666 F: Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12667 F: drivers/net/ieee802154/mcr20a.c
12668 F: drivers/net/ieee802154/mcr20a.h
12670 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12671 M: William Breathitt Gray <william.gray@linaro.org>
12672 L: linux-iio@vger.kernel.org
12674 F: drivers/iio/dac/cio-dac.c
12676 MEDIA CONTROLLER FRAMEWORK
12677 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12678 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12679 L: linux-media@vger.kernel.org
12681 W: https://www.linuxtv.org
12682 T: git git://linuxtv.org/media_tree.git
12683 F: drivers/media/mc/
12684 F: include/media/media-*.h
12685 F: include/uapi/linux/media.h
12687 MEDIA DRIVER FOR FREESCALE IMX PXP
12688 M: Philipp Zabel <p.zabel@pengutronix.de>
12689 L: linux-media@vger.kernel.org
12691 T: git git://linuxtv.org/media_tree.git
12692 F: drivers/media/platform/nxp/imx-pxp.[ch]
12694 MEDIA DRIVERS FOR ASCOT2E
12695 M: Sergey Kozlov <serjk@netup.ru>
12696 M: Abylay Ospan <aospan@netup.ru>
12697 L: linux-media@vger.kernel.org
12699 W: https://linuxtv.org
12700 W: http://netup.tv/
12701 T: git git://linuxtv.org/media_tree.git
12702 F: drivers/media/dvb-frontends/ascot2e*
12704 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12705 M: Jasmin Jessich <jasmin@anw.at>
12706 L: linux-media@vger.kernel.org
12708 W: https://linuxtv.org
12709 T: git git://linuxtv.org/media_tree.git
12710 F: drivers/media/dvb-frontends/cxd2099*
12712 MEDIA DRIVERS FOR CXD2841ER
12713 M: Sergey Kozlov <serjk@netup.ru>
12714 M: Abylay Ospan <aospan@netup.ru>
12715 L: linux-media@vger.kernel.org
12717 W: https://linuxtv.org
12718 W: http://netup.tv/
12719 T: git git://linuxtv.org/media_tree.git
12720 F: drivers/media/dvb-frontends/cxd2841er*
12722 MEDIA DRIVERS FOR CXD2880
12723 M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12724 L: linux-media@vger.kernel.org
12726 W: http://linuxtv.org/
12727 T: git git://linuxtv.org/media_tree.git
12728 F: drivers/media/dvb-frontends/cxd2880/*
12729 F: drivers/media/spi/cxd2880*
12731 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12732 L: linux-media@vger.kernel.org
12734 W: https://linuxtv.org
12735 T: git git://linuxtv.org/media_tree.git
12736 F: drivers/media/pci/ddbridge/*
12738 MEDIA DRIVERS FOR FREESCALE IMX
12739 M: Steve Longerbeam <slongerbeam@gmail.com>
12740 M: Philipp Zabel <p.zabel@pengutronix.de>
12741 L: linux-media@vger.kernel.org
12743 T: git git://linuxtv.org/media_tree.git
12744 F: Documentation/admin-guide/media/imx.rst
12745 F: Documentation/devicetree/bindings/media/imx.txt
12746 F: drivers/staging/media/imx/
12747 F: include/linux/imx-media.h
12748 F: include/media/imx.h
12750 MEDIA DRIVERS FOR FREESCALE IMX7
12751 M: Rui Miguel Silva <rmfrfs@gmail.com>
12752 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12753 L: linux-media@vger.kernel.org
12755 T: git git://linuxtv.org/media_tree.git
12756 F: Documentation/admin-guide/media/imx7.rst
12757 F: Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12758 F: Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12759 F: drivers/media/platform/nxp/imx-mipi-csis.c
12760 F: drivers/media/platform/nxp/imx7-media-csi.c
12762 MEDIA DRIVERS FOR HELENE
12763 M: Abylay Ospan <aospan@netup.ru>
12764 L: linux-media@vger.kernel.org
12766 W: https://linuxtv.org
12767 W: http://netup.tv/
12768 T: git git://linuxtv.org/media_tree.git
12769 F: drivers/media/dvb-frontends/helene*
12771 MEDIA DRIVERS FOR HORUS3A
12772 M: Sergey Kozlov <serjk@netup.ru>
12773 M: Abylay Ospan <aospan@netup.ru>
12774 L: linux-media@vger.kernel.org
12776 W: https://linuxtv.org
12777 W: http://netup.tv/
12778 T: git git://linuxtv.org/media_tree.git
12779 F: drivers/media/dvb-frontends/horus3a*
12781 MEDIA DRIVERS FOR LNBH25
12782 M: Sergey Kozlov <serjk@netup.ru>
12783 M: Abylay Ospan <aospan@netup.ru>
12784 L: linux-media@vger.kernel.org
12786 W: https://linuxtv.org
12787 W: http://netup.tv/
12788 T: git git://linuxtv.org/media_tree.git
12789 F: drivers/media/dvb-frontends/lnbh25*
12791 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12792 L: linux-media@vger.kernel.org
12794 W: https://linuxtv.org
12795 T: git git://linuxtv.org/media_tree.git
12796 F: drivers/media/dvb-frontends/mxl5xx*
12798 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12799 M: Sergey Kozlov <serjk@netup.ru>
12800 M: Abylay Ospan <aospan@netup.ru>
12801 L: linux-media@vger.kernel.org
12803 W: https://linuxtv.org
12804 W: http://netup.tv/
12805 T: git git://linuxtv.org/media_tree.git
12806 F: drivers/media/pci/netup_unidvb/*
12808 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12809 M: Dmitry Osipenko <digetx@gmail.com>
12810 L: linux-media@vger.kernel.org
12811 L: linux-tegra@vger.kernel.org
12813 T: git git://linuxtv.org/media_tree.git
12814 F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12815 F: drivers/media/platform/nvidia/tegra-vde/
12817 MEDIA DRIVERS FOR RENESAS - CEU
12818 M: Jacopo Mondi <jacopo@jmondi.org>
12819 L: linux-media@vger.kernel.org
12820 L: linux-renesas-soc@vger.kernel.org
12822 T: git git://linuxtv.org/media_tree.git
12823 F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
12824 F: drivers/media/platform/renesas/renesas-ceu.c
12825 F: include/media/drv-intf/renesas-ceu.h
12827 MEDIA DRIVERS FOR RENESAS - DRIF
12828 M: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12829 L: linux-media@vger.kernel.org
12830 L: linux-renesas-soc@vger.kernel.org
12832 T: git git://linuxtv.org/media_tree.git
12833 F: Documentation/devicetree/bindings/media/renesas,drif.yaml
12834 F: drivers/media/platform/renesas/rcar_drif.c
12836 MEDIA DRIVERS FOR RENESAS - FCP
12837 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12838 L: linux-media@vger.kernel.org
12839 L: linux-renesas-soc@vger.kernel.org
12841 T: git git://linuxtv.org/media_tree.git
12842 F: Documentation/devicetree/bindings/media/renesas,fcp.yaml
12843 F: drivers/media/platform/renesas/rcar-fcp.c
12844 F: include/media/rcar-fcp.h
12846 MEDIA DRIVERS FOR RENESAS - FDP1
12847 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12848 L: linux-media@vger.kernel.org
12849 L: linux-renesas-soc@vger.kernel.org
12851 T: git git://linuxtv.org/media_tree.git
12852 F: Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12853 F: drivers/media/platform/renesas/rcar_fdp1.c
12855 MEDIA DRIVERS FOR RENESAS - VIN
12856 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
12857 L: linux-media@vger.kernel.org
12858 L: linux-renesas-soc@vger.kernel.org
12860 T: git git://linuxtv.org/media_tree.git
12861 F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
12862 F: Documentation/devicetree/bindings/media/renesas,isp.yaml
12863 F: Documentation/devicetree/bindings/media/renesas,vin.yaml
12864 F: drivers/media/platform/renesas/rcar-isp.c
12865 F: drivers/media/platform/renesas/rcar-vin/
12867 MEDIA DRIVERS FOR RENESAS - VSP1
12868 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12869 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12870 L: linux-media@vger.kernel.org
12871 L: linux-renesas-soc@vger.kernel.org
12873 T: git git://linuxtv.org/media_tree.git
12874 F: Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12875 F: drivers/media/platform/renesas/vsp1/
12877 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12878 L: linux-media@vger.kernel.org
12880 W: https://linuxtv.org
12881 T: git git://linuxtv.org/media_tree.git
12882 F: drivers/media/dvb-frontends/stv0910*
12884 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12885 L: linux-media@vger.kernel.org
12887 W: https://linuxtv.org
12888 T: git git://linuxtv.org/media_tree.git
12889 F: drivers/media/dvb-frontends/stv6111*
12891 MEDIA DRIVERS FOR STM32 - DCMI
12892 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
12893 L: linux-media@vger.kernel.org
12895 T: git git://linuxtv.org/media_tree.git
12896 F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12897 F: drivers/media/platform/st/stm32/stm32-dcmi.c
12899 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12900 M: Mauro Carvalho Chehab <mchehab@kernel.org>
12901 L: linux-media@vger.kernel.org
12903 W: https://linuxtv.org
12904 Q: http://patchwork.kernel.org/project/linux-media/list/
12905 T: git git://linuxtv.org/media_tree.git
12906 F: Documentation/admin-guide/media/
12907 F: Documentation/devicetree/bindings/media/
12908 F: Documentation/driver-api/media/
12909 F: Documentation/userspace-api/media/
12911 F: drivers/staging/media/
12912 F: include/dt-bindings/media/
12913 F: include/linux/platform_data/media/
12915 F: include/uapi/linux/dvb/
12916 F: include/uapi/linux/ivtv*
12917 F: include/uapi/linux/media.h
12918 F: include/uapi/linux/meye.h
12919 F: include/uapi/linux/uvcvideo.h
12920 F: include/uapi/linux/v4l2-*
12921 F: include/uapi/linux/videodev2.h
12923 MEDIATEK BLUETOOTH DRIVER
12924 M: Sean Wang <sean.wang@mediatek.com>
12925 L: linux-bluetooth@vger.kernel.org
12926 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12928 F: Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12929 F: drivers/bluetooth/btmtkuart.c
12931 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12932 M: Sean Wang <sean.wang@mediatek.com>
12933 L: linux-pm@vger.kernel.org
12935 F: Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12936 F: drivers/power/reset/mt6323-poweroff.c
12938 MEDIATEK CIR DRIVER
12939 M: Sean Wang <sean.wang@mediatek.com>
12941 F: drivers/media/rc/mtk-cir.c
12943 MEDIATEK DMA DRIVER
12944 M: Sean Wang <sean.wang@mediatek.com>
12945 L: dmaengine@vger.kernel.org
12946 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12947 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12949 F: Documentation/devicetree/bindings/dma/mtk-*
12950 F: drivers/dma/mediatek/
12952 MEDIATEK ETHERNET DRIVER
12953 M: Felix Fietkau <nbd@nbd.name>
12954 M: John Crispin <john@phrozen.org>
12955 M: Sean Wang <sean.wang@mediatek.com>
12956 M: Mark Lee <Mark-MC.Lee@mediatek.com>
12957 M: Lorenzo Bianconi <lorenzo@kernel.org>
12958 L: netdev@vger.kernel.org
12960 F: drivers/net/ethernet/mediatek/
12962 MEDIATEK I2C CONTROLLER DRIVER
12963 M: Qii Wang <qii.wang@mediatek.com>
12964 L: linux-i2c@vger.kernel.org
12966 F: Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12967 F: drivers/i2c/busses/i2c-mt65xx.c
12969 MEDIATEK IOMMU DRIVER
12970 M: Yong Wu <yong.wu@mediatek.com>
12971 L: iommu@lists.linux.dev
12972 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12974 F: Documentation/devicetree/bindings/iommu/mediatek*
12975 F: drivers/iommu/mtk_iommu*
12976 F: include/dt-bindings/memory/mt*-port.h
12978 MEDIATEK JPEG DRIVER
12979 M: Bin Liu <bin.liu@mediatek.com>
12981 F: Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12982 F: drivers/media/platform/mediatek/jpeg/
12984 MEDIATEK KEYPAD DRIVER
12985 M: Mattijs Korpershoek <mkorpershoek@baylibre.com>
12987 F: Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
12988 F: drivers/input/keyboard/mt6779-keypad.c
12990 MEDIATEK MDP DRIVER
12991 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12992 M: Houlong Wei <houlong.wei@mediatek.com>
12993 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12995 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
12996 F: drivers/media/platform/mediatek/mdp/
12997 F: drivers/media/platform/mediatek/vpu/
12999 MEDIATEK MEDIA DRIVER
13000 M: Tiffany Lin <tiffany.lin@mediatek.com>
13001 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13002 M: Yunfei Dong <yunfei.dong@mediatek.com>
13004 F: Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13005 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
13006 F: drivers/media/platform/mediatek/vcodec/
13007 F: drivers/media/platform/mediatek/vpu/
13009 MEDIATEK MMC/SD/SDIO DRIVER
13010 M: Chaotian Jing <chaotian.jing@mediatek.com>
13012 F: Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13013 F: drivers/mmc/host/mtk-sd.c
13015 MEDIATEK MT76 WIRELESS LAN DRIVER
13016 M: Felix Fietkau <nbd@nbd.name>
13017 M: Lorenzo Bianconi <lorenzo@kernel.org>
13018 M: Ryder Lee <ryder.lee@mediatek.com>
13019 R: Shayne Chen <shayne.chen@mediatek.com>
13020 R: Sean Wang <sean.wang@mediatek.com>
13021 L: linux-wireless@vger.kernel.org
13023 F: Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13024 F: drivers/net/wireless/mediatek/mt76/
13026 MEDIATEK MT7601U WIRELESS LAN DRIVER
13027 M: Jakub Kicinski <kuba@kernel.org>
13028 L: linux-wireless@vger.kernel.org
13030 F: drivers/net/wireless/mediatek/mt7601u/
13032 MEDIATEK MT7621 CLOCK DRIVER
13033 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
13035 F: Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13036 F: drivers/clk/ralink/clk-mt7621.c
13038 MEDIATEK MT7621/28/88 I2C DRIVER
13039 M: Stefan Roese <sr@denx.de>
13040 L: linux-i2c@vger.kernel.org
13042 F: Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13043 F: drivers/i2c/busses/i2c-mt7621.c
13045 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13046 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
13048 F: Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13049 F: drivers/pci/controller/pcie-mt7621.c
13051 MEDIATEK MT7621 PHY PCI DRIVER
13052 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
13054 F: Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13055 F: drivers/phy/ralink/phy-mt7621-pci.c
13057 MEDIATEK NAND CONTROLLER DRIVER
13058 L: linux-mtd@lists.infradead.org
13060 F: Documentation/devicetree/bindings/mtd/mtk-nand.txt
13061 F: drivers/mtd/nand/raw/mtk_*
13063 MEDIATEK PMIC LED DRIVER
13064 M: Sean Wang <sean.wang@mediatek.com>
13066 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
13067 F: drivers/leds/leds-mt6323.c
13069 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13070 M: Sean Wang <sean.wang@mediatek.com>
13072 F: drivers/char/hw_random/mtk-rng.c
13074 MEDIATEK SMI DRIVER
13075 M: Yong Wu <yong.wu@mediatek.com>
13076 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13078 F: Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13079 F: drivers/memory/mtk-smi.c
13080 F: include/soc/mediatek/smi.h
13082 MEDIATEK SWITCH DRIVER
13083 M: Sean Wang <sean.wang@mediatek.com>
13084 M: Landen Chao <Landen.Chao@mediatek.com>
13085 M: DENG Qingfang <dqfext@gmail.com>
13086 L: netdev@vger.kernel.org
13088 F: drivers/net/dsa/mt7530.*
13089 F: net/dsa/tag_mtk.c
13091 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13092 M: Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13093 M: Intel Corporation <linuxwwan@intel.com>
13094 R: Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13095 R: Liu Haijun <haijun.liu@mediatek.com>
13096 R: M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13097 R: Ricardo Martinez <ricardo.martinez@linux.intel.com>
13098 L: netdev@vger.kernel.org
13100 F: drivers/net/wwan/t7xx/
13102 MEDIATEK USB3 DRD IP DRIVER
13103 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
13104 L: linux-usb@vger.kernel.org
13105 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13106 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13108 F: Documentation/devicetree/bindings/usb/mediatek,*
13109 F: drivers/usb/host/xhci-mtk*
13110 F: drivers/usb/mtu3/
13112 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13113 M: Peter Senna Tschudin <peter.senna@gmail.com>
13114 M: Martin Donnelly <martin.donnelly@ge.com>
13115 M: Martyn Welch <martyn.welch@collabora.co.uk>
13117 F: Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13118 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13120 MEGARAID SCSI/SAS DRIVERS
13121 M: Kashyap Desai <kashyap.desai@broadcom.com>
13122 M: Sumit Saxena <sumit.saxena@broadcom.com>
13123 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13124 L: megaraidlinux.pdl@broadcom.com
13125 L: linux-scsi@vger.kernel.org
13127 W: http://www.avagotech.com/support/
13128 F: Documentation/scsi/megaraid.rst
13129 F: drivers/scsi/megaraid.*
13130 F: drivers/scsi/megaraid/
13132 MELEXIS MLX90614 DRIVER
13133 M: Crt Mori <cmo@melexis.com>
13134 L: linux-iio@vger.kernel.org
13136 W: http://www.melexis.com
13137 F: drivers/iio/temperature/mlx90614.c
13139 MELEXIS MLX90632 DRIVER
13140 M: Crt Mori <cmo@melexis.com>
13141 L: linux-iio@vger.kernel.org
13143 W: http://www.melexis.com
13144 F: drivers/iio/temperature/mlx90632.c
13146 MELFAS MIP4 TOUCHSCREEN DRIVER
13147 M: Sangwon Jee <jeesw@melfas.com>
13149 W: http://www.melfas.com
13150 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13151 F: drivers/input/touchscreen/melfas_mip4.c
13153 MELLANOX BLUEFIELD I2C DRIVER
13154 M: Khalil Blaiech <kblaiech@nvidia.com>
13155 M: Asmaa Mnebhi <asmaa@nvidia.com>
13156 L: linux-i2c@vger.kernel.org
13158 F: drivers/i2c/busses/i2c-mlxbf.c
13160 MELLANOX ETHERNET DRIVER (mlx4_en)
13161 M: Tariq Toukan <tariqt@nvidia.com>
13162 L: netdev@vger.kernel.org
13164 W: http://www.mellanox.com
13165 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13166 F: drivers/net/ethernet/mellanox/mlx4/en_*
13168 MELLANOX ETHERNET DRIVER (mlx5e)
13169 M: Saeed Mahameed <saeedm@nvidia.com>
13170 L: netdev@vger.kernel.org
13172 W: http://www.mellanox.com
13173 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13174 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
13176 MELLANOX ETHERNET INNOVA DRIVERS
13177 R: Boris Pismenny <borisp@nvidia.com>
13178 L: netdev@vger.kernel.org
13180 W: http://www.mellanox.com
13181 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13182 F: drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13183 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13184 F: include/linux/mlx5/mlx5_ifc_fpga.h
13186 MELLANOX ETHERNET SWITCH DRIVERS
13187 M: Ido Schimmel <idosch@nvidia.com>
13188 M: Petr Machata <petrm@nvidia.com>
13189 L: netdev@vger.kernel.org
13191 W: http://www.mellanox.com
13192 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13193 F: drivers/net/ethernet/mellanox/mlxsw/
13194 F: tools/testing/selftests/drivers/net/mlxsw/
13196 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13197 M: mlxsw@nvidia.com
13198 L: netdev@vger.kernel.org
13200 W: http://www.mellanox.com
13201 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13202 F: drivers/net/ethernet/mellanox/mlxfw/
13204 MELLANOX HARDWARE PLATFORM SUPPORT
13205 M: Hans de Goede <hdegoede@redhat.com>
13206 M: Mark Gross <markgross@kernel.org>
13207 M: Vadim Pasternak <vadimp@nvidia.com>
13208 L: platform-driver-x86@vger.kernel.org
13210 F: Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13211 F: drivers/platform/mellanox/
13212 F: include/linux/platform_data/mlxreg.h
13214 MELLANOX MLX4 core VPI driver
13215 M: Tariq Toukan <tariqt@nvidia.com>
13216 L: netdev@vger.kernel.org
13217 L: linux-rdma@vger.kernel.org
13219 W: http://www.mellanox.com
13220 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13221 F: drivers/net/ethernet/mellanox/mlx4/
13222 F: include/linux/mlx4/
13224 MELLANOX MLX4 IB driver
13225 M: Yishai Hadas <yishaih@nvidia.com>
13226 L: linux-rdma@vger.kernel.org
13228 W: http://www.mellanox.com
13229 Q: http://patchwork.kernel.org/project/linux-rdma/list/
13230 F: drivers/infiniband/hw/mlx4/
13231 F: include/linux/mlx4/
13232 F: include/uapi/rdma/mlx4-abi.h
13234 MELLANOX MLX5 core VPI driver
13235 M: Saeed Mahameed <saeedm@nvidia.com>
13236 M: Leon Romanovsky <leonro@nvidia.com>
13237 L: netdev@vger.kernel.org
13238 L: linux-rdma@vger.kernel.org
13240 W: http://www.mellanox.com
13241 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13242 F: Documentation/networking/device_drivers/ethernet/mellanox/
13243 F: drivers/net/ethernet/mellanox/mlx5/core/
13244 F: include/linux/mlx5/
13246 MELLANOX MLX5 IB driver
13247 M: Leon Romanovsky <leonro@nvidia.com>
13248 L: linux-rdma@vger.kernel.org
13250 W: http://www.mellanox.com
13251 Q: http://patchwork.kernel.org/project/linux-rdma/list/
13252 F: drivers/infiniband/hw/mlx5/
13253 F: include/linux/mlx5/
13254 F: include/uapi/rdma/mlx5-abi.h
13256 MELLANOX MLXCPLD I2C AND MUX DRIVER
13257 M: Vadim Pasternak <vadimp@nvidia.com>
13258 M: Michael Shych <michaelsh@nvidia.com>
13259 L: linux-i2c@vger.kernel.org
13261 F: Documentation/i2c/busses/i2c-mlxcpld.rst
13262 F: drivers/i2c/busses/i2c-mlxcpld.c
13263 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
13265 MELLANOX MLXCPLD LED DRIVER
13266 M: Vadim Pasternak <vadimp@nvidia.com>
13267 L: linux-leds@vger.kernel.org
13269 F: Documentation/leds/leds-mlxcpld.rst
13270 F: drivers/leds/leds-mlxcpld.c
13271 F: drivers/leds/leds-mlxreg.c
13273 MELLANOX PLATFORM DRIVER
13274 M: Vadim Pasternak <vadimp@nvidia.com>
13275 L: platform-driver-x86@vger.kernel.org
13277 F: drivers/platform/x86/mlx-platform.c
13280 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13281 M: "Paul E. McKenney" <paulmck@kernel.org>
13282 L: linux-kernel@vger.kernel.org
13284 F: arch/powerpc/include/asm/membarrier.h
13285 F: include/uapi/linux/membarrier.h
13286 F: kernel/sched/membarrier.c
13289 M: Mike Rapoport <rppt@kernel.org>
13290 L: linux-mm@kvack.org
13292 F: Documentation/core-api/boot-time-mm.rst
13293 F: include/linux/memblock.h
13295 F: tools/testing/memblock/
13297 MEMORY CONTROLLER DRIVERS
13298 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13299 L: linux-kernel@vger.kernel.org
13301 B: mailto:krzysztof.kozlowski@linaro.org
13302 T: git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13303 F: Documentation/devicetree/bindings/memory-controllers/
13305 F: include/dt-bindings/memory/
13308 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13309 M: Dmitry Osipenko <digetx@gmail.com>
13310 L: linux-pm@vger.kernel.org
13311 L: linux-tegra@vger.kernel.org
13312 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13314 F: drivers/devfreq/tegra30-devfreq.c
13317 M: Andrew Morton <akpm@linux-foundation.org>
13318 L: linux-mm@kvack.org
13320 W: http://www.linux-mm.org
13321 T: git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13322 T: quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13323 F: include/linux/gfp.h
13324 F: include/linux/gfp_types.h
13325 F: include/linux/memory_hotplug.h
13326 F: include/linux/mm.h
13327 F: include/linux/mmzone.h
13328 F: include/linux/pagewalk.h
13330 F: tools/testing/selftests/vm/
13333 M: Andrew Morton <akpm@linux-foundation.org>
13334 R: Uladzislau Rezki <urezki@gmail.com>
13335 R: Christoph Hellwig <hch@infradead.org>
13336 L: linux-mm@kvack.org
13338 W: http://www.linux-mm.org
13339 T: git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13340 F: include/linux/vmalloc.h
13344 M: David Hildenbrand <david@redhat.com>
13345 M: Oscar Salvador <osalvador@suse.de>
13346 L: linux-mm@kvack.org
13348 F: Documentation/admin-guide/mm/memory-hotplug.rst
13349 F: Documentation/core-api/memory-hotplug.rst
13350 F: drivers/base/memory.c
13351 F: include/linux/memory_hotplug.h
13352 F: mm/memory_hotplug.c
13353 F: tools/testing/selftests/memory-hotplug/
13355 MEMORY TECHNOLOGY DEVICES (MTD)
13356 M: Miquel Raynal <miquel.raynal@bootlin.com>
13357 M: Richard Weinberger <richard@nod.at>
13358 M: Vignesh Raghavendra <vigneshr@ti.com>
13359 L: linux-mtd@lists.infradead.org
13361 W: http://www.linux-mtd.infradead.org/
13362 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
13363 C: irc://irc.oftc.net/mtd
13364 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13365 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13366 F: Documentation/devicetree/bindings/mtd/
13368 F: include/linux/mtd/
13369 F: include/uapi/mtd/
13371 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13372 M: Dmitry Rokosov <ddrokosov@sberdevices.ru>
13373 L: linux-iio@vger.kernel.org
13375 F: Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13376 F: drivers/iio/accel/msa311.c
13378 MEN A21 WATCHDOG DRIVER
13379 M: Johannes Thumshirn <morbidrsa@gmail.com>
13380 L: linux-watchdog@vger.kernel.org
13382 F: drivers/watchdog/mena21_wdt.c
13384 MEN CHAMELEON BUS (mcb)
13385 M: Johannes Thumshirn <morbidrsa@gmail.com>
13387 F: Documentation/driver-api/men-chameleon-bus.rst
13389 F: include/linux/mcb.h
13391 MEN F21BMC (Board Management Controller)
13392 M: Andreas Werner <andreas.werner@men.de>
13394 F: Documentation/hwmon/menf21bmc.rst
13395 F: drivers/hwmon/menf21bmc_hwmon.c
13396 F: drivers/leds/leds-menf21bmc.c
13397 F: drivers/mfd/menf21bmc.c
13398 F: drivers/watchdog/menf21bmc_wdt.c
13400 MEN Z069 WATCHDOG DRIVER
13401 M: Johannes Thumshirn <jth@kernel.org>
13402 L: linux-watchdog@vger.kernel.org
13404 F: drivers/watchdog/menz69_wdt.c
13406 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13407 M: Neil Armstrong <neil.armstrong@linaro.org>
13408 L: linux-media@vger.kernel.org
13409 L: linux-amlogic@lists.infradead.org
13411 W: http://linux-meson.com/
13412 T: git git://linuxtv.org/media_tree.git
13413 F: Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13414 F: drivers/media/cec/platform/meson/ao-cec-g12a.c
13415 F: drivers/media/cec/platform/meson/ao-cec.c
13417 MESON GE2D DRIVER FOR AMLOGIC SOCS
13418 M: Neil Armstrong <neil.armstrong@linaro.org>
13419 L: linux-media@vger.kernel.org
13420 L: linux-amlogic@lists.infradead.org
13422 T: git git://linuxtv.org/media_tree.git
13423 F: Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13424 F: drivers/media/platform/amlogic/meson-ge2d/
13426 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13427 M: Liang Yang <liang.yang@amlogic.com>
13428 L: linux-mtd@lists.infradead.org
13430 F: Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13431 F: drivers/mtd/nand/raw/meson_*
13433 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13434 M: Neil Armstrong <neil.armstrong@linaro.org>
13435 L: linux-media@vger.kernel.org
13436 L: linux-amlogic@lists.infradead.org
13438 T: git git://linuxtv.org/media_tree.git
13439 F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13440 F: drivers/staging/media/meson/vdec/
13442 METHODE UDPU SUPPORT
13443 M: Vladimir Vid <vladimir.vid@sartura.hr>
13445 F: arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13448 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13449 L: mhi@lists.linux.dev
13450 L: linux-arm-msm@vger.kernel.org
13452 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13453 F: Documentation/ABI/stable/sysfs-bus-mhi
13454 F: Documentation/mhi/
13455 F: drivers/bus/mhi/
13456 F: include/linux/mhi.h
13458 MICROBLAZE ARCHITECTURE
13459 M: Michal Simek <monstr@monstr.eu>
13461 W: http://www.monstr.eu/fdt/
13462 T: git git://git.monstr.eu/linux-2.6-microblaze.git
13463 F: arch/microblaze/
13465 MICROCHIP AT91 DMA DRIVERS
13466 M: Ludovic Desroches <ludovic.desroches@microchip.com>
13467 M: Tudor Ambarus <tudor.ambarus@linaro.org>
13468 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13469 L: dmaengine@vger.kernel.org
13471 F: Documentation/devicetree/bindings/dma/atmel-dma.txt
13472 F: drivers/dma/at_hdmac.c
13473 F: drivers/dma/at_xdmac.c
13474 F: include/dt-bindings/dma/at91.h
13476 MICROCHIP AT91 SERIAL DRIVER
13477 M: Richard Genoud <richard.genoud@gmail.com>
13479 F: Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13480 F: drivers/tty/serial/atmel_serial.c
13481 F: drivers/tty/serial/atmel_serial.h
13483 MICROCHIP AT91 USART MFD DRIVER
13484 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
13485 L: linux-kernel@vger.kernel.org
13487 F: Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13488 F: drivers/mfd/at91-usart.c
13489 F: include/dt-bindings/mfd/at91-usart.h
13491 MICROCHIP AT91 USART SPI DRIVER
13492 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
13493 L: linux-spi@vger.kernel.org
13495 F: Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13496 F: drivers/spi/spi-at91-usart.c
13498 MICROCHIP AUDIO ASOC DRIVERS
13499 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13500 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13504 MICROCHIP CSI2DC DRIVER
13505 M: Eugen Hristev <eugen.hristev@microchip.com>
13506 L: linux-media@vger.kernel.org
13508 F: Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13509 F: drivers/media/platform/microchip/microchip-csi2dc.c
13511 MICROCHIP ECC DRIVER
13512 M: Tudor Ambarus <tudor.ambarus@linaro.org>
13513 L: linux-crypto@vger.kernel.org
13515 F: drivers/crypto/atmel-ecc.*
13517 MICROCHIP EIC DRIVER
13518 M: Claudiu Beznea <claudiu.beznea@microchip.com>
13519 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13521 F: drivers/irqchip/irq-mchp-eic.c
13523 MICROCHIP I2C DRIVER
13524 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13525 L: linux-i2c@vger.kernel.org
13527 F: drivers/i2c/busses/i2c-at91-*.c
13528 F: drivers/i2c/busses/i2c-at91.h
13530 MICROCHIP ISC DRIVER
13531 M: Eugen Hristev <eugen.hristev@microchip.com>
13532 L: linux-media@vger.kernel.org
13534 F: Documentation/devicetree/bindings/media/atmel,isc.yaml
13535 F: Documentation/devicetree/bindings/media/microchip,xisc.yaml
13536 F: drivers/staging/media/deprecated/atmel/atmel-isc*
13537 F: drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13538 F: drivers/media/platform/microchip/microchip-isc*
13539 F: drivers/media/platform/microchip/microchip-sama*-isc*
13540 F: include/linux/atmel-isc-media.h
13542 MICROCHIP ISI DRIVER
13543 M: Eugen Hristev <eugen.hristev@microchip.com>
13544 L: linux-media@vger.kernel.org
13546 F: drivers/media/platform/atmel/atmel-isi.c
13547 F: drivers/media/platform/atmel/atmel-isi.h
13549 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13550 M: Woojung Huh <woojung.huh@microchip.com>
13551 M: UNGLinuxDriver@microchip.com
13552 L: netdev@vger.kernel.org
13554 F: Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13555 F: Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13556 F: drivers/net/dsa/microchip/*
13557 F: include/linux/platform_data/microchip-ksz.h
13558 F: net/dsa/tag_ksz.c
13560 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13561 M: Arun Ramadoss <arun.ramadoss@microchip.com>
13562 R: UNGLinuxDriver@microchip.com
13563 L: netdev@vger.kernel.org
13565 F: drivers/net/phy/microchip_t1.c
13567 MICROCHIP LAN743X ETHERNET DRIVER
13568 M: Bryan Whitehead <bryan.whitehead@microchip.com>
13569 M: UNGLinuxDriver@microchip.com
13570 L: netdev@vger.kernel.org
13572 F: drivers/net/ethernet/microchip/lan743x_*
13574 MICROCHIP LAN966X ETHERNET DRIVER
13575 M: Horatiu Vultur <horatiu.vultur@microchip.com>
13576 M: UNGLinuxDriver@microchip.com
13577 L: netdev@vger.kernel.org
13579 F: drivers/net/ethernet/microchip/lan966x/*
13581 MICROCHIP LCDFB DRIVER
13582 M: Nicolas Ferre <nicolas.ferre@microchip.com>
13583 L: linux-fbdev@vger.kernel.org
13585 F: drivers/video/fbdev/atmel_lcdfb.c
13586 F: include/video/atmel_lcdc.h
13588 MICROCHIP MCP16502 PMIC DRIVER
13589 M: Claudiu Beznea <claudiu.beznea@microchip.com>
13590 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13592 F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13593 F: drivers/regulator/mcp16502.c
13595 MICROCHIP MCP3911 ADC DRIVER
13596 M: Marcus Folkesson <marcus.folkesson@gmail.com>
13597 M: Kent Gustavsson <kent@minoris.se>
13598 L: linux-iio@vger.kernel.org
13600 F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13601 F: drivers/iio/adc/mcp3911.c
13603 MICROCHIP MMC/SD/SDIO MCI DRIVER
13604 M: Ludovic Desroches <ludovic.desroches@microchip.com>
13606 F: drivers/mmc/host/atmel-mci.c
13608 MICROCHIP NAND DRIVER
13609 M: Tudor Ambarus <tudor.ambarus@linaro.org>
13610 L: linux-mtd@lists.infradead.org
13612 F: Documentation/devicetree/bindings/mtd/atmel-nand.txt
13613 F: drivers/mtd/nand/raw/atmel/*
13615 MICROCHIP PCI1XXXX GP DRIVER
13616 M: Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13617 L: linux-gpio@vger.kernel.org
13619 F: drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13620 F: drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13621 F: drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13623 MICROCHIP OTPC DRIVER
13624 M: Claudiu Beznea <claudiu.beznea@microchip.com>
13625 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13627 F: Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13628 F: drivers/nvmem/microchip-otpc.c
13629 F: include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13631 MICROCHIP PCI1XXXX I2C DRIVER
13632 M: Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13633 M: Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13634 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13635 L: linux-i2c@vger.kernel.org
13637 F: drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13639 MICROCHIP PWM DRIVER
13640 M: Claudiu Beznea <claudiu.beznea@microchip.com>
13641 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13642 L: linux-pwm@vger.kernel.org
13644 F: Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13645 F: drivers/pwm/pwm-atmel.c
13647 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13648 M: Eugen Hristev <eugen.hristev@microchip.com>
13649 L: linux-iio@vger.kernel.org
13651 F: Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13652 F: drivers/iio/adc/at91-sama5d2_adc.c
13653 F: include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13655 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13656 M: Claudiu Beznea <claudiu.beznea@microchip.com>
13658 F: drivers/power/reset/at91-sama5d2_shdwc.c
13660 MICROCHIP SPI DRIVER
13661 M: Tudor Ambarus <tudor.ambarus@linaro.org>
13663 F: drivers/spi/spi-atmel.*
13665 MICROCHIP SSC DRIVER
13666 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13667 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13669 F: drivers/misc/atmel-ssc.c
13670 F: include/linux/atmel-ssc.h
13672 MICROCHIP SOC DRIVERS
13673 M: Conor Dooley <conor@kernel.org>
13675 T: git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13676 F: drivers/soc/microchip/
13678 MICROCHIP USB251XB DRIVER
13679 M: Richard Leitner <richard.leitner@skidata.com>
13680 L: linux-usb@vger.kernel.org
13682 F: Documentation/devicetree/bindings/usb/usb251xb.yaml
13683 F: drivers/usb/misc/usb251xb.c
13685 MICROCHIP USBA UDC DRIVER
13686 M: Cristian Birsan <cristian.birsan@microchip.com>
13687 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13689 F: drivers/usb/gadget/udc/atmel_usba_udc.*
13691 MICROCHIP WILC1000 WIFI DRIVER
13692 M: Ajay Singh <ajay.kathat@microchip.com>
13693 M: Claudiu Beznea <claudiu.beznea@microchip.com>
13694 L: linux-wireless@vger.kernel.org
13696 F: drivers/net/wireless/microchip/wilc1000/
13698 MICROSEMI MIPS SOCS
13699 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
13700 M: UNGLinuxDriver@microchip.com
13701 L: linux-mips@vger.kernel.org
13703 F: Documentation/devicetree/bindings/mips/mscc.txt
13704 F: Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13705 F: Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13706 F: arch/mips/boot/dts/mscc/
13707 F: arch/mips/configs/generic/board-ocelot.config
13708 F: arch/mips/generic/board-ocelot.c
13710 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13711 M: Don Brace <don.brace@microchip.com>
13712 L: storagedev@microchip.com
13713 L: linux-scsi@vger.kernel.org
13715 F: Documentation/scsi/smartpqi.rst
13716 F: drivers/scsi/smartpqi/Kconfig
13717 F: drivers/scsi/smartpqi/Makefile
13718 F: drivers/scsi/smartpqi/smartpqi*.[ch]
13719 F: include/linux/cciss*.h
13720 F: include/uapi/linux/cciss*.h
13722 MICROSOFT MANA RDMA DRIVER
13723 M: Long Li <longli@microsoft.com>
13724 M: Ajay Sharma <sharmaajay@microsoft.com>
13725 L: linux-rdma@vger.kernel.org
13727 F: drivers/infiniband/hw/mana/
13728 F: include/net/mana
13729 F: include/uapi/rdma/mana-abi.h
13731 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13732 M: Maximilian Luz <luzmaximilian@gmail.com>
13733 L: platform-driver-x86@vger.kernel.org
13735 F: drivers/platform/surface/surface_aggregator_tabletsw.c
13737 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13738 M: Maximilian Luz <luzmaximilian@gmail.com>
13739 L: linux-pm@vger.kernel.org
13740 L: platform-driver-x86@vger.kernel.org
13742 F: drivers/power/supply/surface_battery.c
13743 F: drivers/power/supply/surface_charger.c
13745 MICROSOFT SURFACE DTX DRIVER
13746 M: Maximilian Luz <luzmaximilian@gmail.com>
13747 L: platform-driver-x86@vger.kernel.org
13749 F: Documentation/driver-api/surface_aggregator/clients/dtx.rst
13750 F: drivers/platform/surface/surface_dtx.c
13751 F: include/uapi/linux/surface_aggregator/dtx.h
13753 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13754 M: Maximilian Luz <luzmaximilian@gmail.com>
13755 L: platform-driver-x86@vger.kernel.org
13757 F: drivers/platform/surface/surface_gpe.c
13759 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13760 M: Hans de Goede <hdegoede@redhat.com>
13761 M: Mark Gross <markgross@kernel.org>
13762 M: Maximilian Luz <luzmaximilian@gmail.com>
13763 L: platform-driver-x86@vger.kernel.org
13765 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13766 F: drivers/platform/surface/
13768 MICROSOFT SURFACE HID TRANSPORT DRIVER
13769 M: Maximilian Luz <luzmaximilian@gmail.com>
13770 L: linux-input@vger.kernel.org
13771 L: platform-driver-x86@vger.kernel.org
13773 F: drivers/hid/surface-hid/
13775 MICROSOFT SURFACE HOT-PLUG DRIVER
13776 M: Maximilian Luz <luzmaximilian@gmail.com>
13777 L: platform-driver-x86@vger.kernel.org
13779 F: drivers/platform/surface/surface_hotplug.c
13781 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13782 M: Maximilian Luz <luzmaximilian@gmail.com>
13783 L: platform-driver-x86@vger.kernel.org
13785 F: drivers/platform/surface/surface_platform_profile.c
13787 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13788 M: Chen Yu <yu.c.chen@intel.com>
13789 L: platform-driver-x86@vger.kernel.org
13791 F: drivers/platform/surface/surfacepro3_button.c
13793 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13794 M: Maximilian Luz <luzmaximilian@gmail.com>
13795 L: platform-driver-x86@vger.kernel.org
13797 W: https://github.com/linux-surface/surface-aggregator-module
13798 C: irc://irc.libera.chat/linux-surface
13799 F: Documentation/driver-api/surface_aggregator/
13800 F: drivers/platform/surface/aggregator/
13801 F: drivers/platform/surface/surface_acpi_notify.c
13802 F: drivers/platform/surface/surface_aggregator_cdev.c
13803 F: drivers/platform/surface/surface_aggregator_registry.c
13804 F: include/linux/surface_acpi_notify.h
13805 F: include/linux/surface_aggregator/
13806 F: include/uapi/linux/surface_aggregator/
13808 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13809 M: Maximilian Luz <luzmaximilian@gmail.com>
13810 L: platform-driver-x86@vger.kernel.org
13812 F: drivers/platform/surface/surface_aggregator_hub.c
13814 MICROTEK X6 SCANNER
13815 M: Oliver Neukum <oliver@neukum.org>
13817 F: drivers/usb/image/microtek.*
13819 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13820 M: Luka Kovacic <luka.kovacic@sartura.hr>
13821 M: Luka Perkov <luka.perkov@sartura.hr>
13823 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13824 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13825 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13826 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13827 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13828 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13830 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13831 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13832 L: linux-media@vger.kernel.org
13834 F: Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13835 F: Documentation/driver-api/media/drivers/ccs/
13836 F: Documentation/userspace-api/media/drivers/ccs.rst
13837 F: drivers/media/i2c/ccs-pll.c
13838 F: drivers/media/i2c/ccs-pll.h
13839 F: drivers/media/i2c/ccs/
13840 F: include/uapi/linux/ccs.h
13841 F: include/uapi/linux/smiapp.h
13844 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13845 L: linux-mips@vger.kernel.org
13847 W: http://www.linux-mips.org/
13848 Q: https://patchwork.kernel.org/project/linux-mips/list/
13849 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13850 F: Documentation/devicetree/bindings/mips/
13851 F: Documentation/mips/
13853 F: drivers/platform/mips/
13854 F: include/dt-bindings/mips/
13856 MIPS BOSTON DEVELOPMENT BOARD
13857 M: Paul Burton <paulburton@kernel.org>
13858 L: linux-mips@vger.kernel.org
13860 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
13861 F: arch/mips/boot/dts/img/boston.dts
13862 F: arch/mips/configs/generic/board-boston.config
13863 F: drivers/clk/imgtec/clk-boston.c
13864 F: include/dt-bindings/clock/boston-clock.h
13867 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13868 M: Serge Semin <fancer.lancer@gmail.com>
13869 L: linux-mips@vger.kernel.org
13871 F: drivers/bus/mips_cdmm.c
13872 F: drivers/clocksource/mips-gic-timer.c
13873 F: drivers/cpuidle/cpuidle-cps.c
13874 F: drivers/irqchip/irq-mips-cpu.c
13875 F: drivers/irqchip/irq-mips-gic.c
13877 MIPS GENERIC PLATFORM
13878 M: Paul Burton <paulburton@kernel.org>
13879 L: linux-mips@vger.kernel.org
13881 F: Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13882 F: arch/mips/generic/
13883 F: arch/mips/tools/generic-board-config.sh
13885 MIPS RINT INSTRUCTION EMULATION
13886 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
13887 L: linux-mips@vger.kernel.org
13889 F: arch/mips/math-emu/dp_rint.c
13890 F: arch/mips/math-emu/sp_rint.c
13892 MIPS/LOONGSON1 ARCHITECTURE
13893 M: Keguang Zhang <keguang.zhang@gmail.com>
13894 L: linux-mips@vger.kernel.org
13896 F: arch/mips/include/asm/mach-loongson32/
13897 F: arch/mips/loongson32/
13898 F: drivers/*/*/*loongson1*
13899 F: drivers/*/*loongson1*
13901 MIPS/LOONGSON2EF ARCHITECTURE
13902 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
13903 L: linux-mips@vger.kernel.org
13905 F: arch/mips/include/asm/mach-loongson2ef/
13906 F: arch/mips/loongson2ef/
13907 F: drivers/cpufreq/loongson2_cpufreq.c
13909 MIPS/LOONGSON64 ARCHITECTURE
13910 M: Huacai Chen <chenhuacai@kernel.org>
13911 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
13912 L: linux-mips@vger.kernel.org
13914 F: arch/mips/include/asm/mach-loongson64/
13915 F: arch/mips/loongson64/
13916 F: drivers/irqchip/irq-loongson*
13917 F: drivers/platform/mips/cpu_hwmon.c
13919 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13920 M: Hans Verkuil <hverkuil@xs4all.nl>
13921 L: linux-media@vger.kernel.org
13923 W: https://linuxtv.org
13924 T: git git://linuxtv.org/media_tree.git
13925 F: drivers/media/radio/radio-miropcm20*
13928 R: Lubomir Rintel <lkundrak@v3.sk>
13929 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13931 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13932 F: arch/arm/boot/dts/mmp*
13933 F: arch/arm/mach-mmp/
13934 F: include/linux/soc/mmp/
13936 MMP USB PHY DRIVERS
13937 R: Lubomir Rintel <lkundrak@v3.sk>
13938 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13940 F: drivers/phy/marvell/phy-mmp3-usb.c
13941 F: drivers/phy/marvell/phy-pxa-usb.c
13943 MMU GATHER AND TLB INVALIDATION
13944 M: Will Deacon <will@kernel.org>
13945 M: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13946 M: Andrew Morton <akpm@linux-foundation.org>
13947 M: Nick Piggin <npiggin@gmail.com>
13948 M: Peter Zijlstra <peterz@infradead.org>
13949 L: linux-arch@vger.kernel.org
13950 L: linux-mm@kvack.org
13952 F: arch/*/include/asm/tlb.h
13953 F: include/asm-generic/tlb.h
13956 MN88472 MEDIA DRIVER
13957 M: Antti Palosaari <crope@iki.fi>
13958 L: linux-media@vger.kernel.org
13960 W: https://linuxtv.org
13961 W: http://palosaari.fi/linux/
13962 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13963 F: drivers/media/dvb-frontends/mn88472*
13965 MN88473 MEDIA DRIVER
13966 M: Antti Palosaari <crope@iki.fi>
13967 L: linux-media@vger.kernel.org
13969 W: https://linuxtv.org
13970 W: http://palosaari.fi/linux/
13971 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13972 F: drivers/media/dvb-frontends/mn88473*
13975 M: Luis Chamberlain <mcgrof@kernel.org>
13976 L: linux-modules@vger.kernel.org
13977 L: linux-kernel@vger.kernel.org
13979 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13980 F: include/linux/module.h
13984 MONOLITHIC POWER SYSTEM PMIC DRIVER
13985 M: Saravanan Sekar <sravanhome@gmail.com>
13987 F: Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13988 F: Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13989 F: drivers/iio/adc/mp2629_adc.c
13990 F: drivers/mfd/mp2629.c
13991 F: drivers/power/supply/mp2629_charger.c
13992 F: drivers/regulator/mp5416.c
13993 F: drivers/regulator/mpq7920.c
13994 F: drivers/regulator/mpq7920.h
13995 F: include/linux/mfd/mp2629.h
13997 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13999 W: http://popies.net/meye/
14000 F: Documentation/userspace-api/media/drivers/meye*
14001 F: drivers/staging/media/deprecated/meye/
14002 F: include/uapi/linux/meye.h
14004 MOTORCOMM PHY DRIVER
14005 M: Peter Geis <pgwipeout@gmail.com>
14006 M: Frank <Frank.Sae@motor-comm.com>
14007 L: netdev@vger.kernel.org
14009 F: drivers/net/phy/motorcomm.c
14011 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14012 M: Jiri Slaby <jirislaby@kernel.org>
14014 F: Documentation/driver-api/tty/moxa-smartio.rst
14015 F: drivers/tty/mxser.*
14017 MR800 AVERMEDIA USB FM RADIO DRIVER
14018 M: Alexey Klimov <klimov.linux@gmail.com>
14019 L: linux-media@vger.kernel.org
14021 T: git git://linuxtv.org/media_tree.git
14022 F: drivers/media/radio/radio-mr800.c
14024 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14025 M: Alan Ott <alan@signal11.us>
14026 L: linux-wpan@vger.kernel.org
14028 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14029 F: drivers/net/ieee802154/mrf24j40.c
14032 M: "Lee, Chun-Yi" <jlee@suse.com>
14033 L: platform-driver-x86@vger.kernel.org
14035 F: drivers/platform/x86/msi-laptop.c
14038 L: platform-driver-x86@vger.kernel.org
14040 F: drivers/platform/x86/msi-wmi.c
14042 MSI001 MEDIA DRIVER
14043 M: Antti Palosaari <crope@iki.fi>
14044 L: linux-media@vger.kernel.org
14046 W: https://linuxtv.org
14047 W: http://palosaari.fi/linux/
14048 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14049 T: git git://linuxtv.org/anttip/media_tree.git
14050 F: drivers/media/tuners/msi001*
14052 MSI2500 MEDIA DRIVER
14053 M: Antti Palosaari <crope@iki.fi>
14054 L: linux-media@vger.kernel.org
14056 W: https://linuxtv.org
14057 W: http://palosaari.fi/linux/
14058 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14059 T: git git://linuxtv.org/anttip/media_tree.git
14060 F: drivers/media/usb/msi2500/
14062 MSTAR INTERRUPT CONTROLLER DRIVER
14063 M: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14064 M: Daniel Palmer <daniel@thingy.jp>
14066 F: Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14067 F: drivers/irqchip/irq-mst-intc.c
14069 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14070 M: Robert Jarzmik <robert.jarzmik@free.fr>
14071 L: linux-mtd@lists.infradead.org
14073 F: drivers/mtd/devices/docg3*
14075 MT9M032 APTINA SENSOR DRIVER
14076 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14077 L: linux-media@vger.kernel.org
14079 T: git git://linuxtv.org/media_tree.git
14080 F: drivers/media/i2c/mt9m032.c
14081 F: include/media/i2c/mt9m032.h
14083 MT9P031 APTINA CAMERA SENSOR
14084 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14085 L: linux-media@vger.kernel.org
14087 T: git git://linuxtv.org/media_tree.git
14088 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14089 F: drivers/media/i2c/mt9p031.c
14090 F: include/media/i2c/mt9p031.h
14092 MT9T001 APTINA CAMERA SENSOR
14093 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14094 L: linux-media@vger.kernel.org
14096 T: git git://linuxtv.org/media_tree.git
14097 F: drivers/media/i2c/mt9t001.c
14098 F: include/media/i2c/mt9t001.h
14100 MT9T112 APTINA CAMERA SENSOR
14101 M: Jacopo Mondi <jacopo@jmondi.org>
14102 L: linux-media@vger.kernel.org
14104 T: git git://linuxtv.org/media_tree.git
14105 F: drivers/media/i2c/mt9t112.c
14106 F: include/media/i2c/mt9t112.h
14108 MT9V032 APTINA CAMERA SENSOR
14109 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14110 L: linux-media@vger.kernel.org
14112 T: git git://linuxtv.org/media_tree.git
14113 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14114 F: drivers/media/i2c/mt9v032.c
14115 F: include/media/i2c/mt9v032.h
14117 MT9V111 APTINA CAMERA SENSOR
14118 M: Jacopo Mondi <jacopo@jmondi.org>
14119 L: linux-media@vger.kernel.org
14121 T: git git://linuxtv.org/media_tree.git
14122 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14123 F: drivers/media/i2c/mt9v111.c
14125 MULTIFUNCTION DEVICES (MFD)
14126 M: Lee Jones <lee@kernel.org>
14128 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14129 F: Documentation/devicetree/bindings/mfd/
14131 F: include/dt-bindings/mfd/
14132 F: include/linux/mfd/
14134 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14136 F: drivers/mmc/host/mmc_spi.c
14137 F: include/linux/spi/mmc_spi.h
14139 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14140 M: Ulf Hansson <ulf.hansson@linaro.org>
14141 L: linux-mmc@vger.kernel.org
14143 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14144 F: Documentation/devicetree/bindings/mmc/
14146 F: include/linux/mmc/
14147 F: include/uapi/linux/mmc/
14149 MULTIPLEXER SUBSYSTEM
14150 M: Peter Rosin <peda@axentia.se>
14152 F: Documentation/ABI/testing/sysfs-class-mux*
14153 F: Documentation/devicetree/bindings/mux/
14155 F: include/dt-bindings/mux/
14156 F: include/linux/mux/
14158 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14159 M: Bin Liu <b-liu@ti.com>
14160 L: linux-usb@vger.kernel.org
14162 F: drivers/usb/musb/
14164 MXL301RF MEDIA DRIVER
14165 M: Akihiro Tsukada <tskd08@gmail.com>
14166 L: linux-media@vger.kernel.org
14168 F: drivers/media/tuners/mxl301rf*
14170 MXL5007T MEDIA DRIVER
14171 M: Michael Krufky <mkrufky@linuxtv.org>
14172 L: linux-media@vger.kernel.org
14174 W: https://linuxtv.org
14175 W: http://github.com/mkrufky
14176 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14177 T: git git://linuxtv.org/mkrufky/tuners.git
14178 F: drivers/media/tuners/mxl5007t.*
14181 M: Marek Vasut <marex@denx.de>
14182 M: Stefan Agner <stefan@agner.ch>
14183 L: dri-devel@lists.freedesktop.org
14185 T: git git://anongit.freedesktop.org/drm/drm-misc
14186 F: Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14187 F: drivers/gpu/drm/mxsfb/
14189 MYLEX DAC960 PCI RAID Controller
14190 M: Hannes Reinecke <hare@kernel.org>
14191 L: linux-scsi@vger.kernel.org
14193 F: drivers/scsi/myrb.*
14194 F: drivers/scsi/myrs.*
14196 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14197 M: Chris Lee <christopher.lee@cspi.com>
14198 L: netdev@vger.kernel.org
14200 W: https://www.cspi.com/ethernet-products/support/downloads/
14201 F: drivers/net/ethernet/myricom/myri10ge/
14203 NAND FLASH SUBSYSTEM
14204 M: Miquel Raynal <miquel.raynal@bootlin.com>
14205 R: Richard Weinberger <richard@nod.at>
14206 L: linux-mtd@lists.infradead.org
14208 W: http://www.linux-mtd.infradead.org/
14209 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
14210 C: irc://irc.oftc.net/mtd
14211 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14212 F: drivers/mtd/nand/
14213 F: include/linux/mtd/*nand*.h
14215 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14216 M: Daniel Mack <zonque@gmail.com>
14217 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14219 W: http://www.native-instruments.com
14220 F: sound/usb/caiaq/
14222 NATSEMI ETHERNET DRIVER (DP8381x)
14224 F: drivers/net/ethernet/natsemi/natsemi.c
14226 NCR 5380 SCSI DRIVERS
14227 M: Finn Thain <fthain@linux-m68k.org>
14228 M: Michael Schmitz <schmitzmic@gmail.com>
14229 L: linux-scsi@vger.kernel.org
14231 F: Documentation/scsi/g_NCR5380.rst
14232 F: drivers/scsi/NCR5380.*
14233 F: drivers/scsi/arm/cumana_1.c
14234 F: drivers/scsi/arm/oak.c
14235 F: drivers/scsi/atari_scsi.*
14236 F: drivers/scsi/dmx3191d.c
14237 F: drivers/scsi/g_NCR5380.*
14238 F: drivers/scsi/mac_scsi.*
14239 F: drivers/scsi/sun3_scsi.*
14240 F: drivers/scsi/sun3_scsi_vme.c
14243 M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
14247 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14248 M: Guenter Roeck <linux@roeck-us.net>
14249 L: linux-hwmon@vger.kernel.org
14251 F: Documentation/hwmon/nct6775.rst
14252 F: drivers/hwmon/nct6775-core.c
14253 F: drivers/hwmon/nct6775-platform.c
14254 F: drivers/hwmon/nct6775.h
14256 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14257 M: Zev Weiss <zev@bewilderbeest.net>
14258 L: linux-hwmon@vger.kernel.org
14260 F: Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14261 F: drivers/hwmon/nct6775-i2c.c
14264 M: Jakub Kicinski <kuba@kernel.org>
14266 F: drivers/net/netdevsim/*
14268 NETEM NETWORK EMULATOR
14269 M: Stephen Hemminger <stephen@networkplumber.org>
14270 L: netdev@vger.kernel.org
14272 F: net/sched/sch_netem.c
14274 NETERION 10GbE DRIVERS (s2io)
14275 M: Jon Mason <jdmason@kudzu.us>
14276 L: netdev@vger.kernel.org
14278 F: Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14279 F: drivers/net/ethernet/neterion/
14282 M: Pablo Neira Ayuso <pablo@netfilter.org>
14283 M: Jozsef Kadlecsik <kadlec@netfilter.org>
14284 M: Florian Westphal <fw@strlen.de>
14285 L: netfilter-devel@vger.kernel.org
14286 L: coreteam@netfilter.org
14288 W: http://www.netfilter.org/
14289 W: http://www.iptables.org/
14290 W: http://www.nftables.org/
14291 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
14292 C: irc://irc.libera.chat/netfilter
14293 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14294 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14295 F: include/linux/netfilter*
14296 F: include/linux/netfilter/
14297 F: include/net/netfilter/
14298 F: include/uapi/linux/netfilter*
14299 F: include/uapi/linux/netfilter/
14300 F: net/*/netfilter.c
14301 F: net/*/netfilter/
14302 F: net/bridge/br_netfilter*.c
14305 NETROM NETWORK LAYER
14306 M: Ralf Baechle <ralf@linux-mips.org>
14307 L: linux-hams@vger.kernel.org
14309 W: http://www.linux-ax25.org/
14310 F: include/net/netrom.h
14311 F: include/uapi/linux/netrom.h
14314 NETRONIX EMBEDDED CONTROLLER
14315 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14317 F: Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14318 F: drivers/mfd/ntxec.c
14319 F: drivers/pwm/pwm-ntxec.c
14320 F: drivers/rtc/rtc-ntxec.c
14321 F: include/linux/mfd/ntxec.h
14323 NETRONOME ETHERNET DRIVERS
14324 M: Simon Horman <simon.horman@corigine.com>
14325 R: Jakub Kicinski <kuba@kernel.org>
14326 L: oss-drivers@corigine.com
14328 F: drivers/net/ethernet/netronome/
14330 NETWORK BLOCK DEVICE (NBD)
14331 M: Josef Bacik <josef@toxicpanda.com>
14332 L: linux-block@vger.kernel.org
14333 L: nbd@other.debian.org
14335 F: Documentation/admin-guide/blockdev/nbd.rst
14336 F: drivers/block/nbd.c
14337 F: include/trace/events/nbd.h
14338 F: include/uapi/linux/nbd.h
14340 NETWORK DROP MONITOR
14341 M: Neil Horman <nhorman@tuxdriver.com>
14342 L: netdev@vger.kernel.org
14344 W: https://fedorahosted.org/dropwatch/
14345 F: include/uapi/linux/net_dropmon.h
14346 F: net/core/drop_monitor.c
14349 M: "David S. Miller" <davem@davemloft.net>
14350 M: Eric Dumazet <edumazet@google.com>
14351 M: Jakub Kicinski <kuba@kernel.org>
14352 M: Paolo Abeni <pabeni@redhat.com>
14353 L: netdev@vger.kernel.org
14355 Q: https://patchwork.kernel.org/project/netdevbpf/list/
14356 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14357 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14358 F: Documentation/devicetree/bindings/net/
14359 F: drivers/connector/
14361 F: include/dt-bindings/net/
14362 F: include/linux/etherdevice.h
14363 F: include/linux/fcdevice.h
14364 F: include/linux/fddidevice.h
14365 F: include/linux/hippidevice.h
14366 F: include/linux/if_*
14367 F: include/linux/inetdevice.h
14368 F: include/linux/netdevice.h
14369 F: include/uapi/linux/if_*
14370 F: include/uapi/linux/netdevice.h
14372 NETWORKING DRIVERS (WIRELESS)
14373 M: Kalle Valo <kvalo@kernel.org>
14374 L: linux-wireless@vger.kernel.org
14376 W: https://wireless.wiki.kernel.org/
14377 Q: https://patchwork.kernel.org/project/linux-wireless/list/
14378 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14379 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14380 F: Documentation/devicetree/bindings/net/wireless/
14381 F: drivers/net/wireless/
14384 M: Andrew Lunn <andrew@lunn.ch>
14385 M: Florian Fainelli <f.fainelli@gmail.com>
14386 M: Vladimir Oltean <olteanv@gmail.com>
14388 F: Documentation/devicetree/bindings/net/dsa/
14389 F: drivers/net/dsa/
14390 F: include/linux/dsa/
14391 F: include/linux/platform_data/dsa.h
14392 F: include/net/dsa.h
14394 F: tools/testing/selftests/drivers/net/dsa/
14396 NETWORKING [GENERAL]
14397 M: "David S. Miller" <davem@davemloft.net>
14398 M: Eric Dumazet <edumazet@google.com>
14399 M: Jakub Kicinski <kuba@kernel.org>
14400 M: Paolo Abeni <pabeni@redhat.com>
14401 L: netdev@vger.kernel.org
14403 Q: https://patchwork.kernel.org/project/netdevbpf/list/
14404 B: mailto:netdev@vger.kernel.org
14405 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14406 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14407 F: Documentation/networking/
14408 F: Documentation/process/maintainer-netdev.rst
14409 F: include/linux/in.h
14410 F: include/linux/net.h
14411 F: include/linux/netdevice.h
14413 F: include/uapi/linux/in.h
14414 F: include/uapi/linux/net.h
14415 F: include/uapi/linux/net_namespace.h
14416 F: include/uapi/linux/netdevice.h
14420 F: tools/testing/selftests/net/
14423 M: Steffen Klassert <steffen.klassert@secunet.com>
14424 M: Herbert Xu <herbert@gondor.apana.org.au>
14425 M: "David S. Miller" <davem@davemloft.net>
14426 L: netdev@vger.kernel.org
14428 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14429 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14430 F: include/net/xfrm.h
14431 F: include/uapi/linux/xfrm.h
14434 F: net/ipv4/ip_vti.c
14435 F: net/ipv4/ipcomp.c
14439 F: net/ipv6/ip6_vti.c
14440 F: net/ipv6/ipcomp6.c
14444 F: tools/testing/selftests/net/ipsec.c
14446 NETWORKING [IPv4/IPv6]
14447 M: "David S. Miller" <davem@davemloft.net>
14448 M: David Ahern <dsahern@kernel.org>
14449 L: netdev@vger.kernel.org
14451 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14453 F: include/linux/ip.h
14454 F: include/linux/ipv6*
14455 F: include/net/fib*
14457 F: include/net/route.h
14461 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14462 M: Paul Moore <paul@paul-moore.com>
14463 L: netdev@vger.kernel.org
14464 L: linux-security-module@vger.kernel.org
14466 W: https://github.com/netlabel
14467 F: Documentation/netlabel/
14468 F: include/net/calipso.h
14469 F: include/net/cipso_ipv4.h
14470 F: include/net/netlabel.h
14471 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
14472 F: include/uapi/linux/netfilter/xt_SECMARK.h
14473 F: net/ipv4/cipso_ipv4.c
14474 F: net/ipv6/calipso.c
14475 F: net/netfilter/xt_CONNSECMARK.c
14476 F: net/netfilter/xt_SECMARK.c
14480 M: Matthieu Baerts <matthieu.baerts@tessares.net>
14481 L: netdev@vger.kernel.org
14482 L: mptcp@lists.linux.dev
14484 W: https://github.com/multipath-tcp/mptcp_net-next/wiki
14485 B: https://github.com/multipath-tcp/mptcp_net-next/issues
14486 F: Documentation/networking/mptcp-sysctl.rst
14487 F: include/net/mptcp.h
14488 F: include/trace/events/mptcp.h
14489 F: include/uapi/linux/mptcp.h
14491 F: tools/testing/selftests/bpf/*/*mptcp*.c
14492 F: tools/testing/selftests/net/mptcp/
14495 M: Eric Dumazet <edumazet@google.com>
14496 L: netdev@vger.kernel.org
14498 F: include/linux/tcp.h
14499 F: include/net/tcp.h
14500 F: include/trace/events/tcp.h
14501 F: include/uapi/linux/tcp.h
14502 F: net/ipv4/syncookies.c
14504 F: net/ipv6/syncookies.c
14508 M: Boris Pismenny <borisp@nvidia.com>
14509 M: John Fastabend <john.fastabend@gmail.com>
14510 M: Jakub Kicinski <kuba@kernel.org>
14511 L: netdev@vger.kernel.org
14513 F: include/net/tls.h
14514 F: include/uapi/linux/tls.h
14517 NETXEN (1/10) GbE SUPPORT
14518 M: Manish Chopra <manishc@marvell.com>
14519 M: Rahul Verma <rahulv@marvell.com>
14520 M: GR-Linux-NIC-Dev@marvell.com
14521 L: netdev@vger.kernel.org
14523 F: drivers/net/ethernet/qlogic/netxen/
14525 NET_FAILOVER MODULE
14526 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
14527 L: netdev@vger.kernel.org
14529 F: Documentation/networking/net_failover.rst
14530 F: drivers/net/net_failover.c
14531 F: include/net/net_failover.h
14534 M: David Ahern <dsahern@kernel.org>
14535 L: netdev@vger.kernel.org
14537 F: include/net/netns/nexthop.h
14538 F: include/net/nexthop.h
14539 F: include/uapi/linux/nexthop.h
14540 F: net/ipv4/nexthop.c
14543 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14544 L: linux-nfc@lists.01.org (subscribers-only)
14545 L: netdev@vger.kernel.org
14547 B: mailto:linux-nfc@lists.01.org
14548 F: Documentation/devicetree/bindings/net/nfc/
14550 F: include/linux/platform_data/nfcmrvl.h
14551 F: include/net/nfc/
14552 F: include/uapi/linux/nfc.h
14555 NFC VIRTUAL NCI DEVICE DRIVER
14556 M: Bongsu Jeon <bongsu.jeon@samsung.com>
14557 L: netdev@vger.kernel.org
14558 L: linux-nfc@lists.01.org (subscribers-only)
14560 F: drivers/nfc/virtual_ncidev.c
14561 F: tools/testing/selftests/nci/
14563 NFS, SUNRPC, AND LOCKD CLIENTS
14564 M: Trond Myklebust <trond.myklebust@hammerspace.com>
14565 M: Anna Schumaker <anna@kernel.org>
14566 L: linux-nfs@vger.kernel.org
14568 W: http://client.linux-nfs.org
14569 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14573 F: include/linux/lockd/
14574 F: include/linux/nfs*
14575 F: include/linux/sunrpc/
14576 F: include/uapi/linux/nfs*
14577 F: include/uapi/linux/sunrpc/
14579 F: Documentation/filesystems/nfs/
14582 M: Ryusuke Konishi <konishi.ryusuke@gmail.com>
14583 L: linux-nilfs@vger.kernel.org
14585 W: https://nilfs.sourceforge.io/
14586 W: https://nilfs.osdn.jp/
14587 T: git https://github.com/konis/nilfs2.git
14588 F: Documentation/filesystems/nilfs2.rst
14590 F: include/trace/events/nilfs2.h
14591 F: include/uapi/linux/nilfs2_api.h
14592 F: include/uapi/linux/nilfs2_ondisk.h
14594 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14595 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14597 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14598 F: Documentation/scsi/NinjaSCSI.rst
14599 F: drivers/scsi/pcmcia/nsp_*
14601 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14602 M: GOTO Masanori <gotom@debian.or.jp>
14603 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14605 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14606 F: Documentation/scsi/NinjaSCSI.rst
14607 F: drivers/scsi/nsp32*
14609 NINTENDO HID DRIVER
14610 M: Daniel J. Ogorchock <djogorchock@gmail.com>
14611 L: linux-input@vger.kernel.org
14613 F: drivers/hid/hid-nintendo*
14616 M: Dinh Nguyen <dinguyen@kernel.org>
14618 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14621 NITRO ENCLAVES (NE)
14622 M: Alexandru Ciobotaru <alcioa@amazon.com>
14623 L: linux-kernel@vger.kernel.org
14624 L: The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14626 W: https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14627 F: Documentation/virt/ne_overview.rst
14628 F: drivers/virt/nitro_enclaves/
14629 F: include/linux/nitro_enclaves.h
14630 F: include/uapi/linux/nitro_enclaves.h
14631 F: samples/nitro_enclaves/
14633 NOHZ, DYNTICKS SUPPORT
14634 M: Frederic Weisbecker <fweisbec@gmail.com>
14635 M: Thomas Gleixner <tglx@linutronix.de>
14636 M: Ingo Molnar <mingo@kernel.org>
14637 L: linux-kernel@vger.kernel.org
14639 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14640 F: include/linux/sched/nohz.h
14641 F: include/linux/tick.h
14642 F: kernel/time/tick*.*
14644 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14645 M: Pavel Machek <pavel@ucw.cz>
14646 M: Sakari Ailus <sakari.ailus@iki.fi>
14647 L: linux-media@vger.kernel.org
14649 F: drivers/media/i2c/ad5820.c
14650 F: drivers/media/i2c/et8ek8
14652 NOKIA N900 POWER SUPPLY DRIVERS
14653 R: Pali Rohár <pali@kernel.org>
14654 F: drivers/power/supply/bq2415x_charger.c
14655 F: drivers/power/supply/bq27xxx_battery.c
14656 F: drivers/power/supply/bq27xxx_battery_i2c.c
14657 F: drivers/power/supply/isp1704_charger.c
14658 F: drivers/power/supply/rx51_battery.c
14659 F: include/linux/power/bq2415x_charger.h
14660 F: include/linux/power/bq27xxx_battery.h
14663 M: Willy Tarreau <w@1wt.eu>
14665 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14666 F: tools/include/nolibc/
14667 F: tools/testing/selftests/nolibc/
14670 M: Matthias Maennich <maennich@google.com>
14672 F: Documentation/core-api/symbol-namespaces.rst
14676 M: Sanjay R Mehta <sanju.mehta@amd.com>
14677 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14678 L: ntb@lists.linux.dev
14680 F: drivers/ntb/hw/amd/
14683 M: Jon Mason <jdmason@kudzu.us>
14684 M: Dave Jiang <dave.jiang@intel.com>
14685 M: Allen Hubbe <allenbh@gmail.com>
14686 L: ntb@lists.linux.dev
14688 W: https://github.com/jonmason/ntb/wiki
14689 T: git git://github.com/jonmason/ntb.git
14690 F: drivers/net/ntb_netdev.c
14692 F: drivers/pci/endpoint/functions/pci-epf-*ntb.c
14693 F: include/linux/ntb.h
14694 F: include/linux/ntb_transport.h
14695 F: tools/testing/selftests/ntb/
14698 M: Serge Semin <fancer.lancer@gmail.com>
14699 L: ntb@lists.linux.dev
14701 F: drivers/ntb/hw/idt/
14704 M: Dave Jiang <dave.jiang@intel.com>
14705 L: ntb@lists.linux.dev
14707 W: https://github.com/davejiang/linux/wiki
14708 T: git https://github.com/davejiang/linux.git
14709 F: drivers/ntb/hw/intel/
14712 M: Anton Altaparmakov <anton@tuxera.com>
14713 L: linux-ntfs-dev@lists.sourceforge.net
14715 W: http://www.tuxera.com/
14716 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14717 F: Documentation/filesystems/ntfs.rst
14721 M: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14722 L: ntfs3@lists.linux.dev
14724 W: http://www.paragon-software.com/
14725 T: git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14726 F: Documentation/filesystems/ntfs3.rst
14730 M: Finn Thain <fthain@linux-m68k.org>
14731 L: linux-m68k@lists.linux-m68k.org
14733 F: arch/*/include/asm/nubus.h
14735 F: include/linux/nubus.h
14736 F: include/uapi/linux/nubus.h
14738 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14739 M: Antonino Daplas <adaplas@gmail.com>
14740 L: linux-fbdev@vger.kernel.org
14742 F: drivers/video/fbdev/nvidia/
14743 F: drivers/video/fbdev/riva/
14745 NVIDIA WMI EC BACKLIGHT DRIVER
14746 M: Daniel Dadap <ddadap@nvidia.com>
14747 L: platform-driver-x86@vger.kernel.org
14749 F: drivers/platform/x86/nvidia-wmi-ec-backlight.c
14750 F: include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14753 M: Keith Busch <kbusch@kernel.org>
14754 M: Jens Axboe <axboe@fb.com>
14755 M: Christoph Hellwig <hch@lst.de>
14756 M: Sagi Grimberg <sagi@grimberg.me>
14757 L: linux-nvme@lists.infradead.org
14759 W: http://git.infradead.org/nvme.git
14760 T: git://git.infradead.org/nvme.git
14761 F: Documentation/nvme/
14762 F: drivers/nvme/host/
14763 F: drivers/nvme/common/
14764 F: include/linux/nvme.h
14765 F: include/linux/nvme-*.h
14766 F: include/uapi/linux/nvme_ioctl.h
14768 NVM EXPRESS FABRICS AUTHENTICATION
14769 M: Hannes Reinecke <hare@suse.de>
14770 L: linux-nvme@lists.infradead.org
14772 F: drivers/nvme/host/auth.c
14773 F: drivers/nvme/target/auth.c
14774 F: drivers/nvme/target/fabrics-cmd-auth.c
14775 F: include/linux/nvme-auth.h
14777 NVM EXPRESS HARDWARE MONITORING SUPPORT
14778 M: Guenter Roeck <linux@roeck-us.net>
14779 L: linux-nvme@lists.infradead.org
14781 F: drivers/nvme/host/hwmon.c
14783 NVM EXPRESS FC TRANSPORT DRIVERS
14784 M: James Smart <james.smart@broadcom.com>
14785 L: linux-nvme@lists.infradead.org
14787 F: drivers/nvme/host/fc.c
14788 F: drivers/nvme/target/fc.c
14789 F: drivers/nvme/target/fcloop.c
14790 F: include/linux/nvme-fc-driver.h
14791 F: include/linux/nvme-fc.h
14793 NVM EXPRESS TARGET DRIVER
14794 M: Christoph Hellwig <hch@lst.de>
14795 M: Sagi Grimberg <sagi@grimberg.me>
14796 M: Chaitanya Kulkarni <kch@nvidia.com>
14797 L: linux-nvme@lists.infradead.org
14799 W: http://git.infradead.org/nvme.git
14800 T: git://git.infradead.org/nvme.git
14801 F: drivers/nvme/target/
14804 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14806 T: git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14807 F: Documentation/ABI/stable/sysfs-bus-nvmem
14808 F: Documentation/devicetree/bindings/nvmem/
14810 F: include/linux/nvmem-consumer.h
14811 F: include/linux/nvmem-provider.h
14813 NXP C45 TJA11XX PHY DRIVER
14814 M: Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14815 L: netdev@vger.kernel.org
14817 F: drivers/net/phy/nxp-c45-tja11xx.c
14820 M: Han Xu <han.xu@nxp.com>
14821 M: Haibo Chen <haibo.chen@nxp.com>
14822 R: Yogesh Gaur <yogeshgaur.83@gmail.com>
14823 L: linux-spi@vger.kernel.org
14825 F: Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14826 F: drivers/spi/spi-nxp-fspi.c
14828 NXP FXAS21002C DRIVER
14829 M: Rui Miguel Silva <rmfrfs@gmail.com>
14830 L: linux-iio@vger.kernel.org
14832 F: Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14833 F: drivers/iio/gyro/fxas21002c.h
14834 F: drivers/iio/gyro/fxas21002c_core.c
14835 F: drivers/iio/gyro/fxas21002c_i2c.c
14836 F: drivers/iio/gyro/fxas21002c_spi.c
14838 NXP i.MX CLOCK DRIVERS
14839 M: Abel Vesa <abelvesa@kernel.org>
14840 L: linux-clk@vger.kernel.org
14841 L: linux-imx@nxp.com
14843 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14844 F: Documentation/devicetree/bindings/clock/imx*
14845 F: drivers/clk/imx/
14846 F: include/dt-bindings/clock/imx*
14848 NXP i.MX 8MQ DCSS DRIVER
14849 M: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14850 R: Lucas Stach <l.stach@pengutronix.de>
14851 L: dri-devel@lists.freedesktop.org
14853 F: Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14854 F: drivers/gpu/drm/imx/dcss/
14856 NXP i.MX 8QXP ADC DRIVER
14857 M: Cai Huoqing <cai.huoqing@linux.dev>
14858 M: Haibo Chen <haibo.chen@nxp.com>
14859 L: linux-imx@nxp.com
14860 L: linux-iio@vger.kernel.org
14862 F: Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14863 F: drivers/iio/adc/imx8qxp-adc.c
14865 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14866 M: Haibo Chen <haibo.chen@nxp.com>
14867 L: linux-iio@vger.kernel.org
14868 L: linux-imx@nxp.com
14870 F: Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14871 F: Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14872 F: drivers/iio/adc/imx7d_adc.c
14873 F: drivers/iio/adc/vf610_adc.c
14875 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14876 M: Jagan Teki <jagan@amarulasolutions.com>
14878 F: Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14879 F: drivers/regulator/pf8x00-regulator.c
14881 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14882 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14883 L: linux-kernel@vger.kernel.org
14885 F: Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14886 F: drivers/extcon/extcon-ptn5150.c
14888 NXP SGTL5000 DRIVER
14889 M: Fabio Estevam <festevam@gmail.com>
14890 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14892 F: Documentation/devicetree/bindings/sound/sgtl5000.yaml
14893 F: sound/soc/codecs/sgtl5000*
14895 NXP SJA1105 ETHERNET SWITCH DRIVER
14896 M: Vladimir Oltean <olteanv@gmail.com>
14897 L: linux-kernel@vger.kernel.org
14899 F: drivers/net/dsa/sja1105
14900 F: drivers/net/pcs/pcs-xpcs-nxp.c
14902 NXP TDA998X DRM DRIVER
14903 M: Russell King <linux@armlinux.org.uk>
14905 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14906 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14907 F: drivers/gpu/drm/i2c/tda998x_drv.c
14908 F: include/drm/i2c/tda998x.h
14909 F: include/dt-bindings/display/tda998x.h
14913 M: Peter Rosin <peda@axentia.se>
14914 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14916 F: Documentation/devicetree/bindings/sound/tfa9879.txt
14917 F: sound/soc/codecs/tfa9879*
14919 NXP/Goodix TFA989X (TFA1) DRIVER
14920 M: Stephan Gerhold <stephan@gerhold.net>
14921 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14923 F: Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14924 F: sound/soc/codecs/tfa989x.c
14927 L: linux-nfc@lists.01.org (subscribers-only)
14929 F: Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14930 F: drivers/nfc/nxp-nci
14932 NXP i.MX 8MP DW100 V4L2 DRIVER
14933 M: Xavier Roumegue <xavier.roumegue@oss.nxp.com>
14934 L: linux-media@vger.kernel.org
14936 F: Documentation/devicetree/bindings/media/nxp,dw100.yaml
14937 F: Documentation/userspace-api/media/drivers/dw100.rst
14938 F: drivers/media/platform/nxp/dw100/
14939 F: include/uapi/linux/dw100.h
14941 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14942 M: Mirela Rabulea <mirela.rabulea@nxp.com>
14943 R: NXP Linux Team <linux-imx@nxp.com>
14944 L: linux-media@vger.kernel.org
14946 F: Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14947 F: drivers/media/platform/nxp/imx-jpeg
14949 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14950 M: Jonas Malaco <jonas@protocubo.io>
14951 L: linux-hwmon@vger.kernel.org
14953 F: Documentation/hwmon/nzxt-kraken2.rst
14954 F: drivers/hwmon/nzxt-kraken2.c
14956 NZXT-SMART2 HARDWARE MONITORING DRIVER
14957 M: Aleksandr Mezin <mezin.alexander@gmail.com>
14958 L: linux-hwmon@vger.kernel.org
14960 F: Documentation/hwmon/nzxt-smart2.rst
14961 F: drivers/hwmon/nzxt-smart2.c
14964 M: Jiri Pirko <jiri@nvidia.com>
14965 L: netdev@vger.kernel.org
14967 F: include/linux/objagg.h
14969 F: lib/test_objagg.c
14972 M: Josh Poimboeuf <jpoimboe@kernel.org>
14973 M: Peter Zijlstra <peterz@infradead.org>
14976 F: include/linux/objtool.h
14978 OCELOT ETHERNET SWITCH DRIVER
14979 M: Vladimir Oltean <vladimir.oltean@nxp.com>
14980 M: Claudiu Manoil <claudiu.manoil@nxp.com>
14981 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
14982 M: UNGLinuxDriver@microchip.com
14983 L: netdev@vger.kernel.org
14985 F: drivers/net/dsa/ocelot/*
14986 F: drivers/net/ethernet/mscc/
14987 F: include/soc/mscc/ocelot*
14988 F: net/dsa/tag_ocelot.c
14989 F: net/dsa/tag_ocelot_8021q.c
14990 F: tools/testing/selftests/drivers/net/ocelot/*
14992 OCELOT EXTERNAL SWITCH CONTROL
14993 M: Colin Foster <colin.foster@in-advantage.com>
14995 F: Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
14996 F: drivers/mfd/ocelot*
14997 F: include/linux/mfd/ocelot.h
14999 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15000 M: Frederic Barrat <fbarrat@linux.ibm.com>
15001 M: Andrew Donnellan <ajd@linux.ibm.com>
15002 L: linuxppc-dev@lists.ozlabs.org
15004 F: Documentation/userspace-api/accelerators/ocxl.rst
15005 F: arch/powerpc/include/asm/pnv-ocxl.h
15006 F: arch/powerpc/platforms/powernv/ocxl.c
15007 F: drivers/misc/ocxl/
15008 F: include/misc/ocxl*
15009 F: include/uapi/misc/ocxl.h
15012 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
15013 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
15014 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15015 L: linux-omap@vger.kernel.org
15017 F: sound/soc/ti/n810.c
15018 F: sound/soc/ti/omap*
15019 F: sound/soc/ti/rx51.c
15020 F: sound/soc/ti/sdma-pcm.*
15022 OMAP CLOCK FRAMEWORK SUPPORT
15023 M: Paul Walmsley <paul@pwsan.com>
15024 L: linux-omap@vger.kernel.org
15026 F: arch/arm/*omap*/*clock*
15028 OMAP DEVICE TREE SUPPORT
15029 M: Benoît Cousson <bcousson@baylibre.com>
15030 M: Tony Lindgren <tony@atomide.com>
15031 L: linux-omap@vger.kernel.org
15032 L: devicetree@vger.kernel.org
15034 F: arch/arm/boot/dts/*am3*
15035 F: arch/arm/boot/dts/*am4*
15036 F: arch/arm/boot/dts/*am5*
15037 F: arch/arm/boot/dts/*dra7*
15038 F: arch/arm/boot/dts/*omap*
15039 F: arch/arm/boot/dts/logicpd-som-lv*
15040 F: arch/arm/boot/dts/logicpd-torpedo*
15042 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15043 L: linux-omap@vger.kernel.org
15044 L: linux-fbdev@vger.kernel.org
15046 F: Documentation/arm/omap/dss.rst
15047 F: drivers/video/fbdev/omap2/
15049 OMAP FRAMEBUFFER SUPPORT
15050 L: linux-fbdev@vger.kernel.org
15051 L: linux-omap@vger.kernel.org
15053 F: drivers/video/fbdev/omap/
15055 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15056 M: Roger Quadros <rogerq@kernel.org>
15057 M: Tony Lindgren <tony@atomide.com>
15058 L: linux-omap@vger.kernel.org
15060 F: arch/arm/mach-omap2/*gpmc*
15061 F: drivers/memory/omap-gpmc.c
15064 M: Grygorii Strashko <grygorii.strashko@ti.com>
15065 M: Santosh Shilimkar <ssantosh@kernel.org>
15066 M: Kevin Hilman <khilman@kernel.org>
15067 L: linux-omap@vger.kernel.org
15069 F: Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15070 F: drivers/gpio/gpio-omap.c
15072 OMAP HARDWARE SPINLOCK SUPPORT
15073 M: Ohad Ben-Cohen <ohad@wizery.com>
15074 L: linux-omap@vger.kernel.org
15076 F: drivers/hwspinlock/omap_hwspinlock.c
15078 OMAP HS MMC SUPPORT
15079 L: linux-mmc@vger.kernel.org
15080 L: linux-omap@vger.kernel.org
15082 F: drivers/mmc/host/omap_hsmmc.c
15085 M: Paul Walmsley <paul@pwsan.com>
15086 L: linux-omap@vger.kernel.org
15088 F: arch/arm/mach-omap2/omap_hwmod*data*
15091 M: Benoît Cousson <bcousson@baylibre.com>
15092 M: Paul Walmsley <paul@pwsan.com>
15093 L: linux-omap@vger.kernel.org
15095 F: arch/arm/mach-omap2/omap_hwmod.*
15098 M: Vignesh R <vigneshr@ti.com>
15099 L: linux-omap@vger.kernel.org
15100 L: linux-i2c@vger.kernel.org
15102 F: Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15103 F: drivers/i2c/busses/i2c-omap.c
15105 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15106 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15107 L: linux-media@vger.kernel.org
15109 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
15110 F: drivers/media/platform/ti/omap3isp/
15111 F: drivers/staging/media/omap4iss/
15114 M: Aaro Koskinen <aaro.koskinen@iki.fi>
15115 L: linux-omap@vger.kernel.org
15117 F: drivers/mmc/host/omap.c
15119 OMAP POWER MANAGEMENT SUPPORT
15120 M: Kevin Hilman <khilman@kernel.org>
15121 L: linux-omap@vger.kernel.org
15123 F: arch/arm/*omap*/*pm*
15124 F: drivers/cpufreq/omap-cpufreq.c
15126 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15127 M: Paul Walmsley <paul@pwsan.com>
15128 L: linux-omap@vger.kernel.org
15130 F: arch/arm/mach-omap2/prm*
15132 OMAP RANDOM NUMBER GENERATOR SUPPORT
15133 M: Deepak Saxena <dsaxena@plexity.net>
15135 F: drivers/char/hw_random/omap-rng.c
15138 L: linux-usb@vger.kernel.org
15139 L: linux-omap@vger.kernel.org
15141 F: arch/arm/*omap*/usb*
15142 F: drivers/usb/*/*omap*
15144 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15145 M: Mark Jackson <mpfj@newflow.co.uk>
15146 L: linux-omap@vger.kernel.org
15148 F: arch/arm/boot/dts/am335x-nano.dts
15151 M: Aaro Koskinen <aaro.koskinen@iki.fi>
15152 M: Janusz Krzysztofik <jmkrzyszt@gmail.com>
15153 M: Tony Lindgren <tony@atomide.com>
15154 L: linux-omap@vger.kernel.org
15156 Q: http://patchwork.kernel.org/project/linux-omap/list/
15157 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15158 F: arch/arm/configs/omap1_defconfig
15159 F: arch/arm/mach-omap1/
15160 F: drivers/i2c/busses/i2c-omap.c
15161 F: include/linux/platform_data/ams-delta-fiq.h
15162 F: include/linux/platform_data/i2c-omap.h
15165 M: Tony Lindgren <tony@atomide.com>
15166 L: linux-omap@vger.kernel.org
15168 W: http://www.muru.com/linux/omap/
15169 W: http://linux.omap.com/
15170 Q: http://patchwork.kernel.org/project/linux-omap/list/
15171 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15172 F: arch/arm/configs/omap2plus_defconfig
15173 F: arch/arm/mach-omap2/
15174 F: drivers/bus/ti-sysc.c
15175 F: drivers/i2c/busses/i2c-omap.c
15176 F: drivers/irqchip/irq-omap-intc.c
15177 F: drivers/mfd/*omap*.c
15178 F: drivers/mfd/menelaus.c
15179 F: drivers/mfd/palmas.c
15180 F: drivers/mfd/tps65217.c
15181 F: drivers/mfd/tps65218.c
15182 F: drivers/mfd/tps65219.c
15183 F: drivers/mfd/tps65910.c
15184 F: drivers/mfd/twl-core.[ch]
15185 F: drivers/mfd/twl4030*.c
15186 F: drivers/mfd/twl6030*.c
15187 F: drivers/mfd/twl6040*.c
15188 F: drivers/regulator/palmas-regulator*.c
15189 F: drivers/regulator/pbias-regulator.c
15190 F: drivers/regulator/tps65217-regulator.c
15191 F: drivers/regulator/tps65218-regulator.c
15192 F: drivers/regulator/tps65219-regulator.c
15193 F: drivers/regulator/tps65910-regulator.c
15194 F: drivers/regulator/twl-regulator.c
15195 F: drivers/regulator/twl6030-regulator.c
15196 F: include/linux/platform_data/i2c-omap.h
15197 F: include/linux/platform_data/ti-sysc.h
15200 M: Bob Copeland <me@bobcopeland.com>
15201 L: linux-karma-devel@lists.sourceforge.net
15203 F: Documentation/filesystems/omfs.rst
15206 OMNIKEY CARDMAN 4000 DRIVER
15207 M: Harald Welte <laforge@gnumonks.org>
15209 F: drivers/char/pcmcia/cm4000_cs.c
15210 F: include/linux/cm4000_cs.h
15211 F: include/uapi/linux/cm4000_cs.h
15213 OMNIKEY CARDMAN 4040 DRIVER
15214 M: Harald Welte <laforge@gnumonks.org>
15216 F: drivers/char/pcmcia/cm4040_cs.*
15218 OMNIVISION OG01A1B SENSOR DRIVER
15219 M: Shawn Tu <shawnx.tu@intel.com>
15220 L: linux-media@vger.kernel.org
15222 F: drivers/media/i2c/og01a1b.c
15224 OMNIVISION OV02A10 SENSOR DRIVER
15225 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
15226 L: linux-media@vger.kernel.org
15228 T: git git://linuxtv.org/media_tree.git
15229 F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15230 F: drivers/media/i2c/ov02a10.c
15232 OMNIVISION OV08D10 SENSOR DRIVER
15233 M: Jimmy Su <jimmy.su@intel.com>
15234 L: linux-media@vger.kernel.org
15236 T: git git://linuxtv.org/media_tree.git
15237 F: drivers/media/i2c/ov08d10.c
15239 OMNIVISION OV08X40 SENSOR DRIVER
15240 M: Jason Chen <jason.z.chen@intel.com>
15241 L: linux-media@vger.kernel.org
15243 T: git git://linuxtv.org/media_tree.git
15244 F: drivers/media/i2c/ov08x40.c
15246 OMNIVISION OV13858 SENSOR DRIVER
15247 M: Sakari Ailus <sakari.ailus@linux.intel.com>
15248 L: linux-media@vger.kernel.org
15250 T: git git://linuxtv.org/media_tree.git
15251 F: drivers/media/i2c/ov13858.c
15253 OMNIVISION OV13B10 SENSOR DRIVER
15254 M: Arec Kao <arec.kao@intel.com>
15255 L: linux-media@vger.kernel.org
15257 T: git git://linuxtv.org/media_tree.git
15258 F: drivers/media/i2c/ov13b10.c
15260 OMNIVISION OV2680 SENSOR DRIVER
15261 M: Rui Miguel Silva <rmfrfs@gmail.com>
15262 L: linux-media@vger.kernel.org
15264 T: git git://linuxtv.org/media_tree.git
15265 F: Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15266 F: drivers/media/i2c/ov2680.c
15268 OMNIVISION OV2685 SENSOR DRIVER
15269 M: Shunqian Zheng <zhengsq@rock-chips.com>
15270 L: linux-media@vger.kernel.org
15272 T: git git://linuxtv.org/media_tree.git
15273 F: drivers/media/i2c/ov2685.c
15275 OMNIVISION OV2740 SENSOR DRIVER
15276 M: Tianshu Qiu <tian.shu.qiu@intel.com>
15277 R: Shawn Tu <shawnx.tu@intel.com>
15278 R: Bingbu Cao <bingbu.cao@intel.com>
15279 L: linux-media@vger.kernel.org
15281 T: git git://linuxtv.org/media_tree.git
15282 F: drivers/media/i2c/ov2740.c
15284 OMNIVISION OV4689 SENSOR DRIVER
15285 M: Mikhail Rudenko <mike.rudenko@gmail.com>
15286 L: linux-media@vger.kernel.org
15288 T: git git://linuxtv.org/media_tree.git
15289 F: Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15290 F: drivers/media/i2c/ov5647.c
15292 OMNIVISION OV5640 SENSOR DRIVER
15293 M: Steve Longerbeam <slongerbeam@gmail.com>
15294 L: linux-media@vger.kernel.org
15296 T: git git://linuxtv.org/media_tree.git
15297 F: drivers/media/i2c/ov5640.c
15299 OMNIVISION OV5647 SENSOR DRIVER
15300 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
15301 M: Jacopo Mondi <jacopo@jmondi.org>
15302 L: linux-media@vger.kernel.org
15304 T: git git://linuxtv.org/media_tree.git
15305 F: Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15306 F: drivers/media/i2c/ov5647.c
15308 OMNIVISION OV5670 SENSOR DRIVER
15309 M: Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15310 L: linux-media@vger.kernel.org
15312 T: git git://linuxtv.org/media_tree.git
15313 F: drivers/media/i2c/ov5670.c
15315 OMNIVISION OV5675 SENSOR DRIVER
15316 M: Shawn Tu <shawnx.tu@intel.com>
15317 L: linux-media@vger.kernel.org
15319 T: git git://linuxtv.org/media_tree.git
15320 F: drivers/media/i2c/ov5675.c
15322 OMNIVISION OV5693 SENSOR DRIVER
15323 M: Daniel Scally <djrscally@gmail.com>
15324 L: linux-media@vger.kernel.org
15326 T: git git://linuxtv.org/media_tree.git
15327 F: Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15328 F: drivers/media/i2c/ov5693.c
15330 OMNIVISION OV5695 SENSOR DRIVER
15331 M: Shunqian Zheng <zhengsq@rock-chips.com>
15332 L: linux-media@vger.kernel.org
15334 T: git git://linuxtv.org/media_tree.git
15335 F: drivers/media/i2c/ov5695.c
15337 OMNIVISION OV7670 SENSOR DRIVER
15338 L: linux-media@vger.kernel.org
15340 T: git git://linuxtv.org/media_tree.git
15341 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
15342 F: drivers/media/i2c/ov7670.c
15344 OMNIVISION OV772x SENSOR DRIVER
15345 M: Jacopo Mondi <jacopo@jmondi.org>
15346 L: linux-media@vger.kernel.org
15348 T: git git://linuxtv.org/media_tree.git
15349 F: Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15350 F: drivers/media/i2c/ov772x.c
15351 F: include/media/i2c/ov772x.h
15353 OMNIVISION OV7740 SENSOR DRIVER
15354 M: Wenyou Yang <wenyou.yang@microchip.com>
15355 L: linux-media@vger.kernel.org
15357 T: git git://linuxtv.org/media_tree.git
15358 F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
15359 F: drivers/media/i2c/ov7740.c
15361 OMNIVISION OV8856 SENSOR DRIVER
15362 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
15363 L: linux-media@vger.kernel.org
15365 T: git git://linuxtv.org/media_tree.git
15366 F: Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15367 F: drivers/media/i2c/ov8856.c
15369 OMNIVISION OV9282 SENSOR DRIVER
15370 M: Paul J. Murphy <paul.j.murphy@intel.com>
15371 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15372 L: linux-media@vger.kernel.org
15374 T: git git://linuxtv.org/media_tree.git
15375 F: Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15376 F: drivers/media/i2c/ov9282.c
15378 OMNIVISION OV9640 SENSOR DRIVER
15379 M: Petr Cvek <petrcvekcz@gmail.com>
15380 L: linux-media@vger.kernel.org
15382 F: drivers/media/i2c/ov9640.*
15384 OMNIVISION OV9650 SENSOR DRIVER
15385 M: Sakari Ailus <sakari.ailus@linux.intel.com>
15386 R: Akinobu Mita <akinobu.mita@gmail.com>
15387 R: Sylwester Nawrocki <s.nawrocki@samsung.com>
15388 L: linux-media@vger.kernel.org
15390 T: git git://linuxtv.org/media_tree.git
15391 F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
15392 F: drivers/media/i2c/ov9650.c
15394 OMNIVISION OV9734 SENSOR DRIVER
15395 M: Tianshu Qiu <tian.shu.qiu@intel.com>
15396 R: Bingbu Cao <bingbu.cao@intel.com>
15397 L: linux-media@vger.kernel.org
15399 T: git git://linuxtv.org/media_tree.git
15400 F: drivers/media/i2c/ov9734.c
15402 ONBOARD USB HUB DRIVER
15403 M: Matthias Kaehlcke <mka@chromium.org>
15404 L: linux-usb@vger.kernel.org
15406 F: Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15407 F: drivers/usb/misc/onboard_usb_hub.c
15409 ONENAND FLASH DRIVER
15410 M: Kyungmin Park <kyungmin.park@samsung.com>
15411 L: linux-mtd@lists.infradead.org
15413 F: drivers/mtd/nand/onenand/
15414 F: include/linux/mtd/onenand*.h
15416 ONEXPLAYER FAN DRIVER
15417 M: Joaquín Ignacio Aramendía <samsagax@gmail.com>
15418 L: linux-hwmon@vger.kernel.org
15420 F: drivers/hwmon/oxp-sensors.c
15422 ONION OMEGA2+ BOARD
15423 M: Harvey Hunt <harveyhuntnexus@gmail.com>
15424 L: linux-mips@vger.kernel.org
15426 F: arch/mips/boot/dts/ralink/omega2p.dts
15429 M: Jens Wiklander <jens.wiklander@linaro.org>
15430 L: op-tee@lists.trustedfirmware.org
15432 F: Documentation/ABI/testing/sysfs-bus-optee-devices
15433 F: drivers/tee/optee/
15435 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15436 M: Sumit Garg <sumit.garg@linaro.org>
15437 L: op-tee@lists.trustedfirmware.org
15439 F: drivers/char/hw_random/optee-rng.c
15442 M: Clément Léger <clement.leger@bootlin.com>
15443 L: linux-rtc@vger.kernel.org
15445 F: drivers/rtc/rtc-optee.c
15448 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15449 L: linux-rdma@vger.kernel.org
15451 F: drivers/infiniband/ulp/opa_vnic
15453 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15454 M: Rob Herring <robh+dt@kernel.org>
15455 M: Frank Rowand <frowand.list@gmail.com>
15456 L: devicetree@vger.kernel.org
15458 C: irc://irc.libera.chat/devicetree
15459 W: http://www.devicetree.org/
15460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15461 F: Documentation/ABI/testing/sysfs-firmware-ofw
15463 F: include/linux/of*.h
15465 K: of_overlay_notifier_
15466 K: of_overlay_fdt_apply
15467 K: of_overlay_remove
15469 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15470 M: Rob Herring <robh+dt@kernel.org>
15471 M: Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15472 L: devicetree@vger.kernel.org
15474 C: irc://irc.libera.chat/devicetree
15475 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15476 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15477 F: Documentation/devicetree/
15478 F: arch/*/boot/dts/
15479 F: include/dt-bindings/
15481 OPENCOMPUTE PTP CLOCK DRIVER
15482 M: Jonathan Lemon <jonathan.lemon@gmail.com>
15483 M: Vadim Fedorenko <vadfed@fb.com>
15484 L: netdev@vger.kernel.org
15486 F: drivers/ptp/ptp_ocp.c
15488 OPENCORES I2C BUS DRIVER
15489 M: Peter Korsgaard <peter@korsgaard.com>
15490 M: Andrew Lunn <andrew@lunn.ch>
15491 L: linux-i2c@vger.kernel.org
15493 F: Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15494 F: Documentation/i2c/busses/i2c-ocores.rst
15495 F: drivers/i2c/busses/i2c-ocores.c
15496 F: include/linux/platform_data/i2c-ocores.h
15498 OPENRISC ARCHITECTURE
15499 M: Jonas Bonn <jonas@southpole.se>
15500 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15501 M: Stafford Horne <shorne@gmail.com>
15502 L: linux-openrisc@vger.kernel.org
15504 W: http://openrisc.io
15505 T: git https://github.com/openrisc/linux.git
15506 F: Documentation/devicetree/bindings/openrisc/
15507 F: Documentation/openrisc/
15509 F: drivers/irqchip/irq-ompic.c
15510 F: drivers/irqchip/irq-or1k-*
15513 M: Pravin B Shelar <pshelar@ovn.org>
15514 L: netdev@vger.kernel.org
15515 L: dev@openvswitch.org
15517 W: http://openvswitch.org
15518 F: include/uapi/linux/openvswitch.h
15519 F: net/openvswitch/
15520 F: tools/testing/selftests/net/openvswitch/
15522 OPERATING PERFORMANCE POINTS (OPP)
15523 M: Viresh Kumar <vireshk@kernel.org>
15524 M: Nishanth Menon <nm@ti.com>
15525 M: Stephen Boyd <sboyd@kernel.org>
15526 L: linux-pm@vger.kernel.org
15528 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15529 F: Documentation/devicetree/bindings/opp/
15530 F: Documentation/power/opp.rst
15532 F: include/linux/pm_opp.h
15535 M: Clemens Ladisch <clemens@ladisch.de>
15536 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15538 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15539 F: sound/drivers/opl4/
15541 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15542 M: Mark Fasheh <mark@fasheh.com>
15543 M: Joel Becker <jlbec@evilplan.org>
15544 M: Joseph Qi <joseph.qi@linux.alibaba.com>
15545 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15547 W: http://ocfs2.wiki.kernel.org
15548 F: Documentation/filesystems/dlmfs.rst
15549 F: Documentation/filesystems/ocfs2.rst
15552 ORANGEFS FILESYSTEM
15553 M: Mike Marshall <hubcap@omnibond.com>
15554 R: Martin Brandenburg <martin@omnibond.com>
15555 L: devel@lists.orangefs.org
15557 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15558 F: Documentation/filesystems/orangefs.rst
15562 L: linux-wireless@vger.kernel.org
15564 W: https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15565 W: http://www.nongnu.org/orinoco/
15566 F: drivers/net/wireless/intersil/orinoco/
15568 OV2659 OMNIVISION SENSOR DRIVER
15569 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15570 L: linux-media@vger.kernel.org
15572 W: https://linuxtv.org
15573 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15574 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15575 F: drivers/media/i2c/ov2659.c
15576 F: include/media/i2c/ov2659.h
15579 M: Miklos Szeredi <miklos@szeredi.hu>
15580 L: linux-unionfs@vger.kernel.org
15582 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15583 F: Documentation/filesystems/overlayfs.rst
15586 P54 WIRELESS DRIVER
15587 M: Christian Lamparter <chunkeey@googlemail.com>
15588 L: linux-wireless@vger.kernel.org
15590 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
15591 F: drivers/net/wireless/intersil/p54/
15594 M: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15596 F: include/uapi/linux/if_packet.h
15597 F: net/packet/af_packet.c
15600 M: Vladimir Oltean <olteanv@gmail.com>
15601 L: netdev@vger.kernel.org
15603 F: Documentation/core-api/packing.rst
15604 F: include/linux/packing.h
15607 PADATA PARALLEL EXECUTION MECHANISM
15608 M: Steffen Klassert <steffen.klassert@secunet.com>
15609 M: Daniel Jordan <daniel.m.jordan@oracle.com>
15610 L: linux-crypto@vger.kernel.org
15611 L: linux-kernel@vger.kernel.org
15613 F: Documentation/core-api/padata.rst
15614 F: include/linux/padata.h
15618 M: Matthew Wilcox (Oracle) <willy@infradead.org>
15619 L: linux-fsdevel@vger.kernel.org
15621 T: git git://git.infradead.org/users/willy/pagecache.git
15622 F: Documentation/filesystems/locking.rst
15623 F: Documentation/filesystems/vfs.rst
15624 F: include/linux/pagemap.h
15626 F: mm/page-writeback.c
15631 M: Jesper Dangaard Brouer <hawk@kernel.org>
15632 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
15633 L: netdev@vger.kernel.org
15635 F: Documentation/networking/page_pool.rst
15636 F: include/net/page_pool.h
15637 F: include/trace/events/page_pool.h
15638 F: net/core/page_pool.c
15641 M: Pasha Tatashin <pasha.tatashin@soleen.com>
15642 M: Andrew Morton <akpm@linux-foundation.org>
15643 L: linux-mm@kvack.org
15645 F: Documentation/mm/page_table_check.rst
15646 F: include/linux/page_table_check.h
15647 F: mm/page_table_check.c
15649 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15650 M: Kenneth Chan <kenneth.t.chan@gmail.com>
15651 L: platform-driver-x86@vger.kernel.org
15653 F: drivers/platform/x86/panasonic-laptop.c
15655 PARALLAX PING IIO SENSOR DRIVER
15656 M: Andreas Klinger <ak@it-klinger.de>
15657 L: linux-iio@vger.kernel.org
15659 F: Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15660 F: drivers/iio/proximity/ping.c
15662 PARALLEL LCD/KEYPAD PANEL DRIVER
15663 M: Willy Tarreau <willy@haproxy.com>
15664 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15666 F: Documentation/admin-guide/lcd-panel-cgram.rst
15667 F: drivers/auxdisplay/panel.c
15669 PARALLEL PORT SUBSYSTEM
15670 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15671 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15672 L: linux-parport@lists.infradead.org (subscribers-only)
15674 F: Documentation/driver-api/parport*.rst
15675 F: drivers/char/ppdev.c
15676 F: drivers/parport/
15677 F: include/linux/parport*.h
15678 F: include/uapi/linux/ppdev.h
15680 PARAVIRT_OPS INTERFACE
15681 M: Juergen Gross <jgross@suse.com>
15682 M: Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15683 R: Alexey Makhalov <amakhalov@vmware.com>
15684 R: VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15685 L: virtualization@lists.linux-foundation.org
15688 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15689 F: Documentation/virt/paravirt_ops.rst
15690 F: arch/*/include/asm/paravirt*.h
15691 F: arch/*/kernel/paravirt*
15692 F: include/linux/hypervisor.h
15694 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15695 M: Tim Waugh <tim@cyberelk.net>
15696 L: linux-parport@lists.infradead.org (subscribers-only)
15698 F: Documentation/admin-guide/blockdev/paride.rst
15699 F: drivers/block/paride/
15701 PARISC ARCHITECTURE
15702 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15703 M: Helge Deller <deller@gmx.de>
15704 L: linux-parisc@vger.kernel.org
15706 W: https://parisc.wiki.kernel.org
15707 Q: http://patchwork.kernel.org/project/linux-parisc/list/
15708 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15709 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15710 F: Documentation/parisc/
15712 F: drivers/char/agp/parisc-agp.c
15713 F: drivers/input/misc/hp_sdc_rtc.c
15714 F: drivers/input/serio/gscps2.c
15715 F: drivers/input/serio/hp_sdc*
15717 F: drivers/parport/parport_gsc.*
15718 F: drivers/tty/serial/8250/8250_parisc.c
15719 F: drivers/video/console/sti*
15720 F: drivers/video/fbdev/sti*
15721 F: drivers/video/logo/logo_parisc*
15722 F: include/linux/hp_sdc.h
15725 M: Jiri Pirko <jiri@nvidia.com>
15726 L: netdev@vger.kernel.org
15728 F: include/linux/parman.h
15730 F: lib/test_parman.c
15732 PC ENGINES APU BOARD DRIVER
15733 M: Enrico Weigelt, metux IT consult <info@metux.net>
15735 F: drivers/platform/x86/pcengines-apuv2.c
15737 PC87360 HARDWARE MONITORING DRIVER
15738 M: Jim Cromie <jim.cromie@gmail.com>
15739 L: linux-hwmon@vger.kernel.org
15741 F: Documentation/hwmon/pc87360.rst
15742 F: drivers/hwmon/pc87360.c
15744 PC8736x GPIO DRIVER
15745 M: Jim Cromie <jim.cromie@gmail.com>
15747 F: drivers/char/pc8736x_gpio.c
15749 PC87427 HARDWARE MONITORING DRIVER
15750 M: Jean Delvare <jdelvare@suse.com>
15751 L: linux-hwmon@vger.kernel.org
15753 F: Documentation/hwmon/pc87427.rst
15754 F: drivers/hwmon/pc87427.c
15757 M: Riku Voipio <riku.voipio@iki.fi>
15759 F: drivers/leds/leds-pca9532.c
15760 F: include/linux/leds-pca9532.h
15762 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15763 M: Guenter Roeck <linux@roeck-us.net>
15764 L: linux-i2c@vger.kernel.org
15766 F: drivers/i2c/muxes/i2c-mux-pca9541.c
15768 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15769 M: Khalid Aziz <khalid@gonehiking.org>
15771 F: drivers/firmware/pcdp.*
15773 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15774 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15775 M: Pali Rohár <pali@kernel.org>
15776 L: linux-pci@vger.kernel.org
15777 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15779 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
15780 F: drivers/pci/controller/pci-aardvark.c
15782 PCI DRIVER FOR ALTERA PCIE IP
15783 M: Joyce Ooi <joyce.ooi@intel.com>
15784 L: linux-pci@vger.kernel.org
15786 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
15787 F: drivers/pci/controller/pcie-altera.c
15789 PCI DRIVER FOR APPLIEDMICRO XGENE
15790 M: Toan Le <toan@os.amperecomputing.com>
15791 L: linux-pci@vger.kernel.org
15792 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15794 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
15795 F: drivers/pci/controller/pci-xgene.c
15797 PCI DRIVER FOR ARM VERSATILE PLATFORM
15798 M: Rob Herring <robh@kernel.org>
15799 L: linux-pci@vger.kernel.org
15800 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15802 F: Documentation/devicetree/bindings/pci/versatile.yaml
15803 F: drivers/pci/controller/pci-versatile.c
15805 PCI DRIVER FOR ARMADA 8K
15806 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15807 L: linux-pci@vger.kernel.org
15808 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15810 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
15811 F: drivers/pci/controller/dwc/pcie-armada8k.c
15813 PCI DRIVER FOR CADENCE PCIE IP
15814 M: Tom Joseph <tjoseph@cadence.com>
15815 L: linux-pci@vger.kernel.org
15817 F: Documentation/devicetree/bindings/pci/cdns,*
15818 F: drivers/pci/controller/cadence/
15820 PCI DRIVER FOR FREESCALE LAYERSCAPE
15821 M: Minghuan Lian <minghuan.Lian@nxp.com>
15822 M: Mingkai Hu <mingkai.hu@nxp.com>
15823 M: Roy Zang <roy.zang@nxp.com>
15824 L: linuxppc-dev@lists.ozlabs.org
15825 L: linux-pci@vger.kernel.org
15826 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15828 F: drivers/pci/controller/dwc/*layerscape*
15830 PCI DRIVER FOR GENERIC OF HOSTS
15831 M: Will Deacon <will@kernel.org>
15832 L: linux-pci@vger.kernel.org
15833 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15835 F: Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15836 F: drivers/pci/controller/pci-host-common.c
15837 F: drivers/pci/controller/pci-host-generic.c
15839 PCI DRIVER FOR IMX6
15840 M: Richard Zhu <hongxing.zhu@nxp.com>
15841 M: Lucas Stach <l.stach@pengutronix.de>
15842 L: linux-pci@vger.kernel.org
15843 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15845 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15846 F: drivers/pci/controller/dwc/*imx6*
15848 PCI DRIVER FOR FU740
15849 M: Paul Walmsley <paul.walmsley@sifive.com>
15850 M: Greentime Hu <greentime.hu@sifive.com>
15851 L: linux-pci@vger.kernel.org
15853 F: Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15854 F: drivers/pci/controller/dwc/pcie-fu740.c
15856 PCI DRIVER FOR INTEL IXP4XX
15857 M: Linus Walleij <linus.walleij@linaro.org>
15859 F: Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15860 F: drivers/pci/controller/pci-ixp4xx.c
15862 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15863 M: Nirmal Patel <nirmal.patel@linux.intel.com>
15864 R: Jonathan Derrick <jonathan.derrick@linux.dev>
15865 L: linux-pci@vger.kernel.org
15867 F: drivers/pci/controller/vmd.c
15869 PCI DRIVER FOR MICROSEMI SWITCHTEC
15870 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15871 M: Logan Gunthorpe <logang@deltatee.com>
15872 L: linux-pci@vger.kernel.org
15874 F: Documentation/ABI/testing/sysfs-class-switchtec
15875 F: Documentation/driver-api/switchtec.rst
15876 F: drivers/ntb/hw/mscc/
15877 F: drivers/pci/switch/switchtec*
15878 F: include/linux/switchtec.h
15879 F: include/uapi/linux/switchtec_ioctl.h
15881 PCI DRIVER FOR MOBIVEIL PCIE IP
15882 M: Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15883 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15884 L: linux-pci@vger.kernel.org
15886 F: Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15887 F: drivers/pci/controller/mobiveil/pcie-mobiveil*
15889 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15890 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15891 M: Pali Rohár <pali@kernel.org>
15892 L: linux-pci@vger.kernel.org
15893 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15895 F: drivers/pci/controller/*mvebu*
15897 PCI DRIVER FOR NVIDIA TEGRA
15898 M: Thierry Reding <thierry.reding@gmail.com>
15899 L: linux-tegra@vger.kernel.org
15900 L: linux-pci@vger.kernel.org
15902 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15903 F: drivers/pci/controller/pci-tegra.c
15905 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15906 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15907 L: linux-pci@vger.kernel.org
15908 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15910 F: Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15911 F: drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15913 PCI DRIVER FOR RENESAS R-CAR
15914 M: Marek Vasut <marek.vasut+renesas@gmail.com>
15915 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15916 L: linux-pci@vger.kernel.org
15917 L: linux-renesas-soc@vger.kernel.org
15919 F: Documentation/devicetree/bindings/pci/*rcar*
15920 F: drivers/pci/controller/*rcar*
15922 PCI DRIVER FOR SAMSUNG EXYNOS
15923 M: Jingoo Han <jingoohan1@gmail.com>
15924 L: linux-pci@vger.kernel.org
15925 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15926 L: linux-samsung-soc@vger.kernel.org
15928 F: drivers/pci/controller/dwc/pci-exynos.c
15930 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15931 M: Jingoo Han <jingoohan1@gmail.com>
15932 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15933 L: linux-pci@vger.kernel.org
15935 F: Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15936 F: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15937 F: drivers/pci/controller/dwc/*designware*
15939 PCI DRIVER FOR TI DRA7XX/J721E
15940 M: Vignesh Raghavendra <vigneshr@ti.com>
15941 L: linux-omap@vger.kernel.org
15942 L: linux-pci@vger.kernel.org
15943 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15945 F: Documentation/devicetree/bindings/pci/ti-pci.txt
15946 F: drivers/pci/controller/cadence/pci-j721e.c
15947 F: drivers/pci/controller/dwc/pci-dra7xx.c
15949 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15950 M: Linus Walleij <linus.walleij@linaro.org>
15951 L: linux-pci@vger.kernel.org
15953 F: Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15954 F: drivers/pci/controller/pci-v3-semi.c
15956 PCI ENDPOINT SUBSYSTEM
15957 M: Lorenzo Pieralisi <lpieralisi@kernel.org>
15958 M: Krzysztof Wilczyński <kw@linux.com>
15959 R: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15960 R: Kishon Vijay Abraham I <kishon@kernel.org>
15961 L: linux-pci@vger.kernel.org
15963 Q: https://patchwork.kernel.org/project/linux-pci/list/
15964 B: https://bugzilla.kernel.org
15965 C: irc://irc.oftc.net/linux-pci
15966 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
15967 F: Documentation/PCI/endpoint/*
15968 F: Documentation/misc-devices/pci-endpoint-test.rst
15969 F: drivers/misc/pci_endpoint_test.c
15970 F: drivers/pci/endpoint/
15973 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15974 M: Mahesh J Salgaonkar <mahesh@linux.ibm.com>
15975 R: Oliver O'Halloran <oohall@gmail.com>
15976 L: linuxppc-dev@lists.ozlabs.org
15978 F: Documentation/PCI/pci-error-recovery.rst
15979 F: Documentation/powerpc/eeh-pci-error-recovery.rst
15980 F: arch/powerpc/include/*/eeh*.h
15981 F: arch/powerpc/kernel/eeh*.c
15982 F: arch/powerpc/platforms/*/eeh*.c
15983 F: drivers/pci/pcie/aer.c
15984 F: drivers/pci/pcie/dpc.c
15985 F: drivers/pci/pcie/err.c
15988 M: Linas Vepstas <linasvepstas@gmail.com>
15989 L: linux-pci@vger.kernel.org
15991 F: Documentation/PCI/pci-error-recovery.rst
15993 PCI PEER-TO-PEER DMA (P2PDMA)
15994 M: Bjorn Helgaas <bhelgaas@google.com>
15995 M: Logan Gunthorpe <logang@deltatee.com>
15996 L: linux-pci@vger.kernel.org
15998 Q: https://patchwork.kernel.org/project/linux-pci/list/
15999 B: https://bugzilla.kernel.org
16000 C: irc://irc.oftc.net/linux-pci
16001 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16002 F: Documentation/driver-api/pci/p2pdma.rst
16003 F: drivers/pci/p2pdma.c
16004 F: include/linux/pci-p2pdma.h
16006 PCI MSI DRIVER FOR ALTERA MSI IP
16007 M: Joyce Ooi <joyce.ooi@intel.com>
16008 L: linux-pci@vger.kernel.org
16010 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16011 F: drivers/pci/controller/pcie-altera-msi.c
16013 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16014 M: Toan Le <toan@os.amperecomputing.com>
16015 L: linux-pci@vger.kernel.org
16016 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16018 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16019 F: drivers/pci/controller/pci-xgene-msi.c
16021 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16022 M: Lorenzo Pieralisi <lpieralisi@kernel.org>
16023 M: Krzysztof Wilczyński <kw@linux.com>
16024 R: Rob Herring <robh@kernel.org>
16025 L: linux-pci@vger.kernel.org
16027 Q: https://patchwork.kernel.org/project/linux-pci/list/
16028 B: https://bugzilla.kernel.org
16029 C: irc://irc.oftc.net/linux-pci
16030 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16031 F: Documentation/devicetree/bindings/pci/
16032 F: drivers/pci/controller/
16033 F: drivers/pci/pci-bridge-emul.c
16034 F: drivers/pci/pci-bridge-emul.h
16037 M: Bjorn Helgaas <bhelgaas@google.com>
16038 L: linux-pci@vger.kernel.org
16040 Q: https://patchwork.kernel.org/project/linux-pci/list/
16041 B: https://bugzilla.kernel.org
16042 C: irc://irc.oftc.net/linux-pci
16043 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16044 F: Documentation/PCI/
16045 F: Documentation/devicetree/bindings/pci/
16046 F: arch/x86/kernel/early-quirks.c
16047 F: arch/x86/kernel/quirks.c
16049 F: drivers/acpi/pci*
16051 F: include/asm-generic/pci*
16052 F: include/linux/of_pci.h
16053 F: include/linux/pci*
16054 F: include/uapi/linux/pci*
16057 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16058 M: Jonathan Chocron <jonnyc@amazon.com>
16059 L: linux-pci@vger.kernel.org
16061 F: Documentation/devicetree/bindings/pci/pcie-al.txt
16062 F: drivers/pci/controller/dwc/pcie-al.c
16064 PCIE DRIVER FOR AMLOGIC MESON
16065 M: Yue Wang <yue.wang@Amlogic.com>
16066 L: linux-pci@vger.kernel.org
16067 L: linux-amlogic@lists.infradead.org
16069 F: drivers/pci/controller/dwc/pci-meson.c
16071 PCIE DRIVER FOR AXIS ARTPEC
16072 M: Jesper Nilsson <jesper.nilsson@axis.com>
16073 L: linux-arm-kernel@axis.com
16074 L: linux-pci@vger.kernel.org
16076 F: Documentation/devicetree/bindings/pci/axis,artpec*
16077 F: drivers/pci/controller/dwc/*artpec*
16079 PCIE DRIVER FOR CAVIUM THUNDERX
16080 M: Robert Richter <rric@kernel.org>
16081 L: linux-pci@vger.kernel.org
16082 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16084 F: drivers/pci/controller/pci-thunder-*
16086 PCIE DRIVER FOR HISILICON
16087 M: Zhou Wang <wangzhou1@hisilicon.com>
16088 L: linux-pci@vger.kernel.org
16090 F: drivers/pci/controller/dwc/pcie-hisi.c
16092 PCIE DRIVER FOR HISILICON KIRIN
16093 M: Xiaowei Song <songxiaowei@hisilicon.com>
16094 M: Binghui Wang <wangbinghui@hisilicon.com>
16095 L: linux-pci@vger.kernel.org
16097 F: Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16098 F: drivers/pci/controller/dwc/pcie-kirin.c
16100 PCIE DRIVER FOR HISILICON STB
16101 M: Shawn Guo <shawn.guo@linaro.org>
16102 L: linux-pci@vger.kernel.org
16104 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16105 F: drivers/pci/controller/dwc/pcie-histb.c
16107 PCIE DRIVER FOR INTEL KEEM BAY
16108 M: Srikanth Thokala <srikanth.thokala@intel.com>
16109 L: linux-pci@vger.kernel.org
16111 F: Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16112 F: drivers/pci/controller/dwc/pcie-keembay.c
16114 PCIE DRIVER FOR INTEL LGM GW SOC
16115 M: Rahul Tanwar <rtanwar@maxlinear.com>
16116 L: linux-pci@vger.kernel.org
16118 F: Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16119 F: drivers/pci/controller/dwc/pcie-intel-gw.c
16121 PCIE DRIVER FOR MEDIATEK
16122 M: Ryder Lee <ryder.lee@mediatek.com>
16123 M: Jianjun Wang <jianjun.wang@mediatek.com>
16124 L: linux-pci@vger.kernel.org
16125 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16127 F: Documentation/devicetree/bindings/pci/mediatek*
16128 F: drivers/pci/controller/*mediatek*
16130 PCIE DRIVER FOR MICROCHIP
16131 M: Daire McNamara <daire.mcnamara@microchip.com>
16132 L: linux-pci@vger.kernel.org
16134 F: Documentation/devicetree/bindings/pci/microchip*
16135 F: drivers/pci/controller/*microchip*
16137 PCIE DRIVER FOR QUALCOMM MSM
16138 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16139 L: linux-pci@vger.kernel.org
16140 L: linux-arm-msm@vger.kernel.org
16142 F: drivers/pci/controller/dwc/pcie-qcom.c
16144 PCIE ENDPOINT DRIVER FOR QUALCOMM
16145 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16146 L: linux-pci@vger.kernel.org
16147 L: linux-arm-msm@vger.kernel.org
16149 F: Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16150 F: drivers/pci/controller/dwc/pcie-qcom-ep.c
16152 PCIE DRIVER FOR ROCKCHIP
16153 M: Shawn Lin <shawn.lin@rock-chips.com>
16154 L: linux-pci@vger.kernel.org
16155 L: linux-rockchip@lists.infradead.org
16157 F: Documentation/devicetree/bindings/pci/rockchip-pcie*
16158 F: drivers/pci/controller/pcie-rockchip*
16160 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16161 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16162 L: linux-pci@vger.kernel.org
16164 F: Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16165 F: drivers/pci/controller/dwc/pcie-uniphier*
16167 PCIE DRIVER FOR ST SPEAR13XX
16168 M: Pratyush Anand <pratyush.anand@gmail.com>
16169 L: linux-pci@vger.kernel.org
16171 F: drivers/pci/controller/dwc/*spear*
16173 PCI DRIVER FOR XILINX VERSAL CPM
16174 M: Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16175 M: Michal Simek <michal.simek@amd.com>
16176 L: linux-pci@vger.kernel.org
16178 F: Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16179 F: drivers/pci/controller/pcie-xilinx-cpm.c
16182 M: Dominik Brodowski <linux@dominikbrodowski.net>
16184 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16185 F: Documentation/pcmcia/
16190 PCNET32 NETWORK DRIVER
16191 M: Don Fry <pcnet32@frontier.com>
16192 L: netdev@vger.kernel.org
16194 F: drivers/net/ethernet/amd/pcnet32.c
16196 PCRYPT PARALLEL CRYPTO ENGINE
16197 M: Steffen Klassert <steffen.klassert@secunet.com>
16198 L: linux-crypto@vger.kernel.org
16201 F: include/crypto/pcrypt.h
16203 PEAQ WMI HOTKEYS DRIVER
16204 M: Hans de Goede <hdegoede@redhat.com>
16205 L: platform-driver-x86@vger.kernel.org
16207 F: drivers/platform/x86/peaq-wmi.c
16209 PECI HARDWARE MONITORING DRIVERS
16210 M: Iwona Winiarska <iwona.winiarska@intel.com>
16211 L: linux-hwmon@vger.kernel.org
16213 F: Documentation/hwmon/peci-cputemp.rst
16214 F: Documentation/hwmon/peci-dimmtemp.rst
16215 F: drivers/hwmon/peci/
16218 M: Iwona Winiarska <iwona.winiarska@intel.com>
16219 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
16221 F: Documentation/devicetree/bindings/peci/
16222 F: Documentation/peci/
16224 F: include/linux/peci-cpu.h
16225 F: include/linux/peci.h
16227 PENSANDO ETHERNET DRIVERS
16228 M: Shannon Nelson <shannon.nelson@amd.com>
16229 M: Brett Creeley <brett.creeley@amd.com>
16230 M: drivers@pensando.io
16231 L: netdev@vger.kernel.org
16233 F: Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16234 F: drivers/net/ethernet/pensando/
16236 PER-CPU MEMORY ALLOCATOR
16237 M: Dennis Zhou <dennis@kernel.org>
16238 M: Tejun Heo <tj@kernel.org>
16239 M: Christoph Lameter <cl@linux.com>
16240 L: linux-mm@kvack.org
16242 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16243 F: arch/*/include/asm/percpu.h
16244 F: include/linux/percpu*.h
16248 PER-TASK DELAY ACCOUNTING
16249 M: Balbir Singh <bsingharora@gmail.com>
16251 F: include/linux/delayacct.h
16252 F: kernel/delayacct.c
16254 PERFORMANCE EVENTS SUBSYSTEM
16255 M: Peter Zijlstra <peterz@infradead.org>
16256 M: Ingo Molnar <mingo@redhat.com>
16257 M: Arnaldo Carvalho de Melo <acme@kernel.org>
16258 R: Mark Rutland <mark.rutland@arm.com>
16259 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
16260 R: Jiri Olsa <jolsa@kernel.org>
16261 R: Namhyung Kim <namhyung@kernel.org>
16262 L: linux-perf-users@vger.kernel.org
16263 L: linux-kernel@vger.kernel.org
16265 W: https://perf.wiki.kernel.org/
16266 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16268 F: arch/*/events/*/*
16269 F: arch/*/include/asm/perf_event.h
16270 F: arch/*/kernel/*/*/perf_event*.c
16271 F: arch/*/kernel/*/perf_event*.c
16272 F: arch/*/kernel/perf_callchain.c
16273 F: arch/*/kernel/perf_event*.c
16274 F: include/linux/perf_event.h
16275 F: include/uapi/linux/perf_event.h
16280 PERFORMANCE EVENTS TOOLING ARM64
16281 R: John Garry <john.g.garry@oracle.com>
16282 R: Will Deacon <will@kernel.org>
16283 R: James Clark <james.clark@arm.com>
16284 R: Mike Leach <mike.leach@linaro.org>
16285 R: Leo Yan <leo.yan@linaro.org>
16286 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16288 F: tools/build/feature/test-libopencsd.c
16289 F: tools/perf/arch/arm*/
16290 F: tools/perf/pmu-events/arch/arm64/
16291 F: tools/perf/util/arm-spe*
16292 F: tools/perf/util/cs-etm*
16294 PERSONALITY HANDLING
16295 M: Christoph Hellwig <hch@infradead.org>
16296 L: linux-abi-devel@lists.sourceforge.net
16298 F: include/linux/personality.h
16299 F: include/uapi/linux/personality.h
16301 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16302 M: Marcus Folkesson <marcus.folkesson@gmail.com>
16303 L: linux-input@vger.kernel.org
16305 F: Documentation/input/devices/pxrc.rst
16306 F: drivers/input/joystick/pxrc.c
16309 M: Remi Denis-Courmont <courmisch@gmail.com>
16311 F: Documentation/networking/phonet.rst
16312 F: include/linux/phonet.h
16313 F: include/net/phonet/
16314 F: include/uapi/linux/phonet.h
16318 M: Joern Engel <joern@lazybastard.org>
16319 L: linux-mtd@lists.infradead.org
16321 F: drivers/mtd/devices/phram.c
16324 M: Bruno Prémont <bonbons@linux-vserver.org>
16325 L: linux-input@vger.kernel.org
16327 F: drivers/hid/hid-picolcd*
16330 M: Christian Brauner <christian@brauner.io>
16331 L: linux-kernel@vger.kernel.org
16333 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16335 F: tools/testing/selftests/clone3/
16336 F: tools/testing/selftests/pid_namespace/
16337 F: tools/testing/selftests/pidfd/
16340 K: \b(clone_args|kernel_clone_args)\b
16342 PIN CONTROL SUBSYSTEM
16343 M: Linus Walleij <linus.walleij@linaro.org>
16344 L: linux-gpio@vger.kernel.org
16346 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16347 F: Documentation/devicetree/bindings/pinctrl/
16348 F: Documentation/driver-api/pin-control.rst
16349 F: drivers/pinctrl/
16350 F: include/dt-bindings/pinctrl/
16351 F: include/linux/pinctrl/
16353 PIN CONTROLLER - AMD
16354 M: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16355 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16357 F: drivers/pinctrl/pinctrl-amd.c
16359 PIN CONTROLLER - FREESCALE
16360 M: Dong Aisheng <aisheng.dong@nxp.com>
16361 M: Fabio Estevam <festevam@gmail.com>
16362 M: Shawn Guo <shawnguo@kernel.org>
16363 M: Jacky Bai <ping.bai@nxp.com>
16364 R: Pengutronix Kernel Team <kernel@pengutronix.de>
16365 L: linux-gpio@vger.kernel.org
16367 F: Documentation/devicetree/bindings/pinctrl/fsl,*
16368 F: drivers/pinctrl/freescale/
16370 PIN CONTROLLER - INTEL
16371 M: Mika Westerberg <mika.westerberg@linux.intel.com>
16372 M: Andy Shevchenko <andy@kernel.org>
16374 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16375 F: drivers/pinctrl/intel/
16377 PIN CONTROLLER - KEEMBAY
16378 M: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16380 F: drivers/pinctrl/pinctrl-keembay*
16382 PIN CONTROLLER - MEDIATEK
16383 M: Sean Wang <sean.wang@kernel.org>
16384 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16386 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16387 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16388 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16389 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16390 F: drivers/pinctrl/mediatek/
16392 PIN CONTROLLER - MICROCHIP AT91
16393 M: Ludovic Desroches <ludovic.desroches@microchip.com>
16394 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16395 L: linux-gpio@vger.kernel.org
16397 F: drivers/gpio/gpio-sama5d2-piobu.c
16398 F: drivers/pinctrl/pinctrl-at91*
16400 PIN CONTROLLER - QUALCOMM
16401 M: Bjorn Andersson <andersson@kernel.org>
16402 L: linux-arm-msm@vger.kernel.org
16404 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16405 F: drivers/pinctrl/qcom/
16407 PIN CONTROLLER - RENESAS
16408 M: Geert Uytterhoeven <geert+renesas@glider.be>
16409 L: linux-renesas-soc@vger.kernel.org
16411 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16412 F: Documentation/devicetree/bindings/pinctrl/renesas,*
16413 F: drivers/pinctrl/renesas/
16415 PIN CONTROLLER - SAMSUNG
16416 M: Tomasz Figa <tomasz.figa@gmail.com>
16417 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16418 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16419 R: Alim Akhtar <alim.akhtar@samsung.com>
16420 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16421 L: linux-samsung-soc@vger.kernel.org
16423 C: irc://irc.libera.chat/linux-exynos
16424 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
16425 B: mailto:linux-samsung-soc@vger.kernel.org
16426 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16427 F: Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16428 F: drivers/pinctrl/samsung/
16429 F: include/dt-bindings/pinctrl/samsung.h
16431 PIN CONTROLLER - SINGLE
16432 M: Tony Lindgren <tony@atomide.com>
16433 M: Haojian Zhuang <haojian.zhuang@linaro.org>
16434 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16435 L: linux-omap@vger.kernel.org
16437 F: drivers/pinctrl/pinctrl-single.c
16439 PIN CONTROLLER - THUNDERBAY
16440 M: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16442 F: drivers/pinctrl/pinctrl-thunderbay.c
16444 PIN CONTROLLER - SUNPLUS / TIBBO
16445 M: Dvorkin Dmitry <dvorkin@tibbo.com>
16446 M: Wells Lu <wellslutw@gmail.com>
16447 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16449 W: https://sunplus.atlassian.net/wiki/spaces/doc/overview
16450 F: Documentation/devicetree/bindings/pinctrl/sunplus,*
16451 F: drivers/pinctrl/sunplus/
16452 F: include/dt-bindings/pinctrl/sppctl*.h
16454 PINE64 PINEPHONE KEYBOARD DRIVER
16455 M: Samuel Holland <samuel@sholland.org>
16457 F: Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16458 F: drivers/input/keyboard/pinephone-keyboard.c
16461 M: linux-block@vger.kernel.org
16463 F: drivers/block/pktcdvd.c
16464 F: include/linux/pktcdvd.h
16465 F: include/uapi/linux/pktcdvd.h
16467 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16468 M: Tomasz Duszynski <tduszyns@gmail.com>
16470 F: Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16471 F: drivers/iio/chemical/pms7003.c
16474 M: Jacob Keller <jacob.e.keller@intel.com>
16476 F: Documentation/driver-api/pldmfw/
16477 F: include/linux/pldmfw.h
16481 M: Logan Gunthorpe <logang@deltatee.com>
16483 F: drivers/dma/plx_dma.c
16486 M: Charles Hsu <hsu.yungteng@gmail.com>
16487 L: linux-hwmon@vger.kernel.org
16489 F: Documentation/hwmon/pm6764tr.rst
16490 F: drivers/hwmon/pmbus/pm6764tr.c
16493 M: "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16494 L: linux-pm@vger.kernel.org
16496 W: https://01.org/pm-graph
16497 B: https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16498 T: git git://github.com/intel/pm-graph
16499 F: tools/power/pm-graph
16501 PMBUS HARDWARE MONITORING DRIVERS
16502 M: Guenter Roeck <linux@roeck-us.net>
16503 L: linux-hwmon@vger.kernel.org
16505 W: http://hwmon.wiki.kernel.org/
16506 W: http://www.roeck-us.net/linux/drivers/
16507 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16508 F: Documentation/devicetree/bindings/hwmon/ltc2978.txt
16509 F: Documentation/devicetree/bindings/hwmon/max31785.txt
16510 F: Documentation/hwmon/adm1275.rst
16511 F: Documentation/hwmon/ibm-cffps.rst
16512 F: Documentation/hwmon/ir35221.rst
16513 F: Documentation/hwmon/lm25066.rst
16514 F: Documentation/hwmon/ltc2978.rst
16515 F: Documentation/hwmon/ltc3815.rst
16516 F: Documentation/hwmon/max16064.rst
16517 F: Documentation/hwmon/max20751.rst
16518 F: Documentation/hwmon/max31785.rst
16519 F: Documentation/hwmon/max34440.rst
16520 F: Documentation/hwmon/max8688.rst
16521 F: Documentation/hwmon/pmbus-core.rst
16522 F: Documentation/hwmon/pmbus.rst
16523 F: Documentation/hwmon/tps40422.rst
16524 F: Documentation/hwmon/ucd9000.rst
16525 F: Documentation/hwmon/ucd9200.rst
16526 F: Documentation/hwmon/zl6100.rst
16527 F: drivers/hwmon/pmbus/
16528 F: include/linux/pmbus.h
16530 PMC SIERRA MaxRAID DRIVER
16531 L: linux-scsi@vger.kernel.org
16533 W: http://www.pmc-sierra.com/
16534 F: drivers/scsi/pmcraid.*
16536 PMC SIERRA PM8001 DRIVER
16537 M: Jack Wang <jinpu.wang@cloud.ionos.com>
16538 L: linux-scsi@vger.kernel.org
16540 F: drivers/scsi/pm8001/
16542 PNI RM3100 IIO DRIVER
16543 M: Song Qiang <songqiang1304521@gmail.com>
16544 L: linux-iio@vger.kernel.org
16546 F: Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16547 F: drivers/iio/magnetometer/rm3100*
16550 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16551 L: linux-acpi@vger.kernel.org
16554 F: include/linux/pnp.h
16556 POSIX CLOCKS and TIMERS
16557 M: Thomas Gleixner <tglx@linutronix.de>
16558 L: linux-kernel@vger.kernel.org
16560 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16562 F: include/linux/time_namespace.h
16563 F: include/linux/timer*
16564 F: kernel/time/*timer*
16565 F: kernel/time/namespace.c
16567 POWER MANAGEMENT CORE
16568 M: "Rafael J. Wysocki" <rafael@kernel.org>
16569 L: linux-pm@vger.kernel.org
16571 B: https://bugzilla.kernel.org
16572 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16573 F: drivers/base/power/
16574 F: drivers/powercap/
16575 F: include/linux/intel_rapl.h
16576 F: include/linux/pm.h
16577 F: include/linux/pm_*
16578 F: include/linux/powercap.h
16579 F: kernel/configs/nopm.config
16581 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16582 M: Daniel Lezcano <daniel.lezcano@kernel.org>
16583 L: linux-pm@vger.kernel.org
16585 B: https://bugzilla.kernel.org
16586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16587 F: drivers/powercap/dtpm*
16588 F: include/linux/dtpm.h
16590 POWER STATE COORDINATION INTERFACE (PSCI)
16591 M: Mark Rutland <mark.rutland@arm.com>
16592 M: Lorenzo Pieralisi <lpieralisi@kernel.org>
16593 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16595 F: drivers/firmware/psci/
16596 F: include/linux/psci.h
16597 F: include/uapi/linux/psci.h
16599 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16600 M: Sebastian Reichel <sre@kernel.org>
16601 L: linux-pm@vger.kernel.org
16603 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16604 F: Documentation/ABI/testing/sysfs-class-power
16605 F: Documentation/devicetree/bindings/power/supply/
16606 F: drivers/power/supply/
16607 F: include/linux/power/
16608 F: include/linux/power_supply.h
16610 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16611 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16612 L: linuxppc-dev@lists.ozlabs.org
16614 F: drivers/char/powernv-op-panel.c
16616 PPP OVER ATM (RFC 2364)
16617 M: Mitchell Blank Jr <mitch@sfgoth.com>
16619 F: include/uapi/linux/atmppp.h
16620 F: net/atm/pppoatm.c
16623 M: Michal Ostrowski <mostrows@earthlink.net>
16625 F: drivers/net/ppp/pppoe.c
16626 F: drivers/net/ppp/pppox.c
16629 M: James Chapman <jchapman@katalix.com>
16631 F: include/linux/if_pppol2tp.h
16632 F: include/uapi/linux/if_pppol2tp.h
16633 F: net/l2tp/l2tp_ppp.c
16635 PPP PROTOCOL DRIVERS AND COMPRESSORS
16636 M: Paul Mackerras <paulus@samba.org>
16637 L: linux-ppp@vger.kernel.org
16639 F: drivers/net/ppp/ppp_*
16642 M: Rodolfo Giometti <giometti@enneenne.com>
16643 L: linuxpps@ml.enneenne.com (subscribers-only)
16645 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
16646 F: Documentation/ABI/testing/sysfs-pps
16647 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
16648 F: Documentation/driver-api/pps.rst
16650 F: include/linux/pps*.h
16651 F: include/uapi/linux/pps.h
16654 M: Dmitry Kozlov <xeb@mail.ru>
16655 L: netdev@vger.kernel.org
16657 W: http://sourceforge.net/projects/accel-pptp
16658 F: drivers/net/ppp/pptp.c
16660 PRESSURE STALL INFORMATION (PSI)
16661 M: Johannes Weiner <hannes@cmpxchg.org>
16662 M: Suren Baghdasaryan <surenb@google.com>
16664 F: include/linux/psi*
16665 F: kernel/sched/psi.c
16668 M: Petr Mladek <pmladek@suse.com>
16669 M: Sergey Senozhatsky <senozhatsky@chromium.org>
16670 R: Steven Rostedt <rostedt@goodmis.org>
16671 R: John Ogness <john.ogness@linutronix.de>
16673 T: git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16674 F: include/linux/printk.h
16678 R: Chris Down <chris@chrisdown.name>
16680 F: Documentation/core-api/printk-index.rst
16681 F: kernel/printk/index.c
16685 L: linux-kernel@vger.kernel.org
16686 L: linux-fsdevel@vger.kernel.org
16688 F: Documentation/filesystems/proc.rst
16690 F: include/linux/proc_fs.h
16691 F: tools/testing/selftests/proc/
16694 M: Luis Chamberlain <mcgrof@kernel.org>
16695 M: Kees Cook <keescook@chromium.org>
16696 M: Iurii Zaikin <yzaikin@google.com>
16697 L: linux-kernel@vger.kernel.org
16698 L: linux-fsdevel@vger.kernel.org
16700 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16701 F: fs/proc/proc_sysctl.c
16702 F: include/linux/sysctl.h
16703 F: kernel/sysctl-test.c
16705 F: tools/testing/selftests/sysctl/
16707 PS3 NETWORK SUPPORT
16708 M: Geoff Levand <geoff@infradead.org>
16709 L: netdev@vger.kernel.org
16710 L: linuxppc-dev@lists.ozlabs.org
16712 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
16714 PS3 PLATFORM SUPPORT
16715 M: Geoff Levand <geoff@infradead.org>
16716 L: linuxppc-dev@lists.ozlabs.org
16718 F: arch/powerpc/boot/ps3*
16719 F: arch/powerpc/include/asm/lv1call.h
16720 F: arch/powerpc/include/asm/ps3*.h
16721 F: arch/powerpc/platforms/ps3/
16724 F: drivers/rtc/rtc-ps3.c
16725 F: drivers/usb/host/*ps3.c
16726 F: sound/ppc/snd_ps3*
16729 M: Jim Paris <jim@jtan.com>
16730 M: Geoff Levand <geoff@infradead.org>
16731 L: linuxppc-dev@lists.ozlabs.org
16733 F: drivers/block/ps3vram.c
16735 PSAMPLE PACKET SAMPLING SUPPORT
16736 M: Yotam Gigi <yotam.gi@gmail.com>
16738 F: include/net/psample.h
16739 F: include/uapi/linux/psample.h
16743 M: Kees Cook <keescook@chromium.org>
16744 R: Tony Luck <tony.luck@intel.com>
16745 R: Guilherme G. Piccoli <gpiccoli@igalia.com>
16746 L: linux-hardening@vger.kernel.org
16748 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16749 F: Documentation/admin-guide/ramoops.rst
16750 F: Documentation/admin-guide/pstore-blk.rst
16751 F: Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16752 F: drivers/acpi/apei/erst.c
16753 F: drivers/firmware/efi/efi-pstore.c
16755 F: include/linux/pstore*
16756 K: \b(pstore|ramoops)
16758 PTP HARDWARE CLOCK SUPPORT
16759 M: Richard Cochran <richardcochran@gmail.com>
16760 L: netdev@vger.kernel.org
16762 W: http://linuxptp.sourceforge.net/
16763 F: Documentation/ABI/testing/sysfs-ptp
16764 F: Documentation/driver-api/ptp.rst
16765 F: drivers/net/phy/dp83640*
16767 F: include/linux/ptp_cl*
16768 K: (?:\b|_)ptp(?:\b|_)
16770 PTP VIRTUAL CLOCK SUPPORT
16771 M: Yangbo Lu <yangbo.lu@nxp.com>
16772 L: netdev@vger.kernel.org
16774 F: drivers/ptp/ptp_vclock.c
16775 F: net/ethtool/phc_vclocks.c
16778 M: Oleg Nesterov <oleg@redhat.com>
16780 F: arch/*/*/ptrace*.c
16781 F: arch/*/include/asm/ptrace*.h
16782 F: arch/*/ptrace*.c
16783 F: include/asm-generic/syscall.h
16784 F: include/linux/ptrace.h
16785 F: include/linux/regset.h
16786 F: include/uapi/linux/ptrace.h
16790 M: Hans Verkuil <hverkuil@xs4all.nl>
16791 L: linux-media@vger.kernel.org
16793 T: git git://linuxtv.org/media_tree.git
16794 F: drivers/media/cec/usb/pulse8/
16796 PURELIFI PLFXLC DRIVER
16797 M: Srinivasan Raju <srini.raju@purelifi.com>
16798 L: linux-wireless@vger.kernel.org
16800 F: drivers/net/wireless/purelifi/plfxlc/
16802 PVRUSB2 VIDEO4LINUX DRIVER
16803 M: Mike Isely <isely@pobox.com>
16804 L: pvrusb2@isely.net (subscribers-only)
16805 L: linux-media@vger.kernel.org
16807 W: http://www.isely.net/pvrusb2/
16808 T: git git://linuxtv.org/media_tree.git
16809 F: Documentation/driver-api/media/drivers/pvrusb2*
16810 F: drivers/media/usb/pvrusb2/
16813 M: Hans Verkuil <hverkuil@xs4all.nl>
16814 L: linux-media@vger.kernel.org
16816 T: git git://linuxtv.org/media_tree.git
16817 F: drivers/media/usb/pwc/*
16818 F: include/trace/events/pwc.h
16821 M: Sean Young <sean@mess.org>
16822 L: linux-media@vger.kernel.org
16824 F: Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
16825 F: drivers/media/rc/pwm-ir-tx.c
16828 M: Thierry Reding <thierry.reding@gmail.com>
16829 R: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16830 L: linux-pwm@vger.kernel.org
16832 Q: https://patchwork.ozlabs.org/project/linux-pwm/list/
16833 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16834 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16835 F: Documentation/devicetree/bindings/pwm/
16836 F: Documentation/driver-api/pwm.rst
16837 F: drivers/gpio/gpio-mvebu.c
16839 F: drivers/video/backlight/pwm_bl.c
16840 F: include/dt-bindings/pwm/
16841 F: include/linux/pwm.h
16842 F: include/linux/pwm_backlight.h
16843 K: pwm_(config|apply_state|ops)
16846 M: Robert Jarzmik <robert.jarzmik@free.fr>
16847 L: linux-gpio@vger.kernel.org
16849 F: drivers/gpio/gpio-pxa.c
16855 M: Robert Jarzmik <robert.jarzmik@free.fr>
16856 L: linux-rtc@vger.kernel.org
16859 PXA2xx/PXA3xx SUPPORT
16860 M: Daniel Mack <daniel@zonque.org>
16861 M: Haojian Zhuang <haojian.zhuang@gmail.com>
16862 M: Robert Jarzmik <robert.jarzmik@free.fr>
16863 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16865 T: git git://github.com/hzhuang1/linux.git
16866 T: git git://github.com/rjarzmik/linux.git
16867 F: arch/arm/boot/dts/pxa*
16868 F: arch/arm/mach-pxa/
16869 F: drivers/dma/pxa*
16870 F: drivers/pcmcia/pxa2xx*
16871 F: drivers/pinctrl/pxa/
16872 F: drivers/spi/spi-pxa2xx*
16873 F: drivers/usb/gadget/udc/pxa2*
16874 F: include/sound/pxa2xx-lib.h
16879 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16880 L: qat-linux@intel.com
16882 F: drivers/crypto/qat/
16884 QCOM AUDIO (ASoC) DRIVERS
16885 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16886 M: Banajit Goswami <bgoswami@quicinc.com>
16887 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16889 F: Documentation/devicetree/bindings/soc/qcom/qcom,apr*
16890 F: Documentation/devicetree/bindings/sound/qcom,*
16891 F: drivers/soc/qcom/apr.c
16892 F: include/dt-bindings/sound/qcom,wcd9335.h
16893 F: sound/soc/codecs/lpass-rx-macro.*
16894 F: sound/soc/codecs/lpass-tx-macro.*
16895 F: sound/soc/codecs/lpass-va-macro.c
16896 F: sound/soc/codecs/lpass-wsa-macro.*
16897 F: sound/soc/codecs/msm8916-wcd-analog.c
16898 F: sound/soc/codecs/msm8916-wcd-digital.c
16899 F: sound/soc/codecs/wcd9335.*
16900 F: sound/soc/codecs/wcd934x.c
16901 F: sound/soc/codecs/wcd-clsh-v2.*
16902 F: sound/soc/codecs/wcd-mbhc-v2.*
16903 F: sound/soc/codecs/wsa881x.c
16904 F: sound/soc/codecs/wsa883x.c
16907 QCOM EMBEDDED USB DEBUGGER (EUD)
16908 M: Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16909 L: linux-arm-msm@vger.kernel.org
16911 F: Documentation/ABI/testing/sysfs-driver-eud
16912 F: Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16913 F: drivers/usb/misc/qcom_eud.c
16916 M: Alex Elder <elder@kernel.org>
16917 L: netdev@vger.kernel.org
16919 F: drivers/net/ipa/
16921 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16922 M: Gabriel Somlo <somlo@cmu.edu>
16923 M: "Michael S. Tsirkin" <mst@redhat.com>
16924 L: qemu-devel@nongnu.org
16926 F: drivers/firmware/qemu_fw_cfg.c
16927 F: include/uapi/linux/qemu_fw_cfg.h
16930 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16931 L: linux-rdma@vger.kernel.org
16933 F: drivers/infiniband/hw/qib/
16935 QLOGIC QL41xxx FCOE DRIVER
16936 M: Saurav Kashyap <skashyap@marvell.com>
16937 M: Javed Hasan <jhasan@marvell.com>
16938 M: GR-QLogic-Storage-Upstream@marvell.com
16939 L: linux-scsi@vger.kernel.org
16941 F: drivers/scsi/qedf/
16943 QLOGIC QL41xxx ISCSI DRIVER
16944 M: Nilesh Javali <njavali@marvell.com>
16945 M: Manish Rangankar <mrangankar@marvell.com>
16946 M: GR-QLogic-Storage-Upstream@marvell.com
16947 L: linux-scsi@vger.kernel.org
16949 F: drivers/scsi/qedi/
16951 QLOGIC QL4xxx ETHERNET DRIVER
16952 M: Ariel Elior <aelior@marvell.com>
16953 M: Manish Chopra <manishc@marvell.com>
16954 L: netdev@vger.kernel.org
16956 F: drivers/net/ethernet/qlogic/qed/
16957 F: drivers/net/ethernet/qlogic/qede/
16958 F: include/linux/qed/
16960 QLOGIC QL4xxx RDMA DRIVER
16961 M: Michal Kalderon <mkalderon@marvell.com>
16962 M: Ariel Elior <aelior@marvell.com>
16963 L: linux-rdma@vger.kernel.org
16965 F: drivers/infiniband/hw/qedr/
16966 F: include/uapi/rdma/qedr-abi.h
16968 QLOGIC QLA1280 SCSI DRIVER
16969 M: Michael Reed <mdr@sgi.com>
16970 L: linux-scsi@vger.kernel.org
16972 F: drivers/scsi/qla1280.[ch]
16974 QLOGIC QLA2XXX FC-SCSI DRIVER
16975 M: Nilesh Javali <njavali@marvell.com>
16976 M: GR-QLogic-Storage-Upstream@marvell.com
16977 L: linux-scsi@vger.kernel.org
16979 F: drivers/scsi/qla2xxx/
16981 QLOGIC QLA3XXX NETWORK DRIVER
16982 M: GR-Linux-NIC-Dev@marvell.com
16983 L: netdev@vger.kernel.org
16985 F: drivers/net/ethernet/qlogic/qla3xxx.*
16987 QLOGIC QLA4XXX iSCSI DRIVER
16988 M: Nilesh Javali <njavali@marvell.com>
16989 M: Manish Rangankar <mrangankar@marvell.com>
16990 M: GR-QLogic-Storage-Upstream@marvell.com
16991 L: linux-scsi@vger.kernel.org
16993 F: drivers/scsi/qla4xxx/
16995 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16996 M: Shahed Shaikh <shshaikh@marvell.com>
16997 M: Manish Chopra <manishc@marvell.com>
16998 M: GR-Linux-NIC-Dev@marvell.com
16999 L: netdev@vger.kernel.org
17001 F: drivers/net/ethernet/qlogic/qlcnic/
17003 QLOGIC QLGE 10Gb ETHERNET DRIVER
17004 M: Manish Chopra <manishc@marvell.com>
17005 M: GR-Linux-NIC-Dev@marvell.com
17006 M: Coiby Xu <coiby.xu@gmail.com>
17007 L: netdev@vger.kernel.org
17009 F: Documentation/networking/device_drivers/qlogic/qlge.rst
17010 F: drivers/staging/qlge/
17012 QM1D1B0004 MEDIA DRIVER
17013 M: Akihiro Tsukada <tskd08@gmail.com>
17014 L: linux-media@vger.kernel.org
17016 F: drivers/media/tuners/qm1d1b0004*
17018 QM1D1C0042 MEDIA DRIVER
17019 M: Akihiro Tsukada <tskd08@gmail.com>
17020 L: linux-media@vger.kernel.org
17022 F: drivers/media/tuners/qm1d1c0042*
17025 M: Anders Larsen <al@alarsen.net>
17027 W: http://www.alarsen.net/linux/qnx4fs/
17029 F: include/uapi/linux/qnx4_fs.h
17030 F: include/uapi/linux/qnxtypes.h
17032 QORIQ DPAA2 FSL-MC BUS DRIVER
17033 M: Stuart Yoder <stuyoder@gmail.com>
17034 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
17035 L: linux-kernel@vger.kernel.org
17037 F: Documentation/ABI/stable/sysfs-bus-fsl-mc
17038 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17039 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17040 F: drivers/bus/fsl-mc/
17041 F: include/uapi/linux/fsl_mc.h
17043 QT1010 MEDIA DRIVER
17044 M: Antti Palosaari <crope@iki.fi>
17045 L: linux-media@vger.kernel.org
17047 W: https://linuxtv.org
17048 W: http://palosaari.fi/linux/
17049 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17050 T: git git://linuxtv.org/anttip/media_tree.git
17051 F: drivers/media/tuners/qt1010*
17053 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17054 M: Kalle Valo <kvalo@kernel.org>
17055 L: ath10k@lists.infradead.org
17057 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17058 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17059 F: drivers/net/wireless/ath/ath10k/
17060 F: Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
17062 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17063 M: Kalle Valo <kvalo@kernel.org>
17064 L: ath11k@lists.infradead.org
17066 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17067 F: Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17068 F: drivers/net/wireless/ath/ath11k/
17070 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17071 M: Toke Høiland-Jørgensen <toke@toke.dk>
17072 L: linux-wireless@vger.kernel.org
17074 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17075 F: Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17076 F: drivers/net/wireless/ath/ath9k/
17078 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17079 M: Stephan Gerhold <stephan@gerhold.net>
17080 L: netdev@vger.kernel.org
17081 L: linux-arm-msm@vger.kernel.org
17083 F: Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17084 F: drivers/net/wwan/qcom_bam_dmux.c
17086 QUALCOMM CAMERA SUBSYSTEM DRIVER
17087 M: Robert Foss <rfoss@kernel.org>
17088 M: Todor Tomov <todor.too@gmail.com>
17089 L: linux-media@vger.kernel.org
17091 F: Documentation/admin-guide/media/qcom_camss.rst
17092 F: Documentation/devicetree/bindings/media/*camss*
17093 F: drivers/media/platform/qcom/camss/
17095 QUALCOMM CLOCK DRIVERS
17096 M: Bjorn Andersson <andersson@kernel.org>
17097 L: linux-arm-msm@vger.kernel.org
17099 T: git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17100 F: Documentation/devicetree/bindings/clock/qcom,*
17101 F: drivers/clk/qcom/
17102 F: include/dt-bindings/clock/qcom,*
17104 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17105 M: Niklas Cassel <nks@flawful.org>
17106 L: linux-pm@vger.kernel.org
17107 L: linux-arm-msm@vger.kernel.org
17109 F: Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17110 F: drivers/soc/qcom/cpr.c
17112 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17113 M: Ilia Lin <ilia.lin@kernel.org>
17114 L: linux-pm@vger.kernel.org
17116 F: Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17117 F: Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17118 F: drivers/cpufreq/qcom-cpufreq-nvmem.c
17120 QUALCOMM CRYPTO DRIVERS
17121 M: Thara Gopinath <thara.gopinath@gmail.com>
17122 L: linux-crypto@vger.kernel.org
17123 L: linux-arm-msm@vger.kernel.org
17125 F: drivers/crypto/qce/
17127 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17128 M: Timur Tabi <timur@kernel.org>
17129 L: netdev@vger.kernel.org
17131 F: drivers/net/ethernet/qualcomm/emac/
17133 QUALCOMM ETHQOS ETHERNET DRIVER
17134 M: Vinod Koul <vkoul@kernel.org>
17135 R: Bhupesh Sharma <bhupesh.sharma@linaro.org>
17136 L: netdev@vger.kernel.org
17138 F: Documentation/devicetree/bindings/net/qcom,ethqos.txt
17139 F: drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17141 QUALCOMM FASTRPC DRIVER
17142 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17143 M: Amol Maheshwari <amahesh@qti.qualcomm.com>
17144 L: linux-arm-msm@vger.kernel.org
17146 F: Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17147 F: drivers/misc/fastrpc.c
17148 F: include/uapi/misc/fastrpc.h
17150 QUALCOMM HEXAGON ARCHITECTURE
17151 M: Brian Cain <bcain@quicinc.com>
17152 L: linux-hexagon@vger.kernel.org
17153 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17157 QUALCOMM HIDMA DRIVER
17158 M: Sinan Kaya <okaya@kernel.org>
17159 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17160 L: linux-arm-msm@vger.kernel.org
17161 L: dmaengine@vger.kernel.org
17163 F: drivers/dma/qcom/hidma*
17165 QUALCOMM I2C CCI DRIVER
17166 M: Loic Poulain <loic.poulain@linaro.org>
17167 M: Robert Foss <rfoss@kernel.org>
17168 L: linux-i2c@vger.kernel.org
17169 L: linux-arm-msm@vger.kernel.org
17171 F: Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17172 F: drivers/i2c/busses/i2c-qcom-cci.c
17174 QUALCOMM INTERCONNECT BWMON DRIVER
17175 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17176 L: linux-arm-msm@vger.kernel.org
17178 F: Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17179 F: drivers/soc/qcom/icc-bwmon.c
17182 M: Rob Clark <robdclark@gmail.com>
17183 L: iommu@lists.linux.dev
17184 L: linux-arm-msm@vger.kernel.org
17186 F: drivers/iommu/arm/arm-smmu/qcom_iommu.c
17188 QUALCOMM IPC ROUTER (QRTR) DRIVER
17189 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17190 L: linux-arm-msm@vger.kernel.org
17192 F: include/trace/events/qrtr.h
17193 F: include/uapi/linux/qrtr.h
17196 QUALCOMM IPCC MAILBOX DRIVER
17197 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17198 L: linux-arm-msm@vger.kernel.org
17200 F: Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17201 F: drivers/mailbox/qcom-ipcc.c
17202 F: include/dt-bindings/mailbox/qcom-ipcc.h
17204 QUALCOMM IPQ4019 USB PHY DRIVER
17205 M: Robert Marko <robert.marko@sartura.hr>
17206 M: Luka Perkov <luka.perkov@sartura.hr>
17207 L: linux-arm-msm@vger.kernel.org
17209 F: Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17210 F: drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17212 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17213 M: Robert Marko <robert.marko@sartura.hr>
17214 M: Luka Perkov <luka.perkov@sartura.hr>
17215 L: linux-arm-msm@vger.kernel.org
17217 F: Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17218 F: drivers/regulator/vqmmc-ipq4019-regulator.c
17220 QUALCOMM NAND CONTROLLER DRIVER
17221 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17222 L: linux-mtd@lists.infradead.org
17223 L: linux-arm-msm@vger.kernel.org
17225 F: Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17226 F: drivers/mtd/nand/raw/qcom_nandc.c
17228 QUALCOMM RMNET DRIVER
17229 M: Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17230 M: Sean Tranchetti <quic_stranche@quicinc.com>
17231 L: netdev@vger.kernel.org
17233 F: Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17234 F: drivers/net/ethernet/qualcomm/rmnet/
17235 F: include/linux/if_rmnet.h
17237 QUALCOMM TSENS THERMAL DRIVER
17238 M: Amit Kucheria <amitk@kernel.org>
17239 M: Thara Gopinath <thara.gopinath@gmail.com>
17240 L: linux-pm@vger.kernel.org
17241 L: linux-arm-msm@vger.kernel.org
17243 F: Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17244 F: drivers/thermal/qcom/
17246 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17247 M: Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17248 M: Vikash Garodia <quic_vgarodia@quicinc.com>
17249 L: linux-media@vger.kernel.org
17250 L: linux-arm-msm@vger.kernel.org
17252 T: git git://linuxtv.org/media_tree.git
17253 F: Documentation/devicetree/bindings/media/*venus*
17254 F: drivers/media/platform/qcom/venus/
17256 QUALCOMM WCN36XX WIRELESS DRIVER
17257 M: Loic Poulain <loic.poulain@linaro.org>
17258 L: wcn36xx@lists.infradead.org
17260 W: https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17261 F: drivers/net/wireless/ath/wcn36xx/
17263 QUANTENNA QTNFMAC WIRELESS DRIVER
17264 M: Igor Mitsyanko <imitsyanko@quantenna.com>
17265 R: Sergey Matyukevich <geomatsi@gmail.com>
17266 L: linux-wireless@vger.kernel.org
17268 F: drivers/net/wireless/quantenna
17270 RADEON and AMDGPU DRM DRIVERS
17271 M: Alex Deucher <alexander.deucher@amd.com>
17272 M: Christian König <christian.koenig@amd.com>
17273 M: Pan, Xinhui <Xinhui.Pan@amd.com>
17274 L: amd-gfx@lists.freedesktop.org
17276 T: git https://gitlab.freedesktop.org/agd5f/linux.git
17277 B: https://gitlab.freedesktop.org/drm/amd/-/issues
17278 C: irc://irc.oftc.net/radeon
17279 F: Documentation/gpu/amdgpu/
17280 F: drivers/gpu/drm/amd/
17281 F: drivers/gpu/drm/radeon/
17282 F: include/uapi/drm/amdgpu_drm.h
17283 F: include/uapi/drm/radeon_drm.h
17285 RADEON FRAMEBUFFER DISPLAY DRIVER
17286 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
17287 L: linux-fbdev@vger.kernel.org
17289 F: drivers/video/fbdev/aty/radeon*
17290 F: include/uapi/linux/radeonfb.h
17292 RADIOSHARK RADIO DRIVER
17293 M: Hans Verkuil <hverkuil@xs4all.nl>
17294 L: linux-media@vger.kernel.org
17296 T: git git://linuxtv.org/media_tree.git
17297 F: drivers/media/radio/radio-shark.c
17299 RADIOSHARK2 RADIO DRIVER
17300 M: Hans Verkuil <hverkuil@xs4all.nl>
17301 L: linux-media@vger.kernel.org
17303 T: git git://linuxtv.org/media_tree.git
17304 F: drivers/media/radio/radio-shark2.c
17305 F: drivers/media/radio/radio-tea5777.c
17307 RADOS BLOCK DEVICE (RBD)
17308 M: Ilya Dryomov <idryomov@gmail.com>
17309 R: Dongsheng Yang <dongsheng.yang@easystack.cn>
17310 L: ceph-devel@vger.kernel.org
17312 W: http://ceph.com/
17313 T: git https://github.com/ceph/ceph-client.git
17314 F: Documentation/ABI/testing/sysfs-bus-rbd
17315 F: drivers/block/rbd.c
17316 F: drivers/block/rbd_types.h
17318 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17319 M: Paul Mackerras <paulus@samba.org>
17320 L: linux-fbdev@vger.kernel.org
17322 F: drivers/video/fbdev/aty/aty128fb.c
17324 RAINSHADOW-CEC DRIVER
17325 M: Hans Verkuil <hverkuil@xs4all.nl>
17326 L: linux-media@vger.kernel.org
17328 T: git git://linuxtv.org/media_tree.git
17329 F: drivers/media/cec/usb/rainshadow/
17331 RALINK MIPS ARCHITECTURE
17332 M: John Crispin <john@phrozen.org>
17333 L: linux-mips@vger.kernel.org
17335 F: arch/mips/ralink
17337 RALINK MT7621 MIPS ARCHITECTURE
17338 M: Arınç ÜNAL <arinc.unal@arinc9.com>
17339 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
17340 L: linux-mips@vger.kernel.org
17342 F: arch/mips/boot/dts/ralink/mt7621*
17344 RALINK PINCTRL DRIVER
17345 M: Arınç ÜNAL <arinc.unal@arinc9.com>
17346 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
17347 L: linux-mips@vger.kernel.org
17349 F: drivers/pinctrl/ralink/
17351 RALINK RT2X00 WIRELESS LAN DRIVER
17352 M: Stanislaw Gruszka <stf_xl@wp.pl>
17353 M: Helmut Schaa <helmut.schaa@googlemail.com>
17354 L: linux-wireless@vger.kernel.org
17356 F: drivers/net/wireless/ralink/rt2x00/
17358 RAMDISK RAM BLOCK DEVICE DRIVER
17359 M: Jens Axboe <axboe@kernel.dk>
17361 F: Documentation/admin-guide/blockdev/ramdisk.rst
17362 F: drivers/block/brd.c
17364 RANCHU VIRTUAL BOARD FOR MIPS
17365 M: Miodrag Dinic <miodrag.dinic@mips.com>
17366 L: linux-mips@vger.kernel.org
17368 F: arch/mips/configs/generic/board-ranchu.config
17369 F: arch/mips/generic/board-ranchu.c
17371 RANDOM NUMBER DRIVER
17372 M: "Theodore Ts'o" <tytso@mit.edu>
17373 M: Jason A. Donenfeld <Jason@zx2c4.com>
17374 T: git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17376 F: drivers/char/random.c
17377 F: drivers/virt/vmgenid.c
17380 M: Matt Porter <mporter@kernel.crashing.org>
17381 M: Alexandre Bounine <alex.bou9@gmail.com>
17383 F: drivers/rapidio/
17386 M: Tony Luck <tony.luck@intel.com>
17387 M: Borislav Petkov <bp@alien8.de>
17388 L: linux-edac@vger.kernel.org
17390 F: Documentation/admin-guide/ras.rst
17392 F: include/linux/ras.h
17393 F: include/ras/ras_event.h
17395 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17396 L: linux-wireless@vger.kernel.org
17398 F: drivers/net/wireless/ray*
17400 RC-CORE / LIRC FRAMEWORK
17401 M: Sean Young <sean@mess.org>
17402 L: linux-media@vger.kernel.org
17404 W: http://linuxtv.org
17405 T: git git://linuxtv.org/media_tree.git
17406 F: Documentation/driver-api/media/rc-core.rst
17407 F: Documentation/userspace-api/media/rc/
17408 F: drivers/media/rc/
17409 F: include/media/rc-map.h
17410 F: include/media/rc-core.h
17411 F: include/uapi/linux/lirc.h
17413 RCMM REMOTE CONTROLS DECODER
17414 M: Patrick Lerda <patrick9876@free.fr>
17416 F: drivers/media/rc/ir-rcmm-decoder.c
17418 RCUTORTURE TEST FRAMEWORK
17419 M: "Paul E. McKenney" <paulmck@kernel.org>
17420 M: Josh Triplett <josh@joshtriplett.org>
17421 R: Steven Rostedt <rostedt@goodmis.org>
17422 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17423 R: Lai Jiangshan <jiangshanlai@gmail.com>
17424 L: rcu@vger.kernel.org
17426 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17427 F: tools/testing/selftests/rcutorture
17429 RDACM20 Camera Sensor
17430 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
17431 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17432 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17433 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17434 L: linux-media@vger.kernel.org
17436 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17437 F: drivers/media/i2c/max9271.c
17438 F: drivers/media/i2c/max9271.h
17439 F: drivers/media/i2c/rdacm20.c
17441 RDACM21 Camera Sensor
17442 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
17443 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17444 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17445 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17446 L: linux-media@vger.kernel.org
17448 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17449 F: drivers/media/i2c/max9271.c
17450 F: drivers/media/i2c/max9271.h
17451 F: drivers/media/i2c/rdacm21.c
17454 M: Florian Fainelli <florian@openwrt.org>
17457 RDC R6040 FAST ETHERNET DRIVER
17458 M: Florian Fainelli <f.fainelli@gmail.com>
17459 L: netdev@vger.kernel.org
17461 F: drivers/net/ethernet/rdc/r6040.c
17463 RDMAVT - RDMA verbs software
17464 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17465 L: linux-rdma@vger.kernel.org
17467 F: drivers/infiniband/sw/rdmavt
17469 RDS - RELIABLE DATAGRAM SOCKETS
17470 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
17471 L: netdev@vger.kernel.org
17472 L: linux-rdma@vger.kernel.org
17473 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
17475 W: https://oss.oracle.com/projects/rds/
17476 F: Documentation/networking/rds.rst
17479 RDT - RESOURCE ALLOCATION
17480 M: Fenghua Yu <fenghua.yu@intel.com>
17481 M: Reinette Chatre <reinette.chatre@intel.com>
17482 L: linux-kernel@vger.kernel.org
17484 F: Documentation/x86/resctrl*
17485 F: arch/x86/include/asm/resctrl.h
17486 F: arch/x86/kernel/cpu/resctrl/
17487 F: tools/testing/selftests/resctrl/
17489 READ-COPY UPDATE (RCU)
17490 M: "Paul E. McKenney" <paulmck@kernel.org>
17491 M: Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17492 M: Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17493 M: Josh Triplett <josh@joshtriplett.org>
17494 R: Steven Rostedt <rostedt@goodmis.org>
17495 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17496 R: Lai Jiangshan <jiangshanlai@gmail.com>
17497 R: Joel Fernandes <joel@joelfernandes.org>
17498 L: rcu@vger.kernel.org
17500 W: http://www.rdrop.com/users/paulmck/RCU/
17501 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17502 F: Documentation/RCU/
17503 F: include/linux/rcu*
17505 X: Documentation/RCU/torture.rst
17506 X: include/linux/srcu*.h
17507 X: kernel/rcu/srcu*.c
17509 REAL TIME CLOCK (RTC) SUBSYSTEM
17510 M: Alessandro Zummo <a.zummo@towertech.it>
17511 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
17512 L: linux-rtc@vger.kernel.org
17514 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
17515 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17516 F: Documentation/admin-guide/rtc.rst
17517 F: Documentation/devicetree/bindings/rtc/
17519 F: include/linux/platform_data/rtc-*
17520 F: include/linux/rtc.h
17521 F: include/linux/rtc/
17522 F: include/uapi/linux/rtc.h
17523 F: tools/testing/selftests/rtc/
17525 REALTEK AUDIO CODECS
17526 M: Oder Chiou <oder_chiou@realtek.com>
17528 F: include/sound/rt*.h
17529 F: sound/soc/codecs/rt*
17531 REALTEK OTTO WATCHDOG
17532 M: Sander Vanheule <sander@svanheule.net>
17533 L: linux-watchdog@vger.kernel.org
17535 F: Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17536 F: drivers/watchdog/realtek_otto_wdt.c
17538 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17539 M: Linus Walleij <linus.walleij@linaro.org>
17540 M: Alvin Šipraga <alsi@bang-olufsen.dk>
17542 F: Documentation/devicetree/bindings/net/dsa/realtek.yaml
17543 F: drivers/net/dsa/realtek/*
17545 REALTEK WIRELESS DRIVER (rtlwifi family)
17546 M: Ping-Ke Shih <pkshih@realtek.com>
17547 L: linux-wireless@vger.kernel.org
17549 W: https://wireless.wiki.kernel.org/
17550 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17551 F: drivers/net/wireless/realtek/rtlwifi/
17553 REALTEK WIRELESS DRIVER (rtw88)
17554 M: Yan-Hsuan Chuang <tony0620emma@gmail.com>
17555 L: linux-wireless@vger.kernel.org
17557 F: drivers/net/wireless/realtek/rtw88/
17559 REALTEK WIRELESS DRIVER (rtw89)
17560 M: Ping-Ke Shih <pkshih@realtek.com>
17561 L: linux-wireless@vger.kernel.org
17563 F: drivers/net/wireless/realtek/rtw89/
17565 REDPINE WIRELESS DRIVER
17566 L: linux-wireless@vger.kernel.org
17568 F: drivers/net/wireless/rsi/
17570 REGISTER MAP ABSTRACTION
17571 M: Mark Brown <broonie@kernel.org>
17572 L: linux-kernel@vger.kernel.org
17574 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17575 F: Documentation/devicetree/bindings/regmap/
17576 F: drivers/base/regmap/
17577 F: include/linux/regmap.h
17579 REISERFS FILE SYSTEM
17580 L: reiserfs-devel@vger.kernel.org
17584 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17585 M: Bjorn Andersson <andersson@kernel.org>
17586 M: Mathieu Poirier <mathieu.poirier@linaro.org>
17587 L: linux-remoteproc@vger.kernel.org
17589 T: git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17590 F: Documentation/ABI/testing/sysfs-class-remoteproc
17591 F: Documentation/devicetree/bindings/remoteproc/
17592 F: Documentation/staging/remoteproc.rst
17593 F: drivers/remoteproc/
17594 F: include/linux/remoteproc.h
17595 F: include/linux/remoteproc/
17597 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17598 M: Bjorn Andersson <andersson@kernel.org>
17599 M: Mathieu Poirier <mathieu.poirier@linaro.org>
17600 L: linux-remoteproc@vger.kernel.org
17602 T: git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17603 F: Documentation/ABI/testing/sysfs-bus-rpmsg
17604 F: Documentation/staging/rpmsg.rst
17606 F: include/linux/rpmsg.h
17607 F: include/linux/rpmsg/
17608 F: include/uapi/linux/rpmsg.h
17611 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17612 M: Stephan Gerhold <stephan@gerhold.net>
17613 L: netdev@vger.kernel.org
17614 L: linux-remoteproc@vger.kernel.org
17616 F: drivers/net/wwan/rpmsg_wwan_ctrl.c
17618 RENESAS CLOCK DRIVERS
17619 M: Geert Uytterhoeven <geert+renesas@glider.be>
17620 L: linux-renesas-soc@vger.kernel.org
17622 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17623 F: Documentation/devicetree/bindings/clock/renesas,*
17624 F: drivers/clk/renesas/
17626 RENESAS EMEV2 I2C DRIVER
17627 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
17628 L: linux-renesas-soc@vger.kernel.org
17630 F: Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17631 F: drivers/i2c/busses/i2c-emev2.c
17633 RENESAS ETHERNET DRIVERS
17634 R: Sergey Shtylyov <s.shtylyov@omp.ru>
17635 L: netdev@vger.kernel.org
17636 L: linux-renesas-soc@vger.kernel.org
17637 F: Documentation/devicetree/bindings/net/renesas,*.yaml
17638 F: drivers/net/ethernet/renesas/
17639 F: include/linux/sh_eth.h
17641 RENESAS R-CAR GYROADC DRIVER
17642 M: Marek Vasut <marek.vasut@gmail.com>
17643 L: linux-iio@vger.kernel.org
17645 F: Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17646 F: drivers/iio/adc/rcar-gyroadc.c
17648 RENESAS R-CAR I2C DRIVERS
17649 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
17650 L: linux-renesas-soc@vger.kernel.org
17652 F: Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17653 F: Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17654 F: drivers/i2c/busses/i2c-rcar.c
17655 F: drivers/i2c/busses/i2c-sh_mobile.c
17657 RENESAS R-CAR SATA DRIVER
17658 R: Sergey Shtylyov <s.shtylyov@omp.ru>
17660 L: linux-ide@vger.kernel.org
17661 L: linux-renesas-soc@vger.kernel.org
17662 F: Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17663 F: drivers/ata/sata_rcar.c
17665 RENESAS R-CAR THERMAL DRIVERS
17666 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
17667 L: linux-renesas-soc@vger.kernel.org
17669 F: Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17670 F: Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17671 F: drivers/thermal/rcar_gen3_thermal.c
17672 F: drivers/thermal/rcar_thermal.c
17674 RENESAS RIIC DRIVER
17675 M: Chris Brandt <chris.brandt@renesas.com>
17676 L: linux-renesas-soc@vger.kernel.org
17678 F: Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17679 F: drivers/i2c/busses/i2c-riic.c
17681 RENESAS USB PHY DRIVER
17682 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17683 L: linux-renesas-soc@vger.kernel.org
17685 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
17687 RENESAS RZ/G2L A/D DRIVER
17688 M: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17689 L: linux-iio@vger.kernel.org
17690 L: linux-renesas-soc@vger.kernel.org
17692 F: Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17693 F: drivers/iio/adc/rzg2l_adc.c
17695 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17696 M: Clément Léger <clement.leger@bootlin.com>
17697 L: linux-renesas-soc@vger.kernel.org
17698 L: netdev@vger.kernel.org
17700 F: Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17701 F: Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17702 F: drivers/net/dsa/rzn1_a5psw*
17703 F: drivers/net/pcs/pcs-rzn1-miic.c
17704 F: include/dt-bindings/net/pcs-rzn1-miic.h
17705 F: include/linux/pcs-rzn1-miic.h
17706 F: net/dsa/tag_rzn1_a5psw.c
17708 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17709 M: Miquel Raynal <miquel.raynal@bootlin.com>
17710 L: linux-rtc@vger.kernel.org
17711 L: linux-renesas-soc@vger.kernel.org
17713 F: Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17714 F: drivers/rtc/rtc-rzn1.c
17716 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17717 M: Miquel Raynal <miquel.raynal@bootlin.com>
17718 L: linux-mtd@lists.infradead.org
17719 L: linux-renesas-soc@vger.kernel.org
17721 F: Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17722 F: drivers/mtd/nand/raw/renesas-nand-controller.c
17724 RENESAS VERSACLOCK 7 CLOCK DRIVER
17725 M: Alex Helms <alexander.helms.jy@renesas.com>
17727 F: Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17728 F: drivers/clk/clk-versaclock7.c
17730 RESET CONTROLLER FRAMEWORK
17731 M: Philipp Zabel <p.zabel@pengutronix.de>
17733 T: git git://git.pengutronix.de/git/pza/linux
17734 F: Documentation/devicetree/bindings/reset/
17735 F: Documentation/driver-api/reset.rst
17737 F: include/dt-bindings/reset/
17738 F: include/linux/reset-controller.h
17739 F: include/linux/reset.h
17740 F: include/linux/reset/
17741 K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17743 RESTARTABLE SEQUENCES SUPPORT
17744 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17745 M: Peter Zijlstra <peterz@infradead.org>
17746 M: "Paul E. McKenney" <paulmck@kernel.org>
17747 M: Boqun Feng <boqun.feng@gmail.com>
17748 L: linux-kernel@vger.kernel.org
17750 F: include/trace/events/rseq.h
17751 F: include/uapi/linux/rseq.h
17753 F: tools/testing/selftests/rseq/
17756 M: Johannes Berg <johannes@sipsolutions.net>
17757 L: linux-wireless@vger.kernel.org
17759 W: https://wireless.wiki.kernel.org/
17760 Q: https://patchwork.kernel.org/project/linux-wireless/list/
17761 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17762 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17763 F: Documentation/ABI/stable/sysfs-class-rfkill
17764 F: Documentation/driver-api/rfkill.rst
17765 F: include/linux/rfkill.h
17766 F: include/uapi/linux/rfkill.h
17770 M: Thomas Graf <tgraf@suug.ch>
17771 M: Herbert Xu <herbert@gondor.apana.org.au>
17772 L: netdev@vger.kernel.org
17774 F: include/linux/rhashtable-types.h
17775 F: include/linux/rhashtable.h
17776 F: lib/rhashtable.c
17777 F: lib/test_rhashtable.c
17779 RICOH R5C592 MEMORYSTICK DRIVER
17780 M: Maxim Levitsky <maximlevitsky@gmail.com>
17782 F: drivers/memstick/host/r592.*
17784 RICOH SMARTMEDIA/XD DRIVER
17785 M: Maxim Levitsky <maximlevitsky@gmail.com>
17787 F: drivers/mtd/nand/raw/r852.c
17788 F: drivers/mtd/nand/raw/r852.h
17791 M: Atish Patra <atishp@atishpatra.org>
17792 R: Anup Patel <anup@brainfault.org>
17793 L: linux-riscv@lists.infradead.org
17795 F: drivers/perf/riscv_pmu.c
17796 F: drivers/perf/riscv_pmu_legacy.c
17797 F: drivers/perf/riscv_pmu_sbi.c
17799 RISC-V ARCHITECTURE
17800 M: Paul Walmsley <paul.walmsley@sifive.com>
17801 M: Palmer Dabbelt <palmer@dabbelt.com>
17802 M: Albert Ou <aou@eecs.berkeley.edu>
17803 L: linux-riscv@lists.infradead.org
17805 Q: https://patchwork.kernel.org/project/linux-riscv/list/
17806 C: irc://irc.libera.chat/riscv
17807 P: Documentation/riscv/patch-acceptance.rst
17808 T: git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17813 RISC-V MICROCHIP FPGA SUPPORT
17814 M: Conor Dooley <conor.dooley@microchip.com>
17815 M: Daire McNamara <daire.mcnamara@microchip.com>
17816 L: linux-riscv@lists.infradead.org
17818 F: Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
17819 F: Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
17820 F: Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
17821 F: Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
17822 F: Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
17823 F: Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
17824 F: Documentation/devicetree/bindings/riscv/microchip.yaml
17825 F: Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
17826 F: Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
17827 F: Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
17828 F: arch/riscv/boot/dts/microchip/
17829 F: drivers/char/hw_random/mpfs-rng.c
17830 F: drivers/clk/microchip/clk-mpfs.c
17831 F: drivers/i2c/busses/i2c-microchip-corei2c.c
17832 F: drivers/mailbox/mailbox-mpfs.c
17833 F: drivers/pci/controller/pcie-microchip-host.c
17834 F: drivers/reset/reset-mpfs.c
17835 F: drivers/rtc/rtc-mpfs.c
17836 F: drivers/soc/microchip/mpfs-sys-controller.c
17837 F: drivers/spi/spi-microchip-core-qspi.c
17838 F: drivers/spi/spi-microchip-core.c
17839 F: drivers/usb/musb/mpfs.c
17840 F: include/soc/microchip/mpfs.h
17842 RISC-V MISC SOC SUPPORT
17843 M: Conor Dooley <conor@kernel.org>
17844 L: linux-riscv@lists.infradead.org
17846 Q: https://patchwork.kernel.org/project/linux-riscv/list/
17847 T: git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
17848 F: Documentation/devicetree/bindings/riscv/
17849 F: arch/riscv/boot/dts/
17852 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
17853 M: Jack Wang <jinpu.wang@ionos.com>
17854 L: linux-block@vger.kernel.org
17856 F: drivers/block/rnbd/
17859 M: Stefan Achatz <erazor_de@users.sourceforge.net>
17861 W: http://sourceforge.net/projects/roccat/
17862 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
17863 F: drivers/hid/hid-roccat*
17864 F: include/linux/hid-roccat*
17866 ROCKCHIP CRYPTO DRIVERS
17867 M: Corentin Labbe <clabbe@baylibre.com>
17868 L: linux-crypto@vger.kernel.org
17870 F: Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
17871 F: drivers/crypto/rockchip/
17873 ROCKCHIP I2S TDM DRIVER
17874 M: Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17875 L: linux-rockchip@lists.infradead.org
17877 F: Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17878 F: sound/soc/rockchip/rockchip_i2s_tdm.*
17880 ROCKCHIP ISP V1 DRIVER
17881 M: Dafna Hirschfeld <dafna@fastmail.com>
17882 L: linux-media@vger.kernel.org
17883 L: linux-rockchip@lists.infradead.org
17885 F: Documentation/admin-guide/media/rkisp1.rst
17886 F: Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17887 F: Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17888 F: drivers/media/platform/rockchip/rkisp1
17889 F: include/uapi/linux/rkisp1-config.h
17891 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17892 M: Jacob Chen <jacob-chen@iotwrt.com>
17893 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17894 L: linux-media@vger.kernel.org
17895 L: linux-rockchip@lists.infradead.org
17897 F: Documentation/devicetree/bindings/media/rockchip-rga.yaml
17898 F: drivers/media/platform/rockchip/rga/
17900 ROCKCHIP VIDEO DECODER DRIVER
17901 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17902 L: linux-media@vger.kernel.org
17903 L: linux-rockchip@lists.infradead.org
17905 F: Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17906 F: drivers/staging/media/rkvdec/
17909 M: Jiri Pirko <jiri@resnulli.us>
17910 L: netdev@vger.kernel.org
17912 F: drivers/net/ethernet/rocker/
17914 ROCKETPORT EXPRESS/INFINITY DRIVER
17915 M: Kevin Cernekee <cernekee@gmail.com>
17916 L: linux-serial@vger.kernel.org
17918 F: drivers/tty/serial/rp2.*
17920 ROHM BD99954 CHARGER IC
17921 M: Matti Vaittinen <mazziesaccount@gmail.com>
17923 F: drivers/power/supply/bd99954-charger.c
17924 F: drivers/power/supply/bd99954-charger.h
17926 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17927 M: Tomasz Duszynski <tduszyns@gmail.com>
17929 F: Documentation/devicetree/bindings/iio/light/bh1750.yaml
17930 F: drivers/iio/light/bh1750.c
17932 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17933 M: Marek Vasut <marek.vasut+renesas@gmail.com>
17934 L: linux-kernel@vger.kernel.org
17935 L: linux-renesas-soc@vger.kernel.org
17937 F: Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17938 F: drivers/gpio/gpio-bd9571mwv.c
17939 F: drivers/mfd/bd9571mwv.c
17940 F: drivers/regulator/bd9571mwv-regulator.c
17941 F: include/linux/mfd/bd9571mwv.h
17943 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17944 M: Matti Vaittinen <mazziesaccount@gmail.com>
17946 F: drivers/clk/clk-bd718x7.c
17947 F: drivers/gpio/gpio-bd71815.c
17948 F: drivers/gpio/gpio-bd71828.c
17949 F: drivers/mfd/rohm-bd71828.c
17950 F: drivers/mfd/rohm-bd718x7.c
17951 F: drivers/mfd/rohm-bd9576.c
17952 F: drivers/regulator/bd71815-regulator.c
17953 F: drivers/regulator/bd71828-regulator.c
17954 F: drivers/regulator/bd718x7-regulator.c
17955 F: drivers/regulator/bd9576-regulator.c
17956 F: drivers/regulator/rohm-regulator.c
17957 F: drivers/rtc/rtc-bd70528.c
17958 F: drivers/watchdog/bd9576_wdt.c
17959 F: include/linux/mfd/rohm-bd71815.h
17960 F: include/linux/mfd/rohm-bd71828.h
17961 F: include/linux/mfd/rohm-bd718x7.h
17962 F: include/linux/mfd/rohm-bd957x.h
17963 F: include/linux/mfd/rohm-generic.h
17964 F: include/linux/mfd/rohm-shared.h
17967 M: Ralf Baechle <ralf@linux-mips.org>
17968 L: linux-hams@vger.kernel.org
17970 W: http://www.linux-ax25.org/
17971 F: include/net/rose.h
17972 F: include/uapi/linux/rose.h
17975 ROTATION DRIVER FOR ALLWINNER A83T
17976 M: Jernej Skrabec <jernej.skrabec@gmail.com>
17977 L: linux-media@vger.kernel.org
17979 T: git git://linuxtv.org/media_tree.git
17980 F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17981 F: drivers/media/platform/sunxi/sun8i-rotate/
17984 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17985 L: linux-remoteproc@vger.kernel.org
17987 F: drivers/tty/rpmsg_tty.c
17989 RTL2830 MEDIA DRIVER
17990 M: Antti Palosaari <crope@iki.fi>
17991 L: linux-media@vger.kernel.org
17993 W: https://linuxtv.org
17994 W: http://palosaari.fi/linux/
17995 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17996 T: git git://linuxtv.org/anttip/media_tree.git
17997 F: drivers/media/dvb-frontends/rtl2830*
17999 RTL2832 MEDIA DRIVER
18000 M: Antti Palosaari <crope@iki.fi>
18001 L: linux-media@vger.kernel.org
18003 W: https://linuxtv.org
18004 W: http://palosaari.fi/linux/
18005 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18006 T: git git://linuxtv.org/anttip/media_tree.git
18007 F: drivers/media/dvb-frontends/rtl2832*
18009 RTL2832_SDR MEDIA DRIVER
18010 M: Antti Palosaari <crope@iki.fi>
18011 L: linux-media@vger.kernel.org
18013 W: https://linuxtv.org
18014 W: http://palosaari.fi/linux/
18015 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18016 T: git git://linuxtv.org/anttip/media_tree.git
18017 F: drivers/media/dvb-frontends/rtl2832_sdr*
18019 RTL8180 WIRELESS DRIVER
18020 L: linux-wireless@vger.kernel.org
18022 W: https://wireless.wiki.kernel.org/
18023 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18024 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
18026 RTL8187 WIRELESS DRIVER
18027 M: Herton Ronaldo Krzesinski <herton@canonical.com>
18028 M: Hin-Tak Leung <htl10@users.sourceforge.net>
18029 M: Larry Finger <Larry.Finger@lwfinger.net>
18030 L: linux-wireless@vger.kernel.org
18032 W: https://wireless.wiki.kernel.org/
18033 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18034 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
18036 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18037 M: Jes Sorensen <Jes.Sorensen@gmail.com>
18038 L: linux-wireless@vger.kernel.org
18040 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18041 F: drivers/net/wireless/realtek/rtl8xxxu/
18043 RTRS TRANSPORT DRIVERS
18044 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
18045 M: Jack Wang <jinpu.wang@ionos.com>
18046 L: linux-rdma@vger.kernel.org
18048 F: drivers/infiniband/ulp/rtrs/
18050 RUNTIME VERIFICATION (RV)
18051 M: Daniel Bristot de Oliveira <bristot@kernel.org>
18052 M: Steven Rostedt <rostedt@goodmis.org>
18053 L: linux-trace-devel@vger.kernel.org
18055 F: Documentation/trace/rv/
18056 F: include/linux/rv.h
18058 F: kernel/trace/rv/
18059 F: tools/verification/
18062 M: Miguel Ojeda <ojeda@kernel.org>
18063 M: Alex Gaynor <alex.gaynor@gmail.com>
18064 M: Wedson Almeida Filho <wedsonaf@gmail.com>
18065 R: Boqun Feng <boqun.feng@gmail.com>
18066 R: Gary Guo <gary@garyguo.net>
18067 R: Björn Roy Baron <bjorn3_gh@protonmail.com>
18068 L: rust-for-linux@vger.kernel.org
18070 W: https://github.com/Rust-for-Linux/linux
18071 B: https://github.com/Rust-for-Linux/linux/issues
18072 C: zulip://rust-for-linux.zulipchat.com
18073 T: git https://github.com/Rust-for-Linux/linux.git rust-next
18074 F: Documentation/rust/
18080 RXRPC SOCKETS (AF_RXRPC)
18081 M: David Howells <dhowells@redhat.com>
18082 M: Marc Dionne <marc.dionne@auristor.com>
18083 L: linux-afs@lists.infradead.org
18085 W: https://www.infradead.org/~dhowells/kafs/
18086 F: Documentation/networking/rxrpc.rst
18087 F: include/keys/rxrpc-type.h
18088 F: include/net/af_rxrpc.h
18089 F: include/trace/events/rxrpc.h
18090 F: include/uapi/linux/rxrpc.h
18093 S3 SAVAGE FRAMEBUFFER DRIVER
18094 M: Antonino Daplas <adaplas@gmail.com>
18095 L: linux-fbdev@vger.kernel.org
18097 F: drivers/video/fbdev/savage/
18100 M: Heiko Carstens <hca@linux.ibm.com>
18101 M: Vasily Gorbik <gor@linux.ibm.com>
18102 M: Alexander Gordeev <agordeev@linux.ibm.com>
18103 R: Christian Borntraeger <borntraeger@linux.ibm.com>
18104 R: Sven Schnelle <svens@linux.ibm.com>
18105 L: linux-s390@vger.kernel.org
18107 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18108 F: Documentation/driver-api/s390-drivers.rst
18109 F: Documentation/s390/
18113 S390 COMMON I/O LAYER
18114 M: Vineeth Vijayan <vneethv@linux.ibm.com>
18115 M: Peter Oberparleiter <oberpar@linux.ibm.com>
18116 L: linux-s390@vger.kernel.org
18118 F: drivers/s390/cio/
18121 M: Stefan Haberland <sth@linux.ibm.com>
18122 M: Jan Hoeppner <hoeppner@linux.ibm.com>
18123 L: linux-s390@vger.kernel.org
18125 F: block/partitions/ibm.c
18126 F: drivers/s390/block/dasd*
18127 F: include/linux/dasd_mod.h
18130 M: Matthew Rosato <mjrosato@linux.ibm.com>
18131 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18132 L: linux-s390@vger.kernel.org
18134 F: drivers/iommu/s390-iommu.c
18136 S390 IUCV NETWORK LAYER
18137 M: Alexandra Winter <wintera@linux.ibm.com>
18138 M: Wenjia Zhang <wenjia@linux.ibm.com>
18139 L: linux-s390@vger.kernel.org
18140 L: netdev@vger.kernel.org
18142 F: drivers/s390/net/*iucv*
18143 F: include/net/iucv/
18146 S390 NETWORK DRIVERS
18147 M: Alexandra Winter <wintera@linux.ibm.com>
18148 M: Wenjia Zhang <wenjia@linux.ibm.com>
18149 L: linux-s390@vger.kernel.org
18150 L: netdev@vger.kernel.org
18152 F: drivers/s390/net/
18155 M: Alexander Gordeev <agordeev@linux.ibm.com>
18156 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18157 L: linux-s390@vger.kernel.org
18159 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18160 F: arch/s390/include/asm/pgtable.h
18164 M: Niklas Schnelle <schnelle@linux.ibm.com>
18165 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18166 L: linux-s390@vger.kernel.org
18169 F: drivers/pci/hotplug/s390_pci_hpc.c
18170 F: Documentation/s390/pci.rst
18172 S390 VFIO AP DRIVER
18173 M: Tony Krowiak <akrowiak@linux.ibm.com>
18174 M: Halil Pasic <pasic@linux.ibm.com>
18175 M: Jason Herne <jjherne@linux.ibm.com>
18176 L: linux-s390@vger.kernel.org
18178 F: Documentation/s390/vfio-ap*
18179 F: drivers/s390/crypto/vfio_ap*
18181 S390 VFIO-CCW DRIVER
18182 M: Eric Farman <farman@linux.ibm.com>
18183 M: Matthew Rosato <mjrosato@linux.ibm.com>
18184 R: Halil Pasic <pasic@linux.ibm.com>
18185 L: linux-s390@vger.kernel.org
18186 L: kvm@vger.kernel.org
18188 F: Documentation/s390/vfio-ccw.rst
18189 F: drivers/s390/cio/vfio_ccw*
18190 F: include/uapi/linux/vfio_ccw.h
18192 S390 VFIO-PCI DRIVER
18193 M: Matthew Rosato <mjrosato@linux.ibm.com>
18194 M: Eric Farman <farman@linux.ibm.com>
18195 L: linux-s390@vger.kernel.org
18196 L: kvm@vger.kernel.org
18198 F: arch/s390/kvm/pci*
18199 F: drivers/vfio/pci/vfio_pci_zdev.c
18200 F: include/uapi/linux/vfio_zdev.h
18203 M: Harald Freudenberger <freude@linux.ibm.com>
18204 L: linux-s390@vger.kernel.org
18206 F: drivers/s390/crypto/
18209 M: Steffen Maier <maier@linux.ibm.com>
18210 M: Benjamin Block <bblock@linux.ibm.com>
18211 L: linux-s390@vger.kernel.org
18213 F: drivers/s390/scsi/zfcp_*
18215 SAA6588 RDS RECEIVER DRIVER
18216 M: Hans Verkuil <hverkuil@xs4all.nl>
18217 L: linux-media@vger.kernel.org
18219 W: https://linuxtv.org
18220 T: git git://linuxtv.org/media_tree.git
18221 F: drivers/media/i2c/saa6588*
18223 SAA7134 VIDEO4LINUX DRIVER
18224 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18225 L: linux-media@vger.kernel.org
18227 W: https://linuxtv.org
18228 T: git git://linuxtv.org/media_tree.git
18229 F: Documentation/driver-api/media/drivers/saa7134*
18230 F: drivers/media/pci/saa7134/
18232 SAA7146 VIDEO4LINUX-2 DRIVER
18233 M: Hans Verkuil <hverkuil@xs4all.nl>
18234 L: linux-media@vger.kernel.org
18236 T: git git://linuxtv.org/media_tree.git
18237 F: drivers/staging/media/deprecated/saa7146/
18239 SAFESETID SECURITY MODULE
18240 M: Micah Morton <mortonm@chromium.org>
18242 F: Documentation/admin-guide/LSM/SafeSetID.rst
18243 F: security/safesetid/
18245 SAMSUNG AUDIO (ASoC) DRIVERS
18246 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18247 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
18248 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18250 B: mailto:linux-samsung-soc@vger.kernel.org
18251 F: Documentation/devicetree/bindings/sound/samsung*
18252 F: sound/soc/samsung/
18254 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18255 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18256 L: linux-crypto@vger.kernel.org
18257 L: linux-samsung-soc@vger.kernel.org
18259 F: Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18260 F: drivers/crypto/exynos-rng.c
18262 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18263 M: Łukasz Stelmach <l.stelmach@samsung.com>
18264 L: linux-samsung-soc@vger.kernel.org
18266 F: Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18267 F: drivers/char/hw_random/exynos-trng.c
18269 SAMSUNG FRAMEBUFFER DRIVER
18270 M: Jingoo Han <jingoohan1@gmail.com>
18271 L: linux-fbdev@vger.kernel.org
18273 F: drivers/video/fbdev/s3c-fb.c
18275 SAMSUNG INTERCONNECT DRIVERS
18276 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
18277 M: Artur Świgoń <a.swigon@samsung.com>
18278 L: linux-pm@vger.kernel.org
18279 L: linux-samsung-soc@vger.kernel.org
18281 F: drivers/interconnect/samsung/
18283 SAMSUNG LAPTOP DRIVER
18284 M: Corentin Chary <corentin.chary@gmail.com>
18285 L: platform-driver-x86@vger.kernel.org
18287 F: drivers/platform/x86/samsung-laptop.c
18289 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18290 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18291 L: linux-kernel@vger.kernel.org
18292 L: linux-samsung-soc@vger.kernel.org
18294 B: mailto:linux-samsung-soc@vger.kernel.org
18295 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18296 F: Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18297 F: Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18298 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18299 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18300 F: drivers/clk/clk-s2mps11.c
18301 F: drivers/mfd/sec*.c
18302 F: drivers/regulator/s2m*.c
18303 F: drivers/regulator/s5m*.c
18304 F: drivers/rtc/rtc-s5m.c
18305 F: include/linux/mfd/samsung/
18307 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18308 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18309 L: linux-media@vger.kernel.org
18310 L: linux-samsung-soc@vger.kernel.org
18312 F: drivers/media/platform/samsung/s3c-camif/
18313 F: include/media/drv-intf/s3c_camif.h
18315 SAMSUNG S3FWRN5 NFC DRIVER
18316 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18317 L: linux-nfc@lists.01.org (subscribers-only)
18319 F: Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18320 F: drivers/nfc/s3fwrn5
18322 SAMSUNG S5C73M3 CAMERA DRIVER
18323 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
18324 M: Andrzej Hajda <andrzej.hajda@intel.com>
18325 L: linux-media@vger.kernel.org
18327 F: drivers/media/i2c/s5c73m3/*
18329 SAMSUNG S5K5BAF CAMERA DRIVER
18330 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
18331 M: Andrzej Hajda <andrzej.hajda@intel.com>
18332 L: linux-media@vger.kernel.org
18334 F: drivers/media/i2c/s5k5baf.c
18336 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18337 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18338 M: Vladimir Zapolskiy <vz@mleia.com>
18339 L: linux-crypto@vger.kernel.org
18340 L: linux-samsung-soc@vger.kernel.org
18342 F: Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18343 F: Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18344 F: drivers/crypto/s5p-sss.c
18346 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18347 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
18348 L: linux-media@vger.kernel.org
18350 Q: https://patchwork.linuxtv.org/project/linux-media/list/
18351 F: drivers/media/platform/samsung/exynos4-is/
18353 SAMSUNG SOC CLOCK DRIVERS
18354 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18355 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
18356 M: Tomasz Figa <tomasz.figa@gmail.com>
18357 M: Chanwoo Choi <cw00.choi@samsung.com>
18358 R: Alim Akhtar <alim.akhtar@samsung.com>
18359 L: linux-samsung-soc@vger.kernel.org
18361 T: git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18363 F: Documentation/devicetree/bindings/clock/samsung,*.yaml
18364 F: Documentation/devicetree/bindings/clock/samsung,s3c*
18365 F: drivers/clk/samsung/
18366 F: include/dt-bindings/clock/exynos*.h
18367 F: include/dt-bindings/clock/s5p*.h
18368 F: include/dt-bindings/clock/samsung,*.h
18369 F: include/linux/clk/samsung.h
18371 SAMSUNG SPI DRIVERS
18372 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18373 M: Andi Shyti <andi@etezian.org>
18374 L: linux-spi@vger.kernel.org
18375 L: linux-samsung-soc@vger.kernel.org
18377 F: Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18378 F: drivers/spi/spi-s3c*
18379 F: include/linux/platform_data/spi-s3c64xx.h
18381 SAMSUNG SXGBE DRIVERS
18382 M: Byungho An <bh74.an@samsung.com>
18383 L: netdev@vger.kernel.org
18385 F: drivers/net/ethernet/samsung/sxgbe/
18387 SAMSUNG THERMAL DRIVER
18388 M: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18389 M: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18390 L: linux-pm@vger.kernel.org
18391 L: linux-samsung-soc@vger.kernel.org
18393 F: Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18394 F: drivers/thermal/samsung/
18396 SAMSUNG USB2 PHY DRIVER
18397 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
18398 L: linux-kernel@vger.kernel.org
18400 F: Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18401 F: Documentation/driver-api/phy/samsung-usb2.rst
18402 F: drivers/phy/samsung/phy-exynos4210-usb2.c
18403 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
18404 F: drivers/phy/samsung/phy-exynos5250-usb2.c
18405 F: drivers/phy/samsung/phy-s5pv210-usb2.c
18406 F: drivers/phy/samsung/phy-samsung-usb2.c
18407 F: drivers/phy/samsung/phy-samsung-usb2.h
18409 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18410 M: Paul Barker <paul.barker@sancloud.com>
18411 R: Marc Murphy <marc.murphy@sancloud.com>
18413 F: arch/arm/boot/dts/am335x-sancloud*
18416 M: Zwane Mwaikambo <zwanem@gmail.com>
18418 F: drivers/watchdog/sc1200wdt.c
18421 M: Ingo Molnar <mingo@redhat.com>
18422 M: Peter Zijlstra <peterz@infradead.org>
18423 M: Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18424 M: Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18425 R: Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18426 R: Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18427 R: Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18428 R: Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18429 R: Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18430 R: Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18431 L: linux-kernel@vger.kernel.org
18433 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18434 F: include/linux/preempt.h
18435 F: include/linux/sched.h
18436 F: include/linux/wait.h
18437 F: include/uapi/linux/sched.h
18440 SCR24X CHIP CARD INTERFACE DRIVER
18441 M: Lubomir Rintel <lkundrak@v3.sk>
18443 F: drivers/char/pcmcia/scr24x_cs.c
18445 SCSI RDMA PROTOCOL (SRP) INITIATOR
18446 M: Bart Van Assche <bvanassche@acm.org>
18447 L: linux-rdma@vger.kernel.org
18449 Q: http://patchwork.kernel.org/project/linux-rdma/list/
18450 F: drivers/infiniband/ulp/srp/
18451 F: include/scsi/srp.h
18453 SCSI RDMA PROTOCOL (SRP) TARGET
18454 M: Bart Van Assche <bvanassche@acm.org>
18455 L: linux-rdma@vger.kernel.org
18456 L: target-devel@vger.kernel.org
18458 Q: http://patchwork.kernel.org/project/linux-rdma/list/
18459 F: drivers/infiniband/ulp/srpt/
18462 M: Doug Gilbert <dgilbert@interlog.com>
18463 L: linux-scsi@vger.kernel.org
18465 W: http://sg.danny.cz/sg
18466 F: Documentation/scsi/scsi-generic.rst
18467 F: drivers/scsi/sg.c
18468 F: include/scsi/sg.h
18471 M: "James E.J. Bottomley" <jejb@linux.ibm.com>
18472 M: "Martin K. Petersen" <martin.petersen@oracle.com>
18473 L: linux-scsi@vger.kernel.org
18475 Q: https://patchwork.kernel.org/project/linux-scsi/list/
18476 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18477 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18478 F: Documentation/devicetree/bindings/scsi/
18484 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18485 L: linux-scsi@vger.kernel.org
18487 F: Documentation/scsi/st.rst
18488 F: drivers/scsi/st.*
18489 F: drivers/scsi/st_*.h
18491 SCSI TARGET CORE USER DRIVER
18492 M: Bodo Stroesser <bostroesser@gmail.com>
18493 L: linux-scsi@vger.kernel.org
18494 L: target-devel@vger.kernel.org
18496 F: Documentation/target/tcmu-design.rst
18497 F: drivers/target/target_core_user.c
18498 F: include/uapi/linux/target_core_user.h
18500 SCSI TARGET SUBSYSTEM
18501 M: "Martin K. Petersen" <martin.petersen@oracle.com>
18502 L: linux-scsi@vger.kernel.org
18503 L: target-devel@vger.kernel.org
18505 W: http://www.linux-iscsi.org
18506 Q: https://patchwork.kernel.org/project/target-devel/list/
18507 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18508 F: Documentation/target/
18513 M: Neil Horman <nhorman@tuxdriver.com>
18514 M: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18515 M: Xin Long <lucien.xin@gmail.com>
18516 L: linux-sctp@vger.kernel.org
18518 W: http://lksctp.sourceforge.net
18519 F: Documentation/networking/sctp.rst
18520 F: include/linux/sctp.h
18521 F: include/net/sctp/
18522 F: include/uapi/linux/sctp.h
18526 M: Jim Cromie <jim.cromie@gmail.com>
18528 F: Documentation/i2c/busses/scx200_acb.rst
18529 F: arch/x86/platform/scx200/
18530 F: drivers/i2c/busses/scx200*
18531 F: drivers/mtd/maps/scx200_docflash.c
18532 F: drivers/watchdog/scx200_wdt.c
18533 F: include/linux/scx200.h
18536 M: Jim Cromie <jim.cromie@gmail.com>
18538 F: drivers/char/scx200_gpio.c
18539 F: include/linux/scx200_gpio.h
18541 SCx200 HRT CLOCKSOURCE DRIVER
18542 M: Jim Cromie <jim.cromie@gmail.com>
18544 F: drivers/clocksource/scx200_hrt.c
18546 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18547 M: Sascha Sommer <saschasommer@freenet.de>
18548 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18550 F: drivers/mmc/host/sdricoh_cs.c
18552 SECO BOARDS CEC DRIVER
18553 M: Ettore Chimenti <ek5.chimenti@gmail.com>
18555 F: drivers/media/cec/platform/seco/seco-cec.c
18556 F: drivers/media/cec/platform/seco/seco-cec.h
18559 M: Kees Cook <keescook@chromium.org>
18560 R: Andy Lutomirski <luto@amacapital.net>
18561 R: Will Drewry <wad@chromium.org>
18563 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18564 F: Documentation/userspace-api/seccomp_filter.rst
18565 F: include/linux/seccomp.h
18566 F: include/uapi/linux/seccomp.h
18567 F: kernel/seccomp.c
18568 F: tools/testing/selftests/kselftest_harness.h
18569 F: tools/testing/selftests/seccomp/*
18570 K: \bsecure_computing
18573 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18574 M: Kamal Dasu <kdasu.kdev@gmail.com>
18575 M: Al Cooper <alcooperx@gmail.com>
18576 R: Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18577 L: linux-mmc@vger.kernel.org
18579 F: drivers/mmc/host/sdhci-brcmstb*
18581 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18582 M: Adrian Hunter <adrian.hunter@intel.com>
18583 L: linux-mmc@vger.kernel.org
18585 F: Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18586 F: drivers/mmc/host/sdhci*
18588 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18589 M: Eugen Hristev <eugen.hristev@microchip.com>
18590 L: linux-mmc@vger.kernel.org
18592 F: drivers/mmc/host/sdhci-of-at91.c
18594 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18595 M: Ben Dooks <ben-linux@fluff.org>
18596 M: Jaehoon Chung <jh80.chung@samsung.com>
18597 L: linux-mmc@vger.kernel.org
18599 F: drivers/mmc/host/sdhci-s3c*
18601 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18602 M: Viresh Kumar <vireshk@kernel.org>
18603 L: linux-mmc@vger.kernel.org
18605 F: drivers/mmc/host/sdhci-spear.c
18607 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18608 M: Vignesh Raghavendra <vigneshr@ti.com>
18609 L: linux-mmc@vger.kernel.org
18611 F: drivers/mmc/host/sdhci-omap.c
18613 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18614 M: Haibo Chen <haibo.chen@nxp.com>
18615 L: linux-imx@nxp.com
18616 L: linux-mmc@vger.kernel.org
18618 F: drivers/mmc/host/sdhci-esdhc-imx.c
18620 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18621 M: Jonathan Derrick <jonathan.derrick@linux.dev>
18622 L: linux-block@vger.kernel.org
18624 F: block/opal_proto.h
18626 F: include/linux/sed*
18627 F: include/uapi/linux/sed*
18630 M: Security Officers <security@kernel.org>
18632 F: Documentation/admin-guide/security-bugs.rst
18635 M: Paul Moore <paul@paul-moore.com>
18636 M: James Morris <jmorris@namei.org>
18637 M: "Serge E. Hallyn" <serge@hallyn.com>
18638 L: linux-security-module@vger.kernel.org (suggested Cc:)
18640 W: http://kernsec.org/
18641 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18643 X: security/selinux/
18645 SELINUX SECURITY MODULE
18646 M: Paul Moore <paul@paul-moore.com>
18647 M: Stephen Smalley <stephen.smalley.work@gmail.com>
18648 M: Eric Paris <eparis@parisplace.org>
18649 L: selinux@vger.kernel.org
18651 W: https://selinuxproject.org
18652 W: https://github.com/SELinuxProject
18653 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18654 F: Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18655 F: Documentation/ABI/obsolete/sysfs-selinux-disable
18656 F: Documentation/admin-guide/LSM/SELinux.rst
18657 F: include/trace/events/avc.h
18658 F: include/uapi/linux/selinux_netlink.h
18659 F: scripts/selinux/
18660 F: security/selinux/
18663 M: Jiri Slaby <jirislaby@kernel.org>
18665 F: drivers/misc/phantom.c
18666 F: include/uapi/linux/phantom.h
18668 SENSEAIR SUNRISE 006-0-0007
18669 M: Jacopo Mondi <jacopo@jmondi.org>
18671 F: Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18672 F: Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18673 F: drivers/iio/chemical/sunrise_co2.c
18675 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18676 M: Tomasz Duszynski <tomasz.duszynski@octakon.com>
18678 F: Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18679 F: drivers/iio/chemical/scd30.h
18680 F: drivers/iio/chemical/scd30_core.c
18681 F: drivers/iio/chemical/scd30_i2c.c
18682 F: drivers/iio/chemical/scd30_serial.c
18684 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18685 M: Roan van Dijk <roan@protonic.nl>
18687 F: Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18688 F: drivers/iio/chemical/scd4x.c
18690 SENSIRION SGP40 GAS SENSOR DRIVER
18691 M: Andreas Klinger <ak@it-klinger.de>
18693 F: Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18694 F: drivers/iio/chemical/sgp40.c
18696 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18697 M: Tomasz Duszynski <tduszyns@gmail.com>
18699 F: Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18700 F: drivers/iio/chemical/sps30.c
18701 F: drivers/iio/chemical/sps30_i2c.c
18702 F: drivers/iio/chemical/sps30_serial.c
18705 M: Rob Herring <robh@kernel.org>
18706 L: linux-serial@vger.kernel.org
18708 F: Documentation/devicetree/bindings/serial/serial.yaml
18709 F: drivers/tty/serdev/
18710 F: include/linux/serdev.h
18713 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18714 L: linux-serial@vger.kernel.org
18716 F: Documentation/devicetree/bindings/serial/
18717 F: drivers/tty/serial/
18720 M: Sean Young <sean@mess.org>
18721 L: linux-media@vger.kernel.org
18723 F: drivers/media/rc/serial_ir.c
18725 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18726 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18727 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18729 F: Documentation/devicetree/bindings/slimbus/
18730 F: drivers/slimbus/
18731 F: include/linux/slimbus.h
18734 M: Edward Cree <ecree.xilinx@gmail.com>
18735 M: Martin Habets <habetsm.xilinx@gmail.com>
18736 L: netdev@vger.kernel.org
18738 F: drivers/net/ethernet/sfc/
18740 SFF/SFP/SFP+ MODULE SUPPORT
18741 M: Russell King <linux@armlinux.org.uk>
18742 L: netdev@vger.kernel.org
18744 F: Documentation/devicetree/bindings/net/sff,sfp.yaml
18745 F: drivers/net/phy/phylink.c
18746 F: drivers/net/phy/sfp*
18747 F: include/linux/mdio/mdio-i2c.h
18748 F: include/linux/phylink.h
18749 F: include/linux/sfp.h
18750 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)
18753 M: Dimitri Sivanich <dimitri.sivanich@hpe.com>
18755 F: drivers/misc/sgi-gru/
18757 SGI XP/XPC/XPNET DRIVER
18758 M: Robin Holt <robinmholt@gmail.com>
18759 M: Steve Wahl <steve.wahl@hpe.com>
18760 R: Mike Travis <mike.travis@hpe.com>
18762 F: drivers/misc/sgi-xp/
18764 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18765 M: Karsten Graul <kgraul@linux.ibm.com>
18766 M: Wenjia Zhang <wenjia@linux.ibm.com>
18767 M: Jan Karcher <jaka@linux.ibm.com>
18768 L: linux-s390@vger.kernel.org
18772 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18773 M: Linus Walleij <linus.walleij@linaro.org>
18774 L: linux-iio@vger.kernel.org
18776 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18777 F: Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18778 F: drivers/iio/light/gp2ap002.c
18780 SHARP RJ54N1CB0C SENSOR DRIVER
18781 M: Jacopo Mondi <jacopo@jmondi.org>
18782 L: linux-media@vger.kernel.org
18784 T: git git://linuxtv.org/media_tree.git
18785 F: drivers/media/i2c/rj54n1cb0c.c
18786 F: include/media/i2c/rj54n1cb0c.h
18788 SH_VOU V4L2 OUTPUT DRIVER
18789 L: linux-media@vger.kernel.org
18791 F: drivers/media/platform/renesas/sh_vou.c
18792 F: include/media/drv-intf/sh_vou.h
18794 SI2157 MEDIA DRIVER
18795 M: Antti Palosaari <crope@iki.fi>
18796 L: linux-media@vger.kernel.org
18798 W: https://linuxtv.org
18799 W: http://palosaari.fi/linux/
18800 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18801 T: git git://linuxtv.org/anttip/media_tree.git
18802 F: drivers/media/tuners/si2157*
18804 SI2165 MEDIA DRIVER
18805 M: Matthias Schwarzott <zzam@gentoo.org>
18806 L: linux-media@vger.kernel.org
18808 W: https://linuxtv.org
18809 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18810 F: drivers/media/dvb-frontends/si2165*
18812 SI2168 MEDIA DRIVER
18813 M: Antti Palosaari <crope@iki.fi>
18814 L: linux-media@vger.kernel.org
18816 W: https://linuxtv.org
18817 W: http://palosaari.fi/linux/
18818 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18819 T: git git://linuxtv.org/anttip/media_tree.git
18820 F: drivers/media/dvb-frontends/si2168*
18822 SI470X FM RADIO RECEIVER I2C DRIVER
18823 M: Hans Verkuil <hverkuil@xs4all.nl>
18824 L: linux-media@vger.kernel.org
18826 W: https://linuxtv.org
18827 T: git git://linuxtv.org/media_tree.git
18828 F: drivers/media/radio/si470x/radio-si470x-i2c.c
18830 SI470X FM RADIO RECEIVER USB DRIVER
18831 M: Hans Verkuil <hverkuil@xs4all.nl>
18832 L: linux-media@vger.kernel.org
18834 W: https://linuxtv.org
18835 T: git git://linuxtv.org/media_tree.git
18836 F: drivers/media/radio/si470x/radio-si470x-common.c
18837 F: drivers/media/radio/si470x/radio-si470x-usb.c
18838 F: drivers/media/radio/si470x/radio-si470x.h
18840 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18841 M: Eduardo Valentin <edubezval@gmail.com>
18842 L: linux-media@vger.kernel.org
18844 W: https://linuxtv.org
18845 T: git git://linuxtv.org/media_tree.git
18846 F: drivers/media/radio/si4713/si4713.?
18848 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18849 M: Eduardo Valentin <edubezval@gmail.com>
18850 L: linux-media@vger.kernel.org
18852 W: https://linuxtv.org
18853 T: git git://linuxtv.org/media_tree.git
18854 F: drivers/media/radio/si4713/radio-platform-si4713.c
18856 SI4713 FM RADIO TRANSMITTER USB DRIVER
18857 M: Hans Verkuil <hverkuil@xs4all.nl>
18858 L: linux-media@vger.kernel.org
18860 W: https://linuxtv.org
18861 T: git git://linuxtv.org/media_tree.git
18862 F: drivers/media/radio/si4713/radio-usb-si4713.c
18865 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18866 L: linux-media@vger.kernel.org
18868 W: https://linuxtv.org
18869 T: git git://linuxtv.org/media_tree.git
18870 F: drivers/media/common/siano/
18871 F: drivers/media/mmc/siano/
18872 F: drivers/media/usb/siano/
18873 F: drivers/media/usb/siano/
18876 M: Palmer Dabbelt <palmer@dabbelt.com>
18877 M: Paul Walmsley <paul.walmsley@sifive.com>
18878 L: linux-riscv@lists.infradead.org
18883 SIFIVE FU540 SYSTEM-ON-CHIP
18884 M: Paul Walmsley <paul.walmsley@sifive.com>
18885 M: Palmer Dabbelt <palmer@dabbelt.com>
18886 L: linux-riscv@lists.infradead.org
18888 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18893 M: Green Wan <green.wan@sifive.com>
18895 F: Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18896 F: drivers/dma/sf-pdma/
18899 M: Conor Dooley <conor@kernel.org>
18900 L: linux-riscv@lists.infradead.org
18902 T: git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18903 F: drivers/soc/sifive/
18905 SILEAD TOUCHSCREEN DRIVER
18906 M: Hans de Goede <hdegoede@redhat.com>
18907 L: linux-input@vger.kernel.org
18908 L: platform-driver-x86@vger.kernel.org
18910 F: drivers/input/touchscreen/silead.c
18911 F: drivers/platform/x86/touchscreen_dmi.c
18913 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18914 M: Jérôme Pouiller <jerome.pouiller@silabs.com>
18916 F: Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18917 F: drivers/net/wireless/silabs/wfx/
18919 SILICON MOTION SM712 FRAME BUFFER DRIVER
18920 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18921 M: Teddy Wang <teddy.wang@siliconmotion.com>
18922 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18923 L: linux-fbdev@vger.kernel.org
18925 F: Documentation/fb/sm712fb.rst
18926 F: drivers/video/fbdev/sm712*
18928 SILVACO I3C DUAL-ROLE MASTER
18929 M: Miquel Raynal <miquel.raynal@bootlin.com>
18930 M: Conor Culhane <conor.culhane@silvaco.com>
18931 L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
18933 F: Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18934 F: drivers/i3c/master/svc-i3c-master.c
18937 M: Hans de Goede <hdegoede@redhat.com>
18938 L: linux-fbdev@vger.kernel.org
18940 F: Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18941 F: drivers/video/fbdev/simplefb.c
18942 F: include/linux/platform_data/simplefb.h
18944 SIMTEC EB110ATX (Chalice CATS)
18945 M: Simtec Linux Team <linux@simtec.co.uk>
18947 W: http://www.simtec.co.uk/products/EB110ATX/
18950 M: Thorsten Scherer <t.scherer@eckelmann.de>
18951 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18952 R: Pengutronix Kernel Team <kernel@pengutronix.de>
18954 F: drivers/gpio/gpio-siox.c
18956 F: include/trace/events/siox.h
18958 SIPHASH PRF ROUTINES
18959 M: Jason A. Donenfeld <Jason@zx2c4.com>
18961 F: include/linux/siphash.h
18963 F: lib/siphash_kunit.c
18965 SIS 190 ETHERNET DRIVER
18966 M: Francois Romieu <romieu@fr.zoreil.com>
18967 L: netdev@vger.kernel.org
18969 F: drivers/net/ethernet/sis/sis190.c
18971 SIS 900/7016 FAST ETHERNET DRIVER
18972 M: Daniele Venzano <venza@brownhat.org>
18973 L: netdev@vger.kernel.org
18975 W: http://www.brownhat.org/sis900.html
18976 F: drivers/net/ethernet/sis/sis900.*
18978 SIS FRAMEBUFFER DRIVER
18979 M: Thomas Winischhofer <thomas@winischhofer.net>
18981 W: http://www.winischhofer.net/linuxsisvga.shtml
18982 F: Documentation/fb/sisfb.rst
18983 F: drivers/video/fbdev/sis/
18984 F: include/video/sisfb.h
18986 SIS I2C TOUCHSCREEN DRIVER
18987 M: Mika Penttilä <mpenttil@redhat.com>
18988 L: linux-input@vger.kernel.org
18990 F: Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18991 F: drivers/input/touchscreen/sis_i2c.c
18994 M: Thomas Winischhofer <thomas@winischhofer.net>
18996 W: http://www.winischhofer.at/linuxsisusbvga.shtml
18997 F: drivers/usb/misc/sisusbvga/
18999 SL28 CPLD MFD DRIVER
19000 M: Michael Walle <michael@walle.cc>
19002 F: Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19003 F: Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19004 F: Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19005 F: Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19006 F: Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19007 F: Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19008 F: drivers/gpio/gpio-sl28cpld.c
19009 F: drivers/hwmon/sl28cpld-hwmon.c
19010 F: drivers/irqchip/irq-sl28cpld.c
19011 F: drivers/pwm/pwm-sl28cpld.c
19012 F: drivers/watchdog/sl28cpld_wdt.c
19015 M: Christoph Lameter <cl@linux.com>
19016 M: Pekka Enberg <penberg@kernel.org>
19017 M: David Rientjes <rientjes@google.com>
19018 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
19019 M: Andrew Morton <akpm@linux-foundation.org>
19020 M: Vlastimil Babka <vbabka@suse.cz>
19021 R: Roman Gushchin <roman.gushchin@linux.dev>
19022 R: Hyeonggon Yoo <42.hyeyoo@gmail.com>
19023 L: linux-mm@kvack.org
19025 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19026 F: include/linux/sl?b*.h
19029 SLCAN CAN NETWORK DRIVER
19030 M: Dario Binacchi <dario.binacchi@amarulasolutions.com>
19031 L: linux-can@vger.kernel.org
19033 F: drivers/net/can/slcan/
19035 SLEEPABLE READ-COPY UPDATE (SRCU)
19036 M: Lai Jiangshan <jiangshanlai@gmail.com>
19037 M: "Paul E. McKenney" <paulmck@kernel.org>
19038 M: Josh Triplett <josh@joshtriplett.org>
19039 R: Steven Rostedt <rostedt@goodmis.org>
19040 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19041 L: rcu@vger.kernel.org
19043 W: http://www.rdrop.com/users/paulmck/RCU/
19044 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19045 F: include/linux/srcu*.h
19046 F: kernel/rcu/srcu*.c
19048 SMACK SECURITY MODULE
19049 M: Casey Schaufler <casey@schaufler-ca.com>
19050 L: linux-security-module@vger.kernel.org
19052 W: http://schaufler-ca.com
19053 T: git git://github.com/cschaufler/smack-next
19054 F: Documentation/admin-guide/LSM/Smack.rst
19057 SMC91x ETHERNET DRIVER
19058 M: Nicolas Pitre <nico@fluxnic.net>
19060 F: drivers/net/ethernet/smsc/smc91x.*
19062 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19063 M: Mark Rutland <mark.rutland@arm.com>
19064 M: Lorenzo Pieralisi <lpieralisi@kernel.org>
19065 M: Sudeep Holla <sudeep.holla@arm.com>
19066 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19068 F: drivers/firmware/smccc/
19069 F: include/linux/arm-smccc.h
19071 SMM665 HARDWARE MONITOR DRIVER
19072 M: Guenter Roeck <linux@roeck-us.net>
19073 L: linux-hwmon@vger.kernel.org
19075 F: Documentation/hwmon/smm665.rst
19076 F: drivers/hwmon/smm665.c
19078 SMSC EMC2103 HARDWARE MONITOR DRIVER
19079 M: Steve Glendinning <steve.glendinning@shawell.net>
19080 L: linux-hwmon@vger.kernel.org
19082 F: Documentation/hwmon/emc2103.rst
19083 F: drivers/hwmon/emc2103.c
19085 SMSC SCH5627 HARDWARE MONITOR DRIVER
19086 M: Hans de Goede <hdegoede@redhat.com>
19087 L: linux-hwmon@vger.kernel.org
19089 F: Documentation/hwmon/sch5627.rst
19090 F: drivers/hwmon/sch5627.c
19092 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19093 M: Steve Glendinning <steve.glendinning@shawell.net>
19094 L: linux-fbdev@vger.kernel.org
19096 F: drivers/video/fbdev/smscufx.c
19098 SMSC47B397 HARDWARE MONITOR DRIVER
19099 M: Jean Delvare <jdelvare@suse.com>
19100 L: linux-hwmon@vger.kernel.org
19102 F: Documentation/hwmon/smsc47b397.rst
19103 F: drivers/hwmon/smsc47b397.c
19105 SMSC911x ETHERNET DRIVER
19106 M: Steve Glendinning <steve.glendinning@shawell.net>
19107 L: netdev@vger.kernel.org
19109 F: drivers/net/ethernet/smsc/smsc911x.*
19110 F: include/linux/smsc911x.h
19112 SMSC9420 PCI ETHERNET DRIVER
19113 M: Steve Glendinning <steve.glendinning@shawell.net>
19114 L: netdev@vger.kernel.org
19116 F: drivers/net/ethernet/smsc/smsc9420.*
19118 SOCIONEXT (SNI) AVE NETWORK DRIVER
19119 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19120 L: netdev@vger.kernel.org
19122 F: Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19123 F: drivers/net/ethernet/socionext/sni_ave.c
19125 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19126 M: Jassi Brar <jaswinder.singh@linaro.org>
19127 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
19128 L: netdev@vger.kernel.org
19130 F: Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19131 F: drivers/net/ethernet/socionext/netsec.c
19133 SOCIONEXT (SNI) Synquacer SPI DRIVER
19134 M: Masahisa Kojima <masahisa.kojima@linaro.org>
19135 M: Jassi Brar <jaswinder.singh@linaro.org>
19136 L: linux-spi@vger.kernel.org
19138 F: Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19139 F: drivers/spi/spi-synquacer.c
19141 SOCIONEXT SYNQUACER I2C DRIVER
19142 M: Ard Biesheuvel <ardb@kernel.org>
19143 L: linux-i2c@vger.kernel.org
19145 F: Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
19146 F: drivers/i2c/busses/i2c-synquacer.c
19148 SOCIONEXT UNIPHIER SOUND DRIVER
19149 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19151 F: sound/soc/uniphier/
19153 SOCKET TIMESTAMPING
19154 M: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19156 F: Documentation/networking/timestamping.rst
19157 F: include/uapi/linux/net_tstamp.h
19158 F: tools/testing/selftests/net/so_txtime.c
19160 SOEKRIS NET48XX LED SUPPORT
19161 M: Chris Boot <bootc@bootc.net>
19163 F: drivers/leds/leds-net48xx.c
19165 SOFT-IWARP DRIVER (siw)
19166 M: Bernard Metzler <bmt@zurich.ibm.com>
19167 L: linux-rdma@vger.kernel.org
19169 F: drivers/infiniband/sw/siw/
19170 F: include/uapi/rdma/siw-abi.h
19172 SOFT-ROCE DRIVER (rxe)
19173 M: Zhu Yanjun <zyjzyj2000@gmail.com>
19174 L: linux-rdma@vger.kernel.org
19176 F: drivers/infiniband/sw/rxe/
19177 F: include/uapi/rdma/rdma_user_rxe.h
19179 SOFTLOGIC 6x10 MPEG CODEC
19180 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19181 M: Anton Sviridenko <anton@corp.bluecherry.net>
19182 M: Andrey Utkin <andrey_utkin@fastmail.com>
19183 M: Ismael Luceno <ismael@iodev.co.uk>
19184 L: linux-media@vger.kernel.org
19186 F: drivers/media/pci/solo6x10/
19188 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19189 M: James Morse <james.morse@arm.com>
19190 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19192 F: Documentation/devicetree/bindings/arm/firmware/sdei.txt
19193 F: drivers/firmware/arm_sdei.c
19194 F: include/linux/arm_sdei.h
19195 F: include/uapi/linux/arm_sdei.h
19197 SOFTWARE NODES AND DEVICE PROPERTIES
19198 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19199 R: Daniel Scally <djrscally@gmail.com>
19200 R: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19201 R: Sakari Ailus <sakari.ailus@linux.intel.com>
19202 L: linux-acpi@vger.kernel.org
19204 F: drivers/base/property.c
19205 F: drivers/base/swnode.c
19206 F: include/linux/fwnode.h
19207 F: include/linux/property.h
19209 SOFTWARE RAID (Multiple Disks) SUPPORT
19210 M: Song Liu <song@kernel.org>
19211 L: linux-raid@vger.kernel.org
19213 Q: https://patchwork.kernel.org/project/linux-raid/list/
19214 T: git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19215 F: drivers/md/Kconfig
19216 F: drivers/md/Makefile
19218 F: drivers/md/raid*
19219 F: include/linux/raid/
19220 F: include/uapi/linux/raid/
19222 SOLIDRUN CLEARFOG SUPPORT
19223 M: Russell King <linux@armlinux.org.uk>
19225 F: arch/arm/boot/dts/armada-388-clearfog*
19226 F: arch/arm/boot/dts/armada-38x-solidrun-*
19228 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19229 M: Russell King <linux@armlinux.org.uk>
19231 F: arch/arm/boot/dts/imx6*-cubox-i*
19232 F: arch/arm/boot/dts/imx6*-hummingboard*
19233 F: arch/arm/boot/dts/imx6*-sr-*
19235 SONIC NETWORK DRIVER
19236 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19237 L: netdev@vger.kernel.org
19239 F: drivers/net/ethernet/natsemi/sonic.*
19241 SONICS SILICON BACKPLANE DRIVER (SSB)
19242 M: Michael Buesch <m@bues.ch>
19243 L: linux-wireless@vger.kernel.org
19246 F: include/linux/ssb/
19248 SONY IMX208 SENSOR DRIVER
19249 M: Sakari Ailus <sakari.ailus@linux.intel.com>
19250 L: linux-media@vger.kernel.org
19252 T: git git://linuxtv.org/media_tree.git
19253 F: drivers/media/i2c/imx208.c
19255 SONY IMX214 SENSOR DRIVER
19256 M: Ricardo Ribalda <ribalda@kernel.org>
19257 L: linux-media@vger.kernel.org
19259 T: git git://linuxtv.org/media_tree.git
19260 F: Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19261 F: drivers/media/i2c/imx214.c
19263 SONY IMX219 SENSOR DRIVER
19264 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
19265 L: linux-media@vger.kernel.org
19267 T: git git://linuxtv.org/media_tree.git
19268 F: Documentation/devicetree/bindings/media/i2c/imx219.yaml
19269 F: drivers/media/i2c/imx219.c
19271 SONY IMX258 SENSOR DRIVER
19272 M: Sakari Ailus <sakari.ailus@linux.intel.com>
19273 L: linux-media@vger.kernel.org
19275 T: git git://linuxtv.org/media_tree.git
19276 F: Documentation/devicetree/bindings/media/i2c/imx258.yaml
19277 F: drivers/media/i2c/imx258.c
19279 SONY IMX274 SENSOR DRIVER
19280 M: Leon Luo <leonl@leopardimaging.com>
19281 L: linux-media@vger.kernel.org
19283 T: git git://linuxtv.org/media_tree.git
19284 F: Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19285 F: drivers/media/i2c/imx274.c
19287 SONY IMX290 SENSOR DRIVER
19288 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19289 L: linux-media@vger.kernel.org
19291 T: git git://linuxtv.org/media_tree.git
19292 F: Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19293 F: drivers/media/i2c/imx290.c
19295 SONY IMX319 SENSOR DRIVER
19296 M: Bingbu Cao <bingbu.cao@intel.com>
19297 L: linux-media@vger.kernel.org
19299 T: git git://linuxtv.org/media_tree.git
19300 F: drivers/media/i2c/imx319.c
19302 SONY IMX334 SENSOR DRIVER
19303 M: Paul J. Murphy <paul.j.murphy@intel.com>
19304 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19305 L: linux-media@vger.kernel.org
19307 T: git git://linuxtv.org/media_tree.git
19308 F: Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19309 F: drivers/media/i2c/imx334.c
19311 SONY IMX335 SENSOR DRIVER
19312 M: Paul J. Murphy <paul.j.murphy@intel.com>
19313 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19314 L: linux-media@vger.kernel.org
19316 T: git git://linuxtv.org/media_tree.git
19317 F: Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19318 F: drivers/media/i2c/imx335.c
19320 SONY IMX355 SENSOR DRIVER
19321 M: Tianshu Qiu <tian.shu.qiu@intel.com>
19322 L: linux-media@vger.kernel.org
19324 T: git git://linuxtv.org/media_tree.git
19325 F: drivers/media/i2c/imx355.c
19327 SONY IMX412 SENSOR DRIVER
19328 M: Paul J. Murphy <paul.j.murphy@intel.com>
19329 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19330 L: linux-media@vger.kernel.org
19332 T: git git://linuxtv.org/media_tree.git
19333 F: Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19334 F: drivers/media/i2c/imx412.c
19336 SONY MEMORYSTICK SUBSYSTEM
19337 M: Maxim Levitsky <maximlevitsky@gmail.com>
19338 M: Alex Dubov <oakad@yahoo.com>
19339 M: Ulf Hansson <ulf.hansson@linaro.org>
19340 L: linux-mmc@vger.kernel.org
19342 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19343 F: drivers/memstick/
19344 F: include/linux/memstick.h
19346 SONY VAIO CONTROL DEVICE DRIVER
19347 M: Mattia Dongili <malattia@linux.it>
19348 L: platform-driver-x86@vger.kernel.org
19350 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19351 F: Documentation/admin-guide/laptops/sony-laptop.rst
19352 F: drivers/char/sonypi.c
19353 F: drivers/platform/x86/sony-laptop.c
19354 F: include/linux/sony-laptop.h
19357 M: Jaroslav Kysela <perex@perex.cz>
19358 M: Takashi Iwai <tiwai@suse.com>
19359 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19361 W: http://www.alsa-project.org/
19362 Q: http://patchwork.kernel.org/project/alsa-devel/list/
19363 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19364 F: Documentation/sound/
19366 F: include/uapi/sound/
19368 F: tools/testing/selftests/alsa
19370 SOUND - COMPRESSED AUDIO
19371 M: Vinod Koul <vkoul@kernel.org>
19372 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19374 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19375 F: Documentation/sound/designs/compress-offload.rst
19376 F: include/sound/compress_driver.h
19377 F: include/uapi/sound/compress_*
19378 F: sound/core/compress_offload.c
19379 F: sound/soc/soc-compress.c
19381 SOUND - DMAENGINE HELPERS
19382 M: Lars-Peter Clausen <lars@metafoo.de>
19384 F: include/sound/dmaengine_pcm.h
19385 F: sound/core/pcm_dmaengine.c
19386 F: sound/soc/soc-generic-dmaengine-pcm.c
19388 SOUND - ALSA SELFTESTS
19389 M: Mark Brown <broonie@kernel.org>
19390 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19391 L: linux-kselftest@vger.kernel.org
19393 F: tools/testing/selftests/alsa
19395 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19396 M: Liam Girdwood <lgirdwood@gmail.com>
19397 M: Mark Brown <broonie@kernel.org>
19398 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19400 W: http://alsa-project.org/main/index.php/ASoC
19401 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19402 F: Documentation/devicetree/bindings/sound/
19403 F: Documentation/sound/soc/
19404 F: include/dt-bindings/sound/
19405 F: include/sound/soc*
19408 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19409 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19410 M: Liam Girdwood <lgirdwood@gmail.com>
19411 M: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19412 M: Bard Liao <yung-chuan.liao@linux.intel.com>
19413 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19414 R: Kai Vehmanen <kai.vehmanen@linux.intel.com>
19415 M: Daniel Baluta <daniel.baluta@nxp.com>
19416 L: sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19418 W: https://github.com/thesofproject/linux/
19421 SOUNDWIRE SUBSYSTEM
19422 M: Vinod Koul <vkoul@kernel.org>
19423 M: Bard Liao <yung-chuan.liao@linux.intel.com>
19424 R: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19425 R: Sanyog Kale <sanyog.r.kale@intel.com>
19426 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19428 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19429 F: Documentation/driver-api/soundwire/
19430 F: drivers/soundwire/
19431 F: include/linux/soundwire/
19434 M: Olli Salonen <olli.salonen@iki.fi>
19435 L: linux-media@vger.kernel.org
19437 W: https://linuxtv.org
19438 Q: http://patchwork.linuxtv.org/project/linux-media/list/
19439 F: drivers/media/dvb-frontends/sp2*
19441 SPANISH DOCUMENTATION
19442 M: Carlos Bilbao <carlos.bilbao@amd.com>
19444 F: Documentation/translations/sp_SP/
19446 SPARC + UltraSPARC (sparc/sparc64)
19447 M: "David S. Miller" <davem@davemloft.net>
19448 L: sparclinux@vger.kernel.org
19450 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
19451 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19452 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19456 SPARC SERIAL DRIVERS
19457 M: "David S. Miller" <davem@davemloft.net>
19458 L: sparclinux@vger.kernel.org
19460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19461 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19462 F: drivers/tty/serial/suncore.c
19463 F: drivers/tty/serial/sunhv.c
19464 F: drivers/tty/serial/sunsab.c
19465 F: drivers/tty/serial/sunsab.h
19466 F: drivers/tty/serial/sunsu.c
19467 F: drivers/tty/serial/sunzilog.c
19468 F: drivers/tty/serial/sunzilog.h
19469 F: drivers/tty/vcc.c
19470 F: include/linux/sunserialcore.h
19473 M: "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19474 L: linux-sparse@vger.kernel.org
19476 W: https://sparse.docs.kernel.org/
19477 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19478 Q: https://patchwork.kernel.org/project/linux-sparse/list/
19479 B: https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19480 F: include/linux/compiler.h
19482 SPEAKUP CONSOLE SPEECH DRIVER
19483 M: William Hubbs <w.d.hubbs@gmail.com>
19484 M: Chris Brannon <chris@the-brannons.com>
19485 M: Kirk Reiser <kirk@reisers.ca>
19486 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
19487 L: speakup@linux-speakup.org
19489 W: http://www.linux-speakup.org/
19490 W: https://github.com/linux-speakup/speakup
19491 B: https://github.com/linux-speakup/speakup/issues
19492 F: drivers/accessibility/speakup/
19494 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19495 M: Viresh Kumar <vireshk@kernel.org>
19496 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19498 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19500 W: http://www.st.com/spear
19501 F: arch/arm/boot/dts/spear*
19502 F: arch/arm/mach-spear/
19503 F: drivers/clk/spear/
19504 F: drivers/pinctrl/spear/
19507 M: Tudor Ambarus <tudor.ambarus@linaro.org>
19508 M: Pratyush Yadav <pratyush@kernel.org>
19509 R: Michael Walle <michael@walle.cc>
19510 L: linux-mtd@lists.infradead.org
19512 W: http://www.linux-mtd.infradead.org/
19513 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
19514 C: irc://irc.oftc.net/mtd
19515 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19516 F: Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19517 F: drivers/mtd/spi-nor/
19518 F: include/linux/mtd/spi-nor.h
19521 M: Mark Brown <broonie@kernel.org>
19522 L: linux-spi@vger.kernel.org
19524 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
19525 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19526 F: Documentation/devicetree/bindings/spi/
19527 F: Documentation/spi/
19529 F: include/linux/spi/
19530 F: include/uapi/linux/spi/
19533 SPIDERNET NETWORK DRIVER for CELL
19534 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19535 M: Geoff Levand <geoff@infradead.org>
19536 L: netdev@vger.kernel.org
19537 L: linuxppc-dev@lists.ozlabs.org
19539 F: Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19540 F: drivers/net/ethernet/toshiba/spider_net*
19543 M: Stephen Boyd <sboyd@kernel.org>
19544 L: linux-kernel@vger.kernel.org
19546 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19547 F: Documentation/devicetree/bindings/spmi/
19549 F: include/dt-bindings/spmi/spmi.h
19550 F: include/linux/spmi.h
19551 F: include/trace/events/spmi.h
19554 M: Jeremy Kerr <jk@ozlabs.org>
19555 L: linuxppc-dev@lists.ozlabs.org
19557 W: http://www.ibm.com/developerworks/power/cell/
19558 F: Documentation/filesystems/spufs/spufs.rst
19559 F: arch/powerpc/platforms/cell/spufs/
19561 SQUASHFS FILE SYSTEM
19562 M: Phillip Lougher <phillip@squashfs.org.uk>
19563 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
19565 W: http://squashfs.org.uk
19566 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19567 F: Documentation/filesystems/squashfs.rst
19570 SRM (Alpha) environment access
19571 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
19573 F: arch/alpha/kernel/srm_env.c
19575 ST LSM6DSx IMU IIO DRIVER
19576 M: Lorenzo Bianconi <lorenzo@kernel.org>
19577 L: linux-iio@vger.kernel.org
19579 W: http://www.st.com/
19580 F: Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19581 F: drivers/iio/imu/st_lsm6dsx/
19583 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19584 M: Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19585 M: Sylvain Petinot <sylvain.petinot@foss.st.com>
19586 L: linux-media@vger.kernel.org
19588 T: git git://linuxtv.org/media_tree.git
19589 F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19590 F: drivers/media/i2c/st-mipid02.c
19592 ST STM32 I2C/SMBUS DRIVER
19593 M: Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19594 M: Alain Volmat <alain.volmat@foss.st.com>
19595 L: linux-i2c@vger.kernel.org
19597 F: drivers/i2c/busses/i2c-stm32*
19599 ST STM32 SPI DRIVER
19600 M: Alain Volmat <alain.volmat@foss.st.com>
19601 L: linux-spi@vger.kernel.org
19603 F: drivers/spi/spi-stm32.c
19606 M: Daniel Nilsson <daniel.nilsson@flex.com>
19607 L: linux-hwmon@vger.kernel.org
19609 F: Documentation/hwmon/stpddc60.rst
19610 F: drivers/hwmon/pmbus/stpddc60.c
19613 M: Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19614 M: Sylvain Petinot <sylvain.petinot@foss.st.com>
19615 L: linux-media@vger.kernel.org
19617 T: git git://linuxtv.org/media_tree.git
19618 F: Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19619 F: Documentation/userspace-api/media/drivers/st-vgxy61.rst
19620 F: drivers/media/i2c/st-vgxy61.c
19622 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19623 M: Song Qiang <songqiang1304521@gmail.com>
19624 L: linux-iio@vger.kernel.org
19626 F: Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19627 F: drivers/iio/proximity/vl53l0x-i2c.c
19630 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19631 M: Sasha Levin <sashal@kernel.org>
19632 L: stable@vger.kernel.org
19634 F: Documentation/process/stable-kernel-rules.rst
19636 STAGING - ATOMISP DRIVER
19637 M: Hans de Goede <hdegoede@redhat.com>
19638 M: Mauro Carvalho Chehab <mchehab@kernel.org>
19639 R: Sakari Ailus <sakari.ailus@linux.intel.com>
19640 L: linux-media@vger.kernel.org
19642 F: drivers/staging/media/atomisp/
19644 STAGING - FIELDBUS SUBSYSTEM
19645 M: Sven Van Asbroeck <TheSven73@gmail.com>
19647 F: drivers/staging/fieldbus/*
19648 F: drivers/staging/fieldbus/Documentation/
19650 STAGING - HMS ANYBUS-S BUS
19651 M: Sven Van Asbroeck <TheSven73@gmail.com>
19653 F: drivers/staging/fieldbus/anybuss/
19655 STAGING - INDUSTRIAL IO
19656 M: Jonathan Cameron <jic23@kernel.org>
19657 L: linux-iio@vger.kernel.org
19659 F: Documentation/devicetree/bindings/staging/iio/
19660 F: drivers/staging/iio/
19662 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19663 M: Marc Dietrich <marvin24@gmx.de>
19664 L: ac100@lists.launchpad.net (moderated for non-subscribers)
19665 L: linux-tegra@vger.kernel.org
19667 F: drivers/staging/nvec/
19669 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19670 M: Jens Frederich <jfrederich@gmail.com>
19671 M: Jon Nettleton <jon.nettleton@gmail.com>
19673 W: http://wiki.laptop.org/go/DCON
19674 F: drivers/staging/olpc_dcon/
19676 STAGING - REALTEK RTL8188EU DRIVERS
19677 M: Larry Finger <Larry.Finger@lwfinger.net>
19678 M: Phillip Potter <phil@philpotter.co.uk>
19679 R: Pavel Skripkin <paskripkin@gmail.com>
19681 F: drivers/staging/r8188eu/
19683 STAGING - REALTEK RTL8712U DRIVERS
19684 M: Larry Finger <Larry.Finger@lwfinger.net>
19685 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19687 F: drivers/staging/rtl8712/
19689 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19690 M: Michael Hennerich <michael.hennerich@analog.com>
19691 L: linux-fbdev@vger.kernel.org
19693 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19694 F: drivers/staging/fbtft/fb_seps525.c
19696 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19697 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19698 M: Teddy Wang <teddy.wang@siliconmotion.com>
19699 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19700 L: linux-fbdev@vger.kernel.org
19702 F: drivers/staging/sm750fb/
19704 STAGING - VIA VT665X DRIVERS
19705 M: Forest Bond <forest@alittletooquiet.net>
19707 F: drivers/staging/vt665?/
19710 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19711 L: linux-staging@lists.linux.dev
19713 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19714 F: drivers/staging/
19716 STARFIRE/DURALAN NETWORK DRIVER
19717 M: Ion Badulescu <ionut@badula.org>
19719 F: drivers/net/ethernet/adaptec/starfire*
19721 STARFIVE DEVICETREES
19722 M: Emil Renner Berthing <kernel@esmil.dk>
19724 F: arch/riscv/boot/dts/starfive/
19726 STARFIVE JH7100 CLOCK DRIVERS
19727 M: Emil Renner Berthing <kernel@esmil.dk>
19729 F: Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19730 F: drivers/clk/starfive/clk-starfive-jh7100*
19731 F: include/dt-bindings/clock/starfive-jh7100*.h
19733 STARFIVE JH7100 PINCTRL DRIVER
19734 M: Emil Renner Berthing <kernel@esmil.dk>
19735 L: linux-gpio@vger.kernel.org
19737 F: Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19738 F: drivers/pinctrl/starfive/
19739 F: include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
19741 STARFIVE JH7100 RESET CONTROLLER DRIVER
19742 M: Emil Renner Berthing <kernel@esmil.dk>
19744 F: Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19745 F: drivers/reset/reset-starfive-jh7100.c
19746 F: include/dt-bindings/reset/starfive-jh7100.h
19749 M: Peter Zijlstra <peterz@infradead.org>
19750 M: Josh Poimboeuf <jpoimboe@kernel.org>
19751 M: Jason Baron <jbaron@akamai.com>
19752 R: Steven Rostedt <rostedt@goodmis.org>
19753 R: Ard Biesheuvel <ardb@kernel.org>
19755 F: arch/*/include/asm/jump_label*.h
19756 F: arch/*/include/asm/static_call*.h
19757 F: arch/*/kernel/jump_label.c
19758 F: arch/*/kernel/static_call.c
19759 F: include/linux/jump_label*.h
19760 F: include/linux/static_call*.h
19761 F: kernel/jump_label.c
19762 F: kernel/static_call.c
19764 STI AUDIO (ASoC) DRIVERS
19765 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19766 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19768 F: Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19772 M: Alain Volmat <alain.volmat@foss.st.com>
19774 F: Documentation/devicetree/bindings/media/stih-cec.txt
19775 F: drivers/media/cec/platform/sti/
19777 STK1160 USB VIDEO CAPTURE DRIVER
19778 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19779 L: linux-media@vger.kernel.org
19781 T: git git://linuxtv.org/media_tree.git
19782 F: drivers/media/usb/stk1160/
19784 STM32 AUDIO (ASoC) DRIVERS
19785 M: Olivier Moysan <olivier.moysan@foss.st.com>
19786 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19787 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19789 F: Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19790 F: Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19793 STM32 TIMER/LPTIMER DRIVERS
19794 M: Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19796 F: Documentation/ABI/testing/*timer-stm32
19797 F: Documentation/devicetree/bindings/*/*stm32-*timer*
19798 F: drivers/*/stm32-*timer*
19799 F: drivers/pwm/pwm-stm32*
19800 F: include/linux/*/stm32-*tim*
19802 STMMAC ETHERNET DRIVER
19803 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
19804 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
19805 M: Jose Abreu <joabreu@synopsys.com>
19806 L: netdev@vger.kernel.org
19808 W: http://www.stlinux.com
19809 F: Documentation/networking/device_drivers/ethernet/stmicro/
19810 F: drivers/net/ethernet/stmicro/stmmac/
19813 M: Sam Creasey <sammy@sammy.net>
19815 W: http://sammy.net/sun3/
19816 F: arch/m68k/include/asm/sun3*
19817 F: arch/m68k/kernel/*sun3*
19818 F: arch/m68k/sun3*/
19819 F: drivers/net/ethernet/i825xx/sun3*
19821 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19822 M: Hans de Goede <hdegoede@redhat.com>
19823 L: linux-input@vger.kernel.org
19825 F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19826 F: drivers/input/keyboard/sun4i-lradc-keys.c
19828 SUNDANCE NETWORK DRIVER
19829 M: Denis Kirjanov <kda@linux-powerpc.org>
19830 L: netdev@vger.kernel.org
19832 F: drivers/net/ethernet/dlink/sundance.c
19834 SUN HAPPY MEAL ETHERNET DRIVER
19835 M: Sean Anderson <seanga2@gmail.com>
19837 F: drivers/net/ethernet/sun/sunhme.*
19839 SUNPLUS ETHERNET DRIVER
19840 M: Wells Lu <wellslutw@gmail.com>
19841 L: netdev@vger.kernel.org
19843 W: https://sunplus.atlassian.net/wiki/spaces/doc/overview
19844 F: Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19845 F: drivers/net/ethernet/sunplus/
19848 M: Tony Huang <tonyhuang.sunplus@gmail.com>
19849 M: Li-hao Kuo <lhjeff911@gmail.com>
19851 F: Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
19852 F: drivers/mmc/host/sunplus-mmc.c
19854 SUNPLUS OCOTP DRIVER
19855 M: Vincent Shih <vincent.sunplus@gmail.com>
19857 F: Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19858 F: drivers/nvmem/sunplus-ocotp.c
19860 SUNPLUS USB2 PHY DRIVER
19861 M: Vincent Shih <vincent.sunplus@gmail.com>
19862 L: linux-usb@vger.kernel.org
19864 F: Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
19865 F: drivers/phy/sunplus/Kconfig
19866 F: drivers/phy/sunplus/Makefile
19867 F: drivers/phy/sunplus/phy-sunplus-usb2.c
19870 M: Hammer Hsieh <hammerh0314@gmail.com>
19872 F: Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19873 F: drivers/pwm/pwm-sunplus.c
19876 M: Vincent Shih <vincent.sunplus@gmail.com>
19877 L: linux-rtc@vger.kernel.org
19879 F: Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19880 F: drivers/rtc/rtc-sunplus.c
19882 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19883 M: Li-hao Kuo <lhjeff911@gmail.com>
19884 L: linux-spi@vger.kernel.org
19886 F: Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19887 F: drivers/spi/spi-sunplus-sp7021.c
19889 SUNPLUS UART DRIVER
19890 M: Hammer Hsieh <hammerh0314@gmail.com>
19892 F: Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19893 F: drivers/tty/serial/sunplus-uart.c
19895 SUNPLUS WATCHDOG DRIVER
19896 M: Xiantao Hu <xt.hu@cqplus1.com>
19897 L: linux-watchdog@vger.kernel.org
19899 F: Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19900 F: drivers/watchdog/sunplus_wdt.c
19903 M: Yoshinori Sato <ysato@users.sourceforge.jp>
19904 M: Rich Felker <dalias@libc.org>
19905 M: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
19906 L: linux-sh@vger.kernel.org
19908 Q: http://patchwork.kernel.org/project/linux-sh/list/
19909 F: Documentation/sh/
19914 M: "Rafael J. Wysocki" <rafael@kernel.org>
19915 M: Len Brown <len.brown@intel.com>
19916 M: Pavel Machek <pavel@ucw.cz>
19917 L: linux-pm@vger.kernel.org
19919 B: https://bugzilla.kernel.org
19920 F: Documentation/power/
19921 F: arch/x86/kernel/acpi/
19922 F: drivers/base/power/
19923 F: include/linux/freezer.h
19924 F: include/linux/pm.h
19925 F: include/linux/suspend.h
19929 M: Martin Mares <mj@ucw.cz>
19930 L: linux-video@atrey.karlin.mff.cuni.cz
19932 F: Documentation/admin-guide/svga.rst
19933 F: arch/x86/boot/video*
19936 M: Jiri Pirko <jiri@resnulli.us>
19937 M: Ivan Vecera <ivecera@redhat.com>
19938 L: netdev@vger.kernel.org
19940 F: include/net/switchdev.h
19943 SY8106A REGULATOR DRIVER
19944 M: Icenowy Zheng <icenowy@aosc.io>
19946 F: Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19947 F: drivers/regulator/sy8106a-regulator.c
19949 SYNC FILE FRAMEWORK
19950 M: Sumit Semwal <sumit.semwal@linaro.org>
19951 R: Gustavo Padovan <gustavo@padovan.org>
19952 L: linux-media@vger.kernel.org
19953 L: dri-devel@lists.freedesktop.org
19955 T: git git://anongit.freedesktop.org/drm/drm-misc
19956 F: Documentation/driver-api/sync_file.rst
19957 F: drivers/dma-buf/dma-fence*
19958 F: drivers/dma-buf/sw_sync.c
19959 F: drivers/dma-buf/sync_*
19960 F: include/linux/sync_file.h
19961 F: include/uapi/linux/sync_file.h
19963 SYNOPSYS ARC ARCHITECTURE
19964 M: Vineet Gupta <vgupta@kernel.org>
19965 L: linux-snps-arc@lists.infradead.org
19967 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19968 F: Documentation/arc/
19969 F: Documentation/devicetree/bindings/arc/*
19970 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19972 F: drivers/clocksource/arc_timer.c
19973 F: drivers/tty/serial/arc_uart.c
19975 SYNOPSYS ARC HSDK SDP pll clock driver
19976 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19978 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19979 F: drivers/clk/clk-hsdk-pll.c
19981 SYNOPSYS ARC SDP clock driver
19982 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19984 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19985 F: drivers/clk/axs10x/*
19987 SYNOPSYS ARC SDP platform support
19988 M: Alexey Brodkin <abrodkin@synopsys.com>
19990 F: Documentation/devicetree/bindings/arc/axs10*
19991 F: arch/arc/boot/dts/ax*
19992 F: arch/arc/plat-axs10x
19994 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19995 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19997 F: Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
19998 F: drivers/reset/reset-axs10x.c
20000 SYNOPSYS CREG GPIO DRIVER
20001 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20003 F: Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20004 F: drivers/gpio/gpio-creg-snps.c
20006 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20007 M: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20008 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20010 F: drivers/tty/serial/8250/8250_dw.c
20011 F: drivers/tty/serial/8250/8250_dwlib.*
20012 F: drivers/tty/serial/8250/8250_lpss.c
20014 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20015 M: Hoan Tran <hoan@os.amperecomputing.com>
20016 M: Serge Semin <fancer.lancer@gmail.com>
20017 L: linux-gpio@vger.kernel.org
20019 F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20020 F: drivers/gpio/gpio-dwapb.c
20022 SYNOPSYS DESIGNWARE APB SSI DRIVER
20023 M: Serge Semin <fancer.lancer@gmail.com>
20024 L: linux-spi@vger.kernel.org
20026 F: Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20027 F: drivers/spi/spi-dw*
20029 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20030 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20032 F: Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20033 F: drivers/dma/dw-axi-dmac/
20035 SYNOPSYS DESIGNWARE DMAC DRIVER
20036 M: Viresh Kumar <vireshk@kernel.org>
20037 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20039 F: Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20040 F: Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20042 F: include/dt-bindings/dma/dw-dmac.h
20043 F: include/linux/dma/dw.h
20044 F: include/linux/platform_data/dma-dw.h
20046 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20047 M: Jose Abreu <Jose.Abreu@synopsys.com>
20048 L: netdev@vger.kernel.org
20050 F: drivers/net/ethernet/synopsys/
20052 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20053 M: Jose Abreu <Jose.Abreu@synopsys.com>
20054 L: netdev@vger.kernel.org
20056 F: drivers/net/pcs/pcs-xpcs.c
20057 F: drivers/net/pcs/pcs-xpcs.h
20058 F: include/linux/pcs/pcs-xpcs.h
20060 SYNOPSYS DESIGNWARE I2C DRIVER
20061 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
20062 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20063 R: Mika Westerberg <mika.westerberg@linux.intel.com>
20064 R: Jan Dabros <jsd@semihalf.com>
20065 L: linux-i2c@vger.kernel.org
20067 F: drivers/i2c/busses/i2c-designware-*
20069 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20070 M: Jaehoon Chung <jh80.chung@samsung.com>
20071 L: linux-mmc@vger.kernel.org
20073 F: drivers/mmc/host/dw_mmc*
20075 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20076 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20078 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20079 F: drivers/reset/reset-hsdk.c
20080 F: include/dt-bindings/reset/snps,hsdk-reset.h
20082 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20083 M: Prabu Thangamuthu <prabu.t@synopsys.com>
20084 M: Manjunath M B <manjumb@synopsys.com>
20085 L: linux-mmc@vger.kernel.org
20087 F: drivers/mmc/host/sdhci-pci-dwc-mshc.c
20089 SYSTEM CONFIGURATION (SYSCON)
20090 M: Lee Jones <lee@kernel.org>
20091 M: Arnd Bergmann <arnd@arndb.de>
20093 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20094 F: drivers/mfd/syscon.c
20096 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20097 M: Sudeep Holla <sudeep.holla@arm.com>
20098 R: Cristian Marussi <cristian.marussi@arm.com>
20099 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20101 F: Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20102 F: drivers/clk/clk-sc[mp]i.c
20103 F: drivers/cpufreq/sc[mp]i-cpufreq.c
20104 F: drivers/firmware/arm_scmi/
20105 F: drivers/firmware/arm_scpi.c
20106 F: drivers/powercap/arm_scmi_powercap.c
20107 F: drivers/regulator/scmi-regulator.c
20108 F: drivers/reset/reset-scmi.c
20109 F: include/linux/sc[mp]i_protocol.h
20110 F: include/trace/events/scmi.h
20111 F: include/uapi/linux/virtio_scmi.h
20113 SYSTEM RESET/SHUTDOWN DRIVERS
20114 M: Sebastian Reichel <sre@kernel.org>
20115 L: linux-pm@vger.kernel.org
20117 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20118 F: Documentation/devicetree/bindings/power/reset/
20119 F: drivers/power/reset/
20121 SYSTEM TRACE MODULE CLASS
20122 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
20124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20125 F: Documentation/trace/stm.rst
20126 F: drivers/hwtracing/stm/
20127 F: include/linux/stm.h
20128 F: include/uapi/linux/stm.h
20130 SYSTEM76 ACPI DRIVER
20131 M: Jeremy Soller <jeremy@system76.com>
20132 M: System76 Product Development <productdev@system76.com>
20133 L: platform-driver-x86@vger.kernel.org
20135 F: drivers/platform/x86/system76_acpi.c
20139 F: Documentation/filesystems/sysv-fs.rst
20141 F: include/linux/sysv_fs.h
20143 TASKSTATS STATISTICS INTERFACE
20144 M: Balbir Singh <bsingharora@gmail.com>
20146 F: Documentation/accounting/taskstats*
20147 F: include/linux/taskstats*
20148 F: kernel/taskstats.c
20151 M: Jamal Hadi Salim <jhs@mojatatu.com>
20152 M: Cong Wang <xiyou.wangcong@gmail.com>
20153 M: Jiri Pirko <jiri@resnulli.us>
20154 L: netdev@vger.kernel.org
20156 F: include/net/pkt_cls.h
20157 F: include/net/pkt_sched.h
20158 F: include/net/tc_act/
20159 F: include/uapi/linux/pkt_cls.h
20160 F: include/uapi/linux/pkt_sched.h
20161 F: include/uapi/linux/tc_act/
20162 F: include/uapi/linux/tc_ematch/
20164 F: tools/testing/selftests/tc-testing
20166 TC90522 MEDIA DRIVER
20167 M: Akihiro Tsukada <tskd08@gmail.com>
20168 L: linux-media@vger.kernel.org
20170 F: drivers/media/dvb-frontends/tc90522*
20172 TCP LOW PRIORITY MODULE
20173 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20174 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20176 W: http://tcp-lp-mod.sourceforge.net/
20177 F: net/ipv4/tcp_lp.c
20179 TDA10071 MEDIA DRIVER
20180 M: Antti Palosaari <crope@iki.fi>
20181 L: linux-media@vger.kernel.org
20183 W: https://linuxtv.org
20184 W: http://palosaari.fi/linux/
20185 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20186 T: git git://linuxtv.org/anttip/media_tree.git
20187 F: drivers/media/dvb-frontends/tda10071*
20189 TDA18212 MEDIA DRIVER
20190 M: Antti Palosaari <crope@iki.fi>
20191 L: linux-media@vger.kernel.org
20193 W: https://linuxtv.org
20194 W: http://palosaari.fi/linux/
20195 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20196 T: git git://linuxtv.org/anttip/media_tree.git
20197 F: drivers/media/tuners/tda18212*
20199 TDA18218 MEDIA DRIVER
20200 M: Antti Palosaari <crope@iki.fi>
20201 L: linux-media@vger.kernel.org
20203 W: https://linuxtv.org
20204 W: http://palosaari.fi/linux/
20205 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20206 T: git git://linuxtv.org/anttip/media_tree.git
20207 F: drivers/media/tuners/tda18218*
20209 TDA18250 MEDIA DRIVER
20210 M: Olli Salonen <olli.salonen@iki.fi>
20211 L: linux-media@vger.kernel.org
20213 W: https://linuxtv.org
20214 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20215 T: git git://linuxtv.org/media_tree.git
20216 F: drivers/media/tuners/tda18250*
20218 TDA18271 MEDIA DRIVER
20219 M: Michael Krufky <mkrufky@linuxtv.org>
20220 L: linux-media@vger.kernel.org
20222 W: https://linuxtv.org
20223 W: http://github.com/mkrufky
20224 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20225 T: git git://linuxtv.org/mkrufky/tuners.git
20226 F: drivers/media/tuners/tda18271*
20228 TDA1997x MEDIA DRIVER
20229 M: Tim Harvey <tharvey@gateworks.com>
20230 L: linux-media@vger.kernel.org
20232 W: https://linuxtv.org
20233 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20234 F: drivers/media/i2c/tda1997x.*
20236 TDA827x MEDIA DRIVER
20237 M: Michael Krufky <mkrufky@linuxtv.org>
20238 L: linux-media@vger.kernel.org
20240 W: https://linuxtv.org
20241 W: http://github.com/mkrufky
20242 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20243 T: git git://linuxtv.org/mkrufky/tuners.git
20244 F: drivers/media/tuners/tda8290.*
20246 TDA8290 MEDIA DRIVER
20247 M: Michael Krufky <mkrufky@linuxtv.org>
20248 L: linux-media@vger.kernel.org
20250 W: https://linuxtv.org
20251 W: http://github.com/mkrufky
20252 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20253 T: git git://linuxtv.org/mkrufky/tuners.git
20254 F: drivers/media/tuners/tda8290.*
20256 TDA9840 MEDIA DRIVER
20257 M: Hans Verkuil <hverkuil@xs4all.nl>
20258 L: linux-media@vger.kernel.org
20260 W: https://linuxtv.org
20261 T: git git://linuxtv.org/media_tree.git
20262 F: drivers/media/i2c/tda9840*
20264 TEA5761 TUNER DRIVER
20265 M: Mauro Carvalho Chehab <mchehab@kernel.org>
20266 L: linux-media@vger.kernel.org
20268 W: https://linuxtv.org
20269 T: git git://linuxtv.org/media_tree.git
20270 F: drivers/media/tuners/tea5761.*
20272 TEA5767 TUNER DRIVER
20273 M: Mauro Carvalho Chehab <mchehab@kernel.org>
20274 L: linux-media@vger.kernel.org
20276 W: https://linuxtv.org
20277 T: git git://linuxtv.org/media_tree.git
20278 F: drivers/media/tuners/tea5767.*
20280 TEA6415C MEDIA DRIVER
20281 M: Hans Verkuil <hverkuil@xs4all.nl>
20282 L: linux-media@vger.kernel.org
20284 W: https://linuxtv.org
20285 T: git git://linuxtv.org/media_tree.git
20286 F: drivers/media/i2c/tea6415c*
20288 TEA6420 MEDIA DRIVER
20289 M: Hans Verkuil <hverkuil@xs4all.nl>
20290 L: linux-media@vger.kernel.org
20292 W: https://linuxtv.org
20293 T: git git://linuxtv.org/media_tree.git
20294 F: drivers/media/i2c/tea6420*
20297 M: Jiri Pirko <jiri@resnulli.us>
20298 L: netdev@vger.kernel.org
20300 F: drivers/net/team/
20301 F: include/linux/if_team.h
20302 F: include/uapi/linux/if_team.h
20303 F: tools/testing/selftests/drivers/net/team/
20305 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20306 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20308 F: arch/x86/platform/ts5500/
20310 TECHNOTREND USB IR RECEIVER
20311 M: Sean Young <sean@mess.org>
20312 L: linux-media@vger.kernel.org
20314 F: drivers/media/rc/ttusbir.c
20316 TECHWELL TW9910 VIDEO DECODER
20317 L: linux-media@vger.kernel.org
20319 F: drivers/media/i2c/tw9910.c
20320 F: include/media/i2c/tw9910.h
20323 M: Jens Wiklander <jens.wiklander@linaro.org>
20324 R: Sumit Garg <sumit.garg@linaro.org>
20325 L: op-tee@lists.trustedfirmware.org
20327 F: Documentation/staging/tee.rst
20329 F: include/linux/tee_drv.h
20330 F: include/uapi/linux/tee.h
20332 TEGRA ARCHITECTURE SUPPORT
20333 M: Thierry Reding <thierry.reding@gmail.com>
20334 M: Jonathan Hunter <jonathanh@nvidia.com>
20335 L: linux-tegra@vger.kernel.org
20337 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
20338 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20342 M: Peter De Schrijver <pdeschrijver@nvidia.com>
20343 M: Prashant Gaikwad <pgaikwad@nvidia.com>
20345 F: drivers/clk/tegra/
20348 M: Laxman Dewangan <ldewangan@nvidia.com>
20349 M: Jon Hunter <jonathanh@nvidia.com>
20351 F: drivers/dma/tegra*
20354 M: Laxman Dewangan <ldewangan@nvidia.com>
20355 R: Dmitry Osipenko <digetx@gmail.com>
20357 F: drivers/i2c/busses/i2c-tegra.c
20359 TEGRA IOMMU DRIVERS
20360 M: Thierry Reding <thierry.reding@gmail.com>
20361 R: Krishna Reddy <vdumpa@nvidia.com>
20362 L: linux-tegra@vger.kernel.org
20364 F: drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20365 F: drivers/iommu/tegra*
20368 M: Laxman Dewangan <ldewangan@nvidia.com>
20370 F: drivers/input/keyboard/tegra-kbc.c
20373 M: Stefan Agner <stefan@agner.ch>
20374 M: Lucas Stach <dev@lynxeye.de>
20376 F: Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20377 F: drivers/mtd/nand/raw/tegra_nand.c
20380 M: Thierry Reding <thierry.reding@gmail.com>
20382 F: drivers/pwm/pwm-tegra.c
20384 TEGRA SERIAL DRIVER
20385 M: Laxman Dewangan <ldewangan@nvidia.com>
20387 F: drivers/tty/serial/serial-tegra.c
20390 M: Laxman Dewangan <ldewangan@nvidia.com>
20392 F: drivers/spi/spi-tegra*
20394 TEGRA QUAD SPI DRIVER
20395 M: Thierry Reding <thierry.reding@gmail.com>
20396 M: Jonathan Hunter <jonathanh@nvidia.com>
20397 M: Sowjanya Komatineni <skomatineni@nvidia.com>
20398 L: linux-tegra@vger.kernel.org
20400 F: drivers/spi/spi-tegra210-quad.c
20403 M: Thierry Reding <thierry.reding@gmail.com>
20404 M: Jonathan Hunter <jonathanh@nvidia.com>
20405 M: Sowjanya Komatineni <skomatineni@nvidia.com>
20406 L: linux-media@vger.kernel.org
20407 L: linux-tegra@vger.kernel.org
20409 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20410 F: drivers/staging/media/tegra-video/
20412 TEGRA XUSB PADCTL DRIVER
20413 M: JC Kuo <jckuo@nvidia.com>
20415 F: drivers/phy/tegra/xusb*
20417 TEHUTI ETHERNET DRIVER
20418 M: Andy Gospodarek <andy@greyhouse.net>
20419 L: netdev@vger.kernel.org
20421 F: drivers/net/ethernet/tehuti/*
20423 TELECOM CLOCK DRIVER FOR MCPL0010
20424 M: Mark Gross <markgross@kernel.org>
20426 F: drivers/char/tlclk.c
20428 TEMPO SEMICONDUCTOR DRIVERS
20429 M: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20431 F: Documentation/devicetree/bindings/sound/tscs*.txt
20432 F: sound/soc/codecs/tscs*.c
20433 F: sound/soc/codecs/tscs*.h
20435 TENSILICA XTENSA PORT (xtensa)
20436 M: Chris Zankel <chris@zankel.net>
20437 M: Max Filippov <jcmvbkbc@gmail.com>
20438 L: linux-xtensa@linux-xtensa.org
20440 T: git https://github.com/jcmvbkbc/linux-xtensa.git
20442 F: drivers/irqchip/irq-xtensa-*
20444 TEXAS INSTRUMENTS ASoC DRIVERS
20445 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
20446 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20448 F: Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20451 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20452 M: Ricardo Ribalda <ribalda@kernel.org>
20453 L: linux-iio@vger.kernel.org
20455 F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20456 F: drivers/iio/dac/ti-dac7612.c
20458 TEXAS INSTRUMENTS DMA DRIVERS
20459 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
20460 L: dmaengine@vger.kernel.org
20462 F: Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20463 F: Documentation/devicetree/bindings/dma/ti-edma.txt
20464 F: Documentation/devicetree/bindings/dma/ti/
20466 X: drivers/dma/ti/cppi41.c
20467 F: include/linux/dma/k3-udma-glue.h
20468 F: include/linux/dma/ti-cppi5.h
20469 F: include/linux/dma/k3-psil.h
20471 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20472 M: Nishanth Menon <nm@ti.com>
20473 M: Tero Kristo <kristo@kernel.org>
20474 M: Santosh Shilimkar <ssantosh@kernel.org>
20475 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20477 F: Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20478 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20479 F: Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20480 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20481 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20482 F: Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20483 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20484 F: drivers/clk/keystone/sci-clk.c
20485 F: drivers/firmware/ti_sci*
20486 F: drivers/irqchip/irq-ti-sci-inta.c
20487 F: drivers/irqchip/irq-ti-sci-intr.c
20488 F: drivers/reset/reset-ti-sci.c
20489 F: drivers/soc/ti/ti_sci_inta_msi.c
20490 F: drivers/soc/ti/ti_sci_pm_domains.c
20491 F: include/dt-bindings/soc/ti,sci_pm_domain.h
20492 F: include/linux/soc/ti/ti_sci_inta_msi.h
20493 F: include/linux/soc/ti/ti_sci_protocol.h
20495 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20496 M: Robert Marko <robert.marko@sartura.hr>
20497 M: Luka Perkov <luka.perkov@sartura.hr>
20498 L: linux-hwmon@vger.kernel.org
20500 F: Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20501 F: Documentation/hwmon/tps23861.rst
20502 F: drivers/hwmon/tps23861.c
20504 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20505 M: Puranjay Mohan <puranjay12@gmail.com>
20506 L: linux-iio@vger.kernel.org
20508 F: Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20509 F: drivers/iio/temperature/tmp117.c
20511 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20512 M: Hans Verkuil <hverkuil@xs4all.nl>
20513 L: linux-media@vger.kernel.org
20515 W: https://linuxtv.org
20516 T: git git://linuxtv.org/media_tree.git
20517 F: drivers/media/radio/radio-raremono.c
20520 M: Rafael J. Wysocki <rafael@kernel.org>
20521 M: Daniel Lezcano <daniel.lezcano@linaro.org>
20522 R: Amit Kucheria <amitk@kernel.org>
20523 R: Zhang Rui <rui.zhang@intel.com>
20524 L: linux-pm@vger.kernel.org
20526 Q: https://patchwork.kernel.org/project/linux-pm/list/
20527 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20528 F: Documentation/ABI/testing/sysfs-class-thermal
20529 F: Documentation/devicetree/bindings/thermal/
20530 F: Documentation/driver-api/thermal/
20531 F: drivers/thermal/
20532 F: include/dt-bindings/thermal/
20533 F: include/linux/cpu_cooling.h
20534 F: include/linux/thermal.h
20535 F: include/uapi/linux/thermal.h
20536 F: tools/lib/thermal/
20539 THERMAL DRIVER FOR AMLOGIC SOCS
20540 M: Guillaume La Roque <glaroque@baylibre.com>
20541 L: linux-pm@vger.kernel.org
20542 L: linux-amlogic@lists.infradead.org
20544 W: http://linux-meson.com/
20545 F: Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20546 F: drivers/thermal/amlogic_thermal.c
20548 THERMAL/CPU_COOLING
20549 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
20550 M: Daniel Lezcano <daniel.lezcano@linaro.org>
20551 M: Viresh Kumar <viresh.kumar@linaro.org>
20552 R: Lukasz Luba <lukasz.luba@arm.com>
20553 L: linux-pm@vger.kernel.org
20555 F: Documentation/driver-api/thermal/cpu-cooling-api.rst
20556 F: Documentation/driver-api/thermal/cpu-idle-cooling.rst
20557 F: drivers/thermal/cpufreq_cooling.c
20558 F: drivers/thermal/cpuidle_cooling.c
20559 F: include/linux/cpu_cooling.h
20561 THERMAL/POWER_ALLOCATOR
20562 M: Lukasz Luba <lukasz.luba@arm.com>
20563 L: linux-pm@vger.kernel.org
20565 F: Documentation/driver-api/thermal/power_allocator.rst
20566 F: drivers/thermal/gov_power_allocator.c
20567 F: include/trace/events/thermal_power_allocator.h
20569 THINKPAD ACPI EXTRAS DRIVER
20570 M: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20571 L: ibm-acpi-devel@lists.sourceforge.net
20572 L: platform-driver-x86@vger.kernel.org
20574 W: http://ibm-acpi.sourceforge.net
20575 W: http://thinkwiki.org/wiki/Ibm-acpi
20576 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20577 F: drivers/platform/x86/thinkpad_acpi.c
20579 THINKPAD LMI DRIVER
20580 M: Mark Pearson <markpearson@lenovo.com>
20581 L: platform-driver-x86@vger.kernel.org
20583 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
20584 F: drivers/platform/x86/think-lmi.?
20586 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20587 M: Isaac Hazan <isaac.hazan@intel.com>
20588 L: linux-usb@vger.kernel.org
20590 F: drivers/thunderbolt/dma_test.c
20593 M: Andreas Noever <andreas.noever@gmail.com>
20594 M: Michael Jamet <michael.jamet@intel.com>
20595 M: Mika Westerberg <mika.westerberg@linux.intel.com>
20596 M: Yehezkel Bernat <YehezkelShB@gmail.com>
20597 L: linux-usb@vger.kernel.org
20599 T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20600 F: Documentation/admin-guide/thunderbolt.rst
20601 F: drivers/thunderbolt/
20602 F: include/linux/thunderbolt.h
20604 THUNDERBOLT NETWORK DRIVER
20605 M: Michael Jamet <michael.jamet@intel.com>
20606 M: Mika Westerberg <mika.westerberg@linux.intel.com>
20607 M: Yehezkel Bernat <YehezkelShB@gmail.com>
20608 L: netdev@vger.kernel.org
20610 F: drivers/net/thunderbolt.c
20612 THUNDERX GPIO DRIVER
20613 M: Robert Richter <rric@kernel.org>
20615 F: drivers/gpio/gpio-thunderx.c
20617 TI AM437X VPFE DRIVER
20618 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20619 L: linux-media@vger.kernel.org
20621 W: https://linuxtv.org
20622 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20623 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20624 F: drivers/media/platform/ti/am437x/
20626 TI BANDGAP AND THERMAL DRIVER
20627 M: Eduardo Valentin <edubezval@gmail.com>
20628 M: Keerthy <j-keerthy@ti.com>
20629 L: linux-pm@vger.kernel.org
20630 L: linux-omap@vger.kernel.org
20632 F: drivers/thermal/ti-soc-thermal/
20634 TI BQ27XXX POWER SUPPLY DRIVER
20635 F: drivers/power/supply/bq27xxx_battery.c
20636 F: drivers/power/supply/bq27xxx_battery_i2c.c
20637 F: include/linux/power/bq27xxx_battery.h
20639 TI CDCE706 CLOCK DRIVER
20640 M: Max Filippov <jcmvbkbc@gmail.com>
20642 F: drivers/clk/clk-cdce706.c
20645 M: Tero Kristo <kristo@kernel.org>
20646 L: linux-omap@vger.kernel.org
20649 F: include/linux/clk/ti.h
20651 TI DAVINCI MACHINE SUPPORT
20652 M: Sekhar Nori <nsekhar@ti.com>
20653 R: Bartosz Golaszewski <brgl@bgdev.pl>
20654 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20656 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20657 F: Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20658 F: arch/arm/boot/dts/da850*
20659 F: arch/arm/mach-davinci/
20660 F: drivers/i2c/busses/i2c-davinci.c
20662 TI DAVINCI SERIES CLOCK DRIVER
20663 M: David Lechner <david@lechnology.com>
20664 R: Sekhar Nori <nsekhar@ti.com>
20666 F: Documentation/devicetree/bindings/clock/ti/davinci/
20667 F: drivers/clk/davinci/
20668 F: include/linux/clk/davinci.h
20670 TI DAVINCI SERIES GPIO DRIVER
20671 M: Keerthy <j-keerthy@ti.com>
20672 L: linux-gpio@vger.kernel.org
20674 F: Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20675 F: drivers/gpio/gpio-davinci.c
20677 TI DAVINCI SERIES MEDIA DRIVER
20678 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20679 L: linux-media@vger.kernel.org
20681 W: https://linuxtv.org
20682 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20683 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20684 F: drivers/media/platform/ti/davinci/
20685 F: include/media/davinci/
20687 TI ENHANCED CAPTURE (eCAP) DRIVER
20688 M: Vignesh Raghavendra <vigneshr@ti.com>
20689 R: Julien Panis <jpanis@baylibre.com>
20690 L: linux-iio@vger.kernel.org
20691 L: linux-omap@vger.kernel.org
20693 F: Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
20694 F: drivers/counter/ti-ecap-capture.c
20696 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20697 R: David Lechner <david@lechnology.com>
20698 L: linux-iio@vger.kernel.org
20699 F: Documentation/devicetree/bindings/counter/ti-eqep.yaml
20700 F: drivers/counter/ti-eqep.c
20702 TI ETHERNET SWITCH DRIVER (CPSW)
20703 R: Grygorii Strashko <grygorii.strashko@ti.com>
20704 L: linux-omap@vger.kernel.org
20705 L: netdev@vger.kernel.org
20707 F: drivers/net/ethernet/ti/cpsw*
20708 F: drivers/net/ethernet/ti/davinci*
20710 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20711 M: Alex Dubov <oakad@yahoo.com>
20713 W: http://tifmxx.berlios.de/
20714 F: drivers/memstick/host/tifm_ms.c
20715 F: drivers/misc/tifm*
20716 F: drivers/mmc/host/tifm_sd.c
20717 F: include/linux/tifm.h
20719 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20720 M: Nishanth Menon <nm@ti.com>
20721 M: Santosh Shilimkar <ssantosh@kernel.org>
20722 L: linux-kernel@vger.kernel.org
20723 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20725 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20726 F: drivers/soc/ti/*
20728 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20729 M: M R Swami Reddy <mr.swami.reddy@ti.com>
20730 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20731 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20733 F: sound/soc/codecs/isabelle*
20734 F: sound/soc/codecs/lm49453*
20736 TI PCM3060 ASoC CODEC DRIVER
20737 M: Kirill Marinushkin <kmarinushkin@birdec.com>
20738 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20740 F: Documentation/devicetree/bindings/sound/pcm3060.txt
20741 F: sound/soc/codecs/pcm3060*
20743 TI TAS571X FAMILY ASoC CODEC DRIVER
20744 M: Kevin Cernekee <cernekee@chromium.org>
20745 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20747 F: sound/soc/codecs/tas571x*
20749 TI TRF7970A NFC DRIVER
20750 M: Mark Greer <mgreer@animalcreek.com>
20751 L: linux-wireless@vger.kernel.org
20752 L: linux-nfc@lists.01.org (subscribers-only)
20754 F: Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20755 F: drivers/nfc/trf7970a.c
20757 TI TSC2046 ADC DRIVER
20758 M: Oleksij Rempel <o.rempel@pengutronix.de>
20759 R: kernel@pengutronix.de
20760 L: linux-iio@vger.kernel.org
20762 F: Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20763 F: drivers/iio/adc/ti-tsc2046.c
20765 TI TWL4030 SERIES SOC CODEC DRIVER
20766 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
20767 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20769 F: sound/soc/codecs/twl4030*
20772 M: Benoit Parrot <bparrot@ti.com>
20773 L: linux-media@vger.kernel.org
20775 W: http://linuxtv.org/
20776 Q: http://patchwork.linuxtv.org/project/linux-media/list/
20777 F: Documentation/devicetree/bindings/media/ti,cal.yaml
20778 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
20779 F: drivers/media/platform/ti/cal/
20780 F: drivers/media/platform/ti/vpe/
20782 TI WILINK WIRELESS DRIVERS
20783 L: linux-wireless@vger.kernel.org
20785 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20786 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20787 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20788 F: drivers/net/wireless/ti/
20790 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20791 M: John Stultz <jstultz@google.com>
20792 M: Thomas Gleixner <tglx@linutronix.de>
20793 R: Stephen Boyd <sboyd@kernel.org>
20794 L: linux-kernel@vger.kernel.org
20796 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20797 F: include/linux/clocksource.h
20798 F: include/linux/time.h
20799 F: include/linux/timex.h
20800 F: include/uapi/linux/time.h
20801 F: include/uapi/linux/timex.h
20802 F: kernel/time/alarmtimer.c
20803 F: kernel/time/clocksource.c
20804 F: kernel/time/ntp.c
20805 F: kernel/time/time*.c
20806 F: tools/testing/selftests/timers/
20809 M: Jon Maloy <jmaloy@redhat.com>
20810 M: Ying Xue <ying.xue@windriver.com>
20811 L: netdev@vger.kernel.org (core kernel code)
20812 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20814 W: http://tipc.sourceforge.net/
20815 F: include/uapi/linux/tipc*.h
20818 TLAN NETWORK DRIVER
20819 M: Samuel Chessman <chessman@tux.org>
20820 L: tlan-devel@lists.sourceforge.net (subscribers-only)
20822 W: http://sourceforge.net/projects/tlan/
20823 F: Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20824 F: drivers/net/ethernet/ti/tlan.*
20826 TM6000 VIDEO4LINUX DRIVER
20827 M: Mauro Carvalho Chehab <mchehab@kernel.org>
20828 L: linux-media@vger.kernel.org
20830 W: https://linuxtv.org
20831 T: git git://linuxtv.org/media_tree.git
20832 F: Documentation/admin-guide/media/tm6000*
20833 F: drivers/staging/media/deprecated/tm6000/
20835 TMIO/SDHI MMC DRIVER
20836 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
20837 L: linux-mmc@vger.kernel.org
20838 L: linux-renesas-soc@vger.kernel.org
20840 F: drivers/mmc/host/renesas_sdhi*
20841 F: drivers/mmc/host/tmio_mmc*
20842 F: include/linux/mfd/tmio.h
20844 TMP401 HARDWARE MONITOR DRIVER
20845 M: Guenter Roeck <linux@roeck-us.net>
20846 L: linux-hwmon@vger.kernel.org
20848 F: Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20849 F: Documentation/hwmon/tmp401.rst
20850 F: drivers/hwmon/tmp401.c
20852 TMP464 HARDWARE MONITOR DRIVER
20853 M: Agathe Porte <agathe.porte@nokia.com>
20854 M: Guenter Roeck <linux@roeck-us.net>
20855 L: linux-hwmon@vger.kernel.org
20857 F: Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20858 F: Documentation/hwmon/tmp464.rst
20859 F: drivers/hwmon/tmp464.c
20861 TMP513 HARDWARE MONITOR DRIVER
20862 M: Eric Tremblay <etremblay@distech-controls.com>
20863 L: linux-hwmon@vger.kernel.org
20865 F: Documentation/hwmon/tmp513.rst
20866 F: drivers/hwmon/tmp513.c
20868 TMPFS (SHMEM FILESYSTEM)
20869 M: Hugh Dickins <hughd@google.com>
20870 L: linux-mm@kvack.org
20872 F: include/linux/shmem_fs.h
20875 TOMOYO SECURITY MODULE
20876 M: Kentaro Takeda <takedakn@nttdata.co.jp>
20877 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20878 L: tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20879 L: tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20880 L: tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20881 L: tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20883 W: https://tomoyo.osdn.jp/
20884 F: security/tomoyo/
20886 TOPSTAR LAPTOP EXTRAS DRIVER
20887 M: Herton Ronaldo Krzesinski <herton@canonical.com>
20888 L: platform-driver-x86@vger.kernel.org
20890 F: drivers/platform/x86/topstar-laptop.c
20892 TORTURE-TEST MODULES
20893 M: Davidlohr Bueso <dave@stgolabs.net>
20894 M: "Paul E. McKenney" <paulmck@kernel.org>
20895 M: Josh Triplett <josh@joshtriplett.org>
20896 L: linux-kernel@vger.kernel.org
20898 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20899 F: Documentation/RCU/torture.rst
20900 F: kernel/locking/locktorture.c
20901 F: kernel/rcu/rcuscale.c
20902 F: kernel/rcu/rcutorture.c
20903 F: kernel/rcu/refscale.c
20904 F: kernel/torture.c
20906 TOSHIBA ACPI EXTRAS DRIVER
20907 M: Azael Avalos <coproscefalo@gmail.com>
20908 L: platform-driver-x86@vger.kernel.org
20910 F: drivers/platform/x86/toshiba_acpi.c
20912 TOSHIBA BLUETOOTH DRIVER
20913 M: Azael Avalos <coproscefalo@gmail.com>
20914 L: platform-driver-x86@vger.kernel.org
20916 F: drivers/platform/x86/toshiba_bluetooth.c
20918 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20919 M: Azael Avalos <coproscefalo@gmail.com>
20920 L: platform-driver-x86@vger.kernel.org
20922 F: drivers/platform/x86/toshiba_haps.c
20925 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
20927 W: http://www.buzzard.org.uk/toshiba/
20928 F: drivers/char/toshiba.c
20929 F: include/linux/toshiba.h
20930 F: include/uapi/linux/toshiba.h
20932 TOSHIBA TC358743 DRIVER
20933 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
20934 L: linux-media@vger.kernel.org
20936 F: Documentation/devicetree/bindings/media/i2c/tc358743.txt
20937 F: drivers/media/i2c/tc358743*
20938 F: include/media/i2c/tc358743.h
20940 TOSHIBA WMI HOTKEYS DRIVER
20941 M: Azael Avalos <coproscefalo@gmail.com>
20942 L: platform-driver-x86@vger.kernel.org
20944 F: drivers/platform/x86/toshiba-wmi.c
20947 M: Peter Huewe <peterhuewe@gmx.de>
20948 M: Jarkko Sakkinen <jarkko@kernel.org>
20949 R: Jason Gunthorpe <jgg@ziepe.ca>
20950 L: linux-integrity@vger.kernel.org
20952 W: https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20953 Q: https://patchwork.kernel.org/project/linux-integrity/list/
20954 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20955 F: drivers/char/tpm/
20958 M: Duke Du <dukedu83@gmail.com>
20959 L: linux-hwmon@vger.kernel.org
20961 F: Documentation/hwmon/tps546d24.rst
20962 F: drivers/hwmon/pmbus/tps546d24.c
20965 M: Steven Rostedt <rostedt@goodmis.org>
20966 M: Masami Hiramatsu <mhiramat@kernel.org>
20967 L: linux-kernel@vger.kernel.org
20968 L: linux-trace-kernel@vger.kernel.org
20969 Q: https://patchwork.kernel.org/project/linux-trace-kernel/list/
20971 T: git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
20972 F: Documentation/trace/*
20974 F: include/linux/trace*.h
20977 F: scripts/tracing/
20978 F: tools/testing/selftests/ftrace/
20980 TRACING MMIO ACCESSES (MMIOTRACE)
20981 M: Steven Rostedt <rostedt@goodmis.org>
20982 M: Masami Hiramatsu <mhiramat@kernel.org>
20983 R: Karol Herbst <karolherbst@gmail.com>
20984 R: Pekka Paalanen <ppaalanen@gmail.com>
20985 L: linux-kernel@vger.kernel.org
20986 L: nouveau@lists.freedesktop.org
20988 F: arch/x86/mm/kmmio.c
20989 F: arch/x86/mm/mmio-mod.c
20990 F: arch/x86/mm/testmmiotrace.c
20991 F: include/linux/mmiotrace.h
20992 F: kernel/trace/trace_mmiotrace.c
20994 TRACING OS NOISE / LATENCY TRACERS
20995 M: Steven Rostedt <rostedt@goodmis.org>
20996 M: Daniel Bristot de Oliveira <bristot@kernel.org>
20998 F: kernel/trace/trace_osnoise.c
20999 F: include/trace/events/osnoise.h
21000 F: kernel/trace/trace_hwlat.c
21001 F: kernel/trace/trace_irqsoff.c
21002 F: kernel/trace/trace_sched_wakeup.c
21003 F: Documentation/trace/osnoise-tracer.rst
21004 F: Documentation/trace/timerlat-tracer.rst
21005 F: Documentation/trace/hwlat_detector.rst
21006 F: arch/*/kernel/trace.c
21008 Real-time Linux Analysis (RTLA) tools
21009 M: Daniel Bristot de Oliveira <bristot@kernel.org>
21010 M: Steven Rostedt <rostedt@goodmis.org>
21011 L: linux-trace-devel@vger.kernel.org
21013 F: Documentation/tools/rtla/
21014 F: tools/tracing/rtla/
21016 TRADITIONAL CHINESE DOCUMENTATION
21017 M: Hu Haowen <src.res@email.cn>
21018 L: linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21020 W: https://github.com/srcres258/linux-doc
21021 T: git git://github.com/srcres258/linux-doc.git doc-zh-tw
21022 F: Documentation/translations/zh_TW/
21025 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21026 M: Jiri Slaby <jirislaby@kernel.org>
21028 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21029 F: Documentation/driver-api/serial/
21031 F: drivers/tty/serial/serial_core.c
21032 F: include/linux/selection.h
21033 F: include/linux/serial.h
21034 F: include/linux/serial_core.h
21035 F: include/linux/sysrq.h
21036 F: include/linux/tty*.h
21037 F: include/linux/vt.h
21038 F: include/linux/vt_*.h
21039 F: include/uapi/linux/serial.h
21040 F: include/uapi/linux/serial_core.h
21041 F: include/uapi/linux/tty.h
21043 TUA9001 MEDIA DRIVER
21044 M: Antti Palosaari <crope@iki.fi>
21045 L: linux-media@vger.kernel.org
21047 W: https://linuxtv.org
21048 W: http://palosaari.fi/linux/
21049 Q: http://patchwork.linuxtv.org/project/linux-media/list/
21050 T: git git://linuxtv.org/anttip/media_tree.git
21051 F: drivers/media/tuners/tua9001*
21053 TULIP NETWORK DRIVERS
21054 L: netdev@vger.kernel.org
21055 L: linux-parisc@vger.kernel.org
21057 F: drivers/net/ethernet/dec/tulip/
21060 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
21062 W: http://vtun.sourceforge.net/tun
21063 F: Documentation/networking/tuntap.rst
21064 F: arch/um/os-Linux/drivers/
21066 TURBOCHANNEL SUBSYSTEM
21067 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
21068 M: Ralf Baechle <ralf@linux-mips.org>
21069 L: linux-mips@vger.kernel.org
21071 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
21073 F: include/linux/tc.h
21076 M: "Len Brown" <lenb@kernel.org>
21077 L: linux-pm@vger.kernel.org
21079 Q: https://patchwork.kernel.org/project/linux-pm/list/
21080 B: https://bugzilla.kernel.org
21081 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21082 F: tools/power/x86/turbostat/
21084 TW5864 VIDEO4LINUX DRIVER
21085 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21086 M: Anton Sviridenko <anton@corp.bluecherry.net>
21087 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21088 M: Andrey Utkin <andrey_utkin@fastmail.com>
21089 L: linux-media@vger.kernel.org
21091 F: drivers/media/pci/tw5864/
21093 TW68 VIDEO4LINUX DRIVER
21094 M: Hans Verkuil <hverkuil@xs4all.nl>
21095 L: linux-media@vger.kernel.org
21097 W: https://linuxtv.org
21098 T: git git://linuxtv.org/media_tree.git
21099 F: drivers/media/pci/tw68/
21101 TW686X VIDEO4LINUX DRIVER
21102 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21103 L: linux-media@vger.kernel.org
21105 W: http://linuxtv.org
21106 T: git git://linuxtv.org/media_tree.git
21107 F: drivers/media/pci/tw686x/
21109 U-BOOT ENVIRONMENT VARIABLES
21110 M: Rafał Miłecki <rafal@milecki.pl>
21112 F: Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21113 F: drivers/nvmem/u-boot-env.c
21115 UACCE ACCELERATOR FRAMEWORK
21116 M: Zhangfei Gao <zhangfei.gao@linaro.org>
21117 M: Zhou Wang <wangzhou1@hisilicon.com>
21118 L: linux-accelerators@lists.ozlabs.org
21119 L: linux-kernel@vger.kernel.org
21121 F: Documentation/ABI/testing/sysfs-driver-uacce
21122 F: Documentation/misc-devices/uacce.rst
21123 F: drivers/misc/uacce/
21124 F: include/linux/uacce.h
21125 F: include/uapi/misc/uacce/
21127 UBI FILE SYSTEM (UBIFS)
21128 M: Richard Weinberger <richard@nod.at>
21129 L: linux-mtd@lists.infradead.org
21131 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
21132 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21133 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21134 F: Documentation/ABI/testing/sysfs-fs-ubifs
21135 F: Documentation/filesystems/ubifs-authentication.rst
21136 F: Documentation/filesystems/ubifs.rst
21139 UBLK USERSPACE BLOCK DRIVER
21140 M: Ming Lei <ming.lei@redhat.com>
21141 L: linux-block@vger.kernel.org
21143 F: Documentation/block/ublk.rst
21144 F: drivers/block/ublk_drv.c
21145 F: include/uapi/linux/ublk_cmd.h
21147 UCLINUX (M68KNOMMU AND COLDFIRE)
21148 M: Greg Ungerer <gerg@linux-m68k.org>
21149 L: linux-m68k@lists.linux-m68k.org
21150 L: uclinux-dev@uclinux.org (subscribers-only)
21152 W: http://www.linux-m68k.org/
21153 W: http://www.uclinux.org/
21154 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21155 F: arch/m68k/*/*_no.*
21157 F: arch/m68k/coldfire/
21158 F: arch/m68k/include/asm/*_no.*
21161 M: Jan Kara <jack@suse.com>
21163 F: Documentation/filesystems/udf.rst
21167 M: Bastien Nocera <hadess@hadess.net>
21168 L: linux-input@vger.kernel.org
21170 F: drivers/hid/hid-udraw-ps3.c
21173 M: Evgeniy Dushistov <dushistov@mail.ru>
21175 F: Documentation/admin-guide/ufs.rst
21178 UHID USERSPACE HID IO DRIVER
21179 M: David Rheinsberg <david.rheinsberg@gmail.com>
21180 L: linux-input@vger.kernel.org
21182 F: drivers/hid/uhid.c
21183 F: include/uapi/linux/uhid.h
21186 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
21187 L: linux-usb@vger.kernel.org
21189 F: drivers/usb/common/ulpi.c
21190 F: include/linux/ulpi/
21193 M: Gabriel Krisman Bertazi <krisman@collabora.com>
21194 L: linux-fsdevel@vger.kernel.org
21199 M: Tony Finch <dot@dotat.at>
21201 W: http://dotat.at/prog/unifdef
21202 F: scripts/unifdef.c
21204 UNIFORM CDROM DRIVER
21205 M: Phillip Potter <phil@philpotter.co.uk>
21207 F: Documentation/cdrom/
21208 F: drivers/cdrom/cdrom.c
21209 F: include/linux/cdrom.h
21210 F: include/uapi/linux/cdrom.h
21212 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21213 R: Alim Akhtar <alim.akhtar@samsung.com>
21214 R: Avri Altman <avri.altman@wdc.com>
21215 R: Bart Van Assche <bvanassche@acm.org>
21216 L: linux-scsi@vger.kernel.org
21218 F: Documentation/devicetree/bindings/ufs/
21219 F: Documentation/scsi/ufs.rst
21220 F: drivers/ufs/core/
21222 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21223 M: Pedro Sousa <pedrom.sousa@synopsys.com>
21224 L: linux-scsi@vger.kernel.org
21226 F: drivers/ufs/host/*dwc*
21228 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21229 M: Stanley Chu <stanley.chu@mediatek.com>
21230 L: linux-scsi@vger.kernel.org
21231 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21233 F: drivers/ufs/host/ufs-mediatek*
21235 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21236 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21237 L: linux-renesas-soc@vger.kernel.org
21238 L: linux-scsi@vger.kernel.org
21240 F: drivers/ufs/host/ufs-renesas.c
21242 UNSORTED BLOCK IMAGES (UBI)
21243 M: Richard Weinberger <richard@nod.at>
21244 L: linux-mtd@lists.infradead.org
21246 W: http://www.linux-mtd.infradead.org/
21247 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21248 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21249 F: drivers/mtd/ubi/
21250 F: include/linux/mtd/ubi.h
21251 F: include/uapi/mtd/ubi-user.h
21253 USB "USBNET" DRIVER FRAMEWORK
21254 M: Oliver Neukum <oneukum@suse.com>
21255 L: netdev@vger.kernel.org
21257 W: http://www.linux-usb.org/usbnet
21258 F: drivers/net/usb/usbnet.c
21259 F: include/linux/usb/usbnet.h
21262 M: Oliver Neukum <oneukum@suse.com>
21263 L: linux-usb@vger.kernel.org
21265 F: Documentation/usb/acm.rst
21266 F: drivers/usb/class/cdc-acm.*
21268 USB APPLE MFI FASTCHARGE DRIVER
21269 M: Bastien Nocera <hadess@hadess.net>
21270 L: linux-usb@vger.kernel.org
21272 F: drivers/usb/misc/apple-mfi-fastcharge.c
21274 USB AR5523 WIRELESS DRIVER
21275 M: Pontus Fuchs <pontus.fuchs@gmail.com>
21276 L: linux-wireless@vger.kernel.org
21278 F: drivers/net/wireless/ath/ar5523/
21281 M: Oliver Neukum <oneukum@suse.com>
21282 L: linux-usb@vger.kernel.org
21283 L: linux-scsi@vger.kernel.org
21285 F: drivers/usb/storage/uas.c
21287 USB CDC ETHERNET DRIVER
21288 M: Oliver Neukum <oliver@neukum.org>
21289 L: linux-usb@vger.kernel.org
21291 F: drivers/net/usb/cdc_*.c
21292 F: include/uapi/linux/usb/cdc.h
21294 USB CHAOSKEY DRIVER
21295 M: Keith Packard <keithp@keithp.com>
21296 L: linux-usb@vger.kernel.org
21298 F: drivers/usb/misc/chaoskey.c
21300 USB CYPRESS C67X00 DRIVER
21301 L: linux-usb@vger.kernel.org
21303 F: drivers/usb/c67x00/
21305 USB DAVICOM DM9601 DRIVER
21306 M: Peter Korsgaard <peter@korsgaard.com>
21307 L: netdev@vger.kernel.org
21309 W: http://www.linux-usb.org/usbnet
21310 F: drivers/net/usb/dm9601.c
21313 M: Alan Stern <stern@rowland.harvard.edu>
21314 L: linux-usb@vger.kernel.org
21316 F: Documentation/usb/ehci.rst
21317 F: drivers/usb/host/ehci*
21319 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21320 M: Jiri Kosina <jikos@kernel.org>
21321 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
21322 L: linux-usb@vger.kernel.org
21324 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21325 F: Documentation/hid/hiddev.rst
21326 F: drivers/hid/usbhid/
21328 USB INTEL XHCI ROLE MUX DRIVER
21329 M: Hans de Goede <hdegoede@redhat.com>
21330 L: linux-usb@vger.kernel.org
21332 F: drivers/usb/roles/intel-xhci-usb-role-switch.c
21334 USB IP DRIVER FOR HISILICON KIRIN 960
21335 M: Yu Chen <chenyu56@huawei.com>
21336 M: Binghui Wang <wangbinghui@hisilicon.com>
21337 L: linux-usb@vger.kernel.org
21339 F: Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21340 F: drivers/phy/hisilicon/phy-hi3660-usb3.c
21342 USB IP DRIVER FOR HISILICON KIRIN 970
21343 M: Mauro Carvalho Chehab <mchehab@kernel.org>
21344 L: linux-usb@vger.kernel.org
21346 F: Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21347 F: drivers/phy/hisilicon/phy-hi3670-usb3.c
21350 M: Olav Kongas <ok@artecdesign.ee>
21351 L: linux-usb@vger.kernel.org
21353 F: drivers/usb/host/isp116x*
21354 F: include/linux/usb/isp116x.h
21357 M: Rui Miguel Silva <rui.silva@linaro.org>
21358 L: linux-usb@vger.kernel.org
21360 F: drivers/usb/isp1760/*
21361 F: Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21363 USB LAN78XX ETHERNET DRIVER
21364 M: Woojung Huh <woojung.huh@microchip.com>
21365 M: UNGLinuxDriver@microchip.com
21366 L: netdev@vger.kernel.org
21368 F: Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21369 F: drivers/net/usb/lan78xx.*
21370 F: include/dt-bindings/net/microchip-lan78xx.h
21372 USB MASS STORAGE DRIVER
21373 M: Alan Stern <stern@rowland.harvard.edu>
21374 L: linux-usb@vger.kernel.org
21375 L: usb-storage@lists.one-eyed-alien.net
21377 F: drivers/usb/storage/
21380 M: Clemens Ladisch <clemens@ladisch.de>
21381 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
21383 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21384 F: sound/usb/midi.*
21386 USB NETWORKING DRIVERS
21387 L: linux-usb@vger.kernel.org
21389 F: drivers/net/usb/
21392 M: Alan Stern <stern@rowland.harvard.edu>
21393 L: linux-usb@vger.kernel.org
21395 F: Documentation/usb/ohci.rst
21396 F: drivers/usb/host/ohci*
21398 USB OTG FSM (Finite State Machine)
21399 M: Peter Chen <peter.chen@kernel.org>
21400 L: linux-usb@vger.kernel.org
21402 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21403 F: drivers/usb/common/usb-otg-fsm.c
21406 M: Valentina Manea <valentina.manea.m@gmail.com>
21407 M: Shuah Khan <shuah@kernel.org>
21408 M: Shuah Khan <skhan@linuxfoundation.org>
21409 L: linux-usb@vger.kernel.org
21411 F: Documentation/usb/usbip_protocol.rst
21412 F: drivers/usb/usbip/
21413 F: tools/testing/selftests/drivers/usb/usbip/
21414 F: tools/usb/usbip/
21417 M: Petko Manolov <petkan@nucleusys.com>
21418 L: linux-usb@vger.kernel.org
21419 L: netdev@vger.kernel.org
21421 W: https://github.com/petkan/pegasus
21422 T: git https://github.com/petkan/pegasus.git
21423 F: drivers/net/usb/pegasus.*
21425 USB PRINTER DRIVER (usblp)
21426 M: Pete Zaitcev <zaitcev@redhat.com>
21427 L: linux-usb@vger.kernel.org
21429 F: drivers/usb/class/usblp.c
21431 USB RAW GADGET DRIVER
21432 R: Andrey Konovalov <andreyknvl@gmail.com>
21433 L: linux-usb@vger.kernel.org
21435 F: Documentation/usb/raw-gadget.rst
21436 F: drivers/usb/gadget/legacy/raw_gadget.c
21437 F: include/uapi/linux/usb/raw_gadget.h
21439 USB QMI WWAN NETWORK DRIVER
21440 M: Bjørn Mork <bjorn@mork.no>
21441 L: netdev@vger.kernel.org
21443 F: Documentation/ABI/testing/sysfs-class-net-qmi
21444 F: drivers/net/usb/qmi_wwan.c
21447 M: Petko Manolov <petkan@nucleusys.com>
21448 L: linux-usb@vger.kernel.org
21449 L: netdev@vger.kernel.org
21451 W: https://github.com/petkan/rtl8150
21452 T: git https://github.com/petkan/rtl8150.git
21453 F: drivers/net/usb/rtl8150.c
21455 USB SERIAL SUBSYSTEM
21456 M: Johan Hovold <johan@kernel.org>
21457 L: linux-usb@vger.kernel.org
21459 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21460 F: Documentation/usb/usb-serial.rst
21461 F: drivers/usb/serial/
21462 F: include/linux/usb/serial.h
21464 USB SMSC75XX ETHERNET DRIVER
21465 M: Steve Glendinning <steve.glendinning@shawell.net>
21466 L: netdev@vger.kernel.org
21468 F: drivers/net/usb/smsc75xx.*
21470 USB SMSC95XX ETHERNET DRIVER
21471 M: Steve Glendinning <steve.glendinning@shawell.net>
21472 M: UNGLinuxDriver@microchip.com
21473 L: netdev@vger.kernel.org
21475 F: drivers/net/usb/smsc95xx.*
21478 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21479 L: linux-usb@vger.kernel.org
21481 W: http://www.linux-usb.org
21482 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21483 F: Documentation/devicetree/bindings/usb/
21484 F: Documentation/usb/
21486 F: include/dt-bindings/usb/
21487 F: include/linux/usb.h
21488 F: include/linux/usb/
21490 USB TYPEC BUS FOR ALTERNATE MODES
21491 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
21492 L: linux-usb@vger.kernel.org
21494 F: Documentation/ABI/testing/sysfs-bus-typec
21495 F: Documentation/driver-api/usb/typec_bus.rst
21496 F: drivers/usb/typec/altmodes/
21497 F: include/linux/usb/typec_altmode.h
21500 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
21501 L: linux-usb@vger.kernel.org
21503 F: Documentation/ABI/testing/sysfs-class-typec
21504 F: Documentation/driver-api/usb/typec.rst
21505 F: drivers/usb/typec/
21506 F: include/linux/usb/typec.h
21508 USB TYPEC INTEL PMC MUX DRIVER
21509 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
21510 L: linux-usb@vger.kernel.org
21512 F: Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21513 F: drivers/usb/typec/mux/intel_pmc_mux.c
21515 USB TYPEC PI3USB30532 MUX DRIVER
21516 M: Hans de Goede <hdegoede@redhat.com>
21517 L: linux-usb@vger.kernel.org
21519 F: drivers/usb/typec/mux/pi3usb30532.c
21521 USB TYPEC PORT CONTROLLER DRIVERS
21522 M: Guenter Roeck <linux@roeck-us.net>
21523 L: linux-usb@vger.kernel.org
21525 F: drivers/usb/typec/tcpm/
21528 M: Alan Stern <stern@rowland.harvard.edu>
21529 L: linux-usb@vger.kernel.org
21531 F: drivers/usb/host/uhci*
21534 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21535 L: linux-media@vger.kernel.org
21537 W: http://www.ideasonboard.org/uvc/
21538 T: git git://linuxtv.org/media_tree.git
21539 F: drivers/media/usb/uvc/
21540 F: include/uapi/linux/uvcvideo.h
21543 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21544 M: Daniel Scally <dan.scally@ideasonboard.com>
21545 L: linux-usb@vger.kernel.org
21547 F: drivers/usb/gadget/function/*uvc*
21548 F: drivers/usb/gadget/legacy/webcam.c
21549 F: include/uapi/linux/usb/g_uvc.h
21551 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21552 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
21553 L: linux-wireless@vger.kernel.org
21555 F: drivers/net/wireless/rndis_wlan.c
21558 M: Mathias Nyman <mathias.nyman@intel.com>
21559 L: linux-usb@vger.kernel.org
21561 F: drivers/usb/host/pci-quirks*
21562 F: drivers/usb/host/xhci*
21565 L: linux-wireless@vger.kernel.org
21567 W: http://linux-lc100020.sourceforge.net
21568 F: drivers/net/wireless/zydas/zd1201.*
21571 M: Antoine Jacquet <royale@zerezo.com>
21572 L: linux-usb@vger.kernel.org
21573 L: linux-media@vger.kernel.org
21575 W: http://royale.zerezo.com/zr364xx/
21576 T: git git://linuxtv.org/media_tree.git
21577 F: Documentation/admin-guide/media/zr364xx*
21578 F: drivers/staging/media/deprecated/zr364xx/
21580 USER DATAGRAM PROTOCOL (UDP)
21581 M: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21583 F: include/linux/udp.h
21587 USER-MODE LINUX (UML)
21588 M: Richard Weinberger <richard@nod.at>
21589 M: Anton Ivanov <anton.ivanov@cambridgegreys.com>
21590 M: Johannes Berg <johannes@sipsolutions.net>
21591 L: linux-um@lists.infradead.org
21593 W: http://user-mode-linux.sourceforge.net
21594 Q: https://patchwork.ozlabs.org/project/linux-um/list/
21595 T: git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21596 T: git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21597 F: Documentation/virt/uml/
21602 USERSPACE COPYIN/COPYOUT (UIOVEC)
21603 M: Alexander Viro <viro@zeniv.linux.org.uk>
21605 F: include/linux/uio.h
21608 USERSPACE DMA BUFFER DRIVER
21609 M: Gerd Hoffmann <kraxel@redhat.com>
21610 L: dri-devel@lists.freedesktop.org
21612 T: git git://anongit.freedesktop.org/drm/drm-misc
21613 F: drivers/dma-buf/udmabuf.c
21614 F: include/uapi/linux/udmabuf.h
21616 USERSPACE I/O (UIO)
21617 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21619 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21620 F: Documentation/driver-api/uio-howto.rst
21622 F: include/linux/uio_driver.h
21625 M: Karel Zak <kzak@redhat.com>
21626 L: util-linux@vger.kernel.org
21628 W: http://en.wikipedia.org/wiki/Util-linux
21629 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21632 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21633 L: linux-kernel@vger.kernel.org
21635 F: include/linux/uuid.h
21636 F: include/uapi/linux/uuid.h
21641 M: Justin Ernst <justin.ernst@hpe.com>
21642 L: platform-driver-x86@vger.kernel.org
21644 F: drivers/platform/x86/uv_sysfs.c
21647 M: Michal Januszewski <spock@gentoo.org>
21648 L: linux-fbdev@vger.kernel.org
21650 W: https://github.com/mjanusz/v86d
21651 F: Documentation/fb/uvesafb.rst
21652 F: drivers/video/fbdev/uvesafb.*
21654 Ux500 CLOCK DRIVERS
21655 M: Ulf Hansson <ulf.hansson@linaro.org>
21656 L: linux-clk@vger.kernel.org
21657 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21659 F: drivers/clk/ux500/
21662 M: Stefan Agner <stefan@agner.ch>
21663 L: linux-mtd@lists.infradead.org
21665 F: drivers/mtd/nand/raw/vf610_nfc.c
21667 VFAT/FAT/MSDOS FILESYSTEM
21668 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21670 F: Documentation/filesystems/vfat.rst
21672 F: tools/testing/selftests/filesystems/fat/
21675 M: Alex Williamson <alex.williamson@redhat.com>
21676 R: Cornelia Huck <cohuck@redhat.com>
21677 L: kvm@vger.kernel.org
21679 T: git https://github.com/awilliam/linux-vfio.git
21680 F: Documentation/ABI/testing/sysfs-devices-vfio-dev
21681 F: Documentation/driver-api/vfio.rst
21683 F: include/linux/vfio.h
21684 F: include/linux/vfio_pci_core.h
21685 F: include/uapi/linux/vfio.h
21688 M: Diana Craciun <diana.craciun@oss.nxp.com>
21689 L: kvm@vger.kernel.org
21691 F: drivers/vfio/fsl-mc/
21693 VFIO HISILICON PCI DRIVER
21694 M: Longfang Liu <liulongfang@huawei.com>
21695 M: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21696 L: kvm@vger.kernel.org
21698 F: drivers/vfio/pci/hisilicon/
21700 VFIO MEDIATED DEVICE DRIVERS
21701 M: Kirti Wankhede <kwankhede@nvidia.com>
21702 L: kvm@vger.kernel.org
21704 F: Documentation/driver-api/vfio-mediated-device.rst
21705 F: drivers/vfio/mdev/
21706 F: include/linux/mdev.h
21707 F: samples/vfio-mdev/
21709 VFIO PCI DEVICE SPECIFIC DRIVERS
21710 R: Jason Gunthorpe <jgg@nvidia.com>
21711 R: Yishai Hadas <yishaih@nvidia.com>
21712 R: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21713 R: Kevin Tian <kevin.tian@intel.com>
21714 L: kvm@vger.kernel.org
21716 P: Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21717 F: drivers/vfio/pci/*/
21719 VFIO PLATFORM DRIVER
21720 M: Eric Auger <eric.auger@redhat.com>
21721 L: kvm@vger.kernel.org
21723 F: drivers/vfio/platform/
21725 VFIO MLX5 PCI DRIVER
21726 M: Yishai Hadas <yishaih@nvidia.com>
21727 L: kvm@vger.kernel.org
21729 F: drivers/vfio/pci/mlx5/
21732 R: Lukas Wunner <lukas@wunner.de>
21734 T: git git://anongit.freedesktop.org/drm/drm-misc
21735 F: Documentation/gpu/vga-switcheroo.rst
21736 F: drivers/gpu/vga/vga_switcheroo.c
21737 F: include/linux/vga_switcheroo.h
21739 VIA RHINE NETWORK DRIVER
21741 M: Kevin Brace <kevinbrace@bracecomputerlab.com>
21742 F: drivers/net/ethernet/via/via-rhine.c
21744 VIA SD/MMC CARD CONTROLLER DRIVER
21745 M: Bruce Chang <brucechang@via.com.tw>
21746 M: Harald Welte <HaraldWelte@viatech.com>
21748 F: drivers/mmc/host/via-sdmmc.c
21750 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21751 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21752 L: linux-fbdev@vger.kernel.org
21754 F: drivers/video/fbdev/via/
21755 F: include/linux/via-core.h
21756 F: include/linux/via-gpio.h
21757 F: include/linux/via_i2c.h
21759 VIA VELOCITY NETWORK DRIVER
21760 M: Francois Romieu <romieu@fr.zoreil.com>
21761 L: netdev@vger.kernel.org
21763 F: drivers/net/ethernet/via/via-velocity.*
21765 VICODEC VIRTUAL CODEC DRIVER
21766 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
21767 L: linux-media@vger.kernel.org
21769 W: https://linuxtv.org
21770 T: git git://linuxtv.org/media_tree.git
21771 F: drivers/media/test-drivers/vicodec/*
21773 VIDEO I2C POLLING DRIVER
21774 M: Matt Ranostay <matt.ranostay@konsulko.com>
21775 L: linux-media@vger.kernel.org
21777 F: drivers/media/i2c/video-i2c.c
21779 VIDEO MULTIPLEXER DRIVER
21780 M: Philipp Zabel <p.zabel@pengutronix.de>
21781 L: linux-media@vger.kernel.org
21783 F: drivers/media/platform/video-mux.c
21785 VIDEOBUF2 FRAMEWORK
21786 M: Tomasz Figa <tfiga@chromium.org>
21787 M: Marek Szyprowski <m.szyprowski@samsung.com>
21788 L: linux-media@vger.kernel.org
21790 F: drivers/media/common/videobuf2/*
21791 F: include/media/videobuf2-*
21793 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21794 M: Shuah Khan <skhan@linuxfoundation.org>
21795 R: Kieran Bingham <kieran.bingham@ideasonboard.com>
21796 L: linux-media@vger.kernel.org
21798 W: https://linuxtv.org
21799 T: git git://linuxtv.org/media_tree.git
21800 F: drivers/media/test-drivers/vimc/*
21803 M: Alex Williamson <alex.williamson@redhat.com>
21804 M: Paolo Bonzini <pbonzini@redhat.com>
21805 L: kvm@vger.kernel.org
21809 VIRTIO AND VHOST VSOCK DRIVER
21810 M: Stefan Hajnoczi <stefanha@redhat.com>
21811 M: Stefano Garzarella <sgarzare@redhat.com>
21812 L: kvm@vger.kernel.org
21813 L: virtualization@lists.linux-foundation.org
21814 L: netdev@vger.kernel.org
21816 F: drivers/vhost/vsock.c
21817 F: include/linux/virtio_vsock.h
21818 F: include/uapi/linux/virtio_vsock.h
21819 F: net/vmw_vsock/virtio_transport.c
21820 F: net/vmw_vsock/virtio_transport_common.c
21822 VIRTIO BLOCK AND SCSI DRIVERS
21823 M: "Michael S. Tsirkin" <mst@redhat.com>
21824 M: Jason Wang <jasowang@redhat.com>
21825 R: Paolo Bonzini <pbonzini@redhat.com>
21826 R: Stefan Hajnoczi <stefanha@redhat.com>
21827 L: virtualization@lists.linux-foundation.org
21829 F: drivers/block/virtio_blk.c
21830 F: drivers/scsi/virtio_scsi.c
21831 F: drivers/vhost/scsi.c
21832 F: include/uapi/linux/virtio_blk.h
21833 F: include/uapi/linux/virtio_scsi.h
21835 VIRTIO CONSOLE DRIVER
21836 M: Amit Shah <amit@kernel.org>
21837 L: virtualization@lists.linux-foundation.org
21839 F: drivers/char/virtio_console.c
21840 F: include/linux/virtio_console.h
21841 F: include/uapi/linux/virtio_console.h
21843 VIRTIO CORE AND NET DRIVERS
21844 M: "Michael S. Tsirkin" <mst@redhat.com>
21845 M: Jason Wang <jasowang@redhat.com>
21846 L: virtualization@lists.linux-foundation.org
21848 F: Documentation/ABI/testing/sysfs-bus-vdpa
21849 F: Documentation/ABI/testing/sysfs-class-vduse
21850 F: Documentation/devicetree/bindings/virtio/
21851 F: drivers/block/virtio_blk.c
21852 F: drivers/crypto/virtio/
21853 F: drivers/net/virtio_net.c
21856 F: include/linux/vdpa.h
21857 F: include/linux/virtio*.h
21858 F: include/uapi/linux/virtio_*.h
21861 VISL VIRTUAL STATELESS DECODER DRIVER
21862 M: Daniel Almeida <daniel.almeida@collabora.com>
21863 L: linux-media@vger.kernel.org
21865 F: drivers/media/test-drivers/visl
21867 IFCVF VIRTIO DATA PATH ACCELERATOR
21868 R: Zhu Lingshan <lingshan.zhu@intel.com>
21869 F: drivers/vdpa/ifcvf/
21872 M: "Michael S. Tsirkin" <mst@redhat.com>
21873 M: David Hildenbrand <david@redhat.com>
21874 L: virtualization@lists.linux-foundation.org
21876 F: drivers/virtio/virtio_balloon.c
21877 F: include/uapi/linux/virtio_balloon.h
21878 F: include/linux/balloon_compaction.h
21879 F: mm/balloon_compaction.c
21881 VIRTIO CRYPTO DRIVER
21882 M: Gonglei <arei.gonglei@huawei.com>
21883 L: virtualization@lists.linux-foundation.org
21884 L: linux-crypto@vger.kernel.org
21886 F: drivers/crypto/virtio/
21887 F: include/uapi/linux/virtio_crypto.h
21889 VIRTIO DRIVERS FOR S390
21890 M: Cornelia Huck <cohuck@redhat.com>
21891 M: Halil Pasic <pasic@linux.ibm.com>
21892 M: Eric Farman <farman@linux.ibm.com>
21893 L: linux-s390@vger.kernel.org
21894 L: virtualization@lists.linux-foundation.org
21895 L: kvm@vger.kernel.org
21897 F: arch/s390/include/uapi/asm/virtio-ccw.h
21898 F: drivers/s390/virtio/
21901 M: Vivek Goyal <vgoyal@redhat.com>
21902 M: Stefan Hajnoczi <stefanha@redhat.com>
21903 M: Miklos Szeredi <miklos@szeredi.hu>
21904 L: virtualization@lists.linux-foundation.org
21905 L: linux-fsdevel@vger.kernel.org
21907 W: https://virtio-fs.gitlab.io/
21908 F: Documentation/filesystems/virtiofs.rst
21909 F: fs/fuse/virtio_fs.c
21910 F: include/uapi/linux/virtio_fs.h
21913 M: Enrico Weigelt, metux IT consult <info@metux.net>
21914 M: Viresh Kumar <vireshk@kernel.org>
21915 L: linux-gpio@vger.kernel.org
21916 L: virtualization@lists.linux-foundation.org
21918 F: drivers/gpio/gpio-virtio.c
21919 F: include/uapi/linux/virtio_gpio.h
21922 M: David Airlie <airlied@redhat.com>
21923 M: Gerd Hoffmann <kraxel@redhat.com>
21924 R: Gurchetan Singh <gurchetansingh@chromium.org>
21925 R: Chia-I Wu <olvaffe@gmail.com>
21926 L: dri-devel@lists.freedesktop.org
21927 L: virtualization@lists.linux-foundation.org
21929 T: git git://anongit.freedesktop.org/drm/drm-misc
21930 F: drivers/gpu/drm/virtio/
21931 F: include/uapi/linux/virtio_gpu.h
21933 VIRTIO HOST (VHOST)
21934 M: "Michael S. Tsirkin" <mst@redhat.com>
21935 M: Jason Wang <jasowang@redhat.com>
21936 L: kvm@vger.kernel.org
21937 L: virtualization@lists.linux-foundation.org
21938 L: netdev@vger.kernel.org
21940 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21942 F: include/linux/vhost_iotlb.h
21943 F: include/uapi/linux/vhost.h
21945 VIRTIO INPUT DRIVER
21946 M: Gerd Hoffmann <kraxel@redhat.com>
21948 F: drivers/virtio/virtio_input.c
21949 F: include/uapi/linux/virtio_input.h
21951 VIRTIO IOMMU DRIVER
21952 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
21953 L: virtualization@lists.linux-foundation.org
21955 F: drivers/iommu/virtio-iommu.c
21956 F: include/uapi/linux/virtio_iommu.h
21959 M: David Hildenbrand <david@redhat.com>
21960 L: virtualization@lists.linux-foundation.org
21962 W: https://virtio-mem.gitlab.io/
21963 F: drivers/virtio/virtio_mem.c
21964 F: include/uapi/linux/virtio_mem.h
21966 VIRTIO SOUND DRIVER
21967 M: Anton Yakovlev <anton.yakovlev@opensynergy.com>
21968 M: "Michael S. Tsirkin" <mst@redhat.com>
21969 L: virtualization@lists.linux-foundation.org
21970 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
21972 F: include/uapi/linux/virtio_snd.h
21976 M: Conghui Chen <conghui.chen@intel.com>
21977 M: Viresh Kumar <viresh.kumar@linaro.org>
21978 L: linux-i2c@vger.kernel.org
21979 L: virtualization@lists.linux-foundation.org
21981 F: drivers/i2c/busses/i2c-virtio.c
21982 F: include/uapi/linux/virtio_i2c.h
21985 M: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21986 L: virtualization@lists.linux-foundation.org
21988 F: drivers/nvdimm/virtio_pmem.c
21989 F: drivers/nvdimm/nd_virtio.c
21991 VIRTUAL BOX GUEST DEVICE DRIVER
21992 M: Hans de Goede <hdegoede@redhat.com>
21993 M: Arnd Bergmann <arnd@arndb.de>
21994 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21996 F: drivers/virt/vboxguest/
21997 F: include/linux/vbox_utils.h
21998 F: include/uapi/linux/vbox*.h
22000 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22001 M: Hans de Goede <hdegoede@redhat.com>
22002 L: linux-fsdevel@vger.kernel.org
22006 VIRTUAL SERIO DEVICE DRIVER
22007 M: Stephen Chandler Paul <thatslyude@gmail.com>
22009 F: drivers/input/serio/userio.c
22010 F: include/uapi/linux/userio.h
22012 VIVID VIRTUAL VIDEO DRIVER
22013 M: Hans Verkuil <hverkuil@xs4all.nl>
22014 L: linux-media@vger.kernel.org
22016 W: https://linuxtv.org
22017 T: git git://linuxtv.org/media_tree.git
22018 F: drivers/media/test-drivers/vivid/*
22020 VIDTV VIRTUAL DIGITAL TV DRIVER
22021 M: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22022 L: linux-media@vger.kernel.org
22024 W: https://linuxtv.org
22025 T: git git://linuxtv.org/media_tree.git
22026 F: drivers/media/test-drivers/vidtv/*
22029 M: Florian Fainelli <f.fainelli@gmail.com>
22030 L: openwrt-devel@lists.openwrt.org (subscribers-only)
22032 F: drivers/vlynq/vlynq.c
22033 F: include/linux/vlynq.h
22036 M: Martyn Welch <martyn@welchs.me.uk>
22037 M: Manohar Vanga <manohar.vanga@gmail.com>
22038 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22039 L: linux-kernel@vger.kernel.org
22041 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22042 F: Documentation/driver-api/vme.rst
22043 F: drivers/staging/vme_user/
22045 VM SOCKETS (AF_VSOCK)
22046 M: Stefano Garzarella <sgarzare@redhat.com>
22047 L: virtualization@lists.linux-foundation.org
22048 L: netdev@vger.kernel.org
22050 F: drivers/net/vsockmon.c
22051 F: include/net/af_vsock.h
22052 F: include/uapi/linux/vm_sockets.h
22053 F: include/uapi/linux/vm_sockets_diag.h
22054 F: include/uapi/linux/vsockmon.h
22056 F: tools/testing/vsock/
22058 VMWARE BALLOON DRIVER
22059 M: Nadav Amit <namit@vmware.com>
22060 R: VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22061 L: linux-kernel@vger.kernel.org
22063 F: drivers/misc/vmw_balloon.c
22065 VMWARE HYPERVISOR INTERFACE
22066 M: Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22067 M: Alexey Makhalov <amakhalov@vmware.com>
22068 R: VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22069 L: virtualization@lists.linux-foundation.org
22072 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22073 F: arch/x86/include/asm/vmware.h
22074 F: arch/x86/kernel/cpu/vmware.c
22076 VMWARE PVRDMA DRIVER
22077 M: Bryan Tan <bryantan@vmware.com>
22078 M: Vishnu Dasa <vdasa@vmware.com>
22079 R: VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22080 L: linux-rdma@vger.kernel.org
22082 F: drivers/infiniband/hw/vmw_pvrdma/
22084 VMWARE PVSCSI DRIVER
22085 M: Vishal Bhakta <vbhakta@vmware.com>
22086 R: VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22087 L: linux-scsi@vger.kernel.org
22089 F: drivers/scsi/vmw_pvscsi.c
22090 F: drivers/scsi/vmw_pvscsi.h
22092 VMWARE VIRTUAL PTP CLOCK DRIVER
22093 M: Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22094 M: Deep Shah <sdeep@vmware.com>
22095 R: Alexey Makhalov <amakhalov@vmware.com>
22096 R: VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22097 L: netdev@vger.kernel.org
22099 F: drivers/ptp/ptp_vmw.c
22102 M: Bryan Tan <bryantan@vmware.com>
22103 M: Vishnu Dasa <vdasa@vmware.com>
22104 R: VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22105 L: linux-kernel@vger.kernel.org
22107 F: drivers/misc/vmw_vmci/
22108 F: include/linux/vmw_vmci*
22110 VMWARE VMMOUSE SUBDRIVER
22111 M: Zack Rusin <zackr@vmware.com>
22112 R: VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22113 R: VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22114 L: linux-input@vger.kernel.org
22116 F: drivers/input/mouse/vmmouse.c
22117 F: drivers/input/mouse/vmmouse.h
22119 VMWARE VMXNET3 ETHERNET DRIVER
22120 M: Ronak Doshi <doshir@vmware.com>
22121 R: VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22122 L: netdev@vger.kernel.org
22124 F: drivers/net/vmxnet3/
22126 VMWARE VSOCK VMCI TRANSPORT DRIVER
22127 M: Bryan Tan <bryantan@vmware.com>
22128 M: Vishnu Dasa <vdasa@vmware.com>
22129 R: VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22130 L: linux-kernel@vger.kernel.org
22132 F: net/vmw_vsock/vmci_transport*
22134 VOCORE VOCORE2 BOARD
22135 M: Harvey Hunt <harveyhuntnexus@gmail.com>
22136 L: linux-mips@vger.kernel.org
22138 F: arch/mips/boot/dts/ralink/vocore2.dts
22140 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22141 M: Liam Girdwood <lgirdwood@gmail.com>
22142 M: Mark Brown <broonie@kernel.org>
22143 L: linux-kernel@vger.kernel.org
22145 W: http://www.slimlogic.co.uk/?p=48
22146 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22147 F: Documentation/devicetree/bindings/regulator/
22148 F: Documentation/power/regulator/
22149 F: drivers/regulator/
22150 F: include/dt-bindings/regulator/
22151 F: include/linux/regulator/
22152 K: regulator_get_optional
22154 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22155 R: Matti Vaittinen <mazziesaccount@gmail.com>
22156 F: drivers/regulator/irq_helpers.c
22159 M: David Ahern <dsahern@kernel.org>
22160 L: netdev@vger.kernel.org
22162 F: Documentation/networking/vrf.rst
22163 F: drivers/net/vrf.c
22166 M: Petr Mladek <pmladek@suse.com>
22167 M: Steven Rostedt <rostedt@goodmis.org>
22168 M: Sergey Senozhatsky <senozhatsky@chromium.org>
22169 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22170 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
22172 T: git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22173 F: Documentation/core-api/printk-formats.rst
22174 F: lib/test_printf.c
22175 F: lib/test_scanf.c
22178 VT1211 HARDWARE MONITOR DRIVER
22179 M: Juerg Haefliger <juergh@proton.me>
22180 L: linux-hwmon@vger.kernel.org
22182 F: Documentation/hwmon/vt1211.rst
22183 F: drivers/hwmon/vt1211.c
22185 VT8231 HARDWARE MONITOR DRIVER
22186 M: Roger Lucas <vt8231@hiddenengine.co.uk>
22187 L: linux-hwmon@vger.kernel.org
22189 F: drivers/hwmon/vt8231.c
22191 VUB300 USB to SDIO/SD/MMC bridge chip
22192 L: linux-mmc@vger.kernel.org
22194 F: drivers/mmc/host/vub300.c
22196 W1 DALLAS'S 1-WIRE BUS
22197 M: Evgeniy Polyakov <zbr@ioremap.net>
22199 F: Documentation/devicetree/bindings/w1/
22200 F: Documentation/w1/
22202 F: include/linux/w1.h
22204 W83791D HARDWARE MONITORING DRIVER
22205 M: Marc Hulsman <m.hulsman@tudelft.nl>
22206 L: linux-hwmon@vger.kernel.org
22208 F: Documentation/hwmon/w83791d.rst
22209 F: drivers/hwmon/w83791d.c
22211 W83793 HARDWARE MONITORING DRIVER
22212 M: Rudolf Marek <r.marek@assembler.cz>
22213 L: linux-hwmon@vger.kernel.org
22215 F: Documentation/hwmon/w83793.rst
22216 F: drivers/hwmon/w83793.c
22218 W83795 HARDWARE MONITORING DRIVER
22219 M: Jean Delvare <jdelvare@suse.com>
22220 L: linux-hwmon@vger.kernel.org
22222 F: drivers/hwmon/w83795.c
22224 W83L51xD SD/MMC CARD INTERFACE DRIVER
22225 M: Pierre Ossman <pierre@ossman.eu>
22227 F: drivers/mmc/host/wbsd.*
22229 WACOM PROTOCOL 4 SERIAL TABLETS
22230 M: Julian Squires <julian@cipht.net>
22231 M: Hans de Goede <hdegoede@redhat.com>
22232 L: linux-input@vger.kernel.org
22234 F: drivers/input/tablet/wacom_serial4.c
22236 WANGXUN ETHERNET DRIVER
22237 M: Jiawen Wu <jiawenwu@trustnetic.com>
22238 M: Mengyuan Lou <mengyuanlou@net-swift.com>
22239 W: https://www.net-swift.com
22240 L: netdev@vger.kernel.org
22242 F: Documentation/networking/device_drivers/ethernet/wangxun/*
22243 F: drivers/net/ethernet/wangxun/
22245 WATCHDOG DEVICE DRIVERS
22246 M: Wim Van Sebroeck <wim@linux-watchdog.org>
22247 M: Guenter Roeck <linux@roeck-us.net>
22248 L: linux-watchdog@vger.kernel.org
22250 W: http://www.linux-watchdog.org/
22251 T: git git://www.linux-watchdog.org/linux-watchdog.git
22252 F: Documentation/devicetree/bindings/watchdog/
22253 F: Documentation/watchdog/
22254 F: drivers/watchdog/
22255 F: include/linux/watchdog.h
22256 F: include/uapi/linux/watchdog.h
22257 F: include/trace/events/watchdog.h
22259 WHISKEYCOVE PMIC GPIO DRIVER
22260 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22261 L: linux-gpio@vger.kernel.org
22263 F: drivers/gpio/gpio-wcove.c
22266 M: Dianlong Li <long17.cool@163.com>
22267 L: linux-rtc@vger.kernel.org
22269 F: drivers/rtc/rtc-sd3078.c
22272 M: David Rheinsberg <david.rheinsberg@gmail.com>
22273 L: linux-input@vger.kernel.org
22275 F: drivers/hid/hid-wiimote*
22277 WILOCITY WIL6210 WIRELESS DRIVER
22278 L: linux-wireless@vger.kernel.org
22280 W: https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22281 F: drivers/net/wireless/ath/wil6210/
22284 M: David Härdeman <david@hardeman.nu>
22286 F: drivers/media/rc/winbond-cir.c
22288 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22289 M: William Breathitt Gray <william.gray@linaro.org>
22290 L: linux-watchdog@vger.kernel.org
22292 F: drivers/watchdog/ebc-c384_wdt.c
22294 WINSYSTEMS WS16C48 GPIO DRIVER
22295 M: William Breathitt Gray <william.gray@linaro.org>
22296 L: linux-gpio@vger.kernel.org
22298 F: drivers/gpio/gpio-ws16c48.c
22300 WIREGUARD SECURE NETWORK TUNNEL
22301 M: Jason A. Donenfeld <Jason@zx2c4.com>
22302 L: wireguard@lists.zx2c4.com
22303 L: netdev@vger.kernel.org
22305 F: drivers/net/wireguard/
22306 F: tools/testing/selftests/wireguard/
22308 WISTRON LAPTOP BUTTON DRIVER
22309 M: Miloslav Trmac <mitr@volny.cz>
22311 F: drivers/input/misc/wistron_btns.c
22313 WL3501 WIRELESS PCMCIA CARD DRIVER
22314 L: linux-wireless@vger.kernel.org
22316 F: drivers/net/wireless/wl3501*
22318 WOLFSON MICROELECTRONICS DRIVERS
22319 L: patches@opensource.cirrus.com
22321 W: https://github.com/CirrusLogic/linux-drivers/wiki
22322 T: git https://github.com/CirrusLogic/linux-drivers.git
22323 F: Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22324 F: Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22325 F: Documentation/devicetree/bindings/mfd/wm831x.txt
22326 F: Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22327 F: Documentation/devicetree/bindings/sound/wlf,*.yaml
22328 F: Documentation/devicetree/bindings/sound/wm*
22329 F: Documentation/hwmon/wm83??.rst
22330 F: arch/arm/mach-s3c/mach-crag6410*
22331 F: drivers/clk/clk-wm83*.c
22332 F: drivers/gpio/gpio-*wm*.c
22333 F: drivers/gpio/gpio-arizona.c
22334 F: drivers/hwmon/wm83??-hwmon.c
22335 F: drivers/input/misc/wm831x-on.c
22336 F: drivers/input/touchscreen/wm831x-ts.c
22337 F: drivers/input/touchscreen/wm97*.c
22338 F: drivers/leds/leds-wm83*.c
22339 F: drivers/mfd/arizona*
22340 F: drivers/mfd/cs47l24*
22341 F: drivers/mfd/wm*.c
22342 F: drivers/power/supply/wm83*.c
22343 F: drivers/regulator/arizona*
22344 F: drivers/regulator/wm8*.c
22345 F: drivers/rtc/rtc-wm83*.c
22346 F: drivers/video/backlight/wm83*_bl.c
22347 F: drivers/watchdog/wm83*_wdt.c
22348 F: include/linux/mfd/arizona/
22349 F: include/linux/mfd/wm831x/
22350 F: include/linux/mfd/wm8350/
22351 F: include/linux/mfd/wm8400*
22352 F: include/linux/regulator/arizona*
22353 F: include/linux/wm97xx.h
22354 F: include/sound/wm????.h
22355 F: sound/soc/codecs/arizona*
22356 F: sound/soc/codecs/cs47l24*
22357 F: sound/soc/codecs/wm*
22360 M: Tejun Heo <tj@kernel.org>
22361 R: Lai Jiangshan <jiangshanlai@gmail.com>
22363 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22364 F: Documentation/core-api/workqueue.rst
22365 F: include/linux/workqueue.h
22366 F: kernel/workqueue.c
22369 M: Loic Poulain <loic.poulain@linaro.org>
22370 M: Sergey Ryazanov <ryazanov.s.a@gmail.com>
22371 R: Johannes Berg <johannes@sipsolutions.net>
22372 L: netdev@vger.kernel.org
22374 F: drivers/net/wwan/
22375 F: include/linux/wwan.h
22376 F: include/uapi/linux/wwan.h
22378 X-POWERS AXP288 PMIC DRIVERS
22379 M: Hans de Goede <hdegoede@redhat.com>
22381 F: drivers/acpi/pmic/intel_pmic_xpower.c
22384 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22385 M: Chen-Yu Tsai <wens@csie.org>
22386 L: linux-kernel@vger.kernel.org
22391 M: Martin Schiller <ms@dev.tdt.de>
22392 L: linux-x25@vger.kernel.org
22394 F: Documentation/networking/lapb-module.rst
22395 F: Documentation/networking/x25*
22396 F: drivers/net/wan/hdlc_x25.c
22397 F: drivers/net/wan/lapbether.c
22398 F: include/*/lapb.h
22399 F: include/net/x25*
22400 F: include/uapi/linux/x25.h
22404 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22405 M: Thomas Gleixner <tglx@linutronix.de>
22406 M: Ingo Molnar <mingo@redhat.com>
22407 M: Borislav Petkov <bp@alien8.de>
22408 M: Dave Hansen <dave.hansen@linux.intel.com>
22410 R: "H. Peter Anvin" <hpa@zytor.com>
22411 L: linux-kernel@vger.kernel.org
22413 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22414 F: Documentation/devicetree/bindings/x86/
22415 F: Documentation/x86/
22419 M: Andy Lutomirski <luto@kernel.org>
22420 L: linux-kernel@vger.kernel.org
22422 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22425 X86 MCE INFRASTRUCTURE
22426 M: Tony Luck <tony.luck@intel.com>
22427 M: Borislav Petkov <bp@alien8.de>
22428 L: linux-edac@vger.kernel.org
22430 F: Documentation/ABI/testing/sysfs-mce
22431 F: Documentation/x86/x86_64/machinecheck.rst
22432 F: arch/x86/kernel/cpu/mce/*
22434 X86 MICROCODE UPDATE SUPPORT
22435 M: Borislav Petkov <bp@alien8.de>
22437 F: arch/x86/kernel/cpu/microcode/*
22440 M: Dave Hansen <dave.hansen@linux.intel.com>
22441 M: Andy Lutomirski <luto@kernel.org>
22442 M: Peter Zijlstra <peterz@infradead.org>
22443 L: linux-kernel@vger.kernel.org
22445 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22448 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22449 M: Hans de Goede <hdegoede@redhat.com>
22450 L: platform-driver-x86@vger.kernel.org
22452 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22453 F: drivers/platform/x86/x86-android-tablets.c
22455 X86 PLATFORM DRIVERS
22456 M: Hans de Goede <hdegoede@redhat.com>
22457 M: Mark Gross <markgross@kernel.org>
22458 L: platform-driver-x86@vger.kernel.org
22460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22461 F: drivers/platform/olpc/
22462 F: drivers/platform/x86/
22464 X86 PLATFORM DRIVERS - ARCH
22465 R: Darren Hart <dvhart@infradead.org>
22466 R: Andy Shevchenko <andy@infradead.org>
22467 L: platform-driver-x86@vger.kernel.org
22470 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22471 F: arch/x86/platform
22473 X86 PLATFORM UV HPE SUPERDOME FLEX
22474 M: Steve Wahl <steve.wahl@hpe.com>
22475 R: Mike Travis <mike.travis@hpe.com>
22476 R: Dimitri Sivanich <dimitri.sivanich@hpe.com>
22477 R: Russ Anderson <russ.anderson@hpe.com>
22479 F: arch/x86/include/asm/uv/
22480 F: arch/x86/kernel/apic/x2apic_uv_x.c
22481 F: arch/x86/platform/uv/
22483 X86 STACK UNWINDING
22484 M: Josh Poimboeuf <jpoimboe@kernel.org>
22485 M: Peter Zijlstra <peterz@infradead.org>
22487 F: arch/x86/include/asm/unwind*.h
22488 F: arch/x86/kernel/dumpstack.c
22489 F: arch/x86/kernel/stacktrace.c
22490 F: arch/x86/kernel/unwind_*.c
22493 M: Andy Lutomirski <luto@kernel.org>
22494 L: linux-kernel@vger.kernel.org
22496 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22497 F: arch/x86/entry/vdso/
22500 M: Matthew Wilcox <willy@infradead.org>
22501 L: linux-fsdevel@vger.kernel.org
22503 F: Documentation/core-api/xarray.rst
22504 F: include/linux/idr.h
22505 F: include/linux/xarray.h
22508 F: tools/testing/radix-tree
22511 M: Benjamin Valentin <benpicco@googlemail.com>
22513 F: drivers/media/rc/keymaps/rc-xbox-dvd.c
22514 F: drivers/media/rc/xbox_remote.c
22516 XC2028/3028 TUNER DRIVER
22517 M: Mauro Carvalho Chehab <mchehab@kernel.org>
22518 L: linux-media@vger.kernel.org
22520 W: https://linuxtv.org
22521 T: git git://linuxtv.org/media_tree.git
22522 F: drivers/media/tuners/xc2028.*
22524 XDP (eXpress Data Path)
22525 M: Alexei Starovoitov <ast@kernel.org>
22526 M: Daniel Borkmann <daniel@iogearbox.net>
22527 M: David S. Miller <davem@davemloft.net>
22528 M: Jakub Kicinski <kuba@kernel.org>
22529 M: Jesper Dangaard Brouer <hawk@kernel.org>
22530 M: John Fastabend <john.fastabend@gmail.com>
22531 L: netdev@vger.kernel.org
22532 L: bpf@vger.kernel.org
22534 F: include/net/xdp.h
22535 F: include/net/xdp_priv.h
22536 F: include/trace/events/xdp.h
22537 F: kernel/bpf/cpumap.c
22538 F: kernel/bpf/devmap.c
22540 F: samples/bpf/xdp*
22541 F: tools/testing/selftests/bpf/*xdp*
22542 F: tools/testing/selftests/bpf/*/*xdp*
22543 F: drivers/net/ethernet/*/*/*/*/*xdp*
22544 F: drivers/net/ethernet/*/*/*xdp*
22545 K: (?:\b|_)xdp(?:\b|_)
22547 XDP SOCKETS (AF_XDP)
22548 M: Björn Töpel <bjorn@kernel.org>
22549 M: Magnus Karlsson <magnus.karlsson@intel.com>
22550 M: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22551 R: Jonathan Lemon <jonathan.lemon@gmail.com>
22552 L: netdev@vger.kernel.org
22553 L: bpf@vger.kernel.org
22555 F: Documentation/networking/af_xdp.rst
22556 F: include/net/xdp_sock*
22557 F: include/net/xsk_buff_pool.h
22558 F: include/uapi/linux/if_xdp.h
22559 F: include/uapi/linux/xdp_diag.h
22560 F: include/net/netns/xdp.h
22562 F: tools/testing/selftests/bpf/*xsk*
22564 XEN BLOCK SUBSYSTEM
22565 M: Roger Pau Monné <roger.pau@citrix.com>
22566 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22568 F: drivers/block/xen*
22569 F: drivers/block/xen-blkback/*
22572 M: Stefano Stabellini <sstabellini@kernel.org>
22573 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22575 F: arch/arm/include/asm/xen/
22578 XEN HYPERVISOR ARM64
22579 M: Stefano Stabellini <sstabellini@kernel.org>
22580 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22582 F: arch/arm64/include/asm/xen/
22585 XEN HYPERVISOR INTERFACE
22586 M: Juergen Gross <jgross@suse.com>
22587 M: Stefano Stabellini <sstabellini@kernel.org>
22588 R: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22589 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22591 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22592 F: Documentation/ABI/stable/sysfs-hypervisor-xen
22593 F: Documentation/ABI/testing/sysfs-hypervisor-xen
22594 F: drivers/*/xen-*front.c
22596 F: include/uapi/xen/
22598 F: kernel/configs/xen.config
22601 M: Juergen Gross <jgross@suse.com>
22602 R: Boris Ostrovsky <boris.ostrovsky@oracle.com>
22603 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22605 F: arch/x86/configs/xen.config
22606 F: arch/x86/include/asm/pvclock-abi.h
22607 F: arch/x86/include/asm/xen/
22608 F: arch/x86/platform/pvh/
22611 XEN NETWORK BACKEND DRIVER
22612 M: Wei Liu <wei.liu@kernel.org>
22613 M: Paul Durrant <paul@xen.org>
22614 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22615 L: netdev@vger.kernel.org
22617 F: drivers/net/xen-netback/*
22620 M: Juergen Gross <jgross@suse.com>
22621 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22623 F: arch/x86/pci/*xen*
22624 F: drivers/pci/*xen*
22627 M: Juergen Gross <jgross@suse.com>
22628 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22629 L: linux-scsi@vger.kernel.org
22631 F: drivers/scsi/xen-scsifront.c
22632 F: drivers/xen/xen-scsiback.c
22633 F: include/xen/interface/io/vscsiif.h
22636 M: Juergen Gross <jgross@suse.com>
22637 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22638 L: linux-usb@vger.kernel.org
22640 F: drivers/usb/host/xen*
22641 F: include/xen/interface/io/usbif.h
22643 XEN SOUND FRONTEND DRIVER
22644 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22645 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22646 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
22650 XEN SWIOTLB SUBSYSTEM
22651 M: Juergen Gross <jgross@suse.com>
22652 M: Stefano Stabellini <sstabellini@kernel.org>
22653 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
22654 L: iommu@lists.linux.dev
22656 F: arch/*/include/asm/xen/swiotlb-xen.h
22657 F: drivers/xen/swiotlb-xen.c
22658 F: include/xen/arm/swiotlb-xen.h
22659 F: include/xen/swiotlb-xen.h
22662 C: irc://irc.oftc.net/xfs
22663 M: Darrick J. Wong <djwong@kernel.org>
22664 L: linux-xfs@vger.kernel.org
22667 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22668 F: Documentation/ABI/testing/sysfs-fs-xfs
22669 F: Documentation/admin-guide/xfs.rst
22670 F: Documentation/filesystems/xfs-delayed-logging-design.rst
22671 F: Documentation/filesystems/xfs-self-describing-metadata.rst
22673 F: include/uapi/linux/dqblk_xfs.h
22674 F: include/uapi/linux/fsmap.h
22677 M: Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22678 L: linux-iio@vger.kernel.org
22680 F: Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22681 F: drivers/iio/adc/xilinx-ams.c
22683 XILINX AXI ETHERNET DRIVER
22684 M: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22686 F: drivers/net/ethernet/xilinx/xilinx_axienet*
22689 M: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22690 R: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22691 L: linux-can@vger.kernel.org
22693 F: Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22694 F: drivers/net/can/xilinx_can.c
22697 M: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22698 R: Srinivas Neeli <srinivas.neeli@xilinx.com>
22699 R: Michal Simek <michal.simek@xilinx.com>
22701 F: Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22702 F: Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22703 F: drivers/gpio/gpio-xilinx.c
22704 F: drivers/gpio/gpio-zynq.c
22706 XILINX SD-FEC IP CORES
22707 M: Derek Kiernan <derek.kiernan@xilinx.com>
22708 M: Dragan Cvetic <dragan.cvetic@xilinx.com>
22710 F: Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22711 F: Documentation/misc-devices/xilinx_sdfec.rst
22712 F: drivers/misc/Kconfig
22713 F: drivers/misc/Makefile
22714 F: drivers/misc/xilinx_sdfec.c
22715 F: include/uapi/misc/xilinx_sdfec.h
22718 M: Sean Anderson <sean.anderson@seco.com>
22720 F: drivers/pwm/pwm-xilinx.c
22721 F: include/clocksource/timer-xilinx.h
22723 XILINX UARTLITE SERIAL DRIVER
22724 M: Peter Korsgaard <jacmet@sunsite.dk>
22725 L: linux-serial@vger.kernel.org
22727 F: drivers/tty/serial/uartlite.c
22729 XILINX VIDEO IP CORES
22730 M: Hyun Kwon <hyun.kwon@xilinx.com>
22731 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22732 L: linux-media@vger.kernel.org
22734 T: git git://linuxtv.org/media_tree.git
22735 F: Documentation/devicetree/bindings/media/xilinx/
22736 F: drivers/media/platform/xilinx/
22737 F: include/uapi/linux/xilinx-v4l2-controls.h
22739 XILINX ZYNQMP DPDMA DRIVER
22740 M: Hyun Kwon <hyun.kwon@xilinx.com>
22741 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22742 L: dmaengine@vger.kernel.org
22744 F: Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22745 F: drivers/dma/xilinx/xilinx_dpdma.c
22746 F: include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22748 XILINX ZYNQMP OCM EDAC DRIVER
22749 M: Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
22750 M: Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
22752 F: Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
22753 F: drivers/edac/zynqmp_edac.c
22755 XILINX ZYNQMP PSGTR PHY DRIVER
22756 M: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22757 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22758 L: linux-kernel@vger.kernel.org
22760 T: git https://github.com/Xilinx/linux-xlnx.git
22761 F: Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22762 F: drivers/phy/xilinx/phy-zynqmp.c
22764 XILINX ZYNQMP SHA3 DRIVER
22765 M: Harsha <harsha.harsha@xilinx.com>
22767 F: drivers/crypto/xilinx/zynqmp-sha.c
22769 XILINX EVENT MANAGEMENT DRIVER
22770 M: Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22772 F: drivers/soc/xilinx/xlnx_event_manager.c
22773 F: include/linux/firmware/xlnx-event-manager.h
22776 M: Eli Billauer <eli.billauer@gmail.com>
22777 L: linux-kernel@vger.kernel.org
22779 F: drivers/char/xillybus/
22782 M: George Cherian <gcherian@marvell.com>
22783 L: linux-i2c@vger.kernel.org
22785 W: http://www.marvell.com
22786 F: drivers/i2c/busses/i2c-xlp9xx.c
22788 XRA1403 GPIO EXPANDER
22789 M: Nandor Han <nandor.han@ge.com>
22790 M: Semi Malinen <semi.malinen@ge.com>
22791 L: linux-gpio@vger.kernel.org
22793 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22794 F: drivers/gpio/gpio-xra1403.c
22796 XTENSA XTFPGA PLATFORM SUPPORT
22797 M: Max Filippov <jcmvbkbc@gmail.com>
22798 L: linux-xtensa@linux-xtensa.org
22800 F: drivers/spi/spi-xtensa-xtfpga.c
22801 F: sound/soc/xtensa/xtfpga-i2s.c
22803 YAM DRIVER FOR AX.25
22804 M: Jean-Paul Roubelat <jpr@f6fbb.org>
22805 L: linux-hams@vger.kernel.org
22807 F: drivers/net/hamradio/yam*
22808 F: include/linux/yam.h
22810 YAMA SECURITY MODULE
22811 M: Kees Cook <keescook@chromium.org>
22813 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22814 F: Documentation/admin-guide/LSM/Yama.rst
22817 YEALINK PHONE DRIVER
22818 M: Henk Vergonet <Henk.Vergonet@gmail.com>
22819 L: usbb2k-api-dev@nongnu.org
22821 F: Documentation/input/devices/yealink.rst
22822 F: drivers/input/misc/yealink.*
22824 Z8530 DRIVER FOR AX.25
22825 M: Joerg Reuter <jreuter@yaina.de>
22826 L: linux-hams@vger.kernel.org
22828 W: http://yaina.de/jreuter/
22829 W: http://www.qsl.net/dl1bke/
22830 F: Documentation/networking/device_drivers/hamradio/z8530drv.rst
22831 F: drivers/net/hamradio/*scc.c
22832 F: drivers/net/hamradio/z8530.h
22834 ZBUD COMPRESSED PAGE ALLOCATOR
22835 M: Seth Jennings <sjenning@redhat.com>
22836 M: Dan Streetman <ddstreet@ieee.org>
22837 L: linux-mm@kvack.org
22841 Z3FOLD COMPRESSED PAGE ALLOCATOR
22842 M: Vitaly Wool <vitaly.wool@konsulko.com>
22843 R: Miaohe Lin <linmiaohe@huawei.com>
22844 L: linux-mm@kvack.org
22848 ZD1211RW WIRELESS DRIVER
22849 M: Ulrich Kunitz <kune@deine-taler.de>
22850 L: linux-wireless@vger.kernel.org
22851 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
22853 W: http://zd1211.ath.cx/wiki/DriverRewrite
22854 F: drivers/net/wireless/zydas/zd1211rw/
22856 ZD1301 MEDIA DRIVER
22857 M: Antti Palosaari <crope@iki.fi>
22858 L: linux-media@vger.kernel.org
22860 W: https://linuxtv.org/
22861 W: http://palosaari.fi/linux/
22862 Q: https://patchwork.linuxtv.org/project/linux-media/list/
22863 F: drivers/media/usb/dvb-usb-v2/zd1301*
22865 ZD1301_DEMOD MEDIA DRIVER
22866 M: Antti Palosaari <crope@iki.fi>
22867 L: linux-media@vger.kernel.org
22869 W: https://linuxtv.org/
22870 W: http://palosaari.fi/linux/
22871 Q: https://patchwork.linuxtv.org/project/linux-media/list/
22872 F: drivers/media/dvb-frontends/zd1301_demod*
22874 ZHAOXIN PROCESSOR SUPPORT
22875 M: Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22876 L: linux-kernel@vger.kernel.org
22878 F: arch/x86/kernel/cpu/zhaoxin.c
22881 M: Damien Le Moal <damien.lemoal@opensource.wdc.com>
22882 M: Naohiro Aota <naohiro.aota@wdc.com>
22883 R: Johannes Thumshirn <jth@kernel.org>
22884 L: linux-fsdevel@vger.kernel.org
22886 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22887 F: Documentation/filesystems/zonefs.rst
22890 ZPOOL COMPRESSED PAGE STORAGE API
22891 M: Dan Streetman <ddstreet@ieee.org>
22892 L: linux-mm@kvack.org
22894 F: include/linux/zpool.h
22897 ZR36067 VIDEO FOR LINUX DRIVER
22898 M: Corentin Labbe <clabbe@baylibre.com>
22899 L: mjpeg-users@lists.sourceforge.net
22900 L: linux-media@vger.kernel.org
22902 W: http://mjpeg.sourceforge.net/driver-zoran/
22903 Q: https://patchwork.linuxtv.org/project/linux-media/list/
22904 F: Documentation/driver-api/media/drivers/zoran.rst
22905 F: drivers/media/pci/zoran/
22907 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22908 M: Minchan Kim <minchan@kernel.org>
22909 M: Sergey Senozhatsky <senozhatsky@chromium.org>
22910 L: linux-kernel@vger.kernel.org
22912 F: Documentation/admin-guide/blockdev/zram.rst
22913 F: drivers/block/zram/
22915 ZS DECSTATION Z85C30 SERIAL DRIVER
22916 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
22918 F: drivers/tty/serial/zs.*
22920 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22921 M: Minchan Kim <minchan@kernel.org>
22922 M: Sergey Senozhatsky <senozhatsky@chromium.org>
22923 L: linux-mm@kvack.org
22925 F: Documentation/mm/zsmalloc.rst
22926 F: include/linux/zsmalloc.h
22930 M: Nick Terrell <terrelln@fb.com>
22932 B: https://github.com/facebook/zstd/issues
22933 T: git https://github.com/terrelln/linux.git
22934 F: include/linux/zstd*
22936 F: lib/decompress_unzstd.c
22941 ZSWAP COMPRESSED SWAP CACHING
22942 M: Seth Jennings <sjenning@redhat.com>
22943 M: Dan Streetman <ddstreet@ieee.org>
22944 M: Vitaly Wool <vitaly.wool@konsulko.com>
22945 L: linux-mm@kvack.org
22950 M: Linus Torvalds <torvalds@linux-foundation.org>
22951 L: linux-kernel@vger.kernel.org
22952 S: Buried alive in reporters
22953 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git