1 List of maintainers and how to submit kernel changes
2 ====================================================
4 Please try to follow the guidelines below. This will make things
5 easier on the maintainers. Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
8 Tips for patch submitters
9 -------------------------
11 1. Always *test* your changes, however small, on at least 4 or
12 5 people, preferably many more.
14 2. Try to release a few ALPHA test versions to the net. Announce
15 them onto the kernel channel and await results. This is especially
16 important for device drivers, because often that's the only way
17 you will find things like the fact version 3 firmware needs
18 a magic fix you didn't know about, or some clown changed the
19 chips on a board and not its name. (Don't laugh! Look at the
20 SMC etherpower for that.)
22 3. Make sure your changes compile correctly in multiple
23 configurations. In particular check that changes work both as a
24 module and built into the kernel.
26 4. When you are happy with a change make it generally available for
27 testing and await feedback.
29 5. Make a patch available to the relevant maintainer in the list. Use
30 ``diff -u`` to make the patch easy to merge. Be prepared to get your
31 changes sent back with seemingly silly requests about formatting
32 and variable names. These aren't as silly as they seem. One
33 job the maintainers (and especially Linus) do is to keep things
34 looking the same. Sometimes this means that the clever hack in
35 your driver to get around a problem actually needs to become a
36 generalized kernel feature ready for next time.
38 PLEASE check your patch with the automated style checker
39 (scripts/checkpatch.pl) to catch trivial style violations.
40 See Documentation/process/coding-style.rst for guidance here.
42 PLEASE CC: the maintainers and mailing lists that are generated
43 by ``scripts/get_maintainer.pl.`` The results returned by the
44 script will be best if you have git installed and are making
45 your changes in a branch derived from Linus' latest git tree.
46 See Documentation/process/submitting-patches.rst for details.
48 PLEASE try to include any credit lines you want added with the
49 patch. It avoids people being missed off by mistake and makes
50 it easier to know who wants adding and who doesn't.
52 PLEASE document known bugs. If it doesn't work for everything
53 or does something very odd once a month document it.
55 PLEASE remember that submissions must be made under the terms
56 of the Linux Foundation certificate of contribution and should
57 include a Signed-off-by: line. The current version of this
58 "Developer's Certificate of Origin" (DCO) is listed in the file
59 Documentation/process/submitting-patches.rst.
61 6. Make sure you have the right to send any changes you make. If you
62 do changes at work you may find your employer owns the patch
65 7. When sending security related changes or reports to a maintainer
66 please Cc: security@kernel.org, especially if the maintainer
67 does not respond. Please keep in mind that the security team is
68 a small set of people who can be efficient only when working on
69 verified bugs. Please only Cc: this list when you have identified
70 that the bug would present a short-term risk to other users if it
71 were publicly disclosed. For example, reports of address leaks do
72 not represent an immediate threat and are better handled publicly,
73 and ideally, should come with a patch proposal. Please do not send
74 automated reports to this list either. Such bugs will be handled
75 better and faster in the usual public places. See
76 Documentation/admin-guide/security-bugs.rst for details.
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
83 M: *Mail* patches to: FullName <address@domain>
84 R: Designated *Reviewer*: FullName <address@domain>
85 These reviewers should be CCed on patches.
86 L: *Mailing list* that is relevant to this area
87 S: *Status*, one of the following:
88 Supported: Someone is actually paid to look after this.
89 Maintained: Someone actually looks after it.
90 Odd Fixes: It has a maintainer but they don't have time to do
91 much other than throw the odd patch in. See below..
92 Orphan: No current maintainer [but maybe you could take the
93 role as you write your new code].
94 Obsolete: Old code. Something tagged obsolete generally means
95 it has been replaced by a better system and you
97 W: *Web-page* with status/info
98 Q: *Patchwork* web based patch tracking system site
99 B: URI for where to file *bugs*. A web-page with detailed bug
100 filing info, a direct bug tracker link, or a mailto: URI.
101 C: URI for *chat* protocol, server and channel where developers
102 usually hang out, for example irc://server/channel.
103 P: Subsystem Profile document for more details submitting
104 patches to the given subsystem. This is either an in-tree file,
105 or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
107 T: *SCM* tree type and location.
108 Type is one of: git, hg, quilt, stgit, topgit
109 F: *Files* and directories wildcard patterns.
110 A trailing slash includes all files and subdirectory files.
111 F: drivers/net/ all files in and below drivers/net
112 F: drivers/net/* all files in drivers/net, but not below
113 F: */net/* all files in "any top level directory"/net
114 One pattern per line. Multiple F: lines acceptable.
115 X: *Excluded* files and directories that are NOT maintained, same
116 rules as F:. Files exclusions are tested before file matches.
117 Can be useful for excluding a specific subdirectory, for instance:
120 matches all files in and below net excluding net/ipv6/
121 N: Files and directories *Regex* patterns.
122 N: [^a-z]tegra all files whose path contains tegra
123 (not including files like integrator)
124 One pattern per line. Multiple N: lines acceptable.
125 scripts/get_maintainer.pl has different behavior for files that
126 match F: pattern and matches of N: patterns. By default,
127 get_maintainer will not look at git log history when an F: pattern
128 match occurs. When an N: match occurs, git log history is used
129 to also notify the people that have git commit signatures.
130 K: *Content regex* (perl extended) pattern match in a patch or file.
133 matches patches or files that contain "of_get_profile"
134 K: \b(printk|pr_(info|err))\b
135 matches patches or files that contain one or more of the words
136 printk, pr_info or pr_err
137 One regex pattern per line. Multiple K: lines acceptable.
142 .. note:: When reading this list, please look for the most precise areas
143 first. When adding to this list, please keep the entries in
147 M: Steffen Klassert <klassert@kernel.org>
148 L: netdev@vger.kernel.org
150 F: Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F: drivers/net/ethernet/3com/3c59x.c
153 3CR990 NETWORK DRIVER
154 M: David Dillow <dave@thedillows.org>
155 L: netdev@vger.kernel.org
157 F: drivers/net/ethernet/3com/typhoon*
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M: Adam Radford <aradford@gmail.com>
161 L: linux-scsi@vger.kernel.org
163 W: http://www.lsi.com
166 53C700 AND 53C700-66 SCSI DRIVER
167 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L: linux-scsi@vger.kernel.org
170 F: drivers/scsi/53c700*
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M: Alexander Aring <alex.aring@gmail.com>
174 M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L: linux-bluetooth@vger.kernel.org
176 L: linux-wpan@vger.kernel.org
178 F: Documentation/networking/6lowpan.rst
179 F: include/net/6lowpan.h
182 6PACK NETWORK DRIVER FOR AX.25
183 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L: linux-hams@vger.kernel.org
186 F: drivers/net/hamradio/6pack.c
188 802.11 (including CFG80211/NL80211)
189 M: Johannes Berg <johannes@sipsolutions.net>
190 L: linux-wireless@vger.kernel.org
192 W: https://wireless.wiki.kernel.org/
193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F: Documentation/driver-api/80211/cfg80211.rst
196 F: Documentation/networking/regulatory.rst
197 F: include/linux/ieee80211.h
198 F: include/net/cfg80211.h
199 F: include/net/ieee80211_radiotap.h
200 F: include/net/iw_handler.h
201 F: include/net/wext.h
202 F: include/uapi/linux/nl80211.h
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M: Heiner Kallweit <hkallweit1@gmail.com>
207 M: nic_swsd@realtek.com
208 L: netdev@vger.kernel.org
210 F: drivers/net/ethernet/realtek/r8169*
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L: linux-serial@vger.kernel.org
216 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F: drivers/tty/serial/8250*
218 F: include/linux/serial_8250.h
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L: netdev@vger.kernel.org
223 F: drivers/net/ethernet/8390/
226 M: Eric Van Hensbergen <ericvh@gmail.com>
227 M: Latchesar Ionkov <lucho@ionkov.net>
228 M: Dominique Martinet <asmadeus@codewreck.org>
229 L: v9fs-developer@lists.sourceforge.net
231 W: http://swik.net/v9fs
232 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T: git git://github.com/martinetd/linux.git
235 F: Documentation/filesystems/9p.rst
238 F: include/trace/events/9p.h
239 F: include/uapi/linux/virtio_9p.h
243 M: Antti Palosaari <crope@iki.fi>
244 L: linux-media@vger.kernel.org
246 W: https://linuxtv.org
247 W: http://palosaari.fi/linux/
248 Q: http://patchwork.linuxtv.org/project/linux-media/list/
249 T: git git://linuxtv.org/anttip/media_tree.git
250 F: drivers/media/dvb-frontends/a8293*
252 AACRAID SCSI RAID DRIVER
253 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L: linux-scsi@vger.kernel.org
256 W: http://www.adaptec.com/
257 F: Documentation/scsi/aacraid.rst
258 F: drivers/scsi/aacraid/
261 L: linux-api@vger.kernel.org
262 F: include/linux/syscalls.h
265 X: arch/*/include/uapi/
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M: Hans de Goede <hdegoede@redhat.com>
269 L: linux-hwmon@vger.kernel.org
271 F: drivers/hwmon/abituguru.c
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M: Alistair John Strachan <alistair@devzero.co.uk>
275 L: linux-hwmon@vger.kernel.org
277 F: drivers/hwmon/abituguru3.c
279 ACCES 104-DIO-48E GPIO DRIVER
280 M: William Breathitt Gray <vilhelm.gray@gmail.com>
281 L: linux-gpio@vger.kernel.org
283 F: drivers/gpio/gpio-104-dio-48e.c
285 ACCES 104-IDI-48 GPIO DRIVER
286 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L: linux-gpio@vger.kernel.org
289 F: drivers/gpio/gpio-104-idi-48.c
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L: linux-gpio@vger.kernel.org
295 F: drivers/gpio/gpio-104-idio-16.c
297 ACCES 104-QUAD-8 DRIVER
298 M: William Breathitt Gray <vilhelm.gray@gmail.com>
299 M: Syed Nayyar Waris <syednwaris@gmail.com>
300 L: linux-iio@vger.kernel.org
302 F: drivers/counter/104-quad-8.c
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M: William Breathitt Gray <vilhelm.gray@gmail.com>
306 L: linux-gpio@vger.kernel.org
308 F: drivers/gpio/gpio-pci-idio-16.c
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M: William Breathitt Gray <vilhelm.gray@gmail.com>
312 L: linux-gpio@vger.kernel.org
314 F: drivers/gpio/gpio-pcie-idio-24.c
317 M: Jes Sorensen <jes@trained-monkey.org>
318 L: linux-acenic@sunsite.dk
320 F: drivers/net/ethernet/alteon/acenic*
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M: Peter Kaestle <peter@piie.net>
324 L: platform-driver-x86@vger.kernel.org
326 W: http://piie.net/?section=acerhdf
327 F: drivers/platform/x86/acerhdf.c
329 ACER WMI LAPTOP EXTRAS
330 M: "Lee, Chun-Yi" <jlee@suse.com>
331 L: platform-driver-x86@vger.kernel.org
333 F: drivers/platform/x86/acer-wmi.c
336 M: "Rafael J. Wysocki" <rafael@kernel.org>
337 M: Len Brown <lenb@kernel.org>
338 L: linux-acpi@vger.kernel.org
340 W: https://01.org/linux-acpi
341 Q: https://patchwork.kernel.org/project/linux-acpi/list/
342 B: https://bugzilla.kernel.org
343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F: Documentation/ABI/testing/configfs-acpi
345 F: Documentation/ABI/testing/sysfs-bus-acpi
346 F: Documentation/firmware-guide/acpi/
348 F: drivers/pci/*/*acpi*
349 F: drivers/pci/*acpi*
350 F: drivers/pnp/pnpacpi/
352 F: include/linux/acpi.h
353 F: include/linux/fwnode.h
357 M: "Rafael J. Wysocki" <rafael@kernel.org>
358 M: Len Brown <lenb@kernel.org>
359 R: James Morse <james.morse@arm.com>
360 R: Tony Luck <tony.luck@intel.com>
361 R: Borislav Petkov <bp@alien8.de>
362 L: linux-acpi@vger.kernel.org
363 F: drivers/acpi/apei/
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M: Robert Moore <robert.moore@intel.com>
367 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L: linux-acpi@vger.kernel.org
371 W: https://acpica.org/
372 W: https://github.com/acpica/acpica/
373 Q: https://patchwork.kernel.org/project/linux-acpi/list/
374 B: https://bugzilla.kernel.org
375 B: https://bugs.acpica.org
376 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F: drivers/acpi/acpica/
382 M: Zhang Rui <rui.zhang@intel.com>
383 L: linux-acpi@vger.kernel.org
385 W: https://01.org/linux-acpi
386 B: https://bugzilla.kernel.org
387 F: drivers/acpi/fan.c
389 ACPI FOR ARM64 (ACPI/arm64)
390 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
391 M: Hanjun Guo <guohanjun@huawei.com>
392 M: Sudeep Holla <sudeep.holla@arm.com>
393 L: linux-acpi@vger.kernel.org
394 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 F: drivers/acpi/arm64
398 ACPI I2C MULTI INSTANTIATE DRIVER
399 M: Hans de Goede <hdegoede@redhat.com>
400 L: platform-driver-x86@vger.kernel.org
402 F: drivers/platform/x86/i2c-multi-instantiate.c
405 M: "Rafael J. Wysocki" <rafael@kernel.org>
406 M: Len Brown <lenb@kernel.org>
407 R: Andy Shevchenko <andy@kernel.org>
408 R: Mika Westerberg <mika.westerberg@linux.intel.com>
409 L: linux-acpi@vger.kernel.org
411 Q: https://patchwork.kernel.org/project/linux-acpi/list/
412 B: https://bugzilla.kernel.org
413 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F: drivers/acpi/pmic/
417 M: Rafael J. Wysocki <rafael@kernel.org>
418 R: Zhang Rui <rui.zhang@intel.com>
419 L: linux-acpi@vger.kernel.org
421 W: https://01.org/linux-acpi
422 B: https://bugzilla.kernel.org
423 F: drivers/acpi/*thermal*
426 M: Zhang Rui <rui.zhang@intel.com>
427 L: linux-acpi@vger.kernel.org
429 W: https://01.org/linux-acpi
430 B: https://bugzilla.kernel.org
431 F: drivers/acpi/acpi_video.c
434 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
435 L: linux-acpi@vger.kernel.org
436 L: iommu@lists.linux-foundation.org
438 F: drivers/acpi/viot.c
439 F: include/linux/acpi_viot.h
442 L: platform-driver-x86@vger.kernel.org
444 F: drivers/platform/x86/wmi.c
445 F: include/uapi/linux/wmi.h
447 ACRN HYPERVISOR SERVICE MODULE
448 M: Fei Li <fei1.li@intel.com>
449 L: acrn-dev@lists.projectacrn.org (subscribers-only)
451 W: https://projectacrn.org
452 F: Documentation/virt/acrn/
453 F: drivers/virt/acrn/
454 F: include/uapi/linux/acrn.h
456 AD1889 ALSA SOUND DRIVER
457 L: linux-parisc@vger.kernel.org
459 W: https://parisc.wiki.kernel.org/index.php/AD1889
460 F: sound/pci/ad1889.*
462 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
463 M: Mugilraj Dhavachelvan <dmugil2000@gmail.com>
464 L: linux-iio@vger.kernel.org
466 F: drivers/iio/potentiometer/ad5110.c
468 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
469 M: Michael Hennerich <michael.hennerich@analog.com>
471 W: http://wiki.analog.com/AD5254
472 W: http://ez.analog.com/community/linux-device-drivers
473 F: drivers/misc/ad525x_dpot.c
475 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
476 M: Michael Hennerich <michael.hennerich@analog.com>
478 W: http://wiki.analog.com/AD5398
479 W: http://ez.analog.com/community/linux-device-drivers
480 F: drivers/regulator/ad5398.c
482 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
483 M: Michael Hennerich <michael.hennerich@analog.com>
485 W: http://wiki.analog.com/AD7142
486 W: http://ez.analog.com/community/linux-device-drivers
487 F: drivers/input/misc/ad714x.c
489 AD7877 TOUCHSCREEN DRIVER
490 M: Michael Hennerich <michael.hennerich@analog.com>
492 W: http://wiki.analog.com/AD7877
493 W: http://ez.analog.com/community/linux-device-drivers
494 F: drivers/input/touchscreen/ad7877.c
496 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
497 M: Michael Hennerich <michael.hennerich@analog.com>
499 W: http://wiki.analog.com/AD7879
500 W: http://ez.analog.com/community/linux-device-drivers
501 F: drivers/input/touchscreen/ad7879.c
503 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
504 M: Jiri Kosina <jikos@kernel.org>
507 ADF7242 IEEE 802.15.4 RADIO DRIVER
508 M: Michael Hennerich <michael.hennerich@analog.com>
509 L: linux-wpan@vger.kernel.org
511 W: https://wiki.analog.com/ADF7242
512 W: http://ez.analog.com/community/linux-device-drivers
513 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
514 F: drivers/net/ieee802154/adf7242.c
516 ADM1025 HARDWARE MONITOR DRIVER
517 M: Jean Delvare <jdelvare@suse.com>
518 L: linux-hwmon@vger.kernel.org
520 F: Documentation/hwmon/adm1025.rst
521 F: drivers/hwmon/adm1025.c
523 ADM1029 HARDWARE MONITOR DRIVER
524 M: Corentin Labbe <clabbe.montjoie@gmail.com>
525 L: linux-hwmon@vger.kernel.org
527 F: drivers/hwmon/adm1029.c
529 ADM8211 WIRELESS DRIVER
530 L: linux-wireless@vger.kernel.org
532 W: https://wireless.wiki.kernel.org/
533 F: drivers/net/wireless/admtek/adm8211.*
535 ADP1653 FLASH CONTROLLER DRIVER
536 M: Sakari Ailus <sakari.ailus@iki.fi>
537 L: linux-media@vger.kernel.org
539 F: drivers/media/i2c/adp1653.c
540 F: include/media/i2c/adp1653.h
542 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
543 M: Michael Hennerich <michael.hennerich@analog.com>
545 W: http://wiki.analog.com/ADP5520
546 W: http://ez.analog.com/community/linux-device-drivers
547 F: drivers/gpio/gpio-adp5520.c
548 F: drivers/input/keyboard/adp5520-keys.c
549 F: drivers/leds/leds-adp5520.c
550 F: drivers/mfd/adp5520.c
551 F: drivers/video/backlight/adp5520_bl.c
553 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
554 M: Michael Hennerich <michael.hennerich@analog.com>
556 W: http://wiki.analog.com/ADP5588
557 W: http://ez.analog.com/community/linux-device-drivers
558 F: drivers/gpio/gpio-adp5588.c
559 F: drivers/input/keyboard/adp5588-keys.c
561 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
562 M: Michael Hennerich <michael.hennerich@analog.com>
564 W: http://wiki.analog.com/ADP8860
565 W: http://ez.analog.com/community/linux-device-drivers
566 F: drivers/video/backlight/adp8860_bl.c
569 M: Colin Leroy <colin@colino.net>
571 F: drivers/macintosh/therm_adt746x.c
573 ADT7475 HARDWARE MONITOR DRIVER
574 M: Jean Delvare <jdelvare@suse.com>
575 L: linux-hwmon@vger.kernel.org
577 F: Documentation/hwmon/adt7475.rst
578 F: drivers/hwmon/adt7475.c
581 M: Matthew Wilcox <willy@infradead.org>
582 M: Hannes Reinecke <hare@suse.com>
583 L: linux-scsi@vger.kernel.org
585 F: Documentation/scsi/advansys.rst
586 F: drivers/scsi/advansys.c
588 ADVANTECH SWBTN DRIVER
589 M: Andrea Ho <Andrea.Ho@advantech.com.tw>
590 L: platform-driver-x86@vger.kernel.org
592 F: drivers/platform/x86/adv_swbutton.c
594 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
595 M: Michael Hennerich <michael.hennerich@analog.com>
597 W: http://wiki.analog.com/ADXL345
598 W: http://ez.analog.com/community/linux-device-drivers
599 F: Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
600 F: drivers/input/misc/adxl34x.c
602 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
603 M: Michael Hennerich <michael.hennerich@analog.com>
605 W: http://ez.analog.com/community/linux-device-drivers
606 F: Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
607 F: drivers/iio/accel/adxl372.c
608 F: drivers/iio/accel/adxl372_i2c.c
609 F: drivers/iio/accel/adxl372_spi.c
612 M: Antti Palosaari <crope@iki.fi>
613 L: linux-media@vger.kernel.org
615 W: https://linuxtv.org
616 W: http://palosaari.fi/linux/
617 Q: http://patchwork.linuxtv.org/project/linux-media/list/
618 T: git git://linuxtv.org/anttip/media_tree.git
619 F: drivers/media/dvb-frontends/af9013*
622 M: Antti Palosaari <crope@iki.fi>
623 L: linux-media@vger.kernel.org
625 W: https://linuxtv.org
626 W: http://palosaari.fi/linux/
627 Q: http://patchwork.linuxtv.org/project/linux-media/list/
628 T: git git://linuxtv.org/anttip/media_tree.git
629 F: drivers/media/dvb-frontends/af9033*
632 M: David Sterba <dsterba@suse.com>
633 L: linux-fsdevel@vger.kernel.org
635 F: Documentation/filesystems/affs.rst
639 M: David Howells <dhowells@redhat.com>
640 M: Marc Dionne <marc.dionne@auristor.com>
641 L: linux-afs@lists.infradead.org
643 W: https://www.infradead.org/~dhowells/kafs/
644 F: Documentation/filesystems/afs.rst
646 F: include/trace/events/afs.h
649 M: David Airlie <airlied@linux.ie>
651 T: git git://anongit.freedesktop.org/drm/drm
653 F: include/linux/agp*
654 F: include/uapi/linux/agp*
657 M: "Juergen E. Fischer" <fischer@norbit.de>
658 L: linux-scsi@vger.kernel.org
660 F: drivers/scsi/aha152x*
661 F: drivers/scsi/pcmcia/aha152x*
663 AIC7XXX / AIC79XX SCSI DRIVER
664 M: Hannes Reinecke <hare@suse.com>
665 L: linux-scsi@vger.kernel.org
667 F: drivers/scsi/aic7xxx/
669 AIMSLAB FM RADIO RECEIVER DRIVER
670 M: Hans Verkuil <hverkuil@xs4all.nl>
671 L: linux-media@vger.kernel.org
673 W: https://linuxtv.org
674 T: git git://linuxtv.org/media_tree.git
675 F: drivers/media/radio/radio-aimslab*
678 M: Benjamin LaHaise <bcrl@kvack.org>
679 L: linux-aio@kvack.org
682 F: include/linux/*aio*.h
685 M: Antti Palosaari <crope@iki.fi>
686 L: linux-media@vger.kernel.org
688 W: https://linuxtv.org
689 W: http://palosaari.fi/linux/
690 Q: http://patchwork.linuxtv.org/project/linux-media/list/
691 T: git git://linuxtv.org/anttip/media_tree.git
692 F: drivers/media/usb/airspy/
694 ALACRITECH GIGABIT ETHERNET DRIVER
695 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
697 F: drivers/net/ethernet/alacritech/*
699 ALCATEL SPEEDTOUCH USB DRIVER
700 M: Duncan Sands <duncan.sands@free.fr>
701 L: linux-usb@vger.kernel.org
703 W: http://www.linux-usb.org/SpeedTouch/
704 F: drivers/usb/atm/speedtch.c
705 F: drivers/usb/atm/usbatm.c
707 ALCHEMY AU1XX0 MMC DRIVER
708 M: Manuel Lauss <manuel.lauss@gmail.com>
710 F: drivers/mmc/host/au1xmmc.c
713 M: Rudolf Marek <r.marek@assembler.cz>
714 L: linux-i2c@vger.kernel.org
716 F: Documentation/i2c/busses/i2c-ali1563.rst
717 F: drivers/i2c/busses/i2c-ali1563.c
720 L: Dell.Client.Kernel@dell.com
722 F: drivers/platform/x86/dell/alienware-wmi.c
724 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
725 M: Tomislav Denis <tomislav.denis@avl.com>
726 L: linux-iio@vger.kernel.org
728 W: http://www.allsensors.com/
729 F: Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
730 F: drivers/iio/pressure/dlhl60d.c
732 ALLEGRO DVT VIDEO IP CORE DRIVER
733 M: Michael Tretter <m.tretter@pengutronix.de>
734 R: Pengutronix Kernel Team <kernel@pengutronix.de>
735 L: linux-media@vger.kernel.org
737 F: Documentation/devicetree/bindings/media/allegro,al5e.yaml
738 F: drivers/media/platform/allegro-dvt/
740 ALLWINNER A10 CSI DRIVER
741 M: Maxime Ripard <mripard@kernel.org>
742 L: linux-media@vger.kernel.org
744 T: git git://linuxtv.org/media_tree.git
745 F: Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
746 F: drivers/media/platform/sunxi/sun4i-csi/
748 ALLWINNER CPUFREQ DRIVER
749 M: Yangtao Li <tiny.windzz@gmail.com>
750 L: linux-pm@vger.kernel.org
752 F: Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
753 F: drivers/cpufreq/sun50i-cpufreq-nvmem.c
755 ALLWINNER CRYPTO DRIVERS
756 M: Corentin Labbe <clabbe.montjoie@gmail.com>
757 L: linux-crypto@vger.kernel.org
759 F: drivers/crypto/allwinner/
761 ALLWINNER HARDWARE SPINLOCK SUPPORT
762 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
764 F: Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
765 F: drivers/hwspinlock/sun6i_hwspinlock.c
767 ALLWINNER THERMAL DRIVER
768 M: Vasily Khoruzhick <anarsoul@gmail.com>
769 M: Yangtao Li <tiny.windzz@gmail.com>
770 L: linux-pm@vger.kernel.org
772 F: Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
773 F: drivers/thermal/sun8i_thermal.c
776 M: Maxime Ripard <mripard@kernel.org>
777 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
778 L: linux-media@vger.kernel.org
780 F: drivers/staging/media/sunxi/cedrus/
783 M: Richard Henderson <rth@twiddle.net>
784 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
785 M: Matt Turner <mattst88@gmail.com>
786 L: linux-alpha@vger.kernel.org
790 ALPS PS/2 TOUCHPAD DRIVER
791 R: Pali Rohár <pali@kernel.org>
792 F: drivers/input/mouse/alps.*
794 ALTERA I2C CONTROLLER DRIVER
795 M: Thor Thayer <thor.thayer@linux.intel.com>
797 F: Documentation/devicetree/bindings/i2c/i2c-altera.txt
798 F: drivers/i2c/busses/i2c-altera.c
800 ALTERA MAILBOX DRIVER
801 M: Joyce Ooi <joyce.ooi@intel.com>
803 F: drivers/mailbox/mailbox-altera.c
805 ALTERA MSGDMA IP CORE DRIVER
806 M: Olivier Dautricourt <olivier.dautricourt@orolia.com>
807 R: Stefan Roese <sr@denx.de>
808 L: dmaengine@vger.kernel.org
810 F: Documentation/devicetree/bindings/dma/altr,msgdma.yaml
811 F: drivers/dma/altera-msgdma.c
814 M: Mun Yew Tham <mun.yew.tham@intel.com>
815 L: linux-gpio@vger.kernel.org
817 F: drivers/gpio/gpio-altera.c
819 ALTERA SYSTEM MANAGER DRIVER
820 M: Thor Thayer <thor.thayer@linux.intel.com>
822 F: drivers/mfd/altera-sysmgr.c
823 F: include/linux/mfd/altera-sysmgr.h
825 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
826 M: Thor Thayer <thor.thayer@linux.intel.com>
828 F: drivers/gpio/gpio-altera-a10sr.c
829 F: drivers/mfd/altera-a10sr.c
830 F: drivers/reset/reset-a10sr.c
831 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
832 F: include/linux/mfd/altera-a10sr.h
834 ALTERA TRIPLE SPEED ETHERNET DRIVER
835 M: Joyce Ooi <joyce.ooi@intel.com>
836 L: netdev@vger.kernel.org
838 F: drivers/net/ethernet/altera/
840 ALTERA UART/JTAG UART SERIAL DRIVERS
841 M: Tobias Klauser <tklauser@distanz.ch>
842 L: linux-serial@vger.kernel.org
844 F: drivers/tty/serial/altera_jtaguart.c
845 F: drivers/tty/serial/altera_uart.c
846 F: include/linux/altera_jtaguart.h
847 F: include/linux/altera_uart.h
849 AMAZON ANNAPURNA LABS FIC DRIVER
850 M: Talel Shenhar <talel@amazon.com>
852 F: Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
853 F: drivers/irqchip/irq-al-fic.c
855 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
856 M: Talel Shenhar <talel@amazon.com>
857 M: Talel Shenhar <talelshenhar@gmail.com>
859 F: Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
860 F: drivers/edac/al_mc_edac.c
862 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
863 M: Talel Shenhar <talel@amazon.com>
865 F: Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
866 F: drivers/thermal/thermal_mmio.c
868 AMAZON ETHERNET DRIVERS
869 M: Netanel Belgazal <netanel@amazon.com>
870 M: Arthur Kiyanovski <akiyano@amazon.com>
871 R: Guy Tzalik <gtzalik@amazon.com>
872 R: Saeed Bishara <saeedb@amazon.com>
873 L: netdev@vger.kernel.org
875 F: Documentation/networking/device_drivers/ethernet/amazon/ena.rst
876 F: drivers/net/ethernet/amazon/
878 AMAZON RDMA EFA DRIVER
879 M: Gal Pressman <galpress@amazon.com>
880 R: Yossi Leybovich <sleybo@amazon.com>
881 L: linux-rdma@vger.kernel.org
883 Q: https://patchwork.kernel.org/project/linux-rdma/list/
884 F: drivers/infiniband/hw/efa/
885 F: include/uapi/rdma/efa-abi.h
887 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
888 M: Tom Lendacky <thomas.lendacky@amd.com>
889 M: John Allen <john.allen@amd.com>
890 L: linux-crypto@vger.kernel.org
892 F: drivers/crypto/ccp/
893 F: include/linux/ccp.h
895 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
896 M: Brijesh Singh <brijesh.singh@amd.com>
897 M: Tom Lendacky <thomas.lendacky@amd.com>
898 L: linux-crypto@vger.kernel.org
900 F: drivers/crypto/ccp/sev*
901 F: include/uapi/linux/psp-sev.h
904 M: Harry Wentland <harry.wentland@amd.com>
905 M: Leo Li <sunpeng.li@amd.com>
906 L: amd-gfx@lists.freedesktop.org
908 T: git https://gitlab.freedesktop.org/agd5f/linux.git
909 F: drivers/gpu/drm/amd/display/
911 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
912 M: Huang Rui <ray.huang@amd.com>
913 L: linux-hwmon@vger.kernel.org
915 F: Documentation/hwmon/fam15h_power.rst
916 F: drivers/hwmon/fam15h_power.c
919 M: Enrico Weigelt, metux IT consult <info@metux.net>
920 L: linux-gpio@vger.kernel.org
922 F: drivers/gpio/gpio-amd-fch.c
923 F: include/linux/platform_data/gpio/gpio-amd-fch.h
925 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
926 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
928 F: drivers/usb/gadget/udc/amd5536udc.*
930 AMD GEODE PROCESSOR/CHIPSET SUPPORT
931 M: Andres Salomon <dilinger@queued.net>
932 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
934 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
935 F: arch/x86/include/asm/geode.h
936 F: drivers/char/hw_random/geode-rng.c
937 F: drivers/crypto/geode*
938 F: drivers/video/fbdev/geode/
941 M: Joerg Roedel <joro@8bytes.org>
942 R: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
943 L: iommu@lists.linux-foundation.org
945 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
946 F: drivers/iommu/amd/
947 F: include/linux/amd-iommu.h
950 M: Felix Kuehling <Felix.Kuehling@amd.com>
951 L: amd-gfx@lists.freedesktop.org
953 T: git https://gitlab.freedesktop.org/agd5f/linux.git
954 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
955 F: drivers/gpu/drm/amd/amdkfd/
956 F: drivers/gpu/drm/amd/include/cik_structs.h
957 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
958 F: drivers/gpu/drm/amd/include/v9_structs.h
959 F: drivers/gpu/drm/amd/include/vi_structs.h
960 F: include/uapi/linux/kfd_ioctl.h
963 M: Sanjay R Mehta <sanju.mehta@amd.com>
965 F: drivers/spi/spi-amd.c
968 M: Elie Morisse <syniurge@gmail.com>
969 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
970 M: Shyam Sundar S K <shyam-sundar.s-k@amd.com>
971 L: linux-i2c@vger.kernel.org
973 F: drivers/i2c/busses/i2c-amd-mp2*
976 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
977 L: platform-driver-x86@vger.kernel.org
979 F: drivers/platform/x86/amd-pmc.*
981 AMD POWERPLAY AND SWSMU
982 M: Evan Quan <evan.quan@amd.com>
983 L: amd-gfx@lists.freedesktop.org
985 T: git https://gitlab.freedesktop.org/agd5f/linux.git
986 F: drivers/gpu/drm/amd/pm/
989 M: Sanjay R Mehta <sanju.mehta@amd.com>
990 L: dmaengine@vger.kernel.org
992 F: drivers/dma/ptdma/
994 AMD SEATTLE DEVICE TREE SUPPORT
995 M: Brijesh Singh <brijeshkumar.singh@amd.com>
996 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
997 M: Tom Lendacky <thomas.lendacky@amd.com>
999 F: arch/arm64/boot/dts/amd/
1002 M: Tom Lendacky <thomas.lendacky@amd.com>
1003 L: netdev@vger.kernel.org
1005 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1006 F: drivers/net/ethernet/amd/xgbe/
1008 AMD SENSOR FUSION HUB DRIVER
1009 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
1010 M: Basavaraj Natikar <basavaraj.natikar@amd.com>
1011 L: linux-input@vger.kernel.org
1013 F: Documentation/hid/amd-sfh*
1014 F: drivers/hid/amd-sfh-hid/
1017 M: Christian Eggers <ceggers@arri.de>
1018 L: linux-iio@vger.kernel.org
1020 F: Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1021 F: drivers/iio/light/as73211.c
1023 ANALOG DEVICES INC AD7192 DRIVER
1024 M: Alexandru Tachici <alexandru.tachici@analog.com>
1025 L: linux-iio@vger.kernel.org
1027 W: http://ez.analog.com/community/linux-device-drivers
1028 F: Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1029 F: drivers/iio/adc/ad7192.c
1031 ANALOG DEVICES INC AD7292 DRIVER
1032 M: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1033 L: linux-iio@vger.kernel.org
1035 W: http://ez.analog.com/community/linux-device-drivers
1036 F: Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1037 F: drivers/iio/adc/ad7292.c
1039 ANALOG DEVICES INC AD7768-1 DRIVER
1040 M: Michael Hennerich <Michael.Hennerich@analog.com>
1041 L: linux-iio@vger.kernel.org
1043 W: http://ez.analog.com/community/linux-device-drivers
1044 F: Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1045 F: drivers/iio/adc/ad7768-1.c
1047 ANALOG DEVICES INC AD7780 DRIVER
1048 M: Michael Hennerich <Michael.Hennerich@analog.com>
1049 M: Renato Lui Geh <renatogeh@gmail.com>
1050 L: linux-iio@vger.kernel.org
1052 W: http://ez.analog.com/community/linux-device-drivers
1053 F: Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1054 F: drivers/iio/adc/ad7780.c
1056 ANALOG DEVICES INC AD9389B DRIVER
1057 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1058 L: linux-media@vger.kernel.org
1060 F: drivers/media/i2c/ad9389b*
1062 ANALOG DEVICES INC ADGS1408 DRIVER
1063 M: Mircea Caprioru <mircea.caprioru@analog.com>
1065 F: Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1066 F: drivers/mux/adgs1408.c
1068 ANALOG DEVICES INC ADIN DRIVER
1069 M: Michael Hennerich <michael.hennerich@analog.com>
1070 L: netdev@vger.kernel.org
1072 W: http://ez.analog.com/community/linux-device-drivers
1073 F: Documentation/devicetree/bindings/net/adi,adin.yaml
1074 F: drivers/net/phy/adin.c
1076 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1077 M: Nuno Sa <nuno.sa@analog.com>
1078 L: linux-iio@vger.kernel.org
1080 F: drivers/iio/imu/adis.c
1081 F: include/linux/iio/imu/adis.h
1083 ANALOG DEVICES INC ADIS16460 DRIVER
1084 M: Dragos Bogdan <dragos.bogdan@analog.com>
1085 L: linux-iio@vger.kernel.org
1087 W: http://ez.analog.com/community/linux-device-drivers
1088 F: Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1089 F: drivers/iio/imu/adis16460.c
1091 ANALOG DEVICES INC ADIS16475 DRIVER
1092 M: Nuno Sa <nuno.sa@analog.com>
1093 L: linux-iio@vger.kernel.org
1094 W: http://ez.analog.com/community/linux-device-drivers
1096 F: drivers/iio/imu/adis16475.c
1097 F: Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1099 ANALOG DEVICES INC ADM1177 DRIVER
1100 M: Michael Hennerich <Michael.Hennerich@analog.com>
1101 L: linux-hwmon@vger.kernel.org
1103 W: http://ez.analog.com/community/linux-device-drivers
1104 F: Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1105 F: drivers/hwmon/adm1177.c
1107 ANALOG DEVICES INC ADP5061 DRIVER
1108 M: Michael Hennerich <Michael.Hennerich@analog.com>
1109 L: linux-pm@vger.kernel.org
1111 W: http://ez.analog.com/community/linux-device-drivers
1112 F: drivers/power/supply/adp5061.c
1114 ANALOG DEVICES INC ADV7180 DRIVER
1115 M: Lars-Peter Clausen <lars@metafoo.de>
1116 L: linux-media@vger.kernel.org
1118 W: http://ez.analog.com/community/linux-device-drivers
1119 F: drivers/media/i2c/adv7180.c
1120 F: Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1122 ANALOG DEVICES INC ADV748X DRIVER
1123 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
1124 L: linux-media@vger.kernel.org
1126 F: drivers/media/i2c/adv748x/*
1128 ANALOG DEVICES INC ADV7511 DRIVER
1129 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1130 L: linux-media@vger.kernel.org
1132 F: drivers/media/i2c/adv7511*
1134 ANALOG DEVICES INC ADV7604 DRIVER
1135 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1136 L: linux-media@vger.kernel.org
1138 F: drivers/media/i2c/adv7604*
1139 F: Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1141 ANALOG DEVICES INC ADV7842 DRIVER
1142 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1143 L: linux-media@vger.kernel.org
1145 F: drivers/media/i2c/adv7842*
1147 ANALOG DEVICES INC ADXRS290 DRIVER
1148 M: Nishant Malpani <nish.malpani25@gmail.com>
1149 L: linux-iio@vger.kernel.org
1151 F: drivers/iio/gyro/adxrs290.c
1152 F: Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1154 ANALOG DEVICES INC ASOC CODEC DRIVERS
1155 M: Lars-Peter Clausen <lars@metafoo.de>
1156 M: Nuno Sá <nuno.sa@analog.com>
1157 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1159 W: http://wiki.analog.com/
1160 W: http://ez.analog.com/community/linux-device-drivers
1161 F: sound/soc/codecs/ad1*
1162 F: sound/soc/codecs/ad7*
1163 F: sound/soc/codecs/adau*
1164 F: sound/soc/codecs/adav*
1165 F: sound/soc/codecs/sigmadsp.*
1166 F: sound/soc/codecs/ssm*
1168 ANALOG DEVICES INC DMA DRIVERS
1169 M: Lars-Peter Clausen <lars@metafoo.de>
1171 W: http://ez.analog.com/community/linux-device-drivers
1172 F: drivers/dma/dma-axi-dmac.c
1174 ANALOG DEVICES INC IIO DRIVERS
1175 M: Lars-Peter Clausen <lars@metafoo.de>
1176 M: Michael Hennerich <Michael.Hennerich@analog.com>
1178 W: http://wiki.analog.com/
1179 W: http://ez.analog.com/community/linux-device-drivers
1180 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1181 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1182 F: Documentation/devicetree/bindings/iio/*/adi,*
1183 F: Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1184 F: drivers/iio/*/ad*
1185 F: drivers/iio/adc/ltc249*
1186 F: drivers/iio/amplifiers/hmc425a.c
1187 F: drivers/staging/iio/*/ad*
1188 X: drivers/iio/*/adjd*
1190 ANALOGBITS PLL LIBRARIES
1191 M: Paul Walmsley <paul.walmsley@sifive.com>
1193 F: drivers/clk/analogbits/*
1194 F: include/linux/clk/analogbits*
1197 M: Nick Hu <nickhu@andestech.com>
1198 M: Greentime Hu <green.hu@gmail.com>
1199 M: Vincent Chen <deanbo422@gmail.com>
1201 T: git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1202 F: Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1203 F: Documentation/devicetree/bindings/nds32/
1208 ANDROID CONFIG FRAGMENTS
1209 M: Rob Herring <robh@kernel.org>
1211 F: kernel/configs/android*
1214 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1215 M: Arve Hjønnevåg <arve@android.com>
1216 M: Todd Kjos <tkjos@android.com>
1217 M: Martijn Coenen <maco@android.com>
1218 M: Joel Fernandes <joel@joelfernandes.org>
1219 M: Christian Brauner <christian@brauner.io>
1220 M: Hridya Valsaraju <hridya@google.com>
1221 M: Suren Baghdasaryan <surenb@google.com>
1222 L: linux-kernel@vger.kernel.org
1224 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1226 F: drivers/staging/android/
1228 ANDROID GOLDFISH PIC DRIVER
1229 M: Miodrag Dinic <miodrag.dinic@mips.com>
1231 F: Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1232 F: drivers/irqchip/irq-goldfish-pic.c
1234 ANDROID GOLDFISH RTC DRIVER
1235 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
1237 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1238 F: drivers/rtc/rtc-goldfish.c
1240 AOA (Apple Onboard Audio) ALSA DRIVER
1241 M: Johannes Berg <johannes@sipsolutions.net>
1242 L: linuxppc-dev@lists.ozlabs.org
1243 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1247 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1248 M: William Breathitt Gray <vilhelm.gray@gmail.com>
1249 L: linux-iio@vger.kernel.org
1251 F: drivers/iio/adc/stx104.c
1254 M: Jiri Kosina <jikos@kernel.org>
1256 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1257 F: arch/x86/kernel/apm_32.c
1258 F: drivers/char/apm-emulation.c
1259 F: include/linux/apm_bios.h
1260 F: include/uapi/linux/apm_bios.h
1262 APPARMOR SECURITY MODULE
1263 M: John Johansen <john.johansen@canonical.com>
1264 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1266 W: wiki.apparmor.net
1267 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1268 F: Documentation/admin-guide/LSM/apparmor.rst
1269 F: security/apparmor/
1271 APPLE BCM5974 MULTITOUCH DRIVER
1272 M: Henrik Rydberg <rydberg@bitmath.org>
1273 L: linux-input@vger.kernel.org
1275 F: drivers/input/mouse/bcm5974.c
1277 APPLE DART IOMMU DRIVER
1278 M: Sven Peter <sven@svenpeter.dev>
1279 R: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1280 L: iommu@lists.linux-foundation.org
1282 F: Documentation/devicetree/bindings/iommu/apple,dart.yaml
1283 F: drivers/iommu/apple-dart.c
1286 M: Henrik Rydberg <rydberg@bitmath.org>
1287 L: linux-hwmon@vger.kernel.org
1289 F: drivers/hwmon/applesmc.c
1291 APPLETALK NETWORK LAYER
1292 L: netdev@vger.kernel.org
1294 F: drivers/net/appletalk/
1295 F: include/linux/atalk.h
1296 F: include/uapi/linux/atalk.h
1299 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1300 M: Khuong Dinh <khuong@os.amperecomputing.com>
1302 F: arch/arm64/boot/dts/apm/
1304 APPLIED MICRO (APM) X-GENE SOC EDAC
1305 M: Khuong Dinh <khuong@os.amperecomputing.com>
1307 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1308 F: drivers/edac/xgene_edac.c
1310 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1311 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1312 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1314 F: drivers/net/ethernet/apm/xgene-v2/
1316 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1317 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1318 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1319 M: Quan Nguyen <quan@os.amperecomputing.com>
1321 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1322 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1323 F: drivers/net/ethernet/apm/xgene/
1324 F: drivers/net/mdio/mdio-xgene.c
1326 APPLIED MICRO (APM) X-GENE SOC PMU
1327 M: Khuong Dinh <khuong@os.amperecomputing.com>
1329 F: Documentation/admin-guide/perf/xgene-pmu.rst
1330 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1331 F: drivers/perf/xgene_pmu.c
1333 APTINA CAMERA SENSOR PLL
1334 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1335 L: linux-media@vger.kernel.org
1337 F: drivers/media/i2c/aptina-pll.*
1339 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1340 M: Aleksa Savic <savicaleksa83@gmail.com>
1341 L: linux-hwmon@vger.kernel.org
1343 F: Documentation/hwmon/aquacomputer_d5next.rst
1344 F: drivers/hwmon/aquacomputer_d5next.c
1346 AQUANTIA ETHERNET DRIVER (atlantic)
1347 M: Igor Russkikh <irusskikh@marvell.com>
1348 L: netdev@vger.kernel.org
1350 W: https://www.marvell.com/
1351 Q: https://patchwork.kernel.org/project/netdevbpf/list/
1352 F: Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1353 F: drivers/net/ethernet/aquantia/atlantic/
1355 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1356 M: Egor Pomozov <epomozov@marvell.com>
1357 L: netdev@vger.kernel.org
1359 W: http://www.aquantia.com
1360 F: drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1362 ARASAN NAND CONTROLLER DRIVER
1363 M: Miquel Raynal <miquel.raynal@bootlin.com>
1364 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1365 L: linux-mtd@lists.infradead.org
1367 F: Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1368 F: drivers/mtd/nand/raw/arasan-nand-controller.c
1370 ARC FRAMEBUFFER DRIVER
1371 M: Jaya Kumar <jayalk@intworks.biz>
1373 F: drivers/video/fbdev/arcfb.c
1374 F: drivers/video/fbdev/core/fb_defio.c
1377 M: Alexey Brodkin <abrodkin@synopsys.com>
1379 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
1380 F: drivers/gpu/drm/tiny/arcpgu.c
1382 ARCNET NETWORK LAYER
1383 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
1384 L: netdev@vger.kernel.org
1386 F: drivers/net/arcnet/
1387 F: include/uapi/linux/if_arcnet.h
1389 ARM ARCHITECTED TIMER DRIVER
1390 M: Mark Rutland <mark.rutland@arm.com>
1391 M: Marc Zyngier <maz@kernel.org>
1392 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1394 F: arch/arm/include/asm/arch_timer.h
1395 F: arch/arm64/include/asm/arch_timer.h
1396 F: drivers/clocksource/arm_arch_timer.c
1398 ARM HDLCD DRM DRIVER
1399 M: Liviu Dudau <liviu.dudau@arm.com>
1401 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
1402 F: drivers/gpu/drm/arm/hdlcd_*
1404 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1405 M: Linus Walleij <linus.walleij@linaro.org>
1406 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1408 F: Documentation/devicetree/bindings/arm/arm,integrator.yaml
1409 F: Documentation/devicetree/bindings/arm/arm,realview.yaml
1410 F: Documentation/devicetree/bindings/arm/arm,versatile.yaml
1411 F: Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1412 F: Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1413 F: Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1414 F: Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1415 F: Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1416 F: Documentation/devicetree/bindings/mtd/arm-versatile.txt
1417 F: arch/arm/boot/dts/arm-realview-*
1418 F: arch/arm/boot/dts/integrator*
1419 F: arch/arm/boot/dts/versatile*
1420 F: arch/arm/mach-integrator/
1421 F: arch/arm/mach-realview/
1422 F: arch/arm/mach-versatile/
1423 F: arch/arm/plat-versatile/
1424 F: drivers/bus/arm-integrator-lm.c
1425 F: drivers/clk/versatile/
1426 F: drivers/i2c/busses/i2c-versatile.c
1427 F: drivers/irqchip/irq-versatile-fpga.c
1428 F: drivers/mtd/maps/physmap-versatile.*
1429 F: drivers/power/reset/arm-versatile-reboot.c
1430 F: drivers/soc/versatile/
1432 ARM KOMEDA DRM-KMS DRIVER
1433 M: James (Qian) Wang <james.qian.wang@arm.com>
1434 M: Liviu Dudau <liviu.dudau@arm.com>
1435 M: Mihail Atanassov <mihail.atanassov@arm.com>
1436 L: Mali DP Maintainers <malidp@foss.arm.com>
1438 T: git git://anongit.freedesktop.org/drm/drm-misc
1439 F: Documentation/devicetree/bindings/display/arm,komeda.txt
1440 F: Documentation/gpu/komeda-kms.rst
1441 F: drivers/gpu/drm/arm/display/include/
1442 F: drivers/gpu/drm/arm/display/komeda/
1444 ARM MALI PANFROST DRM DRIVER
1445 M: Rob Herring <robh@kernel.org>
1446 M: Tomeu Vizoso <tomeu.vizoso@collabora.com>
1447 R: Steven Price <steven.price@arm.com>
1448 R: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1449 L: dri-devel@lists.freedesktop.org
1451 T: git git://anongit.freedesktop.org/drm/drm-misc
1452 F: drivers/gpu/drm/panfrost/
1453 F: include/uapi/drm/panfrost_drm.h
1455 ARM MALI-DP DRM DRIVER
1456 M: Liviu Dudau <liviu.dudau@arm.com>
1457 M: Brian Starkey <brian.starkey@arm.com>
1458 L: Mali DP Maintainers <malidp@foss.arm.com>
1460 T: git git://anongit.freedesktop.org/drm/drm-misc
1461 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1462 F: Documentation/gpu/afbc.rst
1463 F: drivers/gpu/drm/arm/
1465 ARM MFM AND FLOPPY DRIVERS
1466 M: Ian Molton <spyro@f2s.com>
1468 F: arch/arm/include/asm/floppy.h
1469 F: arch/arm/mach-rpc/floppydma.S
1471 ARM PMU PROFILING AND DEBUGGING
1472 M: Will Deacon <will@kernel.org>
1473 M: Mark Rutland <mark.rutland@arm.com>
1474 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1476 F: Documentation/devicetree/bindings/arm/pmu.yaml
1477 F: Documentation/devicetree/bindings/perf/
1478 F: arch/arm*/include/asm/hw_breakpoint.h
1479 F: arch/arm*/include/asm/perf_event.h
1480 F: arch/arm*/kernel/hw_breakpoint.c
1481 F: arch/arm*/kernel/perf_*
1483 F: include/linux/perf/arm_pmu.h
1486 M: Russell King <linux@armlinux.org.uk>
1487 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1489 W: http://www.armlinux.org.uk/
1490 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1492 X: arch/arm/boot/dts/
1494 ARM PRIMECELL AACI PL041 DRIVER
1495 M: Russell King <linux@armlinux.org.uk>
1499 ARM PRIMECELL BUS SUPPORT
1500 M: Russell King <linux@armlinux.org.uk>
1503 F: include/linux/amba/bus.h
1505 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1506 M: Miquel Raynal <miquel.raynal@bootlin.com>
1507 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1508 L: linux-mtd@lists.infradead.org
1510 F: Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1511 F: drivers/mtd/nand/raw/pl35x-nand-controller.c
1513 ARM PRIMECELL PL35X SMC DRIVER
1514 M: Miquel Raynal <miquel.raynal@bootlin.com>
1515 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1516 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1518 F: Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1519 F: drivers/memory/pl353-smc.c
1521 ARM PRIMECELL CLCD PL110 DRIVER
1522 M: Russell King <linux@armlinux.org.uk>
1524 F: drivers/video/fbdev/amba-clcd.*
1526 ARM PRIMECELL KMI PL050 DRIVER
1527 M: Russell King <linux@armlinux.org.uk>
1529 F: drivers/input/serio/ambakmi.*
1530 F: include/linux/amba/kmi.h
1532 ARM PRIMECELL MMCI PL180/1 DRIVER
1533 M: Russell King <linux@armlinux.org.uk>
1535 F: drivers/mmc/host/mmci.*
1536 F: include/linux/amba/mmci.h
1538 ARM PRIMECELL SSP PL022 SPI DRIVER
1539 M: Linus Walleij <linus.walleij@linaro.org>
1540 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 F: Documentation/devicetree/bindings/spi/spi-pl022.yaml
1543 F: drivers/spi/spi-pl022.c
1545 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1546 M: Russell King <linux@armlinux.org.uk>
1548 F: drivers/tty/serial/amba-pl01*.c
1549 F: include/linux/amba/serial.h
1551 ARM PRIMECELL VIC PL190/PL192 DRIVER
1552 M: Linus Walleij <linus.walleij@linaro.org>
1553 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555 F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1556 F: drivers/irqchip/irq-vic.c
1558 ARM SMC WATCHDOG DRIVER
1559 M: Julius Werner <jwerner@chromium.org>
1560 R: Evan Benn <evanbenn@chromium.org>
1562 F: Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1563 F: drivers/watchdog/arm_smc_wdt.c
1566 M: Will Deacon <will@kernel.org>
1567 R: Robin Murphy <robin.murphy@arm.com>
1568 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570 F: Documentation/devicetree/bindings/iommu/arm,smmu*
1571 F: drivers/iommu/arm/
1572 F: drivers/iommu/io-pgtable-arm*
1574 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1575 M: Arnd Bergmann <arnd@arndb.de>
1576 M: Olof Johansson <olof@lixom.net>
1578 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1580 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1581 F: arch/arm/boot/dts/Makefile
1582 F: arch/arm64/boot/dts/Makefile
1584 ARM SUB-ARCHITECTURES
1585 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1587 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1591 ARM/ACTIONS SEMI ARCHITECTURE
1592 M: Andreas Färber <afaerber@suse.de>
1593 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1594 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 L: linux-actions@lists.infradead.org (moderated for non-subscribers)
1597 F: Documentation/devicetree/bindings/arm/actions.yaml
1598 F: Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1599 F: Documentation/devicetree/bindings/dma/owl-dma.yaml
1600 F: Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1601 F: Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1602 F: Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1603 F: Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1604 F: Documentation/devicetree/bindings/pinctrl/actions,*
1605 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1606 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1607 F: arch/arm/boot/dts/owl-*
1608 F: arch/arm/mach-actions/
1609 F: arch/arm64/boot/dts/actions/
1610 F: drivers/clk/actions/
1611 F: drivers/clocksource/timer-owl*
1612 F: drivers/dma/owl-dma.c
1613 F: drivers/i2c/busses/i2c-owl.c
1614 F: drivers/irqchip/irq-owl-sirq.c
1615 F: drivers/mmc/host/owl-mmc.c
1616 F: drivers/net/ethernet/actions/
1617 F: drivers/pinctrl/actions/*
1618 F: drivers/soc/actions/
1619 F: include/dt-bindings/power/owl-*
1620 F: include/dt-bindings/reset/actions,*
1621 F: include/linux/soc/actions/
1624 ARM/ADS SPHERE MACHINE SUPPORT
1625 M: Lennert Buytenhek <kernel@wantstofly.org>
1626 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 ARM/AFEB9260 MACHINE SUPPORT
1630 M: Sergey Lapin <slapin@ossfans.org>
1631 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1634 ARM/AJECO 1ARM MACHINE SUPPORT
1635 M: Lennert Buytenhek <kernel@wantstofly.org>
1636 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 ARM/Allwinner SoC Clock Support
1640 M: Emilio López <emilio@elopez.com.ar>
1642 F: drivers/clk/sunxi/
1644 ARM/Allwinner sunXi SoC support
1645 M: Maxime Ripard <mripard@kernel.org>
1646 M: Chen-Yu Tsai <wens@csie.org>
1647 R: Jernej Skrabec <jernej.skrabec@gmail.com>
1648 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1651 L: linux-sunxi@lists.linux.dev
1652 F: arch/arm/mach-sunxi/
1653 F: arch/arm64/boot/dts/allwinner/
1654 F: drivers/clk/sunxi-ng/
1655 F: drivers/pinctrl/sunxi/
1656 F: drivers/soc/sunxi/
1661 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1662 M: Neil Armstrong <narmstrong@baylibre.com>
1663 M: Jerome Brunet <jbrunet@baylibre.com>
1664 L: linux-amlogic@lists.infradead.org
1666 F: Documentation/devicetree/bindings/clock/amlogic*
1667 F: drivers/clk/meson/
1668 F: include/dt-bindings/clock/gxbb*
1669 F: include/dt-bindings/clock/meson*
1671 ARM/Amlogic Meson SoC Crypto Drivers
1672 M: Corentin Labbe <clabbe@baylibre.com>
1673 L: linux-crypto@vger.kernel.org
1674 L: linux-amlogic@lists.infradead.org
1676 F: Documentation/devicetree/bindings/crypto/amlogic*
1677 F: drivers/crypto/amlogic/
1679 ARM/Amlogic Meson SoC Sound Drivers
1680 M: Jerome Brunet <jbrunet@baylibre.com>
1681 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1683 F: Documentation/devicetree/bindings/sound/amlogic*
1686 ARM/Amlogic Meson SoC support
1687 M: Neil Armstrong <narmstrong@baylibre.com>
1688 M: Kevin Hilman <khilman@baylibre.com>
1689 R: Jerome Brunet <jbrunet@baylibre.com>
1690 R: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1691 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692 L: linux-amlogic@lists.infradead.org
1694 W: http://linux-meson.com/
1695 F: arch/arm/boot/dts/meson*
1696 F: arch/arm/mach-meson/
1697 F: arch/arm64/boot/dts/amlogic/
1698 F: drivers/mmc/host/meson*
1699 F: drivers/pinctrl/meson/
1700 F: drivers/rtc/rtc-meson*
1701 F: drivers/soc/amlogic/
1704 ARM/Annapurna Labs ALPINE ARCHITECTURE
1705 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1706 M: Antoine Tenart <atenart@kernel.org>
1707 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1709 F: arch/arm/boot/dts/alpine*
1710 F: arch/arm/mach-alpine/
1711 F: arch/arm64/boot/dts/amazon/
1712 F: drivers/*/*alpine*
1714 ARM/APPLE MACHINE SUPPORT
1715 M: Hector Martin <marcan@marcan.st>
1716 M: Sven Peter <sven@svenpeter.dev>
1717 R: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1718 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1720 W: https://asahilinux.org
1721 B: https://github.com/AsahiLinux/linux/issues
1722 C: irc://irc.oftc.net/asahi-dev
1723 T: git https://github.com/AsahiLinux/linux.git
1724 F: Documentation/devicetree/bindings/arm/apple.yaml
1725 F: Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1726 F: Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1727 F: arch/arm64/boot/dts/apple/
1728 F: drivers/irqchip/irq-apple-aic.c
1729 F: include/dt-bindings/interrupt-controller/apple-aic.h
1730 F: include/dt-bindings/pinctrl/apple.h
1732 ARM/ARTPEC MACHINE SUPPORT
1733 M: Jesper Nilsson <jesper.nilsson@axis.com>
1734 M: Lars Persson <lars.persson@axis.com>
1735 L: linux-arm-kernel@axis.com
1737 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1738 F: arch/arm/boot/dts/artpec6*
1739 F: arch/arm/mach-artpec
1741 F: drivers/crypto/axis
1742 F: drivers/mmc/host/usdhi6rol0.c
1743 F: drivers/pinctrl/pinctrl-artpec*
1745 ARM/ASPEED I2C DRIVER
1746 M: Brendan Higgins <brendanhiggins@google.com>
1747 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1748 R: Joel Stanley <joel@jms.id.au>
1749 L: linux-i2c@vger.kernel.org
1750 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1752 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1753 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1754 F: drivers/i2c/busses/i2c-aspeed.c
1755 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1757 ARM/ASPEED MACHINE SUPPORT
1758 M: Joel Stanley <joel@jms.id.au>
1759 R: Andrew Jeffery <andrew@aj.id.au>
1760 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1763 Q: https://patchwork.ozlabs.org/project/linux-aspeed/list/
1764 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1765 F: arch/arm/boot/dts/aspeed-*
1766 F: arch/arm/mach-aspeed/
1769 ARM/BITMAIN ARCHITECTURE
1770 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1771 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1773 F: Documentation/devicetree/bindings/arm/bitmain.yaml
1774 F: Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1775 F: Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1776 F: arch/arm64/boot/dts/bitmain/
1777 F: drivers/clk/clk-bm1880.c
1778 F: drivers/pinctrl/pinctrl-bm1880.c
1780 ARM/CALXEDA HIGHBANK ARCHITECTURE
1781 M: Andre Przywara <andre.przywara@arm.com>
1782 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1784 F: arch/arm/boot/dts/ecx-*.dts*
1785 F: arch/arm/boot/dts/highbank.dts
1786 F: arch/arm/mach-highbank/
1788 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1789 M: Krzysztof Halasa <khalasa@piap.pl>
1791 F: arch/arm/mach-cns3xxx/
1793 ARM/CAVIUM THUNDER NETWORK DRIVER
1794 M: Sunil Goutham <sgoutham@marvell.com>
1795 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1797 F: drivers/net/ethernet/cavium/thunder/
1799 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1800 M: Lukasz Majewski <lukma@denx.de>
1801 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 F: arch/arm/mach-ep93xx/ts72xx.c
1805 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1806 M: Alexander Shiyan <shc_work@mail.ru>
1807 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1811 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1812 M: Lennert Buytenhek <kernel@wantstofly.org>
1813 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1817 M: Hartley Sweeten <hsweeten@visionengravers.com>
1818 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1819 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 F: arch/arm/mach-ep93xx/
1822 F: arch/arm/mach-ep93xx/include/mach/
1825 M: Russell King <linux@armlinux.org.uk>
1826 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1829 F: drivers/clk/clkdev.c
1831 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1832 M: Baruch Siach <baruch@tkos.co.il>
1833 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1835 F: arch/arm/boot/dts/cx92755*
1838 ARM/CONTEC MICRO9 MACHINE SUPPORT
1839 M: Hubert Feurstein <hubert.feurstein@contec.at>
1841 F: arch/arm/mach-ep93xx/micro9.c
1843 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1844 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1845 M: Suzuki K Poulose <suzuki.poulose@arm.com>
1846 R: Mike Leach <mike.leach@linaro.org>
1847 R: Leo Yan <leo.yan@linaro.org>
1848 L: coresight@lists.linaro.org (moderated for non-subscribers)
1849 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1851 T: git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1852 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1853 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1854 F: Documentation/devicetree/bindings/arm/coresight-cti.yaml
1855 F: Documentation/devicetree/bindings/arm/coresight.txt
1856 F: Documentation/devicetree/bindings/arm/ete.yaml
1857 F: Documentation/devicetree/bindings/arm/trbe.yaml
1858 F: Documentation/trace/coresight/*
1859 F: drivers/hwtracing/coresight/*
1860 F: include/dt-bindings/arm/coresight-cti-dt.h
1861 F: include/linux/coresight*
1862 F: tools/perf/arch/arm/util/auxtrace.c
1863 F: tools/perf/arch/arm/util/cs-etm.c
1864 F: tools/perf/arch/arm/util/cs-etm.h
1865 F: tools/perf/arch/arm/util/pmu.c
1866 F: tools/perf/util/cs-etm-decoder/*
1867 F: tools/perf/util/cs-etm.*
1869 ARM/CORGI MACHINE SUPPORT
1870 M: Richard Purdie <rpurdie@rpsys.net>
1873 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1874 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1875 M: Linus Walleij <linus.walleij@linaro.org>
1876 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1878 T: git git://github.com/ulli-kroll/linux.git
1879 F: Documentation/devicetree/bindings/arm/gemini.txt
1880 F: Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1881 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1882 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1883 F: arch/arm/boot/dts/gemini*
1884 F: arch/arm/mach-gemini/
1885 F: drivers/crypto/gemini/
1886 F: drivers/net/ethernet/cortina/
1887 F: drivers/pinctrl/pinctrl-gemini.c
1888 F: drivers/rtc/rtc-ftrtc010.c
1890 ARM/CZ.NIC TURRIS SUPPORT
1891 M: Marek Behún <kabel@kernel.org>
1893 W: https://www.turris.cz/
1894 F: Documentation/ABI/testing/debugfs-moxtet
1895 F: Documentation/ABI/testing/sysfs-bus-moxtet-devices
1896 F: Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1897 F: Documentation/devicetree/bindings/bus/moxtet.txt
1898 F: Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1899 F: Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1900 F: Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1901 F: Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1902 F: drivers/bus/moxtet.c
1903 F: drivers/firmware/turris-mox-rwtm.c
1904 F: drivers/leds/leds-turris-omnia.c
1905 F: drivers/mailbox/armada-37xx-rwtm-mailbox.c
1906 F: drivers/gpio/gpio-moxtet.c
1907 F: drivers/watchdog/armada_37xx_wdt.c
1908 F: include/dt-bindings/bus/moxtet.h
1909 F: include/linux/armada-37xx-rwtm-mailbox.h
1910 F: include/linux/moxtet.h
1912 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1913 M: Robert Jarzmik <robert.jarzmik@free.fr>
1914 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 F: arch/arm/mach-pxa/ezx.c
1918 ARM/FARADAY FA526 PORT
1919 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1920 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 T: git git://git.berlios.de/gemini-board
1923 F: arch/arm/mm/*-fa*
1925 ARM/FOOTBRIDGE ARCHITECTURE
1926 M: Russell King <linux@armlinux.org.uk>
1927 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929 W: http://www.armlinux.org.uk/
1930 F: arch/arm/include/asm/hardware/dec21285.h
1931 F: arch/arm/mach-footbridge/
1933 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1934 M: Shawn Guo <shawnguo@kernel.org>
1935 M: Sascha Hauer <s.hauer@pengutronix.de>
1936 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1937 R: Fabio Estevam <festevam@gmail.com>
1938 R: NXP Linux Team <linux-imx@nxp.com>
1939 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1941 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1942 X: drivers/media/i2c/
1946 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1947 M: Shawn Guo <shawnguo@kernel.org>
1948 M: Li Yang <leoyang.li@nxp.com>
1949 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1951 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1952 F: arch/arm/boot/dts/ls1021a*
1953 F: arch/arm64/boot/dts/freescale/fsl-*
1954 F: arch/arm64/boot/dts/freescale/qoriq-*
1956 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1957 M: Shawn Guo <shawnguo@kernel.org>
1958 M: Sascha Hauer <s.hauer@pengutronix.de>
1959 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1960 R: Stefan Agner <stefan@agner.ch>
1961 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1963 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1964 F: arch/arm/boot/dts/vf*
1965 F: arch/arm/mach-imx/*vf610*
1967 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1968 M: Lennert Buytenhek <kernel@wantstofly.org>
1969 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 ARM/GUMSTIX MACHINE SUPPORT
1973 M: Steve Sakoman <sakoman@gmail.com>
1974 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1978 M: Philipp Zabel <philipp.zabel@gmail.com>
1979 M: Paul Parsons <lost.distance@yahoo.com>
1980 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 F: arch/arm/mach-pxa/hx4700.c
1983 F: arch/arm/mach-pxa/include/mach/hx4700.h
1984 F: sound/soc/pxa/hx4700.c
1986 ARM/HISILICON SOC SUPPORT
1987 M: Wei Xu <xuwei5@hisilicon.com>
1988 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1990 W: http://www.hisilicon.com
1991 T: git git://github.com/hisilicon/linux-hisi.git
1992 F: arch/arm/boot/dts/hi3*
1993 F: arch/arm/boot/dts/hip*
1994 F: arch/arm/boot/dts/hisi*
1995 F: arch/arm/mach-hisi/
1996 F: arch/arm64/boot/dts/hisilicon/
1998 ARM/HP JORNADA 7XX MACHINE SUPPORT
1999 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
2002 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2003 F: arch/arm/mach-sa1100/include/mach/jornada720.h
2004 F: arch/arm/mach-sa1100/jornada720.c
2006 ARM/IGEP MACHINE SUPPORT
2007 M: Enric Balletbo i Serra <eballetbo@gmail.com>
2008 M: Javier Martinez Canillas <javier@dowhile0.org>
2009 L: linux-omap@vger.kernel.org
2010 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2012 F: arch/arm/boot/dts/omap3-igep*
2014 ARM/INCOME PXA270 SUPPORT
2015 M: Marek Vasut <marek.vasut@gmail.com>
2016 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 F: arch/arm/mach-pxa/colibri-pxa270-income.c
2020 ARM/INTEL IOP32X ARM ARCHITECTURE
2021 M: Lennert Buytenhek <kernel@wantstofly.org>
2022 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2025 ARM/INTEL IQ81342EX MACHINE SUPPORT
2026 M: Lennert Buytenhek <kernel@wantstofly.org>
2027 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 ARM/INTEL IXDP2850 MACHINE SUPPORT
2031 M: Lennert Buytenhek <kernel@wantstofly.org>
2032 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 ARM/INTEL IXP4XX ARM ARCHITECTURE
2036 M: Linus Walleij <linusw@kernel.org>
2037 M: Imre Kaloz <kaloz@openwrt.org>
2038 M: Krzysztof Halasa <khalasa@piap.pl>
2039 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 F: Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2042 F: Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2043 F: Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2044 F: Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2045 F: Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2046 F: arch/arm/mach-ixp4xx/
2047 F: drivers/bus/intel-ixp4xx-eb.c
2048 F: drivers/clocksource/timer-ixp4xx.c
2049 F: drivers/crypto/ixp4xx_crypto.c
2050 F: drivers/gpio/gpio-ixp4xx.c
2051 F: drivers/irqchip/irq-ixp4xx.c
2052 F: include/linux/irqchip/irq-ixp4xx.h
2053 F: include/linux/platform_data/timer-ixp4xx.h
2055 ARM/INTEL KEEMBAY ARCHITECTURE
2056 M: Paul J. Murphy <paul.j.murphy@intel.com>
2057 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2059 F: Documentation/devicetree/bindings/arm/intel,keembay.yaml
2060 F: arch/arm64/boot/dts/intel/keembay-evm.dts
2061 F: arch/arm64/boot/dts/intel/keembay-soc.dtsi
2063 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2064 M: Jonathan Cameron <jic23@cam.ac.uk>
2065 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 F: arch/arm/mach-pxa/stargate2.c
2068 F: drivers/pcmcia/pxa2xx_stargate2.c
2070 ARM/INTEL XSC3 (MANZANO) ARM CORE
2071 M: Lennert Buytenhek <kernel@wantstofly.org>
2072 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2075 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2076 M: Lennert Buytenhek <kernel@wantstofly.org>
2077 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 ARM/LG1K ARCHITECTURE
2081 M: Chanho Min <chanho.min@lge.com>
2082 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 F: arch/arm64/boot/dts/lg/
2086 ARM/LOGICPD PXA270 MACHINE SUPPORT
2087 M: Lennert Buytenhek <kernel@wantstofly.org>
2088 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 ARM/LPC18XX ARCHITECTURE
2092 M: Vladimir Zapolskiy <vz@mleia.com>
2093 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2095 F: Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2096 F: arch/arm/boot/dts/lpc43*
2097 F: drivers/i2c/busses/i2c-lpc2k.c
2098 F: drivers/memory/pl172.c
2099 F: drivers/mtd/spi-nor/controllers/nxp-spifi.c
2100 F: drivers/rtc/rtc-lpc24xx.c
2103 ARM/LPC32XX SOC SUPPORT
2104 M: Vladimir Zapolskiy <vz@mleia.com>
2105 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
2108 F: Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2109 F: arch/arm/boot/dts/lpc32*
2110 F: arch/arm/mach-lpc32xx/
2111 F: drivers/i2c/busses/i2c-pnx.c
2112 F: drivers/net/ethernet/nxp/lpc_eth.c
2113 F: drivers/usb/host/ohci-nxp.c
2114 F: drivers/watchdog/pnx4008_wdt.c
2117 ARM/MAGICIAN MACHINE SUPPORT
2118 M: Philipp Zabel <philipp.zabel@gmail.com>
2121 ARM/Marvell Dove/MV78xx0/Orion SOC support
2122 M: Andrew Lunn <andrew@lunn.ch>
2123 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2124 M: Gregory Clement <gregory.clement@bootlin.com>
2125 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2127 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2128 F: Documentation/devicetree/bindings/soc/dove/
2129 F: arch/arm/boot/dts/dove*
2130 F: arch/arm/boot/dts/orion5x*
2131 F: arch/arm/mach-dove/
2132 F: arch/arm/mach-mv78xx0/
2133 F: arch/arm/mach-orion5x/
2134 F: arch/arm/plat-orion/
2135 F: drivers/soc/dove/
2137 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2138 M: Andrew Lunn <andrew@lunn.ch>
2139 M: Gregory Clement <gregory.clement@bootlin.com>
2140 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2141 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2143 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2144 F: arch/arm/boot/dts/armada*
2145 F: arch/arm/boot/dts/kirkwood*
2146 F: arch/arm/configs/mvebu_*_defconfig
2147 F: arch/arm/mach-mvebu/
2148 F: arch/arm64/boot/dts/marvell/armada*
2149 F: arch/arm64/boot/dts/marvell/cn913*
2150 F: drivers/cpufreq/armada-37xx-cpufreq.c
2151 F: drivers/cpufreq/armada-8k-cpufreq.c
2152 F: drivers/cpufreq/mvebu-cpufreq.c
2153 F: drivers/irqchip/irq-armada-370-xp.c
2154 F: drivers/irqchip/irq-mvebu-*
2155 F: drivers/pinctrl/mvebu/
2156 F: drivers/rtc/rtc-armada38x.c
2158 ARM/Mediatek RTC DRIVER
2159 M: Eddie Huang <eddie.huang@mediatek.com>
2160 M: Sean Wang <sean.wang@mediatek.com>
2161 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2162 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2164 F: Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2165 F: Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2166 F: drivers/rtc/rtc-mt2712.c
2167 F: drivers/rtc/rtc-mt6397.c
2168 F: drivers/rtc/rtc-mt7622.c
2170 ARM/Mediatek SoC support
2171 M: Matthias Brugger <matthias.bgg@gmail.com>
2172 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2173 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2175 W: https://mtk.wiki.kernel.org/
2176 C: irc://chat.freenode.net/linux-mediatek
2177 F: arch/arm/boot/dts/mt6*
2178 F: arch/arm/boot/dts/mt7*
2179 F: arch/arm/boot/dts/mt8*
2180 F: arch/arm/mach-mediatek/
2181 F: arch/arm64/boot/dts/mediatek/
2182 F: drivers/soc/mediatek/
2187 ARM/Mediatek USB3 PHY DRIVER
2188 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
2189 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2190 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2192 F: Documentation/devicetree/bindings/phy/mediatek,*
2193 F: drivers/phy/mediatek/
2195 ARM/Microchip (AT91) SoC support
2196 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2197 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
2198 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2199 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2201 W: http://www.linux4sam.org
2202 T: git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2203 F: arch/arm/boot/dts/at91*.dts
2204 F: arch/arm/boot/dts/at91*.dtsi
2205 F: arch/arm/boot/dts/sama*.dts
2206 F: arch/arm/boot/dts/sama*.dtsi
2207 F: arch/arm/include/debug/at91.S
2208 F: arch/arm/mach-at91/
2209 F: drivers/memory/atmel*
2210 F: drivers/watchdog/sama5d4_wdt.c
2211 F: include/soc/at91/
2212 X: drivers/input/touchscreen/atmel_mxt_ts.c
2213 X: drivers/net/wireless/atmel/
2217 ARM/Microchip Sparx5 SoC support
2218 M: Lars Povlsen <lars.povlsen@microchip.com>
2219 M: Steen Hegelund <Steen.Hegelund@microchip.com>
2220 M: UNGLinuxDriver@microchip.com
2221 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2223 T: git git://github.com/microchip-ung/linux-upstream.git
2224 F: arch/arm64/boot/dts/microchip/
2225 F: drivers/pinctrl/pinctrl-microchip-sgpio.c
2228 Microchip Timer Counter Block (TCB) Capture Driver
2229 M: Kamel Bouhara <kamel.bouhara@bootlin.com>
2230 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2231 L: linux-iio@vger.kernel.org
2233 F: drivers/counter/microchip-tcb-capture.c
2235 ARM/MIOA701 MACHINE SUPPORT
2236 M: Robert Jarzmik <robert.jarzmik@free.fr>
2237 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2239 F: arch/arm/mach-pxa/mioa701.c
2241 ARM/MStar/Sigmastar Armv7 SoC support
2242 M: Daniel Palmer <daniel@thingy.jp>
2243 M: Romain Perier <romain.perier@gmail.com>
2244 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2246 W: http://linux-chenxing.org/
2247 T: git git://github.com/linux-chenxing/linux.git
2248 F: Documentation/devicetree/bindings/arm/mstar/*
2249 F: Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2250 F: Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2251 F: arch/arm/boot/dts/mstar-*
2252 F: arch/arm/mach-mstar/
2253 F: drivers/clk/mstar/
2254 F: drivers/gpio/gpio-msc313.c
2255 F: drivers/watchdog/msc313e_wdt.c
2256 F: include/dt-bindings/clock/mstar-*
2257 F: include/dt-bindings/gpio/msc313-gpio.h
2259 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2260 M: Michael Petchkovsky <mkpetch@internode.on.net>
2263 ARM/NOMADIK/Ux500 ARCHITECTURES
2264 M: Linus Walleij <linus.walleij@linaro.org>
2265 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2267 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2268 F: Documentation/devicetree/bindings/arm/ste-*
2269 F: Documentation/devicetree/bindings/arm/ux500.yaml
2270 F: Documentation/devicetree/bindings/arm/ux500/
2271 F: Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2272 F: arch/arm/boot/dts/ste-*
2273 F: arch/arm/mach-nomadik/
2274 F: arch/arm/mach-ux500/
2275 F: drivers/clk/clk-nomadik.c
2276 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2277 F: drivers/dma/ste_dma40*
2278 F: drivers/hwspinlock/u8500_hsem.c
2279 F: drivers/i2c/busses/i2c-nomadik.c
2280 F: drivers/iio/adc/ab8500-gpadc.c
2281 F: drivers/mfd/ab8500*
2282 F: drivers/mfd/abx500*
2283 F: drivers/mfd/db8500*
2284 F: drivers/pinctrl/nomadik/
2285 F: drivers/rtc/rtc-ab8500.c
2286 F: drivers/rtc/rtc-pl031.c
2287 F: drivers/soc/ux500/
2289 ARM/NUVOTON NPCM ARCHITECTURE
2290 M: Avi Fishman <avifishman70@gmail.com>
2291 M: Tomer Maimon <tmaimon77@gmail.com>
2292 M: Tali Perry <tali.perry1@gmail.com>
2293 R: Patrick Venture <venture@google.com>
2294 R: Nancy Yuen <yuenn@google.com>
2295 R: Benjamin Fair <benjaminfair@google.com>
2296 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2298 F: Documentation/devicetree/bindings/*/*/*npcm*
2299 F: Documentation/devicetree/bindings/*/*npcm*
2300 F: arch/arm/boot/dts/nuvoton-npcm*
2301 F: arch/arm/mach-npcm/
2303 F: drivers/*/*/*npcm*
2304 F: include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2306 ARM/NUVOTON WPCM450 ARCHITECTURE
2307 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2308 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2310 F: Documentation/devicetree/bindings/*/*wpcm*
2311 F: arch/arm/boot/dts/nuvoton-wpcm450*
2312 F: arch/arm/mach-npcm/wpcm450.c
2315 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2316 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
2318 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
2319 F: arch/arm/mach-s3c/gta02.h
2320 F: arch/arm/mach-s3c/mach-gta02.c
2322 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2323 M: Alexander Clouter <alex@digriz.org.uk>
2324 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2326 W: http://www.digriz.org.uk/ts78xx/kernel
2327 F: arch/arm/mach-orion5x/ts78xx-*
2329 ARM/OXNAS platform support
2330 M: Neil Armstrong <narmstrong@baylibre.com>
2331 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2332 L: linux-oxnas@groups.io (moderated for non-subscribers)
2334 F: arch/arm/boot/dts/ox8*.dts*
2335 F: arch/arm/mach-oxnas/
2336 F: drivers/power/reset/oxnas-restart.c
2339 ARM/PALM TREO SUPPORT
2340 M: Tomas Cech <sleep_walker@suse.com>
2341 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2343 W: http://hackndev.com
2344 F: arch/arm/mach-pxa/palmtreo.*
2346 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2347 M: Marek Vasut <marek.vasut@gmail.com>
2348 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 W: http://hackndev.com
2351 F: arch/arm/mach-pxa/include/mach/palmld.h
2352 F: arch/arm/mach-pxa/include/mach/palmtc.h
2353 F: arch/arm/mach-pxa/include/mach/palmtx.h
2354 F: arch/arm/mach-pxa/palmld.c
2355 F: arch/arm/mach-pxa/palmt5.*
2356 F: arch/arm/mach-pxa/palmtc.c
2357 F: arch/arm/mach-pxa/palmte2.*
2358 F: arch/arm/mach-pxa/palmtx.c
2361 M: Sergey Lapin <slapin@ossfans.org>
2362 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2364 W: http://hackndev.com
2365 F: arch/arm/mach-pxa/palmz72.*
2368 M: Peter Chubb <pleb@gelato.unsw.edu.au>
2370 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2372 ARM/PT DIGITAL BOARD PORT
2373 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2374 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2376 W: http://www.armlinux.org.uk/
2378 ARM/QUALCOMM SUPPORT
2379 M: Andy Gross <agross@kernel.org>
2380 M: Bjorn Andersson <bjorn.andersson@linaro.org>
2381 L: linux-arm-msm@vger.kernel.org
2383 T: git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2384 F: Documentation/devicetree/bindings/*/qcom*
2385 F: Documentation/devicetree/bindings/soc/qcom/
2386 F: arch/arm/boot/dts/qcom-*.dts
2387 F: arch/arm/boot/dts/qcom-*.dtsi
2388 F: arch/arm/mach-qcom/
2389 F: arch/arm64/boot/dts/qcom/
2390 F: drivers/*/*/qcom*
2391 F: drivers/*/*/qcom/
2392 F: drivers/*/pm8???-*
2395 F: drivers/bluetooth/btqcomsmd.c
2396 F: drivers/clocksource/timer-qcom.c
2397 F: drivers/cpuidle/cpuidle-qcom-spm.c
2398 F: drivers/extcon/extcon-qcom*
2399 F: drivers/i2c/busses/i2c-qcom-geni.c
2400 F: drivers/i2c/busses/i2c-qup.c
2401 F: drivers/iommu/msm*
2402 F: drivers/mfd/ssbi.c
2403 F: drivers/mmc/host/mmci_qcom*
2404 F: drivers/mmc/host/sdhci-msm.c
2405 F: drivers/pci/controller/dwc/pcie-qcom.c
2406 F: drivers/phy/qualcomm/
2407 F: drivers/power/*/msm*
2408 F: drivers/reset/reset-qcom-*
2409 F: drivers/scsi/ufs/ufs-qcom*
2410 F: drivers/spi/spi-geni-qcom.c
2411 F: drivers/spi/spi-qcom-qspi.c
2412 F: drivers/spi/spi-qup.c
2413 F: drivers/tty/serial/msm_serial.c
2414 F: drivers/usb/dwc3/dwc3-qcom.c
2415 F: include/dt-bindings/*/qcom*
2416 F: include/linux/*/qcom*
2417 F: include/linux/soc/qcom/
2419 ARM/RADISYS ENP2611 MACHINE SUPPORT
2420 M: Lennert Buytenhek <kernel@wantstofly.org>
2421 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2424 ARM/RDA MICRO ARCHITECTURE
2425 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2426 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2427 L: linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2429 F: Documentation/devicetree/bindings/arm/rda.yaml
2430 F: Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2431 F: Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2432 F: Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2433 F: Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2434 F: arch/arm/boot/dts/rda8810pl-*
2435 F: drivers/clocksource/timer-rda.c
2436 F: drivers/gpio/gpio-rda.c
2437 F: drivers/irqchip/irq-rda-intc.c
2438 F: drivers/tty/serial/rda-uart.c
2440 ARM/REALTEK ARCHITECTURE
2441 M: Andreas Färber <afaerber@suse.de>
2442 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2443 L: linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2445 F: Documentation/devicetree/bindings/arm/realtek.yaml
2446 F: arch/arm/boot/dts/rtd*
2447 F: arch/arm/mach-realtek/
2448 F: arch/arm64/boot/dts/realtek/
2450 ARM/RENESAS ARM64 ARCHITECTURE
2451 M: Geert Uytterhoeven <geert+renesas@glider.be>
2452 M: Magnus Damm <magnus.damm@gmail.com>
2453 L: linux-renesas-soc@vger.kernel.org
2455 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2456 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2457 F: Documentation/devicetree/bindings/arm/renesas.yaml
2458 F: arch/arm64/boot/dts/renesas/
2459 F: drivers/soc/renesas/
2460 F: include/linux/soc/renesas/
2462 ARM/RISCPC ARCHITECTURE
2463 M: Russell King <linux@armlinux.org.uk>
2464 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2466 W: http://www.armlinux.org.uk/
2467 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
2468 F: arch/arm/include/asm/hardware/ioc.h
2469 F: arch/arm/include/asm/hardware/iomd.h
2470 F: arch/arm/include/asm/hardware/memc.h
2471 F: arch/arm/mach-rpc/
2472 F: drivers/net/ethernet/8390/etherh.c
2473 F: drivers/net/ethernet/i825xx/ether1*
2474 F: drivers/net/ethernet/seeq/ether3*
2475 F: drivers/scsi/arm/
2477 ARM/Rockchip SoC support
2478 M: Heiko Stuebner <heiko@sntech.de>
2479 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2480 L: linux-rockchip@lists.infradead.org
2482 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2483 F: Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2484 F: Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2485 F: Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2486 F: arch/arm/boot/dts/rk3*
2487 F: arch/arm/boot/dts/rv1108*
2488 F: arch/arm/mach-rockchip/
2489 F: drivers/*/*/*rockchip*
2490 F: drivers/*/*rockchip*
2491 F: drivers/clk/rockchip/
2492 F: drivers/i2c/busses/i2c-rk3x.c
2493 F: sound/soc/rockchip/
2496 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2497 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2498 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2499 L: linux-samsung-soc@vger.kernel.org
2501 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
2502 F: Documentation/arm/samsung/
2503 F: Documentation/devicetree/bindings/arm/samsung/
2504 F: Documentation/devicetree/bindings/power/pd-samsung.yaml
2505 F: arch/arm/boot/dts/exynos*
2506 F: arch/arm/boot/dts/s3c*
2507 F: arch/arm/boot/dts/s5p*
2508 F: arch/arm/mach-exynos*/
2509 F: arch/arm/mach-s3c/
2510 F: arch/arm/mach-s5p*/
2511 F: arch/arm64/boot/dts/exynos/
2512 F: drivers/*/*/*s3c24*
2513 F: drivers/*/*s3c24*
2514 F: drivers/*/*s3c64xx*
2515 F: drivers/*/*s5pv210*
2516 F: drivers/clocksource/samsung_pwm_timer.c
2517 F: drivers/memory/samsung/
2518 F: drivers/pwm/pwm-samsung.c
2519 F: drivers/soc/samsung/
2520 F: drivers/tty/serial/samsung*
2521 F: include/clocksource/samsung_pwm.h
2522 F: include/linux/platform_data/*s3c*
2523 F: include/linux/serial_s3c.h
2524 F: include/linux/soc/samsung/
2530 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2531 M: Andrzej Hajda <a.hajda@samsung.com>
2532 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2533 L: linux-media@vger.kernel.org
2535 F: drivers/media/platform/s5p-g2d/
2537 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2538 M: Marek Szyprowski <m.szyprowski@samsung.com>
2539 L: linux-samsung-soc@vger.kernel.org
2540 L: linux-media@vger.kernel.org
2542 F: Documentation/devicetree/bindings/media/s5p-cec.txt
2543 F: drivers/media/cec/platform/s5p/
2545 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2546 M: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2547 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
2548 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
2549 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2550 L: linux-media@vger.kernel.org
2552 F: drivers/media/platform/s5p-jpeg/
2554 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2555 M: Andrzej Hajda <a.hajda@samsung.com>
2556 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2557 L: linux-media@vger.kernel.org
2559 F: drivers/media/platform/s5p-mfc/
2561 ARM/SHMOBILE ARM ARCHITECTURE
2562 M: Geert Uytterhoeven <geert+renesas@glider.be>
2563 M: Magnus Damm <magnus.damm@gmail.com>
2564 L: linux-renesas-soc@vger.kernel.org
2566 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2567 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2568 F: Documentation/devicetree/bindings/arm/renesas.yaml
2569 F: arch/arm/boot/dts/emev2*
2570 F: arch/arm/boot/dts/gr-peach*
2571 F: arch/arm/boot/dts/iwg20d-q7*
2572 F: arch/arm/boot/dts/r7s*
2573 F: arch/arm/boot/dts/r8a*
2574 F: arch/arm/boot/dts/r9a*
2575 F: arch/arm/boot/dts/sh*
2576 F: arch/arm/configs/shmobile_defconfig
2577 F: arch/arm/include/debug/renesas-scif.S
2578 F: arch/arm/mach-shmobile/
2579 F: drivers/soc/renesas/
2580 F: include/linux/soc/renesas/
2582 ARM/SOCFPGA ARCHITECTURE
2583 M: Dinh Nguyen <dinguyen@kernel.org>
2585 W: http://www.rocketboards.org
2586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2587 F: arch/arm/boot/dts/socfpga*
2588 F: arch/arm/configs/socfpga_defconfig
2589 F: arch/arm/mach-socfpga/
2590 F: arch/arm64/boot/dts/altera/
2591 F: arch/arm64/boot/dts/intel/
2593 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2594 M: Dinh Nguyen <dinguyen@kernel.org>
2596 F: drivers/clk/socfpga/
2598 ARM/SOCFPGA EDAC SUPPORT
2599 M: Dinh Nguyen <dinguyen@kernel.org>
2601 F: drivers/edac/altera_edac.[ch]
2603 ARM/SPREADTRUM SoC SUPPORT
2604 M: Orson Zhai <orsonzhai@gmail.com>
2605 M: Baolin Wang <baolin.wang7@gmail.com>
2606 M: Chunyan Zhang <zhang.lyra@gmail.com>
2608 F: arch/arm64/boot/dts/sprd
2613 ARM/STI ARCHITECTURE
2614 M: Patrice Chotard <patrice.chotard@foss.st.com>
2615 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2617 W: http://www.stlinux.com
2618 F: Documentation/devicetree/bindings/i2c/i2c-st.txt
2619 F: arch/arm/boot/dts/sti*
2620 F: arch/arm/mach-sti/
2621 F: drivers/ata/ahci_st.c
2622 F: drivers/char/hw_random/st-rng.c
2623 F: drivers/clocksource/arm_global_timer.c
2624 F: drivers/clocksource/clksrc_st_lpc.c
2625 F: drivers/cpufreq/sti-cpufreq.c
2626 F: drivers/dma/st_fdma*
2627 F: drivers/i2c/busses/i2c-st.c
2628 F: drivers/media/platform/sti/c8sectpfe/
2629 F: drivers/media/rc/st_rc.c
2630 F: drivers/mmc/host/sdhci-st.c
2631 F: drivers/phy/st/phy-miphy28lp.c
2632 F: drivers/phy/st/phy-stih407-usb.c
2633 F: drivers/pinctrl/pinctrl-st.c
2634 F: drivers/remoteproc/st_remoteproc.c
2635 F: drivers/remoteproc/st_slim_rproc.c
2636 F: drivers/reset/sti/
2637 F: drivers/rtc/rtc-st-lpc.c
2638 F: drivers/tty/serial/st-asc.c
2639 F: drivers/usb/dwc3/dwc3-st.c
2640 F: drivers/usb/host/ehci-st.c
2641 F: drivers/usb/host/ohci-st.c
2642 F: drivers/watchdog/st_lpc_wdt.c
2643 F: include/linux/remoteproc/st_slim_rproc.h
2645 ARM/STM32 ARCHITECTURE
2646 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
2647 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
2648 L: linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2649 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2651 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2652 F: arch/arm/boot/dts/stm32*
2653 F: arch/arm/mach-stm32/
2654 F: drivers/clocksource/armv7m_systick.c
2658 ARM/Synaptics SoC support
2659 M: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2660 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2661 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2663 F: arch/arm/boot/dts/berlin*
2664 F: arch/arm/mach-berlin/
2665 F: arch/arm64/boot/dts/synaptics/
2667 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2668 M: Lennert Buytenhek <kernel@wantstofly.org>
2669 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2672 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2673 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
2674 L: linux-tegra@vger.kernel.org
2675 L: linux-media@vger.kernel.org
2677 F: Documentation/devicetree/bindings/media/tegra-cec.txt
2678 F: drivers/media/cec/platform/tegra/
2680 ARM/TETON BGA MACHINE SUPPORT
2681 M: "Mark F. Brown" <mark.brown314@gmail.com>
2682 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2686 M: Santosh Shilimkar <ssantosh@kernel.org>
2687 L: linux-kernel@vger.kernel.org
2689 F: drivers/memory/*emif*
2691 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2692 M: Santosh Shilimkar <ssantosh@kernel.org>
2693 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2695 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2696 F: arch/arm/boot/dts/keystone-*
2697 F: arch/arm/mach-keystone/
2699 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2700 M: Santosh Shilimkar <ssantosh@kernel.org>
2701 L: linux-kernel@vger.kernel.org
2703 F: drivers/clk/keystone/
2705 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2706 M: Santosh Shilimkar <ssantosh@kernel.org>
2707 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2708 L: linux-kernel@vger.kernel.org
2710 F: drivers/clocksource/timer-keystone.c
2712 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2713 M: Santosh Shilimkar <ssantosh@kernel.org>
2714 L: linux-kernel@vger.kernel.org
2716 F: drivers/power/reset/keystone-reset.c
2718 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2719 M: Nishanth Menon <nm@ti.com>
2720 M: Vignesh Raghavendra <vigneshr@ti.com>
2721 M: Tero Kristo <kristo@kernel.org>
2722 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2724 F: Documentation/devicetree/bindings/arm/ti/k3.yaml
2725 F: arch/arm64/boot/dts/ti/Makefile
2726 F: arch/arm64/boot/dts/ti/k3-*
2727 F: include/dt-bindings/pinctrl/k3.h
2729 ARM/THECUS N2100 MACHINE SUPPORT
2730 M: Lennert Buytenhek <kernel@wantstofly.org>
2731 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2734 ARM/TOSA MACHINE SUPPORT
2735 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2736 M: Dirk Opfer <dirk@opfer-online.de>
2739 ARM/TOSHIBA VISCONTI ARCHITECTURE
2740 M: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2741 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2743 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2744 F: Documentation/devicetree/bindings/arm/toshiba.yaml
2745 F: Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2746 F: Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2747 F: Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2748 F: Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2749 F: Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2750 F: arch/arm64/boot/dts/toshiba/
2751 F: drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2752 F: drivers/gpio/gpio-visconti.c
2753 F: drivers/pci/controller/dwc/pcie-visconti.c
2754 F: drivers/pinctrl/visconti/
2755 F: drivers/watchdog/visconti_wdt.c
2758 ARM/UNIPHIER ARCHITECTURE
2759 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2760 M: Masami Hiramatsu <mhiramat@kernel.org>
2761 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2763 F: Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2764 F: Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2765 F: Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2766 F: arch/arm/boot/dts/uniphier*
2767 F: arch/arm/include/asm/hardware/cache-uniphier.h
2768 F: arch/arm/mach-uniphier/
2769 F: arch/arm/mm/cache-uniphier.c
2770 F: arch/arm64/boot/dts/socionext/uniphier*
2771 F: drivers/bus/uniphier-system-bus.c
2772 F: drivers/clk/uniphier/
2773 F: drivers/dma/uniphier-mdmac.c
2774 F: drivers/gpio/gpio-uniphier.c
2775 F: drivers/i2c/busses/i2c-uniphier*
2776 F: drivers/irqchip/irq-uniphier-aidet.c
2777 F: drivers/mmc/host/uniphier-sd.c
2778 F: drivers/pinctrl/uniphier/
2779 F: drivers/reset/reset-uniphier.c
2780 F: drivers/tty/serial/8250/8250_uniphier.c
2783 ARM/VERSATILE EXPRESS PLATFORM
2784 M: Liviu Dudau <liviu.dudau@arm.com>
2785 M: Sudeep Holla <sudeep.holla@arm.com>
2786 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2787 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2791 F: arch/arm/boot/dts/vexpress*
2792 F: arch/arm/mach-vexpress/
2793 F: arch/arm64/boot/dts/arm/
2794 F: drivers/clk/versatile/clk-vexpress-osc.c
2795 F: drivers/clocksource/timer-versatile.c
2799 M: Russell King <linux@armlinux.org.uk>
2800 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2802 W: http://www.armlinux.org.uk/
2805 ARM/VOIPAC PXA270 SUPPORT
2806 M: Marek Vasut <marek.vasut@gmail.com>
2807 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2809 F: arch/arm/mach-pxa/include/mach/vpac270.h
2810 F: arch/arm/mach-pxa/vpac270.c
2812 ARM/VT8500 ARM ARCHITECTURE
2813 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2815 F: Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2816 F: arch/arm/mach-vt8500/
2817 F: drivers/clocksource/timer-vt8500.c
2818 F: drivers/i2c/busses/i2c-wmt.c
2819 F: drivers/mmc/host/wmt-sdmmc.c
2820 F: drivers/pwm/pwm-vt8500.c
2821 F: drivers/rtc/rtc-vt8500.c
2822 F: drivers/tty/serial/vt8500_serial.c
2823 F: drivers/usb/host/ehci-platform.c
2824 F: drivers/usb/host/uhci-platform.c
2825 F: drivers/video/fbdev/vt8500lcdfb.*
2826 F: drivers/video/fbdev/wm8505fb*
2827 F: drivers/video/fbdev/wmt_ge_rops.*
2829 ARM/ZIPIT Z2 SUPPORT
2830 M: Marek Vasut <marek.vasut@gmail.com>
2831 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2833 F: arch/arm/mach-pxa/include/mach/z2.h
2834 F: arch/arm/mach-pxa/z2.c
2836 ARM/ZYNQ ARCHITECTURE
2837 M: Michal Simek <michal.simek@xilinx.com>
2838 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2840 W: http://wiki.xilinx.com
2841 T: git https://github.com/Xilinx/linux-xlnx.git
2842 F: Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2843 F: Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2844 F: Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2845 F: arch/arm/mach-zynq/
2846 F: drivers/clocksource/timer-cadence-ttc.c
2847 F: drivers/cpuidle/cpuidle-zynq.c
2848 F: drivers/edac/synopsys_edac.c
2849 F: drivers/i2c/busses/i2c-cadence.c
2850 F: drivers/i2c/busses/i2c-xiic.c
2851 F: drivers/mmc/host/sdhci-of-arasan.c
2855 ARM64 PORT (AARCH64 ARCHITECTURE)
2856 M: Catalin Marinas <catalin.marinas@arm.com>
2857 M: Will Deacon <will@kernel.org>
2858 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2860 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2861 F: Documentation/arm64/
2863 F: tools/testing/selftests/arm64/
2864 X: arch/arm64/boot/dts/
2866 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2867 M: George McCollister <george.mccollister@gmail.com>
2868 L: netdev@vger.kernel.org
2870 F: Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2871 F: drivers/net/dsa/xrs700x/*
2872 F: net/dsa/tag_xrs700x.c
2874 AS3645A LED FLASH CONTROLLER DRIVER
2875 M: Sakari Ailus <sakari.ailus@iki.fi>
2876 L: linux-leds@vger.kernel.org
2878 F: drivers/leds/flash/leds-as3645a.c
2880 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2881 M: Tianshu Qiu <tian.shu.qiu@intel.com>
2882 L: linux-media@vger.kernel.org
2884 T: git git://linuxtv.org/media_tree.git
2885 F: Documentation/devicetree/bindings/media/i2c/ak7375.txt
2886 F: drivers/media/i2c/ak7375.c
2888 ASAHI KASEI AK8974 DRIVER
2889 M: Linus Walleij <linus.walleij@linaro.org>
2890 L: linux-iio@vger.kernel.org
2892 W: http://www.akm.com/
2893 F: drivers/iio/magnetometer/ak8974.c
2895 ASC7621 HARDWARE MONITOR DRIVER
2896 M: George Joseph <george.joseph@fairview5.com>
2897 L: linux-hwmon@vger.kernel.org
2899 F: Documentation/hwmon/asc7621.rst
2900 F: drivers/hwmon/asc7621.c
2902 ASPEED PINCTRL DRIVERS
2903 M: Andrew Jeffery <andrew@aj.id.au>
2904 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2905 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2906 L: linux-gpio@vger.kernel.org
2908 F: Documentation/devicetree/bindings/pinctrl/aspeed,*
2909 F: drivers/pinctrl/aspeed/
2911 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2912 M: Eddie James <eajames@linux.ibm.com>
2913 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2915 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2916 F: drivers/irqchip/irq-aspeed-scu-ic.c
2917 F: include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2919 ASPEED SD/MMC DRIVER
2920 M: Andrew Jeffery <andrew@aj.id.au>
2921 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2922 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2923 L: linux-mmc@vger.kernel.org
2925 F: Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2926 F: drivers/mmc/host/sdhci-of-aspeed*
2928 ASPEED VIDEO ENGINE DRIVER
2929 M: Eddie James <eajames@linux.ibm.com>
2930 L: linux-media@vger.kernel.org
2931 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2933 F: Documentation/devicetree/bindings/media/aspeed-video.txt
2934 F: drivers/media/platform/aspeed-video.c
2936 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2937 M: Corentin Chary <corentin.chary@gmail.com>
2938 L: acpi4asus-user@lists.sourceforge.net
2939 L: platform-driver-x86@vger.kernel.org
2941 W: http://acpi4asus.sf.net
2942 F: drivers/platform/x86/asus*.c
2943 F: drivers/platform/x86/eeepc*.c
2945 ASUS WIRELESS RADIO CONTROL DRIVER
2946 M: João Paulo Rechi Vita <jprvita@gmail.com>
2947 L: platform-driver-x86@vger.kernel.org
2949 F: drivers/platform/x86/asus-wireless.c
2952 M: David Howells <dhowells@redhat.com>
2953 L: keyrings@vger.kernel.org
2955 F: Documentation/crypto/asymmetric-keys.rst
2956 F: crypto/asymmetric_keys/
2957 F: include/crypto/pkcs7.h
2958 F: include/crypto/public_key.h
2959 F: include/linux/verification.h
2961 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2962 R: Dan Williams <dan.j.williams@intel.com>
2964 W: http://sourceforge.net/projects/xscaleiop
2965 F: Documentation/crypto/async-tx-api.rst
2967 F: include/linux/async_tx.h
2970 M: Bartosz Golaszewski <brgl@bgdev.pl>
2971 L: linux-i2c@vger.kernel.org
2973 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2974 F: Documentation/devicetree/bindings/eeprom/at24.yaml
2975 F: drivers/misc/eeprom/at24.c
2977 ATA OVER ETHERNET (AOE) DRIVER
2978 M: "Justin Sanders" <justin@coraid.com>
2980 W: http://www.openaoe.org/
2981 F: Documentation/admin-guide/aoe/
2982 F: drivers/block/aoe/
2984 ATC260X PMIC MFD DRIVER
2985 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2986 M: Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2987 L: linux-actions@lists.infradead.org
2989 F: Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2990 F: drivers/input/misc/atc260x-onkey.c
2991 F: drivers/mfd/atc260*
2992 F: drivers/power/reset/atc260x-poweroff.c
2993 F: drivers/regulator/atc260x-regulator.c
2994 F: include/linux/mfd/atc260x/*
2996 ATHEROS 71XX/9XXX GPIO DRIVER
2997 M: Alban Bedel <albeu@free.fr>
2999 W: https://github.com/AlbanBedel/linux
3000 T: git git://github.com/AlbanBedel/linux
3001 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3002 F: drivers/gpio/gpio-ath79.c
3004 ATHEROS 71XX/9XXX USB PHY DRIVER
3005 M: Alban Bedel <albeu@free.fr>
3007 W: https://github.com/AlbanBedel/linux
3008 T: git git://github.com/AlbanBedel/linux
3009 F: Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3010 F: drivers/phy/qualcomm/phy-ath79-usb.c
3012 ATHEROS ATH GENERIC UTILITIES
3013 M: Kalle Valo <kvalo@codeaurora.org>
3014 L: linux-wireless@vger.kernel.org
3016 F: drivers/net/wireless/ath/*
3018 ATHEROS ATH5K WIRELESS DRIVER
3019 M: Jiri Slaby <jirislaby@kernel.org>
3020 M: Nick Kossifidis <mickflemm@gmail.com>
3021 M: Luis Chamberlain <mcgrof@kernel.org>
3022 L: linux-wireless@vger.kernel.org
3024 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3025 F: drivers/net/wireless/ath/ath5k/
3027 ATHEROS ATH6KL WIRELESS DRIVER
3028 M: Kalle Valo <kvalo@codeaurora.org>
3029 L: linux-wireless@vger.kernel.org
3031 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3032 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3033 F: drivers/net/wireless/ath/ath6kl/
3036 M: Ville Syrjala <syrjala@sci.fi>
3038 F: drivers/input/misc/ati_remote2.c
3040 ATK0110 HWMON DRIVER
3041 M: Luca Tettamanti <kronos.it@gmail.com>
3042 L: linux-hwmon@vger.kernel.org
3044 F: drivers/hwmon/asus_atk0110.c
3046 ATLX ETHERNET DRIVERS
3047 M: Chris Snook <chris.snook@gmail.com>
3048 L: netdev@vger.kernel.org
3050 W: http://sourceforge.net/projects/atl1
3051 W: http://atl1.sourceforge.net
3052 F: drivers/net/ethernet/atheros/
3055 M: Chas Williams <3chas3@gmail.com>
3056 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3057 L: netdev@vger.kernel.org
3059 W: http://linux-atm.sourceforge.net
3061 F: include/linux/atm*
3062 F: include/uapi/linux/atm*
3064 ATMEL MACB ETHERNET DRIVER
3065 M: Nicolas Ferre <nicolas.ferre@microchip.com>
3066 M: Claudiu Beznea <claudiu.beznea@microchip.com>
3068 F: drivers/net/ethernet/cadence/
3070 ATMEL MAXTOUCH DRIVER
3071 M: Nick Dyer <nick@shmanahar.org>
3073 T: git git://github.com/ndyer/linux.git
3074 F: Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3075 F: drivers/input/touchscreen/atmel_mxt_ts.c
3077 ATMEL WIRELESS DRIVER
3078 M: Simon Kelley <simon@thekelleys.org.uk>
3079 L: linux-wireless@vger.kernel.org
3081 W: http://www.thekelleys.org.uk/atmel
3082 W: http://atmelwlandriver.sourceforge.net/
3083 F: drivers/net/wireless/atmel/atmel*
3085 ATOMIC INFRASTRUCTURE
3086 M: Will Deacon <will@kernel.org>
3087 M: Peter Zijlstra <peterz@infradead.org>
3088 R: Boqun Feng <boqun.feng@gmail.com>
3089 L: linux-kernel@vger.kernel.org
3091 F: arch/*/include/asm/atomic*.h
3092 F: include/*/atomic*.h
3093 F: include/linux/refcount.h
3094 F: Documentation/atomic_*.txt
3097 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3098 M: Bradley Grove <linuxdrivers@attotech.com>
3099 L: linux-scsi@vger.kernel.org
3101 W: http://www.attotech.com
3102 F: drivers/scsi/esas2r
3104 ATUSB IEEE 802.15.4 RADIO DRIVER
3105 M: Stefan Schmidt <stefan@datenfreihafen.org>
3106 L: linux-wpan@vger.kernel.org
3108 F: drivers/net/ieee802154/at86rf230.h
3109 F: drivers/net/ieee802154/atusb.c
3110 F: drivers/net/ieee802154/atusb.h
3113 M: Paul Moore <paul@paul-moore.com>
3114 M: Eric Paris <eparis@redhat.com>
3115 L: linux-audit@redhat.com (moderated for non-subscribers)
3117 W: https://github.com/linux-audit
3118 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3119 F: include/asm-generic/audit_*.h
3120 F: include/linux/audit.h
3121 F: include/uapi/linux/audit.h
3125 AUXILIARY DISPLAY DRIVERS
3126 M: Miguel Ojeda <ojeda@kernel.org>
3128 F: drivers/auxdisplay/
3129 F: include/linux/cfag12864b.h
3131 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3132 M: Andreas Klinger <ak@it-klinger.de>
3133 L: linux-iio@vger.kernel.org
3135 F: Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3136 F: drivers/iio/adc/hx711.c
3139 M: Ralf Baechle <ralf@linux-mips.org>
3140 L: linux-hams@vger.kernel.org
3142 W: http://www.linux-ax25.org/
3143 F: include/net/ax25.h
3144 F: include/uapi/linux/ax25.h
3148 M: Peter Rosin <peda@axentia.se>
3149 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3151 F: arch/arm/boot/dts/at91-linea.dtsi
3152 F: arch/arm/boot/dts/at91-natte.dtsi
3153 F: arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3154 F: arch/arm/boot/dts/at91-tse850-3.dts
3156 AXENTIA ASOC DRIVERS
3157 M: Peter Rosin <peda@axentia.se>
3158 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3160 F: Documentation/devicetree/bindings/sound/axentia,*
3161 F: sound/soc/atmel/tse850-pcm5142.c
3163 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3164 M: Nuno Sá <nuno.sa@analog.com>
3165 L: linux-hwmon@vger.kernel.org
3167 W: http://ez.analog.com/community/linux-device-drivers
3168 F: Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3169 F: drivers/hwmon/axi-fan-control.c
3171 AXXIA I2C CONTROLLER
3172 M: Krzysztof Adamski <krzysztof.adamski@nokia.com>
3173 L: linux-i2c@vger.kernel.org
3175 F: Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3176 F: drivers/i2c/busses/i2c-axxia.c
3179 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3180 L: linux-media@vger.kernel.org
3182 W: https://linuxtv.org
3183 T: git git://linuxtv.org/media_tree.git
3184 F: drivers/media/usb/dvb-usb-v2/az6007.c
3186 AZTECH FM RADIO RECEIVER DRIVER
3187 M: Hans Verkuil <hverkuil@xs4all.nl>
3188 L: linux-media@vger.kernel.org
3190 W: https://linuxtv.org
3191 T: git git://linuxtv.org/media_tree.git
3192 F: drivers/media/radio/radio-aztech*
3195 L: linux-wireless@vger.kernel.org
3196 L: b43-dev@lists.infradead.org
3198 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3199 F: drivers/net/wireless/broadcom/b43/
3201 B43LEGACY WIRELESS DRIVER
3202 M: Larry Finger <Larry.Finger@lwfinger.net>
3203 L: linux-wireless@vger.kernel.org
3204 L: b43-dev@lists.infradead.org
3206 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3207 F: drivers/net/wireless/broadcom/b43legacy/
3209 BACKLIGHT CLASS/SUBSYSTEM
3210 M: Lee Jones <lee.jones@linaro.org>
3211 M: Daniel Thompson <daniel.thompson@linaro.org>
3212 M: Jingoo Han <jingoohan1@gmail.com>
3213 L: dri-devel@lists.freedesktop.org
3215 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3216 F: Documentation/ABI/stable/sysfs-class-backlight
3217 F: Documentation/ABI/testing/sysfs-class-backlight
3218 F: Documentation/devicetree/bindings/leds/backlight
3219 F: drivers/video/backlight/
3220 F: include/linux/backlight.h
3221 F: include/linux/pwm_backlight.h
3224 M: Marek Lindner <mareklindner@neomailbox.ch>
3225 M: Simon Wunderlich <sw@simonwunderlich.de>
3226 M: Antonio Quartulli <a@unstable.cc>
3227 M: Sven Eckelmann <sven@narfation.org>
3228 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3230 W: https://www.open-mesh.org/
3231 Q: https://patchwork.open-mesh.org/project/batman/list/
3232 B: https://www.open-mesh.org/projects/batman-adv/issues
3233 C: ircs://irc.hackint.org/batadv
3234 T: git https://git.open-mesh.org/linux-merge.git
3235 F: Documentation/networking/batman-adv.rst
3236 F: include/uapi/linux/batadv_packet.h
3237 F: include/uapi/linux/batman_adv.h
3240 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3241 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
3242 L: linux-hams@vger.kernel.org
3244 W: http://www.baycom.org/~tom/ham/ham.html
3245 F: drivers/net/hamradio/baycom*
3247 BCACHE (BLOCK LAYER CACHE)
3248 M: Coly Li <colyli@suse.de>
3249 M: Kent Overstreet <kent.overstreet@gmail.com>
3250 L: linux-bcache@vger.kernel.org
3252 W: http://bcache.evilpiepirate.org
3253 C: irc://irc.oftc.net/bcache
3254 F: drivers/md/bcache/
3256 BDISP ST MEDIA DRIVER
3257 M: Fabien Dessenne <fabien.dessenne@foss.st.com>
3258 L: linux-media@vger.kernel.org
3260 W: https://linuxtv.org
3261 T: git git://linuxtv.org/media_tree.git
3262 F: drivers/media/platform/sti/bdisp
3264 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3265 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
3266 L: netdev@vger.kernel.org
3268 F: drivers/net/ethernet/ec_bhf.c
3271 M: Luis de Bethencourt <luisbg@kernel.org>
3272 M: Salah Triki <salah.triki@gmail.com>
3274 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3275 F: Documentation/filesystems/befs.rst
3279 M: Paolo Valente <paolo.valente@linaro.org>
3280 M: Jens Axboe <axboe@kernel.dk>
3281 L: linux-block@vger.kernel.org
3283 F: Documentation/block/bfq-iosched.rst
3287 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3289 F: Documentation/filesystems/bfs.rst
3291 F: include/uapi/linux/bfs_fs.h
3294 M: Yury Norov <yury.norov@gmail.com>
3295 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3296 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
3298 F: include/asm-generic/bitops/find.h
3299 F: include/linux/bitmap.h
3302 F: lib/find_bit_benchmark.c
3303 F: lib/test_bitmap.c
3304 F: tools/include/asm-generic/bitops/find.h
3305 F: tools/include/linux/bitmap.h
3306 F: tools/lib/bitmap.c
3307 F: tools/lib/find_bit.c
3309 BLINKM RGB LED DRIVER
3310 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
3312 F: drivers/leds/leds-blinkm.c
3315 M: Jens Axboe <axboe@kernel.dk>
3316 L: linux-block@vger.kernel.org
3318 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3321 F: include/linux/blk*
3322 F: kernel/trace/blktrace.c
3326 M: Joern Engel <joern@lazybastard.org>
3327 L: linux-mtd@lists.infradead.org
3329 F: drivers/mtd/devices/block2mtd.c
3332 M: Marcel Holtmann <marcel@holtmann.org>
3333 M: Johan Hedberg <johan.hedberg@gmail.com>
3334 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3335 L: linux-bluetooth@vger.kernel.org
3337 W: http://www.bluez.org/
3338 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3339 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3340 F: drivers/bluetooth/
3343 M: Marcel Holtmann <marcel@holtmann.org>
3344 M: Johan Hedberg <johan.hedberg@gmail.com>
3345 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3346 L: linux-bluetooth@vger.kernel.org
3348 W: http://www.bluez.org/
3349 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3350 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3351 F: include/net/bluetooth/
3355 M: Jay Vosburgh <j.vosburgh@gmail.com>
3356 M: Veaceslav Falico <vfalico@gmail.com>
3357 M: Andy Gospodarek <andy@greyhouse.net>
3358 L: netdev@vger.kernel.org
3360 W: http://sourceforge.net/projects/bonding/
3361 F: drivers/net/bonding/
3362 F: include/net/bonding.h
3363 F: include/uapi/linux/if_bonding.h
3365 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3366 M: Dan Robertson <dan@dlrobertson.com>
3367 L: linux-iio@vger.kernel.org
3369 F: Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3370 F: drivers/iio/accel/bma400*
3372 BPF (Safe dynamic programs and tools)
3373 M: Alexei Starovoitov <ast@kernel.org>
3374 M: Daniel Borkmann <daniel@iogearbox.net>
3375 M: Andrii Nakryiko <andrii@kernel.org>
3376 R: Martin KaFai Lau <kafai@fb.com>
3377 R: Song Liu <songliubraving@fb.com>
3378 R: Yonghong Song <yhs@fb.com>
3379 R: John Fastabend <john.fastabend@gmail.com>
3380 R: KP Singh <kpsingh@kernel.org>
3381 L: netdev@vger.kernel.org
3382 L: bpf@vger.kernel.org
3385 Q: https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3386 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3387 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3388 F: Documentation/bpf/
3389 F: Documentation/networking/filter.rst
3390 F: Documentation/userspace-api/ebpf/
3392 F: include/linux/bpf*
3393 F: include/linux/btf*
3394 F: include/linux/filter.h
3395 F: include/trace/events/xdp.h
3396 F: include/uapi/linux/bpf*
3397 F: include/uapi/linux/btf*
3398 F: include/uapi/linux/filter.h
3400 F: kernel/trace/bpf_trace.c
3403 F: net/core/filter.c
3404 F: net/sched/act_bpf.c
3405 F: net/sched/cls_bpf.c
3407 F: scripts/bpf_doc.py
3410 F: tools/testing/selftests/bpf/
3415 M: Shubham Bansal <illusionist.neo@gmail.com>
3416 L: netdev@vger.kernel.org
3417 L: bpf@vger.kernel.org
3422 M: Daniel Borkmann <daniel@iogearbox.net>
3423 M: Alexei Starovoitov <ast@kernel.org>
3424 M: Zi Shen Lim <zlim.lnx@gmail.com>
3425 L: netdev@vger.kernel.org
3426 L: bpf@vger.kernel.org
3430 BPF JIT for MIPS (32-BIT AND 64-BIT)
3431 M: Paul Burton <paulburton@kernel.org>
3432 L: netdev@vger.kernel.org
3433 L: bpf@vger.kernel.org
3437 BPF JIT for NFP NICs
3438 M: Jakub Kicinski <kuba@kernel.org>
3439 L: netdev@vger.kernel.org
3440 L: bpf@vger.kernel.org
3442 F: drivers/net/ethernet/netronome/nfp/bpf/
3444 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3445 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3446 L: netdev@vger.kernel.org
3447 L: bpf@vger.kernel.org
3449 F: arch/powerpc/net/
3451 BPF JIT for RISC-V (32-bit)
3452 M: Luke Nelson <luke.r.nels@gmail.com>
3453 M: Xi Wang <xi.wang@gmail.com>
3454 L: netdev@vger.kernel.org
3455 L: bpf@vger.kernel.org
3458 X: arch/riscv/net/bpf_jit_comp64.c
3460 BPF JIT for RISC-V (64-bit)
3461 M: Björn Töpel <bjorn@kernel.org>
3462 L: netdev@vger.kernel.org
3463 L: bpf@vger.kernel.org
3466 X: arch/riscv/net/bpf_jit_comp32.c
3469 M: Ilya Leoshkevich <iii@linux.ibm.com>
3470 M: Heiko Carstens <hca@linux.ibm.com>
3471 M: Vasily Gorbik <gor@linux.ibm.com>
3472 L: netdev@vger.kernel.org
3473 L: bpf@vger.kernel.org
3476 X: arch/s390/net/pnet.c
3478 BPF JIT for SPARC (32-BIT AND 64-BIT)
3479 M: David S. Miller <davem@davemloft.net>
3480 L: netdev@vger.kernel.org
3481 L: bpf@vger.kernel.org
3485 BPF JIT for X86 32-BIT
3486 M: Wang YanQing <udknight@gmail.com>
3487 L: netdev@vger.kernel.org
3488 L: bpf@vger.kernel.org
3490 F: arch/x86/net/bpf_jit_comp32.c
3492 BPF JIT for X86 64-BIT
3493 M: Alexei Starovoitov <ast@kernel.org>
3494 M: Daniel Borkmann <daniel@iogearbox.net>
3495 L: netdev@vger.kernel.org
3496 L: bpf@vger.kernel.org
3499 X: arch/x86/net/bpf_jit_comp32.c
3501 BPF LSM (Security Audit and Enforcement using BPF)
3502 M: KP Singh <kpsingh@kernel.org>
3503 R: Florent Revest <revest@chromium.org>
3504 R: Brendan Jackman <jackmanb@chromium.org>
3505 L: bpf@vger.kernel.org
3507 F: Documentation/bpf/bpf_lsm.rst
3508 F: include/linux/bpf_lsm.h
3509 F: kernel/bpf/bpf_lsm.c
3512 BROADCOM B44 10/100 ETHERNET DRIVER
3513 M: Michael Chan <michael.chan@broadcom.com>
3514 L: netdev@vger.kernel.org
3516 F: drivers/net/ethernet/broadcom/b44.*
3518 BROADCOM B53 ETHERNET SWITCH DRIVER
3519 M: Florian Fainelli <f.fainelli@gmail.com>
3520 L: netdev@vger.kernel.org
3521 L: openwrt-devel@lists.openwrt.org (subscribers-only)
3523 F: Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3524 F: drivers/net/dsa/b53/*
3525 F: include/linux/dsa/brcm.h
3526 F: include/linux/platform_data/b53.h
3528 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3529 M: Nicolas Saenz Julienne <nsaenz@kernel.org>
3530 L: bcm-kernel-feedback-list@broadcom.com
3531 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3532 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3534 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3535 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3536 F: drivers/pci/controller/pcie-brcmstb.c
3537 F: drivers/staging/vc04_services
3541 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3542 M: Florian Fainelli <f.fainelli@gmail.com>
3543 M: Ray Jui <rjui@broadcom.com>
3544 M: Scott Branden <sbranden@broadcom.com>
3545 M: bcm-kernel-feedback-list@broadcom.com
3547 T: git git://github.com/broadcom/mach-bcm
3548 F: arch/arm/mach-bcm/
3554 BROADCOM BCM2711 HEVC DECODER
3555 M: Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3556 L: linux-media@vger.kernel.org
3558 F: Documentation/devicetree/bindings/media/rpivid_hevc.jaml
3559 F: drivers/staging/media/rpivid
3561 BROADCOM BCM2835 CAMERA DRIVER
3562 M: Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3563 L: linux-media@vger.kernel.org
3565 F: drivers/media/platform/bcm2835/
3566 F: Documentation/devicetree/bindings/media/brcm,bcm2835-unicam.yaml
3568 BROADCOM BCM2835 ISP DRIVER
3569 M: Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3570 L: linux-media@vger.kernel.org
3572 F: Documentation/media/uapi/v4l/pixfmt-meta-bcm2835-isp-stats.rst
3573 F: Documentation/media/v4l-drivers/bcm2835-isp.rst
3574 F: drivers/staging/vc04_services/bcm2835-isp
3575 F: include/uapi/linux/bcm2835-isp.h
3577 BROADCOM BCM47XX MIPS ARCHITECTURE
3578 M: Hauke Mehrtens <hauke@hauke-m.de>
3579 M: Rafał Miłecki <zajec5@gmail.com>
3580 L: linux-mips@vger.kernel.org
3582 F: Documentation/devicetree/bindings/mips/brcm/
3583 F: arch/mips/bcm47xx/*
3584 F: arch/mips/include/asm/mach-bcm47xx/*
3586 BROADCOM BCM4908 ETHERNET DRIVER
3587 M: Rafał Miłecki <rafal@milecki.pl>
3588 M: bcm-kernel-feedback-list@broadcom.com
3589 L: netdev@vger.kernel.org
3591 F: Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3592 F: drivers/net/ethernet/broadcom/bcm4908_enet.*
3593 F: drivers/net/ethernet/broadcom/unimac.h
3595 BROADCOM BCM5301X ARM ARCHITECTURE
3596 M: Hauke Mehrtens <hauke@hauke-m.de>
3597 M: Rafał Miłecki <zajec5@gmail.com>
3598 M: bcm-kernel-feedback-list@broadcom.com
3599 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3601 F: arch/arm/boot/dts/bcm470*
3602 F: arch/arm/boot/dts/bcm5301*
3603 F: arch/arm/boot/dts/bcm953012*
3604 F: arch/arm/mach-bcm/bcm_5301x.c
3606 BROADCOM BCM53573 ARM ARCHITECTURE
3607 M: Rafał Miłecki <rafal@milecki.pl>
3608 L: bcm-kernel-feedback-list@broadcom.com
3609 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3611 F: arch/arm/boot/dts/bcm47189*
3612 F: arch/arm/boot/dts/bcm53573*
3614 BROADCOM BCM63XX ARM ARCHITECTURE
3615 M: Florian Fainelli <f.fainelli@gmail.com>
3616 M: bcm-kernel-feedback-list@broadcom.com
3617 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3619 T: git git://github.com/broadcom/stblinux.git
3622 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3623 M: Kevin Cernekee <cernekee@gmail.com>
3624 L: linux-usb@vger.kernel.org
3626 F: drivers/usb/gadget/udc/bcm63xx_udc.*
3628 BROADCOM BCM7XXX ARM ARCHITECTURE
3629 M: Florian Fainelli <f.fainelli@gmail.com>
3630 M: bcm-kernel-feedback-list@broadcom.com
3631 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3633 T: git git://github.com/broadcom/stblinux.git
3634 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3635 F: arch/arm/boot/dts/bcm7*.dts*
3636 F: arch/arm/include/asm/hardware/cache-b15-rac.h
3637 F: arch/arm/mach-bcm/*brcmstb*
3638 F: arch/arm/mm/cache-b15-rac.c
3639 F: drivers/bus/brcmstb_gisb.c
3640 F: drivers/pci/controller/pcie-brcmstb.c
3644 M: Al Cooper <alcooperx@gmail.com>
3645 L: linux-usb@vger.kernel.org
3646 L: bcm-kernel-feedback-list@broadcom.com
3648 F: Documentation/devicetree/bindings/usb/brcm,bdc.txt
3649 F: drivers/usb/gadget/udc/bdc/
3651 BROADCOM BMIPS CPUFREQ DRIVER
3652 M: Markus Mayer <mmayer@broadcom.com>
3653 M: bcm-kernel-feedback-list@broadcom.com
3654 L: linux-pm@vger.kernel.org
3656 F: drivers/cpufreq/bmips-cpufreq.c
3658 BROADCOM BMIPS MIPS ARCHITECTURE
3659 M: Florian Fainelli <f.fainelli@gmail.com>
3660 L: bcm-kernel-feedback-list@broadcom.com
3661 L: linux-mips@vger.kernel.org
3663 T: git git://github.com/broadcom/stblinux.git
3664 F: arch/mips/bmips/*
3665 F: arch/mips/boot/dts/brcm/bcm*.dts*
3666 F: arch/mips/include/asm/mach-bmips/*
3667 F: arch/mips/kernel/*bmips*
3668 F: drivers/soc/bcm/bcm63xx
3669 F: drivers/irqchip/irq-bcm63*
3670 F: drivers/irqchip/irq-bcm7*
3671 F: drivers/irqchip/irq-brcmstb*
3672 F: include/linux/bcm963xx_nvram.h
3673 F: include/linux/bcm963xx_tag.h
3675 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3676 M: Rasesh Mody <rmody@marvell.com>
3677 M: GR-Linux-NIC-Dev@marvell.com
3678 L: netdev@vger.kernel.org
3680 F: drivers/net/ethernet/broadcom/bnx2.*
3681 F: drivers/net/ethernet/broadcom/bnx2_*
3683 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3684 M: Saurav Kashyap <skashyap@marvell.com>
3685 M: Javed Hasan <jhasan@marvell.com>
3686 M: GR-QLogic-Storage-Upstream@marvell.com
3687 L: linux-scsi@vger.kernel.org
3689 F: drivers/scsi/bnx2fc/
3691 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3692 M: Nilesh Javali <njavali@marvell.com>
3693 M: Manish Rangankar <mrangankar@marvell.com>
3694 M: GR-QLogic-Storage-Upstream@marvell.com
3695 L: linux-scsi@vger.kernel.org
3697 F: drivers/scsi/bnx2i/
3699 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3700 M: Ariel Elior <aelior@marvell.com>
3701 M: Sudarsana Kalluru <skalluru@marvell.com>
3702 M: GR-everest-linux-l2@marvell.com
3703 L: netdev@vger.kernel.org
3705 F: drivers/net/ethernet/broadcom/bnx2x/
3707 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3708 M: Michael Chan <michael.chan@broadcom.com>
3709 L: netdev@vger.kernel.org
3711 F: drivers/net/ethernet/broadcom/bnxt/
3713 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3714 M: Arend van Spriel <aspriel@gmail.com>
3715 M: Franky Lin <franky.lin@broadcom.com>
3716 M: Hante Meuleman <hante.meuleman@broadcom.com>
3717 M: Chi-hsien Lin <chi-hsien.lin@infineon.com>
3718 M: Wright Feng <wright.feng@infineon.com>
3719 M: Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3720 L: linux-wireless@vger.kernel.org
3721 L: brcm80211-dev-list.pdl@broadcom.com
3722 L: SHA-cyfmac-dev-list@infineon.com
3724 F: drivers/net/wireless/broadcom/brcm80211/
3726 BROADCOM BRCMSTB GPIO DRIVER
3727 M: Gregory Fong <gregory.0xf0@gmail.com>
3728 L: bcm-kernel-feedback-list@broadcom.com
3730 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3731 F: drivers/gpio/gpio-brcmstb.c
3733 BROADCOM BRCMSTB I2C DRIVER
3734 M: Kamal Dasu <kdasu.kdev@gmail.com>
3735 L: linux-i2c@vger.kernel.org
3736 L: bcm-kernel-feedback-list@broadcom.com
3738 F: Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3739 F: drivers/i2c/busses/i2c-brcmstb.c
3741 BROADCOM BRCMSTB UART DRIVER
3742 M: Al Cooper <alcooperx@gmail.com>
3743 L: linux-serial@vger.kernel.org
3744 L: bcm-kernel-feedback-list@broadcom.com
3746 F: Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3747 F: drivers/tty/serial/8250/8250_bcm7271.c
3749 BROADCOM BRCMSTB USB EHCI DRIVER
3750 M: Al Cooper <alcooperx@gmail.com>
3751 L: linux-usb@vger.kernel.org
3752 L: bcm-kernel-feedback-list@broadcom.com
3754 F: Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3755 F: drivers/usb/host/ehci-brcm.*
3757 BROADCOM BRCMSTB USB PIN MAP DRIVER
3758 M: Al Cooper <alcooperx@gmail.com>
3759 L: linux-usb@vger.kernel.org
3760 L: bcm-kernel-feedback-list@broadcom.com
3762 F: Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3763 F: drivers/usb/misc/brcmstb-usb-pinmap.c
3765 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3766 M: Al Cooper <alcooperx@gmail.com>
3767 L: linux-kernel@vger.kernel.org
3768 L: bcm-kernel-feedback-list@broadcom.com
3770 F: drivers/phy/broadcom/phy-brcm-usb*
3772 BROADCOM ETHERNET PHY DRIVERS
3773 M: Florian Fainelli <f.fainelli@gmail.com>
3774 L: bcm-kernel-feedback-list@broadcom.com
3775 L: netdev@vger.kernel.org
3777 F: Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3778 F: drivers/net/phy/bcm*.[ch]
3779 F: drivers/net/phy/broadcom.c
3780 F: include/linux/brcmphy.h
3782 BROADCOM GENET ETHERNET DRIVER
3783 M: Doug Berger <opendmb@gmail.com>
3784 M: Florian Fainelli <f.fainelli@gmail.com>
3785 L: bcm-kernel-feedback-list@broadcom.com
3786 L: netdev@vger.kernel.org
3788 F: Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3789 F: Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3790 F: drivers/net/ethernet/broadcom/genet/
3791 F: drivers/net/ethernet/broadcom/unimac.h
3792 F: drivers/net/mdio/mdio-bcm-unimac.c
3793 F: include/linux/platform_data/bcmgenet.h
3794 F: include/linux/platform_data/mdio-bcm-unimac.h
3796 BROADCOM IPROC ARM ARCHITECTURE
3797 M: Ray Jui <rjui@broadcom.com>
3798 M: Scott Branden <sbranden@broadcom.com>
3799 M: bcm-kernel-feedback-list@broadcom.com
3800 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3802 T: git git://github.com/broadcom/cygnus-linux.git
3803 F: arch/arm64/boot/dts/broadcom/northstar2/*
3804 F: arch/arm64/boot/dts/broadcom/stingray/*
3805 F: drivers/clk/bcm/clk-ns*
3806 F: drivers/clk/bcm/clk-sr*
3807 F: drivers/pinctrl/bcm/pinctrl-ns*
3808 F: include/dt-bindings/clock/bcm-sr*
3825 BROADCOM IPROC GBIT ETHERNET DRIVER
3826 M: Rafał Miłecki <rafal@milecki.pl>
3827 M: bcm-kernel-feedback-list@broadcom.com
3828 L: netdev@vger.kernel.org
3830 F: Documentation/devicetree/bindings/net/brcm,amac.txt
3831 F: drivers/net/ethernet/broadcom/bgmac*
3832 F: drivers/net/ethernet/broadcom/unimac.h
3834 BROADCOM KONA GPIO DRIVER
3835 M: Ray Jui <rjui@broadcom.com>
3836 L: bcm-kernel-feedback-list@broadcom.com
3838 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3839 F: drivers/gpio/gpio-bcm-kona.c
3841 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3842 M: Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3843 M: Kashyap Desai <kashyap.desai@broadcom.com>
3844 M: Sumit Saxena <sumit.saxena@broadcom.com>
3845 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3846 L: mpi3mr-linuxdrv.pdl@broadcom.com
3847 L: linux-scsi@vger.kernel.org
3849 W: https://www.broadcom.com/support/storage
3850 F: drivers/scsi/mpi3mr/
3852 BROADCOM NETXTREME-E ROCE DRIVER
3853 M: Selvin Xavier <selvin.xavier@broadcom.com>
3854 L: linux-rdma@vger.kernel.org
3856 W: http://www.broadcom.com
3857 F: drivers/infiniband/hw/bnxt_re/
3858 F: include/uapi/rdma/bnxt_re-abi.h
3860 BROADCOM NVRAM DRIVER
3861 M: Rafał Miłecki <zajec5@gmail.com>
3862 L: linux-mips@vger.kernel.org
3864 F: drivers/firmware/broadcom/*
3866 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3867 M: Rafał Miłecki <rafal@milecki.pl>
3868 M: Florian Fainelli <f.fainelli@gmail.com>
3869 M: bcm-kernel-feedback-list@broadcom.com
3870 L: linux-pm@vger.kernel.org
3872 T: git git://github.com/broadcom/stblinux.git
3873 F: drivers/soc/bcm/bcm63xx/bcm-pmb.c
3874 F: include/dt-bindings/soc/bcm-pmb.h
3876 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3877 M: Rafał Miłecki <zajec5@gmail.com>
3878 L: linux-wireless@vger.kernel.org
3881 F: include/linux/bcma/
3884 M: Kamal Dasu <kdasu.kdev@gmail.com>
3885 M: bcm-kernel-feedback-list@broadcom.com
3887 F: Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3888 F: drivers/spi/spi-bcm-qspi.*
3889 F: drivers/spi/spi-brcmstb-qspi.c
3890 F: drivers/spi/spi-iproc-qspi.c
3892 BROADCOM STB AVS CPUFREQ DRIVER
3893 M: Markus Mayer <mmayer@broadcom.com>
3894 M: bcm-kernel-feedback-list@broadcom.com
3895 L: linux-pm@vger.kernel.org
3897 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3898 F: drivers/cpufreq/brcmstb*
3900 BROADCOM STB AVS TMON DRIVER
3901 M: Markus Mayer <mmayer@broadcom.com>
3902 M: bcm-kernel-feedback-list@broadcom.com
3903 L: linux-pm@vger.kernel.org
3905 F: Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3906 F: drivers/thermal/broadcom/brcmstb*
3908 BROADCOM STB DPFE DRIVER
3909 M: Markus Mayer <mmayer@broadcom.com>
3910 M: bcm-kernel-feedback-list@broadcom.com
3911 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3913 F: Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3914 F: drivers/memory/brcmstb_dpfe.c
3916 BROADCOM STB NAND FLASH DRIVER
3917 M: Brian Norris <computersforpeace@gmail.com>
3918 M: Kamal Dasu <kdasu.kdev@gmail.com>
3919 L: linux-mtd@lists.infradead.org
3920 L: bcm-kernel-feedback-list@broadcom.com
3922 F: drivers/mtd/nand/raw/brcmnand/
3924 BROADCOM STB PCIE DRIVER
3925 M: Jim Quinlan <jim2101024@gmail.com>
3926 M: Nicolas Saenz Julienne <nsaenz@kernel.org>
3927 M: Florian Fainelli <f.fainelli@gmail.com>
3928 M: bcm-kernel-feedback-list@broadcom.com
3929 L: linux-pci@vger.kernel.org
3931 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3932 F: drivers/pci/controller/pcie-brcmstb.c
3934 BROADCOM SYSTEMPORT ETHERNET DRIVER
3935 M: Florian Fainelli <f.fainelli@gmail.com>
3936 L: bcm-kernel-feedback-list@broadcom.com
3937 L: netdev@vger.kernel.org
3939 F: drivers/net/ethernet/broadcom/bcmsysport.*
3940 F: drivers/net/ethernet/broadcom/unimac.h
3942 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3943 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
3944 M: Prashant Sreedharan <prashant@broadcom.com>
3945 M: Michael Chan <mchan@broadcom.com>
3946 L: netdev@vger.kernel.org
3948 F: drivers/net/ethernet/broadcom/tg3.*
3951 M: Scott Branden <scott.branden@broadcom.com>
3952 L: bcm-kernel-feedback-list@broadcom.com
3954 F: drivers/misc/bcm-vk/
3955 F: include/uapi/linux/misc/bcm_vk.h
3957 BROCADE BFA FC SCSI DRIVER
3958 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3959 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3960 L: linux-scsi@vger.kernel.org
3962 F: drivers/scsi/bfa/
3964 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3965 M: Rasesh Mody <rmody@marvell.com>
3966 M: Sudarsana Kalluru <skalluru@marvell.com>
3967 M: GR-Linux-NIC-Dev@marvell.com
3968 L: netdev@vger.kernel.org
3970 F: drivers/net/ethernet/brocade/bna/
3972 BSG (block layer generic sg v4 driver)
3973 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3974 L: linux-scsi@vger.kernel.org
3977 F: include/linux/bsg.h
3978 F: include/uapi/linux/bsg.h
3981 M: Clemens Ladisch <clemens@ladisch.de>
3982 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3984 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3985 F: Documentation/sound/cards/bt87x.rst
3986 F: sound/pci/bt87x.c
3989 M: Michael Buesch <m@bues.ch>
3991 W: http://bu3sch.de/btgpio.php
3992 F: drivers/gpio/gpio-bt8xx.c
3995 M: Chris Mason <clm@fb.com>
3996 M: Josef Bacik <josef@toxicpanda.com>
3997 M: David Sterba <dsterba@suse.com>
3998 L: linux-btrfs@vger.kernel.org
4000 W: http://btrfs.wiki.kernel.org/
4001 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
4002 C: irc://irc.libera.chat/btrfs
4003 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4004 F: Documentation/filesystems/btrfs.rst
4006 F: include/linux/btrfs*
4007 F: include/uapi/linux/btrfs*
4009 BTTV VIDEO4LINUX DRIVER
4010 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4011 L: linux-media@vger.kernel.org
4013 W: https://linuxtv.org
4014 T: git git://linuxtv.org/media_tree.git
4015 F: Documentation/driver-api/media/drivers/bttv*
4016 F: drivers/media/pci/bt8xx/bttv*
4018 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4019 M: Chanwoo Choi <cw00.choi@samsung.com>
4020 L: linux-pm@vger.kernel.org
4021 L: linux-samsung-soc@vger.kernel.org
4023 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4024 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4025 F: drivers/devfreq/exynos-bus.c
4027 BUSLOGIC SCSI DRIVER
4028 M: Khalid Aziz <khalid@gonehiking.org>
4029 L: linux-scsi@vger.kernel.org
4031 F: drivers/scsi/BusLogic.*
4032 F: drivers/scsi/FlashPoint.*
4034 C-MEDIA CMI8788 DRIVER
4035 M: Clemens Ladisch <clemens@ladisch.de>
4036 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4038 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4039 F: sound/pci/oxygen/
4042 M: Guo Ren <guoren@kernel.org>
4043 L: linux-csky@vger.kernel.org
4045 T: git https://github.com/c-sky/csky-linux.git
4046 F: Documentation/devicetree/bindings/csky/
4047 F: Documentation/devicetree/bindings/interrupt-controller/csky,*
4048 F: Documentation/devicetree/bindings/timer/csky,*
4050 F: drivers/clocksource/timer-gx6605s.c
4051 F: drivers/clocksource/timer-mp-csky.c
4052 F: drivers/irqchip/irq-csky-*
4056 CA8210 IEEE-802.15.4 RADIO DRIVER
4057 M: Harry Morris <h.morris@cascoda.com>
4058 L: linux-wpan@vger.kernel.org
4060 W: https://github.com/Cascoda/ca8210-linux.git
4061 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4062 F: drivers/net/ieee802154/ca8210.c
4064 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4065 M: Damien Le Moal <damien.lemoal@wdc.com>
4066 L: linux-riscv@lists.infradead.org
4067 L: linux-gpio@vger.kernel.org (pinctrl driver)
4068 F: Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4069 F: drivers/pinctrl/pinctrl-k210.c
4071 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4072 M: Damien Le Moal <damien.lemoal@wdc.com>
4073 L: linux-kernel@vger.kernel.org
4074 L: linux-riscv@lists.infradead.org
4076 F: Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4077 F: drivers/reset/reset-k210.c
4079 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4080 M: Damien Le Moal <damien.lemoal@wdc.com>
4081 L: linux-riscv@lists.infradead.org
4083 F: Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4084 F: drivers/soc/canaan/
4085 F: include/soc/canaan/
4087 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4088 M: David Howells <dhowells@redhat.com>
4089 L: linux-cachefs@redhat.com (moderated for non-subscribers)
4091 F: Documentation/filesystems/caching/cachefiles.rst
4094 CADENCE MIPI-CSI2 BRIDGES
4095 M: Maxime Ripard <mripard@kernel.org>
4096 L: linux-media@vger.kernel.org
4098 F: Documentation/devicetree/bindings/media/cdns,*.txt
4099 F: drivers/media/platform/cadence/cdns-csi2*
4102 L: linux-mtd@lists.infradead.org
4104 F: Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4105 F: drivers/mtd/nand/raw/cadence-nand-controller.c
4107 CADENCE USB3 DRD IP DRIVER
4108 M: Peter Chen <peter.chen@kernel.org>
4109 M: Pawel Laszczak <pawell@cadence.com>
4110 R: Roger Quadros <rogerq@kernel.org>
4111 R: Aswath Govindraju <a-govindraju@ti.com>
4112 L: linux-usb@vger.kernel.org
4114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4115 F: Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4116 F: drivers/usb/cdns3/
4117 X: drivers/usb/cdns3/cdnsp*
4119 CADENCE USBSSP DRD IP DRIVER
4120 M: Pawel Laszczak <pawell@cadence.com>
4121 L: linux-usb@vger.kernel.org
4123 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4124 F: drivers/usb/cdns3/
4125 X: drivers/usb/cdns3/cdns3*
4127 CADET FM/AM RADIO RECEIVER DRIVER
4128 M: Hans Verkuil <hverkuil@xs4all.nl>
4129 L: linux-media@vger.kernel.org
4131 W: https://linuxtv.org
4132 T: git git://linuxtv.org/media_tree.git
4133 F: drivers/media/radio/radio-cadet*
4135 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4136 L: linux-media@vger.kernel.org
4138 T: git git://linuxtv.org/media_tree.git
4139 F: Documentation/admin-guide/media/cafe_ccic*
4140 F: drivers/media/platform/marvell-ccic/
4143 L: netdev@vger.kernel.org
4145 F: Documentation/networking/caif/
4146 F: drivers/net/caif/
4147 F: include/net/caif/
4148 F: include/uapi/linux/caif/
4152 M: Toke Høiland-Jørgensen <toke@toke.dk>
4153 L: cake@lists.bufferbloat.net (moderated for non-subscribers)
4155 F: net/sched/sch_cake.c
4158 M: Wolfgang Grandegger <wg@grandegger.com>
4159 M: Marc Kleine-Budde <mkl@pengutronix.de>
4160 L: linux-can@vger.kernel.org
4162 W: https://github.com/linux-can
4163 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4164 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4165 F: Documentation/devicetree/bindings/net/can/
4166 F: Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4168 F: drivers/phy/phy-can-transceiver.c
4169 F: include/linux/can/bittiming.h
4170 F: include/linux/can/dev.h
4171 F: include/linux/can/led.h
4172 F: include/linux/can/length.h
4173 F: include/linux/can/platform/
4174 F: include/linux/can/rx-offload.h
4175 F: include/uapi/linux/can/error.h
4176 F: include/uapi/linux/can/netlink.h
4177 F: include/uapi/linux/can/vxcan.h
4180 M: Oliver Hartkopp <socketcan@hartkopp.net>
4181 M: Marc Kleine-Budde <mkl@pengutronix.de>
4182 L: linux-can@vger.kernel.org
4184 W: https://github.com/linux-can
4185 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4186 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4187 F: Documentation/networking/can.rst
4188 F: include/linux/can/can-ml.h
4189 F: include/linux/can/core.h
4190 F: include/linux/can/skb.h
4191 F: include/net/netns/can.h
4192 F: include/uapi/linux/can.h
4193 F: include/uapi/linux/can/bcm.h
4194 F: include/uapi/linux/can/gw.h
4195 F: include/uapi/linux/can/isotp.h
4196 F: include/uapi/linux/can/raw.h
4199 CAN-J1939 NETWORK LAYER
4200 M: Robin van der Gracht <robin@protonic.nl>
4201 M: Oleksij Rempel <o.rempel@pengutronix.de>
4202 R: kernel@pengutronix.de
4203 L: linux-can@vger.kernel.org
4205 F: Documentation/networking/j1939.rst
4206 F: include/uapi/linux/can/j1939.h
4210 M: Serge Hallyn <serge@hallyn.com>
4211 L: linux-security-module@vger.kernel.org
4213 F: include/linux/capability.h
4214 F: include/uapi/linux/capability.h
4215 F: kernel/capability.c
4216 F: security/commoncap.c
4218 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4219 M: Kevin Tsai <ktsai@capellamicro.com>
4221 F: drivers/iio/light/cm*
4223 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4224 M: Christian Lamparter <chunkeey@googlemail.com>
4225 L: linux-wireless@vger.kernel.org
4227 W: https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4228 F: drivers/net/wireless/ath/carl9170/
4231 M: Robert Richter <rric@kernel.org>
4233 W: http://www.marvell.com
4234 F: drivers/i2c/busses/i2c-octeon*
4235 F: drivers/i2c/busses/i2c-thunderx*
4237 CAVIUM LIQUIDIO NETWORK DRIVER
4238 M: Derek Chickles <dchickles@marvell.com>
4239 M: Satanand Burla <sburla@marvell.com>
4240 M: Felix Manlunas <fmanlunas@marvell.com>
4241 L: netdev@vger.kernel.org
4243 W: http://www.marvell.com
4244 F: drivers/net/ethernet/cavium/liquidio/
4247 M: Robert Richter <rric@kernel.org>
4249 W: http://www.marvell.com
4250 F: drivers/mmc/host/cavium*
4252 CAVIUM OCTEON-TX CRYPTO DRIVER
4253 M: George Cherian <gcherian@marvell.com>
4254 L: linux-crypto@vger.kernel.org
4256 W: http://www.marvell.com
4257 F: drivers/crypto/cavium/cpt/
4259 CAVIUM THUNDERX2 ARM64 SOC
4260 M: Robert Richter <rric@kernel.org>
4261 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4263 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4264 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
4266 CBS/ETF/TAPRIO QDISCS
4267 M: Vinicius Costa Gomes <vinicius.gomes@intel.com>
4269 L: netdev@vger.kernel.org
4270 F: net/sched/sch_cbs.c
4271 F: net/sched/sch_etf.c
4272 F: net/sched/sch_taprio.c
4274 CC2520 IEEE-802.15.4 RADIO DRIVER
4275 M: Varka Bhadram <varkabhadram@gmail.com>
4276 L: linux-wpan@vger.kernel.org
4278 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4279 F: drivers/net/ieee802154/cc2520.c
4280 F: include/linux/spi/cc2520.h
4282 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4283 M: Gilad Ben-Yossef <gilad@benyossef.com>
4284 L: linux-crypto@vger.kernel.org
4286 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4287 F: drivers/crypto/ccree/
4289 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4290 M: Hadar Gat <hadar.gat@arm.com>
4291 L: linux-crypto@vger.kernel.org
4293 F: drivers/char/hw_random/cctrng.c
4294 F: drivers/char/hw_random/cctrng.h
4295 F: Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4296 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4299 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4300 L: linux-media@vger.kernel.org
4302 W: http://linuxtv.org
4303 T: git git://linuxtv.org/media_tree.git
4304 F: Documentation/ABI/testing/debugfs-cec-error-inj
4305 F: Documentation/devicetree/bindings/media/cec.txt
4306 F: Documentation/driver-api/media/cec-core.rst
4307 F: Documentation/userspace-api/media/cec
4308 F: drivers/media/cec/
4309 F: drivers/media/rc/keymaps/rc-cec.c
4310 F: include/media/cec-notifier.h
4311 F: include/media/cec.h
4312 F: include/uapi/linux/cec-funcs.h
4313 F: include/uapi/linux/cec.h
4316 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4317 L: linux-media@vger.kernel.org
4319 W: http://linuxtv.org
4320 T: git git://linuxtv.org/media_tree.git
4321 F: Documentation/devicetree/bindings/media/cec-gpio.txt
4322 F: drivers/media/cec/platform/cec-gpio/
4324 CELL BROADBAND ENGINE ARCHITECTURE
4325 M: Arnd Bergmann <arnd@arndb.de>
4326 L: linuxppc-dev@lists.ozlabs.org
4328 W: http://www.ibm.com/developerworks/power/cell/
4329 F: arch/powerpc/include/asm/cell*.h
4330 F: arch/powerpc/include/asm/spu*.h
4331 F: arch/powerpc/include/uapi/asm/spu*.h
4332 F: arch/powerpc/platforms/cell/
4334 CELLWISE CW2015 BATTERY DRIVER
4335 M: Tobias Schrammm <t.schramm@manjaro.org>
4337 F: Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4338 F: drivers/power/supply/cw2015_battery.c
4340 CEPH COMMON CODE (LIBCEPH)
4341 M: Ilya Dryomov <idryomov@gmail.com>
4342 M: Jeff Layton <jlayton@kernel.org>
4343 L: ceph-devel@vger.kernel.org
4346 T: git git://github.com/ceph/ceph-client.git
4347 F: include/linux/ceph/
4348 F: include/linux/crush/
4351 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4352 M: Jeff Layton <jlayton@kernel.org>
4353 M: Ilya Dryomov <idryomov@gmail.com>
4354 L: ceph-devel@vger.kernel.org
4357 T: git git://github.com/ceph/ceph-client.git
4358 F: Documentation/filesystems/ceph.rst
4361 CERTIFICATE HANDLING
4362 M: David Howells <dhowells@redhat.com>
4363 M: David Woodhouse <dwmw2@infradead.org>
4364 L: keyrings@vger.kernel.org
4366 F: Documentation/admin-guide/module-signing.rst
4368 F: scripts/extract-cert.c
4369 F: scripts/sign-file.c
4371 CFAG12864B LCD DRIVER
4372 M: Miguel Ojeda <ojeda@kernel.org>
4374 F: drivers/auxdisplay/cfag12864b.c
4375 F: include/linux/cfag12864b.h
4377 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4378 M: Miguel Ojeda <ojeda@kernel.org>
4380 F: drivers/auxdisplay/cfag12864bfb.c
4381 F: include/linux/cfag12864b.h
4383 CHAR and MISC DRIVERS
4384 M: Arnd Bergmann <arnd@arndb.de>
4385 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4387 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4390 F: include/linux/miscdevice.h
4391 X: drivers/char/agp/
4392 X: drivers/char/hw_random/
4393 X: drivers/char/ipmi/
4394 X: drivers/char/random.c
4395 X: drivers/char/tpm/
4398 M: Andy Whitcroft <apw@canonical.com>
4399 M: Joe Perches <joe@perches.com>
4400 R: Dwaipayan Ray <dwaipayanray1@gmail.com>
4401 R: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4403 F: scripts/checkpatch.pl
4405 CHECKPATCH DOCUMENTATION
4406 M: Dwaipayan Ray <dwaipayanray1@gmail.com>
4407 M: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4408 R: Joe Perches <joe@perches.com>
4410 F: Documentation/dev-tools/checkpatch.rst
4412 CHINESE DOCUMENTATION
4413 M: Alex Shi <alexs@kernel.org>
4415 F: Documentation/translations/zh_CN/
4417 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4418 M: Peter Chen <peter.chen@kernel.org>
4419 L: linux-usb@vger.kernel.org
4421 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4422 F: drivers/usb/chipidea/
4424 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4425 M: Hans de Goede <hdegoede@redhat.com>
4426 L: linux-input@vger.kernel.org
4428 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4429 F: drivers/input/touchscreen/chipone_icn8318.c
4431 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4432 M: Hans de Goede <hdegoede@redhat.com>
4433 L: linux-input@vger.kernel.org
4435 F: drivers/input/touchscreen/chipone_icn8505.c
4437 CHROME HARDWARE PLATFORM SUPPORT
4438 M: Benson Leung <bleung@chromium.org>
4439 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4441 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4442 F: drivers/platform/chrome/
4444 CHROMEOS EC CODEC DRIVER
4445 M: Cheng-Yi Chiang <cychiang@chromium.org>
4446 R: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4447 R: Guenter Roeck <groeck@chromium.org>
4449 F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4450 F: sound/soc/codecs/cros_ec_codec.*
4452 CHROMEOS EC SUBDRIVERS
4453 M: Benson Leung <bleung@chromium.org>
4454 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4455 R: Guenter Roeck <groeck@chromium.org>
4457 F: drivers/power/supply/cros_usbpd-charger.c
4461 CHRONTEL CH7322 CEC DRIVER
4462 M: Jeff Chase <jnchase@google.com>
4463 L: linux-media@vger.kernel.org
4465 T: git git://linuxtv.org/media_tree.git
4466 F: Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4467 F: drivers/media/cec/i2c/ch7322.c
4469 CIRRUS LOGIC AUDIO CODEC DRIVERS
4470 M: James Schulman <james.schulman@cirrus.com>
4471 M: David Rhodes <david.rhodes@cirrus.com>
4472 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4473 L: patches@opensource.cirrus.com
4475 F: sound/soc/codecs/cs*
4477 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4478 M: Hartley Sweeten <hsweeten@visionengravers.com>
4479 L: netdev@vger.kernel.org
4481 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
4483 CIRRUS LOGIC LOCHNAGAR DRIVER
4484 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4485 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4486 L: patches@opensource.cirrus.com
4488 F: Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4489 F: Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4490 F: Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4491 F: Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4492 F: Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4493 F: Documentation/hwmon/lochnagar.rst
4494 F: drivers/clk/clk-lochnagar.c
4495 F: drivers/hwmon/lochnagar-hwmon.c
4496 F: drivers/mfd/lochnagar-i2c.c
4497 F: drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4498 F: drivers/regulator/lochnagar-regulator.c
4499 F: include/dt-bindings/clk/lochnagar.h
4500 F: include/dt-bindings/pinctrl/lochnagar.h
4501 F: include/linux/mfd/lochnagar*
4502 F: sound/soc/codecs/lochnagar-sc.c
4504 CIRRUS LOGIC MADERA CODEC DRIVERS
4505 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4506 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4507 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4508 L: patches@opensource.cirrus.com
4510 W: https://github.com/CirrusLogic/linux-drivers/wiki
4511 T: git https://github.com/CirrusLogic/linux-drivers.git
4512 F: Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4513 F: Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4514 F: Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4515 F: drivers/gpio/gpio-madera*
4516 F: drivers/irqchip/irq-madera*
4517 F: drivers/mfd/cs47l*
4518 F: drivers/mfd/madera*
4519 F: drivers/pinctrl/cirrus/*
4520 F: include/dt-bindings/sound/madera*
4521 F: include/linux/irqchip/irq-madera*
4522 F: include/linux/mfd/madera/*
4523 F: include/sound/madera*
4524 F: sound/soc/codecs/cs47l*
4525 F: sound/soc/codecs/madera*
4527 CISCO FCOE HBA DRIVER
4528 M: Satish Kharat <satishkh@cisco.com>
4529 M: Sesidhar Baddela <sebaddel@cisco.com>
4530 M: Karan Tilak Kumar <kartilak@cisco.com>
4531 L: linux-scsi@vger.kernel.org
4533 F: drivers/scsi/fnic/
4535 CISCO SCSI HBA DRIVER
4536 M: Karan Tilak Kumar <kartilak@cisco.com>
4537 M: Sesidhar Baddela <sebaddel@cisco.com>
4538 L: linux-scsi@vger.kernel.org
4540 F: drivers/scsi/snic/
4542 CISCO VIC ETHERNET NIC DRIVER
4543 M: Christian Benvenuti <benve@cisco.com>
4544 M: Govindarajulu Varadarajan <_govind@gmx.com>
4546 F: drivers/net/ethernet/cisco/enic/
4548 CISCO VIC LOW LATENCY NIC DRIVER
4549 M: Christian Benvenuti <benve@cisco.com>
4550 M: Nelson Escobar <neescoba@cisco.com>
4552 F: drivers/infiniband/hw/usnic/
4555 M: Miguel Ojeda <ojeda@kernel.org>
4559 CLANG/LLVM BUILD SUPPORT
4560 M: Nathan Chancellor <nathan@kernel.org>
4561 M: Nick Desaulniers <ndesaulniers@google.com>
4562 L: llvm@lists.linux.dev
4564 W: https://clangbuiltlinux.github.io/
4565 B: https://github.com/ClangBuiltLinux/linux/issues
4566 C: irc://irc.libera.chat/clangbuiltlinux
4567 F: Documentation/kbuild/llvm.rst
4568 F: include/linux/compiler-clang.h
4569 F: scripts/Makefile.clang
4570 F: scripts/clang-tools/
4571 K: \b(?i:clang|llvm)\b
4573 CLANG CONTROL FLOW INTEGRITY SUPPORT
4574 M: Sami Tolvanen <samitolvanen@google.com>
4575 M: Kees Cook <keescook@chromium.org>
4576 R: Nathan Chancellor <nathan@kernel.org>
4577 R: Nick Desaulniers <ndesaulniers@google.com>
4578 L: llvm@lists.linux.dev
4580 B: https://github.com/ClangBuiltLinux/linux/issues
4581 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4582 F: include/linux/cfi.h
4586 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4587 L: linux-kernel@vger.kernel.org
4589 F: include/linux/cleancache.h
4593 M: Russell King <linux@armlinux.org.uk>
4594 L: linux-clk@vger.kernel.org
4596 F: include/linux/clk.h
4598 CLOCKSOURCE, CLOCKEVENT DRIVERS
4599 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4600 M: Thomas Gleixner <tglx@linutronix.de>
4601 L: linux-kernel@vger.kernel.org
4603 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4604 F: Documentation/devicetree/bindings/timer/
4605 F: drivers/clocksource/
4608 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4609 M: Daniel Oliveira Nascimento <don@syst.com.br>
4610 L: platform-driver-x86@vger.kernel.org
4612 F: drivers/platform/x86/classmate-laptop.c
4615 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4616 L: linux-media@vger.kernel.org
4618 W: https://linuxtv.org
4619 T: git git://linuxtv.org/media_tree.git
4620 F: drivers/media/pci/cobalt/
4622 COCCINELLE/Semantic Patches (SmPL)
4623 M: Julia Lawall <Julia.Lawall@inria.fr>
4624 M: Gilles Muller <Gilles.Muller@inria.fr>
4625 M: Nicolas Palix <nicolas.palix@imag.fr>
4626 M: Michal Marek <michal.lkml@markovi.net>
4627 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
4629 W: http://coccinelle.lip6.fr/
4630 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4631 F: Documentation/dev-tools/coccinelle.rst
4632 F: scripts/coccicheck
4633 F: scripts/coccinelle/
4636 M: Jan Harkes <jaharkes@cs.cmu.edu>
4638 L: codalist@coda.cs.cmu.edu
4640 W: http://www.coda.cs.cmu.edu/
4641 F: Documentation/filesystems/coda.rst
4643 F: include/linux/coda*.h
4644 F: include/uapi/linux/coda*.h
4646 CODA V4L2 MEM2MEM DRIVER
4647 M: Philipp Zabel <p.zabel@pengutronix.de>
4648 L: linux-media@vger.kernel.org
4650 F: Documentation/devicetree/bindings/media/coda.yaml
4651 F: drivers/media/platform/coda/
4654 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4656 F: Documentation/process/code-of-conduct-interpretation.rst
4657 F: Documentation/process/code-of-conduct.rst
4660 M: Ian Abbott <abbotti@mev.co.uk>
4661 M: H Hartley Sweeten <hsweeten@visionengravers.com>
4665 COMMON CLK FRAMEWORK
4666 M: Michael Turquette <mturquette@baylibre.com>
4667 M: Stephen Boyd <sboyd@kernel.org>
4668 L: linux-clk@vger.kernel.org
4670 Q: http://patchwork.kernel.org/project/linux-clk/list/
4671 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4672 F: Documentation/devicetree/bindings/clock/
4674 F: include/linux/clk-pr*
4675 F: include/linux/clk/
4676 F: include/linux/of_clk.h
4677 X: drivers/clk/clkdev.c
4679 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4680 M: Steve French <sfrench@samba.org>
4681 L: linux-cifs@vger.kernel.org
4682 L: samba-technical@lists.samba.org (moderated for non-subscribers)
4684 W: http://linux-cifs.samba.org/
4685 T: git git://git.samba.org/sfrench/cifs-2.6.git
4686 F: Documentation/admin-guide/cifs/
4690 COMPACTPCI HOTPLUG CORE
4691 M: Scott Murray <scott@spiteful.org>
4692 L: linux-pci@vger.kernel.org
4694 F: drivers/pci/hotplug/cpci_hotplug*
4696 COMPACTPCI HOTPLUG GENERIC DRIVER
4697 M: Scott Murray <scott@spiteful.org>
4698 L: linux-pci@vger.kernel.org
4700 F: drivers/pci/hotplug/cpcihp_generic.c
4702 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4703 M: Scott Murray <scott@spiteful.org>
4704 L: linux-pci@vger.kernel.org
4706 F: drivers/pci/hotplug/cpcihp_zt5550.*
4708 COMPAL LAPTOP SUPPORT
4709 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4710 L: platform-driver-x86@vger.kernel.org
4712 F: drivers/platform/x86/compal-laptop.c
4715 M: Miguel Ojeda <ojeda@kernel.org>
4716 R: Nick Desaulniers <ndesaulniers@google.com>
4718 F: include/linux/compiler_attributes.h
4720 COMPUTE EXPRESS LINK (CXL)
4721 M: Alison Schofield <alison.schofield@intel.com>
4722 M: Vishal Verma <vishal.l.verma@intel.com>
4723 M: Ira Weiny <ira.weiny@intel.com>
4724 M: Ben Widawsky <ben.widawsky@intel.com>
4725 M: Dan Williams <dan.j.williams@intel.com>
4726 L: linux-cxl@vger.kernel.org
4729 F: include/uapi/linux/cxl_mem.h
4731 CONEXANT ACCESSRUNNER USB DRIVER
4732 L: accessrunner-general@lists.sourceforge.net
4734 W: http://accessrunner.sourceforge.net/
4735 F: drivers/usb/atm/cxacru.c
4738 M: Joel Becker <jlbec@evilplan.org>
4739 M: Christoph Hellwig <hch@lst.de>
4741 T: git git://git.infradead.org/users/hch/configfs.git
4743 F: include/linux/configfs.h
4744 F: samples/configfs/
4747 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4749 F: drivers/video/console/
4750 F: include/linux/console*
4753 M: Frederic Weisbecker <frederic@kernel.org>
4755 F: kernel/context_tracking.c
4756 F: include/linux/context_tracking*
4758 CONTROL GROUP (CGROUP)
4759 M: Tejun Heo <tj@kernel.org>
4760 M: Zefan Li <lizefan.x@bytedance.com>
4761 M: Johannes Weiner <hannes@cmpxchg.org>
4762 L: cgroups@vger.kernel.org
4764 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4765 F: Documentation/admin-guide/cgroup-v1/
4766 F: Documentation/admin-guide/cgroup-v2.rst
4767 F: include/linux/cgroup*
4770 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4771 M: Tejun Heo <tj@kernel.org>
4772 M: Jens Axboe <axboe@kernel.dk>
4773 L: cgroups@vger.kernel.org
4774 L: linux-block@vger.kernel.org
4775 T: git git://git.kernel.dk/linux-block
4776 F: Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4777 F: block/bfq-cgroup.c
4778 F: block/blk-cgroup.c
4779 F: block/blk-iolatency.c
4780 F: block/blk-throttle.c
4781 F: include/linux/blk-cgroup.h
4783 CONTROL GROUP - CPUSET
4784 M: Zefan Li <lizefan.x@bytedance.com>
4785 L: cgroups@vger.kernel.org
4787 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4788 F: Documentation/admin-guide/cgroup-v1/cpusets.rst
4789 F: include/linux/cpuset.h
4790 F: kernel/cgroup/cpuset.c
4792 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4793 M: Johannes Weiner <hannes@cmpxchg.org>
4794 M: Michal Hocko <mhocko@kernel.org>
4795 M: Vladimir Davydov <vdavydov.dev@gmail.com>
4796 L: cgroups@vger.kernel.org
4797 L: linux-mm@kvack.org
4802 CORETEMP HARDWARE MONITORING DRIVER
4803 M: Fenghua Yu <fenghua.yu@intel.com>
4804 L: linux-hwmon@vger.kernel.org
4806 F: Documentation/hwmon/coretemp.rst
4807 F: drivers/hwmon/coretemp.c
4809 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4810 M: Marius Zachmann <mail@mariuszachmann.de>
4811 L: linux-hwmon@vger.kernel.org
4813 F: drivers/hwmon/corsair-cpro.c
4815 CORSAIR-PSU HARDWARE MONITOR DRIVER
4816 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
4817 L: linux-hwmon@vger.kernel.org
4819 F: Documentation/hwmon/corsair-psu.rst
4820 F: drivers/hwmon/corsair-psu.c
4822 COSA/SRP SYNC SERIAL DRIVER
4823 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4825 W: http://www.fi.muni.cz/~kas/cosa/
4826 F: drivers/net/wan/cosa*
4829 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4830 L: linux-iio@vger.kernel.org
4832 F: Documentation/ABI/testing/sysfs-bus-counter
4833 F: Documentation/driver-api/generic-counter.rst
4835 F: include/linux/counter.h
4836 F: include/linux/counter_enum.h
4839 M: Bence Csókás <bence98@sch.bme.hu>
4841 F: drivers/i2c/busses/i2c-cp2615.c
4843 CPMAC ETHERNET DRIVER
4844 M: Florian Fainelli <f.fainelli@gmail.com>
4845 L: netdev@vger.kernel.org
4847 F: drivers/net/ethernet/ti/cpmac.c
4849 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4850 M: Viresh Kumar <viresh.kumar@linaro.org>
4851 M: Sudeep Holla <sudeep.holla@arm.com>
4852 L: linux-pm@vger.kernel.org
4854 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4855 F: drivers/cpufreq/vexpress-spc-cpufreq.c
4857 CPU FREQUENCY SCALING FRAMEWORK
4858 M: "Rafael J. Wysocki" <rafael@kernel.org>
4859 M: Viresh Kumar <viresh.kumar@linaro.org>
4860 L: linux-pm@vger.kernel.org
4862 B: https://bugzilla.kernel.org
4863 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4864 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4865 F: Documentation/admin-guide/pm/cpufreq.rst
4866 F: Documentation/admin-guide/pm/intel_pstate.rst
4867 F: Documentation/cpu-freq/
4868 F: Documentation/devicetree/bindings/cpufreq/
4870 F: include/linux/cpufreq.h
4871 F: include/linux/sched/cpufreq.h
4872 F: kernel/sched/cpufreq*.c
4873 F: tools/testing/selftests/cpufreq/
4875 CPU IDLE TIME MANAGEMENT FRAMEWORK
4876 M: "Rafael J. Wysocki" <rafael@kernel.org>
4877 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4878 L: linux-pm@vger.kernel.org
4880 B: https://bugzilla.kernel.org
4881 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4882 F: Documentation/admin-guide/pm/cpuidle.rst
4883 F: Documentation/driver-api/pm/cpuidle.rst
4885 F: include/linux/cpuidle.h
4887 CPU POWER MONITORING SUBSYSTEM
4888 M: Thomas Renninger <trenn@suse.com>
4889 M: Shuah Khan <shuah@kernel.org>
4890 M: Shuah Khan <skhan@linuxfoundation.org>
4891 L: linux-pm@vger.kernel.org
4893 F: tools/power/cpupower/
4896 M: "H. Peter Anvin" <hpa@zytor.com>
4898 F: arch/x86/kernel/cpuid.c
4899 F: arch/x86/kernel/msr.c
4901 CPUIDLE DRIVER - ARM BIG LITTLE
4902 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4903 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4904 L: linux-pm@vger.kernel.org
4905 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4907 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4908 F: drivers/cpuidle/cpuidle-big_little.c
4910 CPUIDLE DRIVER - ARM EXYNOS
4911 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4912 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4913 M: Kukjin Kim <kgene@kernel.org>
4914 L: linux-pm@vger.kernel.org
4915 L: linux-samsung-soc@vger.kernel.org
4917 F: arch/arm/mach-exynos/pm.c
4918 F: drivers/cpuidle/cpuidle-exynos.c
4919 F: include/linux/platform_data/cpuidle-exynos.h
4921 CPUIDLE DRIVER - ARM PSCI
4922 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4923 M: Sudeep Holla <sudeep.holla@arm.com>
4924 L: linux-pm@vger.kernel.org
4925 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4927 F: drivers/cpuidle/cpuidle-psci.c
4929 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4930 M: Ulf Hansson <ulf.hansson@linaro.org>
4931 L: linux-pm@vger.kernel.org
4932 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4934 F: drivers/cpuidle/cpuidle-psci.h
4935 F: drivers/cpuidle/cpuidle-psci-domain.c
4938 M: Nicolas Pitre <nico@fluxnic.net>
4940 F: Documentation/filesystems/cramfs.rst
4944 M: Bastien Nocera <hadess@hadess.net>
4945 L: linux-input@vger.kernel.org
4947 F: drivers/hid/hid-creative-sb0540.c
4950 M: Herbert Xu <herbert@gondor.apana.org.au>
4951 M: "David S. Miller" <davem@davemloft.net>
4952 L: linux-crypto@vger.kernel.org
4954 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4955 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4956 F: Documentation/crypto/
4957 F: Documentation/devicetree/bindings/crypto/
4962 F: include/linux/crypto*
4965 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4966 M: Neil Horman <nhorman@tuxdriver.com>
4967 L: linux-crypto@vger.kernel.org
4969 F: crypto/ansi_cprng.c
4973 M: Hans Verkuil <hverkuil@xs4all.nl>
4974 L: linux-media@vger.kernel.org
4976 W: http://linuxtv.org
4977 T: git git://linuxtv.org/media_tree.git
4978 F: drivers/media/i2c/cs3308.c
4980 CS5535 Audio ALSA driver
4981 M: Jaya Kumar <jayakumar.alsa@gmail.com>
4983 F: sound/pci/cs5535audio/
4985 CSI DRIVERS FOR ALLWINNER V3s
4986 M: Yong Deng <yong.deng@magewell.com>
4987 L: linux-media@vger.kernel.org
4989 T: git git://linuxtv.org/media_tree.git
4990 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4991 F: drivers/media/platform/sunxi/sun6i-csi/
4994 M: Solomon Peachy <pizza@shaftnet.org>
4996 F: drivers/net/wireless/st/cw1200/
4998 CX18 VIDEO4LINUX DRIVER
4999 M: Andy Walls <awalls@md.metrocast.net>
5000 L: linux-media@vger.kernel.org
5002 W: https://linuxtv.org
5003 T: git git://linuxtv.org/media_tree.git
5004 F: drivers/media/pci/cx18/
5005 F: include/uapi/linux/ivtv*
5007 CX2341X MPEG ENCODER HELPER MODULE
5008 M: Hans Verkuil <hverkuil@xs4all.nl>
5009 L: linux-media@vger.kernel.org
5011 W: https://linuxtv.org
5012 T: git git://linuxtv.org/media_tree.git
5013 F: drivers/media/common/cx2341x*
5014 F: include/media/drv-intf/cx2341x.h
5016 CX24120 MEDIA DRIVER
5017 M: Jemma Denson <jdenson@gmail.com>
5018 M: Patrick Boettcher <patrick.boettcher@posteo.de>
5019 L: linux-media@vger.kernel.org
5021 W: https://linuxtv.org
5022 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5023 F: drivers/media/dvb-frontends/cx24120*
5025 CX88 VIDEO4LINUX DRIVER
5026 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5027 L: linux-media@vger.kernel.org
5029 W: https://linuxtv.org
5030 T: git git://linuxtv.org/media_tree.git
5031 F: Documentation/driver-api/media/drivers/cx88*
5032 F: drivers/media/pci/cx88/
5034 CXD2820R MEDIA DRIVER
5035 M: Antti Palosaari <crope@iki.fi>
5036 L: linux-media@vger.kernel.org
5038 W: https://linuxtv.org
5039 W: http://palosaari.fi/linux/
5040 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5041 T: git git://linuxtv.org/anttip/media_tree.git
5042 F: drivers/media/dvb-frontends/cxd2820r*
5044 CXGB3 ETHERNET DRIVER (CXGB3)
5045 M: Raju Rangoju <rajur@chelsio.com>
5046 L: netdev@vger.kernel.org
5048 W: http://www.chelsio.com
5049 F: drivers/net/ethernet/chelsio/cxgb3/
5051 CXGB3 ISCSI DRIVER (CXGB3I)
5052 M: Karen Xie <kxie@chelsio.com>
5053 L: linux-scsi@vger.kernel.org
5055 W: http://www.chelsio.com
5056 F: drivers/scsi/cxgbi/cxgb3i
5058 CXGB4 CRYPTO DRIVER (chcr)
5059 M: Ayush Sawal <ayush.sawal@chelsio.com>
5060 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5061 M: Rohit Maheshwari <rohitm@chelsio.com>
5062 L: linux-crypto@vger.kernel.org
5064 W: http://www.chelsio.com
5065 F: drivers/crypto/chelsio
5067 CXGB4 INLINE CRYPTO DRIVER
5068 M: Ayush Sawal <ayush.sawal@chelsio.com>
5069 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5070 M: Rohit Maheshwari <rohitm@chelsio.com>
5071 L: netdev@vger.kernel.org
5073 W: http://www.chelsio.com
5074 F: drivers/net/ethernet/chelsio/inline_crypto/
5076 CXGB4 ETHERNET DRIVER (CXGB4)
5077 M: Raju Rangoju <rajur@chelsio.com>
5078 L: netdev@vger.kernel.org
5080 W: http://www.chelsio.com
5081 F: drivers/net/ethernet/chelsio/cxgb4/
5083 CXGB4 ISCSI DRIVER (CXGB4I)
5084 M: Karen Xie <kxie@chelsio.com>
5085 L: linux-scsi@vger.kernel.org
5087 W: http://www.chelsio.com
5088 F: drivers/scsi/cxgbi/cxgb4i
5090 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5091 M: Potnuri Bharat Teja <bharat@chelsio.com>
5092 L: linux-rdma@vger.kernel.org
5094 W: http://www.openfabrics.org
5095 F: drivers/infiniband/hw/cxgb4/
5096 F: include/uapi/rdma/cxgb4-abi.h
5098 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5099 M: Raju Rangoju <rajur@chelsio.com>
5100 L: netdev@vger.kernel.org
5102 W: http://www.chelsio.com
5103 F: drivers/net/ethernet/chelsio/cxgb4vf/
5105 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5106 M: Frederic Barrat <fbarrat@linux.ibm.com>
5107 M: Andrew Donnellan <ajd@linux.ibm.com>
5108 L: linuxppc-dev@lists.ozlabs.org
5110 F: Documentation/ABI/testing/sysfs-class-cxl
5111 F: Documentation/powerpc/cxl.rst
5112 F: arch/powerpc/platforms/powernv/pci-cxl.c
5113 F: drivers/misc/cxl/
5114 F: include/misc/cxl*
5115 F: include/uapi/misc/cxl.h
5117 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5118 M: Manoj N. Kumar <manoj@linux.ibm.com>
5119 M: Matthew R. Ochs <mrochs@linux.ibm.com>
5120 M: Uma Krishnan <ukrishn@linux.ibm.com>
5121 L: linux-scsi@vger.kernel.org
5123 F: Documentation/powerpc/cxlflash.rst
5124 F: drivers/scsi/cxlflash/
5125 F: include/uapi/scsi/cxlflash_ioctl.h
5128 M: Russell King <linux@armlinux.org.uk>
5129 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5131 W: http://www.armlinux.org.uk/
5132 F: drivers/video/fbdev/cyber2000fb.*
5134 CYCLADES PC300 DRIVER
5136 F: drivers/net/wan/pc300*
5138 CYPRESS_FIRMWARE MEDIA DRIVER
5139 M: Antti Palosaari <crope@iki.fi>
5140 L: linux-media@vger.kernel.org
5142 W: https://linuxtv.org
5143 W: http://palosaari.fi/linux/
5144 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5145 T: git git://linuxtv.org/anttip/media_tree.git
5146 F: drivers/media/common/cypress_firmware*
5148 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5149 M: Linus Walleij <linus.walleij@linaro.org>
5150 L: linux-input@vger.kernel.org
5152 F: drivers/input/touchscreen/cy8ctma140.c
5154 CYTTSP TOUCHSCREEN DRIVER
5155 M: Linus Walleij <linus.walleij@linaro.org>
5156 L: linux-input@vger.kernel.org
5158 F: drivers/input/touchscreen/cyttsp*
5160 D-LINK DIR-685 TOUCHKEYS DRIVER
5161 M: Linus Walleij <linus.walleij@linaro.org>
5162 L: linux-input@vger.kernel.org
5164 F: drivers/input/keyboard/dlink-dir685-touchkeys.c
5166 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5167 M: Joshua Kinard <kumba@gentoo.org>
5169 F: drivers/rtc/rtc-ds1685.c
5170 F: include/linux/rtc/ds1685.h
5172 DAMA SLAVE for AX.25
5173 M: Joerg Reuter <jreuter@yaina.de>
5174 L: linux-hams@vger.kernel.org
5176 W: http://yaina.de/jreuter/
5177 W: http://www.qsl.net/dl1bke/
5178 F: net/ax25/af_ax25.c
5179 F: net/ax25/ax25_dev.c
5180 F: net/ax25/ax25_ds_*
5181 F: net/ax25/ax25_in.c
5182 F: net/ax25/ax25_out.c
5183 F: net/ax25/ax25_timer.c
5184 F: net/ax25/sysctl_net_ax25.c
5187 M: SeongJae Park <sjpark@amazon.de>
5188 L: linux-mm@kvack.org
5190 F: Documentation/admin-guide/mm/damon/
5191 F: Documentation/vm/damon/
5192 F: include/linux/damon.h
5193 F: include/trace/events/damon.h
5195 F: tools/testing/selftests/damon/
5197 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5198 L: netdev@vger.kernel.org
5200 F: Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5201 F: drivers/net/ethernet/dec/tulip/dmfe.c
5203 DC390/AM53C974 SCSI driver
5204 M: Hannes Reinecke <hare@suse.com>
5205 L: linux-scsi@vger.kernel.org
5207 F: drivers/scsi/am53c974.c
5210 M: Oliver Neukum <oliver@neukum.org>
5211 M: Ali Akcaagac <aliakc@web.de>
5212 M: Jamie Lenehan <lenehan@twibble.org>
5213 L: dc395x@twibble.org
5215 W: http://twibble.org/dist/dc395x/
5216 W: http://lists.twibble.org/mailman/listinfo/dc395x/
5217 F: Documentation/scsi/dc395x.rst
5218 F: drivers/scsi/dc395x.*
5221 L: dccp@vger.kernel.org
5223 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5224 F: include/linux/dccp.h
5225 F: include/linux/tfrc.h
5226 F: include/uapi/linux/dccp.h
5229 DECnet NETWORK LAYER
5230 L: linux-decnet-user@lists.sourceforge.net
5232 W: http://linux-decnet.sourceforge.net
5233 F: Documentation/networking/decnet.rst
5236 DECSTATION PLATFORM SUPPORT
5237 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5238 L: linux-mips@vger.kernel.org
5240 W: http://www.linux-mips.org/wiki/DECstation
5242 F: arch/mips/include/asm/dec/
5243 F: arch/mips/include/asm/mach-dec/
5245 DEFXX FDDI NETWORK DRIVER
5246 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5248 F: drivers/net/fddi/defxx.*
5250 DEFZA FDDI NETWORK DRIVER
5251 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5253 F: drivers/net/fddi/defza.*
5255 DEINTERLACE DRIVERS FOR ALLWINNER H3
5256 M: Jernej Skrabec <jernej.skrabec@gmail.com>
5257 L: linux-media@vger.kernel.org
5259 T: git git://linuxtv.org/media_tree.git
5260 F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5261 F: drivers/media/platform/sunxi/sun8i-di/
5264 M: Matthew Garrett <mjg59@srcf.ucam.org>
5265 M: Pali Rohár <pali@kernel.org>
5266 L: platform-driver-x86@vger.kernel.org
5268 F: drivers/platform/x86/dell/dell-laptop.c
5270 DELL LAPTOP FREEFALL DRIVER
5271 M: Pali Rohár <pali@kernel.org>
5273 F: drivers/platform/x86/dell/dell-smo8800.c
5275 DELL LAPTOP RBTN DRIVER
5276 M: Pali Rohár <pali@kernel.org>
5278 F: drivers/platform/x86/dell/dell-rbtn.*
5280 DELL LAPTOP SMM DRIVER
5281 M: Pali Rohár <pali@kernel.org>
5283 F: drivers/hwmon/dell-smm-hwmon.c
5284 F: include/uapi/linux/i8k.h
5286 DELL REMOTE BIOS UPDATE DRIVER
5287 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5288 L: platform-driver-x86@vger.kernel.org
5290 F: drivers/platform/x86/dell/dell_rbu.c
5293 M: Pali Rohár <pali@kernel.org>
5294 L: Dell.Client.Kernel@dell.com
5295 L: platform-driver-x86@vger.kernel.org
5297 F: drivers/platform/x86/dell/dell-smbios.*
5299 DELL SMBIOS SMM DRIVER
5300 L: Dell.Client.Kernel@dell.com
5301 L: platform-driver-x86@vger.kernel.org
5303 F: drivers/platform/x86/dell/dell-smbios-smm.c
5305 DELL SMBIOS WMI DRIVER
5306 L: Dell.Client.Kernel@dell.com
5307 L: platform-driver-x86@vger.kernel.org
5309 F: drivers/platform/x86/dell/dell-smbios-wmi.c
5310 F: tools/wmi/dell-smbios-example.c
5312 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5313 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5314 L: platform-driver-x86@vger.kernel.org
5316 F: Documentation/driver-api/dcdbas.rst
5317 F: drivers/platform/x86/dell/dcdbas.*
5319 DELL WMI DESCRIPTOR DRIVER
5320 L: Dell.Client.Kernel@dell.com
5322 F: drivers/platform/x86/dell/dell-wmi-descriptor.c
5324 DELL WMI SYSMAN DRIVER
5325 M: Divya Bharathi <divya.bharathi@dell.com>
5326 M: Prasanth Ksr <prasanth.ksr@dell.com>
5327 L: Dell.Client.Kernel@dell.com
5328 L: platform-driver-x86@vger.kernel.org
5330 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
5331 F: drivers/platform/x86/dell/dell-wmi-sysman/
5333 DELL WMI NOTIFICATIONS DRIVER
5334 M: Matthew Garrett <mjg59@srcf.ucam.org>
5335 M: Pali Rohár <pali@kernel.org>
5337 F: drivers/platform/x86/dell/dell-wmi-base.c
5339 DELL WMI HARDWARE PRIVACY SUPPORT
5340 M: Perry Yuan <Perry.Yuan@dell.com>
5341 L: Dell.Client.Kernel@dell.com
5342 L: platform-driver-x86@vger.kernel.org
5344 F: drivers/platform/x86/dell/dell-wmi-privacy.c
5346 DELTA ST MEDIA DRIVER
5347 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
5348 L: linux-media@vger.kernel.org
5350 W: https://linuxtv.org
5351 T: git git://linuxtv.org/media_tree.git
5352 F: drivers/media/platform/sti/delta
5354 DELTA DPS920AB PSU DRIVER
5355 M: Robert Marko <robert.marko@sartura.hr>
5356 L: linux-hwmon@vger.kernel.org
5358 F: Documentation/hwmon/dps920ab.rst
5359 F: drivers/hwmon/pmbus/dps920ab.c
5362 L: linux-mtd@lists.infradead.org
5364 F: drivers/mtd/nand/raw/denali*
5366 DESIGNWARE EDMA CORE IP DRIVER
5367 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5368 L: dmaengine@vger.kernel.org
5370 F: drivers/dma/dw-edma/
5371 F: include/linux/dma/edma.h
5373 DESIGNWARE XDATA IP DRIVER
5374 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5375 L: linux-pci@vger.kernel.org
5377 F: Documentation/misc-devices/dw-xdata-pcie.rst
5378 F: drivers/misc/dw-xdata-pcie.c
5380 DESIGNWARE USB2 DRD IP DRIVER
5381 M: Minas Harutyunyan <hminas@synopsys.com>
5382 L: linux-usb@vger.kernel.org
5384 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5385 F: drivers/usb/dwc2/
5387 DESIGNWARE USB3 DRD IP DRIVER
5388 M: Felipe Balbi <balbi@kernel.org>
5389 L: linux-usb@vger.kernel.org
5391 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5392 F: drivers/usb/dwc3/
5394 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5395 M: Andreas Klinger <ak@it-klinger.de>
5396 L: linux-iio@vger.kernel.org
5398 F: Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5399 F: drivers/iio/proximity/srf*.c
5401 DEVICE COREDUMP (DEV_COREDUMP)
5402 M: Johannes Berg <johannes@sipsolutions.net>
5403 L: linux-kernel@vger.kernel.org
5405 F: drivers/base/devcoredump.c
5406 F: include/linux/devcoredump.h
5408 DEVICE DEPENDENCY HELPER SCRIPT
5409 M: Saravana Kannan <saravanak@google.com>
5410 L: linux-kernel@vger.kernel.org
5412 F: scripts/dev-needs.sh
5414 DEVICE DIRECT ACCESS (DAX)
5415 M: Dan Williams <dan.j.williams@intel.com>
5416 M: Vishal Verma <vishal.l.verma@intel.com>
5417 M: Dave Jiang <dave.jiang@intel.com>
5418 L: nvdimm@lists.linux.dev
5422 DEVICE FREQUENCY (DEVFREQ)
5423 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5424 M: Kyungmin Park <kyungmin.park@samsung.com>
5425 M: Chanwoo Choi <cw00.choi@samsung.com>
5426 L: linux-pm@vger.kernel.org
5428 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5429 F: Documentation/devicetree/bindings/devfreq/
5431 F: include/linux/devfreq.h
5432 F: include/trace/events/devfreq.h
5434 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5435 M: Chanwoo Choi <cw00.choi@samsung.com>
5436 L: linux-pm@vger.kernel.org
5438 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5439 F: Documentation/devicetree/bindings/devfreq/event/
5440 F: drivers/devfreq/devfreq-event.c
5441 F: drivers/devfreq/event/
5442 F: include/dt-bindings/pmu/exynos_ppmu.h
5443 F: include/linux/devfreq-event.h
5445 DEVICE NUMBER REGISTRY
5446 M: Torben Mathiasen <device@lanana.org>
5448 W: http://lanana.org/docs/device-list/index.html
5450 DEVICE RESOURCE MANAGEMENT HELPERS
5451 M: Hans de Goede <hdegoede@redhat.com>
5452 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5454 F: include/linux/devm-helpers.h
5457 M: Alasdair Kergon <agk@redhat.com>
5458 M: Mike Snitzer <snitzer@redhat.com>
5459 M: dm-devel@redhat.com
5460 L: dm-devel@redhat.com
5462 W: http://sources.redhat.com/dm
5463 Q: http://patchwork.kernel.org/project/dm-devel/list/
5464 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5465 T: quilt http://people.redhat.com/agk/patches/linux/editing/
5466 F: Documentation/admin-guide/device-mapper/
5467 F: drivers/md/Kconfig
5468 F: drivers/md/Makefile
5470 F: drivers/md/persistent-data/
5471 F: include/linux/device-mapper.h
5472 F: include/linux/dm-*.h
5473 F: include/uapi/linux/dm-*.h
5476 M: Jiri Pirko <jiri@nvidia.com>
5477 L: netdev@vger.kernel.org
5479 F: Documentation/networking/devlink
5480 F: include/net/devlink.h
5481 F: include/uapi/linux/devlink.h
5482 F: net/core/devlink.c
5484 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5485 M: Christoph Niedermaier <cniedermaier@dh-electronics.com>
5486 L: kernel@dh-electronics.com
5488 F: arch/arm/boot/dts/imx6*-dhcom-*
5490 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5491 M: Marek Vasut <marex@denx.de>
5492 L: kernel@dh-electronics.com
5494 F: arch/arm/boot/dts/stm32mp1*-dhcom-*
5495 F: arch/arm/boot/dts/stm32mp1*-dhcor-*
5497 DIALOG SEMICONDUCTOR DRIVERS
5498 M: Support Opensource <support.opensource@diasemi.com>
5500 W: http://www.dialog-semiconductor.com/products
5501 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
5502 F: Documentation/devicetree/bindings/input/dlg,da72??.txt
5503 F: Documentation/devicetree/bindings/mfd/da90*.txt
5504 F: Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5505 F: Documentation/devicetree/bindings/regulator/da92*.txt
5506 F: Documentation/devicetree/bindings/regulator/slg51000.txt
5507 F: Documentation/devicetree/bindings/sound/da[79]*.txt
5508 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5509 F: Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5510 F: Documentation/hwmon/da90??.rst
5511 F: drivers/gpio/gpio-da90??.c
5512 F: drivers/hwmon/da90??-hwmon.c
5513 F: drivers/iio/adc/da91??-*.c
5514 F: drivers/input/misc/da72??.[ch]
5515 F: drivers/input/misc/da90??_onkey.c
5516 F: drivers/input/touchscreen/da9052_tsi.c
5517 F: drivers/leds/leds-da90??.c
5518 F: drivers/mfd/da903x.c
5519 F: drivers/mfd/da90??-*.c
5520 F: drivers/mfd/da91??-*.c
5521 F: drivers/pinctrl/pinctrl-da90??.c
5522 F: drivers/power/supply/da9052-battery.c
5523 F: drivers/power/supply/da91??-*.c
5524 F: drivers/regulator/da9???-regulator.[ch]
5525 F: drivers/regulator/slg51000-regulator.[ch]
5526 F: drivers/rtc/rtc-da90??.c
5527 F: drivers/thermal/da90??-thermal.c
5528 F: drivers/video/backlight/da90??_bl.c
5529 F: drivers/watchdog/da90??_wdt.c
5530 F: include/dt-bindings/regulator/dlg,da9*-regulator.h
5531 F: include/linux/mfd/da903x.h
5532 F: include/linux/mfd/da9052/
5533 F: include/linux/mfd/da9055/
5534 F: include/linux/mfd/da9062/
5535 F: include/linux/mfd/da9063/
5536 F: include/linux/mfd/da9150/
5537 F: include/linux/regulator/da9211.h
5538 F: include/sound/da[79]*.h
5539 F: sound/soc/codecs/da[79]*.[ch]
5541 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5542 M: William Breathitt Gray <vilhelm.gray@gmail.com>
5543 L: linux-gpio@vger.kernel.org
5545 F: drivers/gpio/gpio-gpio-mm.c
5547 DIOLAN U2C-12 I2C DRIVER
5548 M: Guenter Roeck <linux@roeck-us.net>
5549 L: linux-i2c@vger.kernel.org
5551 F: drivers/i2c/busses/i2c-diolan-u2c.c
5553 DIRECTORY NOTIFICATION (DNOTIFY)
5554 M: Jan Kara <jack@suse.cz>
5555 R: Amir Goldstein <amir73il@gmail.com>
5556 L: linux-fsdevel@vger.kernel.org
5558 F: Documentation/filesystems/dnotify.rst
5559 F: fs/notify/dnotify/
5560 F: include/linux/dnotify.h
5562 DISK GEOMETRY AND PARTITION HANDLING
5563 M: Andries Brouwer <aeb@cwi.nl>
5565 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5566 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5567 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5570 M: Jan Kara <jack@suse.com>
5572 F: Documentation/filesystems/quota.rst
5574 F: include/linux/quota*.h
5575 F: include/uapi/linux/quota*.h
5577 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5578 M: Bernie Thompson <bernie@plugable.com>
5579 L: linux-fbdev@vger.kernel.org
5581 W: http://plugable.com/category/projects/udlfb/
5582 F: Documentation/fb/udlfb.rst
5583 F: drivers/video/fbdev/udlfb.c
5584 F: include/video/udlfb.h
5586 DISTRIBUTED LOCK MANAGER (DLM)
5587 M: Christine Caulfield <ccaulfie@redhat.com>
5588 M: David Teigland <teigland@redhat.com>
5589 L: cluster-devel@redhat.com
5591 W: http://sources.redhat.com/cluster/
5592 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5595 DMA BUFFER SHARING FRAMEWORK
5596 M: Sumit Semwal <sumit.semwal@linaro.org>
5597 M: Christian König <christian.koenig@amd.com>
5598 L: linux-media@vger.kernel.org
5599 L: dri-devel@lists.freedesktop.org
5600 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5602 T: git git://anongit.freedesktop.org/drm/drm-misc
5603 F: Documentation/driver-api/dma-buf.rst
5605 F: include/linux/*fence.h
5606 F: include/linux/dma-buf*
5607 F: include/linux/dma-resv.h
5608 K: \bdma_(?:buf|fence|resv)\b
5610 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5611 M: Vinod Koul <vkoul@kernel.org>
5612 L: dmaengine@vger.kernel.org
5614 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5615 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5616 F: Documentation/devicetree/bindings/dma/
5617 F: Documentation/driver-api/dmaengine/
5619 F: include/linux/dma/
5620 F: include/linux/dmaengine.h
5621 F: include/linux/of_dma.h
5624 M: Christoph Hellwig <hch@lst.de>
5625 M: Marek Szyprowski <m.szyprowski@samsung.com>
5626 R: Robin Murphy <robin.murphy@arm.com>
5627 L: iommu@lists.linux-foundation.org
5629 W: http://git.infradead.org/users/hch/dma-mapping.git
5630 T: git git://git.infradead.org/users/hch/dma-mapping.git
5631 F: include/asm-generic/dma-mapping.h
5632 F: include/linux/dma-direct.h
5633 F: include/linux/dma-mapping.h
5634 F: include/linux/dma-map-ops.h
5637 DMA MAPPING BENCHMARK
5638 M: Barry Song <song.bao.hua@hisilicon.com>
5639 L: iommu@lists.linux-foundation.org
5640 F: kernel/dma/map_benchmark.c
5641 F: tools/testing/selftests/dma/
5643 DMA-BUF HEAPS FRAMEWORK
5644 M: Sumit Semwal <sumit.semwal@linaro.org>
5645 R: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5646 R: Liam Mark <lmark@codeaurora.org>
5647 R: Laura Abbott <labbott@redhat.com>
5648 R: Brian Starkey <Brian.Starkey@arm.com>
5649 R: John Stultz <john.stultz@linaro.org>
5650 L: linux-media@vger.kernel.org
5651 L: dri-devel@lists.freedesktop.org
5652 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5654 T: git git://anongit.freedesktop.org/drm/drm-misc
5655 F: drivers/dma-buf/dma-heap.c
5656 F: drivers/dma-buf/heaps/*
5657 F: include/linux/dma-heap.h
5658 F: include/uapi/linux/dma-heap.h
5660 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5661 M: Lukasz Luba <lukasz.luba@arm.com>
5662 L: linux-pm@vger.kernel.org
5663 L: linux-samsung-soc@vger.kernel.org
5665 F: Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5666 F: drivers/memory/samsung/exynos5422-dmc.c
5668 DME1737 HARDWARE MONITOR DRIVER
5669 M: Juerg Haefliger <juergh@gmail.com>
5670 L: linux-hwmon@vger.kernel.org
5672 F: Documentation/hwmon/dme1737.rst
5673 F: drivers/hwmon/dme1737.c
5676 M: Jean Delvare <jdelvare@suse.com>
5678 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5679 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
5680 F: drivers/firmware/dmi-id.c
5681 F: drivers/firmware/dmi_scan.c
5682 F: include/linux/dmi.h
5685 M: Jonathan Corbet <corbet@lwn.net>
5686 L: linux-doc@vger.kernel.org
5688 P: Documentation/doc-guide/maintainer-profile.rst
5689 T: git git://git.lwn.net/linux.git docs-next
5691 F: scripts/documentation-file-ref-check
5692 F: scripts/kernel-doc
5693 F: scripts/sphinx-pre-install
5694 X: Documentation/ABI/
5695 X: Documentation/admin-guide/media/
5696 X: Documentation/devicetree/
5697 X: Documentation/driver-api/media/
5698 X: Documentation/firmware-guide/acpi/
5699 X: Documentation/i2c/
5700 X: Documentation/power/
5701 X: Documentation/spi/
5702 X: Documentation/userspace-api/media/
5704 DOCUMENTATION REPORTING ISSUES
5705 M: Thorsten Leemhuis <linux@leemhuis.info>
5706 L: linux-doc@vger.kernel.org
5708 F: Documentation/admin-guide/reporting-issues.rst
5710 DOCUMENTATION SCRIPTS
5711 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5712 L: linux-doc@vger.kernel.org
5714 F: Documentation/sphinx/parse-headers.pl
5715 F: scripts/documentation-file-ref-check
5716 F: scripts/sphinx-pre-install
5718 DOCUMENTATION/ITALIAN
5719 M: Federico Vaga <federico.vaga@vaga.pv.it>
5720 L: linux-doc@vger.kernel.org
5722 F: Documentation/translations/it_IT
5724 DONGWOON DW9714 LENS VOICE COIL DRIVER
5725 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5726 L: linux-media@vger.kernel.org
5728 T: git git://linuxtv.org/media_tree.git
5729 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5730 F: drivers/media/i2c/dw9714.c
5732 DONGWOON DW9768 LENS VOICE COIL DRIVER
5733 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
5734 L: linux-media@vger.kernel.org
5736 T: git git://linuxtv.org/media_tree.git
5737 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5738 F: drivers/media/i2c/dw9768.c
5740 DONGWOON DW9807 LENS VOICE COIL DRIVER
5741 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5742 L: linux-media@vger.kernel.org
5744 T: git git://linuxtv.org/media_tree.git
5745 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5746 F: drivers/media/i2c/dw9807-vcm.c
5749 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
5750 L: blinux-list@redhat.com
5752 F: drivers/char/dtlk.c
5753 F: include/linux/dtlk.h
5755 DPAA2 DATAPATH I/O (DPIO) DRIVER
5756 M: Roy Pledge <Roy.Pledge@nxp.com>
5757 L: linux-kernel@vger.kernel.org
5759 F: drivers/soc/fsl/dpio
5761 DPAA2 ETHERNET DRIVER
5762 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5763 L: netdev@vger.kernel.org
5765 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5766 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5767 F: drivers/net/ethernet/freescale/dpaa2/Kconfig
5768 F: drivers/net/ethernet/freescale/dpaa2/Makefile
5769 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5770 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5771 F: drivers/net/ethernet/freescale/dpaa2/dpkg.h
5772 F: drivers/net/ethernet/freescale/dpaa2/dpmac*
5773 F: drivers/net/ethernet/freescale/dpaa2/dpni*
5775 DPAA2 ETHERNET SWITCH DRIVER
5776 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5777 L: netdev@vger.kernel.org
5779 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5780 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5781 F: drivers/net/ethernet/freescale/dpaa2/dpsw*
5783 DPT_I2O SCSI RAID DRIVER
5784 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5785 L: linux-scsi@vger.kernel.org
5787 W: http://www.adaptec.com/
5788 F: drivers/scsi/dpt*
5789 F: drivers/scsi/dpt/
5792 M: Philipp Reisner <philipp.reisner@linbit.com>
5793 M: Lars Ellenberg <lars.ellenberg@linbit.com>
5794 L: drbd-dev@lists.linbit.com
5796 W: http://www.drbd.org
5797 T: git git://git.linbit.com/linux-drbd.git
5798 T: git git://git.linbit.com/drbd-8.4.git
5799 F: Documentation/admin-guide/blockdev/
5800 F: drivers/block/drbd/
5803 DRIVER COMPONENT FRAMEWORK
5804 L: dri-devel@lists.freedesktop.org
5805 F: drivers/base/component.c
5806 F: include/linux/component.h
5808 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5809 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5810 R: "Rafael J. Wysocki" <rafael@kernel.org>
5812 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5813 F: Documentation/core-api/kobject.rst
5817 F: include/linux/debugfs.h
5818 F: include/linux/kobj*
5821 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5822 M: Nishanth Menon <nm@ti.com>
5823 L: linux-pm@vger.kernel.org
5825 F: drivers/soc/ti/smartreflex.c
5826 F: include/linux/power/smartreflex.h
5828 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5829 M: Maxime Ripard <mripard@kernel.org>
5830 M: Chen-Yu Tsai <wens@csie.org>
5831 R: Jernej Skrabec <jernej.skrabec@gmail.com>
5832 L: dri-devel@lists.freedesktop.org
5834 T: git git://anongit.freedesktop.org/drm/drm-misc
5835 F: drivers/gpu/drm/sun4i/sun8i*
5837 DRM DRIVER FOR ARM PL111 CLCD
5838 M: Emma Anholt <emma@anholt.net>
5840 T: git git://anongit.freedesktop.org/drm/drm-misc
5841 F: drivers/gpu/drm/pl111/
5843 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5844 M: Linus Walleij <linus.walleij@linaro.org>
5846 T: git git://anongit.freedesktop.org/drm/drm-misc
5847 F: Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5848 F: drivers/gpu/drm/panel/panel-arm-versatile.c
5850 DRM DRIVER FOR ASPEED BMC GFX
5851 M: Joel Stanley <joel@jms.id.au>
5852 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5854 T: git git://anongit.freedesktop.org/drm/drm-misc
5855 F: Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5856 F: drivers/gpu/drm/aspeed/
5858 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5859 M: Dave Airlie <airlied@redhat.com>
5860 R: Thomas Zimmermann <tzimmermann@suse.de>
5861 L: dri-devel@lists.freedesktop.org
5863 T: git git://anongit.freedesktop.org/drm/drm-misc
5864 F: drivers/gpu/drm/ast/
5866 DRM DRIVER FOR BOCHS VIRTUAL GPU
5867 M: Gerd Hoffmann <kraxel@redhat.com>
5868 L: virtualization@lists.linux-foundation.org
5870 T: git git://anongit.freedesktop.org/drm/drm-misc
5871 F: drivers/gpu/drm/tiny/bochs.c
5873 DRM DRIVER FOR BOE HIMAX8279D PANELS
5874 M: Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5876 F: Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5877 F: drivers/gpu/drm/panel/panel-boe-himax8279d.c
5879 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5880 M: Jagan Teki <jagan@amarulasolutions.com>
5882 F: Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5883 F: drivers/gpu/drm/bridge/chipone-icn6211.c
5885 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5886 M: Linus Walleij <linus.walleij@linaro.org>
5888 T: git git://anongit.freedesktop.org/drm/drm-misc
5889 F: drivers/gpu/drm/tve200/
5891 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5892 M: Icenowy Zheng <icenowy@aosc.io>
5894 F: Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5895 F: drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5897 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5898 M: Jagan Teki <jagan@amarulasolutions.com>
5900 F: Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5901 F: drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5903 DRM DRIVER FOR GENERIC USB DISPLAY
5904 M: Noralf Trønnes <noralf@tronnes.org>
5906 W: https://github.com/notro/gud/wiki
5907 T: git git://anongit.freedesktop.org/drm/drm-misc
5908 F: drivers/gpu/drm/gud/
5909 F: include/drm/gud.h
5911 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5912 M: Hans de Goede <hdegoede@redhat.com>
5914 T: git git://anongit.freedesktop.org/drm/drm-misc
5915 F: drivers/gpu/drm/tiny/gm12u320.c
5917 DRM DRIVER FOR HX8357D PANELS
5918 M: Emma Anholt <emma@anholt.net>
5920 T: git git://anongit.freedesktop.org/drm/drm-misc
5921 F: Documentation/devicetree/bindings/display/himax,hx8357d.txt
5922 F: drivers/gpu/drm/tiny/hx8357d.c
5924 DRM DRIVER FOR ILITEK ILI9225 PANELS
5925 M: David Lechner <david@lechnology.com>
5927 T: git git://anongit.freedesktop.org/drm/drm-misc
5928 F: Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5929 F: drivers/gpu/drm/tiny/ili9225.c
5931 DRM DRIVER FOR ILITEK ILI9486 PANELS
5932 M: Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5934 T: git git://anongit.freedesktop.org/drm/drm-misc
5935 F: Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5936 F: drivers/gpu/drm/tiny/ili9486.c
5938 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5939 S: Orphan / Obsolete
5940 F: drivers/gpu/drm/i810/
5941 F: include/uapi/drm/i810_drm.h
5943 DRM DRIVER FOR LVDS PANELS
5944 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5945 L: dri-devel@lists.freedesktop.org
5946 T: git git://anongit.freedesktop.org/drm/drm-misc
5948 F: drivers/gpu/drm/panel/panel-lvds.c
5949 F: Documentation/devicetree/bindings/display/panel/lvds.yaml
5951 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5952 M: Guido Günther <agx@sigxcpu.org>
5953 R: Purism Kernel Team <kernel@puri.sm>
5955 F: Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5956 F: drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5958 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5959 S: Orphan / Obsolete
5960 F: drivers/gpu/drm/mga/
5961 F: include/uapi/drm/mga_drm.h
5963 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5964 M: Dave Airlie <airlied@redhat.com>
5965 R: Thomas Zimmermann <tzimmermann@suse.de>
5966 L: dri-devel@lists.freedesktop.org
5968 T: git git://anongit.freedesktop.org/drm/drm-misc
5969 F: drivers/gpu/drm/mgag200/
5971 DRM DRIVER FOR MI0283QT
5972 M: Noralf Trønnes <noralf@tronnes.org>
5974 T: git git://anongit.freedesktop.org/drm/drm-misc
5975 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5976 F: drivers/gpu/drm/tiny/mi0283qt.c
5978 DRM DRIVER FOR MIPI DBI compatible panels
5979 M: Noralf Trønnes <noralf@tronnes.org>
5981 W: https://github.com/notro/panel-mipi-dbi/wiki
5982 T: git git://anongit.freedesktop.org/drm/drm-misc
5983 F: Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
5984 F: drivers/gpu/drm/tiny/panel-mipi-dbi.c
5986 DRM DRIVER FOR MSM ADRENO GPU
5987 M: Rob Clark <robdclark@gmail.com>
5988 M: Sean Paul <sean@poorly.run>
5989 L: linux-arm-msm@vger.kernel.org
5990 L: dri-devel@lists.freedesktop.org
5991 L: freedreno@lists.freedesktop.org
5993 T: git https://gitlab.freedesktop.org/drm/msm.git
5994 F: Documentation/devicetree/bindings/display/msm/
5995 F: drivers/gpu/drm/msm/
5996 F: include/uapi/drm/msm_drm.h
5998 DRM DRIVER FOR NOVATEK NT35510 PANELS
5999 M: Linus Walleij <linus.walleij@linaro.org>
6001 T: git git://anongit.freedesktop.org/drm/drm-misc
6002 F: Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6003 F: drivers/gpu/drm/panel/panel-novatek-nt35510.c
6005 DRM DRIVER FOR NOVATEK NT36672A PANELS
6006 M: Sumit Semwal <sumit.semwal@linaro.org>
6008 T: git git://anongit.freedesktop.org/drm/drm-misc
6009 F: Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6010 F: drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6012 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6013 M: Ben Skeggs <bskeggs@redhat.com>
6014 L: dri-devel@lists.freedesktop.org
6015 L: nouveau@lists.freedesktop.org
6017 T: git git://github.com/skeggsb/linux
6018 F: drivers/gpu/drm/nouveau/
6019 F: include/uapi/drm/nouveau_drm.h
6021 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6022 M: Stefan Mavrodiev <stefan@olimex.com>
6024 F: Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6025 F: drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6027 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6028 M: Noralf Trønnes <noralf@tronnes.org>
6030 T: git git://anongit.freedesktop.org/drm/drm-misc
6031 F: Documentation/devicetree/bindings/display/repaper.txt
6032 F: drivers/gpu/drm/tiny/repaper.c
6034 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6035 M: Dave Airlie <airlied@redhat.com>
6036 M: Gerd Hoffmann <kraxel@redhat.com>
6037 L: virtualization@lists.linux-foundation.org
6039 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6040 T: git git://anongit.freedesktop.org/drm/drm-misc
6041 F: drivers/gpu/drm/tiny/cirrus.c
6043 DRM DRIVER FOR QXL VIRTUAL GPU
6044 M: Dave Airlie <airlied@redhat.com>
6045 M: Gerd Hoffmann <kraxel@redhat.com>
6046 L: virtualization@lists.linux-foundation.org
6047 L: spice-devel@lists.freedesktop.org
6049 T: git git://anongit.freedesktop.org/drm/drm-misc
6050 F: drivers/gpu/drm/qxl/
6051 F: include/uapi/drm/qxl_drm.h
6053 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6054 S: Orphan / Obsolete
6055 F: drivers/gpu/drm/r128/
6056 F: include/uapi/drm/r128_drm.h
6058 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6059 M: Robert Chiras <robert.chiras@nxp.com>
6061 F: Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6062 F: drivers/gpu/drm/panel/panel-raydium-rm67191.c
6064 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6065 M: Linus Walleij <linus.walleij@linaro.org>
6067 T: git git://anongit.freedesktop.org/drm/drm-misc
6068 F: Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6069 F: drivers/gpu/drm/panel/panel-samsung-db7430.c
6071 DRM DRIVER FOR SITRONIX ST7703 PANELS
6072 M: Guido Günther <agx@sigxcpu.org>
6073 R: Purism Kernel Team <kernel@puri.sm>
6074 R: Ondrej Jirman <megous@megous.com>
6076 F: Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6077 F: drivers/gpu/drm/panel/panel-sitronix-st7703.c
6079 DRM DRIVER FOR SAVAGE VIDEO CARDS
6080 S: Orphan / Obsolete
6081 F: drivers/gpu/drm/savage/
6082 F: include/uapi/drm/savage_drm.h
6084 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6085 M: Thomas Zimmermann <tzimmermann@suse.de>
6086 L: dri-devel@lists.freedesktop.org
6088 T: git git://anongit.freedesktop.org/drm/drm-misc
6089 F: drivers/gpu/drm/tiny/simpledrm.c
6091 DRM DRIVER FOR SIS VIDEO CARDS
6092 S: Orphan / Obsolete
6093 F: drivers/gpu/drm/sis/
6094 F: include/uapi/drm/sis_drm.h
6096 DRM DRIVER FOR SITRONIX ST7586 PANELS
6097 M: David Lechner <david@lechnology.com>
6099 T: git git://anongit.freedesktop.org/drm/drm-misc
6100 F: Documentation/devicetree/bindings/display/sitronix,st7586.txt
6101 F: drivers/gpu/drm/tiny/st7586.c
6103 DRM DRIVER FOR SITRONIX ST7701 PANELS
6104 M: Jagan Teki <jagan@amarulasolutions.com>
6106 F: Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6107 F: drivers/gpu/drm/panel/panel-sitronix-st7701.c
6109 DRM DRIVER FOR SITRONIX ST7735R PANELS
6110 M: David Lechner <david@lechnology.com>
6112 T: git git://anongit.freedesktop.org/drm/drm-misc
6113 F: Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6114 F: drivers/gpu/drm/tiny/st7735r.c
6116 DRM DRIVER FOR SONY ACX424AKP PANELS
6117 M: Linus Walleij <linus.walleij@linaro.org>
6119 T: git git://anongit.freedesktop.org/drm/drm-misc
6120 F: drivers/gpu/drm/panel/panel-sony-acx424akp.c
6122 DRM DRIVER FOR ST-ERICSSON MCDE
6123 M: Linus Walleij <linus.walleij@linaro.org>
6125 T: git git://anongit.freedesktop.org/drm/drm-misc
6126 F: Documentation/devicetree/bindings/display/ste,mcde.yaml
6127 F: drivers/gpu/drm/mcde/
6129 DRM DRIVER FOR TDFX VIDEO CARDS
6130 S: Orphan / Obsolete
6131 F: drivers/gpu/drm/tdfx/
6133 DRM DRIVER FOR TPO TPG110 PANELS
6134 M: Linus Walleij <linus.walleij@linaro.org>
6136 T: git git://anongit.freedesktop.org/drm/drm-misc
6137 F: Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6138 F: drivers/gpu/drm/panel/panel-tpo-tpg110.c
6140 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6141 M: Dave Airlie <airlied@redhat.com>
6142 R: Sean Paul <sean@poorly.run>
6143 R: Thomas Zimmermann <tzimmermann@suse.de>
6144 L: dri-devel@lists.freedesktop.org
6146 T: git git://anongit.freedesktop.org/drm/drm-misc
6147 F: drivers/gpu/drm/udl/
6149 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6150 M: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6151 M: Melissa Wen <melissa.srw@gmail.com>
6152 R: Haneen Mohammed <hamohammed.sa@gmail.com>
6153 R: Daniel Vetter <daniel@ffwll.ch>
6154 L: dri-devel@lists.freedesktop.org
6156 T: git git://anongit.freedesktop.org/drm/drm-misc
6157 F: Documentation/gpu/vkms.rst
6158 F: drivers/gpu/drm/vkms/
6160 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6161 M: Hans de Goede <hdegoede@redhat.com>
6162 L: dri-devel@lists.freedesktop.org
6164 T: git git://anongit.freedesktop.org/drm/drm-misc
6165 F: drivers/gpu/drm/vboxvideo/
6167 DRM DRIVER FOR VMWARE VIRTUAL GPU
6168 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6169 M: Zack Rusin <zackr@vmware.com>
6170 L: dri-devel@lists.freedesktop.org
6172 T: git git://anongit.freedesktop.org/drm/drm-misc
6173 F: drivers/gpu/drm/vmwgfx/
6174 F: include/uapi/drm/vmwgfx_drm.h
6176 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6177 M: Linus Walleij <linus.walleij@linaro.org>
6179 T: git git://anongit.freedesktop.org/drm/drm-misc
6180 F: Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6181 F: drivers/gpu/drm/panel/panel-widechips-ws2401.c
6184 M: David Airlie <airlied@linux.ie>
6185 M: Daniel Vetter <daniel@ffwll.ch>
6186 L: dri-devel@lists.freedesktop.org
6188 B: https://gitlab.freedesktop.org/drm
6189 C: irc://irc.oftc.net/dri-devel
6190 T: git git://anongit.freedesktop.org/drm/drm
6191 F: Documentation/devicetree/bindings/display/
6192 F: Documentation/devicetree/bindings/gpu/
6193 F: Documentation/gpu/
6196 F: include/linux/vga*
6197 F: include/uapi/drm/
6199 DRM DRIVERS AND MISC GPU PATCHES
6200 M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6201 M: Maxime Ripard <mripard@kernel.org>
6202 M: Thomas Zimmermann <tzimmermann@suse.de>
6204 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6205 T: git git://anongit.freedesktop.org/drm/drm-misc
6206 F: Documentation/gpu/
6207 F: drivers/gpu/drm/*
6210 F: include/linux/vga*
6211 F: include/uapi/drm/drm*
6213 DRM DRIVERS FOR ALLWINNER A10
6214 M: Maxime Ripard <mripard@kernel.org>
6215 M: Chen-Yu Tsai <wens@csie.org>
6216 L: dri-devel@lists.freedesktop.org
6218 T: git git://anongit.freedesktop.org/drm/drm-misc
6219 F: Documentation/devicetree/bindings/display/allwinner*
6220 F: drivers/gpu/drm/sun4i/
6222 DRM DRIVERS FOR AMLOGIC SOCS
6223 M: Neil Armstrong <narmstrong@baylibre.com>
6224 L: dri-devel@lists.freedesktop.org
6225 L: linux-amlogic@lists.infradead.org
6227 W: http://linux-meson.com/
6228 T: git git://anongit.freedesktop.org/drm/drm-misc
6229 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6230 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6231 F: Documentation/gpu/meson.rst
6232 F: drivers/gpu/drm/meson/
6234 DRM DRIVERS FOR ATMEL HLCDC
6235 M: Sam Ravnborg <sam@ravnborg.org>
6236 M: Boris Brezillon <bbrezillon@kernel.org>
6237 L: dri-devel@lists.freedesktop.org
6239 T: git git://anongit.freedesktop.org/drm/drm-misc
6240 F: Documentation/devicetree/bindings/display/atmel/
6241 F: drivers/gpu/drm/atmel-hlcdc/
6243 DRM DRIVERS FOR BRIDGE CHIPS
6244 M: Andrzej Hajda <a.hajda@samsung.com>
6245 M: Neil Armstrong <narmstrong@baylibre.com>
6246 M: Robert Foss <robert.foss@linaro.org>
6247 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6248 R: Jonas Karlman <jonas@kwiboo.se>
6249 R: Jernej Skrabec <jernej.skrabec@gmail.com>
6251 T: git git://anongit.freedesktop.org/drm/drm-misc
6252 F: drivers/gpu/drm/bridge/
6254 DRM DRIVERS FOR EXYNOS
6255 M: Inki Dae <inki.dae@samsung.com>
6256 M: Joonyoung Shim <jy0922.shim@samsung.com>
6257 M: Seung-Woo Kim <sw0312.kim@samsung.com>
6258 M: Kyungmin Park <kyungmin.park@samsung.com>
6259 L: dri-devel@lists.freedesktop.org
6261 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6262 F: Documentation/devicetree/bindings/display/exynos/
6263 F: drivers/gpu/drm/exynos/
6264 F: include/uapi/drm/exynos_drm.h
6266 DRM DRIVERS FOR FREESCALE DCU
6267 M: Stefan Agner <stefan@agner.ch>
6268 M: Alison Wang <alison.wang@nxp.com>
6269 L: dri-devel@lists.freedesktop.org
6271 T: git git://anongit.freedesktop.org/drm/drm-misc
6272 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
6273 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
6274 F: drivers/gpu/drm/fsl-dcu/
6276 DRM DRIVERS FOR FREESCALE IMX
6277 M: Philipp Zabel <p.zabel@pengutronix.de>
6278 L: dri-devel@lists.freedesktop.org
6280 F: Documentation/devicetree/bindings/display/imx/
6281 F: drivers/gpu/drm/imx/
6282 F: drivers/gpu/ipu-v3/
6284 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6285 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6286 L: dri-devel@lists.freedesktop.org
6288 T: git git://github.com/patjak/drm-gma500
6289 F: drivers/gpu/drm/gma500/
6291 DRM DRIVERS FOR HISILICON
6292 M: Xinliang Liu <xinliang.liu@linaro.org>
6293 M: Tian Tao <tiantao6@hisilicon.com>
6294 R: John Stultz <john.stultz@linaro.org>
6295 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
6296 R: Chen Feng <puck.chen@hisilicon.com>
6297 L: dri-devel@lists.freedesktop.org
6299 T: git git://anongit.freedesktop.org/drm/drm-misc
6300 F: Documentation/devicetree/bindings/display/hisilicon/
6301 F: drivers/gpu/drm/hisilicon/
6303 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6304 M: Deepak Rawat <drawat.floss@gmail.com>
6305 L: linux-hyperv@vger.kernel.org
6306 L: dri-devel@lists.freedesktop.org
6308 T: git git://anongit.freedesktop.org/drm/drm-misc
6309 F: drivers/gpu/drm/hyperv
6311 DRM DRIVERS FOR LIMA
6312 M: Qiang Yu <yuq825@gmail.com>
6313 L: dri-devel@lists.freedesktop.org
6314 L: lima@lists.freedesktop.org (moderated for non-subscribers)
6316 T: git git://anongit.freedesktop.org/drm/drm-misc
6317 F: drivers/gpu/drm/lima/
6318 F: include/uapi/drm/lima_drm.h
6320 DRM DRIVERS FOR MEDIATEK
6321 M: Chun-Kuang Hu <chunkuang.hu@kernel.org>
6322 M: Philipp Zabel <p.zabel@pengutronix.de>
6323 L: dri-devel@lists.freedesktop.org
6324 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6326 F: Documentation/devicetree/bindings/display/mediatek/
6327 F: drivers/gpu/drm/mediatek/
6328 F: drivers/phy/mediatek/phy-mtk-hdmi*
6329 F: drivers/phy/mediatek/phy-mtk-mipi*
6331 DRM DRIVERS FOR NVIDIA TEGRA
6332 M: Thierry Reding <thierry.reding@gmail.com>
6333 L: dri-devel@lists.freedesktop.org
6334 L: linux-tegra@vger.kernel.org
6336 T: git git://anongit.freedesktop.org/tegra/linux.git
6337 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6338 F: drivers/gpu/drm/tegra/
6339 F: drivers/gpu/host1x/
6340 F: include/linux/host1x.h
6341 F: include/uapi/drm/tegra_drm.h
6343 DRM DRIVERS FOR RENESAS
6344 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6345 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6346 L: dri-devel@lists.freedesktop.org
6347 L: linux-renesas-soc@vger.kernel.org
6349 T: git git://linuxtv.org/pinchartl/media drm/du/next
6350 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6351 F: Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6352 F: Documentation/devicetree/bindings/display/renesas,du.yaml
6353 F: drivers/gpu/drm/rcar-du/
6354 F: drivers/gpu/drm/shmobile/
6355 F: include/linux/platform_data/shmob_drm.h
6357 DRM DRIVERS FOR ROCKCHIP
6358 M: Sandy Huang <hjc@rock-chips.com>
6359 M: Heiko Stübner <heiko@sntech.de>
6360 L: dri-devel@lists.freedesktop.org
6362 T: git git://anongit.freedesktop.org/drm/drm-misc
6363 F: Documentation/devicetree/bindings/display/rockchip/
6364 F: drivers/gpu/drm/rockchip/
6367 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
6368 L: dri-devel@lists.freedesktop.org
6370 T: git git://anongit.freedesktop.org/drm/drm-misc
6371 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
6372 F: drivers/gpu/drm/sti
6375 M: Yannick Fertre <yannick.fertre@foss.st.com>
6376 M: Philippe Cornu <philippe.cornu@foss.st.com>
6377 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
6378 L: dri-devel@lists.freedesktop.org
6380 T: git git://anongit.freedesktop.org/drm/drm-misc
6381 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6382 F: drivers/gpu/drm/stm
6384 DRM DRIVERS FOR TI KEYSTONE
6385 M: Jyri Sarha <jyri.sarha@iki.fi>
6386 M: Tomi Valkeinen <tomba@kernel.org>
6387 L: dri-devel@lists.freedesktop.org
6389 T: git git://anongit.freedesktop.org/drm/drm-misc
6390 F: Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6391 F: Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6392 F: Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6393 F: drivers/gpu/drm/tidss/
6395 DRM DRIVERS FOR TI LCDC
6396 M: Jyri Sarha <jyri.sarha@iki.fi>
6397 R: Tomi Valkeinen <tomba@kernel.org>
6398 L: dri-devel@lists.freedesktop.org
6400 F: Documentation/devicetree/bindings/display/tilcdc/
6401 F: drivers/gpu/drm/tilcdc/
6403 DRM DRIVERS FOR TI OMAP
6404 M: Tomi Valkeinen <tomba@kernel.org>
6405 L: dri-devel@lists.freedesktop.org
6407 F: Documentation/devicetree/bindings/display/ti/
6408 F: drivers/gpu/drm/omapdrm/
6411 M: Emma Anholt <emma@anholt.net>
6413 T: git git://anongit.freedesktop.org/drm/drm-misc
6414 F: Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6415 F: drivers/gpu/drm/v3d/
6416 F: include/uapi/drm/v3d_drm.h
6419 M: Emma Anholt <emma@anholt.net>
6420 M: Maxime Ripard <mripard@kernel.org>
6422 T: git git://github.com/anholt/linux
6423 T: git git://anongit.freedesktop.org/drm/drm-misc
6424 F: Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6425 F: drivers/gpu/drm/vc4/
6426 F: include/uapi/drm/vc4_drm.h
6428 DRM DRIVERS FOR VIVANTE GPU IP
6429 M: Lucas Stach <l.stach@pengutronix.de>
6430 R: Russell King <linux+etnaviv@armlinux.org.uk>
6431 R: Christian Gmeiner <christian.gmeiner@gmail.com>
6432 L: etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6433 L: dri-devel@lists.freedesktop.org
6435 F: Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6436 F: drivers/gpu/drm/etnaviv/
6437 F: include/uapi/drm/etnaviv_drm.h
6440 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6441 L: dri-devel@lists.freedesktop.org
6442 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
6444 T: git git://anongit.freedesktop.org/drm/drm-misc
6445 F: Documentation/gpu/xen-front.rst
6446 F: drivers/gpu/drm/xen/
6448 DRM DRIVERS FOR XILINX
6449 M: Hyun Kwon <hyun.kwon@xilinx.com>
6450 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6451 L: dri-devel@lists.freedesktop.org
6453 T: git git://anongit.freedesktop.org/drm/drm-misc
6454 F: Documentation/devicetree/bindings/display/xlnx/
6455 F: drivers/gpu/drm/xlnx/
6458 M: Thierry Reding <thierry.reding@gmail.com>
6459 R: Sam Ravnborg <sam@ravnborg.org>
6460 L: dri-devel@lists.freedesktop.org
6462 T: git git://anongit.freedesktop.org/drm/drm-misc
6463 F: Documentation/devicetree/bindings/display/panel/
6464 F: drivers/gpu/drm/drm_panel.c
6465 F: drivers/gpu/drm/panel/
6466 F: include/drm/drm_panel.h
6469 M: Christian Koenig <christian.koenig@amd.com>
6470 M: Huang Rui <ray.huang@amd.com>
6471 L: dri-devel@lists.freedesktop.org
6473 T: git git://anongit.freedesktop.org/drm/drm-misc
6474 F: drivers/gpu/drm/ttm/
6477 DSBR100 USB FM RADIO DRIVER
6478 M: Alexey Klimov <klimov.linux@gmail.com>
6479 L: linux-media@vger.kernel.org
6481 T: git git://linuxtv.org/media_tree.git
6482 F: drivers/media/radio/dsbr100.c
6485 M: Hans Verkuil <hverkuil@xs4all.nl>
6486 L: linux-media@vger.kernel.org
6488 W: https://linuxtv.org
6489 T: git git://linuxtv.org/media_tree.git
6490 F: drivers/media/pci/dt3155/
6492 DVB_USB_AF9015 MEDIA DRIVER
6493 M: Antti Palosaari <crope@iki.fi>
6494 L: linux-media@vger.kernel.org
6496 W: https://linuxtv.org
6497 W: http://palosaari.fi/linux/
6498 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6499 T: git git://linuxtv.org/anttip/media_tree.git
6500 F: drivers/media/usb/dvb-usb-v2/af9015*
6502 DVB_USB_AF9035 MEDIA DRIVER
6503 M: Antti Palosaari <crope@iki.fi>
6504 L: linux-media@vger.kernel.org
6506 W: https://linuxtv.org
6507 W: http://palosaari.fi/linux/
6508 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6509 T: git git://linuxtv.org/anttip/media_tree.git
6510 F: drivers/media/usb/dvb-usb-v2/af9035*
6512 DVB_USB_ANYSEE MEDIA DRIVER
6513 M: Antti Palosaari <crope@iki.fi>
6514 L: linux-media@vger.kernel.org
6516 W: https://linuxtv.org
6517 W: http://palosaari.fi/linux/
6518 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6519 T: git git://linuxtv.org/anttip/media_tree.git
6520 F: drivers/media/usb/dvb-usb-v2/anysee*
6522 DVB_USB_AU6610 MEDIA DRIVER
6523 M: Antti Palosaari <crope@iki.fi>
6524 L: linux-media@vger.kernel.org
6526 W: https://linuxtv.org
6527 W: http://palosaari.fi/linux/
6528 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6529 T: git git://linuxtv.org/anttip/media_tree.git
6530 F: drivers/media/usb/dvb-usb-v2/au6610*
6532 DVB_USB_CE6230 MEDIA DRIVER
6533 M: Antti Palosaari <crope@iki.fi>
6534 L: linux-media@vger.kernel.org
6536 W: https://linuxtv.org
6537 W: http://palosaari.fi/linux/
6538 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6539 T: git git://linuxtv.org/anttip/media_tree.git
6540 F: drivers/media/usb/dvb-usb-v2/ce6230*
6542 DVB_USB_CXUSB MEDIA DRIVER
6543 M: Michael Krufky <mkrufky@linuxtv.org>
6544 L: linux-media@vger.kernel.org
6546 W: https://linuxtv.org
6547 W: http://github.com/mkrufky
6548 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6549 T: git git://linuxtv.org/media_tree.git
6550 F: drivers/media/usb/dvb-usb/cxusb*
6552 DVB_USB_EC168 MEDIA DRIVER
6553 M: Antti Palosaari <crope@iki.fi>
6554 L: linux-media@vger.kernel.org
6556 W: https://linuxtv.org
6557 W: http://palosaari.fi/linux/
6558 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6559 T: git git://linuxtv.org/anttip/media_tree.git
6560 F: drivers/media/usb/dvb-usb-v2/ec168*
6562 DVB_USB_GL861 MEDIA DRIVER
6563 M: Antti Palosaari <crope@iki.fi>
6564 L: linux-media@vger.kernel.org
6566 W: https://linuxtv.org
6567 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6568 T: git git://linuxtv.org/anttip/media_tree.git
6569 F: drivers/media/usb/dvb-usb-v2/gl861*
6571 DVB_USB_MXL111SF MEDIA DRIVER
6572 M: Michael Krufky <mkrufky@linuxtv.org>
6573 L: linux-media@vger.kernel.org
6575 W: https://linuxtv.org
6576 W: http://github.com/mkrufky
6577 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6578 T: git git://linuxtv.org/mkrufky/mxl111sf.git
6579 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
6581 DVB_USB_RTL28XXU MEDIA DRIVER
6582 M: Antti Palosaari <crope@iki.fi>
6583 L: linux-media@vger.kernel.org
6585 W: https://linuxtv.org
6586 W: http://palosaari.fi/linux/
6587 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6588 T: git git://linuxtv.org/anttip/media_tree.git
6589 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
6591 DVB_USB_V2 MEDIA DRIVER
6592 M: Antti Palosaari <crope@iki.fi>
6593 L: linux-media@vger.kernel.org
6595 W: https://linuxtv.org
6596 W: http://palosaari.fi/linux/
6597 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6598 T: git git://linuxtv.org/anttip/media_tree.git
6599 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
6600 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
6603 M: Jason Baron <jbaron@akamai.com>
6605 F: include/linux/dynamic_debug.h
6606 F: lib/dynamic_debug.c
6608 DYNAMIC INTERRUPT MODERATION
6609 M: Tal Gilboa <talgi@nvidia.com>
6611 F: Documentation/networking/net_dim.rst
6612 F: include/linux/dim.h
6615 DZ DECSTATION DZ11 SERIAL DRIVER
6616 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
6618 F: drivers/tty/serial/dz.*
6620 E3X0 POWER BUTTON DRIVER
6621 M: Moritz Fischer <moritz.fischer@ettus.com>
6622 L: usrp-users@lists.ettus.com
6624 W: http://www.ettus.com
6625 F: Documentation/devicetree/bindings/input/e3x0-button.txt
6626 F: drivers/input/misc/e3x0-button.c
6629 M: Antti Palosaari <crope@iki.fi>
6630 L: linux-media@vger.kernel.org
6632 W: https://linuxtv.org
6633 W: http://palosaari.fi/linux/
6634 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6635 T: git git://linuxtv.org/anttip/media_tree.git
6636 F: drivers/media/tuners/e4000*
6638 EARTH_PT1 MEDIA DRIVER
6639 M: Akihiro Tsukada <tskd08@gmail.com>
6640 L: linux-media@vger.kernel.org
6642 F: drivers/media/pci/pt1/
6644 EARTH_PT3 MEDIA DRIVER
6645 M: Akihiro Tsukada <tskd08@gmail.com>
6646 L: linux-media@vger.kernel.org
6648 F: drivers/media/pci/pt3/
6651 M: Antti Palosaari <crope@iki.fi>
6652 L: linux-media@vger.kernel.org
6654 W: https://linuxtv.org
6655 W: http://palosaari.fi/linux/
6656 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6657 T: git git://linuxtv.org/anttip/media_tree.git
6658 F: drivers/media/dvb-frontends/ec100*
6661 M: Tyler Hicks <code@tyhicks.com>
6662 L: ecryptfs@vger.kernel.org
6664 W: http://ecryptfs.org
6665 W: https://launchpad.net/ecryptfs
6666 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6667 F: Documentation/filesystems/ecryptfs.rst
6671 M: Yazen Ghannam <yazen.ghannam@amd.com>
6672 L: linux-edac@vger.kernel.org
6674 F: drivers/edac/amd64_edac*
6675 F: drivers/edac/mce_amd*
6678 M: Jan Luebbe <jlu@pengutronix.de>
6679 L: linux-edac@vger.kernel.org
6681 F: Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6682 F: drivers/edac/armada_xp_*
6685 M: Stefan Schaeckeler <sschaeck@cisco.com>
6687 F: Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6688 F: drivers/edac/aspeed_edac.c
6691 M: Shravan Kumar Ramani <shravankr@nvidia.com>
6693 F: drivers/edac/bluefield_edac.c
6696 M: Andre Przywara <andre.przywara@arm.com>
6697 L: linux-edac@vger.kernel.org
6699 F: drivers/edac/highbank*
6702 M: Ralf Baechle <ralf@linux-mips.org>
6703 L: linux-edac@vger.kernel.org
6704 L: linux-mips@vger.kernel.org
6706 F: drivers/edac/octeon_edac*
6708 EDAC-CAVIUM THUNDERX
6709 M: Robert Richter <rric@kernel.org>
6710 L: linux-edac@vger.kernel.org
6712 F: drivers/edac/thunderx_edac*
6715 M: Borislav Petkov <bp@alien8.de>
6716 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6717 M: Tony Luck <tony.luck@intel.com>
6718 R: James Morse <james.morse@arm.com>
6719 R: Robert Richter <rric@kernel.org>
6720 L: linux-edac@vger.kernel.org
6722 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6723 F: Documentation/admin-guide/ras.rst
6724 F: Documentation/driver-api/edac.rst
6726 F: include/linux/edac.h
6729 M: Lei Wang <lewan@microsoft.com>
6730 L: linux-edac@vger.kernel.org
6732 F: drivers/edac/dmc520_edac.c
6735 M: Mark Gross <mark.gross@intel.com>
6736 L: linux-edac@vger.kernel.org
6738 F: drivers/edac/e752x_edac.c
6741 L: linux-edac@vger.kernel.org
6743 F: drivers/edac/e7xxx_edac.c
6746 M: York Sun <york.sun@nxp.com>
6747 L: linux-edac@vger.kernel.org
6749 F: drivers/edac/fsl_ddr_edac.*
6752 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6753 L: linux-edac@vger.kernel.org
6755 F: drivers/edac/ghes_edac.c
6758 M: Tony Luck <tony.luck@intel.com>
6759 L: linux-edac@vger.kernel.org
6761 F: drivers/edac/i10nm_base.c
6764 L: linux-edac@vger.kernel.org
6766 F: drivers/edac/i3000_edac.c
6769 L: linux-edac@vger.kernel.org
6771 F: drivers/edac/i5000_edac.c
6774 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6775 L: linux-edac@vger.kernel.org
6777 F: drivers/edac/i5400_edac.c
6780 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6781 L: linux-edac@vger.kernel.org
6783 F: drivers/edac/i7300_edac.c
6786 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6787 L: linux-edac@vger.kernel.org
6789 F: drivers/edac/i7core_edac.c
6792 M: Tim Small <tim@buttersideup.com>
6793 L: linux-edac@vger.kernel.org
6795 F: drivers/edac/i82443bxgx_edac.c
6798 M: "Arvind R." <arvino55@gmail.com>
6799 L: linux-edac@vger.kernel.org
6801 F: drivers/edac/i82975x_edac.c
6804 M: Jason Baron <jbaron@akamai.com>
6805 L: linux-edac@vger.kernel.org
6807 F: drivers/edac/ie31200_edac.c
6810 M: Tony Luck <tony.luck@intel.com>
6811 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6812 L: linux-edac@vger.kernel.org
6814 F: drivers/edac/igen6_edac.c
6817 M: Johannes Thumshirn <morbidrsa@gmail.com>
6818 L: linux-edac@vger.kernel.org
6820 F: drivers/edac/mpc85xx_edac.[ch]
6823 M: Egor Martovetsky <egor@pasemi.com>
6824 L: linux-edac@vger.kernel.org
6826 F: drivers/edac/pasemi_edac.c
6829 M: Tony Luck <tony.luck@intel.com>
6830 L: linux-edac@vger.kernel.org
6832 F: drivers/edac/pnd2_edac.[ch]
6835 M: Channagoud Kadabi <ckadabi@codeaurora.org>
6836 M: Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6837 L: linux-arm-msm@vger.kernel.org
6838 L: linux-edac@vger.kernel.org
6840 F: drivers/edac/qcom_edac.c
6843 M: Tim Small <tim@buttersideup.com>
6844 L: linux-edac@vger.kernel.org
6846 F: drivers/edac/r82600_edac.c
6849 M: Tony Luck <tony.luck@intel.com>
6850 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6851 L: linux-edac@vger.kernel.org
6853 F: drivers/edac/sb_edac.c
6856 M: Yash Shah <yash.shah@sifive.com>
6857 L: linux-edac@vger.kernel.org
6859 F: drivers/edac/sifive_edac.c
6862 M: Tony Luck <tony.luck@intel.com>
6863 L: linux-edac@vger.kernel.org
6865 F: drivers/edac/skx_*.[ch]
6868 M: Tero Kristo <kristo@kernel.org>
6869 L: linux-edac@vger.kernel.org
6871 F: drivers/edac/ti_edac.c
6873 EDIROL UA-101/UA-1000 DRIVER
6874 M: Clemens Ladisch <clemens@ladisch.de>
6875 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6877 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6878 F: sound/usb/misc/ua101.c
6881 M: Ivan Hu <ivan.hu@canonical.com>
6882 M: Ard Biesheuvel <ardb@kernel.org>
6883 L: linux-efi@vger.kernel.org
6885 F: drivers/firmware/efi/test/
6887 EFI VARIABLE FILESYSTEM
6888 M: Matthew Garrett <matthew.garrett@nebula.com>
6889 M: Jeremy Kerr <jk@ozlabs.org>
6890 M: Ard Biesheuvel <ardb@kernel.org>
6891 L: linux-efi@vger.kernel.org
6893 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6896 EFIFB FRAMEBUFFER DRIVER
6897 M: Peter Jones <pjones@redhat.com>
6898 L: linux-fbdev@vger.kernel.org
6900 F: drivers/video/fbdev/efifb.c
6904 W: http://aeschi.ch.eu.org/efs/
6907 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6908 M: Douglas Miller <dougmill@linux.ibm.com>
6909 L: netdev@vger.kernel.org
6911 F: drivers/net/ethernet/ibm/ehea/
6913 EM28XX VIDEO4LINUX DRIVER
6914 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6915 L: linux-media@vger.kernel.org
6917 W: https://linuxtv.org
6918 T: git git://linuxtv.org/media_tree.git
6919 F: Documentation/admin-guide/media/em28xx*
6920 F: drivers/media/usb/em28xx/
6923 M: Matt Mackall <mpm@selenic.com>
6924 M: David Woodhouse <dwmw2@infradead.org>
6925 L: linux-embedded@vger.kernel.org
6928 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6929 M: Adrian Hunter <adrian.hunter@intel.com>
6930 M: Ritesh Harjani <riteshh@codeaurora.org>
6931 M: Asutosh Das <asutoshd@codeaurora.org>
6932 L: linux-mmc@vger.kernel.org
6934 F: drivers/mmc/host/cqhci*
6936 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6937 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6938 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
6939 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6940 L: linux-scsi@vger.kernel.org
6942 W: http://www.broadcom.com
6943 F: drivers/scsi/be2iscsi/
6945 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6946 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
6947 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6948 M: Somnath Kotur <somnath.kotur@broadcom.com>
6949 L: netdev@vger.kernel.org
6951 W: http://www.emulex.com
6952 F: drivers/net/ethernet/emulex/benet/
6954 EMULEX ONECONNECT ROCE DRIVER
6955 M: Selvin Xavier <selvin.xavier@broadcom.com>
6956 L: linux-rdma@vger.kernel.org
6958 W: http://www.broadcom.com
6959 F: drivers/infiniband/hw/ocrdma/
6960 F: include/uapi/rdma/ocrdma-abi.h
6962 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6963 M: James Smart <james.smart@broadcom.com>
6964 M: Dick Kennedy <dick.kennedy@broadcom.com>
6965 L: linux-scsi@vger.kernel.org
6967 W: http://www.broadcom.com
6968 F: drivers/scsi/lpfc/
6970 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6971 M: James Smart <james.smart@broadcom.com>
6972 M: Ram Vegesna <ram.vegesna@broadcom.com>
6973 L: linux-scsi@vger.kernel.org
6974 L: target-devel@vger.kernel.org
6976 W: http://www.broadcom.com
6977 F: drivers/scsi/elx/
6979 ENE CB710 FLASH CARD READER DRIVER
6980 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
6982 F: drivers/misc/cb710/
6983 F: drivers/mmc/host/cb710-mmc.*
6984 F: include/linux/cb710.h
6986 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6987 M: Maxim Levitsky <maximlevitsky@gmail.com>
6989 F: drivers/media/rc/ene_ir.*
6991 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6992 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
6993 L: linuxppc-dev@lists.ozlabs.org
6995 F: drivers/tty/ehv_bytechan.c
6997 EPSON S1D13XXX FRAMEBUFFER DRIVER
6998 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
7000 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7001 F: drivers/video/fbdev/s1d13xxxfb.c
7002 F: include/video/s1d13xxxfb.h
7005 M: Gao Xiang <xiang@kernel.org>
7006 M: Chao Yu <chao@kernel.org>
7007 L: linux-erofs@lists.ozlabs.org
7009 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7010 F: Documentation/filesystems/erofs.rst
7012 F: include/trace/events/erofs.h
7014 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7015 M: Jeff Layton <jlayton@kernel.org>
7017 F: include/linux/errseq.h
7020 ET131X NETWORK DRIVER
7021 M: Mark Einon <mark.einon@gmail.com>
7023 F: drivers/net/ethernet/agere/
7025 ETAS ES58X CAN/USB DRIVER
7026 M: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7027 L: linux-can@vger.kernel.org
7029 F: drivers/net/can/usb/etas_es58x/
7032 M: Roopa Prabhu <roopa@nvidia.com>
7033 M: Nikolay Aleksandrov <nikolay@nvidia.com>
7034 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
7035 L: netdev@vger.kernel.org
7037 W: http://www.linuxfoundation.org/en/Net:Bridge
7038 F: include/linux/netfilter_bridge/
7041 ETHERNET PHY LIBRARY
7042 M: Andrew Lunn <andrew@lunn.ch>
7043 M: Heiner Kallweit <hkallweit1@gmail.com>
7044 R: Russell King <linux@armlinux.org.uk>
7045 L: netdev@vger.kernel.org
7047 F: Documentation/ABI/testing/sysfs-class-net-phydev
7048 F: Documentation/devicetree/bindings/net/ethernet-phy.yaml
7049 F: Documentation/devicetree/bindings/net/mdio*
7050 F: Documentation/devicetree/bindings/net/qca,ar803x.yaml
7051 F: Documentation/networking/phy.rst
7052 F: drivers/net/mdio/
7053 F: drivers/net/mdio/acpi_mdio.c
7054 F: drivers/net/mdio/fwnode_mdio.c
7055 F: drivers/net/mdio/of_mdio.c
7058 F: include/dt-bindings/net/qca-ar803x.h
7059 F: include/linux/*mdio*.h
7060 F: include/linux/mdio/*.h
7061 F: include/linux/of_net.h
7062 F: include/linux/phy.h
7063 F: include/linux/phy_fixed.h
7064 F: include/linux/platform_data/mdio-bcm-unimac.h
7065 F: include/linux/platform_data/mdio-gpio.h
7066 F: include/trace/events/mdio.h
7067 F: include/uapi/linux/mdio.h
7068 F: include/uapi/linux/mii.h
7069 F: net/core/of_net.c
7072 M: Namjae Jeon <linkinjeon@kernel.org>
7073 M: Sungjong Seo <sj1557.seo@samsung.com>
7074 L: linux-fsdevel@vger.kernel.org
7079 M: Jan Kara <jack@suse.com>
7080 L: linux-ext4@vger.kernel.org
7082 F: Documentation/filesystems/ext2.rst
7084 F: include/linux/ext2*
7087 M: "Theodore Ts'o" <tytso@mit.edu>
7088 M: Andreas Dilger <adilger.kernel@dilger.ca>
7089 L: linux-ext4@vger.kernel.org
7091 W: http://ext4.wiki.kernel.org
7092 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
7093 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7094 F: Documentation/filesystems/ext4/
7096 F: include/trace/events/ext4.h
7098 Extended Verification Module (EVM)
7099 M: Mimi Zohar <zohar@linux.ibm.com>
7100 L: linux-integrity@vger.kernel.org
7102 F: security/integrity/evm/
7104 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7105 M: Ard Biesheuvel <ardb@kernel.org>
7106 L: linux-efi@vger.kernel.org
7108 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7109 F: Documentation/admin-guide/efi-stub.rst
7110 F: arch/*/include/asm/efi.h
7111 F: arch/*/kernel/efi.c
7112 F: arch/arm/boot/compressed/efi-header.S
7113 F: arch/arm64/kernel/efi-entry.S
7114 F: arch/x86/platform/efi/
7115 F: drivers/firmware/efi/
7116 F: include/linux/efi*.h
7118 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7119 M: MyungJoo Ham <myungjoo.ham@samsung.com>
7120 M: Chanwoo Choi <cw00.choi@samsung.com>
7121 L: linux-kernel@vger.kernel.org
7123 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7124 F: Documentation/devicetree/bindings/extcon/
7125 F: Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7127 F: include/linux/extcon.h
7128 F: include/linux/extcon/
7131 M: Masami Hiramatsu <mhiramat@kernel.org>
7133 F: Documentation/admin-guide/bootconfig.rst
7134 F: fs/proc/bootconfig.c
7135 F: include/linux/bootconfig.h
7137 F: tools/bootconfig/*
7138 F: tools/bootconfig/scripts/*
7141 M: Jingoo Han <jingoohan1@gmail.com>
7142 L: dri-devel@lists.freedesktop.org
7144 F: drivers/gpu/drm/exynos/exynos_dp*
7146 EXYNOS SYSMMU (IOMMU) driver
7147 M: Marek Szyprowski <m.szyprowski@samsung.com>
7148 L: iommu@lists.linux-foundation.org
7150 F: drivers/iommu/exynos-iommu.c
7153 M: Jaegeuk Kim <jaegeuk@kernel.org>
7154 M: Chao Yu <chao@kernel.org>
7155 L: linux-f2fs-devel@lists.sourceforge.net
7157 W: https://f2fs.wiki.kernel.org/
7158 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7159 F: Documentation/ABI/testing/sysfs-fs-f2fs
7160 F: Documentation/filesystems/f2fs.rst
7162 F: include/linux/f2fs_fs.h
7163 F: include/trace/events/f2fs.h
7164 F: include/uapi/linux/f2fs.h
7166 F71805F HARDWARE MONITORING DRIVER
7167 M: Jean Delvare <jdelvare@suse.com>
7168 L: linux-hwmon@vger.kernel.org
7170 F: Documentation/hwmon/f71805f.rst
7171 F: drivers/hwmon/f71805f.c
7174 M: Josh Poimboeuf <jpoimboe@redhat.com>
7176 F: scripts/faddr2line
7179 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
7180 L: netdev@vger.kernel.org
7182 F: Documentation/networking/failover.rst
7183 F: include/net/failover.h
7184 F: net/core/failover.c
7187 M: Jan Kara <jack@suse.cz>
7188 R: Amir Goldstein <amir73il@gmail.com>
7189 R: Matthew Bobrowski <repnop@google.com>
7190 L: linux-fsdevel@vger.kernel.org
7192 F: fs/notify/fanotify/
7193 F: include/linux/fanotify.h
7194 F: include/uapi/linux/fanotify.h
7196 FARSYNC SYNCHRONOUS DRIVER
7197 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
7199 W: http://www.farsite.co.uk/
7200 F: drivers/net/wan/farsync.*
7202 FAULT INJECTION SUPPORT
7203 M: Akinobu Mita <akinobu.mita@gmail.com>
7205 F: Documentation/fault-injection/
7206 F: lib/fault-inject.c
7208 FBTFT Framebuffer drivers
7209 L: dri-devel@lists.freedesktop.org
7210 L: linux-fbdev@vger.kernel.org
7212 F: drivers/staging/fbtft/
7215 M: Michael Buesch <m@bues.ch>
7216 L: linux-media@vger.kernel.org
7218 F: drivers/media/tuners/fc0011.c
7219 F: drivers/media/tuners/fc0011.h
7222 M: Antti Palosaari <crope@iki.fi>
7223 L: linux-media@vger.kernel.org
7225 W: https://linuxtv.org
7226 W: http://palosaari.fi/linux/
7227 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7228 T: git git://linuxtv.org/anttip/media_tree.git
7229 F: drivers/media/tuners/fc2580*
7231 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7232 M: Hannes Reinecke <hare@suse.de>
7233 L: linux-scsi@vger.kernel.org
7235 W: www.Open-FCoE.org
7236 F: drivers/scsi/fcoe/
7237 F: drivers/scsi/libfc/
7239 F: include/scsi/libfc.h
7240 F: include/scsi/libfcoe.h
7241 F: include/uapi/scsi/fc/
7243 FILE LOCKING (flock() and fcntl()/lockf())
7244 M: Jeff Layton <jlayton@kernel.org>
7245 M: "J. Bruce Fields" <bfields@fieldses.org>
7246 L: linux-fsdevel@vger.kernel.org
7250 F: include/linux/fcntl.h
7251 F: include/uapi/linux/fcntl.h
7253 FILESYSTEM DIRECT ACCESS (DAX)
7254 M: Dan Williams <dan.j.williams@intel.com>
7255 R: Matthew Wilcox <willy@infradead.org>
7256 R: Jan Kara <jack@suse.cz>
7257 L: linux-fsdevel@vger.kernel.org
7258 L: nvdimm@lists.linux.dev
7261 F: include/linux/dax.h
7262 F: include/trace/events/fs_dax.h
7264 FILESYSTEMS (VFS and infrastructure)
7265 M: Alexander Viro <viro@zeniv.linux.org.uk>
7266 L: linux-fsdevel@vger.kernel.org
7269 F: include/linux/fs.h
7270 F: include/linux/fs_types.h
7271 F: include/uapi/linux/fs.h
7272 F: include/uapi/linux/openat2.h
7277 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7278 M: Riku Voipio <riku.voipio@iki.fi>
7279 L: linux-hwmon@vger.kernel.org
7281 F: drivers/hwmon/f75375s.c
7282 F: include/linux/f75375s.h
7284 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7285 M: Clemens Ladisch <clemens@ladisch.de>
7286 M: Takashi Sakamoto <o-takashi@sakamocchi.jp>
7287 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7289 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7290 F: include/uapi/sound/firewire.h
7293 FIREWIRE MEDIA DRIVERS (firedtv)
7294 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7295 L: linux-media@vger.kernel.org
7296 L: linux1394-devel@lists.sourceforge.net
7298 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7299 F: drivers/media/firewire/
7301 FIREWIRE SBP-2 TARGET
7302 M: Chris Boot <bootc@bootc.net>
7303 L: linux-scsi@vger.kernel.org
7304 L: target-devel@vger.kernel.org
7305 L: linux1394-devel@lists.sourceforge.net
7307 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7308 F: drivers/target/sbp/
7311 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7312 L: linux1394-devel@lists.sourceforge.net
7314 W: http://ieee1394.wiki.kernel.org/
7315 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7316 F: drivers/firewire/
7317 F: include/linux/firewire.h
7318 F: include/uapi/linux/firewire*.h
7321 FIRMWARE FRAMEWORK FOR ARMV8-A
7322 M: Sudeep Holla <sudeep.holla@arm.com>
7323 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7325 F: drivers/firmware/arm_ffa/
7326 F: include/linux/arm_ffa.h
7328 FIRMWARE LOADER (request_firmware)
7329 M: Luis Chamberlain <mcgrof@kernel.org>
7330 L: linux-kernel@vger.kernel.org
7332 F: Documentation/firmware_class/
7333 F: drivers/base/firmware_loader/
7334 F: include/linux/firmware.h
7336 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7337 M: Joshua Morris <josh.h.morris@us.ibm.com>
7338 M: Philip Kelleher <pjk1939@linux.ibm.com>
7340 F: drivers/block/rsxx/
7342 FLEXTIMER FTM-QUADDEC DRIVER
7343 M: Patrick Havelange <patrick.havelange@essensium.com>
7344 L: linux-iio@vger.kernel.org
7346 F: Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7347 F: drivers/counter/ftm-quaddec.c
7350 M: Denis Efremov <efremov@linux.com>
7351 L: linux-block@vger.kernel.org
7353 F: drivers/block/floppy.c
7355 FLYSKY FSIA6B RC RECEIVER
7356 M: Markus Koch <markus@notsyncing.net>
7357 L: linux-input@vger.kernel.org
7359 F: drivers/input/joystick/fsia6b.c
7361 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7362 M: Geoffrey D. Bennett <g@b4.vu>
7363 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7365 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7366 F: sound/usb/mixer_scarlett_gen2.c
7368 FORCEDETH GIGABIT ETHERNET DRIVER
7369 M: Rain River <rain.1986.08.12@gmail.com>
7370 M: Zhu Yanjun <zyjzyj2000@gmail.com>
7371 L: netdev@vger.kernel.org
7373 F: drivers/net/ethernet/nvidia/*
7376 M: Wu Hao <hao.wu@intel.com>
7377 R: Tom Rix <trix@redhat.com>
7378 L: linux-fpga@vger.kernel.org
7380 F: Documentation/ABI/testing/sysfs-bus-dfl*
7381 F: Documentation/fpga/dfl.rst
7382 F: drivers/fpga/dfl*
7383 F: drivers/uio/uio_dfl.c
7384 F: include/linux/dfl.h
7385 F: include/uapi/linux/fpga-dfl.h
7387 FPGA MANAGER FRAMEWORK
7388 M: Moritz Fischer <mdf@kernel.org>
7389 M: Wu Hao <hao.wu@intel.com>
7390 M: Xu Yilun <yilun.xu@intel.com>
7391 R: Tom Rix <trix@redhat.com>
7392 L: linux-fpga@vger.kernel.org
7394 Q: http://patchwork.kernel.org/project/linux-fpga/list/
7395 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7396 F: Documentation/devicetree/bindings/fpga/
7397 F: Documentation/driver-api/fpga/
7398 F: Documentation/fpga/
7400 F: include/linux/fpga/
7403 M: Bill Metzenthen <billm@melbpc.org.au>
7405 W: http://floatingpoint.sourceforge.net/emulator/index.html
7406 F: arch/x86/math-emu/
7409 L: dri-devel@lists.freedesktop.org
7410 L: linux-fbdev@vger.kernel.org
7412 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
7413 T: git git://anongit.freedesktop.org/drm/drm-misc
7414 F: Documentation/fb/
7416 F: include/linux/fb.h
7417 F: include/uapi/linux/fb.h
7418 F: include/uapi/video/
7421 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7422 M: Horia Geantă <horia.geanta@nxp.com>
7423 M: Pankaj Gupta <pankaj.gupta@nxp.com>
7424 L: linux-crypto@vger.kernel.org
7426 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7427 F: drivers/crypto/caam/
7429 FREESCALE COLDFIRE M5441X MMC DRIVER
7430 M: Angelo Dureghello <angelo.dureghello@timesys.com>
7431 L: linux-mmc@vger.kernel.org
7433 F: drivers/mmc/host/sdhci-esdhc-mcf.c
7434 F: include/linux/platform_data/mmc-esdhc-mcf.h
7436 FREESCALE DIU FRAMEBUFFER DRIVER
7437 M: Timur Tabi <timur@kernel.org>
7438 L: linux-fbdev@vger.kernel.org
7440 F: drivers/video/fbdev/fsl-diu-fb.*
7442 FREESCALE DMA DRIVER
7443 M: Li Yang <leoyang.li@nxp.com>
7444 M: Zhang Wei <zw@zh-kernel.org>
7445 L: linuxppc-dev@lists.ozlabs.org
7447 F: drivers/dma/fsldma.*
7449 FREESCALE DSPI DRIVER
7450 M: Vladimir Oltean <olteanv@gmail.com>
7451 L: linux-spi@vger.kernel.org
7453 F: Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7454 F: drivers/spi/spi-fsl-dspi.c
7455 F: include/linux/spi/spi-fsl-dspi.h
7457 FREESCALE ENETC ETHERNET DRIVERS
7458 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7459 L: netdev@vger.kernel.org
7461 F: drivers/net/ethernet/freescale/enetc/
7463 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7464 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7465 L: netdev@vger.kernel.org
7467 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7468 F: drivers/net/ethernet/freescale/gianfar*
7470 FREESCALE GPMI NAND DRIVER
7471 M: Han Xu <han.xu@nxp.com>
7472 L: linux-mtd@lists.infradead.org
7474 F: drivers/mtd/nand/raw/gpmi-nand/*
7476 FREESCALE I2C CPM DRIVER
7477 M: Jochen Friedrich <jochen@scram.de>
7478 L: linuxppc-dev@lists.ozlabs.org
7479 L: linux-i2c@vger.kernel.org
7481 F: drivers/i2c/busses/i2c-cpm.c
7483 FREESCALE IMX / MXC FEC DRIVER
7484 M: Joakim Zhang <qiangqing.zhang@nxp.com>
7485 L: netdev@vger.kernel.org
7487 F: Documentation/devicetree/bindings/net/fsl,fec.yaml
7488 F: drivers/net/ethernet/freescale/fec.h
7489 F: drivers/net/ethernet/freescale/fec_main.c
7490 F: drivers/net/ethernet/freescale/fec_ptp.c
7492 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7493 M: Sascha Hauer <s.hauer@pengutronix.de>
7494 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7495 L: linux-fbdev@vger.kernel.org
7496 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7498 F: drivers/video/fbdev/imxfb.c
7499 F: include/linux/platform_data/video-imxfb.h
7501 FREESCALE IMX DDR PMU DRIVER
7502 M: Frank Li <Frank.li@nxp.com>
7503 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7505 F: Documentation/admin-guide/perf/imx-ddr.rst
7506 F: Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7507 F: drivers/perf/fsl_imx8_ddr_perf.c
7509 FREESCALE IMX I2C DRIVER
7510 M: Oleksij Rempel <o.rempel@pengutronix.de>
7511 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7512 L: linux-i2c@vger.kernel.org
7514 F: Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7515 F: drivers/i2c/busses/i2c-imx.c
7517 FREESCALE IMX LPI2C DRIVER
7518 M: Dong Aisheng <aisheng.dong@nxp.com>
7519 L: linux-i2c@vger.kernel.org
7520 L: linux-imx@nxp.com
7522 F: Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7523 F: drivers/i2c/busses/i2c-imx-lpi2c.c
7525 FREESCALE MPC I2C DRIVER
7526 M: Chris Packham <chris.packham@alliedtelesis.co.nz>
7527 L: linux-i2c@vger.kernel.org
7529 F: Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7530 F: drivers/i2c/busses/i2c-mpc.c
7532 FREESCALE QORIQ DPAA ETHERNET DRIVER
7533 M: Madalin Bucur <madalin.bucur@nxp.com>
7534 L: netdev@vger.kernel.org
7536 F: drivers/net/ethernet/freescale/dpaa
7538 FREESCALE QORIQ DPAA FMAN DRIVER
7539 M: Madalin Bucur <madalin.bucur@nxp.com>
7540 L: netdev@vger.kernel.org
7542 F: Documentation/devicetree/bindings/net/fsl-fman.txt
7543 F: drivers/net/ethernet/freescale/fman
7545 FREESCALE QORIQ PTP CLOCK DRIVER
7546 M: Yangbo Lu <yangbo.lu@nxp.com>
7547 L: netdev@vger.kernel.org
7549 F: Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7550 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7551 F: drivers/net/ethernet/freescale/dpaa2/dprtc*
7552 F: drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7553 F: drivers/ptp/ptp_qoriq.c
7554 F: drivers/ptp/ptp_qoriq_debugfs.c
7555 F: include/linux/fsl/ptp_qoriq.h
7557 FREESCALE QUAD SPI DRIVER
7558 M: Han Xu <han.xu@nxp.com>
7559 L: linux-spi@vger.kernel.org
7561 F: Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7562 F: drivers/spi/spi-fsl-qspi.c
7564 FREESCALE QUICC ENGINE LIBRARY
7565 M: Qiang Zhao <qiang.zhao@nxp.com>
7566 L: linuxppc-dev@lists.ozlabs.org
7568 F: drivers/soc/fsl/qe/
7569 F: include/soc/fsl/*qe*.h
7570 F: include/soc/fsl/*ucc*.h
7572 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7573 M: Li Yang <leoyang.li@nxp.com>
7574 L: netdev@vger.kernel.org
7575 L: linuxppc-dev@lists.ozlabs.org
7577 F: drivers/net/ethernet/freescale/ucc_geth*
7579 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7580 M: Zhao Qiang <qiang.zhao@nxp.com>
7581 L: netdev@vger.kernel.org
7582 L: linuxppc-dev@lists.ozlabs.org
7584 F: drivers/net/wan/fsl_ucc_hdlc*
7586 FREESCALE QUICC ENGINE UCC UART DRIVER
7587 M: Timur Tabi <timur@kernel.org>
7588 L: linuxppc-dev@lists.ozlabs.org
7590 F: drivers/tty/serial/ucc_uart.c
7592 FREESCALE SOC DRIVERS
7593 M: Li Yang <leoyang.li@nxp.com>
7594 L: linuxppc-dev@lists.ozlabs.org
7595 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7597 F: Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7598 F: Documentation/devicetree/bindings/soc/fsl/
7600 F: include/linux/fsl/
7602 FREESCALE SOC FS_ENET DRIVER
7603 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
7604 L: linuxppc-dev@lists.ozlabs.org
7605 L: netdev@vger.kernel.org
7607 F: drivers/net/ethernet/freescale/fs_enet/
7608 F: include/linux/fs_enet_pd.h
7610 FREESCALE SOC SOUND DRIVERS
7611 M: Nicolin Chen <nicoleotsuka@gmail.com>
7612 M: Xiubo Li <Xiubo.Lee@gmail.com>
7613 R: Fabio Estevam <festevam@gmail.com>
7614 R: Shengjiu Wang <shengjiu.wang@gmail.com>
7615 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7616 L: linuxppc-dev@lists.ozlabs.org
7618 F: sound/soc/fsl/fsl*
7619 F: sound/soc/fsl/imx*
7620 F: sound/soc/fsl/mpc8610_hpcd.c
7622 FREESCALE USB PERIPHERAL DRIVERS
7623 M: Li Yang <leoyang.li@nxp.com>
7624 L: linux-usb@vger.kernel.org
7625 L: linuxppc-dev@lists.ozlabs.org
7627 F: drivers/usb/gadget/udc/fsl*
7629 FREESCALE USB PHY DRIVER
7630 M: Ran Wang <ran.wang_1@nxp.com>
7631 L: linux-usb@vger.kernel.org
7632 L: linuxppc-dev@lists.ozlabs.org
7634 F: drivers/usb/phy/phy-fsl-usb*
7637 M: Christoph Hellwig <hch@infradead.org>
7639 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
7643 M: "Rafael J. Wysocki" <rafael@kernel.org>
7644 M: Pavel Machek <pavel@ucw.cz>
7645 L: linux-pm@vger.kernel.org
7647 F: Documentation/power/freezing-of-tasks.rst
7648 F: include/linux/freezer.h
7652 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7653 L: linux-kernel@vger.kernel.org
7655 F: include/linux/frontswap.h
7658 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7659 M: David Howells <dhowells@redhat.com>
7660 L: linux-cachefs@redhat.com (moderated for non-subscribers)
7662 F: Documentation/filesystems/caching/
7664 F: include/linux/fscache*.h
7666 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7667 M: Theodore Y. Ts'o <tytso@mit.edu>
7668 M: Jaegeuk Kim <jaegeuk@kernel.org>
7669 M: Eric Biggers <ebiggers@kernel.org>
7670 L: linux-fscrypt@vger.kernel.org
7672 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7673 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7674 F: Documentation/filesystems/fscrypt.rst
7676 F: include/linux/fscrypt*.h
7677 F: include/uapi/linux/fscrypt.h
7680 M: Jeremy Kerr <jk@ozlabs.org>
7681 M: Joel Stanley <joel@jms.id.au>
7682 R: Alistar Popple <alistair@popple.id.au>
7683 R: Eddie James <eajames@linux.ibm.com>
7684 L: linux-fsi@lists.ozlabs.org
7686 Q: http://patchwork.ozlabs.org/project/linux-fsi/list/
7687 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7689 F: include/linux/fsi*.h
7690 F: include/trace/events/fsi*.h
7692 FSI-ATTACHED I2C DRIVER
7693 M: Eddie James <eajames@linux.ibm.com>
7694 L: linux-i2c@vger.kernel.org
7695 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
7697 F: Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7698 F: drivers/i2c/busses/i2c-fsi.c
7700 FSI-ATTACHED SPI DRIVER
7701 M: Eddie James <eajames@linux.ibm.com>
7702 L: linux-spi@vger.kernel.org
7704 F: Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7705 F: drivers/spi/spi-fsi.c
7707 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7708 M: Jan Kara <jack@suse.cz>
7709 R: Amir Goldstein <amir73il@gmail.com>
7710 L: linux-fsdevel@vger.kernel.org
7712 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7714 F: include/linux/fsnotify*.h
7716 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7717 M: Eric Biggers <ebiggers@kernel.org>
7718 M: Theodore Y. Ts'o <tytso@mit.edu>
7719 L: linux-fscrypt@vger.kernel.org
7721 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7722 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7723 F: Documentation/filesystems/fsverity.rst
7725 F: include/linux/fsverity.h
7726 F: include/uapi/linux/fsverity.h
7728 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7729 M: Michael Zaidman <michael.zaidman@gmail.com>
7730 L: linux-i2c@vger.kernel.org
7731 L: linux-input@vger.kernel.org
7733 F: drivers/hid/hid-ft260.c
7735 FUJITSU LAPTOP EXTRAS
7736 M: Jonathan Woithe <jwoithe@just42.net>
7737 L: platform-driver-x86@vger.kernel.org
7739 F: drivers/platform/x86/fujitsu-laptop.c
7741 FUJITSU M-5MO LS CAMERA ISP DRIVER
7742 M: Kyungmin Park <kyungmin.park@samsung.com>
7743 M: Heungjun Kim <riverful.kim@samsung.com>
7744 L: linux-media@vger.kernel.org
7746 F: drivers/media/i2c/m5mols/
7747 F: include/media/i2c/m5mols.h
7749 FUJITSU TABLET EXTRAS
7750 M: Robert Gerlach <khnz@gmx.de>
7751 L: platform-driver-x86@vger.kernel.org
7753 F: drivers/platform/x86/fujitsu-tablet.c
7755 FUSE: FILESYSTEM IN USERSPACE
7756 M: Miklos Szeredi <miklos@szeredi.hu>
7757 L: linux-fsdevel@vger.kernel.org
7759 W: https://github.com/libfuse/
7760 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7761 F: Documentation/filesystems/fuse.rst
7763 F: include/uapi/linux/fuse.h
7766 M: Thomas Gleixner <tglx@linutronix.de>
7767 M: Ingo Molnar <mingo@redhat.com>
7768 R: Peter Zijlstra <peterz@infradead.org>
7769 R: Darren Hart <dvhart@infradead.org>
7770 R: Davidlohr Bueso <dave@stgolabs.net>
7771 L: linux-kernel@vger.kernel.org
7773 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7774 F: Documentation/locking/*futex*
7775 F: include/asm-generic/futex.h
7776 F: include/linux/futex.h
7777 F: include/uapi/linux/futex.h
7779 F: tools/perf/bench/futex*
7780 F: tools/testing/selftests/futex/
7782 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7783 M: Tim Harvey <tharvey@gateworks.com>
7784 M: Robert Jones <rjones@gateworks.com>
7786 F: Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7787 F: drivers/mfd/gateworks-gsc.c
7788 F: include/linux/mfd/gsc.h
7789 F: Documentation/hwmon/gsc-hwmon.rst
7790 F: drivers/hwmon/gsc-hwmon.c
7791 F: include/linux/platform_data/gsc_hwmon.h
7794 M: Kees Cook <keescook@chromium.org>
7795 L: linux-hardening@vger.kernel.org
7797 F: Documentation/kbuild/gcc-plugins.rst
7798 F: scripts/Makefile.gcc-plugins
7799 F: scripts/gcc-plugins/
7801 GCOV BASED KERNEL PROFILING
7802 M: Peter Oberparleiter <oberpar@linux.ibm.com>
7804 F: Documentation/dev-tools/gcov.rst
7807 GDB KERNEL DEBUGGING HELPER SCRIPTS
7808 M: Jan Kiszka <jan.kiszka@siemens.com>
7809 M: Kieran Bingham <kbingham@kernel.org>
7813 GEMINI CRYPTO DRIVER
7814 M: Corentin Labbe <clabbe@baylibre.com>
7815 L: linux-crypto@vger.kernel.org
7817 F: drivers/crypto/gemini/
7819 GEMTEK FM RADIO RECEIVER DRIVER
7820 M: Hans Verkuil <hverkuil@xs4all.nl>
7821 L: linux-media@vger.kernel.org
7823 W: https://linuxtv.org
7824 T: git git://linuxtv.org/media_tree.git
7825 F: drivers/media/radio/radio-gemtek*
7827 GENERIC ARCHITECTURE TOPOLOGY
7828 M: Sudeep Holla <sudeep.holla@arm.com>
7829 L: linux-kernel@vger.kernel.org
7831 F: drivers/base/arch_topology.c
7832 F: include/linux/arch_topology.h
7835 M: Thomas Gleixner <tglx@linutronix.de>
7836 M: Peter Zijlstra <peterz@infradead.org>
7837 M: Andy Lutomirski <luto@kernel.org>
7838 L: linux-kernel@vger.kernel.org
7840 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7841 F: include/linux/entry-common.h
7842 F: include/linux/entry-kvm.h
7845 GENERIC GPIO I2C DRIVER
7846 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7848 F: drivers/i2c/busses/i2c-gpio.c
7849 F: include/linux/platform_data/i2c-gpio.h
7851 GENERIC GPIO I2C MULTIPLEXER DRIVER
7852 M: Peter Korsgaard <peter.korsgaard@barco.com>
7853 L: linux-i2c@vger.kernel.org
7855 F: Documentation/i2c/muxes/i2c-mux-gpio.rst
7856 F: drivers/i2c/muxes/i2c-mux-gpio.c
7857 F: include/linux/platform_data/i2c-mux-gpio.h
7859 GENERIC HDLC (WAN) DRIVERS
7860 M: Krzysztof Halasa <khc@pm.waw.pl>
7862 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
7863 F: drivers/net/wan/c101.c
7864 F: drivers/net/wan/hd6457*
7865 F: drivers/net/wan/hdlc*
7866 F: drivers/net/wan/n2.c
7867 F: drivers/net/wan/pc300too.c
7868 F: drivers/net/wan/pci200syn.c
7869 F: drivers/net/wan/wanxl*
7871 GENERIC INCLUDE/ASM HEADER FILES
7872 M: Arnd Bergmann <arnd@arndb.de>
7873 L: linux-arch@vger.kernel.org
7875 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7876 F: include/asm-generic/
7877 F: include/uapi/asm-generic/
7879 GENERIC PHY FRAMEWORK
7880 M: Kishon Vijay Abraham I <kishon@ti.com>
7881 M: Vinod Koul <vkoul@kernel.org>
7882 L: linux-phy@lists.infradead.org
7884 Q: https://patchwork.kernel.org/project/linux-phy/list/
7885 T: git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7886 F: Documentation/devicetree/bindings/phy/
7888 F: include/linux/phy/
7890 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7891 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7893 F: drivers/i2c/muxes/i2c-demux-pinctrl.c
7896 M: "Rafael J. Wysocki" <rafael@kernel.org>
7897 M: Kevin Hilman <khilman@kernel.org>
7898 M: Ulf Hansson <ulf.hansson@linaro.org>
7899 L: linux-pm@vger.kernel.org
7901 F: Documentation/devicetree/bindings/power/power?domain*
7902 F: drivers/base/power/domain*.c
7903 F: include/linux/pm_domain.h
7905 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7906 M: Eugen Hristev <eugen.hristev@microchip.com>
7907 L: linux-input@vger.kernel.org
7909 F: drivers/input/touchscreen/resistive-adc-touch.c
7911 GENERIC STRING LIBRARY
7912 R: Andy Shevchenko <andy@kernel.org>
7915 F: lib/string_helpers.c
7916 F: lib/test_string.c
7917 F: lib/test-string_helpers.c
7919 GENERIC UIO DRIVER FOR PCI DEVICES
7920 M: "Michael S. Tsirkin" <mst@redhat.com>
7921 L: kvm@vger.kernel.org
7923 F: drivers/uio/uio_pci_generic.c
7925 GENERIC VDSO LIBRARY
7926 M: Andy Lutomirski <luto@kernel.org>
7927 M: Thomas Gleixner <tglx@linutronix.de>
7928 M: Vincenzo Frascino <vincenzo.frascino@arm.com>
7929 L: linux-kernel@vger.kernel.org
7931 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7932 F: include/asm-generic/vdso/vsyscall.h
7934 F: kernel/time/vsyscall.c
7937 GENWQE (IBM Generic Workqueue Card)
7938 M: Frank Haverkamp <haver@linux.ibm.com>
7940 F: drivers/misc/genwqe/
7942 GET_MAINTAINER SCRIPT
7943 M: Joe Perches <joe@perches.com>
7945 F: scripts/get_maintainer.pl
7948 M: Bob Peterson <rpeterso@redhat.com>
7949 M: Andreas Gruenbacher <agruenba@redhat.com>
7950 L: cluster-devel@redhat.com
7952 B: https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7953 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7954 F: Documentation/filesystems/gfs2*
7956 F: include/uapi/linux/gfs2_ondisk.h
7959 M: Thomas Weißschuh <thomas@weissschuh.net>
7960 L: platform-driver-x86@vger.kernel.org
7962 F: drivers/platform/x86/gigabyte-wmi.c
7965 M: Johan Hovold <johan@kernel.org>
7967 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7968 F: Documentation/ABI/testing/sysfs-class-gnss
7969 F: Documentation/devicetree/bindings/gnss/
7971 F: include/linux/gnss.h
7974 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
7975 L: linux-media@vger.kernel.org
7977 F: drivers/media/usb/go7007/
7980 M: Bastien Nocera <hadess@hadess.net>
7981 L: linux-input@vger.kernel.org
7983 F: drivers/input/touchscreen/goodix.c
7985 GOOGLE ETHERNET DRIVERS
7986 M: Jeroen de Borst <jeroendb@google.com>
7987 R: Catherine Sullivan <csully@google.com>
7988 R: David Awogbemila <awogbemila@google.com>
7989 L: netdev@vger.kernel.org
7991 F: Documentation/networking/device_drivers/ethernet/google/gve.rst
7992 F: drivers/net/ethernet/google
7994 GPD POCKET FAN DRIVER
7995 M: Hans de Goede <hdegoede@redhat.com>
7996 L: platform-driver-x86@vger.kernel.org
7998 F: drivers/platform/x86/gpd-pocket-fan.c
8001 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8002 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8003 L: linux-gpio@vger.kernel.org
8004 L: linux-acpi@vger.kernel.org
8006 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8007 F: Documentation/firmware-guide/acpi/gpio-properties.rst
8008 F: drivers/gpio/gpiolib-acpi.c
8009 F: drivers/gpio/gpiolib-acpi.h
8012 M: Geert Uytterhoeven <geert+renesas@glider.be>
8013 L: linux-gpio@vger.kernel.org
8015 F: Documentation/admin-guide/gpio/gpio-aggregator.rst
8016 F: drivers/gpio/gpio-aggregator.c
8019 M: Sean Young <sean@mess.org>
8020 L: linux-media@vger.kernel.org
8022 F: drivers/media/rc/gpio-ir-tx.c
8025 M: Bamvor Jian Zhang <bamv2005@gmail.com>
8026 L: linux-gpio@vger.kernel.org
8028 F: drivers/gpio/gpio-mockup.c
8029 F: tools/testing/selftests/gpio/
8032 R: Michael Walle <michael@walle.cc>
8034 F: drivers/gpio/gpio-regmap.c
8035 F: include/linux/gpio/regmap.h
8038 M: Linus Walleij <linus.walleij@linaro.org>
8039 M: Bartosz Golaszewski <brgl@bgdev.pl>
8040 L: linux-gpio@vger.kernel.org
8042 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8043 F: Documentation/ABI/obsolete/sysfs-gpio
8044 F: Documentation/ABI/testing/gpio-cdev
8045 F: Documentation/admin-guide/gpio/
8046 F: Documentation/devicetree/bindings/gpio/
8047 F: Documentation/driver-api/gpio/
8049 F: include/asm-generic/gpio.h
8050 F: include/linux/gpio.h
8051 F: include/linux/gpio/
8052 F: include/linux/of_gpio.h
8053 F: include/uapi/linux/gpio.h
8056 GRE DEMULTIPLEXER DRIVER
8057 M: Dmitry Kozlov <xeb@mail.ru>
8058 L: netdev@vger.kernel.org
8060 F: include/net/gre.h
8061 F: net/ipv4/gre_demux.c
8062 F: net/ipv4/gre_offload.c
8064 GRETH 10/100/1G Ethernet MAC device driver
8065 M: Andreas Larsson <andreas@gaisler.com>
8066 L: netdev@vger.kernel.org
8068 F: drivers/net/ethernet/aeroflex/
8070 GREYBUS AUDIO PROTOCOLS DRIVERS
8071 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
8072 M: Mark Greer <mgreer@animalcreek.com>
8074 F: drivers/staging/greybus/audio_apbridgea.c
8075 F: drivers/staging/greybus/audio_apbridgea.h
8076 F: drivers/staging/greybus/audio_codec.c
8077 F: drivers/staging/greybus/audio_codec.h
8078 F: drivers/staging/greybus/audio_gb.c
8079 F: drivers/staging/greybus/audio_manager.c
8080 F: drivers/staging/greybus/audio_manager.h
8081 F: drivers/staging/greybus/audio_manager_module.c
8082 F: drivers/staging/greybus/audio_manager_private.h
8083 F: drivers/staging/greybus/audio_manager_sysfs.c
8084 F: drivers/staging/greybus/audio_module.c
8085 F: drivers/staging/greybus/audio_topology.c
8087 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8088 M: Viresh Kumar <vireshk@kernel.org>
8090 F: drivers/staging/greybus/authentication.c
8091 F: drivers/staging/greybus/bootrom.c
8092 F: drivers/staging/greybus/firmware.h
8093 F: drivers/staging/greybus/fw-core.c
8094 F: drivers/staging/greybus/fw-download.c
8095 F: drivers/staging/greybus/fw-management.c
8096 F: drivers/staging/greybus/greybus_authentication.h
8097 F: drivers/staging/greybus/greybus_firmware.h
8098 F: drivers/staging/greybus/hid.c
8099 F: drivers/staging/greybus/i2c.c
8100 F: drivers/staging/greybus/spi.c
8101 F: drivers/staging/greybus/spilib.c
8102 F: drivers/staging/greybus/spilib.h
8104 GREYBUS LOOPBACK DRIVER
8105 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
8107 F: drivers/staging/greybus/loopback.c
8109 GREYBUS PLATFORM DRIVERS
8110 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8112 F: drivers/staging/greybus/arche-apb-ctrl.c
8113 F: drivers/staging/greybus/arche-platform.c
8114 F: drivers/staging/greybus/arche_platform.h
8116 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8117 M: Rui Miguel Silva <rmfrfs@gmail.com>
8119 F: drivers/staging/greybus/gpio.c
8120 F: drivers/staging/greybus/light.c
8121 F: drivers/staging/greybus/power_supply.c
8122 F: drivers/staging/greybus/sdio.c
8123 F: drivers/staging/greybus/spi.c
8124 F: drivers/staging/greybus/spilib.c
8127 M: Johan Hovold <johan@kernel.org>
8128 M: Alex Elder <elder@kernel.org>
8129 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8130 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
8133 F: drivers/staging/greybus/
8134 F: include/linux/greybus.h
8135 F: include/linux/greybus/
8137 GREYBUS UART PROTOCOLS DRIVERS
8138 M: David Lin <dtwlin@gmail.com>
8140 F: drivers/staging/greybus/log.c
8141 F: drivers/staging/greybus/uart.c
8143 GS1662 VIDEO SERIALIZER
8144 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8145 L: linux-media@vger.kernel.org
8147 T: git git://linuxtv.org/media_tree.git
8148 F: drivers/media/spi/gs1662.c
8150 GSPCA FINEPIX SUBDRIVER
8151 M: Frank Zago <frank@zago.net>
8152 L: linux-media@vger.kernel.org
8154 T: git git://linuxtv.org/media_tree.git
8155 F: drivers/media/usb/gspca/finepix.c
8157 GSPCA GL860 SUBDRIVER
8158 M: Olivier Lorin <o.lorin@laposte.net>
8159 L: linux-media@vger.kernel.org
8161 T: git git://linuxtv.org/media_tree.git
8162 F: drivers/media/usb/gspca/gl860/
8164 GSPCA M5602 SUBDRIVER
8165 M: Erik Andren <erik.andren@gmail.com>
8166 L: linux-media@vger.kernel.org
8168 T: git git://linuxtv.org/media_tree.git
8169 F: drivers/media/usb/gspca/m5602/
8171 GSPCA PAC207 SONIXB SUBDRIVER
8172 M: Hans Verkuil <hverkuil@xs4all.nl>
8173 L: linux-media@vger.kernel.org
8175 T: git git://linuxtv.org/media_tree.git
8176 F: drivers/media/usb/gspca/pac207.c
8178 GSPCA SN9C20X SUBDRIVER
8179 M: Brian Johnson <brijohn@gmail.com>
8180 L: linux-media@vger.kernel.org
8182 T: git git://linuxtv.org/media_tree.git
8183 F: drivers/media/usb/gspca/sn9c20x.c
8185 GSPCA T613 SUBDRIVER
8186 M: Leandro Costantino <lcostantino@gmail.com>
8187 L: linux-media@vger.kernel.org
8189 T: git git://linuxtv.org/media_tree.git
8190 F: drivers/media/usb/gspca/t613.c
8192 GSPCA USB WEBCAM DRIVER
8193 M: Hans Verkuil <hverkuil@xs4all.nl>
8194 L: linux-media@vger.kernel.org
8196 T: git git://linuxtv.org/media_tree.git
8197 F: drivers/media/usb/gspca/
8199 GTP (GPRS Tunneling Protocol)
8200 M: Pablo Neira Ayuso <pablo@netfilter.org>
8201 M: Harald Welte <laforge@gnumonks.org>
8202 L: osmocom-net-gprs@lists.osmocom.org
8204 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8205 F: drivers/net/gtp.c
8207 GUID PARTITION TABLE (GPT)
8208 M: Davidlohr Bueso <dave@stgolabs.net>
8209 L: linux-efi@vger.kernel.org
8211 F: block/partitions/efi.*
8214 M: Yoshinori Sato <ysato@users.sourceforge.jp>
8215 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8217 W: http://uclinux-h8.sourceforge.jp
8218 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8220 F: drivers/clk/h8300/
8221 F: drivers/clocksource/h8300_*.c
8222 F: drivers/irqchip/irq-renesas-h8*.c
8224 HABANALABS PCI DRIVER
8225 M: Oded Gabbay <ogabbay@kernel.org>
8227 T: git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8228 F: Documentation/ABI/testing/debugfs-driver-habanalabs
8229 F: Documentation/ABI/testing/sysfs-driver-habanalabs
8230 F: drivers/misc/habanalabs/
8231 F: include/uapi/misc/habanalabs.h
8234 M: Antti Palosaari <crope@iki.fi>
8235 L: linux-media@vger.kernel.org
8237 W: https://linuxtv.org
8238 W: http://palosaari.fi/linux/
8239 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8240 T: git git://linuxtv.org/anttip/media_tree.git
8241 F: drivers/media/usb/hackrf/
8243 HANTRO VPU CODEC DRIVER
8244 M: Ezequiel Garcia <ezequiel@collabora.com>
8245 M: Philipp Zabel <p.zabel@pengutronix.de>
8246 L: linux-media@vger.kernel.org
8247 L: linux-rockchip@lists.infradead.org
8249 F: Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8250 F: Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8251 F: drivers/staging/media/hantro/
8253 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8254 M: Frank Seidel <frank@f-seidel.de>
8255 L: platform-driver-x86@vger.kernel.org
8257 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8258 F: drivers/platform/x86/hdaps.c
8261 M: Jean Delvare <jdelvare@suse.com>
8262 M: Guenter Roeck <linux@roeck-us.net>
8263 L: linux-hwmon@vger.kernel.org
8265 W: http://hwmon.wiki.kernel.org/
8266 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8267 F: Documentation/devicetree/bindings/hwmon/
8268 F: Documentation/hwmon/
8270 F: include/linux/hwmon*.h
8271 F: include/trace/events/hwmon*.h
8272 K: (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8274 HARDWARE RANDOM NUMBER GENERATOR CORE
8275 M: Matt Mackall <mpm@selenic.com>
8276 M: Herbert Xu <herbert@gondor.apana.org.au>
8277 L: linux-crypto@vger.kernel.org
8279 F: Documentation/admin-guide/hw_random.rst
8280 F: Documentation/devicetree/bindings/rng/
8281 F: drivers/char/hw_random/
8282 F: include/linux/hw_random.h
8284 HARDWARE SPINLOCK CORE
8285 M: Ohad Ben-Cohen <ohad@wizery.com>
8286 M: Bjorn Andersson <bjorn.andersson@linaro.org>
8287 R: Baolin Wang <baolin.wang7@gmail.com>
8288 L: linux-remoteproc@vger.kernel.org
8290 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8291 F: Documentation/devicetree/bindings/hwlock/
8292 F: Documentation/locking/hwspinlock.rst
8293 F: drivers/hwspinlock/
8294 F: include/linux/hwspinlock.h
8296 HARDWARE TRACING FACILITIES
8297 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
8299 F: drivers/hwtracing/
8301 HARMONY SOUND DRIVER
8302 L: linux-parisc@vger.kernel.org
8304 F: sound/parisc/harmony.*
8306 HDPVR USB VIDEO ENCODER DRIVER
8307 M: Hans Verkuil <hverkuil@xs4all.nl>
8308 L: linux-media@vger.kernel.org
8310 W: https://linuxtv.org
8311 T: git git://linuxtv.org/media_tree.git
8312 F: drivers/media/usb/hdpvr/
8314 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8315 M: Matt Hsiao <matt.hsiao@hpe.com>
8317 F: drivers/misc/hpilo.[ch]
8319 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8320 M: Jerry Hoemann <jerry.hoemann@hpe.com>
8322 F: Documentation/watchdog/hpwdt.rst
8323 F: drivers/watchdog/hpwdt.c
8325 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8326 M: Don Brace <don.brace@microchip.com>
8327 L: storagedev@microchip.com
8328 L: linux-scsi@vger.kernel.org
8330 F: Documentation/scsi/hpsa.rst
8331 F: drivers/scsi/hpsa*.[ch]
8332 F: include/linux/cciss*.h
8333 F: include/uapi/linux/cciss*.h
8336 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8337 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8338 L: linux-rdma@vger.kernel.org
8340 F: drivers/infiniband/hw/hfi1
8343 L: linux-fsdevel@vger.kernel.org
8345 F: Documentation/filesystems/hfs.rst
8349 L: linux-fsdevel@vger.kernel.org
8351 F: Documentation/filesystems/hfsplus.rst
8354 HGA FRAMEBUFFER DRIVER
8355 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8356 L: linux-nvidia@lists.surfsouth.com
8358 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8359 F: drivers/video/fbdev/hgafb.c
8361 HIBERNATION (aka Software Suspend, aka swsusp)
8362 M: "Rafael J. Wysocki" <rafael@kernel.org>
8363 M: Pavel Machek <pavel@ucw.cz>
8364 L: linux-pm@vger.kernel.org
8366 B: https://bugzilla.kernel.org
8367 F: arch/*/include/asm/suspend*.h
8369 F: drivers/base/power/
8370 F: include/linux/freezer.h
8371 F: include/linux/pm.h
8372 F: include/linux/suspend.h
8376 M: Jiri Kosina <jikos@kernel.org>
8377 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
8378 L: linux-input@vger.kernel.org
8380 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8382 F: include/linux/hid*
8383 F: include/uapi/linux/hid*
8385 HID PLAYSTATION DRIVER
8386 M: Roderick Colenbrander <roderick.colenbrander@sony.com>
8387 L: linux-input@vger.kernel.org
8389 F: drivers/hid/hid-playstation.c
8391 HID SENSOR HUB DRIVERS
8392 M: Jiri Kosina <jikos@kernel.org>
8393 M: Jonathan Cameron <jic23@kernel.org>
8394 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8395 L: linux-input@vger.kernel.org
8396 L: linux-iio@vger.kernel.org
8398 F: Documentation/hid/hid-sensor*
8399 F: drivers/hid/hid-sensor-*
8400 F: drivers/iio/*/hid-*
8401 F: include/linux/hid-sensor-*
8403 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8404 M: Thomas Gleixner <tglx@linutronix.de>
8405 L: linux-kernel@vger.kernel.org
8407 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8408 F: Documentation/timers/
8409 F: include/linux/clockchips.h
8410 F: include/linux/hrtimer.h
8411 F: kernel/time/clockevents.c
8412 F: kernel/time/hrtimer.c
8413 F: kernel/time/timer_*.c
8415 HIGH-SPEED SCC DRIVER FOR AX.25
8416 L: linux-hams@vger.kernel.org
8418 F: drivers/net/hamradio/dmascc.c
8419 F: drivers/net/hamradio/scc.c
8421 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8422 M: HighPoint Linux Team <linux@highpoint-tech.com>
8424 W: http://www.highpoint-tech.com
8425 F: Documentation/scsi/hptiop.rst
8426 F: drivers/scsi/hptiop.c
8429 M: Jes Sorensen <jes@trained-monkey.org>
8430 L: linux-hippi@sunsite.dk
8432 F: drivers/net/hippi/
8433 F: include/linux/hippidevice.h
8434 F: include/uapi/linux/if_hippi.h
8437 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8438 M: Kurt Kanzenbach <kurt@linutronix.de>
8439 L: netdev@vger.kernel.org
8441 F: Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8442 F: drivers/net/dsa/hirschmann/*
8443 F: include/linux/platform_data/hirschmann-hellcreek.h
8444 F: net/dsa/tag_hellcreek.c
8446 HISILICON DMA DRIVER
8447 M: Zhou Wang <wangzhou1@hisilicon.com>
8448 L: dmaengine@vger.kernel.org
8450 F: drivers/dma/hisi_dma.c
8452 HISILICON GPIO DRIVER
8453 M: Luo Jiaxing <luojiaxing@huawei.com>
8454 L: linux-gpio@vger.kernel.org
8456 F: drivers/gpio/gpio-hisi.c
8458 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8459 M: Zaibo Xu <xuzaibo@huawei.com>
8460 L: linux-crypto@vger.kernel.org
8462 F: Documentation/ABI/testing/debugfs-hisi-hpre
8463 F: drivers/crypto/hisilicon/hpre/hpre.h
8464 F: drivers/crypto/hisilicon/hpre/hpre_crypto.c
8465 F: drivers/crypto/hisilicon/hpre/hpre_main.c
8467 HISILICON I2C CONTROLLER DRIVER
8468 M: Yicong Yang <yangyicong@hisilicon.com>
8469 L: linux-i2c@vger.kernel.org
8471 W: https://www.hisilicon.com
8472 F: drivers/i2c/busses/i2c-hisi.c
8474 HISILICON LPC BUS DRIVER
8475 M: john.garry@huawei.com
8477 W: http://www.hisilicon.com
8478 F: Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8479 F: drivers/bus/hisi_lpc.c
8481 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8482 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8483 M: Salil Mehta <salil.mehta@huawei.com>
8484 L: netdev@vger.kernel.org
8486 W: http://www.hisilicon.com
8487 F: drivers/net/ethernet/hisilicon/hns3/
8489 HISILICON NETWORK SUBSYSTEM DRIVER
8490 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8491 M: Salil Mehta <salil.mehta@huawei.com>
8492 L: netdev@vger.kernel.org
8494 W: http://www.hisilicon.com
8495 F: Documentation/devicetree/bindings/net/hisilicon*.txt
8496 F: drivers/net/ethernet/hisilicon/
8498 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8499 M: John Stultz <john.stultz@linaro.org>
8500 L: linux-kernel@vger.kernel.org
8502 F: drivers/misc/hisi_hikey_usb.c
8503 F: Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8505 HISILICON PMU DRIVER
8506 M: Shaokun Zhang <zhangshaokun@hisilicon.com>
8508 W: http://www.hisilicon.com
8509 F: Documentation/admin-guide/perf/hisi-pmu.rst
8510 F: drivers/perf/hisilicon
8512 HISILICON QM AND ZIP Controller DRIVER
8513 M: Zhou Wang <wangzhou1@hisilicon.com>
8514 L: linux-crypto@vger.kernel.org
8516 F: Documentation/ABI/testing/debugfs-hisi-zip
8517 F: drivers/crypto/hisilicon/qm.c
8518 F: drivers/crypto/hisilicon/qm.h
8519 F: drivers/crypto/hisilicon/sgl.c
8520 F: drivers/crypto/hisilicon/zip/
8522 HISILICON ROCE DRIVER
8523 M: Wenpeng Liang <liangwenpeng@huawei.com>
8524 M: Weihang Li <liweihang@huawei.com>
8525 L: linux-rdma@vger.kernel.org
8527 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8528 F: drivers/infiniband/hw/hns/
8530 HISILICON SAS Controller
8531 M: John Garry <john.garry@huawei.com>
8533 W: http://www.hisilicon.com
8534 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8535 F: drivers/scsi/hisi_sas/
8537 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8538 M: Zaibo Xu <xuzaibo@huawei.com>
8539 L: linux-crypto@vger.kernel.org
8541 F: Documentation/ABI/testing/debugfs-hisi-sec
8542 F: drivers/crypto/hisilicon/sec2/sec.h
8543 F: drivers/crypto/hisilicon/sec2/sec_crypto.c
8544 F: drivers/crypto/hisilicon/sec2/sec_crypto.h
8545 F: drivers/crypto/hisilicon/sec2/sec_main.c
8547 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8548 M: Jay Fang <f.fangjian@huawei.com>
8549 L: linux-spi@vger.kernel.org
8551 W: http://www.hisilicon.com
8552 F: drivers/spi/spi-hisi-kunpeng.c
8554 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8555 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8556 L: linux-kernel@vger.kernel.org
8558 F: Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8559 F: drivers/spmi/hisi-spmi-controller.c
8561 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8562 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8563 L: linux-kernel@vger.kernel.org
8565 F: Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8566 F: drivers/mfd/hi6421-spmi-pmic.c
8568 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8569 M: Zaibo Xu <xuzaibo@huawei.com>
8571 F: drivers/crypto/hisilicon/trng/trng.c
8573 HISILICON V3XX SPI NOR FLASH Controller Driver
8574 M: John Garry <john.garry@huawei.com>
8576 W: http://www.hisilicon.com
8577 F: drivers/spi/spi-hisi-sfc-v3xx.c
8579 HMM - Heterogeneous Memory Management
8580 M: Jérôme Glisse <jglisse@redhat.com>
8581 L: linux-mm@kvack.org
8583 F: Documentation/vm/hmm.rst
8584 F: include/linux/hmm*
8587 F: tools/testing/selftests/vm/*hmm*
8590 M: Jouni Malinen <j@w1.fi>
8591 L: linux-wireless@vger.kernel.org
8593 W: http://w1.fi/hostap-driver.html
8594 F: drivers/net/wireless/intersil/hostap/
8596 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8597 L: platform-driver-x86@vger.kernel.org
8599 F: drivers/platform/x86/tc1100-wmi.c
8601 HPET: High Precision Event Timers driver
8602 M: Clemens Ladisch <clemens@ladisch.de>
8604 F: Documentation/timers/hpet.rst
8605 F: drivers/char/hpet.c
8606 F: include/linux/hpet.h
8607 F: include/uapi/linux/hpet.h
8611 F: arch/x86/include/asm/hpet.h
8612 F: arch/x86/kernel/hpet.c
8615 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8617 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8621 M: Sebastian Reichel <sre@kernel.org>
8623 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8624 F: Documentation/ABI/testing/sysfs-bus-hsi
8625 F: Documentation/driver-api/hsi.rst
8627 F: include/linux/hsi/
8628 F: include/uapi/linux/hsi/
8631 L: linux-usb@vger.kernel.org
8633 F: drivers/net/usb/hso.c
8635 HSR NETWORK PROTOCOL
8636 L: netdev@vger.kernel.org
8640 HT16K33 LED CONTROLLER DRIVER
8641 M: Robin van der Gracht <robin@protonic.nl>
8643 F: Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8644 F: drivers/auxdisplay/ht16k33.c
8646 HTCPEN TOUCHSCREEN DRIVER
8647 M: Pau Oliva Fora <pof@eslack.org>
8648 L: linux-input@vger.kernel.org
8650 F: drivers/input/touchscreen/htcpen.c
8652 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8653 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8654 L: linux-iio@vger.kernel.org
8656 W: http://www.st.com/
8657 F: Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8658 F: drivers/iio/humidity/hts221*
8660 HUAWEI ETHERNET DRIVER
8661 L: netdev@vger.kernel.org
8663 F: Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8664 F: drivers/net/ethernet/huawei/hinic/
8667 M: Mike Kravetz <mike.kravetz@oracle.com>
8668 L: linux-mm@kvack.org
8670 F: Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8671 F: Documentation/admin-guide/mm/hugetlbpage.rst
8672 F: Documentation/vm/hugetlbfs_reserv.rst
8674 F: include/linux/hugetlb.h
8678 M: Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8679 L: linux-media@vger.kernel.org
8681 W: https://linuxtv.org
8682 T: git git://linuxtv.org/media_tree.git
8683 F: drivers/media/platform/sti/hva
8685 HWPOISON MEMORY FAILURE HANDLING
8686 M: Naoya Horiguchi <naoya.horiguchi@nec.com>
8687 L: linux-mm@kvack.org
8689 F: mm/hwpoison-inject.c
8690 F: mm/memory-failure.c
8692 HYCON HY46XX TOUCHSCREEN SUPPORT
8693 M: Giulio Benetti <giulio.benetti@benettiengineering.com>
8694 L: linux-input@vger.kernel.org
8696 F: Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8697 F: drivers/input/touchscreen/hycon-hy46xx.c
8699 HYGON PROCESSOR SUPPORT
8700 M: Pu Wen <puwen@hygon.cn>
8701 L: linux-kernel@vger.kernel.org
8703 F: arch/x86/kernel/cpu/hygon.c
8705 HYNIX HI556 SENSOR DRIVER
8706 M: Shawn Tu <shawnx.tu@intel.com>
8707 L: linux-media@vger.kernel.org
8709 T: git git://linuxtv.org/media_tree.git
8710 F: drivers/media/i2c/hi556.c
8712 Hyper-V/Azure CORE AND DRIVERS
8713 M: "K. Y. Srinivasan" <kys@microsoft.com>
8714 M: Haiyang Zhang <haiyangz@microsoft.com>
8715 M: Stephen Hemminger <sthemmin@microsoft.com>
8716 M: Wei Liu <wei.liu@kernel.org>
8717 M: Dexuan Cui <decui@microsoft.com>
8718 L: linux-hyperv@vger.kernel.org
8720 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8721 F: Documentation/ABI/stable/sysfs-bus-vmbus
8722 F: Documentation/ABI/testing/debugfs-hyperv
8723 F: Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8724 F: arch/arm64/hyperv
8725 F: arch/arm64/include/asm/hyperv-tlfs.h
8726 F: arch/arm64/include/asm/mshyperv.h
8728 F: arch/x86/include/asm/hyperv-tlfs.h
8729 F: arch/x86/include/asm/mshyperv.h
8730 F: arch/x86/include/asm/trace/hyperv.h
8731 F: arch/x86/kernel/cpu/mshyperv.c
8732 F: drivers/clocksource/hyperv_timer.c
8733 F: drivers/hid/hid-hyperv.c
8735 F: drivers/input/serio/hyperv-keyboard.c
8736 F: drivers/iommu/hyperv-iommu.c
8737 F: drivers/net/ethernet/microsoft/
8738 F: drivers/net/hyperv/
8739 F: drivers/pci/controller/pci-hyperv-intf.c
8740 F: drivers/pci/controller/pci-hyperv.c
8741 F: drivers/scsi/storvsc_drv.c
8742 F: drivers/uio/uio_hv_generic.c
8743 F: drivers/video/fbdev/hyperv_fb.c
8744 F: include/asm-generic/hyperv-tlfs.h
8745 F: include/asm-generic/mshyperv.h
8746 F: include/clocksource/hyperv_timer.h
8747 F: include/linux/hyperv.h
8748 F: include/uapi/linux/hyperv.h
8749 F: net/vmw_vsock/hyperv_transport.c
8753 M: Vignesh Raghavendra <vigneshr@ti.com>
8754 L: linux-mtd@lists.infradead.org
8756 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8757 C: irc://irc.oftc.net/mtd
8758 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8759 F: Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8760 F: Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8761 F: drivers/mtd/hyperbus/
8762 F: include/linux/mtd/hyperbus.h
8764 HYPERVISOR VIRTUAL CONSOLE DRIVER
8765 L: linuxppc-dev@lists.ozlabs.org
8770 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8771 L: linux-i2c@vger.kernel.org
8772 L: linux-acpi@vger.kernel.org
8774 F: drivers/i2c/i2c-core-acpi.c
8776 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8777 M: Ajay Gupta <ajayg@nvidia.com>
8778 L: linux-i2c@vger.kernel.org
8780 F: Documentation/i2c/busses/i2c-nvidia-gpu.rst
8781 F: drivers/i2c/busses/i2c-nvidia-gpu.c
8784 M: Peter Rosin <peda@axentia.se>
8785 L: linux-i2c@vger.kernel.org
8787 F: Documentation/devicetree/bindings/i2c/i2c-arb*
8788 F: Documentation/devicetree/bindings/i2c/i2c-gate*
8789 F: Documentation/devicetree/bindings/i2c/i2c-mux*
8790 F: Documentation/i2c/i2c-topology.rst
8791 F: Documentation/i2c/muxes/
8792 F: drivers/i2c/i2c-mux.c
8793 F: drivers/i2c/muxes/
8794 F: include/linux/i2c-mux.h
8796 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8797 M: Gregory CLEMENT <gregory.clement@bootlin.com>
8798 L: linux-i2c@vger.kernel.org
8800 F: Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8801 F: drivers/i2c/busses/i2c-mv64xxx.c
8803 I2C OVER PARALLEL PORT
8804 M: Jean Delvare <jdelvare@suse.com>
8805 L: linux-i2c@vger.kernel.org
8807 F: Documentation/i2c/busses/i2c-parport.rst
8808 F: drivers/i2c/busses/i2c-parport.c
8811 M: Wolfram Sang <wsa@kernel.org>
8812 L: linux-i2c@vger.kernel.org
8814 W: https://i2c.wiki.kernel.org/
8815 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8817 F: Documentation/devicetree/bindings/i2c/i2c.txt
8818 F: Documentation/i2c/
8820 F: include/linux/i2c-dev.h
8821 F: include/linux/i2c-smbus.h
8822 F: include/linux/i2c.h
8823 F: include/uapi/linux/i2c-*.h
8824 F: include/uapi/linux/i2c.h
8826 I2C SUBSYSTEM HOST DRIVERS
8827 L: linux-i2c@vger.kernel.org
8829 W: https://i2c.wiki.kernel.org/
8830 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8831 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8832 F: Documentation/devicetree/bindings/i2c/
8833 F: drivers/i2c/algos/
8834 F: drivers/i2c/busses/
8837 M: Jean Delvare <jdelvare@suse.com>
8838 L: linux-i2c@vger.kernel.org
8840 F: Documentation/i2c/busses/i2c-taos-evm.rst
8841 F: drivers/i2c/busses/i2c-taos-evm.c
8844 M: Till Harbaum <till@harbaum.org>
8845 L: linux-i2c@vger.kernel.org
8847 W: http://www.harbaum.org/till/i2c_tiny_usb
8848 F: drivers/i2c/busses/i2c-tiny-usb.c
8850 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8851 M: Jean Delvare <jdelvare@suse.com>
8852 L: linux-i2c@vger.kernel.org
8854 F: Documentation/i2c/busses/i2c-ali1535.rst
8855 F: Documentation/i2c/busses/i2c-ali1563.rst
8856 F: Documentation/i2c/busses/i2c-ali15x3.rst
8857 F: Documentation/i2c/busses/i2c-amd756.rst
8858 F: Documentation/i2c/busses/i2c-amd8111.rst
8859 F: Documentation/i2c/busses/i2c-i801.rst
8860 F: Documentation/i2c/busses/i2c-nforce2.rst
8861 F: Documentation/i2c/busses/i2c-piix4.rst
8862 F: Documentation/i2c/busses/i2c-sis5595.rst
8863 F: Documentation/i2c/busses/i2c-sis630.rst
8864 F: Documentation/i2c/busses/i2c-sis96x.rst
8865 F: Documentation/i2c/busses/i2c-via.rst
8866 F: Documentation/i2c/busses/i2c-viapro.rst
8867 F: drivers/i2c/busses/i2c-ali1535.c
8868 F: drivers/i2c/busses/i2c-ali1563.c
8869 F: drivers/i2c/busses/i2c-ali15x3.c
8870 F: drivers/i2c/busses/i2c-amd756-s4882.c
8871 F: drivers/i2c/busses/i2c-amd756.c
8872 F: drivers/i2c/busses/i2c-amd8111.c
8873 F: drivers/i2c/busses/i2c-i801.c
8874 F: drivers/i2c/busses/i2c-isch.c
8875 F: drivers/i2c/busses/i2c-nforce2-s4985.c
8876 F: drivers/i2c/busses/i2c-nforce2.c
8877 F: drivers/i2c/busses/i2c-piix4.c
8878 F: drivers/i2c/busses/i2c-sis5595.c
8879 F: drivers/i2c/busses/i2c-sis630.c
8880 F: drivers/i2c/busses/i2c-sis96x.c
8881 F: drivers/i2c/busses/i2c-via.c
8882 F: drivers/i2c/busses/i2c-viapro.c
8884 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8885 M: Hans de Goede <hdegoede@redhat.com>
8886 L: linux-i2c@vger.kernel.org
8888 F: drivers/i2c/busses/i2c-cht-wc.c
8890 I2C/SMBUS ISMT DRIVER
8891 M: Seth Heasley <seth.heasley@intel.com>
8892 M: Neil Horman <nhorman@tuxdriver.com>
8893 L: linux-i2c@vger.kernel.org
8894 F: Documentation/i2c/busses/i2c-ismt.rst
8895 F: drivers/i2c/busses/i2c-ismt.c
8897 I2C/SMBUS STUB DRIVER
8898 M: Jean Delvare <jdelvare@suse.com>
8899 L: linux-i2c@vger.kernel.org
8901 F: drivers/i2c/i2c-stub.c
8903 I3C DRIVER FOR CADENCE I3C MASTER IP
8904 M: Przemysław Gaj <pgaj@cadence.com>
8906 F: Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8907 F: drivers/i3c/master/i3c-master-cdns.c
8909 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8910 M: Vitor Soares <vitor.soares@synopsys.com>
8912 F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8913 F: drivers/i3c/master/dw*
8916 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
8917 L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
8919 C: irc://chat.freenode.net/linux-i3c
8920 T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8921 F: Documentation/ABI/testing/sysfs-bus-i3c
8922 F: Documentation/devicetree/bindings/i3c/
8923 F: Documentation/driver-api/i3c
8925 F: include/linux/i3c/
8927 IA64 (Itanium) PLATFORM
8928 L: linux-ia64@vger.kernel.org
8930 F: Documentation/ia64/
8933 IBM Power 842 compression accelerator
8934 M: Haren Myneni <haren@us.ibm.com>
8937 F: drivers/crypto/nx/Kconfig
8938 F: drivers/crypto/nx/Makefile
8939 F: drivers/crypto/nx/nx-842*
8940 F: include/linux/sw842.h
8943 IBM Power in-Nest Crypto Acceleration
8944 M: Breno Leitão <leitao@debian.org>
8945 M: Nayna Jain <nayna@linux.ibm.com>
8946 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8947 L: linux-crypto@vger.kernel.org
8949 F: drivers/crypto/nx/Kconfig
8950 F: drivers/crypto/nx/Makefile
8951 F: drivers/crypto/nx/nx-aes*
8952 F: drivers/crypto/nx/nx-sha*
8953 F: drivers/crypto/nx/nx.*
8954 F: drivers/crypto/nx/nx_csbcpb.h
8955 F: drivers/crypto/nx/nx_debugfs.c
8957 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8958 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8959 L: linux-pci@vger.kernel.org
8960 L: linuxppc-dev@lists.ozlabs.org
8962 F: drivers/pci/hotplug/rpadlpar*
8964 IBM Power Linux RAID adapter
8965 M: Brian King <brking@us.ibm.com>
8967 F: drivers/scsi/ipr.*
8969 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8970 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8971 L: linux-pci@vger.kernel.org
8972 L: linuxppc-dev@lists.ozlabs.org
8974 F: drivers/pci/hotplug/rpaphp*
8976 IBM Power SRIOV Virtual NIC Device Driver
8977 M: Dany Madden <drt@linux.ibm.com>
8978 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8979 R: Thomas Falcon <tlfalcon@linux.ibm.com>
8980 L: netdev@vger.kernel.org
8982 F: drivers/net/ethernet/ibm/ibmvnic.*
8984 IBM Power Virtual Accelerator Switchboard
8985 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8986 L: linuxppc-dev@lists.ozlabs.org
8988 F: arch/powerpc/include/asm/vas.h
8989 F: arch/powerpc/platforms/powernv/copy-paste.h
8990 F: arch/powerpc/platforms/powernv/vas*
8992 IBM Power Virtual Ethernet Device Driver
8993 M: Cristobal Forno <cforno12@linux.ibm.com>
8994 L: netdev@vger.kernel.org
8996 F: drivers/net/ethernet/ibm/ibmveth.*
8998 IBM Power Virtual FC Device Drivers
8999 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9000 L: linux-scsi@vger.kernel.org
9002 F: drivers/scsi/ibmvscsi/ibmvfc*
9004 IBM Power Virtual Management Channel Driver
9005 M: Brad Warrum <bwarrum@linux.ibm.com>
9006 M: Ritu Agarwal <rituagar@linux.ibm.com>
9008 F: drivers/misc/ibmvmc.*
9010 IBM Power Virtual SCSI Device Drivers
9011 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9012 L: linux-scsi@vger.kernel.org
9014 F: drivers/scsi/ibmvscsi/ibmvscsi*
9015 F: include/scsi/viosrp.h
9017 IBM Power Virtual SCSI Device Target Driver
9018 M: Michael Cyr <mikecyr@linux.ibm.com>
9019 L: linux-scsi@vger.kernel.org
9020 L: target-devel@vger.kernel.org
9022 F: drivers/scsi/ibmvscsi_tgt/
9024 IBM Power VMX Cryptographic instructions
9025 M: Breno Leitão <leitao@debian.org>
9026 M: Nayna Jain <nayna@linux.ibm.com>
9027 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9028 L: linux-crypto@vger.kernel.org
9030 F: drivers/crypto/vmx/Kconfig
9031 F: drivers/crypto/vmx/Makefile
9032 F: drivers/crypto/vmx/aes*
9033 F: drivers/crypto/vmx/ghash*
9034 F: drivers/crypto/vmx/ppc-xlate.pl
9035 F: drivers/crypto/vmx/vmx.c
9037 IBM ServeRAID RAID DRIVER
9039 F: drivers/scsi/ips.*
9041 ICH LPC AND GPIO DRIVER
9042 M: Peter Tyser <ptyser@xes-inc.com>
9044 F: drivers/gpio/gpio-ich.c
9045 F: drivers/mfd/lpc_ich.c
9048 M: Max Staudt <max@enpas.org>
9049 L: linux-i2c@vger.kernel.org
9051 F: drivers/i2c/busses/i2c-icy.c
9053 IDEAPAD LAPTOP EXTRAS DRIVER
9054 M: Ike Panhc <ike.pan@canonical.com>
9055 L: platform-driver-x86@vger.kernel.org
9057 W: http://launchpad.net/ideapad-laptop
9058 F: drivers/platform/x86/ideapad-laptop.c
9060 IDEAPAD LAPTOP SLIDEBAR DRIVER
9061 M: Andrey Moiseev <o2g.org.ru@gmail.com>
9062 L: linux-input@vger.kernel.org
9064 W: https://github.com/o2genum/ideapad-slidebar
9065 F: drivers/input/misc/ideapad_slidebar.c
9067 IDT VersaClock 5 CLOCK DRIVER
9068 M: Luca Ceresoli <luca@lucaceresoli.net>
9070 F: Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9071 F: drivers/clk/clk-versaclock5.c
9073 IEEE 802.15.4 SUBSYSTEM
9074 M: Alexander Aring <alex.aring@gmail.com>
9075 M: Stefan Schmidt <stefan@datenfreihafen.org>
9076 L: linux-wpan@vger.kernel.org
9078 W: https://linux-wpan.org/
9079 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9080 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9081 F: Documentation/networking/ieee802154.rst
9082 F: drivers/net/ieee802154/
9083 F: include/linux/ieee802154.h
9084 F: include/linux/nl802154.h
9085 F: include/net/af_ieee802154.h
9086 F: include/net/cfg802154.h
9087 F: include/net/ieee802154_netdev.h
9088 F: include/net/mac802154.h
9089 F: include/net/nl802154.h
9094 M: Yotam Gigi <yotam.gi@gmail.com>
9095 M: Jamal Hadi Salim <jhs@mojatatu.com>
9096 F: include/net/ife.h
9097 F: include/uapi/linux/ife.h
9100 IGORPLUG-USB IR RECEIVER
9101 M: Sean Young <sean@mess.org>
9102 L: linux-media@vger.kernel.org
9104 F: drivers/media/rc/igorplugusb.c
9106 IGUANAWORKS USB IR TRANSCEIVER
9107 M: Sean Young <sean@mess.org>
9108 L: linux-media@vger.kernel.org
9110 F: drivers/media/rc/iguanair.c
9112 IIO DIGITAL POTENTIOMETER DAC
9113 M: Peter Rosin <peda@axentia.se>
9114 L: linux-iio@vger.kernel.org
9116 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9117 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9118 F: drivers/iio/dac/dpot-dac.c
9120 IIO ENVELOPE DETECTOR
9121 M: Peter Rosin <peda@axentia.se>
9122 L: linux-iio@vger.kernel.org
9124 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9125 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9126 F: drivers/iio/adc/envelope-detector.c
9129 M: Peter Rosin <peda@axentia.se>
9130 L: linux-iio@vger.kernel.org
9132 F: Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9133 F: drivers/iio/multiplexer/iio-mux.c
9135 IIO SCMI BASED DRIVER
9136 M: Jyoti Bhayana <jbhayana@google.com>
9137 L: linux-iio@vger.kernel.org
9139 F: drivers/iio/common/scmi_sensors/scmi_iio.c
9141 IIO SUBSYSTEM AND DRIVERS
9142 M: Jonathan Cameron <jic23@kernel.org>
9143 R: Lars-Peter Clausen <lars@metafoo.de>
9144 L: linux-iio@vger.kernel.org
9146 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9147 F: Documentation/ABI/testing/configfs-iio*
9148 F: Documentation/ABI/testing/sysfs-bus-iio*
9149 F: Documentation/devicetree/bindings/iio/
9151 F: drivers/staging/iio/
9152 F: include/linux/iio/
9156 M: Peter Rosin <peda@axentia.se>
9157 L: linux-iio@vger.kernel.org
9159 F: Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9160 F: Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9161 F: Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9162 F: drivers/iio/afe/iio-rescale.c
9164 IKANOS/ADI EAGLE ADSL USB DRIVER
9165 M: Matthieu Castet <castet.matthieu@free.fr>
9166 M: Stanislaw Gruszka <stf_xl@wp.pl>
9168 F: drivers/usb/atm/ueagle-atm.c
9170 IMGTEC ASCII LCD DRIVER
9171 M: Paul Burton <paulburton@kernel.org>
9173 F: Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9174 F: drivers/auxdisplay/img-ascii-lcd.c
9176 IMGTEC IR DECODER DRIVER
9178 F: drivers/media/rc/img-ir/
9180 IMON SOUNDGRAPH USB IR RECEIVER
9181 M: Sean Young <sean@mess.org>
9182 L: linux-media@vger.kernel.org
9184 F: drivers/media/rc/imon.c
9185 F: drivers/media/rc/imon_raw.c
9187 IMS TWINTURBO FRAMEBUFFER DRIVER
9188 L: linux-fbdev@vger.kernel.org
9190 F: drivers/video/fbdev/imsttfb.c
9192 INA209 HARDWARE MONITOR DRIVER
9193 M: Guenter Roeck <linux@roeck-us.net>
9194 L: linux-hwmon@vger.kernel.org
9196 F: Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9197 F: Documentation/hwmon/ina209.rst
9198 F: drivers/hwmon/ina209.c
9200 INA2XX HARDWARE MONITOR DRIVER
9201 M: Guenter Roeck <linux@roeck-us.net>
9202 L: linux-hwmon@vger.kernel.org
9204 F: Documentation/hwmon/ina2xx.rst
9205 F: drivers/hwmon/ina2xx.c
9206 F: include/linux/platform_data/ina2xx.h
9208 INDUSTRY PACK SUBSYSTEM (IPACK)
9209 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9210 M: Jens Taprogge <jens.taprogge@taprogge.org>
9211 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9212 L: industrypack-devel@lists.sourceforge.net
9214 W: http://industrypack.sourceforge.net
9217 INFINEON DPS310 Driver
9218 M: Eddie James <eajames@linux.ibm.com>
9219 L: linux-iio@vger.kernel.org
9221 F: drivers/iio/pressure/dps310.c
9223 INFINIBAND SUBSYSTEM
9224 M: Doug Ledford <dledford@redhat.com>
9225 M: Jason Gunthorpe <jgg@nvidia.com>
9226 L: linux-rdma@vger.kernel.org
9228 W: https://github.com/linux-rdma/rdma-core
9229 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9230 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9231 F: Documentation/devicetree/bindings/infiniband/
9232 F: Documentation/infiniband/
9233 F: drivers/infiniband/
9235 F: include/trace/events/ib_mad.h
9236 F: include/trace/events/ib_umad.h
9237 F: include/uapi/linux/if_infiniband.h
9238 F: include/uapi/rdma/
9239 F: samples/bpf/ibumad_kern.c
9240 F: samples/bpf/ibumad_user.c
9242 INGENIC JZ4780 NAND DRIVER
9243 M: Harvey Hunt <harveyhuntnexus@gmail.com>
9244 L: linux-mtd@lists.infradead.org
9245 L: linux-mips@vger.kernel.org
9247 F: drivers/mtd/nand/raw/ingenic/
9250 M: Paul Cercueil <paul@crapouillou.net>
9251 L: linux-mips@vger.kernel.org
9253 F: arch/mips/boot/dts/ingenic/
9254 F: arch/mips/generic/board-ingenic.c
9255 F: arch/mips/include/asm/mach-ingenic/
9256 F: arch/mips/ingenic/Kconfig
9257 F: drivers/clk/ingenic/
9258 F: drivers/dma/dma-jz4780.c
9259 F: drivers/gpu/drm/ingenic/
9260 F: drivers/i2c/busses/i2c-jz4780.c
9261 F: drivers/iio/adc/ingenic-adc.c
9262 F: drivers/irqchip/irq-ingenic.c
9263 F: drivers/memory/jz4780-nemc.c
9264 F: drivers/mmc/host/jz4740_mmc.c
9265 F: drivers/mtd/nand/raw/ingenic/
9266 F: drivers/pinctrl/pinctrl-ingenic.c
9267 F: drivers/power/supply/ingenic-battery.c
9268 F: drivers/pwm/pwm-jz4740.c
9269 F: drivers/remoteproc/ingenic_rproc.c
9270 F: drivers/rtc/rtc-jz4740.c
9271 F: drivers/tty/serial/8250/8250_ingenic.c
9272 F: drivers/usb/musb/jz4740.c
9273 F: drivers/watchdog/jz4740_wdt.c
9274 F: include/dt-bindings/iio/adc/ingenic,adc.h
9275 F: include/linux/mfd/ingenic-tcu.h
9276 F: sound/soc/codecs/jz47*
9277 F: sound/soc/jz4740/
9280 M: Jan Kara <jack@suse.cz>
9281 R: Amir Goldstein <amir73il@gmail.com>
9282 L: linux-fsdevel@vger.kernel.org
9284 F: Documentation/filesystems/inotify.rst
9285 F: fs/notify/inotify/
9286 F: include/linux/inotify.h
9287 F: include/uapi/linux/inotify.h
9289 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9290 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
9291 L: linux-input@vger.kernel.org
9293 Q: http://patchwork.kernel.org/project/linux-input/list/
9294 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9295 F: Documentation/devicetree/bindings/input/
9296 F: Documentation/devicetree/bindings/serio/
9297 F: Documentation/input/
9299 F: include/linux/input.h
9300 F: include/linux/input/
9301 F: include/uapi/linux/input-event-codes.h
9302 F: include/uapi/linux/input.h
9304 INPUT MULTITOUCH (MT) PROTOCOL
9305 M: Henrik Rydberg <rydberg@bitmath.org>
9306 L: linux-input@vger.kernel.org
9308 F: Documentation/input/multi-touch-protocol.rst
9309 F: drivers/input/input-mt.c
9312 INSIDE SECURE CRYPTO DRIVER
9313 M: Antoine Tenart <atenart@kernel.org>
9314 L: linux-crypto@vger.kernel.org
9316 F: drivers/crypto/inside-secure/
9318 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9319 M: Mimi Zohar <zohar@linux.ibm.com>
9320 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9321 L: linux-integrity@vger.kernel.org
9323 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9324 F: security/integrity/ima/
9326 INTEL 810/815 FRAMEBUFFER DRIVER
9327 M: Antonino Daplas <adaplas@gmail.com>
9328 L: linux-fbdev@vger.kernel.org
9330 F: drivers/video/fbdev/i810/
9333 M: Cezary Rojewski <cezary.rojewski@intel.com>
9334 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9335 M: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9336 M: Jie Yang <yang.jie@linux.intel.com>
9337 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9341 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9342 M: Hans de Goede <hdegoede@redhat.com>
9343 L: platform-driver-x86@vger.kernel.org
9345 F: drivers/platform/x86/intel/atomisp2/pm.c
9347 INTEL ATOMISP2 LED DRIVER
9348 M: Hans de Goede <hdegoede@redhat.com>
9349 L: platform-driver-x86@vger.kernel.org
9351 F: drivers/platform/x86/intel/atomisp2/led.c
9353 INTEL BIOS SAR INT1092 DRIVER
9354 M: Shravan Sudhakar <s.shravan@intel.com>
9355 M: Intel Corporation <linuxwwan@intel.com>
9356 L: platform-driver-x86@vger.kernel.org
9358 F: drivers/platform/x86/intel/int1092/
9360 INTEL BROXTON PMC DRIVER
9361 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9362 M: Zha Qipeng <qipeng.zha@intel.com>
9364 F: drivers/mfd/intel_pmc_bxt.c
9365 F: include/linux/mfd/intel_pmc_bxt.h
9367 INTEL C600 SERIES SAS CONTROLLER DRIVER
9368 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9369 L: linux-scsi@vger.kernel.org
9371 T: git git://git.code.sf.net/p/intel-sas/isci
9372 F: drivers/scsi/isci/
9374 INTEL CPU family model numbers
9375 M: Tony Luck <tony.luck@intel.com>
9377 L: linux-kernel@vger.kernel.org
9379 F: arch/x86/include/asm/intel-family.h
9381 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9382 M: Jani Nikula <jani.nikula@linux.intel.com>
9383 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9384 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
9385 L: intel-gfx@lists.freedesktop.org
9387 W: https://01.org/linuxgraphics/
9388 Q: http://patchwork.freedesktop.org/project/intel-gfx/
9389 B: https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9390 C: irc://irc.oftc.net/intel-gfx
9391 T: git git://anongit.freedesktop.org/drm-intel
9392 F: Documentation/gpu/i915.rst
9393 F: drivers/gpu/drm/i915/
9394 F: include/drm/i915*
9395 F: include/uapi/drm/i915_drm.h
9397 INTEL ETHERNET DRIVERS
9398 M: Jesse Brandeburg <jesse.brandeburg@intel.com>
9399 M: Tony Nguyen <anthony.l.nguyen@intel.com>
9400 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9402 W: http://www.intel.com/support/feedback.htm
9403 W: http://e1000.sourceforge.net/
9404 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9405 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9406 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9407 F: Documentation/networking/device_drivers/ethernet/intel/
9408 F: drivers/net/ethernet/intel/
9409 F: drivers/net/ethernet/intel/*/
9410 F: include/linux/avf/virtchnl.h
9411 F: include/linux/net/intel/iidc.h
9413 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9414 M: Mustafa Ismail <mustafa.ismail@intel.com>
9415 M: Shiraz Saleem <shiraz.saleem@intel.com>
9416 L: linux-rdma@vger.kernel.org
9418 F: drivers/infiniband/hw/irdma/
9419 F: include/uapi/rdma/irdma-abi.h
9421 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9422 M: Maik Broemme <mbroemme@libmpq.org>
9423 L: linux-fbdev@vger.kernel.org
9425 F: Documentation/fb/intelfb.rst
9426 F: drivers/video/fbdev/intelfb/
9429 M: Andy Shevchenko <andy@kernel.org>
9430 L: linux-gpio@vger.kernel.org
9432 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9433 F: drivers/gpio/gpio-ich.c
9434 F: drivers/gpio/gpio-merrifield.c
9435 F: drivers/gpio/gpio-ml-ioh.c
9436 F: drivers/gpio/gpio-pch.c
9437 F: drivers/gpio/gpio-sch.c
9438 F: drivers/gpio/gpio-sodaville.c
9440 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9441 M: Zhenyu Wang <zhenyuw@linux.intel.com>
9442 M: Zhi Wang <zhi.a.wang@intel.com>
9443 L: intel-gvt-dev@lists.freedesktop.org
9444 L: intel-gfx@lists.freedesktop.org
9446 W: https://01.org/igvt-g
9447 T: git https://github.com/intel/gvt-linux.git
9448 F: drivers/gpu/drm/i915/gvt/
9450 INTEL HID EVENT DRIVER
9451 M: Alex Hung <alex.hung@canonical.com>
9452 L: platform-driver-x86@vger.kernel.org
9454 F: drivers/platform/x86/intel/hid.c
9456 INTEL I/OAT DMA DRIVER
9457 M: Dave Jiang <dave.jiang@intel.com>
9458 R: Dan Williams <dan.j.williams@intel.com>
9459 L: dmaengine@vger.kernel.org
9461 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
9462 F: drivers/dma/ioat*
9465 M: Dave Jiang <dave.jiang@intel.com>
9466 L: dmaengine@vger.kernel.org
9468 F: drivers/dma/idxd/*
9469 F: include/uapi/linux/idxd.h
9472 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
9473 M: Len Brown <lenb@kernel.org>
9474 L: linux-pm@vger.kernel.org
9476 B: https://bugzilla.kernel.org
9477 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9478 F: drivers/idle/intel_idle.c
9480 INTEL INTEGRATED SENSOR HUB DRIVER
9481 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9482 M: Jiri Kosina <jikos@kernel.org>
9483 L: linux-input@vger.kernel.org
9485 F: drivers/hid/intel-ish-hid/
9488 M: David Woodhouse <dwmw2@infradead.org>
9489 M: Lu Baolu <baolu.lu@linux.intel.com>
9490 L: iommu@lists.linux-foundation.org
9492 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9493 F: drivers/iommu/intel/
9494 F: include/linux/intel-iommu.h
9495 F: include/linux/intel-svm.h
9497 INTEL IOP-ADMA DMA DRIVER
9498 R: Dan Williams <dan.j.williams@intel.com>
9500 F: drivers/dma/iop-adma.c
9502 INTEL IPU3 CSI-2 CIO2 DRIVER
9503 M: Yong Zhi <yong.zhi@intel.com>
9504 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9505 M: Bingbu Cao <bingbu.cao@intel.com>
9506 M: Dan Scally <djrscally@gmail.com>
9507 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9508 L: linux-media@vger.kernel.org
9510 T: git git://linuxtv.org/media_tree.git
9511 F: Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9512 F: drivers/media/pci/intel/ipu3/
9514 INTEL IPU3 CSI-2 IMGU DRIVER
9515 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9516 R: Bingbu Cao <bingbu.cao@intel.com>
9517 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9518 L: linux-media@vger.kernel.org
9520 F: Documentation/admin-guide/media/ipu3.rst
9521 F: Documentation/admin-guide/media/ipu3_rcb.svg
9522 F: Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9523 F: drivers/staging/media/ipu3/
9525 INTEL IXP4XX CRYPTO SUPPORT
9526 M: Corentin Labbe <clabbe@baylibre.com>
9527 L: linux-crypto@vger.kernel.org
9529 F: drivers/crypto/ixp4xx_crypto.c
9531 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9532 M: Krzysztof Halasa <khalasa@piap.pl>
9534 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
9535 F: drivers/net/wan/ixp4xx_hss.c
9536 F: drivers/soc/ixp4xx/ixp4xx-npe.c
9537 F: drivers/soc/ixp4xx/ixp4xx-qmgr.c
9538 F: include/linux/soc/ixp4xx/npe.h
9539 F: include/linux/soc/ixp4xx/qmgr.h
9541 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9542 M: Deepak Saxena <dsaxena@plexity.net>
9544 F: Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9545 F: drivers/char/hw_random/ixp4xx-rng.c
9547 INTEL KEEM BAY DRM DRIVER
9548 M: Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9549 M: Edmund Dea <edmund.j.dea@intel.com>
9551 F: Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9552 F: drivers/gpu/drm/kmb/
9554 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9555 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9557 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9558 F: drivers/crypto/keembay/Kconfig
9559 F: drivers/crypto/keembay/Makefile
9560 F: drivers/crypto/keembay/keembay-ocs-aes-core.c
9561 F: drivers/crypto/keembay/ocs-aes.c
9562 F: drivers/crypto/keembay/ocs-aes.h
9564 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9565 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9566 M: Declan Murphy <declan.murphy@intel.com>
9568 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9569 F: drivers/crypto/keembay/Kconfig
9570 F: drivers/crypto/keembay/Makefile
9571 F: drivers/crypto/keembay/keembay-ocs-hcu-core.c
9572 F: drivers/crypto/keembay/ocs-hcu.c
9573 F: drivers/crypto/keembay/ocs-hcu.h
9575 INTEL MANAGEMENT ENGINE (mei)
9576 M: Tomas Winkler <tomas.winkler@intel.com>
9577 L: linux-kernel@vger.kernel.org
9579 F: Documentation/driver-api/mei/*
9580 F: drivers/misc/mei/
9581 F: drivers/watchdog/mei_wdt.c
9582 F: include/linux/mei_cl_bus.h
9583 F: include/uapi/linux/mei.h
9586 INTEL MAX 10 BMC MFD DRIVER
9587 M: Xu Yilun <yilun.xu@intel.com>
9588 R: Tom Rix <trix@redhat.com>
9590 F: Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9591 F: Documentation/hwmon/intel-m10-bmc-hwmon.rst
9592 F: drivers/hwmon/intel-m10-bmc-hwmon.c
9593 F: drivers/mfd/intel-m10-bmc.c
9594 F: include/linux/mfd/intel-m10-bmc.h
9596 INTEL MENLOW THERMAL DRIVER
9597 M: Sujith Thomas <sujith.thomas@intel.com>
9598 L: linux-pm@vger.kernel.org
9600 W: https://01.org/linux-acpi
9601 F: drivers/thermal/intel/intel_menlow.c
9603 INTEL P-Unit IPC DRIVER
9604 M: Zha Qipeng <qipeng.zha@intel.com>
9605 L: platform-driver-x86@vger.kernel.org
9607 F: arch/x86/include/asm/intel_punit_ipc.h
9608 F: drivers/platform/x86/intel/punit_ipc.c
9610 INTEL PMC CORE DRIVER
9611 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9612 M: David E Box <david.e.box@intel.com>
9613 L: platform-driver-x86@vger.kernel.org
9615 F: Documentation/ABI/testing/sysfs-platform-intel-pmc
9616 F: drivers/platform/x86/intel/pmc/
9618 INTEL PMIC GPIO DRIVERS
9619 M: Andy Shevchenko <andy@kernel.org>
9621 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9622 F: drivers/gpio/gpio-*cove.c
9624 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9625 M: Andy Shevchenko <andy@kernel.org>
9627 F: drivers/mfd/intel_soc_pmic*
9628 F: include/linux/mfd/intel_soc_pmic*
9631 M: "David E. Box" <david.e.box@linux.intel.com>
9633 F: drivers/mfd/intel_pmt.c
9634 F: drivers/platform/x86/intel/pmt/
9636 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9637 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
9638 L: linux-wireless@vger.kernel.org
9640 F: Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9641 F: Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9642 F: drivers/net/wireless/intel/ipw2x00/
9645 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9646 M: Len Brown <lenb@kernel.org>
9647 L: linux-pm@vger.kernel.org
9649 F: drivers/cpufreq/intel_pstate.c
9651 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9652 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9653 L: linux-iio@vger.kernel.org
9654 F: drivers/counter/intel-qep.c
9657 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9659 F: arch/x86/include/asm/intel_scu_ipc.h
9660 F: drivers/platform/x86/intel_scu_*
9662 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9663 M: Daniel Scally <djrscally@gmail.com>
9665 F: drivers/platform/x86/intel/int3472/
9667 INTEL SPEED SELECT TECHNOLOGY
9668 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9669 L: platform-driver-x86@vger.kernel.org
9671 F: drivers/platform/x86/intel/speed_select_if/
9672 F: include/uapi/linux/isst_if.h
9673 F: tools/power/x86/intel-speed-select/
9675 INTEL STRATIX10 FIRMWARE DRIVERS
9676 M: Dinh Nguyen <dinguyen@kernel.org>
9677 L: linux-kernel@vger.kernel.org
9679 F: Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9680 F: Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9681 F: drivers/firmware/stratix10-rsu.c
9682 F: drivers/firmware/stratix10-svc.c
9683 F: include/linux/firmware/intel/stratix10-smc.h
9684 F: include/linux/firmware/intel/stratix10-svc-client.h
9686 INTEL TELEMETRY DRIVER
9687 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9688 M: "David E. Box" <david.e.box@linux.intel.com>
9689 L: platform-driver-x86@vger.kernel.org
9691 F: arch/x86/include/asm/intel_telemetry.h
9692 F: drivers/platform/x86/intel/telemetry/
9694 INTEL UNCORE FREQUENCY CONTROL
9695 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9696 L: platform-driver-x86@vger.kernel.org
9698 F: drivers/platform/x86/intel/uncore-frequency.c
9700 INTEL VIRTUAL BUTTON DRIVER
9701 M: AceLan Kao <acelan.kao@canonical.com>
9702 L: platform-driver-x86@vger.kernel.org
9704 F: drivers/platform/x86/intel/vbtn.c
9706 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9707 M: Stanislaw Gruszka <stf_xl@wp.pl>
9708 L: linux-wireless@vger.kernel.org
9710 F: drivers/net/wireless/intel/iwlegacy/
9712 INTEL WIRELESS WIFI LINK (iwlwifi)
9713 M: Luca Coelho <luciano.coelho@intel.com>
9714 L: linux-wireless@vger.kernel.org
9716 W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9717 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9718 F: drivers/net/wireless/intel/iwlwifi/
9720 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9721 M: Jithu Joseph <jithu.joseph@intel.com>
9722 R: Maurice Ma <maurice.ma@intel.com>
9724 W: https://slimbootloader.github.io/security/firmware-update.html
9725 F: drivers/platform/x86/intel/wmi/sbl-fw-update.c
9727 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9728 L: Dell.Client.Kernel@dell.com
9730 F: drivers/platform/x86/intel/wmi/thunderbolt.c
9732 INTEL WWAN IOSM DRIVER
9733 M: M Chetan Kumar <m.chetan.kumar@intel.com>
9734 M: Intel Corporation <linuxwwan@intel.com>
9735 L: netdev@vger.kernel.org
9737 F: drivers/net/wwan/iosm/
9740 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9742 F: Documentation/trace/intel_th.rst
9743 F: drivers/hwtracing/intel_th/
9744 F: include/linux/intel_th.h
9746 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9747 M: Ning Sun <ning.sun@intel.com>
9748 L: tboot-devel@lists.sourceforge.net
9750 W: http://tboot.sourceforge.net
9751 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9752 F: Documentation/x86/intel_txt.rst
9753 F: arch/x86/kernel/tboot.c
9754 F: include/linux/tboot.h
9757 M: Jarkko Sakkinen <jarkko@kernel.org>
9758 R: Dave Hansen <dave.hansen@linux.intel.com>
9759 L: linux-sgx@vger.kernel.org
9761 Q: https://patchwork.kernel.org/project/intel-sgx/list/
9762 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9763 F: Documentation/x86/sgx.rst
9764 F: arch/x86/entry/vdso/vsgx.S
9765 F: arch/x86/include/asm/sgx.h
9766 F: arch/x86/include/uapi/asm/sgx.h
9767 F: arch/x86/kernel/cpu/sgx/*
9768 F: tools/testing/selftests/sgx/*
9772 M: Georgi Djakov <djakov@kernel.org>
9773 L: linux-pm@vger.kernel.org
9775 T: git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9776 F: Documentation/devicetree/bindings/interconnect/
9777 F: Documentation/driver-api/interconnect.rst
9778 F: drivers/interconnect/
9779 F: include/dt-bindings/interconnect/
9780 F: include/linux/interconnect-provider.h
9781 F: include/linux/interconnect.h
9783 INTERRUPT COUNTER DRIVER
9784 M: Oleksij Rempel <o.rempel@pengutronix.de>
9785 R: Pengutronix Kernel Team <kernel@pengutronix.de>
9786 L: linux-iio@vger.kernel.org
9787 F: Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9788 F: drivers/counter/interrupt-cnt.c
9790 INVENSENSE ICM-426xx IMU DRIVER
9791 M: Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9792 L: linux-iio@vger.kernel.org
9794 W: https://invensense.tdk.com/
9795 F: Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9796 F: drivers/iio/imu/inv_icm42600/
9798 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9799 M: Linus Walleij <linus.walleij@linaro.org>
9800 L: linux-iio@vger.kernel.org
9802 F: Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9803 F: drivers/iio/gyro/mpu3050*
9805 IOC3 ETHERNET DRIVER
9806 M: Ralf Baechle <ralf@linux-mips.org>
9807 L: linux-mips@vger.kernel.org
9809 F: drivers/net/ethernet/sgi/ioc3-eth.c
9811 IOMAP FILESYSTEM LIBRARY
9812 M: Christoph Hellwig <hch@infradead.org>
9813 M: Darrick J. Wong <djwong@kernel.org>
9814 M: linux-xfs@vger.kernel.org
9815 M: linux-fsdevel@vger.kernel.org
9816 L: linux-xfs@vger.kernel.org
9817 L: linux-fsdevel@vger.kernel.org
9819 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9821 F: include/linux/iomap.h
9824 M: Joerg Roedel <joro@8bytes.org>
9825 M: Will Deacon <will@kernel.org>
9826 L: iommu@lists.linux-foundation.org
9828 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9829 F: Documentation/devicetree/bindings/iommu/
9830 F: Documentation/userspace-api/iommu.rst
9832 F: include/linux/iommu.h
9833 F: include/linux/iova.h
9834 F: include/linux/of_iommu.h
9835 F: include/uapi/linux/iommu.h
9838 M: Jens Axboe <axboe@kernel.dk>
9839 R: Pavel Begunkov <asml.silence@gmail.com>
9840 L: io-uring@vger.kernel.org
9842 T: git git://git.kernel.dk/linux-block
9843 T: git git://git.kernel.dk/liburing
9847 F: include/linux/io_uring.h
9848 F: include/uapi/linux/io_uring.h
9852 M: Corey Minyard <minyard@acm.org>
9853 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9855 W: http://openipmi.sourceforge.net/
9856 F: Documentation/driver-api/ipmi.rst
9857 F: Documentation/devicetree/bindings/ipmi/
9858 F: drivers/char/ipmi/
9859 F: include/linux/ipmi*
9860 F: include/uapi/linux/ipmi*
9862 IPS SCSI RAID DRIVER
9863 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9864 L: linux-scsi@vger.kernel.org
9866 W: http://www.adaptec.com/
9867 F: drivers/scsi/ips*
9870 M: Simon Horman <horms@verge.net.au>
9871 M: Julian Anastasov <ja@ssi.bg>
9872 L: netdev@vger.kernel.org
9873 L: lvs-devel@vger.kernel.org
9875 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9876 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9877 F: Documentation/networking/ipvs-sysctl.rst
9878 F: include/net/ip_vs.h
9879 F: include/uapi/linux/ip_vs.h
9880 F: net/netfilter/ipvs/
9883 M: Jiri Kosina <jikos@kernel.org>
9884 M: David Sterba <dsterba@suse.com>
9886 F: drivers/tty/ipwireless/
9888 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9889 M: Marc Zyngier <maz@kernel.org>
9891 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9892 F: Documentation/core-api/irq/irq-domain.rst
9893 F: include/linux/irqdomain.h
9894 F: kernel/irq/irqdomain.c
9898 M: Thomas Gleixner <tglx@linutronix.de>
9899 L: linux-kernel@vger.kernel.org
9901 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9905 M: Thomas Gleixner <tglx@linutronix.de>
9906 M: Marc Zyngier <maz@kernel.org>
9907 L: linux-kernel@vger.kernel.org
9909 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9910 F: Documentation/devicetree/bindings/interrupt-controller/
9914 M: William Breathitt Gray <vilhelm.gray@gmail.com>
9916 F: Documentation/driver-api/isa.rst
9917 F: drivers/base/isa.c
9918 F: include/linux/isa.h
9921 M: Hans Verkuil <hverkuil@xs4all.nl>
9922 L: linux-media@vger.kernel.org
9924 W: https://linuxtv.org
9925 T: git git://linuxtv.org/media_tree.git
9926 F: drivers/media/radio/radio-isa*
9929 M: Jaroslav Kysela <perex@perex.cz>
9931 F: Documentation/driver-api/isapnp.rst
9932 F: drivers/pnp/isapnp/
9933 F: include/linux/isapnp.h
9936 M: Lee Duncan <lduncan@suse.com>
9937 M: Chris Leech <cleech@redhat.com>
9938 L: open-iscsi@googlegroups.com
9939 L: linux-scsi@vger.kernel.org
9941 W: www.open-iscsi.com
9942 F: drivers/scsi/*iscsi*
9943 F: include/scsi/*iscsi*
9945 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9946 M: Peter Jones <pjones@redhat.com>
9947 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
9949 F: drivers/firmware/iscsi_ibft*
9951 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9952 M: Sagi Grimberg <sagi@grimberg.me>
9953 M: Max Gurtovoy <mgurtovoy@nvidia.com>
9954 L: linux-rdma@vger.kernel.org
9956 W: http://www.openfabrics.org
9957 W: www.open-iscsi.org
9958 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9959 F: drivers/infiniband/ulp/iser/
9961 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9962 M: Sagi Grimberg <sagi@grimberg.me>
9963 L: linux-rdma@vger.kernel.org
9964 L: target-devel@vger.kernel.org
9966 W: http://www.linux-iscsi.org
9967 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9968 F: drivers/infiniband/ulp/isert
9970 ISDN/CMTP OVER BLUETOOTH
9971 M: Karsten Keil <isdn@linux-pingi.de>
9972 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9973 L: netdev@vger.kernel.org
9975 W: http://www.isdn4linux.de
9976 F: Documentation/isdn/
9977 F: drivers/isdn/capi/
9978 F: include/linux/isdn/
9979 F: include/uapi/linux/isdn/
9980 F: net/bluetooth/cmtp/
9982 ISDN/mISDN SUBSYSTEM
9983 M: Karsten Keil <isdn@linux-pingi.de>
9984 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9985 L: netdev@vger.kernel.org
9987 W: http://www.isdn4linux.de
9988 F: drivers/isdn/Kconfig
9989 F: drivers/isdn/Makefile
9990 F: drivers/isdn/hardware/
9991 F: drivers/isdn/mISDN/
9993 IT87 HARDWARE MONITORING DRIVER
9994 M: Jean Delvare <jdelvare@suse.com>
9995 L: linux-hwmon@vger.kernel.org
9997 F: Documentation/hwmon/it87.rst
9998 F: drivers/hwmon/it87.c
10000 IT913X MEDIA DRIVER
10001 M: Antti Palosaari <crope@iki.fi>
10002 L: linux-media@vger.kernel.org
10004 W: https://linuxtv.org
10005 W: http://palosaari.fi/linux/
10006 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10007 T: git git://linuxtv.org/anttip/media_tree.git
10008 F: drivers/media/tuners/it913x*
10010 ITE IT66121 HDMI BRIDGE DRIVER
10011 M: Phong LE <ple@baylibre.com>
10012 M: Neil Armstrong <narmstrong@baylibre.com>
10014 T: git git://anongit.freedesktop.org/drm/drm-misc
10015 F: Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10016 F: drivers/gpu/drm/bridge/ite-it66121.c
10018 IVTV VIDEO4LINUX DRIVER
10019 M: Andy Walls <awalls@md.metrocast.net>
10020 L: linux-media@vger.kernel.org
10022 W: https://linuxtv.org
10023 T: git git://linuxtv.org/media_tree.git
10024 F: Documentation/admin-guide/media/ivtv*
10025 F: drivers/media/pci/ivtv/
10026 F: include/uapi/linux/ivtv*
10028 IX2505V MEDIA DRIVER
10029 M: Malcolm Priestley <tvboxspy@gmail.com>
10030 L: linux-media@vger.kernel.org
10032 W: https://linuxtv.org
10033 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10034 F: drivers/media/dvb-frontends/ix2505v*
10036 JAILHOUSE HYPERVISOR INTERFACE
10037 M: Jan Kiszka <jan.kiszka@siemens.com>
10038 L: jailhouse-dev@googlegroups.com
10040 F: arch/x86/include/asm/jailhouse_para.h
10041 F: arch/x86/kernel/jailhouse.c
10043 JC42.4 TEMPERATURE SENSOR DRIVER
10044 M: Guenter Roeck <linux@roeck-us.net>
10045 L: linux-hwmon@vger.kernel.org
10047 F: Documentation/hwmon/jc42.rst
10048 F: drivers/hwmon/jc42.c
10051 M: Dave Kleikamp <shaggy@kernel.org>
10052 L: jfs-discussion@lists.sourceforge.net
10054 W: http://jfs.sourceforge.net/
10055 T: git git://github.com/kleikamp/linux-shaggy.git
10056 F: Documentation/admin-guide/jfs.rst
10060 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
10061 L: netdev@vger.kernel.org
10063 F: drivers/net/ethernet/jme.*
10065 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10066 M: David Woodhouse <dwmw2@infradead.org>
10067 M: Richard Weinberger <richard@nod.at>
10068 L: linux-mtd@lists.infradead.org
10070 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
10071 T: git git://git.infradead.org/ubifs-2.6.git
10073 F: include/uapi/linux/jffs2.h
10075 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10076 M: "Theodore Ts'o" <tytso@mit.edu>
10077 M: Jan Kara <jack@suse.com>
10078 L: linux-ext4@vger.kernel.org
10081 F: include/linux/jbd2.h
10083 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10084 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10085 L: linux-media@vger.kernel.org
10087 F: drivers/media/platform/rcar_jpu.c
10089 JSM Neo PCI based serial card
10090 L: linux-serial@vger.kernel.org
10092 F: drivers/tty/serial/jsm/
10094 K10TEMP HARDWARE MONITORING DRIVER
10095 M: Clemens Ladisch <clemens@ladisch.de>
10096 L: linux-hwmon@vger.kernel.org
10098 F: Documentation/hwmon/k10temp.rst
10099 F: drivers/hwmon/k10temp.c
10101 K8TEMP HARDWARE MONITORING DRIVER
10102 M: Rudolf Marek <r.marek@assembler.cz>
10103 L: linux-hwmon@vger.kernel.org
10105 F: Documentation/hwmon/k8temp.rst
10106 F: drivers/hwmon/k8temp.c
10109 M: Andrey Ryabinin <ryabinin.a.a@gmail.com>
10110 R: Alexander Potapenko <glider@google.com>
10111 R: Andrey Konovalov <andreyknvl@gmail.com>
10112 R: Dmitry Vyukov <dvyukov@google.com>
10113 L: kasan-dev@googlegroups.com
10115 F: Documentation/dev-tools/kasan.rst
10116 F: arch/*/include/asm/*kasan.h
10117 F: arch/*/mm/kasan_init*
10118 F: include/linux/kasan*.h
10119 F: lib/Kconfig.kasan
10120 F: lib/test_kasan*.c
10122 F: scripts/Makefile.kasan
10125 M: Masahiro Yamada <masahiroy@kernel.org>
10126 L: linux-kbuild@vger.kernel.org
10128 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10129 F: Documentation/kbuild/kconfig*
10130 F: scripts/Kconfig.include
10131 F: scripts/kconfig/
10134 R: Dmitry Vyukov <dvyukov@google.com>
10135 R: Andrey Konovalov <andreyknvl@gmail.com>
10136 L: kasan-dev@googlegroups.com
10138 F: Documentation/dev-tools/kcov.rst
10139 F: include/linux/kcov.h
10140 F: include/uapi/linux/kcov.h
10142 F: scripts/Makefile.kcov
10145 M: Marco Elver <elver@google.com>
10146 R: Dmitry Vyukov <dvyukov@google.com>
10147 L: kasan-dev@googlegroups.com
10149 F: Documentation/dev-tools/kcsan.rst
10150 F: include/linux/kcsan*.h
10152 F: lib/Kconfig.kcsan
10153 F: scripts/Makefile.kcsan
10156 M: Dave Young <dyoung@redhat.com>
10157 M: Baoquan He <bhe@redhat.com>
10158 R: Vivek Goyal <vgoyal@redhat.com>
10159 L: kexec@lists.infradead.org
10161 W: http://lse.sourceforge.net/kdump/
10162 F: Documentation/admin-guide/kdump/
10163 F: fs/proc/vmcore.c
10164 F: include/linux/crash_core.h
10165 F: include/linux/crash_dump.h
10166 F: include/uapi/linux/vmcore.h
10167 F: kernel/crash_*.c
10169 KEENE FM RADIO TRANSMITTER DRIVER
10170 M: Hans Verkuil <hverkuil@xs4all.nl>
10171 L: linux-media@vger.kernel.org
10173 W: https://linuxtv.org
10174 T: git git://linuxtv.org/media_tree.git
10175 F: drivers/media/radio/radio-keene*
10178 M: Ian Kent <raven@themaw.net>
10179 L: autofs@vger.kernel.org
10183 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10184 M: Masahiro Yamada <masahiroy@kernel.org>
10185 M: Michal Marek <michal.lkml@markovi.net>
10186 R: Nick Desaulniers <ndesaulniers@google.com>
10187 L: linux-kbuild@vger.kernel.org
10189 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10190 F: Documentation/kbuild/
10192 F: scripts/*vmlinux*
10194 F: scripts/Makefile*
10196 F: scripts/dummy-tools/
10199 F: scripts/package/
10202 L: kernel-janitors@vger.kernel.org
10204 W: http://kernelnewbies.org/KernelJanitors
10206 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10207 M: "J. Bruce Fields" <bfields@fieldses.org>
10208 M: Chuck Lever <chuck.lever@oracle.com>
10209 L: linux-nfs@vger.kernel.org
10211 W: http://nfs.sourceforge.net/
10212 T: git git://linux-nfs.org/~bfields/linux.git
10216 F: include/linux/lockd/
10217 F: include/linux/sunrpc/
10218 F: include/uapi/linux/nfsd/
10219 F: include/uapi/linux/sunrpc/
10221 F: Documentation/filesystems/nfs/
10224 M: Thorsten Leemhuis <linux@leemhuis.info>
10225 L: regressions@lists.linux.dev
10228 KERNEL SELFTEST FRAMEWORK
10229 M: Shuah Khan <shuah@kernel.org>
10230 M: Shuah Khan <skhan@linuxfoundation.org>
10231 L: linux-kselftest@vger.kernel.org
10233 Q: https://patchwork.kernel.org/project/linux-kselftest/list/
10234 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10235 F: Documentation/dev-tools/kselftest*
10236 F: tools/testing/selftests/
10238 KERNEL SMB3 SERVER (KSMBD)
10239 M: Namjae Jeon <linkinjeon@kernel.org>
10240 M: Sergey Senozhatsky <senozhatsky@chromium.org>
10241 M: Steve French <sfrench@samba.org>
10242 M: Hyunchul Lee <hyc.lee@gmail.com>
10243 L: linux-cifs@vger.kernel.org
10245 T: git git://git.samba.org/ksmbd.git
10247 F: fs/smbfs_common/
10249 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10250 M: Brendan Higgins <brendanhiggins@google.com>
10251 L: linux-kselftest@vger.kernel.org
10252 L: kunit-dev@googlegroups.com
10254 W: https://google.github.io/kunit-docs/third_party/kernel/docs/
10255 F: Documentation/dev-tools/kunit/
10258 F: tools/testing/kunit/
10260 KERNEL USERMODE HELPER
10261 M: Luis Chamberlain <mcgrof@kernel.org>
10262 L: linux-kernel@vger.kernel.org
10264 F: include/linux/umh.h
10267 KERNEL VIRTUAL MACHINE (KVM)
10268 M: Paolo Bonzini <pbonzini@redhat.com>
10269 L: kvm@vger.kernel.org
10271 W: http://www.linux-kvm.org
10272 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10273 F: Documentation/virt/kvm/
10274 F: include/asm-generic/kvm*
10275 F: include/kvm/iodev.h
10276 F: include/linux/kvm*
10277 F: include/trace/events/kvm.h
10278 F: include/uapi/asm-generic/kvm*
10279 F: include/uapi/linux/kvm*
10281 F: tools/testing/selftests/kvm/
10284 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10285 M: Marc Zyngier <maz@kernel.org>
10286 R: James Morse <james.morse@arm.com>
10287 R: Alexandru Elisei <alexandru.elisei@arm.com>
10288 R: Suzuki K Poulose <suzuki.poulose@arm.com>
10289 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10290 L: kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10292 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10293 F: arch/arm64/include/asm/kvm*
10294 F: arch/arm64/include/uapi/asm/kvm*
10296 F: include/kvm/arm_*
10297 F: tools/testing/selftests/kvm/*/aarch64/
10298 F: tools/testing/selftests/kvm/aarch64/
10300 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10301 M: Huacai Chen <chenhuacai@kernel.org>
10302 M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10303 L: linux-mips@vger.kernel.org
10304 L: kvm@vger.kernel.org
10306 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10307 F: arch/mips/include/asm/kvm*
10308 F: arch/mips/include/uapi/asm/kvm*
10311 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10312 M: Paul Mackerras <paulus@ozlabs.org>
10313 L: kvm-ppc@vger.kernel.org
10315 W: http://www.linux-kvm.org/
10316 T: git git://github.com/agraf/linux-2.6.git
10317 F: arch/powerpc/include/asm/kvm*
10318 F: arch/powerpc/include/uapi/asm/kvm*
10319 F: arch/powerpc/kernel/kvm*
10320 F: arch/powerpc/kvm/
10322 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10323 M: Christian Borntraeger <borntraeger@de.ibm.com>
10324 M: Janosch Frank <frankja@linux.ibm.com>
10325 R: David Hildenbrand <david@redhat.com>
10326 R: Claudio Imbrenda <imbrenda@linux.ibm.com>
10327 L: kvm@vger.kernel.org
10329 W: http://www.ibm.com/developerworks/linux/linux390/
10330 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10331 F: Documentation/virt/kvm/s390*
10332 F: arch/s390/include/asm/gmap.h
10333 F: arch/s390/include/asm/kvm*
10334 F: arch/s390/include/uapi/asm/kvm*
10335 F: arch/s390/kernel/uv.c
10337 F: arch/s390/mm/gmap.c
10338 F: tools/testing/selftests/kvm/*/s390x/
10339 F: tools/testing/selftests/kvm/s390x/
10341 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10342 M: Paolo Bonzini <pbonzini@redhat.com>
10343 R: Sean Christopherson <seanjc@google.com>
10344 R: Vitaly Kuznetsov <vkuznets@redhat.com>
10345 R: Wanpeng Li <wanpengli@tencent.com>
10346 R: Jim Mattson <jmattson@google.com>
10347 R: Joerg Roedel <joro@8bytes.org>
10348 L: kvm@vger.kernel.org
10350 W: http://www.linux-kvm.org
10351 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10352 F: arch/x86/include/asm/kvm*
10353 F: arch/x86/include/asm/pvclock-abi.h
10354 F: arch/x86/include/asm/svm.h
10355 F: arch/x86/include/asm/vmx*.h
10356 F: arch/x86/include/uapi/asm/kvm*
10357 F: arch/x86/include/uapi/asm/svm.h
10358 F: arch/x86/include/uapi/asm/vmx.h
10359 F: arch/x86/kernel/kvm.c
10360 F: arch/x86/kernel/kvmclock.c
10365 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10366 M: Tejun Heo <tj@kernel.org>
10368 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10370 F: include/linux/kernfs.h
10373 M: Eric Biederman <ebiederm@xmission.com>
10374 L: kexec@lists.infradead.org
10376 W: http://kernel.org/pub/linux/utils/kernel/kexec/
10377 F: include/linux/kexec.h
10378 F: include/uapi/linux/kexec.h
10382 M: Mimi Zohar <zohar@linux.ibm.com>
10383 L: linux-integrity@vger.kernel.org
10384 L: keyrings@vger.kernel.org
10386 F: Documentation/security/keys/trusted-encrypted.rst
10387 F: include/keys/encrypted-type.h
10388 F: security/keys/encrypted-keys/
10391 M: James Bottomley <jejb@linux.ibm.com>
10392 M: Jarkko Sakkinen <jarkko@kernel.org>
10393 M: Mimi Zohar <zohar@linux.ibm.com>
10394 L: linux-integrity@vger.kernel.org
10395 L: keyrings@vger.kernel.org
10397 F: Documentation/security/keys/trusted-encrypted.rst
10398 F: include/keys/trusted-type.h
10399 F: include/keys/trusted_tpm.h
10400 F: security/keys/trusted-keys/
10403 M: Sumit Garg <sumit.garg@linaro.org>
10404 L: linux-integrity@vger.kernel.org
10405 L: keyrings@vger.kernel.org
10407 F: include/keys/trusted_tee.h
10408 F: security/keys/trusted-keys/trusted_tee.c
10411 M: David Howells <dhowells@redhat.com>
10412 M: Jarkko Sakkinen <jarkko@kernel.org>
10413 L: keyrings@vger.kernel.org
10415 F: Documentation/security/keys/core.rst
10417 F: include/linux/key-type.h
10418 F: include/linux/key.h
10419 F: include/linux/keyctl.h
10420 F: include/uapi/linux/keyctl.h
10424 M: Alexander Potapenko <glider@google.com>
10425 M: Marco Elver <elver@google.com>
10426 R: Dmitry Vyukov <dvyukov@google.com>
10427 L: kasan-dev@googlegroups.com
10429 F: Documentation/dev-tools/kfence.rst
10430 F: arch/*/include/asm/kfence.h
10431 F: include/linux/kfence.h
10432 F: lib/Kconfig.kfence
10436 M: Stefani Seibold <stefani@seibold.net>
10438 F: include/linux/kfifo.h
10442 KGDB / KDB /debug_core
10443 M: Jason Wessel <jason.wessel@windriver.com>
10444 M: Daniel Thompson <daniel.thompson@linaro.org>
10445 R: Douglas Anderson <dianders@chromium.org>
10446 L: kgdb-bugreport@lists.sourceforge.net
10448 W: http://kgdb.wiki.kernel.org/
10449 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10450 F: Documentation/dev-tools/kgdb.rst
10451 F: drivers/misc/kgdbts.c
10452 F: drivers/tty/serial/kgdboc.c
10453 F: include/linux/kdb.h
10454 F: include/linux/kgdb.h
10457 KHADAS MCU MFD DRIVER
10458 M: Neil Armstrong <narmstrong@baylibre.com>
10459 L: linux-amlogic@lists.infradead.org
10461 F: Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10462 F: drivers/mfd/khadas-mcu.c
10463 F: include/linux/mfd/khadas-mcu.h
10464 F: drivers/thermal/khadas_mcu_fan.c
10467 M: Catalin Marinas <catalin.marinas@arm.com>
10469 F: Documentation/dev-tools/kmemleak.rst
10470 F: include/linux/kmemleak.h
10472 F: samples/kmemleak/kmemleak-test.c
10474 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10475 M: Luis Chamberlain <mcgrof@kernel.org>
10476 L: linux-kernel@vger.kernel.org
10478 F: include/linux/kmod.h
10481 F: tools/testing/selftests/kmod/
10484 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10485 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10486 M: "David S. Miller" <davem@davemloft.net>
10487 M: Masami Hiramatsu <mhiramat@kernel.org>
10489 F: Documentation/trace/kprobes.rst
10490 F: include/asm-generic/kprobes.h
10491 F: include/linux/kprobes.h
10492 F: kernel/kprobes.c
10494 KS0108 LCD CONTROLLER DRIVER
10495 M: Miguel Ojeda <ojeda@kernel.org>
10497 F: Documentation/admin-guide/auxdisplay/ks0108.rst
10498 F: drivers/auxdisplay/ks0108.c
10499 F: include/linux/ks0108.h
10501 KTD253 BACKLIGHT DRIVER
10502 M: Linus Walleij <linus.walleij@linaro.org>
10504 F: Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10505 F: drivers/video/backlight/ktd253-backlight.c
10508 M: Steven Rostedt <rostedt@goodmis.org>
10509 M: John Hawley <warthog9@eaglescrag.net>
10511 F: tools/testing/ktest
10514 M: David Ahern <dsahern@kernel.org>
10515 L: netdev@vger.kernel.org
10517 F: include/net/l3mdev.h
10521 M: John Fastabend <john.fastabend@gmail.com>
10522 M: Daniel Borkmann <daniel@iogearbox.net>
10523 M: Jakub Sitnicki <jakub@cloudflare.com>
10524 M: Lorenz Bauer <lmb@cloudflare.com>
10525 L: netdev@vger.kernel.org
10526 L: bpf@vger.kernel.org
10528 F: include/linux/skmsg.h
10529 F: net/core/skmsg.c
10530 F: net/core/sock_map.c
10531 F: net/ipv4/tcp_bpf.c
10532 F: net/ipv4/udp_bpf.c
10533 F: net/unix/unix_bpf.c
10535 LANDLOCK SECURITY MODULE
10536 M: Mickaël Salaün <mic@digikod.net>
10537 L: linux-security-module@vger.kernel.org
10539 W: https://landlock.io
10540 T: git https://github.com/landlock-lsm/linux.git
10541 F: Documentation/security/landlock.rst
10542 F: Documentation/userspace-api/landlock.rst
10543 F: include/uapi/linux/landlock.h
10544 F: samples/landlock/
10545 F: security/landlock/
10546 F: tools/testing/selftests/landlock/
10550 LANTIQ / INTEL Ethernet drivers
10551 M: Hauke Mehrtens <hauke@hauke-m.de>
10552 L: netdev@vger.kernel.org
10554 F: drivers/net/dsa/lantiq_gswip.c
10555 F: drivers/net/dsa/lantiq_pce.h
10556 F: drivers/net/ethernet/lantiq_xrx200.c
10557 F: net/dsa/tag_gswip.c
10559 LANTIQ MIPS ARCHITECTURE
10560 M: John Crispin <john@phrozen.org>
10561 L: linux-mips@vger.kernel.org
10563 F: arch/mips/lantiq
10564 F: drivers/soc/lantiq
10566 LASI 53c700 driver for PARISC
10567 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10568 L: linux-scsi@vger.kernel.org
10570 F: Documentation/scsi/53c700.rst
10571 F: drivers/scsi/53c700*
10574 M: Tobin C. Harding <me@tobin.cc>
10575 M: Tycho Andersen <tycho@tycho.pizza>
10576 L: linux-hardening@vger.kernel.org
10578 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10579 F: scripts/leaking_addresses.pl
10582 M: Pavel Machek <pavel@ucw.cz>
10583 L: linux-leds@vger.kernel.org
10585 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10586 F: Documentation/devicetree/bindings/leds/
10588 F: include/linux/leds.h
10590 LEGACY EEPROM DRIVER
10591 M: Jean Delvare <jdelvare@suse.com>
10593 F: Documentation/misc-devices/eeprom.rst
10594 F: drivers/misc/eeprom/eeprom.c
10596 LEGO MINDSTORMS EV3
10597 R: David Lechner <david@lechnology.com>
10599 F: Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10600 F: arch/arm/boot/dts/da850-lego-ev3.dts
10601 F: drivers/power/supply/lego_ev3_battery.c
10603 LEGO USB Tower driver
10604 M: Juergen Stuber <starblue@users.sourceforge.net>
10605 L: legousb-devel@lists.sourceforge.net
10607 W: http://legousb.sourceforge.net/
10608 F: drivers/usb/misc/legousbtower.c
10611 M: Matan Ziv-Av <matan@svgalib.org>
10612 L: platform-driver-x86@vger.kernel.org
10614 F: Documentation/ABI/testing/sysfs-platform-lg-laptop
10615 F: Documentation/admin-guide/laptops/lg-laptop.rst
10616 F: drivers/platform/x86/lg-laptop.c
10618 LG2160 MEDIA DRIVER
10619 M: Michael Krufky <mkrufky@linuxtv.org>
10620 L: linux-media@vger.kernel.org
10622 W: https://linuxtv.org
10623 W: http://github.com/mkrufky
10624 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10625 T: git git://linuxtv.org/mkrufky/tuners.git
10626 F: drivers/media/dvb-frontends/lg2160.*
10628 LGDT3305 MEDIA DRIVER
10629 M: Michael Krufky <mkrufky@linuxtv.org>
10630 L: linux-media@vger.kernel.org
10632 W: https://linuxtv.org
10633 W: http://github.com/mkrufky
10634 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10635 T: git git://linuxtv.org/mkrufky/tuners.git
10636 F: drivers/media/dvb-frontends/lgdt3305.*
10638 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10639 M: Viresh Kumar <vireshk@kernel.org>
10640 L: linux-ide@vger.kernel.org
10642 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10643 F: drivers/ata/pata_arasan_cf.c
10644 F: include/linux/pata_arasan_cf_data.h
10646 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10647 M: Linus Walleij <linus.walleij@linaro.org>
10648 L: linux-ide@vger.kernel.org
10650 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10651 F: drivers/ata/pata_ftide010.c
10652 F: drivers/ata/sata_gemini.c
10653 F: drivers/ata/sata_gemini.h
10655 LIBATA SATA AHCI PLATFORM devices support
10656 M: Hans de Goede <hdegoede@redhat.com>
10657 M: Jens Axboe <axboe@kernel.dk>
10658 L: linux-ide@vger.kernel.org
10660 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10661 F: drivers/ata/ahci_platform.c
10662 F: drivers/ata/libahci_platform.c
10663 F: include/linux/ahci_platform.h
10665 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10666 M: Mikael Pettersson <mikpelinux@gmail.com>
10667 L: linux-ide@vger.kernel.org
10669 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10670 F: drivers/ata/sata_promise.*
10672 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10673 M: Damien Le Moal <damien.lemoal@opensource.wdc.com>
10674 L: linux-ide@vger.kernel.org
10676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10677 F: Documentation/devicetree/bindings/ata/
10679 F: include/linux/ata.h
10680 F: include/linux/libata.h
10683 M: Sasha Levin <alexander.levin@microsoft.com>
10685 F: tools/lib/lockdep/
10687 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10688 M: Dan Williams <dan.j.williams@intel.com>
10689 M: Vishal Verma <vishal.l.verma@intel.com>
10690 M: Dave Jiang <dave.jiang@intel.com>
10691 L: nvdimm@lists.linux.dev
10693 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10694 P: Documentation/nvdimm/maintainer-entry-profile.rst
10695 F: drivers/nvdimm/blk.c
10696 F: drivers/nvdimm/region_devs.c
10698 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10699 M: Vishal Verma <vishal.l.verma@intel.com>
10700 M: Dan Williams <dan.j.williams@intel.com>
10701 M: Dave Jiang <dave.jiang@intel.com>
10702 L: nvdimm@lists.linux.dev
10704 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10705 P: Documentation/nvdimm/maintainer-entry-profile.rst
10706 F: drivers/nvdimm/btt*
10708 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10709 M: Dan Williams <dan.j.williams@intel.com>
10710 M: Vishal Verma <vishal.l.verma@intel.com>
10711 M: Dave Jiang <dave.jiang@intel.com>
10712 L: nvdimm@lists.linux.dev
10714 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10715 P: Documentation/nvdimm/maintainer-entry-profile.rst
10716 F: drivers/nvdimm/pmem*
10718 LIBNVDIMM: DEVICETREE BINDINGS
10719 M: Oliver O'Halloran <oohall@gmail.com>
10720 L: nvdimm@lists.linux.dev
10722 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10723 F: Documentation/devicetree/bindings/pmem/pmem-region.txt
10724 F: drivers/nvdimm/of_pmem.c
10726 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10727 M: Dan Williams <dan.j.williams@intel.com>
10728 M: Vishal Verma <vishal.l.verma@intel.com>
10729 M: Dave Jiang <dave.jiang@intel.com>
10730 M: Ira Weiny <ira.weiny@intel.com>
10731 L: nvdimm@lists.linux.dev
10733 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10734 P: Documentation/nvdimm/maintainer-entry-profile.rst
10735 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10736 F: drivers/acpi/nfit/*
10737 F: drivers/nvdimm/*
10738 F: include/linux/libnvdimm.h
10739 F: include/linux/nd.h
10740 F: include/uapi/linux/ndctl.h
10741 F: tools/testing/nvdimm/
10743 LICENSES and SPDX stuff
10744 M: Thomas Gleixner <tglx@linutronix.de>
10745 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10746 L: linux-spdx@vger.kernel.org
10748 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10750 F: Documentation/process/license-rules.rst
10752 F: scripts/spdxcheck-test.sh
10753 F: scripts/spdxcheck.py
10755 LINEAR RANGES HELPERS
10756 M: Mark Brown <broonie@kernel.org>
10757 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10758 F: lib/linear_ranges.c
10759 F: lib/test_linear_ranges.c
10760 F: include/linux/linear_range.h
10762 LINUX FOR POWER MACINTOSH
10763 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10764 L: linuxppc-dev@lists.ozlabs.org
10766 F: arch/powerpc/platforms/powermac/
10767 F: drivers/macintosh/
10769 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10770 M: Michael Ellerman <mpe@ellerman.id.au>
10771 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10772 R: Paul Mackerras <paulus@samba.org>
10773 L: linuxppc-dev@lists.ozlabs.org
10775 W: https://github.com/linuxppc/wiki/wiki
10776 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10777 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10778 F: Documentation/ABI/stable/sysfs-firmware-opal-*
10779 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
10780 F: Documentation/devicetree/bindings/powerpc/
10781 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
10782 F: Documentation/powerpc/
10784 F: drivers/*/*/*pasemi*
10785 F: drivers/*/*pasemi*
10786 F: drivers/char/tpm/tpm_ibmvtpm*
10787 F: drivers/crypto/nx/
10788 F: drivers/crypto/vmx/
10789 F: drivers/i2c/busses/i2c-opal.c
10790 F: drivers/net/ethernet/ibm/ibmveth.*
10791 F: drivers/net/ethernet/ibm/ibmvnic.*
10792 F: drivers/pci/hotplug/pnv_php.c
10793 F: drivers/pci/hotplug/rpa*
10794 F: drivers/rtc/rtc-opal.c
10795 F: drivers/scsi/ibmvscsi/
10796 F: drivers/tty/hvc/hvc_opal.c
10797 F: drivers/watchdog/wdrtas.c
10798 F: tools/testing/selftests/powerpc
10805 LINUX FOR POWERPC EMBEDDED MPC5XXX
10806 M: Anatolij Gustschin <agust@denx.de>
10807 L: linuxppc-dev@lists.ozlabs.org
10809 F: arch/powerpc/platforms/512x/
10810 F: arch/powerpc/platforms/52xx/
10812 LINUX FOR POWERPC EMBEDDED PPC4XX
10813 L: linuxppc-dev@lists.ozlabs.org
10815 F: arch/powerpc/platforms/40x/
10816 F: arch/powerpc/platforms/44x/
10818 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10819 M: Scott Wood <oss@buserror.net>
10820 L: linuxppc-dev@lists.ozlabs.org
10822 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10823 F: Documentation/devicetree/bindings/powerpc/fsl/
10824 F: arch/powerpc/platforms/83xx/
10825 F: arch/powerpc/platforms/85xx/
10827 LINUX FOR POWERPC EMBEDDED PPC8XX
10828 M: Christophe Leroy <christophe.leroy@csgroup.eu>
10829 L: linuxppc-dev@lists.ozlabs.org
10831 F: arch/powerpc/platforms/8xx/
10833 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10834 M: Kees Cook <keescook@chromium.org>
10836 F: drivers/misc/lkdtm/*
10837 F: tools/testing/selftests/lkdtm/*
10839 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10840 M: Alan Stern <stern@rowland.harvard.edu>
10841 M: Andrea Parri <parri.andrea@gmail.com>
10842 M: Will Deacon <will@kernel.org>
10843 M: Peter Zijlstra <peterz@infradead.org>
10844 M: Boqun Feng <boqun.feng@gmail.com>
10845 M: Nicholas Piggin <npiggin@gmail.com>
10846 M: David Howells <dhowells@redhat.com>
10847 M: Jade Alglave <j.alglave@ucl.ac.uk>
10848 M: Luc Maranget <luc.maranget@inria.fr>
10849 M: "Paul E. McKenney" <paulmck@kernel.org>
10850 R: Akira Yokosawa <akiyks@gmail.com>
10851 R: Daniel Lustig <dlustig@nvidia.com>
10852 R: Joel Fernandes <joel@joelfernandes.org>
10853 L: linux-kernel@vger.kernel.org
10854 L: linux-arch@vger.kernel.org
10856 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10857 F: Documentation/atomic_bitops.txt
10858 F: Documentation/atomic_t.txt
10859 F: Documentation/core-api/refcount-vs-atomic.rst
10860 F: Documentation/litmus-tests/
10861 F: Documentation/memory-barriers.txt
10862 F: tools/memory-model/
10864 LIS3LV02D ACCELEROMETER DRIVER
10865 M: Eric Piel <eric.piel@tremplin-utc.net>
10867 F: Documentation/misc-devices/lis3lv02d.rst
10868 F: drivers/misc/lis3lv02d/
10869 F: drivers/platform/x86/hp_accel.c
10872 M: David Gow <davidgow@google.com>
10873 L: linux-kselftest@vger.kernel.org
10874 L: kunit-dev@googlegroups.com
10879 M: Karol Gugala <kgugala@antmicro.com>
10880 M: Mateusz Holenko <mholenko@antmicro.com>
10882 F: Documentation/devicetree/bindings/*/litex,*.yaml
10883 F: arch/openrisc/boot/dts/or1klitex.dts
10884 F: drivers/soc/litex/litex_soc_ctrl.c
10885 F: drivers/tty/serial/liteuart.c
10886 F: include/linux/litex.h
10889 M: Josh Poimboeuf <jpoimboe@redhat.com>
10890 M: Jiri Kosina <jikos@kernel.org>
10891 M: Miroslav Benes <mbenes@suse.cz>
10892 M: Petr Mladek <pmladek@suse.com>
10893 R: Joe Lawrence <joe.lawrence@redhat.com>
10894 L: live-patching@vger.kernel.org
10896 T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10897 F: Documentation/ABI/testing/sysfs-kernel-livepatch
10898 F: Documentation/livepatch/
10899 F: arch/powerpc/include/asm/livepatch.h
10900 F: arch/s390/include/asm/livepatch.h
10901 F: arch/x86/include/asm/livepatch.h
10902 F: include/linux/livepatch.h
10903 F: kernel/livepatch/
10905 F: samples/livepatch/
10906 F: tools/testing/selftests/livepatch/
10909 L: netdev@vger.kernel.org
10911 F: include/linux/llc.h
10912 F: include/net/llc*
10913 F: include/uapi/linux/llc.h
10916 LM73 HARDWARE MONITOR DRIVER
10917 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
10918 L: linux-hwmon@vger.kernel.org
10920 F: drivers/hwmon/lm73.c
10922 LM78 HARDWARE MONITOR DRIVER
10923 M: Jean Delvare <jdelvare@suse.com>
10924 L: linux-hwmon@vger.kernel.org
10926 F: Documentation/hwmon/lm78.rst
10927 F: drivers/hwmon/lm78.c
10929 LM83 HARDWARE MONITOR DRIVER
10930 M: Jean Delvare <jdelvare@suse.com>
10931 L: linux-hwmon@vger.kernel.org
10933 F: Documentation/hwmon/lm83.rst
10934 F: drivers/hwmon/lm83.c
10936 LM90 HARDWARE MONITOR DRIVER
10937 M: Jean Delvare <jdelvare@suse.com>
10938 L: linux-hwmon@vger.kernel.org
10940 F: Documentation/devicetree/bindings/hwmon/lm90.txt
10941 F: Documentation/hwmon/lm90.rst
10942 F: drivers/hwmon/lm90.c
10943 F: include/dt-bindings/thermal/lm90.h
10945 LM95234 HARDWARE MONITOR DRIVER
10946 M: Guenter Roeck <linux@roeck-us.net>
10947 L: linux-hwmon@vger.kernel.org
10949 F: Documentation/hwmon/lm95234.rst
10950 F: drivers/hwmon/lm95234.c
10952 LME2510 MEDIA DRIVER
10953 M: Malcolm Priestley <tvboxspy@gmail.com>
10954 L: linux-media@vger.kernel.org
10956 W: https://linuxtv.org
10957 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10958 F: drivers/media/usb/dvb-usb-v2/lmedm04*
10960 LOADPIN SECURITY MODULE
10961 M: Kees Cook <keescook@chromium.org>
10963 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10964 F: Documentation/admin-guide/LSM/LoadPin.rst
10965 F: security/loadpin/
10968 M: Peter Zijlstra <peterz@infradead.org>
10969 M: Ingo Molnar <mingo@redhat.com>
10970 M: Will Deacon <will@kernel.org>
10971 R: Waiman Long <longman@redhat.com>
10972 R: Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10973 L: linux-kernel@vger.kernel.org
10975 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10976 F: Documentation/locking/
10977 F: arch/*/include/asm/spinlock*.h
10978 F: include/linux/lockdep.h
10979 F: include/linux/mutex*.h
10980 F: include/linux/rwlock*.h
10981 F: include/linux/rwsem*.h
10982 F: include/linux/seqlock.h
10983 F: include/linux/spinlock*.h
10985 F: lib/locking*.[ch]
10986 X: kernel/locking/locktorture.c
10988 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10989 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
10990 L: linux-ntfs-dev@lists.sourceforge.net
10992 W: http://www.linux-ntfs.org/content/view/19/37/
10993 F: Documentation/admin-guide/ldm.rst
10994 F: block/partitions/ldm.*
10996 LOGITECH HID GAMING KEYBOARDS
10997 M: Hans de Goede <hdegoede@redhat.com>
10998 L: linux-input@vger.kernel.org
11000 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11001 F: drivers/hid/hid-lg-g15.c
11003 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11004 M: Adrien Grassein <adrien.grassein@gmail.com>
11006 F: Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11007 F: drivers/gpu/drm/bridge/lontium-lt8912b.c
11009 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11010 M: Sathya Prakash <sathya.prakash@broadcom.com>
11011 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11012 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11013 L: MPT-FusionLinux.pdl@broadcom.com
11014 L: linux-scsi@vger.kernel.org
11016 W: http://www.avagotech.com/support/
11017 F: drivers/message/fusion/
11018 F: drivers/scsi/mpt3sas/
11020 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11021 M: Matthew Wilcox <willy@infradead.org>
11022 L: linux-scsi@vger.kernel.org
11024 F: drivers/scsi/sym53c8xx_2/
11027 M: Marcus Folkesson <marcus.folkesson@gmail.com>
11028 L: linux-iio@vger.kernel.org
11030 F: Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11031 F: drivers/iio/dac/ltc1660.c
11033 LTC2947 HARDWARE MONITOR DRIVER
11034 M: Nuno Sá <nuno.sa@analog.com>
11035 L: linux-hwmon@vger.kernel.org
11037 W: http://ez.analog.com/community/linux-device-drivers
11038 F: Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11039 F: drivers/hwmon/ltc2947-core.c
11040 F: drivers/hwmon/ltc2947-i2c.c
11041 F: drivers/hwmon/ltc2947-spi.c
11042 F: drivers/hwmon/ltc2947.h
11044 LTC2983 IIO TEMPERATURE DRIVER
11045 M: Nuno Sá <nuno.sa@analog.com>
11046 L: linux-iio@vger.kernel.org
11048 W: http://ez.analog.com/community/linux-device-drivers
11049 F: Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11050 F: drivers/iio/temperature/ltc2983.c
11052 LTC4261 HARDWARE MONITOR DRIVER
11053 M: Guenter Roeck <linux@roeck-us.net>
11054 L: linux-hwmon@vger.kernel.org
11056 F: Documentation/hwmon/ltc4261.rst
11057 F: drivers/hwmon/ltc4261.c
11059 LTC4306 I2C MULTIPLEXER DRIVER
11060 M: Michael Hennerich <michael.hennerich@analog.com>
11061 L: linux-i2c@vger.kernel.org
11063 W: http://ez.analog.com/community/linux-device-drivers
11064 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11065 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
11067 LTP (Linux Test Project)
11068 M: Mike Frysinger <vapier@gentoo.org>
11069 M: Cyril Hrubis <chrubis@suse.cz>
11070 M: Wanlong Gao <wanlong.gao@gmail.com>
11071 M: Jan Stancek <jstancek@redhat.com>
11072 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11073 M: Alexey Kodanev <alexey.kodanev@oracle.com>
11074 L: ltp@lists.linux.it (subscribers-only)
11076 W: http://linux-test-project.github.io/
11077 T: git git://github.com/linux-test-project/ltp.git
11080 M: Ioana Ciornei <ioana.ciornei@nxp.com>
11081 L: netdev@vger.kernel.org
11083 F: drivers/net/pcs/pcs-lynx.c
11084 F: include/linux/pcs-lynx.h
11087 M: Geert Uytterhoeven <geert@linux-m68k.org>
11088 L: linux-m68k@lists.linux-m68k.org
11090 W: http://www.linux-m68k.org/
11091 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11095 M68K ON APPLE MACINTOSH
11096 M: Joshua Thompson <funaho@jurai.org>
11097 L: linux-m68k@lists.linux-m68k.org
11099 W: http://www.mac.linux-m68k.org/
11101 F: drivers/macintosh/adb-iop.c
11102 F: drivers/macintosh/via-macii.c
11105 M: Philip Blundell <philb@gnu.org>
11107 W: http://www.tazenda.demon.co.uk/phil/linux-hp
11108 F: arch/m68k/hp300/
11110 M88DS3103 MEDIA DRIVER
11111 M: Antti Palosaari <crope@iki.fi>
11112 L: linux-media@vger.kernel.org
11114 W: https://linuxtv.org
11115 W: http://palosaari.fi/linux/
11116 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11117 T: git git://linuxtv.org/anttip/media_tree.git
11118 F: drivers/media/dvb-frontends/m88ds3103*
11120 M88RS2000 MEDIA DRIVER
11121 M: Malcolm Priestley <tvboxspy@gmail.com>
11122 L: linux-media@vger.kernel.org
11124 W: https://linuxtv.org
11125 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11126 F: drivers/media/dvb-frontends/m88rs2000*
11128 MA901 MASTERKIT USB FM RADIO DRIVER
11129 M: Alexey Klimov <klimov.linux@gmail.com>
11130 L: linux-media@vger.kernel.org
11132 T: git git://linuxtv.org/media_tree.git
11133 F: drivers/media/radio/radio-ma901.c
11136 M: Johannes Berg <johannes@sipsolutions.net>
11137 L: linux-wireless@vger.kernel.org
11139 W: https://wireless.wiki.kernel.org/
11140 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11141 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11142 F: Documentation/networking/mac80211-injection.rst
11143 F: Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11144 F: drivers/net/wireless/mac80211_hwsim.[ch]
11145 F: include/net/mac80211.h
11149 M: Jassi Brar <jassisinghbrar@gmail.com>
11150 L: linux-kernel@vger.kernel.org
11152 F: drivers/mailbox/
11153 F: include/linux/mailbox_client.h
11154 F: include/linux/mailbox_controller.h
11155 F: include/dt-bindings/mailbox/
11156 F: Documentation/devicetree/bindings/mailbox/
11159 M: Viresh Kumar <viresh.kumar@linaro.org>
11160 M: Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11161 L: linux-kernel@vger.kernel.org
11163 F: drivers/mailbox/arm_mhuv2.c
11164 F: include/linux/mailbox/arm_mhuv2_message.h
11165 F: Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11167 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11168 M: Jeremy Kerr <jk@codeconstruct.com.au>
11169 M: Matt Johnston <matt@codeconstruct.com.au>
11170 L: netdev@vger.kernel.org
11172 F: Documentation/networking/mctp.rst
11173 F: drivers/net/mctp/
11174 F: include/net/mctp.h
11175 F: include/net/mctpdevice.h
11176 F: include/net/netns/mctp.h
11179 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11180 M: Michael Kerrisk <mtk.manpages@gmail.com>
11181 L: linux-man@vger.kernel.org
11183 W: http://www.kernel.org/doc/man-pages
11185 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11186 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
11187 L: linux-mips@vger.kernel.org
11189 F: arch/mips/boot/dts/img/pistachio*
11191 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11192 M: Andrew Lunn <andrew@lunn.ch>
11193 M: Vivien Didelot <vivien.didelot@gmail.com>
11194 L: netdev@vger.kernel.org
11196 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
11197 F: Documentation/networking/devlink/mv88e6xxx.rst
11198 F: drivers/net/dsa/mv88e6xxx/
11199 F: include/linux/dsa/mv88e6xxx.h
11200 F: include/linux/platform_data/mv88e6xxx.h
11202 MARVELL ARMADA 3700 PHY DRIVERS
11203 M: Miquel Raynal <miquel.raynal@bootlin.com>
11205 F: Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11206 F: Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11207 F: drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11208 F: drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11210 MARVELL ARMADA DRM SUPPORT
11211 M: Russell King <linux@armlinux.org.uk>
11213 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11214 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11215 F: Documentation/devicetree/bindings/display/armada/
11216 F: drivers/gpu/drm/armada/
11217 F: include/uapi/drm/armada_drm.h
11219 MARVELL CRYPTO DRIVER
11220 M: Boris Brezillon <bbrezillon@kernel.org>
11221 M: Arnaud Ebalard <arno@natisbad.org>
11222 M: Srujana Challa <schalla@marvell.com>
11223 L: linux-crypto@vger.kernel.org
11225 F: drivers/crypto/marvell/
11226 F: include/linux/soc/marvell/octeontx2/
11228 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11229 M: Mirko Lindner <mlindner@marvell.com>
11230 M: Stephen Hemminger <stephen@networkplumber.org>
11231 L: netdev@vger.kernel.org
11233 F: drivers/net/ethernet/marvell/sk*
11235 MARVELL LIBERTAS WIRELESS DRIVER
11236 L: libertas-dev@lists.infradead.org
11238 F: drivers/net/wireless/marvell/libertas/
11240 MARVELL MACCHIATOBIN SUPPORT
11241 M: Russell King <linux@armlinux.org.uk>
11242 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11244 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11246 MARVELL MV643XX ETHERNET DRIVER
11247 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11248 L: netdev@vger.kernel.org
11250 F: drivers/net/ethernet/marvell/mv643xx_eth.*
11251 F: include/linux/mv643xx.h
11253 MARVELL MV88X3310 PHY DRIVER
11254 M: Russell King <linux@armlinux.org.uk>
11255 M: Marek Behún <kabel@kernel.org>
11256 L: netdev@vger.kernel.org
11258 F: drivers/net/phy/marvell10g.c
11260 MARVELL MVEBU THERMAL DRIVER
11261 M: Miquel Raynal <miquel.raynal@bootlin.com>
11263 F: drivers/thermal/armada_thermal.c
11265 MARVELL MVNETA ETHERNET DRIVER
11266 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11267 L: netdev@vger.kernel.org
11269 F: drivers/net/ethernet/marvell/mvneta.*
11271 MARVELL MVPP2 ETHERNET DRIVER
11272 M: Marcin Wojtas <mw@semihalf.com>
11273 M: Russell King <linux@armlinux.org.uk>
11274 L: netdev@vger.kernel.org
11276 F: Documentation/devicetree/bindings/net/marvell-pp2.txt
11277 F: drivers/net/ethernet/marvell/mvpp2/
11279 MARVELL MWIFIEX WIRELESS DRIVER
11280 M: Amitkumar Karwar <amitkarwar@gmail.com>
11281 M: Ganapathi Bhat <ganapathi017@gmail.com>
11282 M: Sharvari Harisangam <sharvari.harisangam@nxp.com>
11283 M: Xinming Hu <huxinming820@gmail.com>
11284 L: linux-wireless@vger.kernel.org
11286 F: drivers/net/wireless/marvell/mwifiex/
11288 MARVELL MWL8K WIRELESS DRIVER
11289 M: Lennert Buytenhek <buytenh@wantstofly.org>
11290 L: linux-wireless@vger.kernel.org
11292 F: drivers/net/wireless/marvell/mwl8k.c
11294 MARVELL NAND CONTROLLER DRIVER
11295 M: Miquel Raynal <miquel.raynal@bootlin.com>
11296 L: linux-mtd@lists.infradead.org
11298 F: Documentation/devicetree/bindings/mtd/marvell-nand.txt
11299 F: drivers/mtd/nand/raw/marvell_nand.c
11301 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11302 M: Sunil Goutham <sgoutham@marvell.com>
11303 M: Geetha sowjanya <gakula@marvell.com>
11304 M: Subbaraya Sundeep <sbhatta@marvell.com>
11305 M: hariprasad <hkelam@marvell.com>
11306 L: netdev@vger.kernel.org
11308 F: drivers/net/ethernet/marvell/octeontx2/nic/
11309 F: include/linux/soc/marvell/octeontx2/
11311 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11312 M: Sunil Goutham <sgoutham@marvell.com>
11313 M: Linu Cherian <lcherian@marvell.com>
11314 M: Geetha sowjanya <gakula@marvell.com>
11315 M: Jerin Jacob <jerinj@marvell.com>
11316 M: hariprasad <hkelam@marvell.com>
11317 M: Subbaraya Sundeep <sbhatta@marvell.com>
11318 L: netdev@vger.kernel.org
11320 F: Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11321 F: drivers/net/ethernet/marvell/octeontx2/af/
11323 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11324 M: Taras Chornyi <tchornyi@marvell.com>
11326 W: https://github.com/Marvell-switching/switchdev-prestera
11327 F: drivers/net/ethernet/marvell/prestera/
11329 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11330 M: Nicolas Pitre <nico@fluxnic.net>
11332 F: drivers/mmc/host/mvsdio.*
11334 MARVELL USB MDIO CONTROLLER DRIVER
11335 M: Tobias Waldekranz <tobias@waldekranz.com>
11336 L: netdev@vger.kernel.org
11338 F: Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11339 F: drivers/net/mdio/mdio-mvusb.c
11341 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11342 M: Hu Ziji <huziji@marvell.com>
11343 L: linux-mmc@vger.kernel.org
11345 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11346 F: drivers/mmc/host/sdhci-xenon*
11348 MATROX FRAMEBUFFER DRIVER
11349 L: linux-fbdev@vger.kernel.org
11351 F: drivers/video/fbdev/matrox/matroxfb_*
11352 F: include/uapi/linux/matroxfb.h
11355 M: Daniel Nilsson <daniel.nilsson@flex.com>
11356 L: linux-hwmon@vger.kernel.org
11358 F: Documentation/hwmon/max15301.rst
11359 F: drivers/hwmon/pmbus/max15301.c
11361 MAX16065 HARDWARE MONITOR DRIVER
11362 M: Guenter Roeck <linux@roeck-us.net>
11363 L: linux-hwmon@vger.kernel.org
11365 F: Documentation/hwmon/max16065.rst
11366 F: drivers/hwmon/max16065.c
11368 MAX2175 SDR TUNER DRIVER
11369 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
11370 L: linux-media@vger.kernel.org
11372 T: git git://linuxtv.org/media_tree.git
11373 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
11374 F: Documentation/userspace-api/media/drivers/max2175.rst
11375 F: drivers/media/i2c/max2175*
11376 F: include/uapi/linux/max2175.h
11378 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11379 L: linux-hwmon@vger.kernel.org
11381 F: Documentation/hwmon/max6650.rst
11382 F: drivers/hwmon/max6650.c
11384 MAX6697 HARDWARE MONITOR DRIVER
11385 M: Guenter Roeck <linux@roeck-us.net>
11386 L: linux-hwmon@vger.kernel.org
11388 F: Documentation/devicetree/bindings/hwmon/max6697.txt
11389 F: Documentation/hwmon/max6697.rst
11390 F: drivers/hwmon/max6697.c
11391 F: include/linux/platform_data/max6697.h
11393 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11394 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
11395 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11396 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11397 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11398 L: linux-media@vger.kernel.org
11400 F: Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11401 F: drivers/media/i2c/max9286.c
11403 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11404 M: Peter Rosin <peda@axentia.se>
11405 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11407 F: Documentation/devicetree/bindings/sound/max9860.txt
11408 F: sound/soc/codecs/max9860.*
11410 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11411 M: Andreas Klinger <ak@it-klinger.de>
11412 L: linux-iio@vger.kernel.org
11414 F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11415 F: drivers/iio/proximity/mb1232.c
11417 MAXIM MAX77650 PMIC MFD DRIVER
11418 M: Bartosz Golaszewski <brgl@bgdev.pl>
11419 L: linux-kernel@vger.kernel.org
11421 F: Documentation/devicetree/bindings/*/*max77650.yaml
11422 F: Documentation/devicetree/bindings/*/max77650*.yaml
11423 F: drivers/gpio/gpio-max77650.c
11424 F: drivers/input/misc/max77650-onkey.c
11425 F: drivers/leds/leds-max77650.c
11426 F: drivers/mfd/max77650.c
11427 F: drivers/power/supply/max77650-charger.c
11428 F: drivers/regulator/max77650-regulator.c
11429 F: include/linux/mfd/max77650.h
11431 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11432 M: Javier Martinez Canillas <javier@dowhile0.org>
11433 L: linux-kernel@vger.kernel.org
11435 F: Documentation/devicetree/bindings/*/*max77802.txt
11436 F: drivers/regulator/max77802-regulator.c
11437 F: include/dt-bindings/*/*max77802.h
11439 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11440 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11441 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11442 L: linux-pm@vger.kernel.org
11444 F: drivers/power/supply/max14577_charger.c
11445 F: drivers/power/supply/max77693_charger.c
11447 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11448 M: Chanwoo Choi <cw00.choi@samsung.com>
11449 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11450 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11451 L: linux-kernel@vger.kernel.org
11453 F: Documentation/devicetree/bindings/*/max77686.txt
11454 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
11455 F: Documentation/devicetree/bindings/mfd/max14577.txt
11456 F: Documentation/devicetree/bindings/mfd/max77693.txt
11457 F: drivers/*/max14577*.c
11458 F: drivers/*/max77686*.c
11459 F: drivers/*/max77693*.c
11460 F: drivers/clk/clk-max77686.c
11461 F: drivers/extcon/extcon-max14577.c
11462 F: drivers/extcon/extcon-max77693.c
11463 F: drivers/rtc/rtc-max77686.c
11464 F: include/linux/mfd/max14577*.h
11465 F: include/linux/mfd/max77686*.h
11466 F: include/linux/mfd/max77693*.h
11468 MAXIRADIO FM RADIO RECEIVER DRIVER
11469 M: Hans Verkuil <hverkuil@xs4all.nl>
11470 L: linux-media@vger.kernel.org
11472 W: https://linuxtv.org
11473 T: git git://linuxtv.org/media_tree.git
11474 F: drivers/media/radio/radio-maxiradio*
11476 MAXLINEAR ETHERNET PHY DRIVER
11477 M: Xu Liang <lxu@maxlinear.com>
11478 L: netdev@vger.kernel.org
11480 F: drivers/net/phy/mxl-gpy.c
11482 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11483 R: Yasushi SHOJI <yashi@spacecubics.com>
11484 L: linux-can@vger.kernel.org
11486 F: drivers/net/can/usb/mcba_usb.c
11488 MCAN MMIO DEVICE DRIVER
11489 M: Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11490 L: linux-can@vger.kernel.org
11492 F: Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11493 F: drivers/net/can/m_can/m_can.c
11494 F: drivers/net/can/m_can/m_can.h
11495 F: drivers/net/can/m_can/m_can_platform.c
11497 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11498 M: Rishi Gupta <gupt21@gmail.com>
11499 L: linux-i2c@vger.kernel.org
11500 L: linux-input@vger.kernel.org
11502 F: drivers/hid/hid-mcp2221.c
11504 MCP251XFD SPI-CAN NETWORK DRIVER
11505 M: Marc Kleine-Budde <mkl@pengutronix.de>
11506 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11507 R: Thomas Kopp <thomas.kopp@microchip.com>
11508 L: linux-can@vger.kernel.org
11510 F: Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11511 F: drivers/net/can/spi/mcp251xfd/
11513 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11514 M: Peter Rosin <peda@axentia.se>
11515 L: linux-iio@vger.kernel.org
11517 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11518 F: drivers/iio/potentiometer/mcp4018.c
11519 F: drivers/iio/potentiometer/mcp4531.c
11521 MCR20A IEEE-802.15.4 RADIO DRIVER
11522 M: Xue Liu <liuxuenetmail@gmail.com>
11523 L: linux-wpan@vger.kernel.org
11525 W: https://github.com/xueliu/mcr20a-linux
11526 F: Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11527 F: drivers/net/ieee802154/mcr20a.c
11528 F: drivers/net/ieee802154/mcr20a.h
11530 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11531 M: William Breathitt Gray <vilhelm.gray@gmail.com>
11532 L: linux-iio@vger.kernel.org
11534 F: drivers/iio/dac/cio-dac.c
11536 MEDIA CONTROLLER FRAMEWORK
11537 M: Sakari Ailus <sakari.ailus@linux.intel.com>
11538 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11539 L: linux-media@vger.kernel.org
11541 W: https://www.linuxtv.org
11542 T: git git://linuxtv.org/media_tree.git
11543 F: drivers/media/mc/
11544 F: include/media/media-*.h
11545 F: include/uapi/linux/media.h
11547 MEDIA DRIVER FOR FREESCALE IMX PXP
11548 M: Philipp Zabel <p.zabel@pengutronix.de>
11549 L: linux-media@vger.kernel.org
11551 T: git git://linuxtv.org/media_tree.git
11552 F: drivers/media/platform/imx-pxp.[ch]
11554 MEDIA DRIVERS FOR ASCOT2E
11555 M: Sergey Kozlov <serjk@netup.ru>
11556 M: Abylay Ospan <aospan@netup.ru>
11557 L: linux-media@vger.kernel.org
11559 W: https://linuxtv.org
11560 W: http://netup.tv/
11561 T: git git://linuxtv.org/media_tree.git
11562 F: drivers/media/dvb-frontends/ascot2e*
11564 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11565 M: Jasmin Jessich <jasmin@anw.at>
11566 L: linux-media@vger.kernel.org
11568 W: https://linuxtv.org
11569 T: git git://linuxtv.org/media_tree.git
11570 F: drivers/media/dvb-frontends/cxd2099*
11572 MEDIA DRIVERS FOR CXD2841ER
11573 M: Sergey Kozlov <serjk@netup.ru>
11574 M: Abylay Ospan <aospan@netup.ru>
11575 L: linux-media@vger.kernel.org
11577 W: https://linuxtv.org
11578 W: http://netup.tv/
11579 T: git git://linuxtv.org/media_tree.git
11580 F: drivers/media/dvb-frontends/cxd2841er*
11582 MEDIA DRIVERS FOR CXD2880
11583 M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11584 L: linux-media@vger.kernel.org
11586 W: http://linuxtv.org/
11587 T: git git://linuxtv.org/media_tree.git
11588 F: drivers/media/dvb-frontends/cxd2880/*
11589 F: drivers/media/spi/cxd2880*
11591 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11592 L: linux-media@vger.kernel.org
11594 W: https://linuxtv.org
11595 T: git git://linuxtv.org/media_tree.git
11596 F: drivers/media/pci/ddbridge/*
11598 MEDIA DRIVERS FOR FREESCALE IMX
11599 M: Steve Longerbeam <slongerbeam@gmail.com>
11600 M: Philipp Zabel <p.zabel@pengutronix.de>
11601 L: linux-media@vger.kernel.org
11603 T: git git://linuxtv.org/media_tree.git
11604 F: Documentation/admin-guide/media/imx.rst
11605 F: Documentation/devicetree/bindings/media/imx.txt
11606 F: drivers/staging/media/imx/
11607 F: include/linux/imx-media.h
11608 F: include/media/imx.h
11610 MEDIA DRIVERS FOR FREESCALE IMX7
11611 M: Rui Miguel Silva <rmfrfs@gmail.com>
11612 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11613 L: linux-media@vger.kernel.org
11615 T: git git://linuxtv.org/media_tree.git
11616 F: Documentation/admin-guide/media/imx7.rst
11617 F: Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11618 F: Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11619 F: drivers/staging/media/imx/imx7-media-csi.c
11620 F: drivers/staging/media/imx/imx7-mipi-csis.c
11622 MEDIA DRIVERS FOR HELENE
11623 M: Abylay Ospan <aospan@netup.ru>
11624 L: linux-media@vger.kernel.org
11626 W: https://linuxtv.org
11627 W: http://netup.tv/
11628 T: git git://linuxtv.org/media_tree.git
11629 F: drivers/media/dvb-frontends/helene*
11631 MEDIA DRIVERS FOR HORUS3A
11632 M: Sergey Kozlov <serjk@netup.ru>
11633 M: Abylay Ospan <aospan@netup.ru>
11634 L: linux-media@vger.kernel.org
11636 W: https://linuxtv.org
11637 W: http://netup.tv/
11638 T: git git://linuxtv.org/media_tree.git
11639 F: drivers/media/dvb-frontends/horus3a*
11641 MEDIA DRIVERS FOR LNBH25
11642 M: Sergey Kozlov <serjk@netup.ru>
11643 M: Abylay Ospan <aospan@netup.ru>
11644 L: linux-media@vger.kernel.org
11646 W: https://linuxtv.org
11647 W: http://netup.tv/
11648 T: git git://linuxtv.org/media_tree.git
11649 F: drivers/media/dvb-frontends/lnbh25*
11651 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11652 L: linux-media@vger.kernel.org
11654 W: https://linuxtv.org
11655 T: git git://linuxtv.org/media_tree.git
11656 F: drivers/media/dvb-frontends/mxl5xx*
11658 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11659 M: Sergey Kozlov <serjk@netup.ru>
11660 M: Abylay Ospan <aospan@netup.ru>
11661 L: linux-media@vger.kernel.org
11663 W: https://linuxtv.org
11664 W: http://netup.tv/
11665 T: git git://linuxtv.org/media_tree.git
11666 F: drivers/media/pci/netup_unidvb/*
11668 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11669 M: Dmitry Osipenko <digetx@gmail.com>
11670 L: linux-media@vger.kernel.org
11671 L: linux-tegra@vger.kernel.org
11673 T: git git://linuxtv.org/media_tree.git
11674 F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11675 F: drivers/staging/media/tegra-vde/
11677 MEDIA DRIVERS FOR RENESAS - CEU
11678 M: Jacopo Mondi <jacopo@jmondi.org>
11679 L: linux-media@vger.kernel.org
11680 L: linux-renesas-soc@vger.kernel.org
11682 T: git git://linuxtv.org/media_tree.git
11683 F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
11684 F: drivers/media/platform/renesas-ceu.c
11685 F: include/media/drv-intf/renesas-ceu.h
11687 MEDIA DRIVERS FOR RENESAS - DRIF
11688 M: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11689 L: linux-media@vger.kernel.org
11690 L: linux-renesas-soc@vger.kernel.org
11692 T: git git://linuxtv.org/media_tree.git
11693 F: Documentation/devicetree/bindings/media/renesas,drif.yaml
11694 F: drivers/media/platform/rcar_drif.c
11696 MEDIA DRIVERS FOR RENESAS - FCP
11697 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11698 L: linux-media@vger.kernel.org
11699 L: linux-renesas-soc@vger.kernel.org
11701 T: git git://linuxtv.org/media_tree.git
11702 F: Documentation/devicetree/bindings/media/renesas,fcp.yaml
11703 F: drivers/media/platform/rcar-fcp.c
11704 F: include/media/rcar-fcp.h
11706 MEDIA DRIVERS FOR RENESAS - FDP1
11707 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11708 L: linux-media@vger.kernel.org
11709 L: linux-renesas-soc@vger.kernel.org
11711 T: git git://linuxtv.org/media_tree.git
11712 F: Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11713 F: drivers/media/platform/rcar_fdp1.c
11715 MEDIA DRIVERS FOR RENESAS - VIN
11716 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
11717 L: linux-media@vger.kernel.org
11718 L: linux-renesas-soc@vger.kernel.org
11720 T: git git://linuxtv.org/media_tree.git
11721 F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
11722 F: Documentation/devicetree/bindings/media/renesas,isp.yaml
11723 F: Documentation/devicetree/bindings/media/renesas,vin.yaml
11724 F: drivers/media/platform/rcar-vin/
11726 MEDIA DRIVERS FOR RENESAS - VSP1
11727 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11728 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11729 L: linux-media@vger.kernel.org
11730 L: linux-renesas-soc@vger.kernel.org
11732 T: git git://linuxtv.org/media_tree.git
11733 F: Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11734 F: drivers/media/platform/vsp1/
11736 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11737 L: linux-media@vger.kernel.org
11739 W: https://linuxtv.org
11740 T: git git://linuxtv.org/media_tree.git
11741 F: drivers/media/dvb-frontends/stv0910*
11743 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11744 L: linux-media@vger.kernel.org
11746 W: https://linuxtv.org
11747 T: git git://linuxtv.org/media_tree.git
11748 F: drivers/media/dvb-frontends/stv6111*
11750 MEDIA DRIVERS FOR STM32 - DCMI
11751 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
11752 L: linux-media@vger.kernel.org
11754 T: git git://linuxtv.org/media_tree.git
11755 F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11756 F: drivers/media/platform/stm32/stm32-dcmi.c
11758 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11759 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11760 L: linux-media@vger.kernel.org
11762 W: https://linuxtv.org
11763 Q: http://patchwork.kernel.org/project/linux-media/list/
11764 T: git git://linuxtv.org/media_tree.git
11765 F: Documentation/admin-guide/media/
11766 F: Documentation/devicetree/bindings/media/
11767 F: Documentation/driver-api/media/
11768 F: Documentation/userspace-api/media/
11770 F: drivers/staging/media/
11771 F: include/linux/platform_data/media/
11773 F: include/uapi/linux/dvb/
11774 F: include/uapi/linux/ivtv*
11775 F: include/uapi/linux/media.h
11776 F: include/uapi/linux/meye.h
11777 F: include/uapi/linux/uvcvideo.h
11778 F: include/uapi/linux/v4l2-*
11779 F: include/uapi/linux/videodev2.h
11781 MEDIATEK BLUETOOTH DRIVER
11782 M: Sean Wang <sean.wang@mediatek.com>
11783 L: linux-bluetooth@vger.kernel.org
11784 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11786 F: Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11787 F: drivers/bluetooth/btmtkuart.c
11789 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11790 M: Sean Wang <sean.wang@mediatek.com>
11791 L: linux-pm@vger.kernel.org
11793 F: Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11794 F: drivers/power/reset/mt6323-poweroff.c
11796 MEDIATEK CIR DRIVER
11797 M: Sean Wang <sean.wang@mediatek.com>
11799 F: drivers/media/rc/mtk-cir.c
11801 MEDIATEK DMA DRIVER
11802 M: Sean Wang <sean.wang@mediatek.com>
11803 L: dmaengine@vger.kernel.org
11804 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11805 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11807 F: Documentation/devicetree/bindings/dma/mtk-*
11808 F: drivers/dma/mediatek/
11810 MEDIATEK ETHERNET DRIVER
11811 M: Felix Fietkau <nbd@nbd.name>
11812 M: John Crispin <john@phrozen.org>
11813 M: Sean Wang <sean.wang@mediatek.com>
11814 M: Mark Lee <Mark-MC.Lee@mediatek.com>
11815 L: netdev@vger.kernel.org
11817 F: drivers/net/ethernet/mediatek/
11819 MEDIATEK I2C CONTROLLER DRIVER
11820 M: Qii Wang <qii.wang@mediatek.com>
11821 L: linux-i2c@vger.kernel.org
11823 F: Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11824 F: drivers/i2c/busses/i2c-mt65xx.c
11826 MEDIATEK IOMMU DRIVER
11827 M: Yong Wu <yong.wu@mediatek.com>
11828 L: iommu@lists.linux-foundation.org
11829 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11831 F: Documentation/devicetree/bindings/iommu/mediatek*
11832 F: drivers/iommu/mtk_iommu*
11833 F: include/dt-bindings/memory/mt*-port.h
11835 MEDIATEK JPEG DRIVER
11836 M: Rick Chang <rick.chang@mediatek.com>
11837 M: Bin Liu <bin.liu@mediatek.com>
11839 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11840 F: drivers/media/platform/mtk-jpeg/
11842 MEDIATEK MDP DRIVER
11843 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11844 M: Houlong Wei <houlong.wei@mediatek.com>
11845 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11847 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
11848 F: drivers/media/platform/mtk-mdp/
11849 F: drivers/media/platform/mtk-vpu/
11851 MEDIATEK MEDIA DRIVER
11852 M: Tiffany Lin <tiffany.lin@mediatek.com>
11853 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11855 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11856 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
11857 F: drivers/media/platform/mtk-vcodec/
11858 F: drivers/media/platform/mtk-vpu/
11860 MEDIATEK MMC/SD/SDIO DRIVER
11861 M: Chaotian Jing <chaotian.jing@mediatek.com>
11863 F: Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11864 F: drivers/mmc/host/mtk-sd.c
11866 MEDIATEK MT76 WIRELESS LAN DRIVER
11867 M: Felix Fietkau <nbd@nbd.name>
11868 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11869 R: Ryder Lee <ryder.lee@mediatek.com>
11870 L: linux-wireless@vger.kernel.org
11872 F: drivers/net/wireless/mediatek/mt76/
11874 MEDIATEK MT7601U WIRELESS LAN DRIVER
11875 M: Jakub Kicinski <kubakici@wp.pl>
11876 L: linux-wireless@vger.kernel.org
11878 F: drivers/net/wireless/mediatek/mt7601u/
11880 MEDIATEK MT7621 CLOCK DRIVER
11881 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11883 F: Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11884 F: drivers/clk/ralink/clk-mt7621.c
11886 MEDIATEK MT7621/28/88 I2C DRIVER
11887 M: Stefan Roese <sr@denx.de>
11888 L: linux-i2c@vger.kernel.org
11890 F: Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11891 F: drivers/i2c/busses/i2c-mt7621.c
11893 MEDIATEK MT7621 PHY PCI DRIVER
11894 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11896 F: Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11897 F: drivers/phy/ralink/phy-mt7621-pci.c
11899 MEDIATEK NAND CONTROLLER DRIVER
11900 L: linux-mtd@lists.infradead.org
11902 F: Documentation/devicetree/bindings/mtd/mtk-nand.txt
11903 F: drivers/mtd/nand/raw/mtk_*
11905 MEDIATEK PMIC LED DRIVER
11906 M: Sean Wang <sean.wang@mediatek.com>
11908 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
11909 F: drivers/leds/leds-mt6323.c
11911 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11912 M: Sean Wang <sean.wang@mediatek.com>
11914 F: drivers/char/hw_random/mtk-rng.c
11916 MEDIATEK SWITCH DRIVER
11917 M: Sean Wang <sean.wang@mediatek.com>
11918 M: Landen Chao <Landen.Chao@mediatek.com>
11919 M: DENG Qingfang <dqfext@gmail.com>
11920 L: netdev@vger.kernel.org
11922 F: drivers/net/dsa/mt7530.*
11923 F: net/dsa/tag_mtk.c
11925 MEDIATEK USB3 DRD IP DRIVER
11926 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
11927 L: linux-usb@vger.kernel.org
11928 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11929 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11931 F: Documentation/devicetree/bindings/usb/mediatek,*
11932 F: drivers/usb/host/xhci-mtk*
11933 F: drivers/usb/mtu3/
11935 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11936 M: Peter Senna Tschudin <peter.senna@gmail.com>
11937 M: Martin Donnelly <martin.donnelly@ge.com>
11938 M: Martyn Welch <martyn.welch@collabora.co.uk>
11940 F: Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11941 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11943 MEGARAID SCSI/SAS DRIVERS
11944 M: Kashyap Desai <kashyap.desai@broadcom.com>
11945 M: Sumit Saxena <sumit.saxena@broadcom.com>
11946 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11947 L: megaraidlinux.pdl@broadcom.com
11948 L: linux-scsi@vger.kernel.org
11950 W: http://www.avagotech.com/support/
11951 F: Documentation/scsi/megaraid.rst
11952 F: drivers/scsi/megaraid.*
11953 F: drivers/scsi/megaraid/
11955 MELEXIS MLX90614 DRIVER
11956 M: Crt Mori <cmo@melexis.com>
11957 L: linux-iio@vger.kernel.org
11959 W: http://www.melexis.com
11960 F: drivers/iio/temperature/mlx90614.c
11962 MELEXIS MLX90632 DRIVER
11963 M: Crt Mori <cmo@melexis.com>
11964 L: linux-iio@vger.kernel.org
11966 W: http://www.melexis.com
11967 F: drivers/iio/temperature/mlx90632.c
11969 MELFAS MIP4 TOUCHSCREEN DRIVER
11970 M: Sangwon Jee <jeesw@melfas.com>
11972 W: http://www.melfas.com
11973 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11974 F: drivers/input/touchscreen/melfas_mip4.c
11976 MELLANOX BLUEFIELD I2C DRIVER
11977 M: Khalil Blaiech <kblaiech@nvidia.com>
11978 L: linux-i2c@vger.kernel.org
11980 F: Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11981 F: drivers/i2c/busses/i2c-mlxbf.c
11983 MELLANOX ETHERNET DRIVER (mlx4_en)
11984 M: Tariq Toukan <tariqt@nvidia.com>
11985 L: netdev@vger.kernel.org
11987 W: http://www.mellanox.com
11988 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11989 F: drivers/net/ethernet/mellanox/mlx4/en_*
11991 MELLANOX ETHERNET DRIVER (mlx5e)
11992 M: Saeed Mahameed <saeedm@nvidia.com>
11993 L: netdev@vger.kernel.org
11995 W: http://www.mellanox.com
11996 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11997 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
11999 MELLANOX ETHERNET INNOVA DRIVERS
12000 R: Boris Pismenny <borisp@nvidia.com>
12001 L: netdev@vger.kernel.org
12003 W: http://www.mellanox.com
12004 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12005 F: drivers/net/ethernet/mellanox/mlx5/core/accel/*
12006 F: drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12007 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12008 F: include/linux/mlx5/mlx5_ifc_fpga.h
12010 MELLANOX ETHERNET SWITCH DRIVERS
12011 M: Jiri Pirko <jiri@nvidia.com>
12012 M: Ido Schimmel <idosch@nvidia.com>
12013 L: netdev@vger.kernel.org
12015 W: http://www.mellanox.com
12016 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12017 F: drivers/net/ethernet/mellanox/mlxsw/
12018 F: tools/testing/selftests/drivers/net/mlxsw/
12020 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12021 M: mlxsw@nvidia.com
12022 L: netdev@vger.kernel.org
12024 W: http://www.mellanox.com
12025 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12026 F: drivers/net/ethernet/mellanox/mlxfw/
12028 MELLANOX HARDWARE PLATFORM SUPPORT
12029 M: Hans de Goede <hdegoede@redhat.com>
12030 M: Mark Gross <mgross@linux.intel.com>
12031 M: Vadim Pasternak <vadimp@nvidia.com>
12032 L: platform-driver-x86@vger.kernel.org
12034 F: Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12035 F: drivers/platform/mellanox/
12036 F: include/linux/platform_data/mlxreg.h
12038 MELLANOX MLX4 core VPI driver
12039 M: Tariq Toukan <tariqt@nvidia.com>
12040 L: netdev@vger.kernel.org
12041 L: linux-rdma@vger.kernel.org
12043 W: http://www.mellanox.com
12044 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12045 F: drivers/net/ethernet/mellanox/mlx4/
12046 F: include/linux/mlx4/
12048 MELLANOX MLX4 IB driver
12049 M: Yishai Hadas <yishaih@nvidia.com>
12050 L: linux-rdma@vger.kernel.org
12052 W: http://www.mellanox.com
12053 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12054 F: drivers/infiniband/hw/mlx4/
12055 F: include/linux/mlx4/
12056 F: include/uapi/rdma/mlx4-abi.h
12058 MELLANOX MLX5 core VPI driver
12059 M: Saeed Mahameed <saeedm@nvidia.com>
12060 M: Leon Romanovsky <leonro@nvidia.com>
12061 L: netdev@vger.kernel.org
12062 L: linux-rdma@vger.kernel.org
12064 W: http://www.mellanox.com
12065 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12066 F: Documentation/networking/device_drivers/ethernet/mellanox/
12067 F: drivers/net/ethernet/mellanox/mlx5/core/
12068 F: include/linux/mlx5/
12070 MELLANOX MLX5 IB driver
12071 M: Leon Romanovsky <leonro@nvidia.com>
12072 L: linux-rdma@vger.kernel.org
12074 W: http://www.mellanox.com
12075 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12076 F: drivers/infiniband/hw/mlx5/
12077 F: include/linux/mlx5/
12078 F: include/uapi/rdma/mlx5-abi.h
12080 MELLANOX MLXCPLD I2C AND MUX DRIVER
12081 M: Vadim Pasternak <vadimp@nvidia.com>
12082 M: Michael Shych <michaelsh@nvidia.com>
12083 L: linux-i2c@vger.kernel.org
12085 F: Documentation/i2c/busses/i2c-mlxcpld.rst
12086 F: drivers/i2c/busses/i2c-mlxcpld.c
12087 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
12089 MELLANOX MLXCPLD LED DRIVER
12090 M: Vadim Pasternak <vadimp@nvidia.com>
12091 L: linux-leds@vger.kernel.org
12093 F: Documentation/leds/leds-mlxcpld.rst
12094 F: drivers/leds/leds-mlxcpld.c
12095 F: drivers/leds/leds-mlxreg.c
12097 MELLANOX PLATFORM DRIVER
12098 M: Vadim Pasternak <vadimp@nvidia.com>
12099 L: platform-driver-x86@vger.kernel.org
12101 F: drivers/platform/x86/mlx-platform.c
12104 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12105 M: "Paul E. McKenney" <paulmck@kernel.org>
12106 L: linux-kernel@vger.kernel.org
12108 F: arch/powerpc/include/asm/membarrier.h
12109 F: include/uapi/linux/membarrier.h
12110 F: kernel/sched/membarrier.c
12113 M: Mike Rapoport <rppt@linux.ibm.com>
12114 L: linux-mm@kvack.org
12116 F: Documentation/core-api/boot-time-mm.rst
12117 F: include/linux/memblock.h
12120 MEMORY CONTROLLER DRIVERS
12121 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12122 L: linux-kernel@vger.kernel.org
12124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12125 F: Documentation/devicetree/bindings/memory-controllers/
12127 F: include/dt-bindings/memory/
12130 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12131 M: Dmitry Osipenko <digetx@gmail.com>
12132 L: linux-pm@vger.kernel.org
12133 L: linux-tegra@vger.kernel.org
12134 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12136 F: drivers/devfreq/tegra30-devfreq.c
12139 M: Andrew Morton <akpm@linux-foundation.org>
12140 L: linux-mm@kvack.org
12142 W: http://www.linux-mm.org
12143 T: quilt https://ozlabs.org/~akpm/mmotm/
12144 T: quilt https://ozlabs.org/~akpm/mmots/
12145 T: git git://github.com/hnaz/linux-mm.git
12146 F: include/linux/gfp.h
12147 F: include/linux/memory_hotplug.h
12148 F: include/linux/mm.h
12149 F: include/linux/mmzone.h
12150 F: include/linux/pagewalk.h
12151 F: include/linux/vmalloc.h
12153 F: tools/testing/selftests/vm/
12155 MEMORY TECHNOLOGY DEVICES (MTD)
12156 M: Miquel Raynal <miquel.raynal@bootlin.com>
12157 M: Richard Weinberger <richard@nod.at>
12158 M: Vignesh Raghavendra <vigneshr@ti.com>
12159 L: linux-mtd@lists.infradead.org
12161 W: http://www.linux-mtd.infradead.org/
12162 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12163 C: irc://irc.oftc.net/mtd
12164 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12165 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12166 F: Documentation/devicetree/bindings/mtd/
12168 F: include/linux/mtd/
12169 F: include/uapi/mtd/
12171 MEN A21 WATCHDOG DRIVER
12172 M: Johannes Thumshirn <morbidrsa@gmail.com>
12173 L: linux-watchdog@vger.kernel.org
12175 F: drivers/watchdog/mena21_wdt.c
12177 MEN CHAMELEON BUS (mcb)
12178 M: Johannes Thumshirn <morbidrsa@gmail.com>
12180 F: Documentation/driver-api/men-chameleon-bus.rst
12182 F: include/linux/mcb.h
12184 MEN F21BMC (Board Management Controller)
12185 M: Andreas Werner <andreas.werner@men.de>
12187 F: Documentation/hwmon/menf21bmc.rst
12188 F: drivers/hwmon/menf21bmc_hwmon.c
12189 F: drivers/leds/leds-menf21bmc.c
12190 F: drivers/mfd/menf21bmc.c
12191 F: drivers/watchdog/menf21bmc_wdt.c
12193 MEN Z069 WATCHDOG DRIVER
12194 M: Johannes Thumshirn <jth@kernel.org>
12195 L: linux-watchdog@vger.kernel.org
12197 F: drivers/watchdog/menz69_wdt.c
12199 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12200 M: Neil Armstrong <narmstrong@baylibre.com>
12201 L: linux-media@vger.kernel.org
12202 L: linux-amlogic@lists.infradead.org
12204 W: http://linux-meson.com/
12205 T: git git://linuxtv.org/media_tree.git
12206 F: Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12207 F: drivers/media/cec/platform/meson/ao-cec-g12a.c
12208 F: drivers/media/cec/platform/meson/ao-cec.c
12210 MESON GE2D DRIVER FOR AMLOGIC SOCS
12211 M: Neil Armstrong <narmstrong@baylibre.com>
12212 L: linux-media@vger.kernel.org
12213 L: linux-amlogic@lists.infradead.org
12215 T: git git://linuxtv.org/media_tree.git
12216 F: Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12217 F: drivers/media/platform/meson/ge2d/
12219 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12220 M: Liang Yang <liang.yang@amlogic.com>
12221 L: linux-mtd@lists.infradead.org
12223 F: Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12224 F: drivers/mtd/nand/raw/meson_*
12226 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12227 M: Neil Armstrong <narmstrong@baylibre.com>
12228 L: linux-media@vger.kernel.org
12229 L: linux-amlogic@lists.infradead.org
12231 T: git git://linuxtv.org/media_tree.git
12232 F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12233 F: drivers/staging/media/meson/vdec/
12235 METHODE UDPU SUPPORT
12236 M: Vladimir Vid <vladimir.vid@sartura.hr>
12238 F: arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12241 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12242 M: Hemant Kumar <hemantk@codeaurora.org>
12243 L: linux-arm-msm@vger.kernel.org
12245 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12246 F: Documentation/ABI/stable/sysfs-bus-mhi
12247 F: Documentation/mhi/
12248 F: drivers/bus/mhi/
12249 F: include/linux/mhi.h
12251 MICROBLAZE ARCHITECTURE
12252 M: Michal Simek <monstr@monstr.eu>
12254 W: http://www.monstr.eu/fdt/
12255 T: git git://git.monstr.eu/linux-2.6-microblaze.git
12256 F: arch/microblaze/
12258 MICROCHIP AT91 DMA DRIVERS
12259 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12260 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12261 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12262 L: dmaengine@vger.kernel.org
12264 F: Documentation/devicetree/bindings/dma/atmel-dma.txt
12265 F: drivers/dma/at_hdmac.c
12266 F: drivers/dma/at_hdmac_regs.h
12267 F: drivers/dma/at_xdmac.c
12268 F: include/dt-bindings/dma/at91.h
12270 MICROCHIP AT91 SERIAL DRIVER
12271 M: Richard Genoud <richard.genoud@gmail.com>
12273 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12274 F: drivers/tty/serial/atmel_serial.c
12275 F: drivers/tty/serial/atmel_serial.h
12277 MICROCHIP AT91 USART MFD DRIVER
12278 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12279 L: linux-kernel@vger.kernel.org
12281 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12282 F: drivers/mfd/at91-usart.c
12283 F: include/dt-bindings/mfd/at91-usart.h
12285 MICROCHIP AT91 USART SPI DRIVER
12286 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12287 L: linux-spi@vger.kernel.org
12289 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12290 F: drivers/spi/spi-at91-usart.c
12292 MICROCHIP AUDIO ASOC DRIVERS
12293 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12294 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12298 MICROCHIP ECC DRIVER
12299 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12300 L: linux-crypto@vger.kernel.org
12302 F: drivers/crypto/atmel-ecc.*
12304 MICROCHIP I2C DRIVER
12305 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12306 L: linux-i2c@vger.kernel.org
12308 F: drivers/i2c/busses/i2c-at91-*.c
12309 F: drivers/i2c/busses/i2c-at91.h
12311 MICROCHIP ISC DRIVER
12312 M: Eugen Hristev <eugen.hristev@microchip.com>
12313 L: linux-media@vger.kernel.org
12315 F: Documentation/devicetree/bindings/media/atmel,isc.yaml
12316 F: Documentation/devicetree/bindings/media/microchip,xisc.yaml
12317 F: drivers/media/platform/atmel/atmel-isc-base.c
12318 F: drivers/media/platform/atmel/atmel-isc-regs.h
12319 F: drivers/media/platform/atmel/atmel-isc.h
12320 F: drivers/media/platform/atmel/atmel-sama5d2-isc.c
12321 F: drivers/media/platform/atmel/atmel-sama7g5-isc.c
12322 F: include/linux/atmel-isc-media.h
12324 MICROCHIP ISI DRIVER
12325 M: Eugen Hristev <eugen.hristev@microchip.com>
12326 L: linux-media@vger.kernel.org
12328 F: drivers/media/platform/atmel/atmel-isi.c
12329 F: drivers/media/platform/atmel/atmel-isi.h
12331 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12332 M: Woojung Huh <woojung.huh@microchip.com>
12333 M: UNGLinuxDriver@microchip.com
12334 L: netdev@vger.kernel.org
12336 F: Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12337 F: drivers/net/dsa/microchip/*
12338 F: include/linux/platform_data/microchip-ksz.h
12339 F: net/dsa/tag_ksz.c
12341 MICROCHIP LAN743X ETHERNET DRIVER
12342 M: Bryan Whitehead <bryan.whitehead@microchip.com>
12343 M: UNGLinuxDriver@microchip.com
12344 L: netdev@vger.kernel.org
12346 F: drivers/net/ethernet/microchip/lan743x_*
12348 MICROCHIP LCDFB DRIVER
12349 M: Nicolas Ferre <nicolas.ferre@microchip.com>
12350 L: linux-fbdev@vger.kernel.org
12352 F: drivers/video/fbdev/atmel_lcdfb.c
12353 F: include/video/atmel_lcdc.h
12355 MICROCHIP MCP16502 PMIC DRIVER
12356 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12357 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12359 F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12360 F: drivers/regulator/mcp16502.c
12362 MICROCHIP MCP3911 ADC DRIVER
12363 M: Marcus Folkesson <marcus.folkesson@gmail.com>
12364 M: Kent Gustavsson <kent@minoris.se>
12365 L: linux-iio@vger.kernel.org
12367 F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12368 F: drivers/iio/adc/mcp3911.c
12370 MICROCHIP MMC/SD/SDIO MCI DRIVER
12371 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12373 F: drivers/mmc/host/atmel-mci.c
12375 MICROCHIP NAND DRIVER
12376 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12377 L: linux-mtd@lists.infradead.org
12379 F: Documentation/devicetree/bindings/mtd/atmel-nand.txt
12380 F: drivers/mtd/nand/raw/atmel/*
12382 MICROCHIP PWM DRIVER
12383 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12384 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12385 L: linux-pwm@vger.kernel.org
12387 F: Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12388 F: drivers/pwm/pwm-atmel.c
12390 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12391 M: Eugen Hristev <eugen.hristev@microchip.com>
12392 L: linux-iio@vger.kernel.org
12394 F: Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12395 F: drivers/iio/adc/at91-sama5d2_adc.c
12396 F: include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12398 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12399 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12401 F: drivers/power/reset/at91-sama5d2_shdwc.c
12403 MICROCHIP SPI DRIVER
12404 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12406 F: drivers/spi/spi-atmel.*
12408 MICROCHIP SSC DRIVER
12409 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12410 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12412 F: drivers/misc/atmel-ssc.c
12413 F: include/linux/atmel-ssc.h
12415 MICROCHIP USB251XB DRIVER
12416 M: Richard Leitner <richard.leitner@skidata.com>
12417 L: linux-usb@vger.kernel.org
12419 F: Documentation/devicetree/bindings/usb/usb251xb.txt
12420 F: drivers/usb/misc/usb251xb.c
12422 MICROCHIP USBA UDC DRIVER
12423 M: Cristian Birsan <cristian.birsan@microchip.com>
12424 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12426 F: drivers/usb/gadget/udc/atmel_usba_udc.*
12428 MICROCHIP WILC1000 WIFI DRIVER
12429 M: Ajay Singh <ajay.kathat@microchip.com>
12430 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12431 L: linux-wireless@vger.kernel.org
12433 F: drivers/net/wireless/microchip/wilc1000/
12435 MICROSEMI MIPS SOCS
12436 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
12437 M: UNGLinuxDriver@microchip.com
12438 L: linux-mips@vger.kernel.org
12440 F: Documentation/devicetree/bindings/mips/mscc.txt
12441 F: Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12442 F: arch/mips/boot/dts/mscc/
12443 F: arch/mips/configs/generic/board-ocelot.config
12444 F: arch/mips/generic/board-ocelot.c
12446 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12447 M: Don Brace <don.brace@microchip.com>
12448 L: storagedev@microchip.com
12449 L: linux-scsi@vger.kernel.org
12451 F: Documentation/scsi/smartpqi.rst
12452 F: drivers/scsi/smartpqi/Kconfig
12453 F: drivers/scsi/smartpqi/Makefile
12454 F: drivers/scsi/smartpqi/smartpqi*.[ch]
12455 F: include/linux/cciss*.h
12456 F: include/uapi/linux/cciss*.h
12458 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12459 M: Maximilian Luz <luzmaximilian@gmail.com>
12460 L: linux-pm@vger.kernel.org
12461 L: platform-driver-x86@vger.kernel.org
12463 F: drivers/power/supply/surface_battery.c
12464 F: drivers/power/supply/surface_charger.c
12466 MICROSOFT SURFACE DTX DRIVER
12467 M: Maximilian Luz <luzmaximilian@gmail.com>
12468 L: platform-driver-x86@vger.kernel.org
12470 F: Documentation/driver-api/surface_aggregator/clients/dtx.rst
12471 F: drivers/platform/surface/surface_dtx.c
12472 F: include/uapi/linux/surface_aggregator/dtx.h
12474 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12475 M: Maximilian Luz <luzmaximilian@gmail.com>
12476 L: platform-driver-x86@vger.kernel.org
12478 F: drivers/platform/surface/surface_gpe.c
12480 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12481 M: Hans de Goede <hdegoede@redhat.com>
12482 M: Mark Gross <mgross@linux.intel.com>
12483 M: Maximilian Luz <luzmaximilian@gmail.com>
12484 L: platform-driver-x86@vger.kernel.org
12486 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12487 F: drivers/platform/surface/
12489 MICROSOFT SURFACE HID TRANSPORT DRIVER
12490 M: Maximilian Luz <luzmaximilian@gmail.com>
12491 L: linux-input@vger.kernel.org
12492 L: platform-driver-x86@vger.kernel.org
12494 F: drivers/hid/surface-hid/
12496 MICROSOFT SURFACE HOT-PLUG DRIVER
12497 M: Maximilian Luz <luzmaximilian@gmail.com>
12498 L: platform-driver-x86@vger.kernel.org
12500 F: drivers/platform/surface/surface_hotplug.c
12502 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12503 M: Maximilian Luz <luzmaximilian@gmail.com>
12504 L: platform-driver-x86@vger.kernel.org
12506 F: drivers/platform/surface/surface_platform_profile.c
12508 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12509 M: Chen Yu <yu.c.chen@intel.com>
12510 L: platform-driver-x86@vger.kernel.org
12512 F: drivers/platform/surface/surfacepro3_button.c
12514 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12515 M: Maximilian Luz <luzmaximilian@gmail.com>
12516 L: platform-driver-x86@vger.kernel.org
12518 W: https://github.com/linux-surface/surface-aggregator-module
12519 C: irc://irc.libera.chat/linux-surface
12520 F: Documentation/driver-api/surface_aggregator/
12521 F: drivers/platform/surface/aggregator/
12522 F: drivers/platform/surface/surface_acpi_notify.c
12523 F: drivers/platform/surface/surface_aggregator_cdev.c
12524 F: drivers/platform/surface/surface_aggregator_registry.c
12525 F: include/linux/surface_acpi_notify.h
12526 F: include/linux/surface_aggregator/
12527 F: include/uapi/linux/surface_aggregator/
12529 MICROTEK X6 SCANNER
12530 M: Oliver Neukum <oliver@neukum.org>
12532 F: drivers/usb/image/microtek.*
12534 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12535 M: Luka Kovacic <luka.kovacic@sartura.hr>
12536 M: Luka Perkov <luka.perkov@sartura.hr>
12538 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12539 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12540 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12541 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12542 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12543 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12545 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12546 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12547 L: linux-media@vger.kernel.org
12549 F: Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12550 F: Documentation/driver-api/media/drivers/ccs/
12551 F: Documentation/userspace-api/media/drivers/ccs.rst
12552 F: drivers/media/i2c/ccs-pll.c
12553 F: drivers/media/i2c/ccs-pll.h
12554 F: drivers/media/i2c/ccs/
12555 F: include/uapi/linux/ccs.h
12556 F: include/uapi/linux/smiapp.h
12559 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12560 L: linux-mips@vger.kernel.org
12562 W: http://www.linux-mips.org/
12563 Q: https://patchwork.kernel.org/project/linux-mips/list/
12564 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12565 F: Documentation/devicetree/bindings/mips/
12566 F: Documentation/mips/
12568 F: drivers/platform/mips/
12570 MIPS BOSTON DEVELOPMENT BOARD
12571 M: Paul Burton <paulburton@kernel.org>
12572 L: linux-mips@vger.kernel.org
12574 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
12575 F: arch/mips/boot/dts/img/boston.dts
12576 F: arch/mips/configs/generic/board-boston.config
12577 F: drivers/clk/imgtec/clk-boston.c
12578 F: include/dt-bindings/clock/boston-clock.h
12581 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12582 M: Serge Semin <fancer.lancer@gmail.com>
12583 L: linux-mips@vger.kernel.org
12585 F: drivers/bus/mips_cdmm.c
12586 F: drivers/clocksource/mips-gic-timer.c
12587 F: drivers/cpuidle/cpuidle-cps.c
12588 F: drivers/irqchip/irq-mips-cpu.c
12589 F: drivers/irqchip/irq-mips-gic.c
12591 MIPS GENERIC PLATFORM
12592 M: Paul Burton <paulburton@kernel.org>
12593 L: linux-mips@vger.kernel.org
12595 F: Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12596 F: arch/mips/generic/
12597 F: arch/mips/tools/generic-board-config.sh
12599 MIPS RINT INSTRUCTION EMULATION
12600 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
12601 L: linux-mips@vger.kernel.org
12603 F: arch/mips/math-emu/dp_rint.c
12604 F: arch/mips/math-emu/sp_rint.c
12606 MIPS/LOONGSON1 ARCHITECTURE
12607 M: Keguang Zhang <keguang.zhang@gmail.com>
12608 L: linux-mips@vger.kernel.org
12610 F: arch/mips/include/asm/mach-loongson32/
12611 F: arch/mips/loongson32/
12612 F: drivers/*/*/*loongson1*
12613 F: drivers/*/*loongson1*
12615 MIPS/LOONGSON2EF ARCHITECTURE
12616 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12617 L: linux-mips@vger.kernel.org
12619 F: arch/mips/include/asm/mach-loongson2ef/
12620 F: arch/mips/loongson2ef/
12621 F: drivers/cpufreq/loongson2_cpufreq.c
12623 MIPS/LOONGSON64 ARCHITECTURE
12624 M: Huacai Chen <chenhuacai@kernel.org>
12625 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12626 L: linux-mips@vger.kernel.org
12628 F: arch/mips/include/asm/mach-loongson64/
12629 F: arch/mips/loongson64/
12630 F: drivers/irqchip/irq-loongson*
12631 F: drivers/platform/mips/cpu_hwmon.c
12633 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12634 M: Hans Verkuil <hverkuil@xs4all.nl>
12635 L: linux-media@vger.kernel.org
12637 W: https://linuxtv.org
12638 T: git git://linuxtv.org/media_tree.git
12639 F: drivers/media/radio/radio-miropcm20*
12642 R: Lubomir Rintel <lkundrak@v3.sk>
12643 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12645 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12646 F: arch/arm/boot/dts/mmp*
12647 F: arch/arm/mach-mmp/
12648 F: include/linux/soc/mmp/
12650 MMP USB PHY DRIVERS
12651 R: Lubomir Rintel <lkundrak@v3.sk>
12652 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12654 F: drivers/phy/marvell/phy-mmp3-usb.c
12655 F: drivers/phy/marvell/phy-pxa-usb.c
12657 MMU GATHER AND TLB INVALIDATION
12658 M: Will Deacon <will@kernel.org>
12659 M: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12660 M: Andrew Morton <akpm@linux-foundation.org>
12661 M: Nick Piggin <npiggin@gmail.com>
12662 M: Peter Zijlstra <peterz@infradead.org>
12663 L: linux-arch@vger.kernel.org
12664 L: linux-mm@kvack.org
12666 F: arch/*/include/asm/tlb.h
12667 F: include/asm-generic/tlb.h
12670 MN88472 MEDIA DRIVER
12671 M: Antti Palosaari <crope@iki.fi>
12672 L: linux-media@vger.kernel.org
12674 W: https://linuxtv.org
12675 W: http://palosaari.fi/linux/
12676 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12677 F: drivers/media/dvb-frontends/mn88472*
12679 MN88473 MEDIA DRIVER
12680 M: Antti Palosaari <crope@iki.fi>
12681 L: linux-media@vger.kernel.org
12683 W: https://linuxtv.org
12684 W: http://palosaari.fi/linux/
12685 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12686 F: drivers/media/dvb-frontends/mn88473*
12689 M: Luis Chamberlain <mcgrof@kernel.org>
12690 M: Jessica Yu <jeyu@kernel.org>
12692 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12693 F: include/linux/module.h
12696 MONOLITHIC POWER SYSTEM PMIC DRIVER
12697 M: Saravanan Sekar <sravanhome@gmail.com>
12699 F: Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12700 F: Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12701 F: drivers/iio/adc/mp2629_adc.c
12702 F: drivers/mfd/mp2629.c
12703 F: drivers/power/supply/mp2629_charger.c
12704 F: drivers/regulator/mp5416.c
12705 F: drivers/regulator/mpq7920.c
12706 F: drivers/regulator/mpq7920.h
12707 F: include/linux/mfd/mp2629.h
12709 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12711 W: http://popies.net/meye/
12712 F: Documentation/userspace-api/media/drivers/meye*
12713 F: drivers/media/pci/meye/
12714 F: include/uapi/linux/meye.h
12716 MOTORCOMM PHY DRIVER
12717 M: Peter Geis <pgwipeout@gmail.com>
12718 L: netdev@vger.kernel.org
12720 F: drivers/net/phy/motorcomm.c
12722 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12723 M: Jiri Slaby <jirislaby@kernel.org>
12725 F: Documentation/driver-api/serial/moxa-smartio.rst
12726 F: drivers/tty/mxser.*
12728 MR800 AVERMEDIA USB FM RADIO DRIVER
12729 M: Alexey Klimov <klimov.linux@gmail.com>
12730 L: linux-media@vger.kernel.org
12732 T: git git://linuxtv.org/media_tree.git
12733 F: drivers/media/radio/radio-mr800.c
12735 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12736 M: Alan Ott <alan@signal11.us>
12737 L: linux-wpan@vger.kernel.org
12739 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12740 F: drivers/net/ieee802154/mrf24j40.c
12743 M: "Lee, Chun-Yi" <jlee@suse.com>
12744 L: platform-driver-x86@vger.kernel.org
12746 F: drivers/platform/x86/msi-laptop.c
12749 L: platform-driver-x86@vger.kernel.org
12751 F: drivers/platform/x86/msi-wmi.c
12753 MSI001 MEDIA DRIVER
12754 M: Antti Palosaari <crope@iki.fi>
12755 L: linux-media@vger.kernel.org
12757 W: https://linuxtv.org
12758 W: http://palosaari.fi/linux/
12759 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12760 T: git git://linuxtv.org/anttip/media_tree.git
12761 F: drivers/media/tuners/msi001*
12763 MSI2500 MEDIA DRIVER
12764 M: Antti Palosaari <crope@iki.fi>
12765 L: linux-media@vger.kernel.org
12767 W: https://linuxtv.org
12768 W: http://palosaari.fi/linux/
12769 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12770 T: git git://linuxtv.org/anttip/media_tree.git
12771 F: drivers/media/usb/msi2500/
12773 MSTAR INTERRUPT CONTROLLER DRIVER
12774 M: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12775 M: Daniel Palmer <daniel@thingy.jp>
12777 F: Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12778 F: drivers/irqchip/irq-mst-intc.c
12780 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12781 M: Robert Jarzmik <robert.jarzmik@free.fr>
12782 L: linux-mtd@lists.infradead.org
12784 F: drivers/mtd/devices/docg3*
12786 MT9M032 APTINA SENSOR DRIVER
12787 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12788 L: linux-media@vger.kernel.org
12790 T: git git://linuxtv.org/media_tree.git
12791 F: drivers/media/i2c/mt9m032.c
12792 F: include/media/i2c/mt9m032.h
12794 MT9P031 APTINA CAMERA SENSOR
12795 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12796 L: linux-media@vger.kernel.org
12798 T: git git://linuxtv.org/media_tree.git
12799 F: drivers/media/i2c/mt9p031.c
12800 F: include/media/i2c/mt9p031.h
12802 MT9T001 APTINA CAMERA SENSOR
12803 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12804 L: linux-media@vger.kernel.org
12806 T: git git://linuxtv.org/media_tree.git
12807 F: drivers/media/i2c/mt9t001.c
12808 F: include/media/i2c/mt9t001.h
12810 MT9T112 APTINA CAMERA SENSOR
12811 M: Jacopo Mondi <jacopo@jmondi.org>
12812 L: linux-media@vger.kernel.org
12814 T: git git://linuxtv.org/media_tree.git
12815 F: drivers/media/i2c/mt9t112.c
12816 F: include/media/i2c/mt9t112.h
12818 MT9V032 APTINA CAMERA SENSOR
12819 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12820 L: linux-media@vger.kernel.org
12822 T: git git://linuxtv.org/media_tree.git
12823 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12824 F: drivers/media/i2c/mt9v032.c
12825 F: include/media/i2c/mt9v032.h
12827 MT9V111 APTINA CAMERA SENSOR
12828 M: Jacopo Mondi <jacopo@jmondi.org>
12829 L: linux-media@vger.kernel.org
12831 T: git git://linuxtv.org/media_tree.git
12832 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12833 F: drivers/media/i2c/mt9v111.c
12835 MULTIFUNCTION DEVICES (MFD)
12836 M: Lee Jones <lee.jones@linaro.org>
12838 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12839 F: Documentation/devicetree/bindings/mfd/
12841 F: include/dt-bindings/mfd/
12842 F: include/linux/mfd/
12844 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12846 F: drivers/mmc/host/mmc_spi.c
12847 F: include/linux/spi/mmc_spi.h
12849 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12850 M: Ulf Hansson <ulf.hansson@linaro.org>
12851 L: linux-mmc@vger.kernel.org
12853 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12854 F: Documentation/devicetree/bindings/mmc/
12856 F: include/linux/mmc/
12857 F: include/uapi/linux/mmc/
12859 MULTIPLEXER SUBSYSTEM
12860 M: Peter Rosin <peda@axentia.se>
12862 F: Documentation/ABI/testing/sysfs-class-mux*
12863 F: Documentation/devicetree/bindings/mux/
12865 F: include/dt-bindings/mux/
12866 F: include/linux/mux/
12868 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12869 M: Bin Liu <b-liu@ti.com>
12870 L: linux-usb@vger.kernel.org
12872 F: drivers/usb/musb/
12874 MXL301RF MEDIA DRIVER
12875 M: Akihiro Tsukada <tskd08@gmail.com>
12876 L: linux-media@vger.kernel.org
12878 F: drivers/media/tuners/mxl301rf*
12880 MXL5007T MEDIA DRIVER
12881 M: Michael Krufky <mkrufky@linuxtv.org>
12882 L: linux-media@vger.kernel.org
12884 W: https://linuxtv.org
12885 W: http://github.com/mkrufky
12886 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12887 T: git git://linuxtv.org/mkrufky/tuners.git
12888 F: drivers/media/tuners/mxl5007t.*
12891 M: Marek Vasut <marex@denx.de>
12892 M: Stefan Agner <stefan@agner.ch>
12893 L: dri-devel@lists.freedesktop.org
12895 T: git git://anongit.freedesktop.org/drm/drm-misc
12896 F: Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12897 F: drivers/gpu/drm/mxsfb/
12899 MYLEX DAC960 PCI RAID Controller
12900 M: Hannes Reinecke <hare@kernel.org>
12901 L: linux-scsi@vger.kernel.org
12903 F: drivers/scsi/myrb.*
12904 F: drivers/scsi/myrs.*
12906 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12907 M: Chris Lee <christopher.lee@cspi.com>
12908 L: netdev@vger.kernel.org
12910 W: https://www.cspi.com/ethernet-products/support/downloads/
12911 F: drivers/net/ethernet/myricom/myri10ge/
12913 NAND FLASH SUBSYSTEM
12914 M: Miquel Raynal <miquel.raynal@bootlin.com>
12915 R: Richard Weinberger <richard@nod.at>
12916 L: linux-mtd@lists.infradead.org
12918 W: http://www.linux-mtd.infradead.org/
12919 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12920 C: irc://irc.oftc.net/mtd
12921 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12922 F: drivers/mtd/nand/
12923 F: include/linux/mtd/*nand*.h
12925 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12926 M: Daniel Mack <zonque@gmail.com>
12927 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12929 W: http://www.native-instruments.com
12930 F: sound/usb/caiaq/
12932 NATSEMI ETHERNET DRIVER (DP8381x)
12934 F: drivers/net/ethernet/natsemi/natsemi.c
12936 NCR 5380 SCSI DRIVERS
12937 M: Finn Thain <fthain@linux-m68k.org>
12938 M: Michael Schmitz <schmitzmic@gmail.com>
12939 L: linux-scsi@vger.kernel.org
12941 F: Documentation/scsi/g_NCR5380.rst
12942 F: drivers/scsi/NCR5380.*
12943 F: drivers/scsi/arm/cumana_1.c
12944 F: drivers/scsi/arm/oak.c
12945 F: drivers/scsi/atari_scsi.*
12946 F: drivers/scsi/dmx3191d.c
12947 F: drivers/scsi/g_NCR5380.*
12948 F: drivers/scsi/mac_scsi.*
12949 F: drivers/scsi/sun3_scsi.*
12950 F: drivers/scsi/sun3_scsi_vme.c
12953 M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
12957 NCT6775 HARDWARE MONITOR DRIVER
12958 M: Guenter Roeck <linux@roeck-us.net>
12959 L: linux-hwmon@vger.kernel.org
12961 F: Documentation/hwmon/nct6775.rst
12962 F: drivers/hwmon/nct6775.c
12965 M: Jakub Kicinski <kuba@kernel.org>
12967 F: drivers/net/netdevsim/*
12969 NETEM NETWORK EMULATOR
12970 M: Stephen Hemminger <stephen@networkplumber.org>
12971 L: netdev@vger.kernel.org
12973 F: net/sched/sch_netem.c
12975 NETERION 10GbE DRIVERS (s2io/vxge)
12976 M: Jon Mason <jdmason@kudzu.us>
12977 L: netdev@vger.kernel.org
12979 F: Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12980 F: Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12981 F: drivers/net/ethernet/neterion/
12984 M: Pablo Neira Ayuso <pablo@netfilter.org>
12985 M: Jozsef Kadlecsik <kadlec@netfilter.org>
12986 M: Florian Westphal <fw@strlen.de>
12987 L: netfilter-devel@vger.kernel.org
12988 L: coreteam@netfilter.org
12990 W: http://www.netfilter.org/
12991 W: http://www.iptables.org/
12992 W: http://www.nftables.org/
12993 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
12994 C: irc://irc.libera.chat/netfilter
12995 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12997 F: include/linux/netfilter*
12998 F: include/linux/netfilter/
12999 F: include/net/netfilter/
13000 F: include/uapi/linux/netfilter*
13001 F: include/uapi/linux/netfilter/
13002 F: net/*/netfilter.c
13003 F: net/*/netfilter/
13004 F: net/bridge/br_netfilter*.c
13007 NETROM NETWORK LAYER
13008 M: Ralf Baechle <ralf@linux-mips.org>
13009 L: linux-hams@vger.kernel.org
13011 W: http://www.linux-ax25.org/
13012 F: include/net/netrom.h
13013 F: include/uapi/linux/netrom.h
13016 NETRONIX EMBEDDED CONTROLLER
13017 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13019 F: Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13020 F: drivers/mfd/ntxec.c
13021 F: drivers/pwm/pwm-ntxec.c
13022 F: drivers/rtc/rtc-ntxec.c
13023 F: include/linux/mfd/ntxec.h
13025 NETRONOME ETHERNET DRIVERS
13026 M: Simon Horman <simon.horman@corigine.com>
13027 R: Jakub Kicinski <kuba@kernel.org>
13028 L: oss-drivers@corigine.com
13030 F: drivers/net/ethernet/netronome/
13032 NETWORK BLOCK DEVICE (NBD)
13033 M: Josef Bacik <josef@toxicpanda.com>
13034 L: linux-block@vger.kernel.org
13035 L: nbd@other.debian.org
13037 F: Documentation/admin-guide/blockdev/nbd.rst
13038 F: drivers/block/nbd.c
13039 F: include/trace/events/nbd.h
13040 F: include/uapi/linux/nbd.h
13042 NETWORK DROP MONITOR
13043 M: Neil Horman <nhorman@tuxdriver.com>
13044 L: netdev@vger.kernel.org
13046 W: https://fedorahosted.org/dropwatch/
13047 F: include/uapi/linux/net_dropmon.h
13048 F: net/core/drop_monitor.c
13051 M: "David S. Miller" <davem@davemloft.net>
13052 M: Jakub Kicinski <kuba@kernel.org>
13053 L: netdev@vger.kernel.org
13055 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13056 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13057 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13058 F: Documentation/devicetree/bindings/net/
13059 F: drivers/connector/
13061 F: include/linux/etherdevice.h
13062 F: include/linux/fcdevice.h
13063 F: include/linux/fddidevice.h
13064 F: include/linux/hippidevice.h
13065 F: include/linux/if_*
13066 F: include/linux/inetdevice.h
13067 F: include/linux/netdevice.h
13068 F: include/uapi/linux/if_*
13069 F: include/uapi/linux/netdevice.h
13071 NETWORKING DRIVERS (WIRELESS)
13072 M: Kalle Valo <kvalo@codeaurora.org>
13073 L: linux-wireless@vger.kernel.org
13075 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13076 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13077 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13078 F: Documentation/devicetree/bindings/net/wireless/
13079 F: drivers/net/wireless/
13082 M: Andrew Lunn <andrew@lunn.ch>
13083 M: Vivien Didelot <vivien.didelot@gmail.com>
13084 M: Florian Fainelli <f.fainelli@gmail.com>
13085 M: Vladimir Oltean <olteanv@gmail.com>
13087 F: Documentation/devicetree/bindings/net/dsa/
13088 F: drivers/net/dsa/
13089 F: include/linux/dsa/
13090 F: include/linux/platform_data/dsa.h
13091 F: include/net/dsa.h
13094 NETWORKING [GENERAL]
13095 M: "David S. Miller" <davem@davemloft.net>
13096 M: Jakub Kicinski <kuba@kernel.org>
13097 L: netdev@vger.kernel.org
13099 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13100 B: mailto:netdev@vger.kernel.org
13101 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13102 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13103 F: Documentation/networking/
13104 F: include/linux/in.h
13105 F: include/linux/net.h
13106 F: include/linux/netdevice.h
13108 F: include/uapi/linux/in.h
13109 F: include/uapi/linux/net.h
13110 F: include/uapi/linux/net_namespace.h
13111 F: include/uapi/linux/netdevice.h
13115 F: tools/testing/selftests/net/
13118 M: Steffen Klassert <steffen.klassert@secunet.com>
13119 M: Herbert Xu <herbert@gondor.apana.org.au>
13120 M: "David S. Miller" <davem@davemloft.net>
13121 L: netdev@vger.kernel.org
13123 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13125 F: include/net/xfrm.h
13126 F: include/uapi/linux/xfrm.h
13129 F: net/ipv4/ip_vti.c
13130 F: net/ipv4/ipcomp.c
13134 F: net/ipv6/ip6_vti.c
13135 F: net/ipv6/ipcomp6.c
13139 F: tools/testing/selftests/net/ipsec.c
13141 NETWORKING [IPv4/IPv6]
13142 M: "David S. Miller" <davem@davemloft.net>
13143 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13144 M: David Ahern <dsahern@kernel.org>
13145 L: netdev@vger.kernel.org
13147 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13153 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13154 M: Paul Moore <paul@paul-moore.com>
13155 L: netdev@vger.kernel.org
13156 L: linux-security-module@vger.kernel.org
13158 W: https://github.com/netlabel
13159 F: Documentation/netlabel/
13160 F: include/net/calipso.h
13161 F: include/net/cipso_ipv4.h
13162 F: include/net/netlabel.h
13163 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
13164 F: include/uapi/linux/netfilter/xt_SECMARK.h
13165 F: net/ipv4/cipso_ipv4.c
13166 F: net/ipv6/calipso.c
13167 F: net/netfilter/xt_CONNSECMARK.c
13168 F: net/netfilter/xt_SECMARK.c
13172 M: Mat Martineau <mathew.j.martineau@linux.intel.com>
13173 M: Matthieu Baerts <matthieu.baerts@tessares.net>
13174 L: netdev@vger.kernel.org
13175 L: mptcp@lists.linux.dev
13177 W: https://github.com/multipath-tcp/mptcp_net-next/wiki
13178 B: https://github.com/multipath-tcp/mptcp_net-next/issues
13179 F: Documentation/networking/mptcp-sysctl.rst
13180 F: include/net/mptcp.h
13181 F: include/trace/events/mptcp.h
13182 F: include/uapi/linux/mptcp.h
13184 F: tools/testing/selftests/net/mptcp/
13187 M: Eric Dumazet <edumazet@google.com>
13188 L: netdev@vger.kernel.org
13190 F: include/linux/tcp.h
13191 F: include/net/tcp.h
13192 F: include/trace/events/tcp.h
13193 F: include/uapi/linux/tcp.h
13194 F: net/ipv4/syncookies.c
13196 F: net/ipv6/syncookies.c
13200 M: Boris Pismenny <borisp@nvidia.com>
13201 M: John Fastabend <john.fastabend@gmail.com>
13202 M: Daniel Borkmann <daniel@iogearbox.net>
13203 M: Jakub Kicinski <kuba@kernel.org>
13204 L: netdev@vger.kernel.org
13206 F: include/net/tls.h
13207 F: include/uapi/linux/tls.h
13210 NETWORKING [WIRELESS]
13211 L: linux-wireless@vger.kernel.org
13212 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13214 NETXEN (1/10) GbE SUPPORT
13215 M: Manish Chopra <manishc@marvell.com>
13216 M: Rahul Verma <rahulv@marvell.com>
13217 M: GR-Linux-NIC-Dev@marvell.com
13218 L: netdev@vger.kernel.org
13220 F: drivers/net/ethernet/qlogic/netxen/
13222 NET_FAILOVER MODULE
13223 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
13224 L: netdev@vger.kernel.org
13226 F: Documentation/networking/net_failover.rst
13227 F: drivers/net/net_failover.c
13228 F: include/net/net_failover.h
13231 M: David Ahern <dsahern@kernel.org>
13232 L: netdev@vger.kernel.org
13234 F: include/net/netns/nexthop.h
13235 F: include/net/nexthop.h
13236 F: include/uapi/linux/nexthop.h
13237 F: net/ipv4/nexthop.c
13240 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13241 L: linux-nfc@lists.01.org (subscribers-only)
13242 L: netdev@vger.kernel.org
13244 F: Documentation/devicetree/bindings/net/nfc/
13246 F: include/linux/platform_data/nfcmrvl.h
13247 F: include/net/nfc/
13248 F: include/uapi/linux/nfc.h
13251 NFC VIRTUAL NCI DEVICE DRIVER
13252 M: Bongsu Jeon <bongsu.jeon@samsung.com>
13253 L: netdev@vger.kernel.org
13254 L: linux-nfc@lists.01.org (subscribers-only)
13256 F: drivers/nfc/virtual_ncidev.c
13257 F: tools/testing/selftests/nci/
13259 NFS, SUNRPC, AND LOCKD CLIENTS
13260 M: Trond Myklebust <trond.myklebust@hammerspace.com>
13261 M: Anna Schumaker <anna.schumaker@netapp.com>
13262 L: linux-nfs@vger.kernel.org
13264 W: http://client.linux-nfs.org
13265 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13269 F: include/linux/lockd/
13270 F: include/linux/nfs*
13271 F: include/linux/sunrpc/
13272 F: include/uapi/linux/nfs*
13273 F: include/uapi/linux/sunrpc/
13275 F: Documentation/filesystems/nfs/
13278 M: Ryusuke Konishi <konishi.ryusuke@gmail.com>
13279 L: linux-nilfs@vger.kernel.org
13281 W: https://nilfs.sourceforge.io/
13282 W: https://nilfs.osdn.jp/
13283 T: git git://github.com/konis/nilfs2.git
13284 F: Documentation/filesystems/nilfs2.rst
13286 F: include/trace/events/nilfs2.h
13287 F: include/uapi/linux/nilfs2_api.h
13288 F: include/uapi/linux/nilfs2_ondisk.h
13290 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13291 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13293 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13294 F: Documentation/scsi/NinjaSCSI.rst
13295 F: drivers/scsi/pcmcia/nsp_*
13297 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13298 M: GOTO Masanori <gotom@debian.or.jp>
13299 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13301 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13302 F: Documentation/scsi/NinjaSCSI.rst
13303 F: drivers/scsi/nsp32*
13306 M: Dinh Nguyen <dinguyen@kernel.org>
13308 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13311 NITRO ENCLAVES (NE)
13312 M: Andra Paraschiv <andraprs@amazon.com>
13313 M: Alexandru Vasile <lexnv@amazon.com>
13314 M: Alexandru Ciobotaru <alcioa@amazon.com>
13315 L: linux-kernel@vger.kernel.org
13317 W: https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13318 F: Documentation/virt/ne_overview.rst
13319 F: drivers/virt/nitro_enclaves/
13320 F: include/linux/nitro_enclaves.h
13321 F: include/uapi/linux/nitro_enclaves.h
13322 F: samples/nitro_enclaves/
13324 NOHZ, DYNTICKS SUPPORT
13325 M: Frederic Weisbecker <fweisbec@gmail.com>
13326 M: Thomas Gleixner <tglx@linutronix.de>
13327 M: Ingo Molnar <mingo@kernel.org>
13328 L: linux-kernel@vger.kernel.org
13330 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13331 F: include/linux/sched/nohz.h
13332 F: include/linux/tick.h
13333 F: kernel/time/tick*.*
13335 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13336 M: Pavel Machek <pavel@ucw.cz>
13337 M: Sakari Ailus <sakari.ailus@iki.fi>
13338 L: linux-media@vger.kernel.org
13340 F: drivers/media/i2c/ad5820.c
13341 F: drivers/media/i2c/et8ek8
13343 NOKIA N900 POWER SUPPLY DRIVERS
13344 R: Pali Rohár <pali@kernel.org>
13345 F: drivers/power/supply/bq2415x_charger.c
13346 F: drivers/power/supply/bq27xxx_battery.c
13347 F: drivers/power/supply/bq27xxx_battery_i2c.c
13348 F: drivers/power/supply/isp1704_charger.c
13349 F: drivers/power/supply/rx51_battery.c
13350 F: include/linux/power/bq2415x_charger.h
13351 F: include/linux/power/bq27xxx_battery.h
13354 M: Willy Tarreau <w@1wt.eu>
13356 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13357 F: tools/include/nolibc/
13360 M: Matthias Maennich <maennich@google.com>
13362 F: Documentation/core-api/symbol-namespaces.rst
13366 M: Sanjay R Mehta <sanju.mehta@amd.com>
13367 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13368 L: linux-ntb@googlegroups.com
13370 F: drivers/ntb/hw/amd/
13373 M: Jon Mason <jdmason@kudzu.us>
13374 M: Dave Jiang <dave.jiang@intel.com>
13375 M: Allen Hubbe <allenbh@gmail.com>
13376 L: linux-ntb@googlegroups.com
13378 W: https://github.com/jonmason/ntb/wiki
13379 T: git git://github.com/jonmason/ntb.git
13380 F: drivers/net/ntb_netdev.c
13382 F: include/linux/ntb.h
13383 F: include/linux/ntb_transport.h
13384 F: tools/testing/selftests/ntb/
13387 M: Serge Semin <fancer.lancer@gmail.com>
13388 L: linux-ntb@googlegroups.com
13390 F: drivers/ntb/hw/idt/
13393 M: Dave Jiang <dave.jiang@intel.com>
13394 L: linux-ntb@googlegroups.com
13396 W: https://github.com/davejiang/linux/wiki
13397 T: git https://github.com/davejiang/linux.git
13398 F: drivers/ntb/hw/intel/
13401 M: Anton Altaparmakov <anton@tuxera.com>
13402 L: linux-ntfs-dev@lists.sourceforge.net
13404 W: http://www.tuxera.com/
13405 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13406 F: Documentation/filesystems/ntfs.rst
13410 M: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13411 L: ntfs3@lists.linux.dev
13413 W: http://www.paragon-software.com/
13414 T: git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13415 F: Documentation/filesystems/ntfs3.rst
13419 M: Finn Thain <fthain@linux-m68k.org>
13420 L: linux-m68k@lists.linux-m68k.org
13422 F: arch/*/include/asm/nubus.h
13424 F: include/linux/nubus.h
13425 F: include/uapi/linux/nubus.h
13427 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13428 M: Antonino Daplas <adaplas@gmail.com>
13429 L: linux-fbdev@vger.kernel.org
13431 F: drivers/video/fbdev/nvidia/
13432 F: drivers/video/fbdev/riva/
13435 M: Keith Busch <kbusch@kernel.org>
13436 M: Jens Axboe <axboe@fb.com>
13437 M: Christoph Hellwig <hch@lst.de>
13438 M: Sagi Grimberg <sagi@grimberg.me>
13439 L: linux-nvme@lists.infradead.org
13441 W: http://git.infradead.org/nvme.git
13442 T: git://git.infradead.org/nvme.git
13443 F: drivers/nvme/host/
13444 F: include/linux/nvme.h
13445 F: include/uapi/linux/nvme_ioctl.h
13447 NVM EXPRESS FC TRANSPORT DRIVERS
13448 M: James Smart <james.smart@broadcom.com>
13449 L: linux-nvme@lists.infradead.org
13451 F: drivers/nvme/host/fc.c
13452 F: drivers/nvme/target/fc.c
13453 F: drivers/nvme/target/fcloop.c
13454 F: include/linux/nvme-fc-driver.h
13455 F: include/linux/nvme-fc.h
13457 NVM EXPRESS TARGET DRIVER
13458 M: Christoph Hellwig <hch@lst.de>
13459 M: Sagi Grimberg <sagi@grimberg.me>
13460 M: Chaitanya Kulkarni <kch@nvidia.com>
13461 L: linux-nvme@lists.infradead.org
13463 W: http://git.infradead.org/nvme.git
13464 T: git://git.infradead.org/nvme.git
13465 F: drivers/nvme/target/
13468 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13470 T: git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13471 F: Documentation/ABI/stable/sysfs-bus-nvmem
13472 F: Documentation/devicetree/bindings/nvmem/
13474 F: include/linux/nvmem-consumer.h
13475 F: include/linux/nvmem-provider.h
13477 NXP C45 TJA11XX PHY DRIVER
13478 M: Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13479 L: netdev@vger.kernel.org
13481 F: drivers/net/phy/nxp-c45-tja11xx.c
13484 M: Ashish Kumar <ashish.kumar@nxp.com>
13485 R: Yogesh Gaur <yogeshgaur.83@gmail.com>
13486 L: linux-spi@vger.kernel.org
13488 F: Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13489 F: drivers/spi/spi-nxp-fspi.c
13491 NXP FXAS21002C DRIVER
13492 M: Rui Miguel Silva <rmfrfs@gmail.com>
13493 L: linux-iio@vger.kernel.org
13495 F: Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13496 F: drivers/iio/gyro/fxas21002c.h
13497 F: drivers/iio/gyro/fxas21002c_core.c
13498 F: drivers/iio/gyro/fxas21002c_i2c.c
13499 F: drivers/iio/gyro/fxas21002c_spi.c
13501 NXP i.MX CLOCK DRIVERS
13502 M: Abel Vesa <abel.vesa@nxp.com>
13503 L: linux-clk@vger.kernel.org
13504 L: linux-imx@nxp.com
13506 F: drivers/clk/imx/
13508 NXP i.MX 8MQ DCSS DRIVER
13509 M: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13510 R: Lucas Stach <l.stach@pengutronix.de>
13511 L: dri-devel@lists.freedesktop.org
13513 F: Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13514 F: drivers/gpu/drm/imx/dcss/
13516 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13517 M: Jagan Teki <jagan@amarulasolutions.com>
13519 F: Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13520 F: drivers/regulator/pf8x00-regulator.c
13522 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13523 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13524 L: linux-kernel@vger.kernel.org
13526 F: Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13527 F: drivers/extcon/extcon-ptn5150.c
13529 NXP SGTL5000 DRIVER
13530 M: Fabio Estevam <festevam@gmail.com>
13531 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13533 F: Documentation/devicetree/bindings/sound/sgtl5000.yaml
13534 F: sound/soc/codecs/sgtl5000*
13536 NXP SJA1105 ETHERNET SWITCH DRIVER
13537 M: Vladimir Oltean <olteanv@gmail.com>
13538 L: linux-kernel@vger.kernel.org
13540 F: drivers/net/dsa/sja1105
13541 F: drivers/net/pcs/pcs-xpcs-nxp.c
13543 NXP TDA998X DRM DRIVER
13544 M: Russell King <linux@armlinux.org.uk>
13546 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13547 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13548 F: drivers/gpu/drm/i2c/tda998x_drv.c
13549 F: include/drm/i2c/tda998x.h
13550 F: include/dt-bindings/display/tda998x.h
13554 M: Peter Rosin <peda@axentia.se>
13555 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13557 F: Documentation/devicetree/bindings/sound/tfa9879.txt
13558 F: sound/soc/codecs/tfa9879*
13560 NXP/Goodix TFA989X (TFA1) DRIVER
13561 M: Stephan Gerhold <stephan@gerhold.net>
13562 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13564 F: Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13565 F: sound/soc/codecs/tfa989x.c
13568 R: Charles Gorand <charles.gorand@effinnov.com>
13569 L: linux-nfc@lists.01.org (subscribers-only)
13571 F: drivers/nfc/nxp-nci
13573 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13574 M: Mirela Rabulea <mirela.rabulea@nxp.com>
13575 R: NXP Linux Team <linux-imx@nxp.com>
13576 L: linux-media@vger.kernel.org
13578 F: Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13579 F: drivers/media/platform/imx-jpeg
13581 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13582 M: Jonas Malaco <jonas@protocubo.io>
13583 L: linux-hwmon@vger.kernel.org
13585 F: Documentation/hwmon/nzxt-kraken2.rst
13586 F: drivers/hwmon/nzxt-kraken2.c
13589 M: Jiri Pirko <jiri@nvidia.com>
13590 L: netdev@vger.kernel.org
13592 F: include/linux/objagg.h
13594 F: lib/test_objagg.c
13597 M: Josh Poimboeuf <jpoimboe@redhat.com>
13598 M: Peter Zijlstra <peterz@infradead.org>
13601 F: include/linux/objtool.h
13603 OCELOT ETHERNET SWITCH DRIVER
13604 M: Vladimir Oltean <vladimir.oltean@nxp.com>
13605 M: Claudiu Manoil <claudiu.manoil@nxp.com>
13606 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
13607 M: UNGLinuxDriver@microchip.com
13608 L: netdev@vger.kernel.org
13610 F: drivers/net/dsa/ocelot/*
13611 F: drivers/net/ethernet/mscc/
13612 F: include/soc/mscc/ocelot*
13613 F: net/dsa/tag_ocelot.c
13614 F: net/dsa/tag_ocelot_8021q.c
13615 F: tools/testing/selftests/drivers/net/ocelot/*
13617 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13618 M: Frederic Barrat <fbarrat@linux.ibm.com>
13619 M: Andrew Donnellan <ajd@linux.ibm.com>
13620 L: linuxppc-dev@lists.ozlabs.org
13622 F: Documentation/userspace-api/accelerators/ocxl.rst
13623 F: arch/powerpc/include/asm/pnv-ocxl.h
13624 F: arch/powerpc/platforms/powernv/ocxl.c
13625 F: drivers/misc/ocxl/
13626 F: include/misc/ocxl*
13627 F: include/uapi/misc/ocxl.h
13630 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
13631 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
13632 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13633 L: linux-omap@vger.kernel.org
13635 F: sound/soc/ti/n810.c
13636 F: sound/soc/ti/omap*
13637 F: sound/soc/ti/rx51.c
13638 F: sound/soc/ti/sdma-pcm.*
13640 OMAP CLOCK FRAMEWORK SUPPORT
13641 M: Paul Walmsley <paul@pwsan.com>
13642 L: linux-omap@vger.kernel.org
13644 F: arch/arm/*omap*/*clock*
13646 OMAP DEVICE TREE SUPPORT
13647 M: Benoît Cousson <bcousson@baylibre.com>
13648 M: Tony Lindgren <tony@atomide.com>
13649 L: linux-omap@vger.kernel.org
13650 L: devicetree@vger.kernel.org
13652 F: arch/arm/boot/dts/*am3*
13653 F: arch/arm/boot/dts/*am4*
13654 F: arch/arm/boot/dts/*am5*
13655 F: arch/arm/boot/dts/*dra7*
13656 F: arch/arm/boot/dts/*omap*
13657 F: arch/arm/boot/dts/logicpd-som-lv*
13658 F: arch/arm/boot/dts/logicpd-torpedo*
13660 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13661 L: linux-omap@vger.kernel.org
13662 L: linux-fbdev@vger.kernel.org
13664 F: Documentation/arm/omap/dss.rst
13665 F: drivers/video/fbdev/omap2/
13667 OMAP FRAMEBUFFER SUPPORT
13668 L: linux-fbdev@vger.kernel.org
13669 L: linux-omap@vger.kernel.org
13671 F: drivers/video/fbdev/omap/
13673 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13674 M: Roger Quadros <rogerq@kernel.org>
13675 M: Tony Lindgren <tony@atomide.com>
13676 L: linux-omap@vger.kernel.org
13678 F: arch/arm/mach-omap2/*gpmc*
13679 F: drivers/memory/omap-gpmc.c
13682 M: Grygorii Strashko <grygorii.strashko@ti.com>
13683 M: Santosh Shilimkar <ssantosh@kernel.org>
13684 M: Kevin Hilman <khilman@kernel.org>
13685 L: linux-omap@vger.kernel.org
13687 F: Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13688 F: drivers/gpio/gpio-omap.c
13690 OMAP HARDWARE SPINLOCK SUPPORT
13691 M: Ohad Ben-Cohen <ohad@wizery.com>
13692 L: linux-omap@vger.kernel.org
13694 F: drivers/hwspinlock/omap_hwspinlock.c
13696 OMAP HS MMC SUPPORT
13697 L: linux-mmc@vger.kernel.org
13698 L: linux-omap@vger.kernel.org
13700 F: drivers/mmc/host/omap_hsmmc.c
13703 M: Paul Walmsley <paul@pwsan.com>
13704 L: linux-omap@vger.kernel.org
13706 F: arch/arm/mach-omap2/omap_hwmod*data*
13709 M: Benoît Cousson <bcousson@baylibre.com>
13710 M: Paul Walmsley <paul@pwsan.com>
13711 L: linux-omap@vger.kernel.org
13713 F: arch/arm/mach-omap2/omap_hwmod.*
13716 M: Vignesh R <vigneshr@ti.com>
13717 L: linux-omap@vger.kernel.org
13718 L: linux-i2c@vger.kernel.org
13720 F: Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13721 F: drivers/i2c/busses/i2c-omap.c
13723 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13724 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13725 L: linux-media@vger.kernel.org
13727 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
13728 F: drivers/media/platform/omap3isp/
13729 F: drivers/staging/media/omap4iss/
13732 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13733 L: linux-omap@vger.kernel.org
13735 F: drivers/mmc/host/omap.c
13737 OMAP POWER MANAGEMENT SUPPORT
13738 M: Kevin Hilman <khilman@kernel.org>
13739 L: linux-omap@vger.kernel.org
13741 F: arch/arm/*omap*/*pm*
13742 F: drivers/cpufreq/omap-cpufreq.c
13744 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13745 M: Rajendra Nayak <rnayak@codeaurora.org>
13746 M: Paul Walmsley <paul@pwsan.com>
13747 L: linux-omap@vger.kernel.org
13749 F: arch/arm/mach-omap2/prm*
13751 OMAP RANDOM NUMBER GENERATOR SUPPORT
13752 M: Deepak Saxena <dsaxena@plexity.net>
13754 F: drivers/char/hw_random/omap-rng.c
13757 L: linux-usb@vger.kernel.org
13758 L: linux-omap@vger.kernel.org
13760 F: arch/arm/*omap*/usb*
13761 F: drivers/usb/*/*omap*
13763 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13764 M: Mark Jackson <mpfj@newflow.co.uk>
13765 L: linux-omap@vger.kernel.org
13767 F: arch/arm/boot/dts/am335x-nano.dts
13770 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13771 M: Tony Lindgren <tony@atomide.com>
13772 L: linux-omap@vger.kernel.org
13774 Q: http://patchwork.kernel.org/project/linux-omap/list/
13775 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13776 F: arch/arm/configs/omap1_defconfig
13777 F: arch/arm/mach-omap1/
13778 F: arch/arm/plat-omap/
13779 F: drivers/i2c/busses/i2c-omap.c
13780 F: include/linux/platform_data/ams-delta-fiq.h
13781 F: include/linux/platform_data/i2c-omap.h
13784 M: Tony Lindgren <tony@atomide.com>
13785 L: linux-omap@vger.kernel.org
13787 W: http://www.muru.com/linux/omap/
13788 W: http://linux.omap.com/
13789 Q: http://patchwork.kernel.org/project/linux-omap/list/
13790 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13791 F: arch/arm/configs/omap2plus_defconfig
13792 F: arch/arm/mach-omap2/
13793 F: arch/arm/plat-omap/
13794 F: drivers/bus/ti-sysc.c
13795 F: drivers/i2c/busses/i2c-omap.c
13796 F: drivers/irqchip/irq-omap-intc.c
13797 F: drivers/mfd/*omap*.c
13798 F: drivers/mfd/menelaus.c
13799 F: drivers/mfd/palmas.c
13800 F: drivers/mfd/tps65217.c
13801 F: drivers/mfd/tps65218.c
13802 F: drivers/mfd/tps65910.c
13803 F: drivers/mfd/twl-core.[ch]
13804 F: drivers/mfd/twl4030*.c
13805 F: drivers/mfd/twl6030*.c
13806 F: drivers/mfd/twl6040*.c
13807 F: drivers/regulator/palmas-regulator*.c
13808 F: drivers/regulator/pbias-regulator.c
13809 F: drivers/regulator/tps65217-regulator.c
13810 F: drivers/regulator/tps65218-regulator.c
13811 F: drivers/regulator/tps65910-regulator.c
13812 F: drivers/regulator/twl-regulator.c
13813 F: drivers/regulator/twl6030-regulator.c
13814 F: include/linux/platform_data/i2c-omap.h
13815 F: include/linux/platform_data/ti-sysc.h
13818 M: Bob Copeland <me@bobcopeland.com>
13819 L: linux-karma-devel@lists.sourceforge.net
13821 F: Documentation/filesystems/omfs.rst
13824 OMNIKEY CARDMAN 4000 DRIVER
13825 M: Harald Welte <laforge@gnumonks.org>
13827 F: drivers/char/pcmcia/cm4000_cs.c
13828 F: include/linux/cm4000_cs.h
13829 F: include/uapi/linux/cm4000_cs.h
13831 OMNIKEY CARDMAN 4040 DRIVER
13832 M: Harald Welte <laforge@gnumonks.org>
13834 F: drivers/char/pcmcia/cm4040_cs.*
13836 OMNIVISION OV02A10 SENSOR DRIVER
13837 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13838 L: linux-media@vger.kernel.org
13840 T: git git://linuxtv.org/media_tree.git
13841 F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13842 F: drivers/media/i2c/ov02a10.c
13844 OMNIVISION OV13858 SENSOR DRIVER
13845 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13846 L: linux-media@vger.kernel.org
13848 T: git git://linuxtv.org/media_tree.git
13849 F: drivers/media/i2c/ov13858.c
13851 OMNIVISION OV2680 SENSOR DRIVER
13852 M: Rui Miguel Silva <rmfrfs@gmail.com>
13853 L: linux-media@vger.kernel.org
13855 T: git git://linuxtv.org/media_tree.git
13856 F: Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13857 F: drivers/media/i2c/ov2680.c
13859 OMNIVISION OV2685 SENSOR DRIVER
13860 M: Shunqian Zheng <zhengsq@rock-chips.com>
13861 L: linux-media@vger.kernel.org
13863 T: git git://linuxtv.org/media_tree.git
13864 F: drivers/media/i2c/ov2685.c
13866 OMNIVISION OV2740 SENSOR DRIVER
13867 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13868 R: Shawn Tu <shawnx.tu@intel.com>
13869 R: Bingbu Cao <bingbu.cao@intel.com>
13870 L: linux-media@vger.kernel.org
13872 T: git git://linuxtv.org/media_tree.git
13873 F: drivers/media/i2c/ov2740.c
13875 OMNIVISION OV5640 SENSOR DRIVER
13876 M: Steve Longerbeam <slongerbeam@gmail.com>
13877 L: linux-media@vger.kernel.org
13879 T: git git://linuxtv.org/media_tree.git
13880 F: drivers/media/i2c/ov5640.c
13882 OMNIVISION OV5647 SENSOR DRIVER
13883 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
13884 M: Jacopo Mondi <jacopo@jmondi.org>
13885 L: linux-media@vger.kernel.org
13887 T: git git://linuxtv.org/media_tree.git
13888 F: Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13889 F: drivers/media/i2c/ov5647.c
13891 OMNIVISION OV5670 SENSOR DRIVER
13892 M: Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13893 M: Hyungwoo Yang <hyungwoo.yang@intel.com>
13894 L: linux-media@vger.kernel.org
13896 T: git git://linuxtv.org/media_tree.git
13897 F: drivers/media/i2c/ov5670.c
13899 OMNIVISION OV5675 SENSOR DRIVER
13900 M: Shawn Tu <shawnx.tu@intel.com>
13901 L: linux-media@vger.kernel.org
13903 T: git git://linuxtv.org/media_tree.git
13904 F: drivers/media/i2c/ov5675.c
13906 OMNIVISION OV5695 SENSOR DRIVER
13907 M: Shunqian Zheng <zhengsq@rock-chips.com>
13908 L: linux-media@vger.kernel.org
13910 T: git git://linuxtv.org/media_tree.git
13911 F: drivers/media/i2c/ov5695.c
13913 OMNIVISION OV7670 SENSOR DRIVER
13914 L: linux-media@vger.kernel.org
13916 T: git git://linuxtv.org/media_tree.git
13917 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
13918 F: drivers/media/i2c/ov7670.c
13920 OMNIVISION OV772x SENSOR DRIVER
13921 M: Jacopo Mondi <jacopo@jmondi.org>
13922 L: linux-media@vger.kernel.org
13924 T: git git://linuxtv.org/media_tree.git
13925 F: Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13926 F: drivers/media/i2c/ov772x.c
13927 F: include/media/i2c/ov772x.h
13929 OMNIVISION OV7740 SENSOR DRIVER
13930 M: Wenyou Yang <wenyou.yang@microchip.com>
13931 L: linux-media@vger.kernel.org
13933 T: git git://linuxtv.org/media_tree.git
13934 F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
13935 F: drivers/media/i2c/ov7740.c
13937 OMNIVISION OV8856 SENSOR DRIVER
13938 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13939 L: linux-media@vger.kernel.org
13941 T: git git://linuxtv.org/media_tree.git
13942 F: Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13943 F: drivers/media/i2c/ov8856.c
13945 OMNIVISION OV9282 SENSOR DRIVER
13946 M: Paul J. Murphy <paul.j.murphy@intel.com>
13947 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
13948 L: linux-media@vger.kernel.org
13950 T: git git://linuxtv.org/media_tree.git
13951 F: Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
13952 F: drivers/media/i2c/ov9282.c
13954 OMNIVISION OV9640 SENSOR DRIVER
13955 M: Petr Cvek <petrcvekcz@gmail.com>
13956 L: linux-media@vger.kernel.org
13958 F: drivers/media/i2c/ov9640.*
13960 OMNIVISION OV9650 SENSOR DRIVER
13961 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13962 R: Akinobu Mita <akinobu.mita@gmail.com>
13963 R: Sylwester Nawrocki <s.nawrocki@samsung.com>
13964 L: linux-media@vger.kernel.org
13966 T: git git://linuxtv.org/media_tree.git
13967 F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
13968 F: drivers/media/i2c/ov9650.c
13970 OMNIVISION OV9734 SENSOR DRIVER
13971 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13972 R: Bingbu Cao <bingbu.cao@intel.com>
13973 L: linux-media@vger.kernel.org
13975 T: git git://linuxtv.org/media_tree.git
13976 F: drivers/media/i2c/ov9734.c
13978 ONENAND FLASH DRIVER
13979 M: Kyungmin Park <kyungmin.park@samsung.com>
13980 L: linux-mtd@lists.infradead.org
13982 F: drivers/mtd/nand/onenand/
13983 F: include/linux/mtd/onenand*.h
13985 ONION OMEGA2+ BOARD
13986 M: Harvey Hunt <harveyhuntnexus@gmail.com>
13987 L: linux-mips@vger.kernel.org
13989 F: arch/mips/boot/dts/ralink/omega2p.dts
13992 M: Jens Wiklander <jens.wiklander@linaro.org>
13993 L: op-tee@lists.trustedfirmware.org
13995 F: Documentation/ABI/testing/sysfs-bus-optee-devices
13996 F: drivers/tee/optee/
13998 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13999 M: Sumit Garg <sumit.garg@linaro.org>
14000 L: op-tee@lists.trustedfirmware.org
14002 F: drivers/char/hw_random/optee-rng.c
14005 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14006 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14007 L: linux-rdma@vger.kernel.org
14009 F: drivers/infiniband/ulp/opa_vnic
14011 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14012 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14013 M: Frank Rowand <frowand.list@gmail.com>
14014 L: devicetree@vger.kernel.org
14016 F: Documentation/devicetree/dynamic-resolution-notes.rst
14017 F: Documentation/devicetree/overlay-notes.rst
14018 F: drivers/of/overlay.c
14019 F: drivers/of/resolver.c
14020 K: of_overlay_notifier_
14022 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14023 M: Rob Herring <robh+dt@kernel.org>
14024 M: Frank Rowand <frowand.list@gmail.com>
14025 L: devicetree@vger.kernel.org
14027 W: http://www.devicetree.org/
14028 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14029 F: Documentation/ABI/testing/sysfs-firmware-ofw
14031 F: include/linux/of*.h
14034 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14035 M: Rob Herring <robh+dt@kernel.org>
14036 L: devicetree@vger.kernel.org
14038 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14039 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14040 F: Documentation/devicetree/
14041 F: arch/*/boot/dts/
14042 F: include/dt-bindings/
14044 OPENCOMPUTE PTP CLOCK DRIVER
14045 M: Jonathan Lemon <jonathan.lemon@gmail.com>
14046 L: netdev@vger.kernel.org
14048 F: drivers/ptp/ptp_ocp.c
14050 OPENCORES I2C BUS DRIVER
14051 M: Peter Korsgaard <peter@korsgaard.com>
14052 M: Andrew Lunn <andrew@lunn.ch>
14053 L: linux-i2c@vger.kernel.org
14055 F: Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14056 F: Documentation/i2c/busses/i2c-ocores.rst
14057 F: drivers/i2c/busses/i2c-ocores.c
14058 F: include/linux/platform_data/i2c-ocores.h
14060 OPENRISC ARCHITECTURE
14061 M: Jonas Bonn <jonas@southpole.se>
14062 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14063 M: Stafford Horne <shorne@gmail.com>
14064 L: openrisc@lists.librecores.org
14066 W: http://openrisc.io
14067 T: git git://github.com/openrisc/linux.git
14068 F: Documentation/devicetree/bindings/openrisc/
14069 F: Documentation/openrisc/
14071 F: drivers/irqchip/irq-ompic.c
14072 F: drivers/irqchip/irq-or1k-*
14075 M: Pravin B Shelar <pshelar@ovn.org>
14076 L: netdev@vger.kernel.org
14077 L: dev@openvswitch.org
14079 W: http://openvswitch.org
14080 F: include/uapi/linux/openvswitch.h
14081 F: net/openvswitch/
14083 OPERATING PERFORMANCE POINTS (OPP)
14084 M: Viresh Kumar <vireshk@kernel.org>
14085 M: Nishanth Menon <nm@ti.com>
14086 M: Stephen Boyd <sboyd@kernel.org>
14087 L: linux-pm@vger.kernel.org
14089 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14090 F: Documentation/devicetree/bindings/opp/
14091 F: Documentation/power/opp.rst
14093 F: include/linux/pm_opp.h
14096 M: Clemens Ladisch <clemens@ladisch.de>
14097 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14099 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14100 F: sound/drivers/opl4/
14102 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14103 M: Mark Fasheh <mark@fasheh.com>
14104 M: Joel Becker <jlbec@evilplan.org>
14105 M: Joseph Qi <joseph.qi@linux.alibaba.com>
14106 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14108 W: http://ocfs2.wiki.kernel.org
14109 F: Documentation/filesystems/dlmfs.rst
14110 F: Documentation/filesystems/ocfs2.rst
14113 ORANGEFS FILESYSTEM
14114 M: Mike Marshall <hubcap@omnibond.com>
14115 R: Martin Brandenburg <martin@omnibond.com>
14116 L: devel@lists.orangefs.org
14118 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14119 F: Documentation/filesystems/orangefs.rst
14123 L: linux-wireless@vger.kernel.org
14125 W: https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14126 W: http://www.nongnu.org/orinoco/
14127 F: drivers/net/wireless/intersil/orinoco/
14129 OV2659 OMNIVISION SENSOR DRIVER
14130 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14131 L: linux-media@vger.kernel.org
14133 W: https://linuxtv.org
14134 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14135 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14136 F: drivers/media/i2c/ov2659.c
14137 F: include/media/i2c/ov2659.h
14140 M: Miklos Szeredi <miklos@szeredi.hu>
14141 L: linux-unionfs@vger.kernel.org
14143 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14144 F: Documentation/filesystems/overlayfs.rst
14147 P54 WIRELESS DRIVER
14148 M: Christian Lamparter <chunkeey@googlemail.com>
14149 L: linux-wireless@vger.kernel.org
14151 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
14152 F: drivers/net/wireless/intersil/p54/
14155 M: Vladimir Oltean <olteanv@gmail.com>
14156 L: netdev@vger.kernel.org
14158 F: Documentation/core-api/packing.rst
14159 F: include/linux/packing.h
14162 PADATA PARALLEL EXECUTION MECHANISM
14163 M: Steffen Klassert <steffen.klassert@secunet.com>
14164 M: Daniel Jordan <daniel.m.jordan@oracle.com>
14165 L: linux-crypto@vger.kernel.org
14166 L: linux-kernel@vger.kernel.org
14168 F: Documentation/core-api/padata.rst
14169 F: include/linux/padata.h
14173 M: Jesper Dangaard Brouer <hawk@kernel.org>
14174 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
14175 L: netdev@vger.kernel.org
14177 F: Documentation/networking/page_pool.rst
14178 F: include/net/page_pool.h
14179 F: include/trace/events/page_pool.h
14180 F: net/core/page_pool.c
14182 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14183 M: Kenneth Chan <kenneth.t.chan@gmail.com>
14184 L: platform-driver-x86@vger.kernel.org
14186 F: drivers/platform/x86/panasonic-laptop.c
14188 PARALLAX PING IIO SENSOR DRIVER
14189 M: Andreas Klinger <ak@it-klinger.de>
14190 L: linux-iio@vger.kernel.org
14192 F: Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14193 F: drivers/iio/proximity/ping.c
14195 PARALLEL LCD/KEYPAD PANEL DRIVER
14196 M: Willy Tarreau <willy@haproxy.com>
14197 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14199 F: Documentation/admin-guide/lcd-panel-cgram.rst
14200 F: drivers/auxdisplay/panel.c
14202 PARALLEL PORT SUBSYSTEM
14203 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14204 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14205 L: linux-parport@lists.infradead.org (subscribers-only)
14207 F: Documentation/driver-api/parport*.rst
14208 F: drivers/char/ppdev.c
14209 F: drivers/parport/
14210 F: include/linux/parport*.h
14211 F: include/uapi/linux/ppdev.h
14213 PARAVIRT_OPS INTERFACE
14214 M: Juergen Gross <jgross@suse.com>
14215 M: Deep Shah <sdeep@vmware.com>
14216 M: "VMware, Inc." <pv-drivers@vmware.com>
14217 L: virtualization@lists.linux-foundation.org
14219 F: Documentation/virt/paravirt_ops.rst
14220 F: arch/*/include/asm/paravirt*.h
14221 F: arch/*/kernel/paravirt*
14222 F: include/linux/hypervisor.h
14224 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14225 M: Tim Waugh <tim@cyberelk.net>
14226 L: linux-parport@lists.infradead.org (subscribers-only)
14228 F: Documentation/admin-guide/blockdev/paride.rst
14229 F: drivers/block/paride/
14231 PARISC ARCHITECTURE
14232 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14233 M: Helge Deller <deller@gmx.de>
14234 L: linux-parisc@vger.kernel.org
14236 W: https://parisc.wiki.kernel.org
14237 Q: http://patchwork.kernel.org/project/linux-parisc/list/
14238 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14239 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14240 F: Documentation/parisc/
14242 F: drivers/char/agp/parisc-agp.c
14243 F: drivers/input/misc/hp_sdc_rtc.c
14244 F: drivers/input/serio/gscps2.c
14245 F: drivers/input/serio/hp_sdc*
14247 F: drivers/parport/parport_gsc.*
14248 F: drivers/tty/serial/8250/8250_gsc.c
14249 F: drivers/video/console/sti*
14250 F: drivers/video/fbdev/sti*
14251 F: drivers/video/logo/logo_parisc*
14252 F: include/linux/hp_sdc.h
14255 M: Jiri Pirko <jiri@nvidia.com>
14256 L: netdev@vger.kernel.org
14258 F: include/linux/parman.h
14260 F: lib/test_parman.c
14262 PC ENGINES APU BOARD DRIVER
14263 M: Enrico Weigelt, metux IT consult <info@metux.net>
14265 F: drivers/platform/x86/pcengines-apuv2.c
14267 PC87360 HARDWARE MONITORING DRIVER
14268 M: Jim Cromie <jim.cromie@gmail.com>
14269 L: linux-hwmon@vger.kernel.org
14271 F: Documentation/hwmon/pc87360.rst
14272 F: drivers/hwmon/pc87360.c
14274 PC8736x GPIO DRIVER
14275 M: Jim Cromie <jim.cromie@gmail.com>
14277 F: drivers/char/pc8736x_gpio.c
14279 PC87427 HARDWARE MONITORING DRIVER
14280 M: Jean Delvare <jdelvare@suse.com>
14281 L: linux-hwmon@vger.kernel.org
14283 F: Documentation/hwmon/pc87427.rst
14284 F: drivers/hwmon/pc87427.c
14287 M: Riku Voipio <riku.voipio@iki.fi>
14289 F: drivers/leds/leds-pca9532.c
14290 F: include/linux/leds-pca9532.h
14292 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14293 M: Guenter Roeck <linux@roeck-us.net>
14294 L: linux-i2c@vger.kernel.org
14296 F: drivers/i2c/muxes/i2c-mux-pca9541.c
14298 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14299 M: Khalid Aziz <khalid@gonehiking.org>
14301 F: drivers/firmware/pcdp.*
14303 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14304 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14305 M: Pali Rohár <pali@kernel.org>
14306 L: linux-pci@vger.kernel.org
14307 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14309 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
14310 F: drivers/pci/controller/pci-aardvark.c
14312 PCI DRIVER FOR ALTERA PCIE IP
14313 M: Joyce Ooi <joyce.ooi@intel.com>
14314 L: linux-pci@vger.kernel.org
14316 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
14317 F: drivers/pci/controller/pcie-altera.c
14319 PCI DRIVER FOR APPLIEDMICRO XGENE
14320 M: Toan Le <toan@os.amperecomputing.com>
14321 L: linux-pci@vger.kernel.org
14322 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14324 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
14325 F: drivers/pci/controller/pci-xgene.c
14327 PCI DRIVER FOR ARM VERSATILE PLATFORM
14328 M: Rob Herring <robh@kernel.org>
14329 L: linux-pci@vger.kernel.org
14330 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14332 F: Documentation/devicetree/bindings/pci/versatile.yaml
14333 F: drivers/pci/controller/pci-versatile.c
14335 PCI DRIVER FOR ARMADA 8K
14336 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14337 L: linux-pci@vger.kernel.org
14338 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14340 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
14341 F: drivers/pci/controller/dwc/pcie-armada8k.c
14343 PCI DRIVER FOR CADENCE PCIE IP
14344 M: Tom Joseph <tjoseph@cadence.com>
14345 L: linux-pci@vger.kernel.org
14347 F: Documentation/devicetree/bindings/pci/cdns,*
14348 F: drivers/pci/controller/cadence/
14350 PCI DRIVER FOR FREESCALE LAYERSCAPE
14351 M: Minghuan Lian <minghuan.Lian@nxp.com>
14352 M: Mingkai Hu <mingkai.hu@nxp.com>
14353 M: Roy Zang <roy.zang@nxp.com>
14354 L: linuxppc-dev@lists.ozlabs.org
14355 L: linux-pci@vger.kernel.org
14356 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14358 F: drivers/pci/controller/dwc/*layerscape*
14360 PCI DRIVER FOR GENERIC OF HOSTS
14361 M: Will Deacon <will@kernel.org>
14362 L: linux-pci@vger.kernel.org
14363 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14365 F: Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14366 F: drivers/pci/controller/pci-host-common.c
14367 F: drivers/pci/controller/pci-host-generic.c
14369 PCI DRIVER FOR IMX6
14370 M: Richard Zhu <hongxing.zhu@nxp.com>
14371 M: Lucas Stach <l.stach@pengutronix.de>
14372 L: linux-pci@vger.kernel.org
14373 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14375 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14376 F: drivers/pci/controller/dwc/*imx6*
14378 PCI DRIVER FOR FU740
14379 M: Paul Walmsley <paul.walmsley@sifive.com>
14380 M: Greentime Hu <greentime.hu@sifive.com>
14381 L: linux-pci@vger.kernel.org
14383 F: Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14384 F: drivers/pci/controller/dwc/pcie-fu740.c
14386 PCI DRIVER FOR INTEL IXP4XX
14387 M: Linus Walleij <linus.walleij@linaro.org>
14389 F: Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14390 F: drivers/pci/controller/pci-ixp4xx.c
14392 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14393 M: Nirmal Patel <nirmal.patel@linux.intel.com>
14394 R: Jonathan Derrick <jonathan.derrick@linux.dev>
14395 L: linux-pci@vger.kernel.org
14397 F: drivers/pci/controller/vmd.c
14399 PCI DRIVER FOR MICROSEMI SWITCHTEC
14400 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14401 M: Logan Gunthorpe <logang@deltatee.com>
14402 L: linux-pci@vger.kernel.org
14404 F: Documentation/ABI/testing/sysfs-class-switchtec
14405 F: Documentation/driver-api/switchtec.rst
14406 F: drivers/ntb/hw/mscc/
14407 F: drivers/pci/switch/switchtec*
14408 F: include/linux/switchtec.h
14409 F: include/uapi/linux/switchtec_ioctl.h
14411 PCI DRIVER FOR MOBIVEIL PCIE IP
14412 M: Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14413 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14414 L: linux-pci@vger.kernel.org
14416 F: Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14417 F: drivers/pci/controller/mobiveil/pcie-mobiveil*
14419 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14420 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14421 L: linux-pci@vger.kernel.org
14422 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14424 F: drivers/pci/controller/*mvebu*
14426 PCI DRIVER FOR NVIDIA TEGRA
14427 M: Thierry Reding <thierry.reding@gmail.com>
14428 L: linux-tegra@vger.kernel.org
14429 L: linux-pci@vger.kernel.org
14431 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14432 F: drivers/pci/controller/pci-tegra.c
14434 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14435 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14436 L: linux-pci@vger.kernel.org
14437 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14439 F: Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14440 F: drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14442 PCI DRIVER FOR RENESAS R-CAR
14443 M: Marek Vasut <marek.vasut+renesas@gmail.com>
14444 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14445 L: linux-pci@vger.kernel.org
14446 L: linux-renesas-soc@vger.kernel.org
14448 F: Documentation/devicetree/bindings/pci/*rcar*
14449 F: drivers/pci/controller/*rcar*
14451 PCI DRIVER FOR SAMSUNG EXYNOS
14452 M: Jingoo Han <jingoohan1@gmail.com>
14453 L: linux-pci@vger.kernel.org
14454 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14455 L: linux-samsung-soc@vger.kernel.org
14457 F: drivers/pci/controller/dwc/pci-exynos.c
14459 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14460 M: Jingoo Han <jingoohan1@gmail.com>
14461 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14462 L: linux-pci@vger.kernel.org
14464 F: Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14465 F: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14466 F: drivers/pci/controller/dwc/*designware*
14468 PCI DRIVER FOR TI DRA7XX/J721E
14469 M: Kishon Vijay Abraham I <kishon@ti.com>
14470 L: linux-omap@vger.kernel.org
14471 L: linux-pci@vger.kernel.org
14472 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14474 F: Documentation/devicetree/bindings/pci/ti-pci.txt
14475 F: drivers/pci/controller/cadence/pci-j721e.c
14476 F: drivers/pci/controller/dwc/pci-dra7xx.c
14478 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14479 M: Linus Walleij <linus.walleij@linaro.org>
14480 L: linux-pci@vger.kernel.org
14482 F: Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14483 F: drivers/pci/controller/pci-v3-semi.c
14485 PCI ENDPOINT SUBSYSTEM
14486 M: Kishon Vijay Abraham I <kishon@ti.com>
14487 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14488 R: Krzysztof Wilczyński <kw@linux.com>
14489 L: linux-pci@vger.kernel.org
14491 F: Documentation/PCI/endpoint/*
14492 F: Documentation/misc-devices/pci-endpoint-test.rst
14493 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14494 F: drivers/misc/pci_endpoint_test.c
14495 F: drivers/pci/endpoint/
14498 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14499 M: Russell Currey <ruscur@russell.cc>
14500 M: Oliver O'Halloran <oohall@gmail.com>
14501 L: linuxppc-dev@lists.ozlabs.org
14503 F: Documentation/PCI/pci-error-recovery.rst
14504 F: Documentation/powerpc/eeh-pci-error-recovery.rst
14505 F: arch/powerpc/include/*/eeh*.h
14506 F: arch/powerpc/kernel/eeh*.c
14507 F: arch/powerpc/platforms/*/eeh*.c
14508 F: drivers/pci/pcie/aer.c
14509 F: drivers/pci/pcie/dpc.c
14510 F: drivers/pci/pcie/err.c
14513 M: Linas Vepstas <linasvepstas@gmail.com>
14514 L: linux-pci@vger.kernel.org
14516 F: Documentation/PCI/pci-error-recovery.rst
14518 PCI MSI DRIVER FOR ALTERA MSI IP
14519 M: Joyce Ooi <joyce.ooi@intel.com>
14520 L: linux-pci@vger.kernel.org
14522 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14523 F: drivers/pci/controller/pcie-altera-msi.c
14525 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14526 M: Toan Le <toan@os.amperecomputing.com>
14527 L: linux-pci@vger.kernel.org
14528 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14530 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14531 F: drivers/pci/controller/pci-xgene-msi.c
14533 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14534 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14535 R: Rob Herring <robh@kernel.org>
14536 R: Krzysztof Wilczyński <kw@linux.com>
14537 L: linux-pci@vger.kernel.org
14539 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14540 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14541 F: drivers/pci/controller/
14544 M: Bjorn Helgaas <bhelgaas@google.com>
14545 L: linux-pci@vger.kernel.org
14547 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14548 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14549 F: Documentation/PCI/
14550 F: Documentation/devicetree/bindings/pci/
14551 F: arch/x86/kernel/early-quirks.c
14552 F: arch/x86/kernel/quirks.c
14554 F: drivers/acpi/pci*
14556 F: include/asm-generic/pci*
14557 F: include/linux/of_pci.h
14558 F: include/linux/pci*
14559 F: include/uapi/linux/pci*
14562 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14563 M: Jonathan Chocron <jonnyc@amazon.com>
14564 L: linux-pci@vger.kernel.org
14566 F: Documentation/devicetree/bindings/pci/pcie-al.txt
14567 F: drivers/pci/controller/dwc/pcie-al.c
14569 PCIE DRIVER FOR AMLOGIC MESON
14570 M: Yue Wang <yue.wang@Amlogic.com>
14571 L: linux-pci@vger.kernel.org
14572 L: linux-amlogic@lists.infradead.org
14574 F: drivers/pci/controller/dwc/pci-meson.c
14576 PCIE DRIVER FOR AXIS ARTPEC
14577 M: Jesper Nilsson <jesper.nilsson@axis.com>
14578 L: linux-arm-kernel@axis.com
14579 L: linux-pci@vger.kernel.org
14581 F: Documentation/devicetree/bindings/pci/axis,artpec*
14582 F: drivers/pci/controller/dwc/*artpec*
14584 PCIE DRIVER FOR CAVIUM THUNDERX
14585 M: Robert Richter <rric@kernel.org>
14586 L: linux-pci@vger.kernel.org
14587 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14589 F: drivers/pci/controller/pci-thunder-*
14591 PCIE DRIVER FOR HISILICON
14592 M: Zhou Wang <wangzhou1@hisilicon.com>
14593 L: linux-pci@vger.kernel.org
14595 F: drivers/pci/controller/dwc/pcie-hisi.c
14597 PCIE DRIVER FOR HISILICON KIRIN
14598 M: Xiaowei Song <songxiaowei@hisilicon.com>
14599 M: Binghui Wang <wangbinghui@hisilicon.com>
14600 L: linux-pci@vger.kernel.org
14602 F: Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14603 F: drivers/pci/controller/dwc/pcie-kirin.c
14605 PCIE DRIVER FOR HISILICON STB
14606 M: Shawn Guo <shawn.guo@linaro.org>
14607 L: linux-pci@vger.kernel.org
14609 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14610 F: drivers/pci/controller/dwc/pcie-histb.c
14612 PCIE DRIVER FOR INTEL KEEM BAY
14613 M: Srikanth Thokala <srikanth.thokala@intel.com>
14614 L: linux-pci@vger.kernel.org
14616 F: Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14617 F: drivers/pci/controller/dwc/pcie-keembay.c
14619 PCIE DRIVER FOR INTEL LGM GW SOC
14620 M: Rahul Tanwar <rtanwar@maxlinear.com>
14621 L: linux-pci@vger.kernel.org
14623 F: Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14624 F: drivers/pci/controller/dwc/pcie-intel-gw.c
14626 PCIE DRIVER FOR MEDIATEK
14627 M: Ryder Lee <ryder.lee@mediatek.com>
14628 M: Jianjun Wang <jianjun.wang@mediatek.com>
14629 L: linux-pci@vger.kernel.org
14630 L: linux-mediatek@lists.infradead.org
14632 F: Documentation/devicetree/bindings/pci/mediatek*
14633 F: drivers/pci/controller/*mediatek*
14635 PCIE DRIVER FOR MICROCHIP
14636 M: Daire McNamara <daire.mcnamara@microchip.com>
14637 L: linux-pci@vger.kernel.org
14639 F: Documentation/devicetree/bindings/pci/microchip*
14640 F: drivers/pci/controller/*microchip*
14642 PCIE DRIVER FOR QUALCOMM MSM
14643 M: Stanimir Varbanov <svarbanov@mm-sol.com>
14644 L: linux-pci@vger.kernel.org
14645 L: linux-arm-msm@vger.kernel.org
14647 F: drivers/pci/controller/dwc/*qcom*
14649 PCIE DRIVER FOR ROCKCHIP
14650 M: Shawn Lin <shawn.lin@rock-chips.com>
14651 L: linux-pci@vger.kernel.org
14652 L: linux-rockchip@lists.infradead.org
14654 F: Documentation/devicetree/bindings/pci/rockchip-pcie*
14655 F: drivers/pci/controller/pcie-rockchip*
14657 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14658 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14659 L: linux-pci@vger.kernel.org
14661 F: Documentation/devicetree/bindings/pci/uniphier-pcie*
14662 F: drivers/pci/controller/dwc/pcie-uniphier*
14664 PCIE DRIVER FOR ST SPEAR13XX
14665 M: Pratyush Anand <pratyush.anand@gmail.com>
14666 L: linux-pci@vger.kernel.org
14668 F: drivers/pci/controller/dwc/*spear*
14671 M: Dominik Brodowski <linux@dominikbrodowski.net>
14673 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14674 F: Documentation/pcmcia/
14679 PCNET32 NETWORK DRIVER
14680 M: Don Fry <pcnet32@frontier.com>
14681 L: netdev@vger.kernel.org
14683 F: drivers/net/ethernet/amd/pcnet32.c
14685 PCRYPT PARALLEL CRYPTO ENGINE
14686 M: Steffen Klassert <steffen.klassert@secunet.com>
14687 L: linux-crypto@vger.kernel.org
14690 F: include/crypto/pcrypt.h
14692 PEAQ WMI HOTKEYS DRIVER
14693 M: Hans de Goede <hdegoede@redhat.com>
14694 L: platform-driver-x86@vger.kernel.org
14696 F: drivers/platform/x86/peaq-wmi.c
14698 PENSANDO ETHERNET DRIVERS
14699 M: Shannon Nelson <snelson@pensando.io>
14700 M: drivers@pensando.io
14701 L: netdev@vger.kernel.org
14703 F: Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14704 F: drivers/net/ethernet/pensando/
14706 PER-CPU MEMORY ALLOCATOR
14707 M: Dennis Zhou <dennis@kernel.org>
14708 M: Tejun Heo <tj@kernel.org>
14709 M: Christoph Lameter <cl@linux.com>
14710 L: linux-mm@kvack.org
14712 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14713 F: arch/*/include/asm/percpu.h
14714 F: include/linux/percpu*.h
14718 PER-TASK DELAY ACCOUNTING
14719 M: Balbir Singh <bsingharora@gmail.com>
14721 F: include/linux/delayacct.h
14722 F: kernel/delayacct.c
14724 PERFORMANCE EVENTS SUBSYSTEM
14725 M: Peter Zijlstra <peterz@infradead.org>
14726 M: Ingo Molnar <mingo@redhat.com>
14727 M: Arnaldo Carvalho de Melo <acme@kernel.org>
14728 R: Mark Rutland <mark.rutland@arm.com>
14729 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
14730 R: Jiri Olsa <jolsa@redhat.com>
14731 R: Namhyung Kim <namhyung@kernel.org>
14732 L: linux-perf-users@vger.kernel.org
14733 L: linux-kernel@vger.kernel.org
14735 W: https://perf.wiki.kernel.org/
14736 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14738 F: arch/*/events/*/*
14739 F: arch/*/include/asm/perf_event.h
14740 F: arch/*/kernel/*/*/perf_event*.c
14741 F: arch/*/kernel/*/perf_event*.c
14742 F: arch/*/kernel/perf_callchain.c
14743 F: arch/*/kernel/perf_event*.c
14744 F: include/linux/perf_event.h
14745 F: include/uapi/linux/perf_event.h
14750 PERFORMANCE EVENTS TOOLING ARM64
14751 R: John Garry <john.garry@huawei.com>
14752 R: Will Deacon <will@kernel.org>
14753 R: Mathieu Poirier <mathieu.poirier@linaro.org>
14754 R: Leo Yan <leo.yan@linaro.org>
14755 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14757 F: tools/build/feature/test-libopencsd.c
14758 F: tools/perf/arch/arm*/
14759 F: tools/perf/pmu-events/arch/arm64/
14760 F: tools/perf/util/arm-spe*
14761 F: tools/perf/util/cs-etm*
14763 PERSONALITY HANDLING
14764 M: Christoph Hellwig <hch@infradead.org>
14765 L: linux-abi-devel@lists.sourceforge.net
14767 F: include/linux/personality.h
14768 F: include/uapi/linux/personality.h
14770 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14771 M: Marcus Folkesson <marcus.folkesson@gmail.com>
14772 L: linux-input@vger.kernel.org
14774 F: Documentation/input/devices/pxrc.rst
14775 F: drivers/input/joystick/pxrc.c
14778 M: Remi Denis-Courmont <courmisch@gmail.com>
14780 F: Documentation/networking/phonet.rst
14781 F: include/linux/phonet.h
14782 F: include/net/phonet/
14783 F: include/uapi/linux/phonet.h
14787 M: Joern Engel <joern@lazybastard.org>
14788 L: linux-mtd@lists.infradead.org
14790 F: drivers/mtd/devices/phram.c
14793 M: Bruno Prémont <bonbons@linux-vserver.org>
14794 L: linux-input@vger.kernel.org
14796 F: drivers/hid/hid-picolcd*
14799 M: Christian Brauner <christian@brauner.io>
14800 L: linux-kernel@vger.kernel.org
14802 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14804 F: tools/testing/selftests/clone3/
14805 F: tools/testing/selftests/pid_namespace/
14806 F: tools/testing/selftests/pidfd/
14809 K: \b(clone_args|kernel_clone_args)\b
14811 PIN CONTROL SUBSYSTEM
14812 M: Linus Walleij <linus.walleij@linaro.org>
14813 L: linux-gpio@vger.kernel.org
14815 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14816 F: Documentation/devicetree/bindings/pinctrl/
14817 F: Documentation/driver-api/pin-control.rst
14818 F: drivers/pinctrl/
14819 F: include/linux/pinctrl/
14821 PIN CONTROLLER - AMD
14822 M: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14823 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14825 F: drivers/pinctrl/pinctrl-amd.c
14827 PIN CONTROLLER - FREESCALE
14828 M: Dong Aisheng <aisheng.dong@nxp.com>
14829 M: Fabio Estevam <festevam@gmail.com>
14830 M: Shawn Guo <shawnguo@kernel.org>
14831 M: Stefan Agner <stefan@agner.ch>
14832 R: Pengutronix Kernel Team <kernel@pengutronix.de>
14833 L: linux-gpio@vger.kernel.org
14835 F: Documentation/devicetree/bindings/pinctrl/fsl,*
14836 F: drivers/pinctrl/freescale/
14838 PIN CONTROLLER - INTEL
14839 M: Mika Westerberg <mika.westerberg@linux.intel.com>
14840 M: Andy Shevchenko <andy@kernel.org>
14842 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14843 F: drivers/pinctrl/intel/
14845 PIN CONTROLLER - KEEMBAY
14846 M: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14848 F: drivers/pinctrl/pinctrl-keembay*
14850 PIN CONTROLLER - MEDIATEK
14851 M: Sean Wang <sean.wang@kernel.org>
14852 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14854 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14855 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14856 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14857 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14858 F: drivers/pinctrl/mediatek/
14860 PIN CONTROLLER - MICROCHIP AT91
14861 M: Ludovic Desroches <ludovic.desroches@microchip.com>
14862 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14863 L: linux-gpio@vger.kernel.org
14865 F: drivers/gpio/gpio-sama5d2-piobu.c
14866 F: drivers/pinctrl/pinctrl-at91*
14868 PIN CONTROLLER - QUALCOMM
14869 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14870 L: linux-arm-msm@vger.kernel.org
14872 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14873 F: drivers/pinctrl/qcom/
14875 PIN CONTROLLER - RENESAS
14876 M: Geert Uytterhoeven <geert+renesas@glider.be>
14877 L: linux-renesas-soc@vger.kernel.org
14879 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14880 F: Documentation/devicetree/bindings/pinctrl/renesas,*
14881 F: drivers/pinctrl/renesas/
14883 PIN CONTROLLER - SAMSUNG
14884 M: Tomasz Figa <tomasz.figa@gmail.com>
14885 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14886 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14887 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14888 L: linux-samsung-soc@vger.kernel.org
14890 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
14891 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14892 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14893 F: drivers/pinctrl/samsung/
14894 F: include/dt-bindings/pinctrl/samsung.h
14896 PIN CONTROLLER - SINGLE
14897 M: Tony Lindgren <tony@atomide.com>
14898 M: Haojian Zhuang <haojian.zhuang@linaro.org>
14899 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14900 L: linux-omap@vger.kernel.org
14902 F: drivers/pinctrl/pinctrl-single.c
14904 PIN CONTROLLER - ST SPEAR
14905 M: Viresh Kumar <vireshk@kernel.org>
14906 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14908 W: http://www.st.com/spear
14909 F: drivers/pinctrl/spear/
14912 M: linux-block@vger.kernel.org
14914 F: drivers/block/pktcdvd.c
14915 F: include/linux/pktcdvd.h
14916 F: include/uapi/linux/pktcdvd.h
14918 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14919 M: Tomasz Duszynski <tduszyns@gmail.com>
14921 F: Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14922 F: drivers/iio/chemical/pms7003.c
14925 M: Jacob Keller <jacob.e.keller@intel.com>
14927 F: Documentation/driver-api/pldmfw/
14928 F: include/linux/pldmfw.h
14932 M: Logan Gunthorpe <logang@deltatee.com>
14934 F: drivers/dma/plx_dma.c
14937 M: Charles Hsu <hsu.yungteng@gmail.com>
14938 L: linux-hwmon@vger.kernel.org
14940 F: Documentation/hwmon/pm6764tr.rst
14941 F: drivers/hwmon/pmbus/pm6764tr.c
14944 M: "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14945 L: linux-pm@vger.kernel.org
14947 W: https://01.org/pm-graph
14948 B: https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14949 T: git git://github.com/intel/pm-graph
14950 F: tools/power/pm-graph
14952 PMBUS HARDWARE MONITORING DRIVERS
14953 M: Guenter Roeck <linux@roeck-us.net>
14954 L: linux-hwmon@vger.kernel.org
14956 W: http://hwmon.wiki.kernel.org/
14957 W: http://www.roeck-us.net/linux/drivers/
14958 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14959 F: Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14960 F: Documentation/devicetree/bindings/hwmon/ltc2978.txt
14961 F: Documentation/devicetree/bindings/hwmon/max31785.txt
14962 F: Documentation/hwmon/adm1275.rst
14963 F: Documentation/hwmon/ibm-cffps.rst
14964 F: Documentation/hwmon/ir35221.rst
14965 F: Documentation/hwmon/lm25066.rst
14966 F: Documentation/hwmon/ltc2978.rst
14967 F: Documentation/hwmon/ltc3815.rst
14968 F: Documentation/hwmon/max16064.rst
14969 F: Documentation/hwmon/max20751.rst
14970 F: Documentation/hwmon/max31785.rst
14971 F: Documentation/hwmon/max34440.rst
14972 F: Documentation/hwmon/max8688.rst
14973 F: Documentation/hwmon/pmbus-core.rst
14974 F: Documentation/hwmon/pmbus.rst
14975 F: Documentation/hwmon/tps40422.rst
14976 F: Documentation/hwmon/ucd9000.rst
14977 F: Documentation/hwmon/ucd9200.rst
14978 F: Documentation/hwmon/zl6100.rst
14979 F: drivers/hwmon/pmbus/
14980 F: include/linux/pmbus.h
14982 PMC SIERRA MaxRAID DRIVER
14983 L: linux-scsi@vger.kernel.org
14985 W: http://www.pmc-sierra.com/
14986 F: drivers/scsi/pmcraid.*
14988 PMC SIERRA PM8001 DRIVER
14989 M: Jack Wang <jinpu.wang@cloud.ionos.com>
14990 L: linux-scsi@vger.kernel.org
14992 F: drivers/scsi/pm8001/
14994 PNI RM3100 IIO DRIVER
14995 M: Song Qiang <songqiang1304521@gmail.com>
14996 L: linux-iio@vger.kernel.org
14998 F: Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14999 F: drivers/iio/magnetometer/rm3100*
15002 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15003 L: linux-acpi@vger.kernel.org
15006 F: include/linux/pnp.h
15008 POSIX CLOCKS and TIMERS
15009 M: Thomas Gleixner <tglx@linutronix.de>
15010 L: linux-kernel@vger.kernel.org
15012 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15014 F: include/linux/time_namespace.h
15015 F: include/linux/timer*
15016 F: kernel/time/*timer*
15017 F: kernel/time/namespace.c
15019 POWER MANAGEMENT CORE
15020 M: "Rafael J. Wysocki" <rafael@kernel.org>
15021 L: linux-pm@vger.kernel.org
15023 B: https://bugzilla.kernel.org
15024 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15025 F: drivers/base/power/
15026 F: drivers/powercap/
15027 F: include/linux/intel_rapl.h
15028 F: include/linux/pm.h
15029 F: include/linux/pm_*
15030 F: include/linux/powercap.h
15031 F: kernel/configs/nopm.config
15033 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15034 M: Daniel Lezcano <daniel.lezcano@kernel.org>
15035 L: linux-pm@vger.kernel.org
15037 B: https://bugzilla.kernel.org
15038 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15039 F: drivers/powercap/dtpm*
15040 F: include/linux/dtpm.h
15042 POWER STATE COORDINATION INTERFACE (PSCI)
15043 M: Mark Rutland <mark.rutland@arm.com>
15044 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15045 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15047 F: drivers/firmware/psci/
15048 F: include/linux/psci.h
15049 F: include/uapi/linux/psci.h
15051 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15052 M: Sebastian Reichel <sre@kernel.org>
15053 L: linux-pm@vger.kernel.org
15055 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15056 F: Documentation/ABI/testing/sysfs-class-power
15057 F: Documentation/devicetree/bindings/power/supply/
15058 F: drivers/power/supply/
15059 F: include/linux/power/
15060 F: include/linux/power_supply.h
15062 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15063 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15064 L: linuxppc-dev@lists.ozlabs.org
15066 F: drivers/char/powernv-op-panel.c
15068 PPP OVER ATM (RFC 2364)
15069 M: Mitchell Blank Jr <mitch@sfgoth.com>
15071 F: include/uapi/linux/atmppp.h
15072 F: net/atm/pppoatm.c
15075 M: Michal Ostrowski <mostrows@earthlink.net>
15077 F: drivers/net/ppp/pppoe.c
15078 F: drivers/net/ppp/pppox.c
15081 M: James Chapman <jchapman@katalix.com>
15083 F: include/linux/if_pppol2tp.h
15084 F: include/uapi/linux/if_pppol2tp.h
15085 F: net/l2tp/l2tp_ppp.c
15087 PPP PROTOCOL DRIVERS AND COMPRESSORS
15088 M: Paul Mackerras <paulus@samba.org>
15089 L: linux-ppp@vger.kernel.org
15091 F: drivers/net/ppp/ppp_*
15094 M: Rodolfo Giometti <giometti@enneenne.com>
15095 L: linuxpps@ml.enneenne.com (subscribers-only)
15097 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
15098 F: Documentation/ABI/testing/sysfs-pps
15099 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
15100 F: Documentation/driver-api/pps.rst
15102 F: include/linux/pps*.h
15103 F: include/uapi/linux/pps.h
15106 M: Dmitry Kozlov <xeb@mail.ru>
15107 L: netdev@vger.kernel.org
15109 W: http://sourceforge.net/projects/accel-pptp
15110 F: drivers/net/ppp/pptp.c
15112 PRESSURE STALL INFORMATION (PSI)
15113 M: Johannes Weiner <hannes@cmpxchg.org>
15115 F: include/linux/psi*
15116 F: kernel/sched/psi.c
15119 M: Petr Mladek <pmladek@suse.com>
15120 M: Sergey Senozhatsky <senozhatsky@chromium.org>
15121 R: Steven Rostedt <rostedt@goodmis.org>
15122 R: John Ogness <john.ogness@linutronix.de>
15124 F: include/linux/printk.h
15128 R: Chris Down <chris@chrisdown.name>
15130 F: kernel/printk/index.c
15133 L: linux-kernel@vger.kernel.org
15134 L: linux-fsdevel@vger.kernel.org
15136 F: Documentation/filesystems/proc.rst
15138 F: include/linux/proc_fs.h
15139 F: tools/testing/selftests/proc/
15142 M: Luis Chamberlain <mcgrof@kernel.org>
15143 M: Kees Cook <keescook@chromium.org>
15144 M: Iurii Zaikin <yzaikin@google.com>
15145 L: linux-kernel@vger.kernel.org
15146 L: linux-fsdevel@vger.kernel.org
15148 F: fs/proc/proc_sysctl.c
15149 F: include/linux/sysctl.h
15150 F: kernel/sysctl-test.c
15152 F: tools/testing/selftests/sysctl/
15154 PS3 NETWORK SUPPORT
15155 M: Geoff Levand <geoff@infradead.org>
15156 L: netdev@vger.kernel.org
15157 L: linuxppc-dev@lists.ozlabs.org
15159 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
15161 PS3 PLATFORM SUPPORT
15162 M: Geoff Levand <geoff@infradead.org>
15163 L: linuxppc-dev@lists.ozlabs.org
15165 F: arch/powerpc/boot/ps3*
15166 F: arch/powerpc/include/asm/lv1call.h
15167 F: arch/powerpc/include/asm/ps3*.h
15168 F: arch/powerpc/platforms/ps3/
15171 F: drivers/rtc/rtc-ps3.c
15172 F: drivers/usb/host/*ps3.c
15173 F: sound/ppc/snd_ps3*
15176 M: Jim Paris <jim@jtan.com>
15177 M: Geoff Levand <geoff@infradead.org>
15178 L: linuxppc-dev@lists.ozlabs.org
15180 F: drivers/block/ps3vram.c
15182 PSAMPLE PACKET SAMPLING SUPPORT
15183 M: Yotam Gigi <yotam.gi@gmail.com>
15185 F: include/net/psample.h
15186 F: include/uapi/linux/psample.h
15190 M: Kees Cook <keescook@chromium.org>
15191 M: Anton Vorontsov <anton@enomsg.org>
15192 M: Colin Cross <ccross@android.com>
15193 M: Tony Luck <tony.luck@intel.com>
15195 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15196 F: Documentation/admin-guide/ramoops.rst
15197 F: Documentation/admin-guide/pstore-blk.rst
15198 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15199 F: drivers/acpi/apei/erst.c
15200 F: drivers/firmware/efi/efi-pstore.c
15202 F: include/linux/pstore*
15203 K: \b(pstore|ramoops)
15205 PTP HARDWARE CLOCK SUPPORT
15206 M: Richard Cochran <richardcochran@gmail.com>
15207 L: netdev@vger.kernel.org
15209 W: http://linuxptp.sourceforge.net/
15210 F: Documentation/ABI/testing/sysfs-ptp
15211 F: Documentation/driver-api/ptp.rst
15212 F: drivers/net/phy/dp83640*
15214 F: include/linux/ptp_cl*
15216 PTP VIRTUAL CLOCK SUPPORT
15217 M: Yangbo Lu <yangbo.lu@nxp.com>
15218 L: netdev@vger.kernel.org
15220 F: drivers/ptp/ptp_vclock.c
15221 F: net/ethtool/phc_vclocks.c
15224 M: Oleg Nesterov <oleg@redhat.com>
15226 F: arch/*/*/ptrace*.c
15227 F: arch/*/include/asm/ptrace*.h
15228 F: arch/*/ptrace*.c
15229 F: include/asm-generic/syscall.h
15230 F: include/linux/ptrace.h
15231 F: include/linux/regset.h
15232 F: include/linux/tracehook.h
15233 F: include/uapi/linux/ptrace.h
15234 F: include/uapi/linux/ptrace.h
15238 M: Hans Verkuil <hverkuil@xs4all.nl>
15239 L: linux-media@vger.kernel.org
15241 T: git git://linuxtv.org/media_tree.git
15242 F: Documentation/admin-guide/media/pulse8-cec.rst
15243 F: drivers/media/cec/usb/pulse8/
15245 PVRUSB2 VIDEO4LINUX DRIVER
15246 M: Mike Isely <isely@pobox.com>
15247 L: pvrusb2@isely.net (subscribers-only)
15248 L: linux-media@vger.kernel.org
15250 W: http://www.isely.net/pvrusb2/
15251 T: git git://linuxtv.org/media_tree.git
15252 F: Documentation/driver-api/media/drivers/pvrusb2*
15253 F: drivers/media/usb/pvrusb2/
15256 M: Hans Verkuil <hverkuil@xs4all.nl>
15257 L: linux-media@vger.kernel.org
15259 T: git git://linuxtv.org/media_tree.git
15260 F: drivers/media/usb/pwc/*
15261 F: include/trace/events/pwc.h
15264 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15265 L: linux-hwmon@vger.kernel.org
15267 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15268 F: Documentation/hwmon/pwm-fan.rst
15269 F: drivers/hwmon/pwm-fan.c
15272 M: Sean Young <sean@mess.org>
15273 L: linux-media@vger.kernel.org
15275 F: drivers/media/rc/pwm-ir-tx.c
15278 M: Thierry Reding <thierry.reding@gmail.com>
15279 R: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15280 M: Lee Jones <lee.jones@linaro.org>
15281 L: linux-pwm@vger.kernel.org
15283 Q: https://patchwork.ozlabs.org/project/linux-pwm/list/
15284 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15285 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15286 F: Documentation/devicetree/bindings/pwm/
15287 F: Documentation/driver-api/pwm.rst
15288 F: drivers/gpio/gpio-mvebu.c
15290 F: drivers/video/backlight/pwm_bl.c
15291 F: include/linux/pwm.h
15292 F: include/linux/pwm_backlight.h
15293 K: pwm_(config|apply_state|ops)
15296 M: Robert Jarzmik <robert.jarzmik@free.fr>
15297 L: linux-gpio@vger.kernel.org
15299 F: drivers/gpio/gpio-pxa.c
15305 M: Robert Jarzmik <robert.jarzmik@free.fr>
15306 L: linux-rtc@vger.kernel.org
15309 PXA2xx/PXA3xx SUPPORT
15310 M: Daniel Mack <daniel@zonque.org>
15311 M: Haojian Zhuang <haojian.zhuang@gmail.com>
15312 M: Robert Jarzmik <robert.jarzmik@free.fr>
15313 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15315 T: git git://github.com/hzhuang1/linux.git
15316 T: git git://github.com/rjarzmik/linux.git
15317 F: arch/arm/boot/dts/pxa*
15318 F: arch/arm/mach-pxa/
15319 F: drivers/dma/pxa*
15320 F: drivers/pcmcia/pxa2xx*
15321 F: drivers/pinctrl/pxa/
15322 F: drivers/spi/spi-pxa2xx*
15323 F: drivers/usb/gadget/udc/pxa2*
15324 F: include/sound/pxa2xx-lib.h
15329 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15330 L: qat-linux@intel.com
15332 F: drivers/crypto/qat/
15334 QCOM AUDIO (ASoC) DRIVERS
15335 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15336 M: Banajit Goswami <bgoswami@codeaurora.org>
15337 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15339 F: sound/soc/codecs/lpass-va-macro.c
15340 F: sound/soc/codecs/lpass-wsa-macro.*
15341 F: sound/soc/codecs/msm8916-wcd-analog.c
15342 F: sound/soc/codecs/msm8916-wcd-digital.c
15343 F: sound/soc/codecs/wcd9335.*
15344 F: sound/soc/codecs/wcd934x.c
15345 F: sound/soc/codecs/wcd-clsh-v2.*
15346 F: sound/soc/codecs/wsa881x.c
15350 M: Alex Elder <elder@kernel.org>
15351 L: netdev@vger.kernel.org
15353 F: drivers/net/ipa/
15355 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15356 M: Gabriel Somlo <somlo@cmu.edu>
15357 M: "Michael S. Tsirkin" <mst@redhat.com>
15358 L: qemu-devel@nongnu.org
15360 F: drivers/firmware/qemu_fw_cfg.c
15361 F: include/uapi/linux/qemu_fw_cfg.h
15364 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15365 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15366 L: linux-rdma@vger.kernel.org
15368 F: drivers/infiniband/hw/qib/
15370 QLOGIC QL41xxx FCOE DRIVER
15371 M: Saurav Kashyap <skashyap@marvell.com>
15372 M: Javed Hasan <jhasan@marvell.com>
15373 M: GR-QLogic-Storage-Upstream@marvell.com
15374 L: linux-scsi@vger.kernel.org
15376 F: drivers/scsi/qedf/
15378 QLOGIC QL41xxx ISCSI DRIVER
15379 M: Nilesh Javali <njavali@marvell.com>
15380 M: Manish Rangankar <mrangankar@marvell.com>
15381 M: GR-QLogic-Storage-Upstream@marvell.com
15382 L: linux-scsi@vger.kernel.org
15384 F: drivers/scsi/qedi/
15386 QLOGIC QL4xxx ETHERNET DRIVER
15387 M: Ariel Elior <aelior@marvell.com>
15388 M: GR-everest-linux-l2@marvell.com
15389 L: netdev@vger.kernel.org
15391 F: drivers/net/ethernet/qlogic/qed/
15392 F: drivers/net/ethernet/qlogic/qede/
15393 F: include/linux/qed/
15395 QLOGIC QL4xxx RDMA DRIVER
15396 M: Michal Kalderon <mkalderon@marvell.com>
15397 M: Ariel Elior <aelior@marvell.com>
15398 L: linux-rdma@vger.kernel.org
15400 F: drivers/infiniband/hw/qedr/
15401 F: include/uapi/rdma/qedr-abi.h
15403 QLOGIC QLA1280 SCSI DRIVER
15404 M: Michael Reed <mdr@sgi.com>
15405 L: linux-scsi@vger.kernel.org
15407 F: drivers/scsi/qla1280.[ch]
15409 QLOGIC QLA2XXX FC-SCSI DRIVER
15410 M: Nilesh Javali <njavali@marvell.com>
15411 M: GR-QLogic-Storage-Upstream@marvell.com
15412 L: linux-scsi@vger.kernel.org
15414 F: drivers/scsi/qla2xxx/
15416 QLOGIC QLA3XXX NETWORK DRIVER
15417 M: GR-Linux-NIC-Dev@marvell.com
15418 L: netdev@vger.kernel.org
15420 F: drivers/net/ethernet/qlogic/qla3xxx.*
15422 QLOGIC QLA4XXX iSCSI DRIVER
15423 M: Nilesh Javali <njavali@marvell.com>
15424 M: Manish Rangankar <mrangankar@marvell.com>
15425 M: GR-QLogic-Storage-Upstream@marvell.com
15426 L: linux-scsi@vger.kernel.org
15428 F: drivers/scsi/qla4xxx/
15430 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15431 M: Shahed Shaikh <shshaikh@marvell.com>
15432 M: Manish Chopra <manishc@marvell.com>
15433 M: GR-Linux-NIC-Dev@marvell.com
15434 L: netdev@vger.kernel.org
15436 F: drivers/net/ethernet/qlogic/qlcnic/
15438 QLOGIC QLGE 10Gb ETHERNET DRIVER
15439 M: Manish Chopra <manishc@marvell.com>
15440 M: GR-Linux-NIC-Dev@marvell.com
15441 M: Coiby Xu <coiby.xu@gmail.com>
15442 L: netdev@vger.kernel.org
15444 F: Documentation/networking/device_drivers/qlogic/qlge.rst
15445 F: drivers/staging/qlge/
15447 QM1D1B0004 MEDIA DRIVER
15448 M: Akihiro Tsukada <tskd08@gmail.com>
15449 L: linux-media@vger.kernel.org
15451 F: drivers/media/tuners/qm1d1b0004*
15453 QM1D1C0042 MEDIA DRIVER
15454 M: Akihiro Tsukada <tskd08@gmail.com>
15455 L: linux-media@vger.kernel.org
15457 F: drivers/media/tuners/qm1d1c0042*
15460 M: Anders Larsen <al@alarsen.net>
15462 W: http://www.alarsen.net/linux/qnx4fs/
15464 F: include/uapi/linux/qnx4_fs.h
15465 F: include/uapi/linux/qnxtypes.h
15467 QORIQ DPAA2 FSL-MC BUS DRIVER
15468 M: Stuart Yoder <stuyoder@gmail.com>
15469 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
15470 L: linux-kernel@vger.kernel.org
15472 F: Documentation/ABI/stable/sysfs-bus-fsl-mc
15473 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15474 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15475 F: drivers/bus/fsl-mc/
15476 F: include/uapi/linux/fsl_mc.h
15478 QT1010 MEDIA DRIVER
15479 M: Antti Palosaari <crope@iki.fi>
15480 L: linux-media@vger.kernel.org
15482 W: https://linuxtv.org
15483 W: http://palosaari.fi/linux/
15484 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15485 T: git git://linuxtv.org/anttip/media_tree.git
15486 F: drivers/media/tuners/qt1010*
15488 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15489 M: Kalle Valo <kvalo@codeaurora.org>
15490 L: ath10k@lists.infradead.org
15492 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15493 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15494 F: drivers/net/wireless/ath/ath10k/
15496 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15497 M: Kalle Valo <kvalo@codeaurora.org>
15498 L: ath11k@lists.infradead.org
15500 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15501 F: drivers/net/wireless/ath/ath11k/
15503 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15504 M: ath9k-devel@qca.qualcomm.com
15505 L: linux-wireless@vger.kernel.org
15507 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15508 F: drivers/net/wireless/ath/ath9k/
15510 QUALCOMM CAMERA SUBSYSTEM DRIVER
15511 M: Robert Foss <robert.foss@linaro.org>
15512 M: Todor Tomov <todor.too@gmail.com>
15513 L: linux-media@vger.kernel.org
15515 F: Documentation/admin-guide/media/qcom_camss.rst
15516 F: Documentation/devicetree/bindings/media/*camss*
15517 F: drivers/media/platform/qcom/camss/
15519 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15520 M: Niklas Cassel <nks@flawful.org>
15521 L: linux-pm@vger.kernel.org
15522 L: linux-arm-msm@vger.kernel.org
15524 F: Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15525 F: drivers/soc/qcom/cpr.c
15527 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15528 M: Ilia Lin <ilia.lin@kernel.org>
15529 L: linux-pm@vger.kernel.org
15531 F: Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15532 F: drivers/cpufreq/qcom-cpufreq-nvmem.c
15534 QUALCOMM CRYPTO DRIVERS
15535 M: Thara Gopinath <thara.gopinath@linaro.org>
15536 L: linux-crypto@vger.kernel.org
15537 L: linux-arm-msm@vger.kernel.org
15539 F: drivers/crypto/qce/
15541 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15542 M: Timur Tabi <timur@kernel.org>
15543 L: netdev@vger.kernel.org
15545 F: drivers/net/ethernet/qualcomm/emac/
15547 QUALCOMM ETHQOS ETHERNET DRIVER
15548 M: Vinod Koul <vkoul@kernel.org>
15549 L: netdev@vger.kernel.org
15551 F: Documentation/devicetree/bindings/net/qcom,ethqos.txt
15552 F: drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15554 QUALCOMM GENERIC INTERFACE I2C DRIVER
15555 M: Akash Asthana <akashast@codeaurora.org>
15556 M: Mukesh Savaliya <msavaliy@codeaurora.org>
15557 L: linux-i2c@vger.kernel.org
15558 L: linux-arm-msm@vger.kernel.org
15560 F: drivers/i2c/busses/i2c-qcom-geni.c
15562 QUALCOMM HEXAGON ARCHITECTURE
15563 M: Brian Cain <bcain@codeaurora.org>
15564 L: linux-hexagon@vger.kernel.org
15568 QUALCOMM HIDMA DRIVER
15569 M: Sinan Kaya <okaya@kernel.org>
15570 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15571 L: linux-arm-msm@vger.kernel.org
15572 L: dmaengine@vger.kernel.org
15574 F: drivers/dma/qcom/hidma*
15576 QUALCOMM I2C CCI DRIVER
15577 M: Loic Poulain <loic.poulain@linaro.org>
15578 M: Robert Foss <robert.foss@linaro.org>
15579 L: linux-i2c@vger.kernel.org
15580 L: linux-arm-msm@vger.kernel.org
15582 F: Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15583 F: drivers/i2c/busses/i2c-qcom-cci.c
15586 M: Rob Clark <robdclark@gmail.com>
15587 L: iommu@lists.linux-foundation.org
15588 L: linux-arm-msm@vger.kernel.org
15590 F: drivers/iommu/arm/arm-smmu/qcom_iommu.c
15592 QUALCOMM IPC ROUTER (QRTR) DRIVER
15593 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15594 L: linux-arm-msm@vger.kernel.org
15596 F: include/trace/events/qrtr.h
15597 F: include/uapi/linux/qrtr.h
15600 QUALCOMM IPCC MAILBOX DRIVER
15601 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15602 L: linux-arm-msm@vger.kernel.org
15604 F: Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15605 F: drivers/mailbox/qcom-ipcc.c
15606 F: include/dt-bindings/mailbox/qcom-ipcc.h
15608 QUALCOMM IPQ4019 USB PHY DRIVER
15609 M: Robert Marko <robert.marko@sartura.hr>
15610 M: Luka Perkov <luka.perkov@sartura.hr>
15611 L: linux-arm-msm@vger.kernel.org
15613 F: Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15614 F: drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15616 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15617 M: Robert Marko <robert.marko@sartura.hr>
15618 M: Luka Perkov <luka.perkov@sartura.hr>
15619 L: linux-arm-msm@vger.kernel.org
15621 F: Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15622 F: drivers/regulator/vqmmc-ipq4019-regulator.c
15624 QUALCOMM RMNET DRIVER
15625 M: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15626 M: Sean Tranchetti <stranche@codeaurora.org>
15627 L: netdev@vger.kernel.org
15629 F: Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15630 F: drivers/net/ethernet/qualcomm/rmnet/
15631 F: include/linux/if_rmnet.h
15633 QUALCOMM TSENS THERMAL DRIVER
15634 M: Amit Kucheria <amitk@kernel.org>
15635 M: Thara Gopinath <thara.gopinath@linaro.org>
15636 L: linux-pm@vger.kernel.org
15637 L: linux-arm-msm@vger.kernel.org
15639 F: Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15640 F: drivers/thermal/qcom/
15642 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15643 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
15644 L: linux-media@vger.kernel.org
15645 L: linux-arm-msm@vger.kernel.org
15647 T: git git://linuxtv.org/media_tree.git
15648 F: Documentation/devicetree/bindings/media/*venus*
15649 F: drivers/media/platform/qcom/venus/
15651 QUALCOMM WCN36XX WIRELESS DRIVER
15652 M: Kalle Valo <kvalo@codeaurora.org>
15653 L: wcn36xx@lists.infradead.org
15655 W: https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15656 T: git git://github.com/KrasnikovEugene/wcn36xx.git
15657 F: drivers/net/wireless/ath/wcn36xx/
15659 QUANTENNA QTNFMAC WIRELESS DRIVER
15660 M: Igor Mitsyanko <imitsyanko@quantenna.com>
15661 R: Sergey Matyukevich <geomatsi@gmail.com>
15662 L: linux-wireless@vger.kernel.org
15664 F: drivers/net/wireless/quantenna
15666 RADEON and AMDGPU DRM DRIVERS
15667 M: Alex Deucher <alexander.deucher@amd.com>
15668 M: Christian König <christian.koenig@amd.com>
15669 M: Pan, Xinhui <Xinhui.Pan@amd.com>
15670 L: amd-gfx@lists.freedesktop.org
15672 T: git https://gitlab.freedesktop.org/agd5f/linux.git
15673 B: https://gitlab.freedesktop.org/drm/amd/-/issues
15674 C: irc://irc.oftc.net/radeon
15675 F: drivers/gpu/drm/amd/
15676 F: drivers/gpu/drm/radeon/
15677 F: include/uapi/drm/amdgpu_drm.h
15678 F: include/uapi/drm/radeon_drm.h
15680 RADEON FRAMEBUFFER DISPLAY DRIVER
15681 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
15682 L: linux-fbdev@vger.kernel.org
15684 F: drivers/video/fbdev/aty/radeon*
15685 F: include/uapi/linux/radeonfb.h
15687 RADIOSHARK RADIO DRIVER
15688 M: Hans Verkuil <hverkuil@xs4all.nl>
15689 L: linux-media@vger.kernel.org
15691 T: git git://linuxtv.org/media_tree.git
15692 F: drivers/media/radio/radio-shark.c
15694 RADIOSHARK2 RADIO DRIVER
15695 M: Hans Verkuil <hverkuil@xs4all.nl>
15696 L: linux-media@vger.kernel.org
15698 T: git git://linuxtv.org/media_tree.git
15699 F: drivers/media/radio/radio-shark2.c
15700 F: drivers/media/radio/radio-tea5777.c
15702 RADOS BLOCK DEVICE (RBD)
15703 M: Ilya Dryomov <idryomov@gmail.com>
15704 R: Dongsheng Yang <dongsheng.yang@easystack.cn>
15705 L: ceph-devel@vger.kernel.org
15707 W: http://ceph.com/
15708 T: git git://github.com/ceph/ceph-client.git
15709 F: Documentation/ABI/testing/sysfs-bus-rbd
15710 F: drivers/block/rbd.c
15711 F: drivers/block/rbd_types.h
15713 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15714 M: Paul Mackerras <paulus@samba.org>
15715 L: linux-fbdev@vger.kernel.org
15717 F: drivers/video/fbdev/aty/aty128fb.c
15719 RAINSHADOW-CEC DRIVER
15720 M: Hans Verkuil <hverkuil@xs4all.nl>
15721 L: linux-media@vger.kernel.org
15723 T: git git://linuxtv.org/media_tree.git
15724 F: drivers/media/cec/usb/rainshadow/
15726 RALINK MIPS ARCHITECTURE
15727 M: John Crispin <john@phrozen.org>
15728 L: linux-mips@vger.kernel.org
15730 F: arch/mips/ralink
15732 RALINK RT2X00 WIRELESS LAN DRIVER
15733 M: Stanislaw Gruszka <stf_xl@wp.pl>
15734 M: Helmut Schaa <helmut.schaa@googlemail.com>
15735 L: linux-wireless@vger.kernel.org
15737 F: drivers/net/wireless/ralink/rt2x00/
15739 RAMDISK RAM BLOCK DEVICE DRIVER
15740 M: Jens Axboe <axboe@kernel.dk>
15742 F: Documentation/admin-guide/blockdev/ramdisk.rst
15743 F: drivers/block/brd.c
15745 RANCHU VIRTUAL BOARD FOR MIPS
15746 M: Miodrag Dinic <miodrag.dinic@mips.com>
15747 L: linux-mips@vger.kernel.org
15749 F: arch/mips/configs/generic/board-ranchu.config
15750 F: arch/mips/generic/board-ranchu.c
15752 RANDOM NUMBER DRIVER
15753 M: "Theodore Ts'o" <tytso@mit.edu>
15755 F: drivers/char/random.c
15758 M: Matt Porter <mporter@kernel.crashing.org>
15759 M: Alexandre Bounine <alex.bou9@gmail.com>
15761 F: drivers/rapidio/
15764 M: Tony Luck <tony.luck@intel.com>
15765 M: Borislav Petkov <bp@alien8.de>
15766 L: linux-edac@vger.kernel.org
15768 F: Documentation/admin-guide/ras.rst
15770 F: include/linux/ras.h
15771 F: include/ras/ras_event.h
15773 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15774 L: linux-wireless@vger.kernel.org
15776 F: drivers/net/wireless/ray*
15778 RC-CORE / LIRC FRAMEWORK
15779 M: Sean Young <sean@mess.org>
15780 L: linux-media@vger.kernel.org
15782 W: http://linuxtv.org
15783 T: git git://linuxtv.org/media_tree.git
15784 F: Documentation/driver-api/media/rc-core.rst
15785 F: Documentation/userspace-api/media/rc/
15786 F: drivers/media/rc/
15787 F: include/media/rc-map.h
15788 F: include/media/rc-core.h
15789 F: include/uapi/linux/lirc.h
15791 RCMM REMOTE CONTROLS DECODER
15792 M: Patrick Lerda <patrick9876@free.fr>
15794 F: drivers/media/rc/ir-rcmm-decoder.c
15796 RCUTORTURE TEST FRAMEWORK
15797 M: "Paul E. McKenney" <paulmck@kernel.org>
15798 M: Josh Triplett <josh@joshtriplett.org>
15799 R: Steven Rostedt <rostedt@goodmis.org>
15800 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15801 R: Lai Jiangshan <jiangshanlai@gmail.com>
15802 L: rcu@vger.kernel.org
15804 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15805 F: tools/testing/selftests/rcutorture
15807 RDACM20 Camera Sensor
15808 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15809 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15810 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15811 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15812 L: linux-media@vger.kernel.org
15814 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15815 F: drivers/media/i2c/max9271.c
15816 F: drivers/media/i2c/max9271.h
15817 F: drivers/media/i2c/rdacm20.c
15819 RDACM21 Camera Sensor
15820 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15821 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15822 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15823 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15824 L: linux-media@vger.kernel.org
15826 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15827 F: drivers/media/i2c/max9271.c
15828 F: drivers/media/i2c/max9271.h
15829 F: drivers/media/i2c/rdacm21.c
15832 M: Florian Fainelli <florian@openwrt.org>
15835 RDC R6040 FAST ETHERNET DRIVER
15836 M: Florian Fainelli <f.fainelli@gmail.com>
15837 L: netdev@vger.kernel.org
15839 F: drivers/net/ethernet/rdc/r6040.c
15841 RDMAVT - RDMA verbs software
15842 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15843 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15844 L: linux-rdma@vger.kernel.org
15846 F: drivers/infiniband/sw/rdmavt
15848 RDS - RELIABLE DATAGRAM SOCKETS
15849 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
15850 L: netdev@vger.kernel.org
15851 L: linux-rdma@vger.kernel.org
15852 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
15854 W: https://oss.oracle.com/projects/rds/
15855 F: Documentation/networking/rds.rst
15858 RDT - RESOURCE ALLOCATION
15859 M: Fenghua Yu <fenghua.yu@intel.com>
15860 M: Reinette Chatre <reinette.chatre@intel.com>
15861 L: linux-kernel@vger.kernel.org
15863 F: Documentation/x86/resctrl*
15864 F: arch/x86/include/asm/resctrl.h
15865 F: arch/x86/kernel/cpu/resctrl/
15866 F: tools/testing/selftests/resctrl/
15868 READ-COPY UPDATE (RCU)
15869 M: "Paul E. McKenney" <paulmck@kernel.org>
15870 M: Josh Triplett <josh@joshtriplett.org>
15871 R: Steven Rostedt <rostedt@goodmis.org>
15872 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15873 R: Lai Jiangshan <jiangshanlai@gmail.com>
15874 R: Joel Fernandes <joel@joelfernandes.org>
15875 L: rcu@vger.kernel.org
15877 W: http://www.rdrop.com/users/paulmck/RCU/
15878 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15879 F: Documentation/RCU/
15880 F: include/linux/rcu*
15882 X: Documentation/RCU/torture.rst
15883 X: include/linux/srcu*.h
15884 X: kernel/rcu/srcu*.c
15886 REAL TIME CLOCK (RTC) SUBSYSTEM
15887 M: Alessandro Zummo <a.zummo@towertech.it>
15888 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
15889 L: linux-rtc@vger.kernel.org
15891 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
15892 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15893 F: Documentation/admin-guide/rtc.rst
15894 F: Documentation/devicetree/bindings/rtc/
15896 F: include/linux/platform_data/rtc-*
15897 F: include/linux/rtc.h
15898 F: include/linux/rtc/
15899 F: include/uapi/linux/rtc.h
15900 F: tools/testing/selftests/rtc/
15902 REALTEK AUDIO CODECS
15903 M: Oder Chiou <oder_chiou@realtek.com>
15905 F: include/sound/rt*.h
15906 F: sound/soc/codecs/rt*
15908 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15909 M: Linus Walleij <linus.walleij@linaro.org>
15911 F: Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15912 F: drivers/net/dsa/realtek-smi*
15913 F: drivers/net/dsa/rtl83*
15915 REALTEK WIRELESS DRIVER (rtlwifi family)
15916 M: Ping-Ke Shih <pkshih@realtek.com>
15917 L: linux-wireless@vger.kernel.org
15919 W: https://wireless.wiki.kernel.org/
15920 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15921 F: drivers/net/wireless/realtek/rtlwifi/
15923 REALTEK WIRELESS DRIVER (rtw88)
15924 M: Yan-Hsuan Chuang <tony0620emma@gmail.com>
15925 L: linux-wireless@vger.kernel.org
15927 F: drivers/net/wireless/realtek/rtw88/
15929 REDPINE WIRELESS DRIVER
15930 M: Amitkumar Karwar <amitkarwar@gmail.com>
15931 M: Siva Rebbagondla <siva8118@gmail.com>
15932 L: linux-wireless@vger.kernel.org
15934 F: drivers/net/wireless/rsi/
15936 REGISTER MAP ABSTRACTION
15937 M: Mark Brown <broonie@kernel.org>
15938 L: linux-kernel@vger.kernel.org
15940 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15941 F: Documentation/devicetree/bindings/regmap/
15942 F: drivers/base/regmap/
15943 F: include/linux/regmap.h
15945 REISERFS FILE SYSTEM
15946 L: reiserfs-devel@vger.kernel.org
15950 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15951 M: Ohad Ben-Cohen <ohad@wizery.com>
15952 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15953 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15954 L: linux-remoteproc@vger.kernel.org
15956 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15957 F: Documentation/ABI/testing/sysfs-class-remoteproc
15958 F: Documentation/devicetree/bindings/remoteproc/
15959 F: Documentation/staging/remoteproc.rst
15960 F: drivers/remoteproc/
15961 F: include/linux/remoteproc.h
15962 F: include/linux/remoteproc/
15964 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15965 M: Ohad Ben-Cohen <ohad@wizery.com>
15966 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15967 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15968 L: linux-remoteproc@vger.kernel.org
15970 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15971 F: Documentation/ABI/testing/sysfs-bus-rpmsg
15972 F: Documentation/staging/rpmsg.rst
15974 F: include/linux/rpmsg.h
15975 F: include/linux/rpmsg/
15976 F: include/uapi/linux/rpmsg.h
15979 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15980 M: Stephan Gerhold <stephan@gerhold.net>
15981 L: netdev@vger.kernel.org
15982 L: linux-remoteproc@vger.kernel.org
15984 F: drivers/net/wwan/rpmsg_wwan_ctrl.c
15986 RENESAS CLOCK DRIVERS
15987 M: Geert Uytterhoeven <geert+renesas@glider.be>
15988 L: linux-renesas-soc@vger.kernel.org
15990 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15991 F: Documentation/devicetree/bindings/clock/renesas,*
15992 F: drivers/clk/renesas/
15994 RENESAS EMEV2 I2C DRIVER
15995 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
15996 L: linux-renesas-soc@vger.kernel.org
15998 F: Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
15999 F: drivers/i2c/busses/i2c-emev2.c
16001 RENESAS ETHERNET DRIVERS
16002 R: Sergey Shtylyov <s.shtylyov@omp.ru>
16003 L: netdev@vger.kernel.org
16004 L: linux-renesas-soc@vger.kernel.org
16005 F: Documentation/devicetree/bindings/net/renesas,*.yaml
16006 F: drivers/net/ethernet/renesas/
16007 F: include/linux/sh_eth.h
16009 RENESAS R-CAR GYROADC DRIVER
16010 M: Marek Vasut <marek.vasut@gmail.com>
16011 L: linux-iio@vger.kernel.org
16013 F: Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16014 F: drivers/iio/adc/rcar-gyroadc.c
16016 RENESAS R-CAR I2C DRIVERS
16017 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
16018 L: linux-renesas-soc@vger.kernel.org
16020 F: Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16021 F: Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16022 F: drivers/i2c/busses/i2c-rcar.c
16023 F: drivers/i2c/busses/i2c-sh_mobile.c
16025 RENESAS R-CAR THERMAL DRIVERS
16026 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
16027 L: linux-renesas-soc@vger.kernel.org
16029 F: Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16030 F: Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16031 F: drivers/thermal/rcar_gen3_thermal.c
16032 F: drivers/thermal/rcar_thermal.c
16034 RENESAS RIIC DRIVER
16035 M: Chris Brandt <chris.brandt@renesas.com>
16036 L: linux-renesas-soc@vger.kernel.org
16038 F: Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16039 F: drivers/i2c/busses/i2c-riic.c
16041 RENESAS USB PHY DRIVER
16042 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16043 L: linux-renesas-soc@vger.kernel.org
16045 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
16047 RENESAS RZ/G2L A/D DRIVER
16048 M: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16049 L: linux-iio@vger.kernel.org
16050 L: linux-renesas-soc@vger.kernel.org
16052 F: Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16053 F: drivers/iio/adc/rzg2l_adc.c
16055 RESET CONTROLLER FRAMEWORK
16056 M: Philipp Zabel <p.zabel@pengutronix.de>
16058 T: git git://git.pengutronix.de/git/pza/linux
16059 F: Documentation/devicetree/bindings/reset/
16060 F: Documentation/driver-api/reset.rst
16062 F: include/dt-bindings/reset/
16063 F: include/linux/reset-controller.h
16064 F: include/linux/reset.h
16065 F: include/linux/reset/
16066 K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16068 RESTARTABLE SEQUENCES SUPPORT
16069 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16070 M: Peter Zijlstra <peterz@infradead.org>
16071 M: "Paul E. McKenney" <paulmck@kernel.org>
16072 M: Boqun Feng <boqun.feng@gmail.com>
16073 L: linux-kernel@vger.kernel.org
16075 F: include/trace/events/rseq.h
16076 F: include/uapi/linux/rseq.h
16078 F: tools/testing/selftests/rseq/
16081 M: Johannes Berg <johannes@sipsolutions.net>
16082 L: linux-wireless@vger.kernel.org
16084 W: https://wireless.wiki.kernel.org/
16085 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16086 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16087 F: Documentation/ABI/stable/sysfs-class-rfkill
16088 F: Documentation/driver-api/rfkill.rst
16089 F: include/linux/rfkill.h
16090 F: include/uapi/linux/rfkill.h
16094 M: Thomas Graf <tgraf@suug.ch>
16095 M: Herbert Xu <herbert@gondor.apana.org.au>
16096 L: netdev@vger.kernel.org
16098 F: include/linux/rhashtable-types.h
16099 F: include/linux/rhashtable.h
16100 F: lib/rhashtable.c
16101 F: lib/test_rhashtable.c
16103 RICOH R5C592 MEMORYSTICK DRIVER
16104 M: Maxim Levitsky <maximlevitsky@gmail.com>
16106 F: drivers/memstick/host/r592.*
16108 RICOH SMARTMEDIA/XD DRIVER
16109 M: Maxim Levitsky <maximlevitsky@gmail.com>
16111 F: drivers/mtd/nand/raw/r852.c
16112 F: drivers/mtd/nand/raw/r852.h
16114 RISC-V ARCHITECTURE
16115 M: Paul Walmsley <paul.walmsley@sifive.com>
16116 M: Palmer Dabbelt <palmer@dabbelt.com>
16117 M: Albert Ou <aou@eecs.berkeley.edu>
16118 L: linux-riscv@lists.infradead.org
16120 P: Documentation/riscv/patch-acceptance.rst
16121 T: git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16126 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16127 M: Lewis Hanly <lewis.hanly@microchip.com>
16128 L: linux-riscv@lists.infradead.org
16130 F: drivers/mailbox/mailbox-mpfs.c
16131 F: drivers/soc/microchip/
16132 F: include/soc/microchip/mpfs.h
16135 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16136 M: Jack Wang <jinpu.wang@ionos.com>
16137 L: linux-block@vger.kernel.org
16139 F: drivers/block/rnbd/
16142 M: Stefan Achatz <erazor_de@users.sourceforge.net>
16144 W: http://sourceforge.net/projects/roccat/
16145 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
16146 F: drivers/hid/hid-roccat*
16147 F: include/linux/hid-roccat*
16149 ROCKCHIP ISP V1 DRIVER
16150 M: Helen Koike <helen.koike@collabora.com>
16151 M: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16152 L: linux-media@vger.kernel.org
16153 L: linux-rockchip@lists.infradead.org
16155 F: Documentation/admin-guide/media/rkisp1.rst
16156 F: Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16157 F: Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16158 F: drivers/media/platform/rockchip/rkisp1
16159 F: include/uapi/linux/rkisp1-config.h
16161 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16162 M: Jacob Chen <jacob-chen@iotwrt.com>
16163 M: Ezequiel Garcia <ezequiel@collabora.com>
16164 L: linux-media@vger.kernel.org
16165 L: linux-rockchip@lists.infradead.org
16167 F: Documentation/devicetree/bindings/media/rockchip-rga.yaml
16168 F: drivers/media/platform/rockchip/rga/
16170 ROCKCHIP VIDEO DECODER DRIVER
16171 M: Ezequiel Garcia <ezequiel@collabora.com>
16172 L: linux-media@vger.kernel.org
16173 L: linux-rockchip@lists.infradead.org
16175 F: Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16176 F: drivers/staging/media/rkvdec/
16179 M: Jiri Pirko <jiri@resnulli.us>
16180 L: netdev@vger.kernel.org
16182 F: drivers/net/ethernet/rocker/
16184 ROCKETPORT EXPRESS/INFINITY DRIVER
16185 M: Kevin Cernekee <cernekee@gmail.com>
16186 L: linux-serial@vger.kernel.org
16188 F: drivers/tty/serial/rp2.*
16190 ROHM BD99954 CHARGER IC
16191 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16192 L: linux-power@fi.rohmeurope.com
16194 F: drivers/power/supply/bd99954-charger.c
16195 F: drivers/power/supply/bd99954-charger.h
16197 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16198 M: Tomasz Duszynski <tduszyns@gmail.com>
16200 F: Documentation/devicetree/bindings/iio/light/bh1750.yaml
16201 F: drivers/iio/light/bh1750.c
16203 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16204 M: Marek Vasut <marek.vasut+renesas@gmail.com>
16205 L: linux-kernel@vger.kernel.org
16206 L: linux-renesas-soc@vger.kernel.org
16208 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16209 F: drivers/gpio/gpio-bd9571mwv.c
16210 F: drivers/mfd/bd9571mwv.c
16211 F: drivers/regulator/bd9571mwv-regulator.c
16212 F: include/linux/mfd/bd9571mwv.h
16214 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16215 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16216 L: linux-power@fi.rohmeurope.com
16218 F: Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16219 F: Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16220 F: drivers/clk/clk-bd718x7.c
16221 F: drivers/gpio/gpio-bd70528.c
16222 F: drivers/gpio/gpio-bd71815.c
16223 F: drivers/gpio/gpio-bd71828.c
16224 F: drivers/mfd/rohm-bd70528.c
16225 F: drivers/mfd/rohm-bd71828.c
16226 F: drivers/mfd/rohm-bd718x7.c
16227 F: drivers/mfd/rohm-bd9576.c
16228 F: drivers/power/supply/bd70528-charger.c
16229 F: drivers/regulator/bd70528-regulator.c
16230 F: drivers/regulator/bd71815-regulator.c
16231 F: drivers/regulator/bd71828-regulator.c
16232 F: drivers/regulator/bd718x7-regulator.c
16233 F: drivers/regulator/bd9576-regulator.c
16234 F: drivers/regulator/rohm-regulator.c
16235 F: drivers/rtc/rtc-bd70528.c
16236 F: drivers/watchdog/bd70528_wdt.c
16237 F: drivers/watchdog/bd9576_wdt.c
16238 F: include/linux/mfd/rohm-bd70528.h
16239 F: include/linux/mfd/rohm-bd71815.h
16240 F: include/linux/mfd/rohm-bd71828.h
16241 F: include/linux/mfd/rohm-bd718x7.h
16242 F: include/linux/mfd/rohm-bd957x.h
16243 F: include/linux/mfd/rohm-generic.h
16244 F: include/linux/mfd/rohm-shared.h
16247 M: Ralf Baechle <ralf@linux-mips.org>
16248 L: linux-hams@vger.kernel.org
16250 W: http://www.linux-ax25.org/
16251 F: include/net/rose.h
16252 F: include/uapi/linux/rose.h
16255 ROTATION DRIVER FOR ALLWINNER A83T
16256 M: Jernej Skrabec <jernej.skrabec@gmail.com>
16257 L: linux-media@vger.kernel.org
16259 T: git git://linuxtv.org/media_tree.git
16260 F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16261 F: drivers/media/platform/sunxi/sun8i-rotate/
16263 RTL2830 MEDIA DRIVER
16264 M: Antti Palosaari <crope@iki.fi>
16265 L: linux-media@vger.kernel.org
16267 W: https://linuxtv.org
16268 W: http://palosaari.fi/linux/
16269 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16270 T: git git://linuxtv.org/anttip/media_tree.git
16271 F: drivers/media/dvb-frontends/rtl2830*
16273 RTL2832 MEDIA DRIVER
16274 M: Antti Palosaari <crope@iki.fi>
16275 L: linux-media@vger.kernel.org
16277 W: https://linuxtv.org
16278 W: http://palosaari.fi/linux/
16279 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16280 T: git git://linuxtv.org/anttip/media_tree.git
16281 F: drivers/media/dvb-frontends/rtl2832*
16283 RTL2832_SDR MEDIA DRIVER
16284 M: Antti Palosaari <crope@iki.fi>
16285 L: linux-media@vger.kernel.org
16287 W: https://linuxtv.org
16288 W: http://palosaari.fi/linux/
16289 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16290 T: git git://linuxtv.org/anttip/media_tree.git
16291 F: drivers/media/dvb-frontends/rtl2832_sdr*
16293 RTL8180 WIRELESS DRIVER
16294 L: linux-wireless@vger.kernel.org
16296 W: https://wireless.wiki.kernel.org/
16297 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16298 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
16300 RTL8187 WIRELESS DRIVER
16301 M: Herton Ronaldo Krzesinski <herton@canonical.com>
16302 M: Hin-Tak Leung <htl10@users.sourceforge.net>
16303 M: Larry Finger <Larry.Finger@lwfinger.net>
16304 L: linux-wireless@vger.kernel.org
16306 W: https://wireless.wiki.kernel.org/
16307 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16308 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
16310 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16311 M: Jes Sorensen <Jes.Sorensen@gmail.com>
16312 L: linux-wireless@vger.kernel.org
16314 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16315 F: drivers/net/wireless/realtek/rtl8xxxu/
16317 RTRS TRANSPORT DRIVERS
16318 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16319 M: Jack Wang <jinpu.wang@ionos.com>
16320 L: linux-rdma@vger.kernel.org
16322 F: drivers/infiniband/ulp/rtrs/
16324 RXRPC SOCKETS (AF_RXRPC)
16325 M: David Howells <dhowells@redhat.com>
16326 M: Marc Dionne <marc.dionne@auristor.com>
16327 L: linux-afs@lists.infradead.org
16329 W: https://www.infradead.org/~dhowells/kafs/
16330 F: Documentation/networking/rxrpc.rst
16331 F: include/keys/rxrpc-type.h
16332 F: include/net/af_rxrpc.h
16333 F: include/trace/events/rxrpc.h
16334 F: include/uapi/linux/rxrpc.h
16337 S3 SAVAGE FRAMEBUFFER DRIVER
16338 M: Antonino Daplas <adaplas@gmail.com>
16339 L: linux-fbdev@vger.kernel.org
16341 F: drivers/video/fbdev/savage/
16344 M: Heiko Carstens <hca@linux.ibm.com>
16345 M: Vasily Gorbik <gor@linux.ibm.com>
16346 M: Christian Borntraeger <borntraeger@de.ibm.com>
16347 R: Alexander Gordeev <agordeev@linux.ibm.com>
16348 L: linux-s390@vger.kernel.org
16350 W: http://www.ibm.com/developerworks/linux/linux390/
16351 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16352 F: Documentation/driver-api/s390-drivers.rst
16353 F: Documentation/s390/
16357 S390 COMMON I/O LAYER
16358 M: Vineeth Vijayan <vneethv@linux.ibm.com>
16359 M: Peter Oberparleiter <oberpar@linux.ibm.com>
16360 L: linux-s390@vger.kernel.org
16362 W: http://www.ibm.com/developerworks/linux/linux390/
16363 F: drivers/s390/cio/
16366 M: Stefan Haberland <sth@linux.ibm.com>
16367 M: Jan Hoeppner <hoeppner@linux.ibm.com>
16368 L: linux-s390@vger.kernel.org
16370 W: http://www.ibm.com/developerworks/linux/linux390/
16371 F: block/partitions/ibm.c
16372 F: drivers/s390/block/dasd*
16373 F: include/linux/dasd_mod.h
16376 M: Matthew Rosato <mjrosato@linux.ibm.com>
16377 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16378 L: linux-s390@vger.kernel.org
16380 W: http://www.ibm.com/developerworks/linux/linux390/
16381 F: drivers/iommu/s390-iommu.c
16383 S390 IUCV NETWORK LAYER
16384 M: Julian Wiedmann <jwi@linux.ibm.com>
16385 M: Karsten Graul <kgraul@linux.ibm.com>
16386 L: linux-s390@vger.kernel.org
16387 L: netdev@vger.kernel.org
16389 W: http://www.ibm.com/developerworks/linux/linux390/
16390 F: drivers/s390/net/*iucv*
16391 F: include/net/iucv/
16394 S390 NETWORK DRIVERS
16395 M: Julian Wiedmann <jwi@linux.ibm.com>
16396 M: Karsten Graul <kgraul@linux.ibm.com>
16397 L: linux-s390@vger.kernel.org
16398 L: netdev@vger.kernel.org
16400 W: http://www.ibm.com/developerworks/linux/linux390/
16401 F: drivers/s390/net/
16404 M: Niklas Schnelle <schnelle@linux.ibm.com>
16405 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16406 L: linux-s390@vger.kernel.org
16408 W: http://www.ibm.com/developerworks/linux/linux390/
16410 F: drivers/pci/hotplug/s390_pci_hpc.c
16411 F: Documentation/s390/pci.rst
16413 S390 VFIO AP DRIVER
16414 M: Tony Krowiak <akrowiak@linux.ibm.com>
16415 M: Halil Pasic <pasic@linux.ibm.com>
16416 M: Jason Herne <jjherne@linux.ibm.com>
16417 L: linux-s390@vger.kernel.org
16419 W: http://www.ibm.com/developerworks/linux/linux390/
16420 F: Documentation/s390/vfio-ap.rst
16421 F: drivers/s390/crypto/vfio_ap_drv.c
16422 F: drivers/s390/crypto/vfio_ap_ops.c
16423 F: drivers/s390/crypto/vfio_ap_private.h
16425 S390 VFIO-CCW DRIVER
16426 M: Eric Farman <farman@linux.ibm.com>
16427 M: Matthew Rosato <mjrosato@linux.ibm.com>
16428 R: Halil Pasic <pasic@linux.ibm.com>
16429 L: linux-s390@vger.kernel.org
16430 L: kvm@vger.kernel.org
16432 F: Documentation/s390/vfio-ccw.rst
16433 F: drivers/s390/cio/vfio_ccw*
16434 F: include/uapi/linux/vfio_ccw.h
16436 S390 VFIO-PCI DRIVER
16437 M: Matthew Rosato <mjrosato@linux.ibm.com>
16438 M: Eric Farman <farman@linux.ibm.com>
16439 L: linux-s390@vger.kernel.org
16440 L: kvm@vger.kernel.org
16442 F: drivers/vfio/pci/vfio_pci_zdev.c
16443 F: include/uapi/linux/vfio_zdev.h
16446 M: Harald Freudenberger <freude@linux.ibm.com>
16447 L: linux-s390@vger.kernel.org
16449 W: http://www.ibm.com/developerworks/linux/linux390/
16450 F: drivers/s390/crypto/
16453 M: Steffen Maier <maier@linux.ibm.com>
16454 M: Benjamin Block <bblock@linux.ibm.com>
16455 L: linux-s390@vger.kernel.org
16457 W: http://www.ibm.com/developerworks/linux/linux390/
16458 F: drivers/s390/scsi/zfcp_*
16460 S3C ADC BATTERY DRIVER
16461 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16462 L: linux-samsung-soc@vger.kernel.org
16464 F: drivers/power/supply/s3c_adc_battery.c
16465 F: include/linux/s3c_adc_battery.h
16467 S3C24XX SD/MMC Driver
16468 M: Ben Dooks <ben-linux@fluff.org>
16469 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16471 F: drivers/mmc/host/s3cmci.*
16473 SAA6588 RDS RECEIVER DRIVER
16474 M: Hans Verkuil <hverkuil@xs4all.nl>
16475 L: linux-media@vger.kernel.org
16477 W: https://linuxtv.org
16478 T: git git://linuxtv.org/media_tree.git
16479 F: drivers/media/i2c/saa6588*
16481 SAA7134 VIDEO4LINUX DRIVER
16482 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16483 L: linux-media@vger.kernel.org
16485 W: https://linuxtv.org
16486 T: git git://linuxtv.org/media_tree.git
16487 F: Documentation/driver-api/media/drivers/saa7134*
16488 F: drivers/media/pci/saa7134/
16490 SAA7146 VIDEO4LINUX-2 DRIVER
16491 M: Hans Verkuil <hverkuil@xs4all.nl>
16492 L: linux-media@vger.kernel.org
16494 T: git git://linuxtv.org/media_tree.git
16495 F: drivers/media/common/saa7146/
16496 F: drivers/media/pci/saa7146/
16497 F: include/media/drv-intf/saa7146*
16499 SAFESETID SECURITY MODULE
16500 M: Micah Morton <mortonm@chromium.org>
16502 F: Documentation/admin-guide/LSM/SafeSetID.rst
16503 F: security/safesetid/
16505 SAMSUNG AUDIO (ASoC) DRIVERS
16506 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16507 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16508 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16510 F: Documentation/devicetree/bindings/sound/samsung*
16511 F: sound/soc/samsung/
16513 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16514 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16515 L: linux-crypto@vger.kernel.org
16516 L: linux-samsung-soc@vger.kernel.org
16518 F: Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16519 F: drivers/crypto/exynos-rng.c
16521 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16522 M: Łukasz Stelmach <l.stelmach@samsung.com>
16523 L: linux-samsung-soc@vger.kernel.org
16525 F: Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16526 F: drivers/char/hw_random/exynos-trng.c
16528 SAMSUNG FRAMEBUFFER DRIVER
16529 M: Jingoo Han <jingoohan1@gmail.com>
16530 L: linux-fbdev@vger.kernel.org
16532 F: drivers/video/fbdev/s3c-fb.c
16534 SAMSUNG INTERCONNECT DRIVERS
16535 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16536 M: Artur Świgoń <a.swigon@samsung.com>
16537 L: linux-pm@vger.kernel.org
16538 L: linux-samsung-soc@vger.kernel.org
16540 F: drivers/interconnect/samsung/
16542 SAMSUNG LAPTOP DRIVER
16543 M: Corentin Chary <corentin.chary@gmail.com>
16544 L: platform-driver-x86@vger.kernel.org
16546 F: drivers/platform/x86/samsung-laptop.c
16548 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16549 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16550 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16551 L: linux-kernel@vger.kernel.org
16552 L: linux-samsung-soc@vger.kernel.org
16554 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16555 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16556 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16557 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16558 F: drivers/clk/clk-s2mps11.c
16559 F: drivers/mfd/sec*.c
16560 F: drivers/regulator/s2m*.c
16561 F: drivers/regulator/s5m*.c
16562 F: drivers/rtc/rtc-s5m.c
16563 F: include/linux/mfd/samsung/
16565 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16566 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16567 L: linux-media@vger.kernel.org
16568 L: linux-samsung-soc@vger.kernel.org
16570 F: drivers/media/platform/s3c-camif/
16571 F: include/media/drv-intf/s3c_camif.h
16573 SAMSUNG S3FWRN5 NFC DRIVER
16574 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16575 M: Krzysztof Opasiak <k.opasiak@samsung.com>
16576 L: linux-nfc@lists.01.org (subscribers-only)
16578 F: Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16579 F: drivers/nfc/s3fwrn5
16581 SAMSUNG S5C73M3 CAMERA DRIVER
16582 M: Andrzej Hajda <a.hajda@samsung.com>
16583 L: linux-media@vger.kernel.org
16585 F: drivers/media/i2c/s5c73m3/*
16587 SAMSUNG S5K5BAF CAMERA DRIVER
16588 M: Andrzej Hajda <a.hajda@samsung.com>
16589 L: linux-media@vger.kernel.org
16591 F: drivers/media/i2c/s5k5baf.c
16593 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16594 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16595 M: Vladimir Zapolskiy <vz@mleia.com>
16596 L: linux-crypto@vger.kernel.org
16597 L: linux-samsung-soc@vger.kernel.org
16599 F: Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16600 F: Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16601 F: drivers/crypto/s5p-sss.c
16603 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16604 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16605 L: linux-media@vger.kernel.org
16607 Q: https://patchwork.linuxtv.org/project/linux-media/list/
16608 F: drivers/media/platform/exynos4-is/
16610 SAMSUNG SOC CLOCK DRIVERS
16611 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16612 M: Tomasz Figa <tomasz.figa@gmail.com>
16613 M: Chanwoo Choi <cw00.choi@samsung.com>
16614 L: linux-samsung-soc@vger.kernel.org
16616 T: git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16617 F: Documentation/devicetree/bindings/clock/exynos*.txt
16618 F: Documentation/devicetree/bindings/clock/samsung,*.yaml
16619 F: Documentation/devicetree/bindings/clock/samsung,s3c*
16620 F: Documentation/devicetree/bindings/clock/samsung,s5p*
16621 F: drivers/clk/samsung/
16622 F: include/dt-bindings/clock/exynos*.h
16623 F: include/dt-bindings/clock/s3c*.h
16624 F: include/dt-bindings/clock/s5p*.h
16625 F: include/dt-bindings/clock/samsung,*.h
16626 F: include/linux/clk/samsung.h
16627 F: include/linux/platform_data/clk-s3c2410.h
16629 SAMSUNG SPI DRIVERS
16630 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16631 M: Andi Shyti <andi@etezian.org>
16632 L: linux-spi@vger.kernel.org
16633 L: linux-samsung-soc@vger.kernel.org
16635 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
16636 F: drivers/spi/spi-s3c*
16637 F: include/linux/platform_data/spi-s3c64xx.h
16638 F: include/linux/spi/s3c24xx-fiq.h
16640 SAMSUNG SXGBE DRIVERS
16641 M: Byungho An <bh74.an@samsung.com>
16642 L: netdev@vger.kernel.org
16644 F: drivers/net/ethernet/samsung/sxgbe/
16646 SAMSUNG THERMAL DRIVER
16647 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16648 L: linux-pm@vger.kernel.org
16649 L: linux-samsung-soc@vger.kernel.org
16651 T: git https://github.com/lmajewski/linux-samsung-thermal.git
16652 F: drivers/thermal/samsung/
16654 SAMSUNG USB2 PHY DRIVER
16655 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16656 L: linux-kernel@vger.kernel.org
16658 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
16659 F: Documentation/driver-api/phy/samsung-usb2.rst
16660 F: drivers/phy/samsung/phy-exynos4210-usb2.c
16661 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
16662 F: drivers/phy/samsung/phy-exynos5250-usb2.c
16663 F: drivers/phy/samsung/phy-s5pv210-usb2.c
16664 F: drivers/phy/samsung/phy-samsung-usb2.c
16665 F: drivers/phy/samsung/phy-samsung-usb2.h
16667 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16668 M: Paul Barker <paul.barker@sancloud.com>
16669 R: Marc Murphy <marc.murphy@sancloud.com>
16671 F: arch/arm/boot/dts/am335x-sancloud*
16674 M: Zwane Mwaikambo <zwanem@gmail.com>
16676 F: drivers/watchdog/sc1200wdt.c
16679 M: Ingo Molnar <mingo@redhat.com>
16680 M: Peter Zijlstra <peterz@infradead.org>
16681 M: Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16682 M: Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16683 R: Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16684 R: Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16685 R: Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16686 R: Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16687 R: Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16688 L: linux-kernel@vger.kernel.org
16690 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16691 F: include/linux/preempt.h
16692 F: include/linux/sched.h
16693 F: include/linux/wait.h
16694 F: include/uapi/linux/sched.h
16697 SCR24X CHIP CARD INTERFACE DRIVER
16698 M: Lubomir Rintel <lkundrak@v3.sk>
16700 F: drivers/char/pcmcia/scr24x_cs.c
16702 SCSI RDMA PROTOCOL (SRP) INITIATOR
16703 M: Bart Van Assche <bvanassche@acm.org>
16704 L: linux-rdma@vger.kernel.org
16706 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16707 F: drivers/infiniband/ulp/srp/
16708 F: include/scsi/srp.h
16710 SCSI RDMA PROTOCOL (SRP) TARGET
16711 M: Bart Van Assche <bvanassche@acm.org>
16712 L: linux-rdma@vger.kernel.org
16713 L: target-devel@vger.kernel.org
16715 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16716 F: drivers/infiniband/ulp/srpt/
16719 M: Doug Gilbert <dgilbert@interlog.com>
16720 L: linux-scsi@vger.kernel.org
16722 W: http://sg.danny.cz/sg
16723 F: Documentation/scsi/scsi-generic.rst
16724 F: drivers/scsi/sg.c
16725 F: include/scsi/sg.h
16728 M: "James E.J. Bottomley" <jejb@linux.ibm.com>
16729 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16730 L: linux-scsi@vger.kernel.org
16732 Q: https://patchwork.kernel.org/project/linux-scsi/list/
16733 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16734 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16735 F: Documentation/devicetree/bindings/scsi/
16740 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16741 L: linux-scsi@vger.kernel.org
16743 F: Documentation/scsi/st.rst
16744 F: drivers/scsi/st.*
16745 F: drivers/scsi/st_*.h
16747 SCSI TARGET CORE USER DRIVER
16748 M: Bodo Stroesser <bostroesser@gmail.com>
16749 L: linux-scsi@vger.kernel.org
16750 L: target-devel@vger.kernel.org
16752 F: Documentation/target/tcmu-design.rst
16753 F: drivers/target/target_core_user.c
16754 F: include/uapi/linux/target_core_user.h
16756 SCSI TARGET SUBSYSTEM
16757 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16758 L: linux-scsi@vger.kernel.org
16759 L: target-devel@vger.kernel.org
16761 W: http://www.linux-iscsi.org
16762 Q: https://patchwork.kernel.org/project/target-devel/list/
16763 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16764 F: Documentation/target/
16769 M: Vlad Yasevich <vyasevich@gmail.com>
16770 M: Neil Horman <nhorman@tuxdriver.com>
16771 M: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16772 L: linux-sctp@vger.kernel.org
16774 W: http://lksctp.sourceforge.net
16775 F: Documentation/networking/sctp.rst
16776 F: include/linux/sctp.h
16777 F: include/net/sctp/
16778 F: include/uapi/linux/sctp.h
16782 M: Jim Cromie <jim.cromie@gmail.com>
16784 F: Documentation/i2c/busses/scx200_acb.rst
16785 F: arch/x86/platform/scx200/
16786 F: drivers/i2c/busses/scx200*
16787 F: drivers/mtd/maps/scx200_docflash.c
16788 F: drivers/watchdog/scx200_wdt.c
16789 F: include/linux/scx200.h
16792 M: Jim Cromie <jim.cromie@gmail.com>
16794 F: drivers/char/scx200_gpio.c
16795 F: include/linux/scx200_gpio.h
16797 SCx200 HRT CLOCKSOURCE DRIVER
16798 M: Jim Cromie <jim.cromie@gmail.com>
16800 F: drivers/clocksource/scx200_hrt.c
16802 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16803 M: Sascha Sommer <saschasommer@freenet.de>
16804 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16806 F: drivers/mmc/host/sdricoh_cs.c
16808 SECO BOARDS CEC DRIVER
16809 M: Ettore Chimenti <ek5.chimenti@gmail.com>
16811 F: drivers/media/cec/platform/seco/seco-cec.c
16812 F: drivers/media/cec/platform/seco/seco-cec.h
16815 M: Kees Cook <keescook@chromium.org>
16816 R: Andy Lutomirski <luto@amacapital.net>
16817 R: Will Drewry <wad@chromium.org>
16819 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16820 F: Documentation/userspace-api/seccomp_filter.rst
16821 F: include/linux/seccomp.h
16822 F: include/uapi/linux/seccomp.h
16823 F: kernel/seccomp.c
16824 F: tools/testing/selftests/kselftest_harness.h
16825 F: tools/testing/selftests/seccomp/*
16826 K: \bsecure_computing
16829 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16830 M: Al Cooper <alcooperx@gmail.com>
16831 L: linux-mmc@vger.kernel.org
16832 L: bcm-kernel-feedback-list@broadcom.com
16834 F: drivers/mmc/host/sdhci-brcmstb*
16836 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16837 M: Adrian Hunter <adrian.hunter@intel.com>
16838 L: linux-mmc@vger.kernel.org
16840 F: drivers/mmc/host/sdhci*
16841 F: include/linux/mmc/sdhci*
16843 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16844 M: Eugen Hristev <eugen.hristev@microchip.com>
16845 L: linux-mmc@vger.kernel.org
16847 F: drivers/mmc/host/sdhci-of-at91.c
16849 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16850 M: Ben Dooks <ben-linux@fluff.org>
16851 M: Jaehoon Chung <jh80.chung@samsung.com>
16852 L: linux-mmc@vger.kernel.org
16854 F: drivers/mmc/host/sdhci-s3c*
16856 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16857 M: Viresh Kumar <vireshk@kernel.org>
16858 L: linux-mmc@vger.kernel.org
16860 F: drivers/mmc/host/sdhci-spear.c
16862 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16863 M: Kishon Vijay Abraham I <kishon@ti.com>
16864 L: linux-mmc@vger.kernel.org
16866 F: drivers/mmc/host/sdhci-omap.c
16868 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16869 M: Jonathan Derrick <jonathan.derrick@intel.com>
16870 M: Revanth Rajashekar <revanth.rajashekar@intel.com>
16871 L: linux-block@vger.kernel.org
16873 F: block/opal_proto.h
16875 F: include/linux/sed*
16876 F: include/uapi/linux/sed*
16879 M: Security Officers <security@kernel.org>
16881 F: Documentation/admin-guide/security-bugs.rst
16884 M: James Morris <jmorris@namei.org>
16885 M: "Serge E. Hallyn" <serge@hallyn.com>
16886 L: linux-security-module@vger.kernel.org (suggested Cc:)
16888 W: http://kernsec.org/
16889 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16891 X: security/selinux/
16893 SELINUX SECURITY MODULE
16894 M: Paul Moore <paul@paul-moore.com>
16895 M: Stephen Smalley <stephen.smalley.work@gmail.com>
16896 M: Eric Paris <eparis@parisplace.org>
16897 L: selinux@vger.kernel.org
16899 W: https://selinuxproject.org
16900 W: https://github.com/SELinuxProject
16901 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16902 F: Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16903 F: Documentation/ABI/obsolete/sysfs-selinux-disable
16904 F: Documentation/admin-guide/LSM/SELinux.rst
16905 F: include/trace/events/avc.h
16906 F: include/uapi/linux/selinux_netlink.h
16907 F: scripts/selinux/
16908 F: security/selinux/
16911 M: Jiri Slaby <jirislaby@kernel.org>
16913 F: drivers/misc/phantom.c
16914 F: include/uapi/linux/phantom.h
16916 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16917 M: Tomasz Duszynski <tomasz.duszynski@octakon.com>
16919 F: Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16920 F: drivers/iio/chemical/scd30.h
16921 F: drivers/iio/chemical/scd30_core.c
16922 F: drivers/iio/chemical/scd30_i2c.c
16923 F: drivers/iio/chemical/scd30_serial.c
16925 SENSIRION SGP40 GAS SENSOR DRIVER
16926 M: Andreas Klinger <ak@it-klinger.de>
16928 F: Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16929 F: drivers/iio/chemical/sgp40.c
16931 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16932 M: Tomasz Duszynski <tduszyns@gmail.com>
16934 F: Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16935 F: drivers/iio/chemical/sps30.c
16936 F: drivers/iio/chemical/sps30_i2c.c
16937 F: drivers/iio/chemical/sps30_serial.c
16940 M: Rob Herring <robh@kernel.org>
16941 L: linux-serial@vger.kernel.org
16943 F: Documentation/devicetree/bindings/serial/serial.yaml
16944 F: drivers/tty/serdev/
16945 F: include/linux/serdev.h
16948 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16949 L: linux-serial@vger.kernel.org
16951 F: Documentation/devicetree/bindings/serial/
16952 F: drivers/tty/serial/
16955 M: Sean Young <sean@mess.org>
16956 L: linux-media@vger.kernel.org
16958 F: drivers/media/rc/serial_ir.c
16960 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16961 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16962 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16964 F: Documentation/devicetree/bindings/slimbus/
16965 F: drivers/slimbus/
16966 F: include/linux/slimbus.h
16969 M: Edward Cree <ecree.xilinx@gmail.com>
16970 M: Martin Habets <habetsm.xilinx@gmail.com>
16971 L: netdev@vger.kernel.org
16973 F: drivers/net/ethernet/sfc/
16975 SFF/SFP/SFP+ MODULE SUPPORT
16976 M: Russell King <linux@armlinux.org.uk>
16977 L: netdev@vger.kernel.org
16979 F: drivers/net/phy/phylink.c
16980 F: drivers/net/phy/sfp*
16981 F: include/linux/mdio/mdio-i2c.h
16982 F: include/linux/phylink.h
16983 F: include/linux/sfp.h
16984 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)
16987 M: Dimitri Sivanich <dimitri.sivanich@hpe.com>
16989 F: drivers/misc/sgi-gru/
16991 SGI XP/XPC/XPNET DRIVER
16992 M: Robin Holt <robinmholt@gmail.com>
16993 M: Steve Wahl <steve.wahl@hpe.com>
16994 R: Mike Travis <mike.travis@hpe.com>
16996 F: drivers/misc/sgi-xp/
16998 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16999 M: Karsten Graul <kgraul@linux.ibm.com>
17000 L: linux-s390@vger.kernel.org
17002 W: http://www.ibm.com/developerworks/linux/linux390/
17005 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17006 M: Linus Walleij <linus.walleij@linaro.org>
17007 L: linux-iio@vger.kernel.org
17009 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17010 F: Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17011 F: drivers/iio/light/gp2ap002.c
17013 SHARP RJ54N1CB0C SENSOR DRIVER
17014 M: Jacopo Mondi <jacopo@jmondi.org>
17015 L: linux-media@vger.kernel.org
17017 T: git git://linuxtv.org/media_tree.git
17018 F: drivers/media/i2c/rj54n1cb0c.c
17019 F: include/media/i2c/rj54n1cb0c.h
17021 SH_VOU V4L2 OUTPUT DRIVER
17022 L: linux-media@vger.kernel.org
17024 F: drivers/media/platform/sh_vou.c
17025 F: include/media/drv-intf/sh_vou.h
17027 SI2157 MEDIA DRIVER
17028 M: Antti Palosaari <crope@iki.fi>
17029 L: linux-media@vger.kernel.org
17031 W: https://linuxtv.org
17032 W: http://palosaari.fi/linux/
17033 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17034 T: git git://linuxtv.org/anttip/media_tree.git
17035 F: drivers/media/tuners/si2157*
17037 SI2165 MEDIA DRIVER
17038 M: Matthias Schwarzott <zzam@gentoo.org>
17039 L: linux-media@vger.kernel.org
17041 W: https://linuxtv.org
17042 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17043 F: drivers/media/dvb-frontends/si2165*
17045 SI2168 MEDIA DRIVER
17046 M: Antti Palosaari <crope@iki.fi>
17047 L: linux-media@vger.kernel.org
17049 W: https://linuxtv.org
17050 W: http://palosaari.fi/linux/
17051 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17052 T: git git://linuxtv.org/anttip/media_tree.git
17053 F: drivers/media/dvb-frontends/si2168*
17055 SI470X FM RADIO RECEIVER I2C DRIVER
17056 M: Hans Verkuil <hverkuil@xs4all.nl>
17057 L: linux-media@vger.kernel.org
17059 W: https://linuxtv.org
17060 T: git git://linuxtv.org/media_tree.git
17061 F: drivers/media/radio/si470x/radio-si470x-i2c.c
17063 SI470X FM RADIO RECEIVER USB DRIVER
17064 M: Hans Verkuil <hverkuil@xs4all.nl>
17065 L: linux-media@vger.kernel.org
17067 W: https://linuxtv.org
17068 T: git git://linuxtv.org/media_tree.git
17069 F: drivers/media/radio/si470x/radio-si470x-common.c
17070 F: drivers/media/radio/si470x/radio-si470x-usb.c
17071 F: drivers/media/radio/si470x/radio-si470x.h
17073 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17074 M: Eduardo Valentin <edubezval@gmail.com>
17075 L: linux-media@vger.kernel.org
17077 W: https://linuxtv.org
17078 T: git git://linuxtv.org/media_tree.git
17079 F: drivers/media/radio/si4713/si4713.?
17081 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17082 M: Eduardo Valentin <edubezval@gmail.com>
17083 L: linux-media@vger.kernel.org
17085 W: https://linuxtv.org
17086 T: git git://linuxtv.org/media_tree.git
17087 F: drivers/media/radio/si4713/radio-platform-si4713.c
17089 SI4713 FM RADIO TRANSMITTER USB DRIVER
17090 M: Hans Verkuil <hverkuil@xs4all.nl>
17091 L: linux-media@vger.kernel.org
17093 W: https://linuxtv.org
17094 T: git git://linuxtv.org/media_tree.git
17095 F: drivers/media/radio/si4713/radio-usb-si4713.c
17098 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17099 L: linux-media@vger.kernel.org
17101 W: https://linuxtv.org
17102 T: git git://linuxtv.org/media_tree.git
17103 F: drivers/media/common/siano/
17104 F: drivers/media/mmc/siano/
17105 F: drivers/media/usb/siano/
17106 F: drivers/media/usb/siano/
17109 M: Palmer Dabbelt <palmer@dabbelt.com>
17110 M: Paul Walmsley <paul.walmsley@sifive.com>
17111 L: linux-riscv@lists.infradead.org
17113 T: git git://github.com/sifive/riscv-linux.git
17117 SIFIVE FU540 SYSTEM-ON-CHIP
17118 M: Paul Walmsley <paul.walmsley@sifive.com>
17119 M: Palmer Dabbelt <palmer@dabbelt.com>
17120 L: linux-riscv@lists.infradead.org
17122 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17127 M: Green Wan <green.wan@sifive.com>
17129 F: Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17130 F: drivers/dma/sf-pdma/
17132 SILEAD TOUCHSCREEN DRIVER
17133 M: Hans de Goede <hdegoede@redhat.com>
17134 L: linux-input@vger.kernel.org
17135 L: platform-driver-x86@vger.kernel.org
17137 F: drivers/input/touchscreen/silead.c
17138 F: drivers/platform/x86/touchscreen_dmi.c
17140 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17141 M: Jérôme Pouiller <jerome.pouiller@silabs.com>
17143 F: drivers/staging/wfx/
17145 SILICON MOTION SM712 FRAME BUFFER DRIVER
17146 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17147 M: Teddy Wang <teddy.wang@siliconmotion.com>
17148 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17149 L: linux-fbdev@vger.kernel.org
17151 F: Documentation/fb/sm712fb.rst
17152 F: drivers/video/fbdev/sm712*
17154 SILVACO I3C DUAL-ROLE MASTER
17155 M: Miquel Raynal <miquel.raynal@bootlin.com>
17156 M: Conor Culhane <conor.culhane@silvaco.com>
17157 L: linux-i3c@lists.infradead.org
17159 F: Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17160 F: drivers/i3c/master/svc-i3c-master.c
17163 M: Hans de Goede <hdegoede@redhat.com>
17164 L: linux-fbdev@vger.kernel.org
17166 F: Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17167 F: drivers/video/fbdev/simplefb.c
17168 F: include/linux/platform_data/simplefb.h
17170 SIMTEC EB110ATX (Chalice CATS)
17171 M: Simtec Linux Team <linux@simtec.co.uk>
17173 W: http://www.simtec.co.uk/products/EB110ATX/
17175 SIMTEC EB2410ITX (BAST)
17176 M: Simtec Linux Team <linux@simtec.co.uk>
17178 W: http://www.simtec.co.uk/products/EB2410ITX/
17179 F: arch/arm/mach-s3c/bast-ide.c
17180 F: arch/arm/mach-s3c/bast-irq.c
17181 F: arch/arm/mach-s3c/mach-bast.c
17184 M: Thorsten Scherer <t.scherer@eckelmann.de>
17185 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17186 R: Pengutronix Kernel Team <kernel@pengutronix.de>
17188 F: drivers/gpio/gpio-siox.c
17190 F: include/trace/events/siox.h
17192 SIPHASH PRF ROUTINES
17193 M: Jason A. Donenfeld <Jason@zx2c4.com>
17195 F: include/linux/siphash.h
17197 F: lib/test_siphash.c
17199 SIS 190 ETHERNET DRIVER
17200 M: Francois Romieu <romieu@fr.zoreil.com>
17201 L: netdev@vger.kernel.org
17203 F: drivers/net/ethernet/sis/sis190.c
17205 SIS 900/7016 FAST ETHERNET DRIVER
17206 M: Daniele Venzano <venza@brownhat.org>
17207 L: netdev@vger.kernel.org
17209 W: http://www.brownhat.org/sis900.html
17210 F: drivers/net/ethernet/sis/sis900.*
17212 SIS FRAMEBUFFER DRIVER
17213 M: Thomas Winischhofer <thomas@winischhofer.net>
17215 W: http://www.winischhofer.net/linuxsisvga.shtml
17216 F: Documentation/fb/sisfb.rst
17217 F: drivers/video/fbdev/sis/
17218 F: include/video/sisfb.h
17220 SIS I2C TOUCHSCREEN DRIVER
17221 M: Mika Penttilä <mika.penttila@nextfour.com>
17222 L: linux-input@vger.kernel.org
17224 F: Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17225 F: drivers/input/touchscreen/sis_i2c.c
17228 M: Thomas Winischhofer <thomas@winischhofer.net>
17230 W: http://www.winischhofer.at/linuxsisusbvga.shtml
17231 F: drivers/usb/misc/sisusbvga/
17234 M: Christoph Lameter <cl@linux.com>
17235 M: Pekka Enberg <penberg@kernel.org>
17236 M: David Rientjes <rientjes@google.com>
17237 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
17238 M: Andrew Morton <akpm@linux-foundation.org>
17239 M: Vlastimil Babka <vbabka@suse.cz>
17240 L: linux-mm@kvack.org
17242 F: include/linux/sl?b*.h
17245 SLEEPABLE READ-COPY UPDATE (SRCU)
17246 M: Lai Jiangshan <jiangshanlai@gmail.com>
17247 M: "Paul E. McKenney" <paulmck@kernel.org>
17248 M: Josh Triplett <josh@joshtriplett.org>
17249 R: Steven Rostedt <rostedt@goodmis.org>
17250 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17251 L: rcu@vger.kernel.org
17253 W: http://www.rdrop.com/users/paulmck/RCU/
17254 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17255 F: include/linux/srcu*.h
17256 F: kernel/rcu/srcu*.c
17258 SMACK SECURITY MODULE
17259 M: Casey Schaufler <casey@schaufler-ca.com>
17260 L: linux-security-module@vger.kernel.org
17262 W: http://schaufler-ca.com
17263 T: git git://github.com/cschaufler/smack-next
17264 F: Documentation/admin-guide/LSM/Smack.rst
17267 SMC91x ETHERNET DRIVER
17268 M: Nicolas Pitre <nico@fluxnic.net>
17270 F: drivers/net/ethernet/smsc/smc91x.*
17272 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17273 M: Mark Rutland <mark.rutland@arm.com>
17274 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17275 M: Sudeep Holla <sudeep.holla@arm.com>
17276 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17278 F: drivers/firmware/smccc/
17279 F: include/linux/arm-smccc.h
17281 SMM665 HARDWARE MONITOR DRIVER
17282 M: Guenter Roeck <linux@roeck-us.net>
17283 L: linux-hwmon@vger.kernel.org
17285 F: Documentation/hwmon/smm665.rst
17286 F: drivers/hwmon/smm665.c
17288 SMSC EMC2103 HARDWARE MONITOR DRIVER
17289 M: Steve Glendinning <steve.glendinning@shawell.net>
17290 L: linux-hwmon@vger.kernel.org
17292 F: Documentation/hwmon/emc2103.rst
17293 F: drivers/hwmon/emc2103.c
17295 SMSC SCH5627 HARDWARE MONITOR DRIVER
17296 M: Hans de Goede <hdegoede@redhat.com>
17297 L: linux-hwmon@vger.kernel.org
17299 F: Documentation/hwmon/sch5627.rst
17300 F: drivers/hwmon/sch5627.c
17302 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17303 M: Steve Glendinning <steve.glendinning@shawell.net>
17304 L: linux-fbdev@vger.kernel.org
17306 F: drivers/video/fbdev/smscufx.c
17308 SMSC47B397 HARDWARE MONITOR DRIVER
17309 M: Jean Delvare <jdelvare@suse.com>
17310 L: linux-hwmon@vger.kernel.org
17312 F: Documentation/hwmon/smsc47b397.rst
17313 F: drivers/hwmon/smsc47b397.c
17315 SMSC911x ETHERNET DRIVER
17316 M: Steve Glendinning <steve.glendinning@shawell.net>
17317 L: netdev@vger.kernel.org
17319 F: drivers/net/ethernet/smsc/smsc911x.*
17320 F: include/linux/smsc911x.h
17322 SMSC9420 PCI ETHERNET DRIVER
17323 M: Steve Glendinning <steve.glendinning@shawell.net>
17324 L: netdev@vger.kernel.org
17326 F: drivers/net/ethernet/smsc/smsc9420.*
17328 SOCIONEXT (SNI) AVE NETWORK DRIVER
17329 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17330 L: netdev@vger.kernel.org
17332 F: Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17333 F: drivers/net/ethernet/socionext/sni_ave.c
17335 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17336 M: Jassi Brar <jaswinder.singh@linaro.org>
17337 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
17338 L: netdev@vger.kernel.org
17340 F: Documentation/devicetree/bindings/net/socionext-netsec.txt
17341 F: drivers/net/ethernet/socionext/netsec.c
17343 SOCIONEXT (SNI) Synquacer SPI DRIVER
17344 M: Masahisa Kojima <masahisa.kojima@linaro.org>
17345 M: Jassi Brar <jaswinder.singh@linaro.org>
17346 L: linux-spi@vger.kernel.org
17348 F: Documentation/devicetree/bindings/spi/spi-synquacer.txt
17349 F: drivers/spi/spi-synquacer.c
17351 SOCIONEXT SYNQUACER I2C DRIVER
17352 M: Ard Biesheuvel <ardb@kernel.org>
17353 L: linux-i2c@vger.kernel.org
17355 F: Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17356 F: drivers/i2c/busses/i2c-synquacer.c
17358 SOCIONEXT UNIPHIER SOUND DRIVER
17359 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17361 F: sound/soc/uniphier/
17363 SOEKRIS NET48XX LED SUPPORT
17364 M: Chris Boot <bootc@bootc.net>
17366 F: drivers/leds/leds-net48xx.c
17368 SOFT-IWARP DRIVER (siw)
17369 M: Bernard Metzler <bmt@zurich.ibm.com>
17370 L: linux-rdma@vger.kernel.org
17372 F: drivers/infiniband/sw/siw/
17373 F: include/uapi/rdma/siw-abi.h
17375 SOFT-ROCE DRIVER (rxe)
17376 M: Zhu Yanjun <zyjzyj2000@gmail.com>
17377 L: linux-rdma@vger.kernel.org
17379 F: drivers/infiniband/sw/rxe/
17380 F: include/uapi/rdma/rdma_user_rxe.h
17382 SOFTLOGIC 6x10 MPEG CODEC
17383 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17384 M: Anton Sviridenko <anton@corp.bluecherry.net>
17385 M: Andrey Utkin <andrey_utkin@fastmail.com>
17386 M: Ismael Luceno <ismael@iodev.co.uk>
17387 L: linux-media@vger.kernel.org
17389 F: drivers/media/pci/solo6x10/
17391 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17392 M: James Morse <james.morse@arm.com>
17393 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17395 F: Documentation/devicetree/bindings/arm/firmware/sdei.txt
17396 F: drivers/firmware/arm_sdei.c
17397 F: include/linux/arm_sdei.h
17398 F: include/uapi/linux/arm_sdei.h
17401 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17402 R: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17403 L: linux-acpi@vger.kernel.org
17405 F: drivers/base/swnode.c
17407 SOFTWARE RAID (Multiple Disks) SUPPORT
17408 M: Song Liu <song@kernel.org>
17409 L: linux-raid@vger.kernel.org
17411 T: git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17412 F: drivers/md/Kconfig
17413 F: drivers/md/Makefile
17415 F: drivers/md/raid*
17416 F: include/linux/raid/
17417 F: include/uapi/linux/raid/
17419 SOLIDRUN CLEARFOG SUPPORT
17420 M: Russell King <linux@armlinux.org.uk>
17422 F: arch/arm/boot/dts/armada-388-clearfog*
17423 F: arch/arm/boot/dts/armada-38x-solidrun-*
17425 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17426 M: Russell King <linux@armlinux.org.uk>
17428 F: arch/arm/boot/dts/imx6*-cubox-i*
17429 F: arch/arm/boot/dts/imx6*-hummingboard*
17430 F: arch/arm/boot/dts/imx6*-sr-*
17432 SONIC NETWORK DRIVER
17433 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17434 L: netdev@vger.kernel.org
17436 F: drivers/net/ethernet/natsemi/sonic.*
17438 SONICS SILICON BACKPLANE DRIVER (SSB)
17439 M: Michael Buesch <m@bues.ch>
17440 L: linux-wireless@vger.kernel.org
17443 F: include/linux/ssb/
17445 SONY IMX208 SENSOR DRIVER
17446 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17447 L: linux-media@vger.kernel.org
17449 T: git git://linuxtv.org/media_tree.git
17450 F: drivers/media/i2c/imx208.c
17452 SONY IMX214 SENSOR DRIVER
17453 M: Ricardo Ribalda <ribalda@kernel.org>
17454 L: linux-media@vger.kernel.org
17456 T: git git://linuxtv.org/media_tree.git
17457 F: Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17458 F: drivers/media/i2c/imx214.c
17460 SONY IMX219 SENSOR DRIVER
17461 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
17462 L: linux-media@vger.kernel.org
17464 T: git git://linuxtv.org/media_tree.git
17465 F: Documentation/devicetree/bindings/media/i2c/imx219.yaml
17466 F: drivers/media/i2c/imx219.c
17468 SONY IMX258 SENSOR DRIVER
17469 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17470 L: linux-media@vger.kernel.org
17472 T: git git://linuxtv.org/media_tree.git
17473 F: Documentation/devicetree/bindings/media/i2c/imx258.yaml
17474 F: drivers/media/i2c/imx258.c
17476 SONY IMX274 SENSOR DRIVER
17477 M: Leon Luo <leonl@leopardimaging.com>
17478 L: linux-media@vger.kernel.org
17480 T: git git://linuxtv.org/media_tree.git
17481 F: Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17482 F: drivers/media/i2c/imx274.c
17484 SONY IMX290 SENSOR DRIVER
17485 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17486 L: linux-media@vger.kernel.org
17488 T: git git://linuxtv.org/media_tree.git
17489 F: Documentation/devicetree/bindings/media/i2c/imx290.txt
17490 F: drivers/media/i2c/imx290.c
17492 SONY IMX319 SENSOR DRIVER
17493 M: Bingbu Cao <bingbu.cao@intel.com>
17494 L: linux-media@vger.kernel.org
17496 T: git git://linuxtv.org/media_tree.git
17497 F: drivers/media/i2c/imx319.c
17499 SONY IMX334 SENSOR DRIVER
17500 M: Paul J. Murphy <paul.j.murphy@intel.com>
17501 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17502 L: linux-media@vger.kernel.org
17504 T: git git://linuxtv.org/media_tree.git
17505 F: Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17506 F: drivers/media/i2c/imx334.c
17508 SONY IMX335 SENSOR DRIVER
17509 M: Paul J. Murphy <paul.j.murphy@intel.com>
17510 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17511 L: linux-media@vger.kernel.org
17513 T: git git://linuxtv.org/media_tree.git
17514 F: Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17515 F: drivers/media/i2c/imx335.c
17517 SONY IMX355 SENSOR DRIVER
17518 M: Tianshu Qiu <tian.shu.qiu@intel.com>
17519 L: linux-media@vger.kernel.org
17521 T: git git://linuxtv.org/media_tree.git
17522 F: drivers/media/i2c/imx355.c
17524 SONY IMX412 SENSOR DRIVER
17525 M: Paul J. Murphy <paul.j.murphy@intel.com>
17526 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17527 L: linux-media@vger.kernel.org
17529 T: git git://linuxtv.org/media_tree.git
17530 F: Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17531 F: drivers/media/i2c/imx412.c
17533 SONY IMX477 SENSOR DRIVER
17534 M: Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
17535 L: linux-media@vger.kernel.org
17537 T: git git://linuxtv.org/media_tree.git
17538 F: Documentation/devicetree/bindings/media/i2c/imx378.yaml
17539 F: Documentation/devicetree/bindings/media/i2c/imx477.yaml
17540 F: drivers/media/i2c/imx477.c
17542 SONY IMX519 SENSOR DRIVER
17543 M: Arducam Kernel Maintenance <info@arducam.com>
17544 L: linux-media@vger.kernel.org
17546 T: git git://linuxtv.org/media_tree.git
17547 F: Documentation/devicetree/bindings/media/i2c/imx519.yaml
17548 F: drivers/media/i2c/imx519.c
17550 SONY MEMORYSTICK SUBSYSTEM
17551 M: Maxim Levitsky <maximlevitsky@gmail.com>
17552 M: Alex Dubov <oakad@yahoo.com>
17553 M: Ulf Hansson <ulf.hansson@linaro.org>
17554 L: linux-mmc@vger.kernel.org
17556 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17557 F: drivers/memstick/
17558 F: include/linux/memstick.h
17560 SONY VAIO CONTROL DEVICE DRIVER
17561 M: Mattia Dongili <malattia@linux.it>
17562 L: platform-driver-x86@vger.kernel.org
17564 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17565 F: Documentation/admin-guide/laptops/sony-laptop.rst
17566 F: drivers/char/sonypi.c
17567 F: drivers/platform/x86/sony-laptop.c
17568 F: include/linux/sony-laptop.h
17571 M: Jaroslav Kysela <perex@perex.cz>
17572 M: Takashi Iwai <tiwai@suse.com>
17573 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17575 W: http://www.alsa-project.org/
17576 Q: http://patchwork.kernel.org/project/alsa-devel/list/
17577 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17578 F: Documentation/sound/
17580 F: include/uapi/sound/
17583 SOUND - COMPRESSED AUDIO
17584 M: Vinod Koul <vkoul@kernel.org>
17585 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17587 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17588 F: Documentation/sound/designs/compress-offload.rst
17589 F: include/sound/compress_driver.h
17590 F: include/uapi/sound/compress_*
17591 F: sound/core/compress_offload.c
17592 F: sound/soc/soc-compress.c
17594 SOUND - DMAENGINE HELPERS
17595 M: Lars-Peter Clausen <lars@metafoo.de>
17597 F: include/sound/dmaengine_pcm.h
17598 F: sound/core/pcm_dmaengine.c
17599 F: sound/soc/soc-generic-dmaengine-pcm.c
17601 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17602 M: Liam Girdwood <lgirdwood@gmail.com>
17603 M: Mark Brown <broonie@kernel.org>
17604 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17606 W: http://alsa-project.org/main/index.php/ASoC
17607 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17608 F: Documentation/devicetree/bindings/sound/
17609 F: Documentation/sound/soc/
17610 F: include/dt-bindings/sound/
17611 F: include/sound/soc*
17614 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17615 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17616 M: Liam Girdwood <lgirdwood@gmail.com>
17617 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17618 M: Kai Vehmanen <kai.vehmanen@linux.intel.com>
17619 M: Daniel Baluta <daniel.baluta@nxp.com>
17620 L: sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17622 W: https://github.com/thesofproject/linux/
17625 SOUNDWIRE SUBSYSTEM
17626 M: Vinod Koul <vkoul@kernel.org>
17627 M: Bard Liao <yung-chuan.liao@linux.intel.com>
17628 R: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17629 R: Sanyog Kale <sanyog.r.kale@intel.com>
17630 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17632 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17633 F: Documentation/driver-api/soundwire/
17634 F: drivers/soundwire/
17635 F: include/linux/soundwire/
17638 M: Olli Salonen <olli.salonen@iki.fi>
17639 L: linux-media@vger.kernel.org
17641 W: https://linuxtv.org
17642 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17643 F: drivers/media/dvb-frontends/sp2*
17645 SPARC + UltraSPARC (sparc/sparc64)
17646 M: "David S. Miller" <davem@davemloft.net>
17647 L: sparclinux@vger.kernel.org
17649 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
17650 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17651 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17655 SPARC SERIAL DRIVERS
17656 M: "David S. Miller" <davem@davemloft.net>
17657 L: sparclinux@vger.kernel.org
17659 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17660 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17661 F: drivers/tty/serial/suncore.c
17662 F: drivers/tty/serial/sunhv.c
17663 F: drivers/tty/serial/sunsab.c
17664 F: drivers/tty/serial/sunsab.h
17665 F: drivers/tty/serial/sunsu.c
17666 F: drivers/tty/serial/sunzilog.c
17667 F: drivers/tty/serial/sunzilog.h
17668 F: drivers/tty/vcc.c
17669 F: include/linux/sunserialcore.h
17672 M: "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17673 L: linux-sparse@vger.kernel.org
17675 W: https://sparse.docs.kernel.org/
17676 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17677 Q: https://patchwork.kernel.org/project/linux-sparse/list/
17678 B: https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17679 F: include/linux/compiler.h
17681 SPEAKUP CONSOLE SPEECH DRIVER
17682 M: William Hubbs <w.d.hubbs@gmail.com>
17683 M: Chris Brannon <chris@the-brannons.com>
17684 M: Kirk Reiser <kirk@reisers.ca>
17685 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
17686 L: speakup@linux-speakup.org
17688 W: http://www.linux-speakup.org/
17689 W: https://github.com/linux-speakup/speakup
17690 B: https://github.com/linux-speakup/speakup/issues
17691 F: drivers/accessibility/speakup/
17693 SPEAR CLOCK FRAMEWORK SUPPORT
17694 M: Viresh Kumar <vireshk@kernel.org>
17695 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17697 W: http://www.st.com/spear
17698 F: drivers/clk/spear/
17700 SPEAR PLATFORM SUPPORT
17701 M: Viresh Kumar <vireshk@kernel.org>
17702 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17703 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17705 W: http://www.st.com/spear
17706 F: arch/arm/boot/dts/spear*
17707 F: arch/arm/mach-spear/
17710 M: Tudor Ambarus <tudor.ambarus@microchip.com>
17711 R: Michael Walle <michael@walle.cc>
17712 R: Pratyush Yadav <p.yadav@ti.com>
17713 L: linux-mtd@lists.infradead.org
17715 W: http://www.linux-mtd.infradead.org/
17716 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
17717 C: irc://irc.oftc.net/mtd
17718 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17719 F: drivers/mtd/spi-nor/
17720 F: include/linux/mtd/spi-nor.h
17723 M: Mark Brown <broonie@kernel.org>
17724 L: linux-spi@vger.kernel.org
17726 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
17727 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17728 F: Documentation/devicetree/bindings/spi/
17729 F: Documentation/spi/
17731 F: include/linux/spi/
17732 F: include/uapi/linux/spi/
17735 SPIDERNET NETWORK DRIVER for CELL
17736 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17737 M: Geoff Levand <geoff@infradead.org>
17738 L: netdev@vger.kernel.org
17739 L: linuxppc-dev@lists.ozlabs.org
17741 F: Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17742 F: drivers/net/ethernet/toshiba/spider_net*
17745 M: Stephen Boyd <sboyd@kernel.org>
17746 L: linux-kernel@vger.kernel.org
17748 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17749 F: Documentation/devicetree/bindings/spmi/
17751 F: include/dt-bindings/spmi/spmi.h
17752 F: include/linux/spmi.h
17753 F: include/trace/events/spmi.h
17756 M: Jeremy Kerr <jk@ozlabs.org>
17757 L: linuxppc-dev@lists.ozlabs.org
17759 W: http://www.ibm.com/developerworks/power/cell/
17760 F: Documentation/filesystems/spufs/spufs.rst
17761 F: arch/powerpc/platforms/cell/spufs/
17763 SQUASHFS FILE SYSTEM
17764 M: Phillip Lougher <phillip@squashfs.org.uk>
17765 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
17767 W: http://squashfs.org.uk
17768 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17769 F: Documentation/filesystems/squashfs.rst
17772 SRM (Alpha) environment access
17773 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
17775 F: arch/alpha/kernel/srm_env.c
17777 ST LSM6DSx IMU IIO DRIVER
17778 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17779 L: linux-iio@vger.kernel.org
17781 W: http://www.st.com/
17782 F: Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17783 F: drivers/iio/imu/st_lsm6dsx/
17785 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17786 M: Mickael Guene <mickael.guene@st.com>
17787 L: linux-media@vger.kernel.org
17789 T: git git://linuxtv.org/media_tree.git
17790 F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17791 F: drivers/media/i2c/st-mipid02.c
17793 ST STM32 I2C/SMBUS DRIVER
17794 M: Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17795 M: Alain Volmat <alain.volmat@foss.st.com>
17796 L: linux-i2c@vger.kernel.org
17798 F: drivers/i2c/busses/i2c-stm32*
17800 ST STM32 SPI DRIVER
17801 M: Alain Volmat <alain.volmat@foss.st.com>
17802 L: linux-spi@vger.kernel.org
17804 F: drivers/spi/spi-stm32.c
17807 M: Daniel Nilsson <daniel.nilsson@flex.com>
17808 L: linux-hwmon@vger.kernel.org
17810 F: Documentation/hwmon/stpddc60.rst
17811 F: drivers/hwmon/pmbus/stpddc60.c
17813 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17814 M: Song Qiang <songqiang1304521@gmail.com>
17815 L: linux-iio@vger.kernel.org
17817 F: Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17818 F: drivers/iio/proximity/vl53l0x-i2c.c
17821 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17822 M: Sasha Levin <sashal@kernel.org>
17823 L: stable@vger.kernel.org
17825 F: Documentation/process/stable-kernel-rules.rst
17827 STAGING - ATOMISP DRIVER
17828 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17829 R: Sakari Ailus <sakari.ailus@linux.intel.com>
17830 L: linux-media@vger.kernel.org
17832 F: drivers/staging/media/atomisp/
17834 STAGING - FIELDBUS SUBSYSTEM
17835 M: Sven Van Asbroeck <TheSven73@gmail.com>
17837 F: drivers/staging/fieldbus/*
17838 F: drivers/staging/fieldbus/Documentation/
17840 STAGING - HMS ANYBUS-S BUS
17841 M: Sven Van Asbroeck <TheSven73@gmail.com>
17843 F: drivers/staging/fieldbus/anybuss/
17845 STAGING - INDUSTRIAL IO
17846 M: Jonathan Cameron <jic23@kernel.org>
17847 L: linux-iio@vger.kernel.org
17849 F: Documentation/devicetree/bindings/staging/iio/
17850 F: drivers/staging/iio/
17852 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17853 M: Marc Dietrich <marvin24@gmx.de>
17854 L: ac100@lists.launchpad.net (moderated for non-subscribers)
17855 L: linux-tegra@vger.kernel.org
17857 F: drivers/staging/nvec/
17859 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17860 M: Jens Frederich <jfrederich@gmail.com>
17861 M: Jon Nettleton <jon.nettleton@gmail.com>
17863 W: http://wiki.laptop.org/go/DCON
17864 F: drivers/staging/olpc_dcon/
17866 STAGING - REALTEK RTL8188EU DRIVERS
17867 M: Larry Finger <Larry.Finger@lwfinger.net>
17868 M: Phillip Potter <phil@philpotter.co.uk>
17870 F: drivers/staging/r8188eu/
17872 STAGING - REALTEK RTL8712U DRIVERS
17873 M: Larry Finger <Larry.Finger@lwfinger.net>
17874 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17876 F: drivers/staging/rtl8712/
17878 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17879 M: Michael Hennerich <michael.hennerich@analog.com>
17880 L: linux-fbdev@vger.kernel.org
17882 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17883 F: drivers/staging/fbtft/fb_seps525.c
17885 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17886 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17887 M: Teddy Wang <teddy.wang@siliconmotion.com>
17888 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17889 L: linux-fbdev@vger.kernel.org
17891 F: drivers/staging/sm750fb/
17893 STAGING - VIA VT665X DRIVERS
17894 M: Forest Bond <forest@alittletooquiet.net>
17896 F: drivers/staging/vt665?/
17899 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17900 L: linux-staging@lists.linux.dev
17902 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17903 F: drivers/staging/
17905 STARFIRE/DURALAN NETWORK DRIVER
17906 M: Ion Badulescu <ionut@badula.org>
17908 F: drivers/net/ethernet/adaptec/starfire*
17911 M: Peter Zijlstra <peterz@infradead.org>
17912 M: Josh Poimboeuf <jpoimboe@redhat.com>
17913 M: Jason Baron <jbaron@akamai.com>
17914 R: Steven Rostedt <rostedt@goodmis.org>
17915 R: Ard Biesheuvel <ardb@kernel.org>
17917 F: arch/*/include/asm/jump_label*.h
17918 F: arch/*/include/asm/static_call*.h
17919 F: arch/*/kernel/jump_label.c
17920 F: arch/*/kernel/static_call.c
17921 F: include/linux/jump_label*.h
17922 F: include/linux/static_call*.h
17923 F: kernel/jump_label.c
17924 F: kernel/static_call.c
17926 STI AUDIO (ASoC) DRIVERS
17927 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17928 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17930 F: Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17934 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
17936 F: Documentation/devicetree/bindings/media/stih-cec.txt
17937 F: drivers/media/cec/platform/sti/
17939 STK1160 USB VIDEO CAPTURE DRIVER
17940 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17941 L: linux-media@vger.kernel.org
17943 T: git git://linuxtv.org/media_tree.git
17944 F: drivers/media/usb/stk1160/
17946 STM32 AUDIO (ASoC) DRIVERS
17947 M: Olivier Moysan <olivier.moysan@foss.st.com>
17948 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17949 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17951 F: Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17952 F: Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17955 STM32 TIMER/LPTIMER DRIVERS
17956 M: Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17958 F: Documentation/ABI/testing/*timer-stm32
17959 F: Documentation/devicetree/bindings/*/*stm32-*timer*
17960 F: drivers/*/stm32-*timer*
17961 F: drivers/pwm/pwm-stm32*
17962 F: include/linux/*/stm32-*tim*
17964 STMMAC ETHERNET DRIVER
17965 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
17966 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
17967 M: Jose Abreu <joabreu@synopsys.com>
17968 L: netdev@vger.kernel.org
17970 W: http://www.stlinux.com
17971 F: Documentation/networking/device_drivers/ethernet/stmicro/
17972 F: drivers/net/ethernet/stmicro/stmmac/
17975 M: Sam Creasey <sammy@sammy.net>
17977 W: http://sammy.net/sun3/
17978 F: arch/m68k/include/asm/sun3*
17979 F: arch/m68k/kernel/*sun3*
17980 F: arch/m68k/sun3*/
17981 F: drivers/net/ethernet/i825xx/sun3*
17983 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17984 M: Hans de Goede <hdegoede@redhat.com>
17985 L: linux-input@vger.kernel.org
17987 F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17988 F: drivers/input/keyboard/sun4i-lradc-keys.c
17990 SUNDANCE NETWORK DRIVER
17991 M: Denis Kirjanov <kda@linux-powerpc.org>
17992 L: netdev@vger.kernel.org
17994 F: drivers/net/ethernet/dlink/sundance.c
17997 M: Yoshinori Sato <ysato@users.sourceforge.jp>
17998 M: Rich Felker <dalias@libc.org>
17999 L: linux-sh@vger.kernel.org
18001 Q: http://patchwork.kernel.org/project/linux-sh/list/
18002 F: Documentation/sh/
18007 M: "Rafael J. Wysocki" <rafael@kernel.org>
18008 M: Len Brown <len.brown@intel.com>
18009 M: Pavel Machek <pavel@ucw.cz>
18010 L: linux-pm@vger.kernel.org
18012 B: https://bugzilla.kernel.org
18013 F: Documentation/power/
18014 F: arch/x86/kernel/acpi/
18015 F: drivers/base/power/
18016 F: include/linux/freezer.h
18017 F: include/linux/pm.h
18018 F: include/linux/suspend.h
18022 M: Martin Mares <mj@ucw.cz>
18023 L: linux-video@atrey.karlin.mff.cuni.cz
18025 F: Documentation/admin-guide/svga.rst
18026 F: arch/x86/boot/video*
18029 M: Christoph Hellwig <hch@infradead.org>
18030 L: iommu@lists.linux-foundation.org
18032 W: http://git.infradead.org/users/hch/dma-mapping.git
18033 T: git git://git.infradead.org/users/hch/dma-mapping.git
18034 F: arch/*/kernel/pci-swiotlb.c
18035 F: include/linux/swiotlb.h
18036 F: kernel/dma/swiotlb.c
18039 M: Jiri Pirko <jiri@resnulli.us>
18040 M: Ivan Vecera <ivecera@redhat.com>
18041 L: netdev@vger.kernel.org
18043 F: include/net/switchdev.h
18046 SY8106A REGULATOR DRIVER
18047 M: Icenowy Zheng <icenowy@aosc.io>
18049 F: Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18050 F: drivers/regulator/sy8106a-regulator.c
18052 SYNC FILE FRAMEWORK
18053 M: Sumit Semwal <sumit.semwal@linaro.org>
18054 R: Gustavo Padovan <gustavo@padovan.org>
18055 L: linux-media@vger.kernel.org
18056 L: dri-devel@lists.freedesktop.org
18058 T: git git://anongit.freedesktop.org/drm/drm-misc
18059 F: Documentation/driver-api/sync_file.rst
18060 F: drivers/dma-buf/dma-fence*
18061 F: drivers/dma-buf/sw_sync.c
18062 F: drivers/dma-buf/sync_*
18063 F: include/linux/sync_file.h
18064 F: include/uapi/linux/sync_file.h
18066 SYNOPSYS ARC ARCHITECTURE
18067 M: Vineet Gupta <vgupta@kernel.org>
18068 L: linux-snps-arc@lists.infradead.org
18070 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18071 F: Documentation/devicetree/bindings/arc/*
18072 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18074 F: drivers/clocksource/arc_timer.c
18075 F: drivers/tty/serial/arc_uart.c
18077 SYNOPSYS ARC HSDK SDP pll clock driver
18078 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18080 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18081 F: drivers/clk/clk-hsdk-pll.c
18083 SYNOPSYS ARC SDP clock driver
18084 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18086 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18087 F: drivers/clk/axs10x/*
18089 SYNOPSYS ARC SDP platform support
18090 M: Alexey Brodkin <abrodkin@synopsys.com>
18092 F: Documentation/devicetree/bindings/arc/axs10*
18093 F: arch/arc/boot/dts/ax*
18094 F: arch/arc/plat-axs10x
18096 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18097 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18099 F: Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18100 F: drivers/reset/reset-axs10x.c
18102 SYNOPSYS CREG GPIO DRIVER
18103 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18105 F: Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18106 F: drivers/gpio/gpio-creg-snps.c
18108 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18109 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18111 F: drivers/tty/serial/8250/8250_dw.c
18112 F: drivers/tty/serial/8250/8250_dwlib.*
18113 F: drivers/tty/serial/8250/8250_lpss.c
18115 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18116 M: Hoan Tran <hoan@os.amperecomputing.com>
18117 M: Serge Semin <fancer.lancer@gmail.com>
18118 L: linux-gpio@vger.kernel.org
18120 F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18121 F: drivers/gpio/gpio-dwapb.c
18123 SYNOPSYS DESIGNWARE APB SSI DRIVER
18124 M: Serge Semin <fancer.lancer@gmail.com>
18125 L: linux-spi@vger.kernel.org
18127 F: Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18128 F: drivers/spi/spi-dw*
18130 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18131 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18133 F: Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18134 F: drivers/dma/dw-axi-dmac/
18136 SYNOPSYS DESIGNWARE DMAC DRIVER
18137 M: Viresh Kumar <vireshk@kernel.org>
18138 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18140 F: Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18142 F: include/dt-bindings/dma/dw-dmac.h
18143 F: include/linux/dma/dw.h
18144 F: include/linux/platform_data/dma-dw.h
18146 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18147 M: Jose Abreu <Jose.Abreu@synopsys.com>
18148 L: netdev@vger.kernel.org
18150 F: drivers/net/ethernet/synopsys/
18152 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18153 M: Jose Abreu <Jose.Abreu@synopsys.com>
18154 L: netdev@vger.kernel.org
18156 F: drivers/net/pcs/pcs-xpcs.c
18157 F: drivers/net/pcs/pcs-xpcs.h
18158 F: include/linux/pcs/pcs-xpcs.h
18160 SYNOPSYS DESIGNWARE I2C DRIVER
18161 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
18162 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18163 R: Mika Westerberg <mika.westerberg@linux.intel.com>
18164 L: linux-i2c@vger.kernel.org
18166 F: drivers/i2c/busses/i2c-designware-*
18168 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18169 M: Jaehoon Chung <jh80.chung@samsung.com>
18170 L: linux-mmc@vger.kernel.org
18172 F: drivers/mmc/host/dw_mmc*
18174 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18175 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18177 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18178 F: drivers/reset/reset-hsdk.c
18179 F: include/dt-bindings/reset/snps,hsdk-reset.h
18181 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18182 M: Prabu Thangamuthu <prabu.t@synopsys.com>
18183 M: Manjunath M B <manjumb@synopsys.com>
18184 L: linux-mmc@vger.kernel.org
18186 F: drivers/mmc/host/sdhci-pci-dwc-mshc.c
18188 SYSTEM CONFIGURATION (SYSCON)
18189 M: Lee Jones <lee.jones@linaro.org>
18190 M: Arnd Bergmann <arnd@arndb.de>
18192 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18193 F: drivers/mfd/syscon.c
18195 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18196 M: Sudeep Holla <sudeep.holla@arm.com>
18197 R: Cristian Marussi <cristian.marussi@arm.com>
18198 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18200 F: Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18201 F: drivers/clk/clk-sc[mp]i.c
18202 F: drivers/cpufreq/sc[mp]i-cpufreq.c
18203 F: drivers/firmware/arm_scmi/
18204 F: drivers/firmware/arm_scpi.c
18205 F: drivers/regulator/scmi-regulator.c
18206 F: drivers/reset/reset-scmi.c
18207 F: include/linux/sc[mp]i_protocol.h
18208 F: include/trace/events/scmi.h
18209 F: include/uapi/linux/virtio_scmi.h
18211 SYSTEM RESET/SHUTDOWN DRIVERS
18212 M: Sebastian Reichel <sre@kernel.org>
18213 L: linux-pm@vger.kernel.org
18215 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18216 F: Documentation/devicetree/bindings/power/reset/
18217 F: drivers/power/reset/
18219 SYSTEM TRACE MODULE CLASS
18220 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
18222 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18223 F: Documentation/trace/stm.rst
18224 F: drivers/hwtracing/stm/
18225 F: include/linux/stm.h
18226 F: include/uapi/linux/stm.h
18228 SYSTEM76 ACPI DRIVER
18229 M: Jeremy Soller <jeremy@system76.com>
18230 M: System76 Product Development <productdev@system76.com>
18231 L: platform-driver-x86@vger.kernel.org
18233 F: drivers/platform/x86/system76_acpi.c
18236 M: Christoph Hellwig <hch@infradead.org>
18238 F: Documentation/filesystems/sysv-fs.rst
18240 F: include/linux/sysv_fs.h
18242 TASKSTATS STATISTICS INTERFACE
18243 M: Balbir Singh <bsingharora@gmail.com>
18245 F: Documentation/accounting/taskstats*
18246 F: include/linux/taskstats*
18247 F: kernel/taskstats.c
18250 M: Jamal Hadi Salim <jhs@mojatatu.com>
18251 M: Cong Wang <xiyou.wangcong@gmail.com>
18252 M: Jiri Pirko <jiri@resnulli.us>
18253 L: netdev@vger.kernel.org
18255 F: include/net/pkt_cls.h
18256 F: include/net/pkt_sched.h
18257 F: include/net/tc_act/
18258 F: include/uapi/linux/pkt_cls.h
18259 F: include/uapi/linux/pkt_sched.h
18260 F: include/uapi/linux/tc_act/
18261 F: include/uapi/linux/tc_ematch/
18264 TC90522 MEDIA DRIVER
18265 M: Akihiro Tsukada <tskd08@gmail.com>
18266 L: linux-media@vger.kernel.org
18268 F: drivers/media/dvb-frontends/tc90522*
18270 TCP LOW PRIORITY MODULE
18271 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18272 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18274 W: http://tcp-lp-mod.sourceforge.net/
18275 F: net/ipv4/tcp_lp.c
18277 TDA10071 MEDIA DRIVER
18278 M: Antti Palosaari <crope@iki.fi>
18279 L: linux-media@vger.kernel.org
18281 W: https://linuxtv.org
18282 W: http://palosaari.fi/linux/
18283 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18284 T: git git://linuxtv.org/anttip/media_tree.git
18285 F: drivers/media/dvb-frontends/tda10071*
18287 TDA18212 MEDIA DRIVER
18288 M: Antti Palosaari <crope@iki.fi>
18289 L: linux-media@vger.kernel.org
18291 W: https://linuxtv.org
18292 W: http://palosaari.fi/linux/
18293 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18294 T: git git://linuxtv.org/anttip/media_tree.git
18295 F: drivers/media/tuners/tda18212*
18297 TDA18218 MEDIA DRIVER
18298 M: Antti Palosaari <crope@iki.fi>
18299 L: linux-media@vger.kernel.org
18301 W: https://linuxtv.org
18302 W: http://palosaari.fi/linux/
18303 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18304 T: git git://linuxtv.org/anttip/media_tree.git
18305 F: drivers/media/tuners/tda18218*
18307 TDA18250 MEDIA DRIVER
18308 M: Olli Salonen <olli.salonen@iki.fi>
18309 L: linux-media@vger.kernel.org
18311 W: https://linuxtv.org
18312 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18313 T: git git://linuxtv.org/media_tree.git
18314 F: drivers/media/tuners/tda18250*
18316 TDA18271 MEDIA DRIVER
18317 M: Michael Krufky <mkrufky@linuxtv.org>
18318 L: linux-media@vger.kernel.org
18320 W: https://linuxtv.org
18321 W: http://github.com/mkrufky
18322 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18323 T: git git://linuxtv.org/mkrufky/tuners.git
18324 F: drivers/media/tuners/tda18271*
18326 TDA1997x MEDIA DRIVER
18327 M: Tim Harvey <tharvey@gateworks.com>
18328 L: linux-media@vger.kernel.org
18330 W: https://linuxtv.org
18331 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18332 F: drivers/media/i2c/tda1997x.*
18334 TDA827x MEDIA DRIVER
18335 M: Michael Krufky <mkrufky@linuxtv.org>
18336 L: linux-media@vger.kernel.org
18338 W: https://linuxtv.org
18339 W: http://github.com/mkrufky
18340 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18341 T: git git://linuxtv.org/mkrufky/tuners.git
18342 F: drivers/media/tuners/tda8290.*
18344 TDA8290 MEDIA DRIVER
18345 M: Michael Krufky <mkrufky@linuxtv.org>
18346 L: linux-media@vger.kernel.org
18348 W: https://linuxtv.org
18349 W: http://github.com/mkrufky
18350 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18351 T: git git://linuxtv.org/mkrufky/tuners.git
18352 F: drivers/media/tuners/tda8290.*
18354 TDA9840 MEDIA DRIVER
18355 M: Hans Verkuil <hverkuil@xs4all.nl>
18356 L: linux-media@vger.kernel.org
18358 W: https://linuxtv.org
18359 T: git git://linuxtv.org/media_tree.git
18360 F: drivers/media/i2c/tda9840*
18362 TEA5761 TUNER DRIVER
18363 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18364 L: linux-media@vger.kernel.org
18366 W: https://linuxtv.org
18367 T: git git://linuxtv.org/media_tree.git
18368 F: drivers/media/tuners/tea5761.*
18370 TEA5767 TUNER DRIVER
18371 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18372 L: linux-media@vger.kernel.org
18374 W: https://linuxtv.org
18375 T: git git://linuxtv.org/media_tree.git
18376 F: drivers/media/tuners/tea5767.*
18378 TEA6415C MEDIA DRIVER
18379 M: Hans Verkuil <hverkuil@xs4all.nl>
18380 L: linux-media@vger.kernel.org
18382 W: https://linuxtv.org
18383 T: git git://linuxtv.org/media_tree.git
18384 F: drivers/media/i2c/tea6415c*
18386 TEA6420 MEDIA DRIVER
18387 M: Hans Verkuil <hverkuil@xs4all.nl>
18388 L: linux-media@vger.kernel.org
18390 W: https://linuxtv.org
18391 T: git git://linuxtv.org/media_tree.git
18392 F: drivers/media/i2c/tea6420*
18395 M: Jiri Pirko <jiri@resnulli.us>
18396 L: netdev@vger.kernel.org
18398 F: drivers/net/team/
18399 F: include/linux/if_team.h
18400 F: include/uapi/linux/if_team.h
18402 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18403 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18405 F: arch/x86/platform/ts5500/
18407 TECHNOTREND USB IR RECEIVER
18408 M: Sean Young <sean@mess.org>
18409 L: linux-media@vger.kernel.org
18411 F: drivers/media/rc/ttusbir.c
18413 TECHWELL TW9910 VIDEO DECODER
18414 L: linux-media@vger.kernel.org
18416 F: drivers/media/i2c/tw9910.c
18417 F: include/media/i2c/tw9910.h
18420 M: Jens Wiklander <jens.wiklander@linaro.org>
18421 R: Sumit Garg <sumit.garg@linaro.org>
18422 L: op-tee@lists.trustedfirmware.org
18424 F: Documentation/staging/tee.rst
18426 F: include/linux/tee_drv.h
18427 F: include/uapi/linux/tee.h
18429 TEGRA ARCHITECTURE SUPPORT
18430 M: Thierry Reding <thierry.reding@gmail.com>
18431 M: Jonathan Hunter <jonathanh@nvidia.com>
18432 L: linux-tegra@vger.kernel.org
18434 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
18435 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18439 M: Peter De Schrijver <pdeschrijver@nvidia.com>
18440 M: Prashant Gaikwad <pgaikwad@nvidia.com>
18442 F: drivers/clk/tegra/
18445 M: Laxman Dewangan <ldewangan@nvidia.com>
18446 M: Jon Hunter <jonathanh@nvidia.com>
18448 F: drivers/dma/tegra*
18451 M: Laxman Dewangan <ldewangan@nvidia.com>
18452 R: Dmitry Osipenko <digetx@gmail.com>
18454 F: drivers/i2c/busses/i2c-tegra.c
18456 TEGRA IOMMU DRIVERS
18457 M: Thierry Reding <thierry.reding@gmail.com>
18458 R: Krishna Reddy <vdumpa@nvidia.com>
18459 L: linux-tegra@vger.kernel.org
18461 F: drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18462 F: drivers/iommu/tegra*
18465 M: Laxman Dewangan <ldewangan@nvidia.com>
18467 F: drivers/input/keyboard/tegra-kbc.c
18470 M: Stefan Agner <stefan@agner.ch>
18471 M: Lucas Stach <dev@lynxeye.de>
18473 F: Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18474 F: drivers/mtd/nand/raw/tegra_nand.c
18477 M: Thierry Reding <thierry.reding@gmail.com>
18479 F: drivers/pwm/pwm-tegra.c
18481 TEGRA SERIAL DRIVER
18482 M: Laxman Dewangan <ldewangan@nvidia.com>
18484 F: drivers/tty/serial/serial-tegra.c
18487 M: Laxman Dewangan <ldewangan@nvidia.com>
18489 F: drivers/spi/spi-tegra*
18491 TEGRA QUAD SPI DRIVER
18492 M: Thierry Reding <thierry.reding@gmail.com>
18493 M: Jonathan Hunter <jonathanh@nvidia.com>
18494 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18495 L: linux-tegra@vger.kernel.org
18497 F: drivers/spi/spi-tegra210-quad.c
18500 M: Thierry Reding <thierry.reding@gmail.com>
18501 M: Jonathan Hunter <jonathanh@nvidia.com>
18502 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18503 L: linux-media@vger.kernel.org
18504 L: linux-tegra@vger.kernel.org
18506 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18507 F: drivers/staging/media/tegra-video/
18509 TEGRA XUSB PADCTL DRIVER
18510 M: JC Kuo <jckuo@nvidia.com>
18512 F: drivers/phy/tegra/xusb*
18514 TEHUTI ETHERNET DRIVER
18515 M: Andy Gospodarek <andy@greyhouse.net>
18516 L: netdev@vger.kernel.org
18518 F: drivers/net/ethernet/tehuti/*
18520 TELECOM CLOCK DRIVER FOR MCPL0010
18521 M: Mark Gross <mark.gross@intel.com>
18523 F: drivers/char/tlclk.c
18525 TEMPO SEMICONDUCTOR DRIVERS
18526 M: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18528 F: Documentation/devicetree/bindings/sound/tscs*.txt
18529 F: sound/soc/codecs/tscs*.c
18530 F: sound/soc/codecs/tscs*.h
18532 TENSILICA XTENSA PORT (xtensa)
18533 M: Chris Zankel <chris@zankel.net>
18534 M: Max Filippov <jcmvbkbc@gmail.com>
18535 L: linux-xtensa@linux-xtensa.org
18537 T: git git://github.com/czankel/xtensa-linux.git
18539 F: drivers/irqchip/irq-xtensa-*
18541 TEXAS INSTRUMENTS ASoC DRIVERS
18542 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18543 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18547 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18548 M: Ricardo Ribalda <ribalda@kernel.org>
18549 L: linux-iio@vger.kernel.org
18551 F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18552 F: drivers/iio/dac/ti-dac7612.c
18554 TEXAS INSTRUMENTS DMA DRIVERS
18555 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18556 L: dmaengine@vger.kernel.org
18558 F: Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18559 F: Documentation/devicetree/bindings/dma/ti-edma.txt
18560 F: Documentation/devicetree/bindings/dma/ti/
18562 X: drivers/dma/ti/cppi41.c
18563 F: include/linux/dma/k3-udma-glue.h
18564 F: include/linux/dma/ti-cppi5.h
18565 F: include/linux/dma/k3-psil.h
18567 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18568 M: Nishanth Menon <nm@ti.com>
18569 M: Tero Kristo <kristo@kernel.org>
18570 M: Santosh Shilimkar <ssantosh@kernel.org>
18571 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18573 F: Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18574 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18575 F: Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18576 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18577 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18578 F: Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18579 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18580 F: drivers/clk/keystone/sci-clk.c
18581 F: drivers/firmware/ti_sci*
18582 F: drivers/irqchip/irq-ti-sci-inta.c
18583 F: drivers/irqchip/irq-ti-sci-intr.c
18584 F: drivers/reset/reset-ti-sci.c
18585 F: drivers/soc/ti/ti_sci_inta_msi.c
18586 F: drivers/soc/ti/ti_sci_pm_domains.c
18587 F: include/dt-bindings/soc/ti,sci_pm_domain.h
18588 F: include/linux/soc/ti/ti_sci_inta_msi.h
18589 F: include/linux/soc/ti/ti_sci_protocol.h
18591 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18592 M: Robert Marko <robert.marko@sartura.hr>
18593 M: Luka Perkov <luka.perkov@sartura.hr>
18594 L: linux-hwmon@vger.kernel.org
18596 F: Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18597 F: Documentation/hwmon/tps23861.rst
18598 F: drivers/hwmon/tps23861.c
18600 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18601 M: Puranjay Mohan <puranjay12@gmail.com>
18602 L: linux-iio@vger.kernel.org
18604 F: Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18605 F: drivers/iio/temperature/tmp117.c
18607 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18608 M: Hans Verkuil <hverkuil@xs4all.nl>
18609 L: linux-media@vger.kernel.org
18611 W: https://linuxtv.org
18612 T: git git://linuxtv.org/media_tree.git
18613 F: drivers/media/radio/radio-raremono.c
18616 M: Rafael J. Wysocki <rafael@kernel.org>
18617 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18618 R: Amit Kucheria <amitk@kernel.org>
18619 R: Zhang Rui <rui.zhang@intel.com>
18620 L: linux-pm@vger.kernel.org
18622 Q: https://patchwork.kernel.org/project/linux-pm/list/
18623 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18624 F: Documentation/devicetree/bindings/thermal/
18625 F: drivers/thermal/
18626 F: include/linux/cpu_cooling.h
18627 F: include/linux/thermal.h
18628 F: include/uapi/linux/thermal.h
18631 THERMAL DRIVER FOR AMLOGIC SOCS
18632 M: Guillaume La Roque <glaroque@baylibre.com>
18633 L: linux-pm@vger.kernel.org
18634 L: linux-amlogic@lists.infradead.org
18636 W: http://linux-meson.com/
18637 F: Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18638 F: drivers/thermal/amlogic_thermal.c
18640 THERMAL/CPU_COOLING
18641 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
18642 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18643 M: Viresh Kumar <viresh.kumar@linaro.org>
18644 R: Lukasz Luba <lukasz.luba@arm.com>
18645 L: linux-pm@vger.kernel.org
18647 F: Documentation/driver-api/thermal/cpu-cooling-api.rst
18648 F: Documentation/driver-api/thermal/cpu-idle-cooling.rst
18649 F: drivers/thermal/cpufreq_cooling.c
18650 F: drivers/thermal/cpuidle_cooling.c
18651 F: include/linux/cpu_cooling.h
18653 THERMAL/POWER_ALLOCATOR
18654 M: Lukasz Luba <lukasz.luba@arm.com>
18655 L: linux-pm@vger.kernel.org
18657 F: Documentation/driver-api/thermal/power_allocator.rst
18658 F: drivers/thermal/gov_power_allocator.c
18659 F: include/trace/events/thermal_power_allocator.h
18661 THINKPAD ACPI EXTRAS DRIVER
18662 M: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18663 L: ibm-acpi-devel@lists.sourceforge.net
18664 L: platform-driver-x86@vger.kernel.org
18666 W: http://ibm-acpi.sourceforge.net
18667 W: http://thinkwiki.org/wiki/Ibm-acpi
18668 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18669 F: drivers/platform/x86/thinkpad_acpi.c
18671 THINKPAD LMI DRIVER
18672 M: Mark Pearson <markpearson@lenovo.com>
18673 L: platform-driver-x86@vger.kernel.org
18675 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
18676 F: drivers/platform/x86/think-lmi.?
18678 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18679 M: Isaac Hazan <isaac.hazan@intel.com>
18680 L: linux-usb@vger.kernel.org
18682 F: drivers/thunderbolt/dma_test.c
18685 M: Andreas Noever <andreas.noever@gmail.com>
18686 M: Michael Jamet <michael.jamet@intel.com>
18687 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18688 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18689 L: linux-usb@vger.kernel.org
18691 T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18692 F: Documentation/admin-guide/thunderbolt.rst
18693 F: drivers/thunderbolt/
18694 F: include/linux/thunderbolt.h
18696 THUNDERBOLT NETWORK DRIVER
18697 M: Michael Jamet <michael.jamet@intel.com>
18698 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18699 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18700 L: netdev@vger.kernel.org
18702 F: drivers/net/thunderbolt.c
18704 THUNDERX GPIO DRIVER
18705 M: Robert Richter <rric@kernel.org>
18707 F: drivers/gpio/gpio-thunderx.c
18709 TI ADS131E0X ADC SERIES DRIVER
18710 M: Tomislav Denis <tomislav.denis@avl.com>
18711 L: linux-iio@vger.kernel.org
18713 F: Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18714 F: drivers/iio/adc/ti-ads131e08.c
18716 TI AM437X VPFE DRIVER
18717 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18718 L: linux-media@vger.kernel.org
18720 W: https://linuxtv.org
18721 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18722 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18723 F: drivers/media/platform/am437x/
18725 TI BANDGAP AND THERMAL DRIVER
18726 M: Eduardo Valentin <edubezval@gmail.com>
18727 M: Keerthy <j-keerthy@ti.com>
18728 L: linux-pm@vger.kernel.org
18729 L: linux-omap@vger.kernel.org
18731 F: drivers/thermal/ti-soc-thermal/
18733 TI BQ27XXX POWER SUPPLY DRIVER
18734 F: drivers/power/supply/bq27xxx_battery.c
18735 F: drivers/power/supply/bq27xxx_battery_i2c.c
18736 F: include/linux/power/bq27xxx_battery.h
18738 TI CDCE706 CLOCK DRIVER
18739 M: Max Filippov <jcmvbkbc@gmail.com>
18741 F: drivers/clk/clk-cdce706.c
18744 M: Tero Kristo <kristo@kernel.org>
18745 L: linux-omap@vger.kernel.org
18748 F: include/linux/clk/ti.h
18750 TI DAVINCI MACHINE SUPPORT
18751 M: Sekhar Nori <nsekhar@ti.com>
18752 R: Bartosz Golaszewski <brgl@bgdev.pl>
18753 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18755 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18756 F: Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18757 F: arch/arm/boot/dts/da850*
18758 F: arch/arm/mach-davinci/
18759 F: drivers/i2c/busses/i2c-davinci.c
18761 TI DAVINCI SERIES CLOCK DRIVER
18762 M: David Lechner <david@lechnology.com>
18763 R: Sekhar Nori <nsekhar@ti.com>
18765 F: Documentation/devicetree/bindings/clock/ti/davinci/
18766 F: drivers/clk/davinci/
18768 TI DAVINCI SERIES GPIO DRIVER
18769 M: Keerthy <j-keerthy@ti.com>
18770 L: linux-gpio@vger.kernel.org
18772 F: Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18773 F: drivers/gpio/gpio-davinci.c
18775 TI DAVINCI SERIES MEDIA DRIVER
18776 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18777 L: linux-media@vger.kernel.org
18779 W: https://linuxtv.org
18780 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18781 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18782 F: drivers/media/platform/davinci/
18783 F: include/media/davinci/
18785 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18786 R: David Lechner <david@lechnology.com>
18787 L: linux-iio@vger.kernel.org
18788 F: Documentation/devicetree/bindings/counter/ti-eqep.yaml
18789 F: drivers/counter/ti-eqep.c
18791 TI ETHERNET SWITCH DRIVER (CPSW)
18792 R: Grygorii Strashko <grygorii.strashko@ti.com>
18793 L: linux-omap@vger.kernel.org
18794 L: netdev@vger.kernel.org
18796 F: drivers/net/ethernet/ti/cpsw*
18797 F: drivers/net/ethernet/ti/davinci*
18799 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18800 M: Alex Dubov <oakad@yahoo.com>
18802 W: http://tifmxx.berlios.de/
18803 F: drivers/memstick/host/tifm_ms.c
18804 F: drivers/misc/tifm*
18805 F: drivers/mmc/host/tifm_sd.c
18806 F: include/linux/tifm.h
18808 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18809 M: Santosh Shilimkar <ssantosh@kernel.org>
18810 L: linux-kernel@vger.kernel.org
18811 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18813 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18814 F: drivers/soc/ti/*
18816 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18817 M: M R Swami Reddy <mr.swami.reddy@ti.com>
18818 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18819 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18821 F: sound/soc/codecs/isabelle*
18822 F: sound/soc/codecs/lm49453*
18824 TI PCM3060 ASoC CODEC DRIVER
18825 M: Kirill Marinushkin <kmarinushkin@birdec.com>
18826 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18828 F: Documentation/devicetree/bindings/sound/pcm3060.txt
18829 F: sound/soc/codecs/pcm3060*
18831 TI TAS571X FAMILY ASoC CODEC DRIVER
18832 M: Kevin Cernekee <cernekee@chromium.org>
18833 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18835 F: sound/soc/codecs/tas571x*
18837 TI TRF7970A NFC DRIVER
18838 M: Mark Greer <mgreer@animalcreek.com>
18839 L: linux-wireless@vger.kernel.org
18840 L: linux-nfc@lists.01.org (subscribers-only)
18842 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18843 F: drivers/nfc/trf7970a.c
18845 TI TSC2046 ADC DRIVER
18846 M: Oleksij Rempel <o.rempel@pengutronix.de>
18847 R: kernel@pengutronix.de
18848 L: linux-iio@vger.kernel.org
18850 F: Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18851 F: drivers/iio/adc/ti-tsc2046.c
18853 TI TWL4030 SERIES SOC CODEC DRIVER
18854 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18855 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18857 F: sound/soc/codecs/twl4030*
18860 M: Benoit Parrot <bparrot@ti.com>
18861 L: linux-media@vger.kernel.org
18863 W: http://linuxtv.org/
18864 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18865 F: Documentation/devicetree/bindings/media/ti,cal.yaml
18866 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
18867 F: drivers/media/platform/ti-vpe/
18869 TI WILINK WIRELESS DRIVERS
18870 L: linux-wireless@vger.kernel.org
18872 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18873 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18874 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18875 F: drivers/net/wireless/ti/
18876 F: include/linux/wl12xx.h
18878 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18879 M: John Stultz <john.stultz@linaro.org>
18880 M: Thomas Gleixner <tglx@linutronix.de>
18881 R: Stephen Boyd <sboyd@kernel.org>
18882 L: linux-kernel@vger.kernel.org
18884 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18885 F: include/linux/clocksource.h
18886 F: include/linux/time.h
18887 F: include/linux/timex.h
18888 F: include/uapi/linux/time.h
18889 F: include/uapi/linux/timex.h
18890 F: kernel/time/alarmtimer.c
18891 F: kernel/time/clocksource.c
18892 F: kernel/time/ntp.c
18893 F: kernel/time/time*.c
18894 F: tools/testing/selftests/timers/
18897 M: Jon Maloy <jmaloy@redhat.com>
18898 M: Ying Xue <ying.xue@windriver.com>
18899 L: netdev@vger.kernel.org (core kernel code)
18900 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18902 W: http://tipc.sourceforge.net/
18903 F: include/uapi/linux/tipc*.h
18906 TLAN NETWORK DRIVER
18907 M: Samuel Chessman <chessman@tux.org>
18908 L: tlan-devel@lists.sourceforge.net (subscribers-only)
18910 W: http://sourceforge.net/projects/tlan/
18911 F: Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18912 F: drivers/net/ethernet/ti/tlan.*
18914 TM6000 VIDEO4LINUX DRIVER
18915 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18916 L: linux-media@vger.kernel.org
18918 W: https://linuxtv.org
18919 T: git git://linuxtv.org/media_tree.git
18920 F: Documentation/admin-guide/media/tm6000*
18921 F: drivers/media/usb/tm6000/
18923 TMIO/SDHI MMC DRIVER
18924 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
18925 L: linux-mmc@vger.kernel.org
18927 F: drivers/mmc/host/renesas_sdhi*
18928 F: drivers/mmc/host/tmio_mmc*
18929 F: include/linux/mfd/tmio.h
18931 TMP401 HARDWARE MONITOR DRIVER
18932 M: Guenter Roeck <linux@roeck-us.net>
18933 L: linux-hwmon@vger.kernel.org
18935 F: Documentation/hwmon/tmp401.rst
18936 F: drivers/hwmon/tmp401.c
18938 TMP513 HARDWARE MONITOR DRIVER
18939 M: Eric Tremblay <etremblay@distech-controls.com>
18940 L: linux-hwmon@vger.kernel.org
18942 F: Documentation/hwmon/tmp513.rst
18943 F: drivers/hwmon/tmp513.c
18945 TMPFS (SHMEM FILESYSTEM)
18946 M: Hugh Dickins <hughd@google.com>
18947 L: linux-mm@kvack.org
18949 F: include/linux/shmem_fs.h
18952 TOMOYO SECURITY MODULE
18953 M: Kentaro Takeda <takedakn@nttdata.co.jp>
18954 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18955 L: tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18956 L: tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18957 L: tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18958 L: tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18960 W: https://tomoyo.osdn.jp/
18961 F: security/tomoyo/
18963 TOPSTAR LAPTOP EXTRAS DRIVER
18964 M: Herton Ronaldo Krzesinski <herton@canonical.com>
18965 L: platform-driver-x86@vger.kernel.org
18967 F: drivers/platform/x86/topstar-laptop.c
18969 TORTURE-TEST MODULES
18970 M: Davidlohr Bueso <dave@stgolabs.net>
18971 M: "Paul E. McKenney" <paulmck@kernel.org>
18972 M: Josh Triplett <josh@joshtriplett.org>
18973 L: linux-kernel@vger.kernel.org
18975 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18976 F: Documentation/RCU/torture.rst
18977 F: kernel/locking/locktorture.c
18978 F: kernel/rcu/rcuscale.c
18979 F: kernel/rcu/rcutorture.c
18980 F: kernel/rcu/refscale.c
18981 F: kernel/torture.c
18983 TOSHIBA ACPI EXTRAS DRIVER
18984 M: Azael Avalos <coproscefalo@gmail.com>
18985 L: platform-driver-x86@vger.kernel.org
18987 F: drivers/platform/x86/toshiba_acpi.c
18989 TOSHIBA BLUETOOTH DRIVER
18990 M: Azael Avalos <coproscefalo@gmail.com>
18991 L: platform-driver-x86@vger.kernel.org
18993 F: drivers/platform/x86/toshiba_bluetooth.c
18995 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18996 M: Azael Avalos <coproscefalo@gmail.com>
18997 L: platform-driver-x86@vger.kernel.org
18999 F: drivers/platform/x86/toshiba_haps.c
19002 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
19004 W: http://www.buzzard.org.uk/toshiba/
19005 F: drivers/char/toshiba.c
19006 F: include/linux/toshiba.h
19007 F: include/uapi/linux/toshiba.h
19009 TOSHIBA TC358743 DRIVER
19010 M: Mats Randgaard <matrandg@cisco.com>
19011 L: linux-media@vger.kernel.org
19013 F: drivers/media/i2c/tc358743*
19014 F: include/media/i2c/tc358743.h
19016 TOSHIBA WMI HOTKEYS DRIVER
19017 M: Azael Avalos <coproscefalo@gmail.com>
19018 L: platform-driver-x86@vger.kernel.org
19020 F: drivers/platform/x86/toshiba-wmi.c
19023 M: Peter Huewe <peterhuewe@gmx.de>
19024 M: Jarkko Sakkinen <jarkko@kernel.org>
19025 R: Jason Gunthorpe <jgg@ziepe.ca>
19026 L: linux-integrity@vger.kernel.org
19028 W: https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19029 Q: https://patchwork.kernel.org/project/linux-integrity/list/
19030 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19031 F: drivers/char/tpm/
19034 M: Steven Rostedt <rostedt@goodmis.org>
19035 M: Ingo Molnar <mingo@redhat.com>
19037 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
19038 F: Documentation/trace/ftrace.rst
19039 F: arch/*/*/*/ftrace.h
19040 F: arch/*/kernel/ftrace.c
19042 F: include/*/ftrace.h
19043 F: include/linux/trace*.h
19046 F: tools/testing/selftests/ftrace/
19048 TRACING MMIO ACCESSES (MMIOTRACE)
19049 M: Steven Rostedt <rostedt@goodmis.org>
19050 M: Ingo Molnar <mingo@kernel.org>
19051 R: Karol Herbst <karolherbst@gmail.com>
19052 R: Pekka Paalanen <ppaalanen@gmail.com>
19053 L: linux-kernel@vger.kernel.org
19054 L: nouveau@lists.freedesktop.org
19056 F: arch/x86/mm/kmmio.c
19057 F: arch/x86/mm/mmio-mod.c
19058 F: arch/x86/mm/testmmiotrace.c
19059 F: include/linux/mmiotrace.h
19060 F: kernel/trace/trace_mmiotrace.c
19062 TRACING OS NOISE / LATENCY TRACERS
19063 M: Steven Rostedt <rostedt@goodmis.org>
19064 M: Daniel Bristot de Oliveira <bristot@kernel.org>
19066 F: kernel/trace/trace_osnoise.c
19067 F: include/trace/events/osnoise.h
19068 F: kernel/trace/trace_hwlat.c
19069 F: kernel/trace/trace_irqsoff.c
19070 F: kernel/trace/trace_sched_wakeup.c
19071 F: Documentation/trace/osnoise-tracer.rst
19072 F: Documentation/trace/timerlat-tracer.rst
19073 F: Documentation/trace/hwlat_detector.rst
19074 F: arch/*/kernel/trace.c
19076 TRADITIONAL CHINESE DOCUMENTATION
19077 M: Hu Haowen <src.res@email.cn>
19078 L: linux-doc-tw-discuss@lists.sourceforge.net
19080 W: https://github.com/srcres258/linux-doc
19081 T: git git://github.com/srcres258/linux-doc.git doc-zh-tw
19082 F: Documentation/translations/zh_TW/
19085 M: Jiri Kosina <trivial@kernel.org>
19087 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19088 K: ^Subject:.*(?i)trivial
19091 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19092 M: Jiri Slaby <jirislaby@kernel.org>
19094 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19095 F: Documentation/driver-api/serial/
19097 F: drivers/tty/serial/serial_core.c
19098 F: include/linux/selection.h
19099 F: include/linux/serial.h
19100 F: include/linux/serial_core.h
19101 F: include/linux/sysrq.h
19102 F: include/linux/tty*.h
19103 F: include/linux/vt.h
19104 F: include/linux/vt_*.h
19105 F: include/uapi/linux/serial.h
19106 F: include/uapi/linux/serial_core.h
19107 F: include/uapi/linux/tty.h
19109 TUA9001 MEDIA DRIVER
19110 M: Antti Palosaari <crope@iki.fi>
19111 L: linux-media@vger.kernel.org
19113 W: https://linuxtv.org
19114 W: http://palosaari.fi/linux/
19115 Q: http://patchwork.linuxtv.org/project/linux-media/list/
19116 T: git git://linuxtv.org/anttip/media_tree.git
19117 F: drivers/media/tuners/tua9001*
19119 TULIP NETWORK DRIVERS
19120 L: netdev@vger.kernel.org
19121 L: linux-parisc@vger.kernel.org
19123 F: drivers/net/ethernet/dec/tulip/
19126 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
19128 W: http://vtun.sourceforge.net/tun
19129 F: Documentation/networking/tuntap.rst
19130 F: arch/um/os-Linux/drivers/
19132 TURBOCHANNEL SUBSYSTEM
19133 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
19134 M: Ralf Baechle <ralf@linux-mips.org>
19135 L: linux-mips@vger.kernel.org
19137 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
19139 F: include/linux/tc.h
19142 M: "Len Brown" <lenb@kernel.org>
19143 L: linux-pm@vger.kernel.org
19145 Q: https://patchwork.kernel.org/project/linux-pm/list/
19146 B: https://bugzilla.kernel.org
19147 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19148 F: tools/power/x86/turbostat/
19150 TW5864 VIDEO4LINUX DRIVER
19151 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19152 M: Anton Sviridenko <anton@corp.bluecherry.net>
19153 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19154 M: Andrey Utkin <andrey_utkin@fastmail.com>
19155 L: linux-media@vger.kernel.org
19157 F: drivers/media/pci/tw5864/
19159 TW68 VIDEO4LINUX DRIVER
19160 M: Hans Verkuil <hverkuil@xs4all.nl>
19161 L: linux-media@vger.kernel.org
19163 W: https://linuxtv.org
19164 T: git git://linuxtv.org/media_tree.git
19165 F: drivers/media/pci/tw68/
19167 TW686X VIDEO4LINUX DRIVER
19168 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19169 L: linux-media@vger.kernel.org
19171 W: http://linuxtv.org
19172 T: git git://linuxtv.org/media_tree.git
19173 F: drivers/media/pci/tw686x/
19175 UACCE ACCELERATOR FRAMEWORK
19176 M: Zhangfei Gao <zhangfei.gao@linaro.org>
19177 M: Zhou Wang <wangzhou1@hisilicon.com>
19178 L: linux-accelerators@lists.ozlabs.org
19179 L: linux-kernel@vger.kernel.org
19181 F: Documentation/ABI/testing/sysfs-driver-uacce
19182 F: Documentation/misc-devices/uacce.rst
19183 F: drivers/misc/uacce/
19184 F: include/linux/uacce.h
19185 F: include/uapi/misc/uacce/
19187 UBI FILE SYSTEM (UBIFS)
19188 M: Richard Weinberger <richard@nod.at>
19189 L: linux-mtd@lists.infradead.org
19191 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
19192 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19194 F: Documentation/filesystems/ubifs-authentication.rst
19195 F: Documentation/filesystems/ubifs.rst
19198 UCLINUX (M68KNOMMU AND COLDFIRE)
19199 M: Greg Ungerer <gerg@linux-m68k.org>
19200 L: linux-m68k@lists.linux-m68k.org
19201 L: uclinux-dev@uclinux.org (subscribers-only)
19203 W: http://www.linux-m68k.org/
19204 W: http://www.uclinux.org/
19205 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19206 F: arch/m68k/*/*_no.*
19208 F: arch/m68k/coldfire/
19209 F: arch/m68k/include/asm/*_no.*
19212 M: Jan Kara <jack@suse.com>
19214 F: Documentation/filesystems/udf.rst
19218 M: Bastien Nocera <hadess@hadess.net>
19219 L: linux-input@vger.kernel.org
19221 F: drivers/hid/hid-udraw-ps3.c
19224 M: Evgeniy Dushistov <dushistov@mail.ru>
19226 F: Documentation/admin-guide/ufs.rst
19229 UHID USERSPACE HID IO DRIVER
19230 M: David Rheinsberg <david.rheinsberg@gmail.com>
19231 L: linux-input@vger.kernel.org
19233 F: drivers/hid/uhid.c
19234 F: include/uapi/linux/uhid.h
19237 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19238 L: linux-usb@vger.kernel.org
19240 F: drivers/usb/common/ulpi.c
19241 F: include/linux/ulpi/
19244 M: Gabriel Krisman Bertazi <krisman@collabora.com>
19245 L: linux-fsdevel@vger.kernel.org
19250 M: Tony Finch <dot@dotat.at>
19252 W: http://dotat.at/prog/unifdef
19253 F: scripts/unifdef.c
19255 UNIFORM CDROM DRIVER
19256 M: Phillip Potter <phil@philpotter.co.uk>
19258 F: Documentation/cdrom/
19259 F: drivers/cdrom/cdrom.c
19260 F: include/linux/cdrom.h
19261 F: include/uapi/linux/cdrom.h
19263 UNISYS S-PAR DRIVERS
19264 M: David Kershner <david.kershner@unisys.com>
19265 L: sparmaintainer@unisys.com (Unisys internal)
19267 F: drivers/staging/unisys/
19268 F: drivers/visorbus/
19269 F: include/linux/visorbus.h
19271 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19272 R: Alim Akhtar <alim.akhtar@samsung.com>
19273 R: Avri Altman <avri.altman@wdc.com>
19274 L: linux-scsi@vger.kernel.org
19276 F: Documentation/scsi/ufs.rst
19277 F: drivers/scsi/ufs/
19279 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19280 M: Pedro Sousa <pedrom.sousa@synopsys.com>
19281 L: linux-scsi@vger.kernel.org
19283 F: drivers/scsi/ufs/*dwc*
19285 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19286 M: Stanley Chu <stanley.chu@mediatek.com>
19287 L: linux-scsi@vger.kernel.org
19288 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19290 F: drivers/scsi/ufs/ufs-mediatek*
19292 UNSORTED BLOCK IMAGES (UBI)
19293 M: Richard Weinberger <richard@nod.at>
19294 L: linux-mtd@lists.infradead.org
19296 W: http://www.linux-mtd.infradead.org/
19297 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19298 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19299 F: drivers/mtd/ubi/
19300 F: include/linux/mtd/ubi.h
19301 F: include/uapi/mtd/ubi-user.h
19303 USB "USBNET" DRIVER FRAMEWORK
19304 M: Oliver Neukum <oneukum@suse.com>
19305 L: netdev@vger.kernel.org
19307 W: http://www.linux-usb.org/usbnet
19308 F: drivers/net/usb/usbnet.c
19309 F: include/linux/usb/usbnet.h
19312 M: Oliver Neukum <oneukum@suse.com>
19313 L: linux-usb@vger.kernel.org
19315 F: Documentation/usb/acm.rst
19316 F: drivers/usb/class/cdc-acm.*
19318 USB APPLE MFI FASTCHARGE DRIVER
19319 M: Bastien Nocera <hadess@hadess.net>
19320 L: linux-usb@vger.kernel.org
19322 F: drivers/usb/misc/apple-mfi-fastcharge.c
19324 USB AR5523 WIRELESS DRIVER
19325 M: Pontus Fuchs <pontus.fuchs@gmail.com>
19326 L: linux-wireless@vger.kernel.org
19328 F: drivers/net/wireless/ath/ar5523/
19331 M: Oliver Neukum <oneukum@suse.com>
19332 L: linux-usb@vger.kernel.org
19333 L: linux-scsi@vger.kernel.org
19335 F: drivers/usb/storage/uas.c
19337 USB CDC ETHERNET DRIVER
19338 M: Oliver Neukum <oliver@neukum.org>
19339 L: linux-usb@vger.kernel.org
19341 F: drivers/net/usb/cdc_*.c
19342 F: include/uapi/linux/usb/cdc.h
19344 USB CHAOSKEY DRIVER
19345 M: Keith Packard <keithp@keithp.com>
19346 L: linux-usb@vger.kernel.org
19348 F: drivers/usb/misc/chaoskey.c
19350 USB CYPRESS C67X00 DRIVER
19351 L: linux-usb@vger.kernel.org
19353 F: drivers/usb/c67x00/
19355 USB DAVICOM DM9601 DRIVER
19356 M: Peter Korsgaard <peter@korsgaard.com>
19357 L: netdev@vger.kernel.org
19359 W: http://www.linux-usb.org/usbnet
19360 F: drivers/net/usb/dm9601.c
19363 M: Alan Stern <stern@rowland.harvard.edu>
19364 L: linux-usb@vger.kernel.org
19366 F: Documentation/usb/ehci.rst
19367 F: drivers/usb/host/ehci*
19369 USB GADGET/PERIPHERAL SUBSYSTEM
19370 M: Felipe Balbi <balbi@kernel.org>
19371 L: linux-usb@vger.kernel.org
19373 W: http://www.linux-usb.org/gadget
19374 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19375 F: drivers/usb/gadget/
19376 F: include/linux/usb/gadget*
19378 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19379 M: Jiri Kosina <jikos@kernel.org>
19380 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
19381 L: linux-usb@vger.kernel.org
19383 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19384 F: Documentation/hid/hiddev.rst
19385 F: drivers/hid/usbhid/
19387 USB INTEL XHCI ROLE MUX DRIVER
19388 M: Hans de Goede <hdegoede@redhat.com>
19389 L: linux-usb@vger.kernel.org
19391 F: drivers/usb/roles/intel-xhci-usb-role-switch.c
19393 USB IP DRIVER FOR HISILICON KIRIN 960
19394 M: Yu Chen <chenyu56@huawei.com>
19395 M: Binghui Wang <wangbinghui@hisilicon.com>
19396 L: linux-usb@vger.kernel.org
19398 F: Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19399 F: drivers/phy/hisilicon/phy-hi3660-usb3.c
19401 USB IP DRIVER FOR HISILICON KIRIN 970
19402 M: Mauro Carvalho Chehab <mchehab@kernel.org>
19403 L: linux-usb@vger.kernel.org
19405 F: Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19406 F: drivers/phy/hisilicon/phy-hi3670-usb3.c
19409 M: Olav Kongas <ok@artecdesign.ee>
19410 L: linux-usb@vger.kernel.org
19412 F: drivers/usb/host/isp116x*
19413 F: include/linux/usb/isp116x.h
19416 M: Rui Miguel Silva <rui.silva@linaro.org>
19417 L: linux-usb@vger.kernel.org
19419 F: drivers/usb/isp1760/*
19420 F: Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19422 USB LAN78XX ETHERNET DRIVER
19423 M: Woojung Huh <woojung.huh@microchip.com>
19424 M: UNGLinuxDriver@microchip.com
19425 L: netdev@vger.kernel.org
19427 F: Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19428 F: drivers/net/usb/lan78xx.*
19429 F: include/dt-bindings/net/microchip-lan78xx.h
19431 USB MASS STORAGE DRIVER
19432 M: Alan Stern <stern@rowland.harvard.edu>
19433 L: linux-usb@vger.kernel.org
19434 L: usb-storage@lists.one-eyed-alien.net
19436 F: drivers/usb/storage/
19439 M: Clemens Ladisch <clemens@ladisch.de>
19440 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19442 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19443 F: sound/usb/midi.*
19445 USB NETWORKING DRIVERS
19446 L: linux-usb@vger.kernel.org
19448 F: drivers/net/usb/
19451 M: Alan Stern <stern@rowland.harvard.edu>
19452 L: linux-usb@vger.kernel.org
19454 F: Documentation/usb/ohci.rst
19455 F: drivers/usb/host/ohci*
19457 USB OTG FSM (Finite State Machine)
19458 M: Peter Chen <peter.chen@kernel.org>
19459 L: linux-usb@vger.kernel.org
19461 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19462 F: drivers/usb/common/usb-otg-fsm.c
19465 M: Valentina Manea <valentina.manea.m@gmail.com>
19466 M: Shuah Khan <shuah@kernel.org>
19467 M: Shuah Khan <skhan@linuxfoundation.org>
19468 L: linux-usb@vger.kernel.org
19470 F: Documentation/usb/usbip_protocol.rst
19471 F: drivers/usb/usbip/
19472 F: tools/testing/selftests/drivers/usb/usbip/
19473 F: tools/usb/usbip/
19476 M: Petko Manolov <petkan@nucleusys.com>
19477 L: linux-usb@vger.kernel.org
19478 L: netdev@vger.kernel.org
19480 W: https://github.com/petkan/pegasus
19481 T: git git://github.com/petkan/pegasus.git
19482 F: drivers/net/usb/pegasus.*
19485 M: Felipe Balbi <balbi@kernel.org>
19486 L: linux-usb@vger.kernel.org
19488 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19489 F: drivers/usb/phy/
19491 USB PRINTER DRIVER (usblp)
19492 M: Pete Zaitcev <zaitcev@redhat.com>
19493 L: linux-usb@vger.kernel.org
19495 F: drivers/usb/class/usblp.c
19497 USB RAW GADGET DRIVER
19498 R: Andrey Konovalov <andreyknvl@gmail.com>
19499 L: linux-usb@vger.kernel.org
19501 F: Documentation/usb/raw-gadget.rst
19502 F: drivers/usb/gadget/legacy/raw_gadget.c
19503 F: include/uapi/linux/usb/raw_gadget.h
19505 USB QMI WWAN NETWORK DRIVER
19506 M: Bjørn Mork <bjorn@mork.no>
19507 L: netdev@vger.kernel.org
19509 F: Documentation/ABI/testing/sysfs-class-net-qmi
19510 F: drivers/net/usb/qmi_wwan.c
19513 M: Petko Manolov <petkan@nucleusys.com>
19514 L: linux-usb@vger.kernel.org
19515 L: netdev@vger.kernel.org
19517 W: https://github.com/petkan/rtl8150
19518 T: git git://github.com/petkan/rtl8150.git
19519 F: drivers/net/usb/rtl8150.c
19521 USB SERIAL SUBSYSTEM
19522 M: Johan Hovold <johan@kernel.org>
19523 L: linux-usb@vger.kernel.org
19525 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19526 F: Documentation/usb/usb-serial.rst
19527 F: drivers/usb/serial/
19528 F: include/linux/usb/serial.h
19530 USB SMSC75XX ETHERNET DRIVER
19531 M: Steve Glendinning <steve.glendinning@shawell.net>
19532 L: netdev@vger.kernel.org
19534 F: drivers/net/usb/smsc75xx.*
19536 USB SMSC95XX ETHERNET DRIVER
19537 M: Steve Glendinning <steve.glendinning@shawell.net>
19538 M: UNGLinuxDriver@microchip.com
19539 L: netdev@vger.kernel.org
19541 F: drivers/net/usb/smsc95xx.*
19544 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19545 L: linux-usb@vger.kernel.org
19547 W: http://www.linux-usb.org
19548 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19549 F: Documentation/devicetree/bindings/usb/
19550 F: Documentation/usb/
19552 F: include/linux/usb.h
19553 F: include/linux/usb/
19555 USB TYPEC BUS FOR ALTERNATE MODES
19556 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19557 L: linux-usb@vger.kernel.org
19559 F: Documentation/ABI/testing/sysfs-bus-typec
19560 F: Documentation/driver-api/usb/typec_bus.rst
19561 F: drivers/usb/typec/altmodes/
19562 F: include/linux/usb/typec_altmode.h
19565 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19566 L: linux-usb@vger.kernel.org
19568 F: Documentation/ABI/testing/sysfs-class-typec
19569 F: Documentation/driver-api/usb/typec.rst
19570 F: drivers/usb/typec/
19571 F: include/linux/usb/typec.h
19573 USB TYPEC INTEL PMC MUX DRIVER
19574 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19575 L: linux-usb@vger.kernel.org
19577 F: Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19578 F: drivers/usb/typec/mux/intel_pmc_mux.c
19580 USB TYPEC PI3USB30532 MUX DRIVER
19581 M: Hans de Goede <hdegoede@redhat.com>
19582 L: linux-usb@vger.kernel.org
19584 F: drivers/usb/typec/mux/pi3usb30532.c
19586 USB TYPEC PORT CONTROLLER DRIVERS
19587 M: Guenter Roeck <linux@roeck-us.net>
19588 L: linux-usb@vger.kernel.org
19590 F: drivers/usb/typec/tcpm/
19593 M: Alan Stern <stern@rowland.harvard.edu>
19594 L: linux-usb@vger.kernel.org
19596 F: drivers/usb/host/uhci*
19599 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19600 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19601 L: linux-media@vger.kernel.org
19603 W: http://www.ideasonboard.org/uvc/
19604 T: git git://linuxtv.org/media_tree.git
19605 F: drivers/media/usb/uvc/
19606 F: include/uapi/linux/uvcvideo.h
19609 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19610 L: linux-usb@vger.kernel.org
19612 F: drivers/usb/gadget/function/*uvc*
19613 F: drivers/usb/gadget/legacy/webcam.c
19614 F: include/uapi/linux/usb/g_uvc.h
19616 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19617 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
19618 L: linux-wireless@vger.kernel.org
19620 F: drivers/net/wireless/rndis_wlan.c
19623 M: Mathias Nyman <mathias.nyman@intel.com>
19624 L: linux-usb@vger.kernel.org
19626 F: drivers/usb/host/pci-quirks*
19627 F: drivers/usb/host/xhci*
19630 L: linux-wireless@vger.kernel.org
19632 W: http://linux-lc100020.sourceforge.net
19633 F: drivers/net/wireless/zydas/zd1201.*
19636 M: Antoine Jacquet <royale@zerezo.com>
19637 L: linux-usb@vger.kernel.org
19638 L: linux-media@vger.kernel.org
19640 W: http://royale.zerezo.com/zr364xx/
19641 T: git git://linuxtv.org/media_tree.git
19642 F: Documentation/admin-guide/media/zr364xx*
19643 F: drivers/media/usb/zr364xx/
19645 USER-MODE LINUX (UML)
19646 M: Jeff Dike <jdike@addtoit.com>
19647 M: Richard Weinberger <richard@nod.at>
19648 M: Anton Ivanov <anton.ivanov@cambridgegreys.com>
19649 L: linux-um@lists.infradead.org
19651 W: http://user-mode-linux.sourceforge.net
19652 Q: https://patchwork.ozlabs.org/project/linux-um/list/
19653 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19654 F: Documentation/virt/uml/
19659 USERSPACE COPYIN/COPYOUT (UIOVEC)
19660 M: Alexander Viro <viro@zeniv.linux.org.uk>
19662 F: include/linux/uio.h
19665 USERSPACE DMA BUFFER DRIVER
19666 M: Gerd Hoffmann <kraxel@redhat.com>
19667 L: dri-devel@lists.freedesktop.org
19669 T: git git://anongit.freedesktop.org/drm/drm-misc
19670 F: drivers/dma-buf/udmabuf.c
19671 F: include/uapi/linux/udmabuf.h
19673 USERSPACE I/O (UIO)
19674 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19677 F: Documentation/driver-api/uio-howto.rst
19679 F: include/linux/uio_driver.h
19682 M: Karel Zak <kzak@redhat.com>
19683 L: util-linux@vger.kernel.org
19685 W: http://en.wikipedia.org/wiki/Util-linux
19686 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19689 M: Christoph Hellwig <hch@lst.de>
19690 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19691 L: linux-kernel@vger.kernel.org
19693 T: git git://git.infradead.org/users/hch/uuid.git
19694 F: include/linux/uuid.h
19695 F: include/uapi/linux/uuid.h
19700 M: Justin Ernst <justin.ernst@hpe.com>
19701 L: platform-driver-x86@vger.kernel.org
19703 F: drivers/platform/x86/uv_sysfs.c
19706 M: Michal Januszewski <spock@gentoo.org>
19707 L: linux-fbdev@vger.kernel.org
19709 W: https://github.com/mjanusz/v86d
19710 F: Documentation/fb/uvesafb.rst
19711 F: drivers/video/fbdev/uvesafb.*
19713 Ux500 CLOCK DRIVERS
19714 M: Ulf Hansson <ulf.hansson@linaro.org>
19715 L: linux-clk@vger.kernel.org
19716 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19718 F: drivers/clk/ux500/
19721 M: Stefan Agner <stefan@agner.ch>
19722 L: linux-mtd@lists.infradead.org
19724 F: drivers/mtd/nand/raw/vf610_nfc.c
19726 VFAT/FAT/MSDOS FILESYSTEM
19727 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19729 F: Documentation/filesystems/vfat.rst
19733 M: Alex Williamson <alex.williamson@redhat.com>
19734 R: Cornelia Huck <cohuck@redhat.com>
19735 L: kvm@vger.kernel.org
19737 T: git git://github.com/awilliam/linux-vfio.git
19738 F: Documentation/driver-api/vfio.rst
19740 F: include/linux/vfio.h
19741 F: include/linux/vfio_pci_core.h
19742 F: include/uapi/linux/vfio.h
19745 M: Diana Craciun <diana.craciun@oss.nxp.com>
19746 L: kvm@vger.kernel.org
19748 F: drivers/vfio/fsl-mc/
19750 VFIO MEDIATED DEVICE DRIVERS
19751 M: Kirti Wankhede <kwankhede@nvidia.com>
19752 L: kvm@vger.kernel.org
19754 F: Documentation/driver-api/vfio-mediated-device.rst
19755 F: drivers/vfio/mdev/
19756 F: include/linux/mdev.h
19757 F: samples/vfio-mdev/
19759 VFIO PLATFORM DRIVER
19760 M: Eric Auger <eric.auger@redhat.com>
19761 L: kvm@vger.kernel.org
19763 F: drivers/vfio/platform/
19766 R: Lukas Wunner <lukas@wunner.de>
19768 T: git git://anongit.freedesktop.org/drm/drm-misc
19769 F: Documentation/gpu/vga-switcheroo.rst
19770 F: drivers/gpu/vga/vga_switcheroo.c
19771 F: include/linux/vga_switcheroo.h
19773 VIA RHINE NETWORK DRIVER
19775 M: Kevin Brace <kevinbrace@bracecomputerlab.com>
19776 F: drivers/net/ethernet/via/via-rhine.c
19778 VIA SD/MMC CARD CONTROLLER DRIVER
19779 M: Bruce Chang <brucechang@via.com.tw>
19780 M: Harald Welte <HaraldWelte@viatech.com>
19782 F: drivers/mmc/host/via-sdmmc.c
19784 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19785 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19786 L: linux-fbdev@vger.kernel.org
19788 F: drivers/video/fbdev/via/
19789 F: include/linux/via-core.h
19790 F: include/linux/via-gpio.h
19791 F: include/linux/via_i2c.h
19793 VIA VELOCITY NETWORK DRIVER
19794 M: Francois Romieu <romieu@fr.zoreil.com>
19795 L: netdev@vger.kernel.org
19797 F: drivers/net/ethernet/via/via-velocity.*
19799 VICODEC VIRTUAL CODEC DRIVER
19800 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
19801 L: linux-media@vger.kernel.org
19803 W: https://linuxtv.org
19804 T: git git://linuxtv.org/media_tree.git
19805 F: drivers/media/test-drivers/vicodec/*
19807 VIDEO I2C POLLING DRIVER
19808 M: Matt Ranostay <matt.ranostay@konsulko.com>
19809 L: linux-media@vger.kernel.org
19811 F: drivers/media/i2c/video-i2c.c
19813 VIDEO MULTIPLEXER DRIVER
19814 M: Philipp Zabel <p.zabel@pengutronix.de>
19815 L: linux-media@vger.kernel.org
19817 F: drivers/media/platform/video-mux.c
19819 VIDEOBUF2 FRAMEWORK
19820 M: Tomasz Figa <tfiga@chromium.org>
19821 M: Marek Szyprowski <m.szyprowski@samsung.com>
19822 L: linux-media@vger.kernel.org
19824 F: drivers/media/common/videobuf2/*
19825 F: include/media/videobuf2-*
19827 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19828 M: Helen Koike <helen.koike@collabora.com>
19829 R: Shuah Khan <skhan@linuxfoundation.org>
19830 L: linux-media@vger.kernel.org
19832 W: https://linuxtv.org
19833 T: git git://linuxtv.org/media_tree.git
19834 F: drivers/media/test-drivers/vimc/*
19837 M: Alex Williamson <alex.williamson@redhat.com>
19838 M: Paolo Bonzini <pbonzini@redhat.com>
19839 L: kvm@vger.kernel.org
19843 VIRTIO AND VHOST VSOCK DRIVER
19844 M: Stefan Hajnoczi <stefanha@redhat.com>
19845 M: Stefano Garzarella <sgarzare@redhat.com>
19846 L: kvm@vger.kernel.org
19847 L: virtualization@lists.linux-foundation.org
19848 L: netdev@vger.kernel.org
19850 F: drivers/vhost/vsock.c
19851 F: include/linux/virtio_vsock.h
19852 F: include/uapi/linux/virtio_vsock.h
19853 F: net/vmw_vsock/virtio_transport.c
19854 F: net/vmw_vsock/virtio_transport_common.c
19856 VIRTIO BLOCK AND SCSI DRIVERS
19857 M: "Michael S. Tsirkin" <mst@redhat.com>
19858 M: Jason Wang <jasowang@redhat.com>
19859 R: Paolo Bonzini <pbonzini@redhat.com>
19860 R: Stefan Hajnoczi <stefanha@redhat.com>
19861 L: virtualization@lists.linux-foundation.org
19863 F: drivers/block/virtio_blk.c
19864 F: drivers/scsi/virtio_scsi.c
19865 F: drivers/vhost/scsi.c
19866 F: include/uapi/linux/virtio_blk.h
19867 F: include/uapi/linux/virtio_scsi.h
19869 VIRTIO CONSOLE DRIVER
19870 M: Amit Shah <amit@kernel.org>
19871 L: virtualization@lists.linux-foundation.org
19873 F: drivers/char/virtio_console.c
19874 F: include/linux/virtio_console.h
19875 F: include/uapi/linux/virtio_console.h
19877 VIRTIO CORE AND NET DRIVERS
19878 M: "Michael S. Tsirkin" <mst@redhat.com>
19879 M: Jason Wang <jasowang@redhat.com>
19880 L: virtualization@lists.linux-foundation.org
19882 F: Documentation/devicetree/bindings/virtio/
19883 F: drivers/block/virtio_blk.c
19884 F: drivers/crypto/virtio/
19885 F: drivers/net/virtio_net.c
19888 F: include/linux/vdpa.h
19889 F: include/linux/virtio*.h
19890 F: include/uapi/linux/virtio_*.h
19894 M: "Michael S. Tsirkin" <mst@redhat.com>
19895 M: David Hildenbrand <david@redhat.com>
19896 L: virtualization@lists.linux-foundation.org
19898 F: drivers/virtio/virtio_balloon.c
19899 F: include/uapi/linux/virtio_balloon.h
19900 F: include/linux/balloon_compaction.h
19901 F: mm/balloon_compaction.c
19903 VIRTIO CRYPTO DRIVER
19904 M: Gonglei <arei.gonglei@huawei.com>
19905 L: virtualization@lists.linux-foundation.org
19906 L: linux-crypto@vger.kernel.org
19908 F: drivers/crypto/virtio/
19909 F: include/uapi/linux/virtio_crypto.h
19911 VIRTIO DRIVERS FOR S390
19912 M: Cornelia Huck <cohuck@redhat.com>
19913 M: Halil Pasic <pasic@linux.ibm.com>
19914 L: linux-s390@vger.kernel.org
19915 L: virtualization@lists.linux-foundation.org
19916 L: kvm@vger.kernel.org
19918 F: arch/s390/include/uapi/asm/virtio-ccw.h
19919 F: drivers/s390/virtio/
19922 M: Vivek Goyal <vgoyal@redhat.com>
19923 M: Stefan Hajnoczi <stefanha@redhat.com>
19924 M: Miklos Szeredi <miklos@szeredi.hu>
19925 L: virtualization@lists.linux-foundation.org
19926 L: linux-fsdevel@vger.kernel.org
19928 W: https://virtio-fs.gitlab.io/
19929 F: Documentation/filesystems/virtiofs.rst
19930 F: fs/fuse/virtio_fs.c
19931 F: include/uapi/linux/virtio_fs.h
19934 M: Enrico Weigelt, metux IT consult <info@metux.net>
19935 M: Viresh Kumar <vireshk@kernel.org>
19936 L: linux-gpio@vger.kernel.org
19937 L: virtualization@lists.linux-foundation.org
19939 F: drivers/gpio/gpio-virtio.c
19940 F: include/uapi/linux/virtio_gpio.h
19943 M: David Airlie <airlied@linux.ie>
19944 M: Gerd Hoffmann <kraxel@redhat.com>
19945 L: dri-devel@lists.freedesktop.org
19946 L: virtualization@lists.linux-foundation.org
19948 T: git git://anongit.freedesktop.org/drm/drm-misc
19949 F: drivers/gpu/drm/virtio/
19950 F: include/uapi/linux/virtio_gpu.h
19952 VIRTIO HOST (VHOST)
19953 M: "Michael S. Tsirkin" <mst@redhat.com>
19954 M: Jason Wang <jasowang@redhat.com>
19955 L: kvm@vger.kernel.org
19956 L: virtualization@lists.linux-foundation.org
19957 L: netdev@vger.kernel.org
19959 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19961 F: include/linux/vhost_iotlb.h
19962 F: include/uapi/linux/vhost.h
19964 VIRTIO INPUT DRIVER
19965 M: Gerd Hoffmann <kraxel@redhat.com>
19967 F: drivers/virtio/virtio_input.c
19968 F: include/uapi/linux/virtio_input.h
19970 VIRTIO IOMMU DRIVER
19971 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
19972 L: virtualization@lists.linux-foundation.org
19974 F: drivers/iommu/virtio-iommu.c
19975 F: include/uapi/linux/virtio_iommu.h
19978 M: David Hildenbrand <david@redhat.com>
19979 L: virtualization@lists.linux-foundation.org
19981 W: https://virtio-mem.gitlab.io/
19982 F: drivers/virtio/virtio_mem.c
19983 F: include/uapi/linux/virtio_mem.h
19985 VIRTIO SOUND DRIVER
19986 M: Anton Yakovlev <anton.yakovlev@opensynergy.com>
19987 M: "Michael S. Tsirkin" <mst@redhat.com>
19988 L: virtualization@lists.linux-foundation.org
19989 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19991 F: include/uapi/linux/virtio_snd.h
19995 M: Jie Deng <jie.deng@intel.com>
19996 M: Viresh Kumar <viresh.kumar@linaro.org>
19997 L: linux-i2c@vger.kernel.org
19998 L: virtualization@lists.linux-foundation.org
20000 F: drivers/i2c/busses/i2c-virtio.c
20001 F: include/uapi/linux/virtio_i2c.h
20003 VIRTUAL BOX GUEST DEVICE DRIVER
20004 M: Hans de Goede <hdegoede@redhat.com>
20005 M: Arnd Bergmann <arnd@arndb.de>
20006 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20008 F: drivers/virt/vboxguest/
20009 F: include/linux/vbox_utils.h
20010 F: include/uapi/linux/vbox*.h
20012 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20013 M: Hans de Goede <hdegoede@redhat.com>
20014 L: linux-fsdevel@vger.kernel.org
20018 VIRTUAL SERIO DEVICE DRIVER
20019 M: Stephen Chandler Paul <thatslyude@gmail.com>
20021 F: drivers/input/serio/userio.c
20022 F: include/uapi/linux/userio.h
20024 VIVID VIRTUAL VIDEO DRIVER
20025 M: Hans Verkuil <hverkuil@xs4all.nl>
20026 L: linux-media@vger.kernel.org
20028 W: https://linuxtv.org
20029 T: git git://linuxtv.org/media_tree.git
20030 F: drivers/media/test-drivers/vivid/*
20032 VIDTV VIRTUAL DIGITAL TV DRIVER
20033 M: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20034 L: linux-media@vger.kernel.org
20036 W: https://linuxtv.org
20037 T: git git://linuxtv.org/media_tree.git
20038 F: drivers/media/test-drivers/vidtv/*
20041 M: Florian Fainelli <f.fainelli@gmail.com>
20042 L: openwrt-devel@lists.openwrt.org (subscribers-only)
20044 F: drivers/vlynq/vlynq.c
20045 F: include/linux/vlynq.h
20048 M: Martyn Welch <martyn@welchs.me.uk>
20049 M: Manohar Vanga <manohar.vanga@gmail.com>
20050 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20051 L: linux-kernel@vger.kernel.org
20053 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20054 F: Documentation/driver-api/vme.rst
20055 F: drivers/staging/vme/
20057 F: include/linux/vme*
20059 VM SOCKETS (AF_VSOCK)
20060 M: Stefano Garzarella <sgarzare@redhat.com>
20061 L: virtualization@lists.linux-foundation.org
20062 L: netdev@vger.kernel.org
20064 F: drivers/net/vsockmon.c
20065 F: include/net/af_vsock.h
20066 F: include/uapi/linux/vm_sockets.h
20067 F: include/uapi/linux/vm_sockets_diag.h
20068 F: include/uapi/linux/vsockmon.h
20070 F: tools/testing/vsock/
20072 VMWARE BALLOON DRIVER
20073 M: Nadav Amit <namit@vmware.com>
20074 M: "VMware, Inc." <pv-drivers@vmware.com>
20075 L: linux-kernel@vger.kernel.org
20077 F: drivers/misc/vmw_balloon.c
20079 VMWARE HYPERVISOR INTERFACE
20080 M: Deep Shah <sdeep@vmware.com>
20081 M: "VMware, Inc." <pv-drivers@vmware.com>
20082 L: virtualization@lists.linux-foundation.org
20084 F: arch/x86/include/asm/vmware.h
20085 F: arch/x86/kernel/cpu/vmware.c
20087 VMWARE PVRDMA DRIVER
20088 M: Adit Ranadive <aditr@vmware.com>
20089 M: VMware PV-Drivers <pv-drivers@vmware.com>
20090 L: linux-rdma@vger.kernel.org
20092 F: drivers/infiniband/hw/vmw_pvrdma/
20094 VMware PVSCSI driver
20095 M: Vishal Bhakta <vbhakta@vmware.com>
20096 M: VMware PV-Drivers <pv-drivers@vmware.com>
20097 L: linux-scsi@vger.kernel.org
20099 F: drivers/scsi/vmw_pvscsi.c
20100 F: drivers/scsi/vmw_pvscsi.h
20102 VMWARE VIRTUAL PTP CLOCK DRIVER
20103 M: Vivek Thampi <vithampi@vmware.com>
20104 M: "VMware, Inc." <pv-drivers@vmware.com>
20105 L: netdev@vger.kernel.org
20107 F: drivers/ptp/ptp_vmw.c
20110 M: Jorgen Hansen <jhansen@vmware.com>
20111 M: Vishnu Dasa <vdasa@vmware.com>
20112 L: linux-kernel@vger.kernel.org
20113 L: pv-drivers@vmware.com (private)
20115 F: drivers/misc/vmw_vmci/
20117 VMWARE VMMOUSE SUBDRIVER
20118 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20119 M: "VMware, Inc." <pv-drivers@vmware.com>
20120 L: linux-input@vger.kernel.org
20122 F: drivers/input/mouse/vmmouse.c
20123 F: drivers/input/mouse/vmmouse.h
20125 VMWARE VMXNET3 ETHERNET DRIVER
20126 M: Ronak Doshi <doshir@vmware.com>
20127 M: pv-drivers@vmware.com
20128 L: netdev@vger.kernel.org
20130 F: drivers/net/vmxnet3/
20132 VOCORE VOCORE2 BOARD
20133 M: Harvey Hunt <harveyhuntnexus@gmail.com>
20134 L: linux-mips@vger.kernel.org
20136 F: arch/mips/boot/dts/ralink/vocore2.dts
20138 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20139 M: Liam Girdwood <lgirdwood@gmail.com>
20140 M: Mark Brown <broonie@kernel.org>
20141 L: linux-kernel@vger.kernel.org
20143 W: http://www.slimlogic.co.uk/?p=48
20144 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20145 F: Documentation/devicetree/bindings/regulator/
20146 F: Documentation/power/regulator/
20147 F: drivers/regulator/
20148 F: include/dt-bindings/regulator/
20149 F: include/linux/regulator/
20150 K: regulator_get_optional
20152 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20153 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20154 F: drivers/regulator/irq_helpers.c
20157 M: David Ahern <dsahern@kernel.org>
20158 L: netdev@vger.kernel.org
20160 F: Documentation/networking/vrf.rst
20161 F: drivers/net/vrf.c
20164 M: Petr Mladek <pmladek@suse.com>
20165 M: Steven Rostedt <rostedt@goodmis.org>
20166 M: Sergey Senozhatsky <senozhatsky@chromium.org>
20167 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20168 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
20170 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20171 F: Documentation/core-api/printk-formats.rst
20172 F: lib/test_printf.c
20173 F: lib/test_scanf.c
20176 VT1211 HARDWARE MONITOR DRIVER
20177 M: Juerg Haefliger <juergh@gmail.com>
20178 L: linux-hwmon@vger.kernel.org
20180 F: Documentation/hwmon/vt1211.rst
20181 F: drivers/hwmon/vt1211.c
20183 VT8231 HARDWARE MONITOR DRIVER
20184 M: Roger Lucas <vt8231@hiddenengine.co.uk>
20185 L: linux-hwmon@vger.kernel.org
20187 F: drivers/hwmon/vt8231.c
20189 VUB300 USB to SDIO/SD/MMC bridge chip
20190 L: linux-mmc@vger.kernel.org
20192 F: drivers/mmc/host/vub300.c
20194 W1 DALLAS'S 1-WIRE BUS
20195 M: Evgeniy Polyakov <zbr@ioremap.net>
20197 F: Documentation/devicetree/bindings/w1/
20198 F: Documentation/w1/
20200 F: include/linux/w1.h
20202 W83791D HARDWARE MONITORING DRIVER
20203 M: Marc Hulsman <m.hulsman@tudelft.nl>
20204 L: linux-hwmon@vger.kernel.org
20206 F: Documentation/hwmon/w83791d.rst
20207 F: drivers/hwmon/w83791d.c
20209 W83793 HARDWARE MONITORING DRIVER
20210 M: Rudolf Marek <r.marek@assembler.cz>
20211 L: linux-hwmon@vger.kernel.org
20213 F: Documentation/hwmon/w83793.rst
20214 F: drivers/hwmon/w83793.c
20216 W83795 HARDWARE MONITORING DRIVER
20217 M: Jean Delvare <jdelvare@suse.com>
20218 L: linux-hwmon@vger.kernel.org
20220 F: drivers/hwmon/w83795.c
20222 W83L51xD SD/MMC CARD INTERFACE DRIVER
20223 M: Pierre Ossman <pierre@ossman.eu>
20225 F: drivers/mmc/host/wbsd.*
20227 WACOM PROTOCOL 4 SERIAL TABLETS
20228 M: Julian Squires <julian@cipht.net>
20229 M: Hans de Goede <hdegoede@redhat.com>
20230 L: linux-input@vger.kernel.org
20232 F: drivers/input/tablet/wacom_serial4.c
20234 WATCHDOG DEVICE DRIVERS
20235 M: Wim Van Sebroeck <wim@linux-watchdog.org>
20236 M: Guenter Roeck <linux@roeck-us.net>
20237 L: linux-watchdog@vger.kernel.org
20239 W: http://www.linux-watchdog.org/
20240 T: git git://www.linux-watchdog.org/linux-watchdog.git
20241 F: Documentation/devicetree/bindings/watchdog/
20242 F: Documentation/watchdog/
20243 F: drivers/watchdog/
20244 F: include/linux/watchdog.h
20245 F: include/uapi/linux/watchdog.h
20247 WHISKEYCOVE PMIC GPIO DRIVER
20248 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20249 L: linux-gpio@vger.kernel.org
20251 F: drivers/gpio/gpio-wcove.c
20254 M: Dianlong Li <long17.cool@163.com>
20255 L: linux-rtc@vger.kernel.org
20257 F: drivers/rtc/rtc-sd3078.c
20260 M: David Rheinsberg <david.rheinsberg@gmail.com>
20261 L: linux-input@vger.kernel.org
20263 F: drivers/hid/hid-wiimote*
20265 WILOCITY WIL6210 WIRELESS DRIVER
20266 M: Maya Erez <merez@codeaurora.org>
20267 L: linux-wireless@vger.kernel.org
20268 L: wil6210@qti.qualcomm.com
20270 W: https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20271 F: drivers/net/wireless/ath/wil6210/
20274 M: David Härdeman <david@hardeman.nu>
20276 F: drivers/media/rc/winbond-cir.c
20278 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20279 M: William Breathitt Gray <vilhelm.gray@gmail.com>
20280 L: linux-watchdog@vger.kernel.org
20282 F: drivers/watchdog/ebc-c384_wdt.c
20284 WINSYSTEMS WS16C48 GPIO DRIVER
20285 M: William Breathitt Gray <vilhelm.gray@gmail.com>
20286 L: linux-gpio@vger.kernel.org
20288 F: drivers/gpio/gpio-ws16c48.c
20290 WIREGUARD SECURE NETWORK TUNNEL
20291 M: Jason A. Donenfeld <Jason@zx2c4.com>
20292 L: wireguard@lists.zx2c4.com
20293 L: netdev@vger.kernel.org
20295 F: drivers/net/wireguard/
20296 F: tools/testing/selftests/wireguard/
20298 WISTRON LAPTOP BUTTON DRIVER
20299 M: Miloslav Trmac <mitr@volny.cz>
20301 F: drivers/input/misc/wistron_btns.c
20303 WL3501 WIRELESS PCMCIA CARD DRIVER
20304 L: linux-wireless@vger.kernel.org
20306 F: drivers/net/wireless/wl3501*
20308 WOLFSON MICROELECTRONICS DRIVERS
20309 L: patches@opensource.cirrus.com
20311 W: https://github.com/CirrusLogic/linux-drivers/wiki
20312 T: git https://github.com/CirrusLogic/linux-drivers.git
20313 F: Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20314 F: Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20315 F: Documentation/devicetree/bindings/mfd/wm831x.txt
20316 F: Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20317 F: Documentation/devicetree/bindings/sound/wlf,*.yaml
20318 F: Documentation/devicetree/bindings/sound/wm*
20319 F: Documentation/hwmon/wm83??.rst
20320 F: arch/arm/mach-s3c/mach-crag6410*
20321 F: drivers/clk/clk-wm83*.c
20322 F: drivers/gpio/gpio-*wm*.c
20323 F: drivers/gpio/gpio-arizona.c
20324 F: drivers/hwmon/wm83??-hwmon.c
20325 F: drivers/input/misc/wm831x-on.c
20326 F: drivers/input/touchscreen/wm831x-ts.c
20327 F: drivers/input/touchscreen/wm97*.c
20328 F: drivers/leds/leds-wm83*.c
20329 F: drivers/mfd/arizona*
20330 F: drivers/mfd/cs47l24*
20331 F: drivers/mfd/wm*.c
20332 F: drivers/power/supply/wm83*.c
20333 F: drivers/regulator/arizona*
20334 F: drivers/regulator/wm8*.c
20335 F: drivers/rtc/rtc-wm83*.c
20336 F: drivers/video/backlight/wm83*_bl.c
20337 F: drivers/watchdog/wm83*_wdt.c
20338 F: include/linux/mfd/arizona/
20339 F: include/linux/mfd/wm831x/
20340 F: include/linux/mfd/wm8350/
20341 F: include/linux/mfd/wm8400*
20342 F: include/linux/regulator/arizona*
20343 F: include/linux/wm97xx.h
20344 F: include/sound/wm????.h
20345 F: sound/soc/codecs/arizona*
20346 F: sound/soc/codecs/cs47l24*
20347 F: sound/soc/codecs/wm*
20350 M: Tejun Heo <tj@kernel.org>
20351 R: Lai Jiangshan <jiangshanlai@gmail.com>
20353 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20354 F: Documentation/core-api/workqueue.rst
20355 F: include/linux/workqueue.h
20356 F: kernel/workqueue.c
20359 M: Loic Poulain <loic.poulain@linaro.org>
20360 M: Sergey Ryazanov <ryazanov.s.a@gmail.com>
20361 R: Johannes Berg <johannes@sipsolutions.net>
20362 L: netdev@vger.kernel.org
20364 F: drivers/net/wwan/
20365 F: include/linux/wwan.h
20366 F: include/uapi/linux/wwan.h
20368 X-POWERS AXP288 PMIC DRIVERS
20369 M: Hans de Goede <hdegoede@redhat.com>
20371 F: drivers/acpi/pmic/intel_pmic_xpower.c
20374 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20375 M: Chen-Yu Tsai <wens@csie.org>
20376 L: linux-kernel@vger.kernel.org
20381 M: Martin Schiller <ms@dev.tdt.de>
20382 L: linux-x25@vger.kernel.org
20384 F: Documentation/networking/lapb-module.rst
20385 F: Documentation/networking/x25*
20386 F: drivers/net/wan/hdlc_x25.c
20387 F: drivers/net/wan/lapbether.c
20388 F: include/*/lapb.h
20389 F: include/net/x25*
20390 F: include/uapi/linux/x25.h
20394 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20395 M: Thomas Gleixner <tglx@linutronix.de>
20396 M: Ingo Molnar <mingo@redhat.com>
20397 M: Borislav Petkov <bp@alien8.de>
20398 M: Dave Hansen <dave.hansen@linux.intel.com>
20400 R: "H. Peter Anvin" <hpa@zytor.com>
20401 L: linux-kernel@vger.kernel.org
20403 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20404 F: Documentation/devicetree/bindings/x86/
20405 F: Documentation/x86/
20409 M: Andy Lutomirski <luto@kernel.org>
20410 L: linux-kernel@vger.kernel.org
20412 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20415 X86 MCE INFRASTRUCTURE
20416 M: Tony Luck <tony.luck@intel.com>
20417 M: Borislav Petkov <bp@alien8.de>
20418 L: linux-edac@vger.kernel.org
20420 F: arch/x86/kernel/cpu/mce/*
20422 X86 MICROCODE UPDATE SUPPORT
20423 M: Borislav Petkov <bp@alien8.de>
20425 F: arch/x86/kernel/cpu/microcode/*
20428 M: Dave Hansen <dave.hansen@linux.intel.com>
20429 M: Andy Lutomirski <luto@kernel.org>
20430 M: Peter Zijlstra <peterz@infradead.org>
20431 L: linux-kernel@vger.kernel.org
20433 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20436 X86 PLATFORM DRIVERS
20437 M: Hans de Goede <hdegoede@redhat.com>
20438 M: Mark Gross <mgross@linux.intel.com>
20439 L: platform-driver-x86@vger.kernel.org
20441 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20442 F: drivers/platform/olpc/
20443 F: drivers/platform/x86/
20445 X86 PLATFORM DRIVERS - ARCH
20446 R: Darren Hart <dvhart@infradead.org>
20447 R: Andy Shevchenko <andy@infradead.org>
20448 L: platform-driver-x86@vger.kernel.org
20451 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20452 F: arch/x86/platform
20454 X86 PLATFORM UV HPE SUPERDOME FLEX
20455 M: Steve Wahl <steve.wahl@hpe.com>
20456 R: Mike Travis <mike.travis@hpe.com>
20457 R: Dimitri Sivanich <dimitri.sivanich@hpe.com>
20458 R: Russ Anderson <russ.anderson@hpe.com>
20460 F: arch/x86/include/asm/uv/
20461 F: arch/x86/kernel/apic/x2apic_uv_x.c
20462 F: arch/x86/platform/uv/
20465 M: Andy Lutomirski <luto@kernel.org>
20466 L: linux-kernel@vger.kernel.org
20468 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20469 F: arch/x86/entry/vdso/
20472 M: Matthew Wilcox <willy@infradead.org>
20473 L: linux-fsdevel@vger.kernel.org
20475 F: Documentation/core-api/xarray.rst
20476 F: include/linux/idr.h
20477 F: include/linux/xarray.h
20480 F: tools/testing/radix-tree
20483 M: Benjamin Valentin <benpicco@googlemail.com>
20485 F: drivers/media/rc/keymaps/rc-xbox-dvd.c
20486 F: drivers/media/rc/xbox_remote.c
20488 XC2028/3028 TUNER DRIVER
20489 M: Mauro Carvalho Chehab <mchehab@kernel.org>
20490 L: linux-media@vger.kernel.org
20492 W: https://linuxtv.org
20493 T: git git://linuxtv.org/media_tree.git
20494 F: drivers/media/tuners/tuner-xc2028.*
20496 XDP (eXpress Data Path)
20497 M: Alexei Starovoitov <ast@kernel.org>
20498 M: Daniel Borkmann <daniel@iogearbox.net>
20499 M: David S. Miller <davem@davemloft.net>
20500 M: Jakub Kicinski <kuba@kernel.org>
20501 M: Jesper Dangaard Brouer <hawk@kernel.org>
20502 M: John Fastabend <john.fastabend@gmail.com>
20503 L: netdev@vger.kernel.org
20504 L: bpf@vger.kernel.org
20506 F: include/net/xdp.h
20507 F: include/net/xdp_priv.h
20508 F: include/trace/events/xdp.h
20509 F: kernel/bpf/cpumap.c
20510 F: kernel/bpf/devmap.c
20512 F: samples/bpf/xdp*
20513 F: tools/testing/selftests/bpf/*xdp*
20514 F: tools/testing/selftests/bpf/*/*xdp*
20515 F: drivers/net/ethernet/*/*/*/*/*xdp*
20516 F: drivers/net/ethernet/*/*/*xdp*
20517 K: (?:\b|_)xdp(?:\b|_)
20519 XDP SOCKETS (AF_XDP)
20520 M: Björn Töpel <bjorn@kernel.org>
20521 M: Magnus Karlsson <magnus.karlsson@intel.com>
20522 R: Jonathan Lemon <jonathan.lemon@gmail.com>
20523 L: netdev@vger.kernel.org
20524 L: bpf@vger.kernel.org
20526 F: Documentation/networking/af_xdp.rst
20527 F: include/net/xdp_sock*
20528 F: include/net/xsk_buff_pool.h
20529 F: include/uapi/linux/if_xdp.h
20530 F: include/uapi/linux/xdp_diag.h
20531 F: include/net/netns/xdp.h
20533 F: samples/bpf/xdpsock*
20534 F: tools/lib/bpf/xsk*
20536 XEN BLOCK SUBSYSTEM
20537 M: Roger Pau Monné <roger.pau@citrix.com>
20538 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20540 F: drivers/block/xen*
20541 F: drivers/block/xen-blkback/*
20544 M: Stefano Stabellini <sstabellini@kernel.org>
20545 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20547 F: arch/arm/include/asm/xen/
20550 XEN HYPERVISOR ARM64
20551 M: Stefano Stabellini <sstabellini@kernel.org>
20552 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20554 F: arch/arm64/include/asm/xen/
20557 XEN HYPERVISOR INTERFACE
20558 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
20559 M: Juergen Gross <jgross@suse.com>
20560 R: Stefano Stabellini <sstabellini@kernel.org>
20561 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20563 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20564 F: Documentation/ABI/stable/sysfs-hypervisor-xen
20565 F: Documentation/ABI/testing/sysfs-hypervisor-xen
20566 F: arch/x86/include/asm/pvclock-abi.h
20567 F: arch/x86/include/asm/xen/
20568 F: arch/x86/platform/pvh/
20570 F: drivers/*/xen-*front.c
20572 F: include/uapi/xen/
20575 XEN NETWORK BACKEND DRIVER
20576 M: Wei Liu <wei.liu@kernel.org>
20577 M: Paul Durrant <paul@xen.org>
20578 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20579 L: netdev@vger.kernel.org
20581 F: drivers/net/xen-netback/*
20584 M: Juergen Gross <jgross@suse.com>
20585 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20587 F: arch/x86/pci/*xen*
20588 F: drivers/pci/*xen*
20591 M: Juergen Gross <jgross@suse.com>
20592 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20593 L: linux-scsi@vger.kernel.org
20595 F: drivers/scsi/xen-scsifront.c
20596 F: drivers/xen/xen-scsiback.c
20597 F: include/xen/interface/io/vscsiif.h
20599 XEN SOUND FRONTEND DRIVER
20600 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20601 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20602 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20606 XEN SWIOTLB SUBSYSTEM
20607 M: Juergen Gross <jgross@suse.com>
20608 M: Stefano Stabellini <sstabellini@kernel.org>
20609 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20610 L: iommu@lists.linux-foundation.org
20612 F: arch/x86/xen/*swiotlb*
20613 F: drivers/xen/*swiotlb*
20616 C: irc://irc.oftc.net/xfs
20617 M: Darrick J. Wong <djwong@kernel.org>
20618 M: linux-xfs@vger.kernel.org
20619 L: linux-xfs@vger.kernel.org
20622 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20623 F: Documentation/ABI/testing/sysfs-fs-xfs
20624 F: Documentation/admin-guide/xfs.rst
20625 F: Documentation/filesystems/xfs-delayed-logging-design.rst
20626 F: Documentation/filesystems/xfs-self-describing-metadata.rst
20628 F: include/uapi/linux/dqblk_xfs.h
20629 F: include/uapi/linux/fsmap.h
20631 XILINX AXI ETHERNET DRIVER
20632 M: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20634 F: drivers/net/ethernet/xilinx/xilinx_axienet*
20637 M: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20638 R: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20639 L: linux-can@vger.kernel.org
20641 F: Documentation/devicetree/bindings/net/can/xilinx_can.txt
20642 F: drivers/net/can/xilinx_can.c
20645 M: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20646 R: Srinivas Neeli <srinivas.neeli@xilinx.com>
20647 R: Michal Simek <michal.simek@xilinx.com>
20649 F: Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20650 F: Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20651 F: drivers/gpio/gpio-xilinx.c
20652 F: drivers/gpio/gpio-zynq.c
20654 XILINX SD-FEC IP CORES
20655 M: Derek Kiernan <derek.kiernan@xilinx.com>
20656 M: Dragan Cvetic <dragan.cvetic@xilinx.com>
20658 F: Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20659 F: Documentation/misc-devices/xilinx_sdfec.rst
20660 F: drivers/misc/Kconfig
20661 F: drivers/misc/Makefile
20662 F: drivers/misc/xilinx_sdfec.c
20663 F: include/uapi/misc/xilinx_sdfec.h
20665 XILINX UARTLITE SERIAL DRIVER
20666 M: Peter Korsgaard <jacmet@sunsite.dk>
20667 L: linux-serial@vger.kernel.org
20669 F: drivers/tty/serial/uartlite.c
20671 XILINX VIDEO IP CORES
20672 M: Hyun Kwon <hyun.kwon@xilinx.com>
20673 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20674 L: linux-media@vger.kernel.org
20676 T: git git://linuxtv.org/media_tree.git
20677 F: Documentation/devicetree/bindings/media/xilinx/
20678 F: drivers/media/platform/xilinx/
20679 F: include/uapi/linux/xilinx-v4l2-controls.h
20681 XILINX ZYNQMP DPDMA DRIVER
20682 M: Hyun Kwon <hyun.kwon@xilinx.com>
20683 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20684 L: dmaengine@vger.kernel.org
20686 F: Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20687 F: drivers/dma/xilinx/xilinx_dpdma.c
20688 F: include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20690 XILINX ZYNQMP PSGTR PHY DRIVER
20691 M: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20692 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20693 L: linux-kernel@vger.kernel.org
20695 T: git https://github.com/Xilinx/linux-xlnx.git
20696 F: Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20697 F: drivers/phy/xilinx/phy-zynqmp.c
20700 M: Eli Billauer <eli.billauer@gmail.com>
20701 L: linux-kernel@vger.kernel.org
20703 F: drivers/char/xillybus/
20706 M: George Cherian <gcherian@marvell.com>
20707 L: linux-i2c@vger.kernel.org
20709 W: http://www.marvell.com
20710 F: Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20711 F: drivers/i2c/busses/i2c-xlp9xx.c
20713 XRA1403 GPIO EXPANDER
20714 M: Nandor Han <nandor.han@ge.com>
20715 M: Semi Malinen <semi.malinen@ge.com>
20716 L: linux-gpio@vger.kernel.org
20718 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20719 F: drivers/gpio/gpio-xra1403.c
20721 XTENSA XTFPGA PLATFORM SUPPORT
20722 M: Max Filippov <jcmvbkbc@gmail.com>
20723 L: linux-xtensa@linux-xtensa.org
20725 F: drivers/spi/spi-xtensa-xtfpga.c
20726 F: sound/soc/xtensa/xtfpga-i2s.c
20728 YAM DRIVER FOR AX.25
20729 M: Jean-Paul Roubelat <jpr@f6fbb.org>
20730 L: linux-hams@vger.kernel.org
20732 F: drivers/net/hamradio/yam*
20733 F: include/linux/yam.h
20735 YAMA SECURITY MODULE
20736 M: Kees Cook <keescook@chromium.org>
20738 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20739 F: Documentation/admin-guide/LSM/Yama.rst
20742 YEALINK PHONE DRIVER
20743 M: Henk Vergonet <Henk.Vergonet@gmail.com>
20744 L: usbb2k-api-dev@nongnu.org
20746 F: Documentation/input/devices/yealink.rst
20747 F: drivers/input/misc/yealink.*
20749 Z8530 DRIVER FOR AX.25
20750 M: Joerg Reuter <jreuter@yaina.de>
20751 L: linux-hams@vger.kernel.org
20753 W: http://yaina.de/jreuter/
20754 W: http://www.qsl.net/dl1bke/
20755 F: Documentation/networking/device_drivers/hamradio/z8530drv.rst
20756 F: drivers/net/hamradio/*scc.c
20757 F: drivers/net/hamradio/z8530.h
20759 ZBUD COMPRESSED PAGE ALLOCATOR
20760 M: Seth Jennings <sjenning@redhat.com>
20761 M: Dan Streetman <ddstreet@ieee.org>
20762 L: linux-mm@kvack.org
20766 ZD1211RW WIRELESS DRIVER
20767 M: Ulrich Kunitz <kune@deine-taler.de>
20768 L: linux-wireless@vger.kernel.org
20769 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
20771 W: http://zd1211.ath.cx/wiki/DriverRewrite
20772 F: drivers/net/wireless/zydas/zd1211rw/
20774 ZD1301 MEDIA DRIVER
20775 M: Antti Palosaari <crope@iki.fi>
20776 L: linux-media@vger.kernel.org
20778 W: https://linuxtv.org/
20779 W: http://palosaari.fi/linux/
20780 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20781 F: drivers/media/usb/dvb-usb-v2/zd1301*
20783 ZD1301_DEMOD MEDIA DRIVER
20784 M: Antti Palosaari <crope@iki.fi>
20785 L: linux-media@vger.kernel.org
20787 W: https://linuxtv.org/
20788 W: http://palosaari.fi/linux/
20789 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20790 F: drivers/media/dvb-frontends/zd1301_demod*
20792 ZHAOXIN PROCESSOR SUPPORT
20793 M: Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20794 L: linux-kernel@vger.kernel.org
20796 F: arch/x86/kernel/cpu/zhaoxin.c
20799 M: Damien Le Moal <damien.lemoal@wdc.com>
20800 M: Naohiro Aota <naohiro.aota@wdc.com>
20801 R: Johannes Thumshirn <jth@kernel.org>
20802 L: linux-fsdevel@vger.kernel.org
20804 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20805 F: Documentation/filesystems/zonefs.rst
20808 ZPOOL COMPRESSED PAGE STORAGE API
20809 M: Dan Streetman <ddstreet@ieee.org>
20810 L: linux-mm@kvack.org
20812 F: include/linux/zpool.h
20815 ZR36067 VIDEO FOR LINUX DRIVER
20816 M: Corentin Labbe <clabbe@baylibre.com>
20817 L: mjpeg-users@lists.sourceforge.net
20818 L: linux-media@vger.kernel.org
20820 W: http://mjpeg.sourceforge.net/driver-zoran/
20821 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20822 F: Documentation/driver-api/media/drivers/zoran.rst
20823 F: drivers/staging/media/zoran/
20825 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20826 M: Minchan Kim <minchan@kernel.org>
20827 M: Nitin Gupta <ngupta@vflare.org>
20828 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20829 L: linux-kernel@vger.kernel.org
20831 F: Documentation/admin-guide/blockdev/zram.rst
20832 F: drivers/block/zram/
20834 ZS DECSTATION Z85C30 SERIAL DRIVER
20835 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
20837 F: drivers/tty/serial/zs.*
20839 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20840 M: Minchan Kim <minchan@kernel.org>
20841 M: Nitin Gupta <ngupta@vflare.org>
20842 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20843 L: linux-mm@kvack.org
20845 F: Documentation/vm/zsmalloc.rst
20846 F: include/linux/zsmalloc.h
20849 ZSWAP COMPRESSED SWAP CACHING
20850 M: Seth Jennings <sjenning@redhat.com>
20851 M: Dan Streetman <ddstreet@ieee.org>
20852 M: Vitaly Wool <vitaly.wool@konsulko.com>
20853 L: linux-mm@kvack.org
20858 M: Linus Torvalds <torvalds@linux-foundation.org>
20859 L: linux-kernel@vger.kernel.org
20860 S: Buried alive in reporters
20861 Q: http://patchwork.kernel.org/project/LKML/list/
20862 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git