]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - MAINTAINERS
MAINTAINERS: add git tree for random.c
[mirror_ubuntu-jammy-kernel.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below. This will make things
5 easier on the maintainers. Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1. Always *test* your changes, however small, on at least 4 or
12 5 people, preferably many more.
13
14 2. Try to release a few ALPHA test versions to the net. Announce
15 them onto the kernel channel and await results. This is especially
16 important for device drivers, because often that's the only way
17 you will find things like the fact version 3 firmware needs
18 a magic fix you didn't know about, or some clown changed the
19 chips on a board and not its name. (Don't laugh! Look at the
20 SMC etherpower for that.)
21
22 3. Make sure your changes compile correctly in multiple
23 configurations. In particular check that changes work both as a
24 module and built into the kernel.
25
26 4. When you are happy with a change make it generally available for
27 testing and await feedback.
28
29 5. Make a patch available to the relevant maintainer in the list. Use
30 ``diff -u`` to make the patch easy to merge. Be prepared to get your
31 changes sent back with seemingly silly requests about formatting
32 and variable names. These aren't as silly as they seem. One
33 job the maintainers (and especially Linus) do is to keep things
34 looking the same. Sometimes this means that the clever hack in
35 your driver to get around a problem actually needs to become a
36 generalized kernel feature ready for next time.
37
38 PLEASE check your patch with the automated style checker
39 (scripts/checkpatch.pl) to catch trivial style violations.
40 See Documentation/process/coding-style.rst for guidance here.
41
42 PLEASE CC: the maintainers and mailing lists that are generated
43 by ``scripts/get_maintainer.pl.`` The results returned by the
44 script will be best if you have git installed and are making
45 your changes in a branch derived from Linus' latest git tree.
46 See Documentation/process/submitting-patches.rst for details.
47
48 PLEASE try to include any credit lines you want added with the
49 patch. It avoids people being missed off by mistake and makes
50 it easier to know who wants adding and who doesn't.
51
52 PLEASE document known bugs. If it doesn't work for everything
53 or does something very odd once a month document it.
54
55 PLEASE remember that submissions must be made under the terms
56 of the Linux Foundation certificate of contribution and should
57 include a Signed-off-by: line. The current version of this
58 "Developer's Certificate of Origin" (DCO) is listed in the file
59 Documentation/process/submitting-patches.rst.
60
61 6. Make sure you have the right to send any changes you make. If you
62 do changes at work you may find your employer owns the patch
63 not you.
64
65 7. When sending security related changes or reports to a maintainer
66 please Cc: security@kernel.org, especially if the maintainer
67 does not respond. Please keep in mind that the security team is
68 a small set of people who can be efficient only when working on
69 verified bugs. Please only Cc: this list when you have identified
70 that the bug would present a short-term risk to other users if it
71 were publicly disclosed. For example, reports of address leaks do
72 not represent an immediate threat and are better handled publicly,
73 and ideally, should come with a patch proposal. Please do not send
74 automated reports to this list either. Such bugs will be handled
75 better and faster in the usual public places. See
76 Documentation/admin-guide/security-bugs.rst for details.
77
78 8. Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83 M: *Mail* patches to: FullName <address@domain>
84 R: Designated *Reviewer*: FullName <address@domain>
85 These reviewers should be CCed on patches.
86 L: *Mailing list* that is relevant to this area
87 S: *Status*, one of the following:
88 Supported: Someone is actually paid to look after this.
89 Maintained: Someone actually looks after it.
90 Odd Fixes: It has a maintainer but they don't have time to do
91 much other than throw the odd patch in. See below..
92 Orphan: No current maintainer [but maybe you could take the
93 role as you write your new code].
94 Obsolete: Old code. Something tagged obsolete generally means
95 it has been replaced by a better system and you
96 should be using that.
97 W: *Web-page* with status/info
98 Q: *Patchwork* web based patch tracking system site
99 B: URI for where to file *bugs*. A web-page with detailed bug
100 filing info, a direct bug tracker link, or a mailto: URI.
101 C: URI for *chat* protocol, server and channel where developers
102 usually hang out, for example irc://server/channel.
103 P: Subsystem Profile document for more details submitting
104 patches to the given subsystem. This is either an in-tree file,
105 or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106 for details.
107 T: *SCM* tree type and location.
108 Type is one of: git, hg, quilt, stgit, topgit
109 F: *Files* and directories wildcard patterns.
110 A trailing slash includes all files and subdirectory files.
111 F: drivers/net/ all files in and below drivers/net
112 F: drivers/net/* all files in drivers/net, but not below
113 F: */net/* all files in "any top level directory"/net
114 One pattern per line. Multiple F: lines acceptable.
115 X: *Excluded* files and directories that are NOT maintained, same
116 rules as F:. Files exclusions are tested before file matches.
117 Can be useful for excluding a specific subdirectory, for instance:
118 F: net/
119 X: net/ipv6/
120 matches all files in and below net excluding net/ipv6/
121 N: Files and directories *Regex* patterns.
122 N: [^a-z]tegra all files whose path contains tegra
123 (not including files like integrator)
124 One pattern per line. Multiple N: lines acceptable.
125 scripts/get_maintainer.pl has different behavior for files that
126 match F: pattern and matches of N: patterns. By default,
127 get_maintainer will not look at git log history when an F: pattern
128 match occurs. When an N: match occurs, git log history is used
129 to also notify the people that have git commit signatures.
130 K: *Content regex* (perl extended) pattern match in a patch or file.
131 For instance:
132 K: of_get_profile
133 matches patches or files that contain "of_get_profile"
134 K: \b(printk|pr_(info|err))\b
135 matches patches or files that contain one or more of the words
136 printk, pr_info or pr_err
137 One regex pattern per line. Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143 first. When adding to this list, please keep the entries in
144 alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M: Steffen Klassert <klassert@kernel.org>
148 L: netdev@vger.kernel.org
149 S: Odd Fixes
150 F: Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F: drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M: David Dillow <dave@thedillows.org>
155 L: netdev@vger.kernel.org
156 S: Maintained
157 F: drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M: Adam Radford <aradford@gmail.com>
161 L: linux-scsi@vger.kernel.org
162 S: Supported
163 W: http://www.lsi.com
164 F: drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L: linux-scsi@vger.kernel.org
169 S: Maintained
170 F: drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M: Alexander Aring <alex.aring@gmail.com>
174 M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L: linux-bluetooth@vger.kernel.org
176 L: linux-wpan@vger.kernel.org
177 S: Maintained
178 F: Documentation/networking/6lowpan.rst
179 F: include/net/6lowpan.h
180 F: net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L: linux-hams@vger.kernel.org
185 S: Maintained
186 F: drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M: Johannes Berg <johannes@sipsolutions.net>
190 L: linux-wireless@vger.kernel.org
191 S: Maintained
192 W: https://wireless.wiki.kernel.org/
193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F: Documentation/driver-api/80211/cfg80211.rst
196 F: Documentation/networking/regulatory.rst
197 F: include/linux/ieee80211.h
198 F: include/net/cfg80211.h
199 F: include/net/ieee80211_radiotap.h
200 F: include/net/iw_handler.h
201 F: include/net/wext.h
202 F: include/uapi/linux/nl80211.h
203 F: net/wireless/
204
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
209 S: Maintained
210 F: drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L: linux-serial@vger.kernel.org
215 S: Maintained
216 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F: drivers/tty/serial/8250*
218 F: include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L: netdev@vger.kernel.org
222 S: Orphan / Obsolete
223 F: drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M: Eric Van Hensbergen <ericvh@gmail.com>
227 M: Latchesar Ionkov <lucho@ionkov.net>
228 M: Dominique Martinet <asmadeus@codewreck.org>
229 L: v9fs-developer@lists.sourceforge.net
230 S: Maintained
231 W: http://swik.net/v9fs
232 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T: git git://github.com/martinetd/linux.git
235 F: Documentation/filesystems/9p.rst
236 F: fs/9p/
237 F: include/net/9p/
238 F: include/trace/events/9p.h
239 F: include/uapi/linux/virtio_9p.h
240 F: net/9p/
241
242 A8293 MEDIA DRIVER
243 M: Antti Palosaari <crope@iki.fi>
244 L: linux-media@vger.kernel.org
245 S: Maintained
246 W: https://linuxtv.org
247 W: http://palosaari.fi/linux/
248 Q: http://patchwork.linuxtv.org/project/linux-media/list/
249 T: git git://linuxtv.org/anttip/media_tree.git
250 F: drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L: linux-scsi@vger.kernel.org
255 S: Supported
256 W: http://www.adaptec.com/
257 F: Documentation/scsi/aacraid.rst
258 F: drivers/scsi/aacraid/
259
260 AAEON DEVICE DRIVER WITH WMI INTERFACE
261 M: Edward Lin<edward1_lin@asus.com>
262 M: Kunyang Fan <kunyang_fan@asus.com>
263 M: Frank Hsieh <frank2_hsieh@asus.com>
264 M: Jacob Wu <jacob_wu@asus.com>
265 S: Supported
266 F: drivers/gpio/gpio-aaeon.c
267 F: drivers/hwmon/hwmon-aaeon.c
268 F: drivers/leds/leds-aaeon.c
269 F: drivers/mfd/mfd-aaeon.c
270 F: drivers/watchdog/wdt_aaeon.c
271
272 ABI/API
273 L: linux-api@vger.kernel.org
274 F: include/linux/syscalls.h
275 F: kernel/sys_ni.c
276 X: include/uapi/
277 X: arch/*/include/uapi/
278
279 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280 M: Hans de Goede <hdegoede@redhat.com>
281 L: linux-hwmon@vger.kernel.org
282 S: Maintained
283 F: drivers/hwmon/abituguru.c
284
285 ABIT UGURU 3 HARDWARE MONITOR DRIVER
286 M: Alistair John Strachan <alistair@devzero.co.uk>
287 L: linux-hwmon@vger.kernel.org
288 S: Maintained
289 F: drivers/hwmon/abituguru3.c
290
291 ACCES 104-DIO-48E GPIO DRIVER
292 M: William Breathitt Gray <vilhelm.gray@gmail.com>
293 L: linux-gpio@vger.kernel.org
294 S: Maintained
295 F: drivers/gpio/gpio-104-dio-48e.c
296
297 ACCES 104-IDI-48 GPIO DRIVER
298 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
299 L: linux-gpio@vger.kernel.org
300 S: Maintained
301 F: drivers/gpio/gpio-104-idi-48.c
302
303 ACCES 104-IDIO-16 GPIO DRIVER
304 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
305 L: linux-gpio@vger.kernel.org
306 S: Maintained
307 F: drivers/gpio/gpio-104-idio-16.c
308
309 ACCES 104-QUAD-8 DRIVER
310 M: William Breathitt Gray <vilhelm.gray@gmail.com>
311 M: Syed Nayyar Waris <syednwaris@gmail.com>
312 L: linux-iio@vger.kernel.org
313 S: Maintained
314 F: drivers/counter/104-quad-8.c
315
316 ACCES PCI-IDIO-16 GPIO DRIVER
317 M: William Breathitt Gray <vilhelm.gray@gmail.com>
318 L: linux-gpio@vger.kernel.org
319 S: Maintained
320 F: drivers/gpio/gpio-pci-idio-16.c
321
322 ACCES PCIe-IDIO-24 GPIO DRIVER
323 M: William Breathitt Gray <vilhelm.gray@gmail.com>
324 L: linux-gpio@vger.kernel.org
325 S: Maintained
326 F: drivers/gpio/gpio-pcie-idio-24.c
327
328 ACENIC DRIVER
329 M: Jes Sorensen <jes@trained-monkey.org>
330 L: linux-acenic@sunsite.dk
331 S: Maintained
332 F: drivers/net/ethernet/alteon/acenic*
333
334 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
335 M: Peter Kaestle <peter@piie.net>
336 L: platform-driver-x86@vger.kernel.org
337 S: Maintained
338 W: http://piie.net/?section=acerhdf
339 F: drivers/platform/x86/acerhdf.c
340
341 ACER WMI LAPTOP EXTRAS
342 M: "Lee, Chun-Yi" <jlee@suse.com>
343 L: platform-driver-x86@vger.kernel.org
344 S: Maintained
345 F: drivers/platform/x86/acer-wmi.c
346
347 ACPI
348 M: "Rafael J. Wysocki" <rafael@kernel.org>
349 M: Len Brown <lenb@kernel.org>
350 L: linux-acpi@vger.kernel.org
351 S: Supported
352 W: https://01.org/linux-acpi
353 Q: https://patchwork.kernel.org/project/linux-acpi/list/
354 B: https://bugzilla.kernel.org
355 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
356 F: Documentation/ABI/testing/configfs-acpi
357 F: Documentation/ABI/testing/sysfs-bus-acpi
358 F: Documentation/firmware-guide/acpi/
359 F: drivers/acpi/
360 F: drivers/pci/*/*acpi*
361 F: drivers/pci/*acpi*
362 F: drivers/pnp/pnpacpi/
363 F: include/acpi/
364 F: include/linux/acpi.h
365 F: include/linux/fwnode.h
366 F: tools/power/acpi/
367
368 ACPI APEI
369 M: "Rafael J. Wysocki" <rafael@kernel.org>
370 M: Len Brown <lenb@kernel.org>
371 R: James Morse <james.morse@arm.com>
372 R: Tony Luck <tony.luck@intel.com>
373 R: Borislav Petkov <bp@alien8.de>
374 L: linux-acpi@vger.kernel.org
375 F: drivers/acpi/apei/
376
377 ACPI COMPONENT ARCHITECTURE (ACPICA)
378 M: Robert Moore <robert.moore@intel.com>
379 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
380 L: linux-acpi@vger.kernel.org
381 L: devel@acpica.org
382 S: Supported
383 W: https://acpica.org/
384 W: https://github.com/acpica/acpica/
385 Q: https://patchwork.kernel.org/project/linux-acpi/list/
386 B: https://bugzilla.kernel.org
387 B: https://bugs.acpica.org
388 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
389 F: drivers/acpi/acpica/
390 F: include/acpi/
391 F: tools/power/acpi/
392
393 ACPI FAN DRIVER
394 M: Zhang Rui <rui.zhang@intel.com>
395 L: linux-acpi@vger.kernel.org
396 S: Supported
397 W: https://01.org/linux-acpi
398 B: https://bugzilla.kernel.org
399 F: drivers/acpi/fan.c
400
401 ACPI FOR ARM64 (ACPI/arm64)
402 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
403 M: Hanjun Guo <guohanjun@huawei.com>
404 M: Sudeep Holla <sudeep.holla@arm.com>
405 L: linux-acpi@vger.kernel.org
406 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
407 S: Maintained
408 F: drivers/acpi/arm64
409
410 ACPI SERIAL MULTI INSTANTIATE DRIVER
411 M: Hans de Goede <hdegoede@redhat.com>
412 L: platform-driver-x86@vger.kernel.org
413 S: Maintained
414 F: drivers/platform/x86/serial-multi-instantiate.c
415
416 ACPI PMIC DRIVERS
417 M: "Rafael J. Wysocki" <rafael@kernel.org>
418 M: Len Brown <lenb@kernel.org>
419 R: Andy Shevchenko <andy@kernel.org>
420 R: Mika Westerberg <mika.westerberg@linux.intel.com>
421 L: linux-acpi@vger.kernel.org
422 S: Supported
423 Q: https://patchwork.kernel.org/project/linux-acpi/list/
424 B: https://bugzilla.kernel.org
425 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
426 F: drivers/acpi/pmic/
427
428 ACPI THERMAL DRIVER
429 M: Rafael J. Wysocki <rafael@kernel.org>
430 R: Zhang Rui <rui.zhang@intel.com>
431 L: linux-acpi@vger.kernel.org
432 S: Supported
433 W: https://01.org/linux-acpi
434 B: https://bugzilla.kernel.org
435 F: drivers/acpi/*thermal*
436
437 ACPI VIDEO DRIVER
438 M: Zhang Rui <rui.zhang@intel.com>
439 L: linux-acpi@vger.kernel.org
440 S: Supported
441 W: https://01.org/linux-acpi
442 B: https://bugzilla.kernel.org
443 F: drivers/acpi/acpi_video.c
444
445 ACPI VIOT DRIVER
446 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
447 L: linux-acpi@vger.kernel.org
448 L: iommu@lists.linux-foundation.org
449 S: Maintained
450 F: drivers/acpi/viot.c
451 F: include/linux/acpi_viot.h
452
453 ACPI WMI DRIVER
454 L: platform-driver-x86@vger.kernel.org
455 S: Orphan
456 F: drivers/platform/x86/wmi.c
457 F: include/uapi/linux/wmi.h
458
459 ACRN HYPERVISOR SERVICE MODULE
460 M: Fei Li <fei1.li@intel.com>
461 L: acrn-dev@lists.projectacrn.org (subscribers-only)
462 S: Supported
463 W: https://projectacrn.org
464 F: Documentation/virt/acrn/
465 F: drivers/virt/acrn/
466 F: include/uapi/linux/acrn.h
467
468 AD1889 ALSA SOUND DRIVER
469 L: linux-parisc@vger.kernel.org
470 S: Maintained
471 W: https://parisc.wiki.kernel.org/index.php/AD1889
472 F: sound/pci/ad1889.*
473
474 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
475 M: Mugilraj Dhavachelvan <dmugil2000@gmail.com>
476 L: linux-iio@vger.kernel.org
477 S: Supported
478 F: drivers/iio/potentiometer/ad5110.c
479
480 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
481 M: Michael Hennerich <michael.hennerich@analog.com>
482 S: Supported
483 W: http://wiki.analog.com/AD5254
484 W: http://ez.analog.com/community/linux-device-drivers
485 F: drivers/misc/ad525x_dpot.c
486
487 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
488 M: Michael Hennerich <michael.hennerich@analog.com>
489 S: Supported
490 W: http://wiki.analog.com/AD5398
491 W: http://ez.analog.com/community/linux-device-drivers
492 F: drivers/regulator/ad5398.c
493
494 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
495 M: Michael Hennerich <michael.hennerich@analog.com>
496 S: Supported
497 W: http://wiki.analog.com/AD7142
498 W: http://ez.analog.com/community/linux-device-drivers
499 F: drivers/input/misc/ad714x.c
500
501 AD7877 TOUCHSCREEN DRIVER
502 M: Michael Hennerich <michael.hennerich@analog.com>
503 S: Supported
504 W: http://wiki.analog.com/AD7877
505 W: http://ez.analog.com/community/linux-device-drivers
506 F: drivers/input/touchscreen/ad7877.c
507
508 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
509 M: Michael Hennerich <michael.hennerich@analog.com>
510 S: Supported
511 W: http://wiki.analog.com/AD7879
512 W: http://ez.analog.com/community/linux-device-drivers
513 F: drivers/input/touchscreen/ad7879.c
514
515 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
516 M: Jiri Kosina <jikos@kernel.org>
517 S: Maintained
518
519 ADF7242 IEEE 802.15.4 RADIO DRIVER
520 M: Michael Hennerich <michael.hennerich@analog.com>
521 L: linux-wpan@vger.kernel.org
522 S: Supported
523 W: https://wiki.analog.com/ADF7242
524 W: http://ez.analog.com/community/linux-device-drivers
525 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
526 F: drivers/net/ieee802154/adf7242.c
527
528 ADM1025 HARDWARE MONITOR DRIVER
529 M: Jean Delvare <jdelvare@suse.com>
530 L: linux-hwmon@vger.kernel.org
531 S: Maintained
532 F: Documentation/hwmon/adm1025.rst
533 F: drivers/hwmon/adm1025.c
534
535 ADM1029 HARDWARE MONITOR DRIVER
536 M: Corentin Labbe <clabbe.montjoie@gmail.com>
537 L: linux-hwmon@vger.kernel.org
538 S: Maintained
539 F: drivers/hwmon/adm1029.c
540
541 ADM8211 WIRELESS DRIVER
542 L: linux-wireless@vger.kernel.org
543 S: Orphan
544 W: https://wireless.wiki.kernel.org/
545 F: drivers/net/wireless/admtek/adm8211.*
546
547 ADP1653 FLASH CONTROLLER DRIVER
548 M: Sakari Ailus <sakari.ailus@iki.fi>
549 L: linux-media@vger.kernel.org
550 S: Maintained
551 F: drivers/media/i2c/adp1653.c
552 F: include/media/i2c/adp1653.h
553
554 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
555 M: Michael Hennerich <michael.hennerich@analog.com>
556 S: Supported
557 W: http://wiki.analog.com/ADP5520
558 W: http://ez.analog.com/community/linux-device-drivers
559 F: drivers/gpio/gpio-adp5520.c
560 F: drivers/input/keyboard/adp5520-keys.c
561 F: drivers/leds/leds-adp5520.c
562 F: drivers/mfd/adp5520.c
563 F: drivers/video/backlight/adp5520_bl.c
564
565 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
566 M: Michael Hennerich <michael.hennerich@analog.com>
567 S: Supported
568 W: http://wiki.analog.com/ADP5588
569 W: http://ez.analog.com/community/linux-device-drivers
570 F: drivers/gpio/gpio-adp5588.c
571 F: drivers/input/keyboard/adp5588-keys.c
572
573 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
574 M: Michael Hennerich <michael.hennerich@analog.com>
575 S: Supported
576 W: http://wiki.analog.com/ADP8860
577 W: http://ez.analog.com/community/linux-device-drivers
578 F: drivers/video/backlight/adp8860_bl.c
579
580 ADT746X FAN DRIVER
581 M: Colin Leroy <colin@colino.net>
582 S: Maintained
583 F: drivers/macintosh/therm_adt746x.c
584
585 ADT7475 HARDWARE MONITOR DRIVER
586 M: Jean Delvare <jdelvare@suse.com>
587 L: linux-hwmon@vger.kernel.org
588 S: Maintained
589 F: Documentation/hwmon/adt7475.rst
590 F: drivers/hwmon/adt7475.c
591
592 ADVANSYS SCSI DRIVER
593 M: Matthew Wilcox <willy@infradead.org>
594 M: Hannes Reinecke <hare@suse.com>
595 L: linux-scsi@vger.kernel.org
596 S: Maintained
597 F: Documentation/scsi/advansys.rst
598 F: drivers/scsi/advansys.c
599
600 ADVANTECH SWBTN DRIVER
601 M: Andrea Ho <Andrea.Ho@advantech.com.tw>
602 L: platform-driver-x86@vger.kernel.org
603 S: Maintained
604 F: drivers/platform/x86/adv_swbutton.c
605
606 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
607 M: Michael Hennerich <michael.hennerich@analog.com>
608 S: Supported
609 W: http://wiki.analog.com/ADXL345
610 W: http://ez.analog.com/community/linux-device-drivers
611 F: Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
612 F: drivers/input/misc/adxl34x.c
613
614 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
615 M: Michael Hennerich <michael.hennerich@analog.com>
616 S: Supported
617 W: http://ez.analog.com/community/linux-device-drivers
618 F: Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
619 F: drivers/iio/accel/adxl372.c
620 F: drivers/iio/accel/adxl372_i2c.c
621 F: drivers/iio/accel/adxl372_spi.c
622
623 AF9013 MEDIA DRIVER
624 M: Antti Palosaari <crope@iki.fi>
625 L: linux-media@vger.kernel.org
626 S: Maintained
627 W: https://linuxtv.org
628 W: http://palosaari.fi/linux/
629 Q: http://patchwork.linuxtv.org/project/linux-media/list/
630 T: git git://linuxtv.org/anttip/media_tree.git
631 F: drivers/media/dvb-frontends/af9013*
632
633 AF9033 MEDIA DRIVER
634 M: Antti Palosaari <crope@iki.fi>
635 L: linux-media@vger.kernel.org
636 S: Maintained
637 W: https://linuxtv.org
638 W: http://palosaari.fi/linux/
639 Q: http://patchwork.linuxtv.org/project/linux-media/list/
640 T: git git://linuxtv.org/anttip/media_tree.git
641 F: drivers/media/dvb-frontends/af9033*
642
643 AFFS FILE SYSTEM
644 M: David Sterba <dsterba@suse.com>
645 L: linux-fsdevel@vger.kernel.org
646 S: Odd Fixes
647 F: Documentation/filesystems/affs.rst
648 F: fs/affs/
649
650 AFS FILESYSTEM
651 M: David Howells <dhowells@redhat.com>
652 M: Marc Dionne <marc.dionne@auristor.com>
653 L: linux-afs@lists.infradead.org
654 S: Supported
655 W: https://www.infradead.org/~dhowells/kafs/
656 F: Documentation/filesystems/afs.rst
657 F: fs/afs/
658 F: include/trace/events/afs.h
659
660 AGPGART DRIVER
661 M: David Airlie <airlied@linux.ie>
662 S: Maintained
663 T: git git://anongit.freedesktop.org/drm/drm
664 F: drivers/char/agp/
665 F: include/linux/agp*
666 F: include/uapi/linux/agp*
667
668 AHA152X SCSI DRIVER
669 M: "Juergen E. Fischer" <fischer@norbit.de>
670 L: linux-scsi@vger.kernel.org
671 S: Maintained
672 F: drivers/scsi/aha152x*
673 F: drivers/scsi/pcmcia/aha152x*
674
675 AIC7XXX / AIC79XX SCSI DRIVER
676 M: Hannes Reinecke <hare@suse.com>
677 L: linux-scsi@vger.kernel.org
678 S: Maintained
679 F: drivers/scsi/aic7xxx/
680
681 AIMSLAB FM RADIO RECEIVER DRIVER
682 M: Hans Verkuil <hverkuil@xs4all.nl>
683 L: linux-media@vger.kernel.org
684 S: Maintained
685 W: https://linuxtv.org
686 T: git git://linuxtv.org/media_tree.git
687 F: drivers/media/radio/radio-aimslab*
688
689 AIO
690 M: Benjamin LaHaise <bcrl@kvack.org>
691 L: linux-aio@kvack.org
692 S: Supported
693 F: fs/aio.c
694 F: include/linux/*aio*.h
695
696 AIRSPY MEDIA DRIVER
697 M: Antti Palosaari <crope@iki.fi>
698 L: linux-media@vger.kernel.org
699 S: Maintained
700 W: https://linuxtv.org
701 W: http://palosaari.fi/linux/
702 Q: http://patchwork.linuxtv.org/project/linux-media/list/
703 T: git git://linuxtv.org/anttip/media_tree.git
704 F: drivers/media/usb/airspy/
705
706 ALACRITECH GIGABIT ETHERNET DRIVER
707 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
708 S: Maintained
709 F: drivers/net/ethernet/alacritech/*
710
711 ALCATEL SPEEDTOUCH USB DRIVER
712 M: Duncan Sands <duncan.sands@free.fr>
713 L: linux-usb@vger.kernel.org
714 S: Maintained
715 W: http://www.linux-usb.org/SpeedTouch/
716 F: drivers/usb/atm/speedtch.c
717 F: drivers/usb/atm/usbatm.c
718
719 ALCHEMY AU1XX0 MMC DRIVER
720 M: Manuel Lauss <manuel.lauss@gmail.com>
721 S: Maintained
722 F: drivers/mmc/host/au1xmmc.c
723
724 ALI1563 I2C DRIVER
725 M: Rudolf Marek <r.marek@assembler.cz>
726 L: linux-i2c@vger.kernel.org
727 S: Maintained
728 F: Documentation/i2c/busses/i2c-ali1563.rst
729 F: drivers/i2c/busses/i2c-ali1563.c
730
731 ALIENWARE WMI DRIVER
732 L: Dell.Client.Kernel@dell.com
733 S: Maintained
734 F: drivers/platform/x86/dell/alienware-wmi.c
735
736 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
737 M: Tomislav Denis <tomislav.denis@avl.com>
738 L: linux-iio@vger.kernel.org
739 S: Maintained
740 W: http://www.allsensors.com/
741 F: Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
742 F: drivers/iio/pressure/dlhl60d.c
743
744 ALLEGRO DVT VIDEO IP CORE DRIVER
745 M: Michael Tretter <m.tretter@pengutronix.de>
746 R: Pengutronix Kernel Team <kernel@pengutronix.de>
747 L: linux-media@vger.kernel.org
748 S: Maintained
749 F: Documentation/devicetree/bindings/media/allegro,al5e.yaml
750 F: drivers/media/platform/allegro-dvt/
751
752 ALLWINNER A10 CSI DRIVER
753 M: Maxime Ripard <mripard@kernel.org>
754 L: linux-media@vger.kernel.org
755 S: Maintained
756 T: git git://linuxtv.org/media_tree.git
757 F: Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
758 F: drivers/media/platform/sunxi/sun4i-csi/
759
760 ALLWINNER CPUFREQ DRIVER
761 M: Yangtao Li <tiny.windzz@gmail.com>
762 L: linux-pm@vger.kernel.org
763 S: Maintained
764 F: Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
765 F: drivers/cpufreq/sun50i-cpufreq-nvmem.c
766
767 ALLWINNER CRYPTO DRIVERS
768 M: Corentin Labbe <clabbe.montjoie@gmail.com>
769 L: linux-crypto@vger.kernel.org
770 S: Maintained
771 F: drivers/crypto/allwinner/
772
773 ALLWINNER HARDWARE SPINLOCK SUPPORT
774 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
775 S: Maintained
776 F: Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
777 F: drivers/hwspinlock/sun6i_hwspinlock.c
778
779 ALLWINNER THERMAL DRIVER
780 M: Vasily Khoruzhick <anarsoul@gmail.com>
781 M: Yangtao Li <tiny.windzz@gmail.com>
782 L: linux-pm@vger.kernel.org
783 S: Maintained
784 F: Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
785 F: drivers/thermal/sun8i_thermal.c
786
787 ALLWINNER VPU DRIVER
788 M: Maxime Ripard <mripard@kernel.org>
789 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
790 L: linux-media@vger.kernel.org
791 S: Maintained
792 F: drivers/staging/media/sunxi/cedrus/
793
794 ALPHA PORT
795 M: Richard Henderson <rth@twiddle.net>
796 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
797 M: Matt Turner <mattst88@gmail.com>
798 L: linux-alpha@vger.kernel.org
799 S: Odd Fixes
800 F: arch/alpha/
801
802 ALPS PS/2 TOUCHPAD DRIVER
803 R: Pali Rohár <pali@kernel.org>
804 F: drivers/input/mouse/alps.*
805
806 ALTERA I2C CONTROLLER DRIVER
807 M: Thor Thayer <thor.thayer@linux.intel.com>
808 S: Maintained
809 F: Documentation/devicetree/bindings/i2c/i2c-altera.txt
810 F: drivers/i2c/busses/i2c-altera.c
811
812 ALTERA MAILBOX DRIVER
813 M: Joyce Ooi <joyce.ooi@intel.com>
814 S: Maintained
815 F: drivers/mailbox/mailbox-altera.c
816
817 ALTERA MSGDMA IP CORE DRIVER
818 M: Olivier Dautricourt <olivier.dautricourt@orolia.com>
819 R: Stefan Roese <sr@denx.de>
820 L: dmaengine@vger.kernel.org
821 S: Odd Fixes
822 F: Documentation/devicetree/bindings/dma/altr,msgdma.yaml
823 F: drivers/dma/altera-msgdma.c
824
825 ALTERA PIO DRIVER
826 M: Mun Yew Tham <mun.yew.tham@intel.com>
827 L: linux-gpio@vger.kernel.org
828 S: Maintained
829 F: drivers/gpio/gpio-altera.c
830
831 ALTERA SYSTEM MANAGER DRIVER
832 M: Thor Thayer <thor.thayer@linux.intel.com>
833 S: Maintained
834 F: drivers/mfd/altera-sysmgr.c
835 F: include/linux/mfd/altera-sysmgr.h
836
837 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
838 M: Thor Thayer <thor.thayer@linux.intel.com>
839 S: Maintained
840 F: drivers/gpio/gpio-altera-a10sr.c
841 F: drivers/mfd/altera-a10sr.c
842 F: drivers/reset/reset-a10sr.c
843 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
844 F: include/linux/mfd/altera-a10sr.h
845
846 ALTERA TRIPLE SPEED ETHERNET DRIVER
847 M: Joyce Ooi <joyce.ooi@intel.com>
848 L: netdev@vger.kernel.org
849 S: Maintained
850 F: drivers/net/ethernet/altera/
851
852 ALTERA UART/JTAG UART SERIAL DRIVERS
853 M: Tobias Klauser <tklauser@distanz.ch>
854 L: linux-serial@vger.kernel.org
855 S: Maintained
856 F: drivers/tty/serial/altera_jtaguart.c
857 F: drivers/tty/serial/altera_uart.c
858 F: include/linux/altera_jtaguart.h
859 F: include/linux/altera_uart.h
860
861 AMAZON ANNAPURNA LABS FIC DRIVER
862 M: Talel Shenhar <talel@amazon.com>
863 S: Maintained
864 F: Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
865 F: drivers/irqchip/irq-al-fic.c
866
867 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
868 M: Talel Shenhar <talel@amazon.com>
869 M: Talel Shenhar <talelshenhar@gmail.com>
870 S: Maintained
871 F: Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
872 F: drivers/edac/al_mc_edac.c
873
874 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
875 M: Talel Shenhar <talel@amazon.com>
876 S: Maintained
877 F: Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
878 F: drivers/thermal/thermal_mmio.c
879
880 AMAZON ETHERNET DRIVERS
881 M: Netanel Belgazal <netanel@amazon.com>
882 M: Arthur Kiyanovski <akiyano@amazon.com>
883 R: Guy Tzalik <gtzalik@amazon.com>
884 R: Saeed Bishara <saeedb@amazon.com>
885 L: netdev@vger.kernel.org
886 S: Supported
887 F: Documentation/networking/device_drivers/ethernet/amazon/ena.rst
888 F: drivers/net/ethernet/amazon/
889
890 AMAZON RDMA EFA DRIVER
891 M: Gal Pressman <galpress@amazon.com>
892 R: Yossi Leybovich <sleybo@amazon.com>
893 L: linux-rdma@vger.kernel.org
894 S: Supported
895 Q: https://patchwork.kernel.org/project/linux-rdma/list/
896 F: drivers/infiniband/hw/efa/
897 F: include/uapi/rdma/efa-abi.h
898
899 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
900 M: Tom Lendacky <thomas.lendacky@amd.com>
901 M: John Allen <john.allen@amd.com>
902 L: linux-crypto@vger.kernel.org
903 S: Supported
904 F: drivers/crypto/ccp/
905 F: include/linux/ccp.h
906
907 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
908 M: Brijesh Singh <brijesh.singh@amd.com>
909 M: Tom Lendacky <thomas.lendacky@amd.com>
910 L: linux-crypto@vger.kernel.org
911 S: Supported
912 F: drivers/crypto/ccp/sev*
913 F: include/uapi/linux/psp-sev.h
914
915 AMD DISPLAY CORE
916 M: Harry Wentland <harry.wentland@amd.com>
917 M: Leo Li <sunpeng.li@amd.com>
918 L: amd-gfx@lists.freedesktop.org
919 S: Supported
920 T: git https://gitlab.freedesktop.org/agd5f/linux.git
921 F: drivers/gpu/drm/amd/display/
922
923 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
924 M: Huang Rui <ray.huang@amd.com>
925 L: linux-hwmon@vger.kernel.org
926 S: Supported
927 F: Documentation/hwmon/fam15h_power.rst
928 F: drivers/hwmon/fam15h_power.c
929
930 AMD FCH GPIO DRIVER
931 M: Enrico Weigelt, metux IT consult <info@metux.net>
932 L: linux-gpio@vger.kernel.org
933 S: Maintained
934 F: drivers/gpio/gpio-amd-fch.c
935 F: include/linux/platform_data/gpio/gpio-amd-fch.h
936
937 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
938 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
939 S: Orphan
940 F: drivers/usb/gadget/udc/amd5536udc.*
941
942 AMD GEODE PROCESSOR/CHIPSET SUPPORT
943 M: Andres Salomon <dilinger@queued.net>
944 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
945 S: Supported
946 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
947 F: arch/x86/include/asm/geode.h
948 F: drivers/char/hw_random/geode-rng.c
949 F: drivers/crypto/geode*
950 F: drivers/video/fbdev/geode/
951
952 AMD IOMMU (AMD-VI)
953 M: Joerg Roedel <joro@8bytes.org>
954 R: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
955 L: iommu@lists.linux-foundation.org
956 S: Maintained
957 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
958 F: drivers/iommu/amd/
959 F: include/linux/amd-iommu.h
960
961 AMD KFD
962 M: Felix Kuehling <Felix.Kuehling@amd.com>
963 L: amd-gfx@lists.freedesktop.org
964 S: Supported
965 T: git https://gitlab.freedesktop.org/agd5f/linux.git
966 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
967 F: drivers/gpu/drm/amd/amdkfd/
968 F: drivers/gpu/drm/amd/include/cik_structs.h
969 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
970 F: drivers/gpu/drm/amd/include/v9_structs.h
971 F: drivers/gpu/drm/amd/include/vi_structs.h
972 F: include/uapi/linux/kfd_ioctl.h
973
974 AMD SPI DRIVER
975 M: Sanjay R Mehta <sanju.mehta@amd.com>
976 S: Maintained
977 F: drivers/spi/spi-amd.c
978
979 AMD MP2 I2C DRIVER
980 M: Elie Morisse <syniurge@gmail.com>
981 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
982 M: Shyam Sundar S K <shyam-sundar.s-k@amd.com>
983 L: linux-i2c@vger.kernel.org
984 S: Maintained
985 F: drivers/i2c/busses/i2c-amd-mp2*
986
987 AMD PMC DRIVER
988 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
989 L: platform-driver-x86@vger.kernel.org
990 S: Maintained
991 F: drivers/platform/x86/amd-pmc.*
992
993 AMD POWERPLAY AND SWSMU
994 M: Evan Quan <evan.quan@amd.com>
995 L: amd-gfx@lists.freedesktop.org
996 S: Supported
997 T: git https://gitlab.freedesktop.org/agd5f/linux.git
998 F: drivers/gpu/drm/amd/pm/
999
1000 AMD PTDMA DRIVER
1001 M: Sanjay R Mehta <sanju.mehta@amd.com>
1002 L: dmaengine@vger.kernel.org
1003 S: Maintained
1004 F: drivers/dma/ptdma/
1005
1006 AMD PSTATE DRIVER
1007 M: Huang Rui <ray.huang@amd.com>
1008 L: linux-pm@vger.kernel.org
1009 S: Supported
1010 F: Documentation/admin-guide/pm/amd-pstate.rst
1011 F: drivers/cpufreq/amd-pstate*
1012
1013 AMD SEATTLE DEVICE TREE SUPPORT
1014 M: Brijesh Singh <brijeshkumar.singh@amd.com>
1015 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1016 M: Tom Lendacky <thomas.lendacky@amd.com>
1017 S: Supported
1018 F: arch/arm64/boot/dts/amd/
1019
1020 AMD XGBE DRIVER
1021 M: Tom Lendacky <thomas.lendacky@amd.com>
1022 L: netdev@vger.kernel.org
1023 S: Supported
1024 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1025 F: drivers/net/ethernet/amd/xgbe/
1026
1027 AMD SENSOR FUSION HUB DRIVER
1028 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
1029 M: Basavaraj Natikar <basavaraj.natikar@amd.com>
1030 L: linux-input@vger.kernel.org
1031 S: Maintained
1032 F: Documentation/hid/amd-sfh*
1033 F: drivers/hid/amd-sfh-hid/
1034
1035 AMS AS73211 DRIVER
1036 M: Christian Eggers <ceggers@arri.de>
1037 L: linux-iio@vger.kernel.org
1038 S: Maintained
1039 F: Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1040 F: drivers/iio/light/as73211.c
1041
1042 ANALOG DEVICES INC AD7192 DRIVER
1043 M: Alexandru Tachici <alexandru.tachici@analog.com>
1044 L: linux-iio@vger.kernel.org
1045 S: Supported
1046 W: http://ez.analog.com/community/linux-device-drivers
1047 F: Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1048 F: drivers/iio/adc/ad7192.c
1049
1050 ANALOG DEVICES INC AD7292 DRIVER
1051 M: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1052 L: linux-iio@vger.kernel.org
1053 S: Supported
1054 W: http://ez.analog.com/community/linux-device-drivers
1055 F: Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1056 F: drivers/iio/adc/ad7292.c
1057
1058 ANALOG DEVICES INC AD7768-1 DRIVER
1059 M: Michael Hennerich <Michael.Hennerich@analog.com>
1060 L: linux-iio@vger.kernel.org
1061 S: Supported
1062 W: http://ez.analog.com/community/linux-device-drivers
1063 F: Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1064 F: drivers/iio/adc/ad7768-1.c
1065
1066 ANALOG DEVICES INC AD7780 DRIVER
1067 M: Michael Hennerich <Michael.Hennerich@analog.com>
1068 M: Renato Lui Geh <renatogeh@gmail.com>
1069 L: linux-iio@vger.kernel.org
1070 S: Supported
1071 W: http://ez.analog.com/community/linux-device-drivers
1072 F: Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1073 F: drivers/iio/adc/ad7780.c
1074
1075 ANALOG DEVICES INC AD9389B DRIVER
1076 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1077 L: linux-media@vger.kernel.org
1078 S: Maintained
1079 F: drivers/media/i2c/ad9389b*
1080
1081 ANALOG DEVICES INC ADGS1408 DRIVER
1082 M: Mircea Caprioru <mircea.caprioru@analog.com>
1083 S: Supported
1084 F: Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1085 F: drivers/mux/adgs1408.c
1086
1087 ANALOG DEVICES INC ADIN DRIVER
1088 M: Michael Hennerich <michael.hennerich@analog.com>
1089 L: netdev@vger.kernel.org
1090 S: Supported
1091 W: http://ez.analog.com/community/linux-device-drivers
1092 F: Documentation/devicetree/bindings/net/adi,adin.yaml
1093 F: drivers/net/phy/adin.c
1094
1095 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1096 M: Nuno Sa <nuno.sa@analog.com>
1097 L: linux-iio@vger.kernel.org
1098 S: Supported
1099 F: drivers/iio/imu/adis.c
1100 F: include/linux/iio/imu/adis.h
1101
1102 ANALOG DEVICES INC ADIS16460 DRIVER
1103 M: Dragos Bogdan <dragos.bogdan@analog.com>
1104 L: linux-iio@vger.kernel.org
1105 S: Supported
1106 W: http://ez.analog.com/community/linux-device-drivers
1107 F: Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1108 F: drivers/iio/imu/adis16460.c
1109
1110 ANALOG DEVICES INC ADIS16475 DRIVER
1111 M: Nuno Sa <nuno.sa@analog.com>
1112 L: linux-iio@vger.kernel.org
1113 W: http://ez.analog.com/community/linux-device-drivers
1114 S: Supported
1115 F: drivers/iio/imu/adis16475.c
1116 F: Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1117
1118 ANALOG DEVICES INC ADM1177 DRIVER
1119 M: Michael Hennerich <Michael.Hennerich@analog.com>
1120 L: linux-hwmon@vger.kernel.org
1121 S: Supported
1122 W: http://ez.analog.com/community/linux-device-drivers
1123 F: Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1124 F: drivers/hwmon/adm1177.c
1125
1126 ANALOG DEVICES INC ADP5061 DRIVER
1127 M: Michael Hennerich <Michael.Hennerich@analog.com>
1128 L: linux-pm@vger.kernel.org
1129 S: Supported
1130 W: http://ez.analog.com/community/linux-device-drivers
1131 F: drivers/power/supply/adp5061.c
1132
1133 ANALOG DEVICES INC ADV7180 DRIVER
1134 M: Lars-Peter Clausen <lars@metafoo.de>
1135 L: linux-media@vger.kernel.org
1136 S: Supported
1137 W: http://ez.analog.com/community/linux-device-drivers
1138 F: drivers/media/i2c/adv7180.c
1139 F: Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1140
1141 ANALOG DEVICES INC ADV748X DRIVER
1142 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
1143 L: linux-media@vger.kernel.org
1144 S: Maintained
1145 F: drivers/media/i2c/adv748x/*
1146
1147 ANALOG DEVICES INC ADV7511 DRIVER
1148 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1149 L: linux-media@vger.kernel.org
1150 S: Maintained
1151 F: drivers/media/i2c/adv7511*
1152
1153 ANALOG DEVICES INC ADV7604 DRIVER
1154 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1155 L: linux-media@vger.kernel.org
1156 S: Maintained
1157 F: drivers/media/i2c/adv7604*
1158 F: Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1159
1160 ANALOG DEVICES INC ADV7842 DRIVER
1161 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1162 L: linux-media@vger.kernel.org
1163 S: Maintained
1164 F: drivers/media/i2c/adv7842*
1165
1166 ANALOG DEVICES INC ADXRS290 DRIVER
1167 M: Nishant Malpani <nish.malpani25@gmail.com>
1168 L: linux-iio@vger.kernel.org
1169 S: Supported
1170 F: drivers/iio/gyro/adxrs290.c
1171 F: Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1172
1173 ANALOG DEVICES INC ASOC CODEC DRIVERS
1174 M: Lars-Peter Clausen <lars@metafoo.de>
1175 M: Nuno Sá <nuno.sa@analog.com>
1176 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1177 S: Supported
1178 W: http://wiki.analog.com/
1179 W: http://ez.analog.com/community/linux-device-drivers
1180 F: sound/soc/codecs/ad1*
1181 F: sound/soc/codecs/ad7*
1182 F: sound/soc/codecs/adau*
1183 F: sound/soc/codecs/adav*
1184 F: sound/soc/codecs/sigmadsp.*
1185 F: sound/soc/codecs/ssm*
1186
1187 ANALOG DEVICES INC DMA DRIVERS
1188 M: Lars-Peter Clausen <lars@metafoo.de>
1189 S: Supported
1190 W: http://ez.analog.com/community/linux-device-drivers
1191 F: drivers/dma/dma-axi-dmac.c
1192
1193 ANALOG DEVICES INC IIO DRIVERS
1194 M: Lars-Peter Clausen <lars@metafoo.de>
1195 M: Michael Hennerich <Michael.Hennerich@analog.com>
1196 S: Supported
1197 W: http://wiki.analog.com/
1198 W: http://ez.analog.com/community/linux-device-drivers
1199 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1200 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1201 F: Documentation/devicetree/bindings/iio/*/adi,*
1202 F: Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1203 F: drivers/iio/*/ad*
1204 F: drivers/iio/adc/ltc249*
1205 F: drivers/iio/amplifiers/hmc425a.c
1206 F: drivers/staging/iio/*/ad*
1207 X: drivers/iio/*/adjd*
1208
1209 ANALOGBITS PLL LIBRARIES
1210 M: Paul Walmsley <paul.walmsley@sifive.com>
1211 S: Supported
1212 F: drivers/clk/analogbits/*
1213 F: include/linux/clk/analogbits*
1214
1215 ANDES ARCHITECTURE
1216 M: Nick Hu <nickhu@andestech.com>
1217 M: Greentime Hu <green.hu@gmail.com>
1218 M: Vincent Chen <deanbo422@gmail.com>
1219 S: Supported
1220 T: git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1221 F: Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1222 F: Documentation/devicetree/bindings/nds32/
1223 F: arch/nds32/
1224 N: nds32
1225 K: nds32
1226
1227 ANDROID CONFIG FRAGMENTS
1228 M: Rob Herring <robh@kernel.org>
1229 S: Supported
1230 F: kernel/configs/android*
1231
1232 ANDROID DRIVERS
1233 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1234 M: Arve Hjønnevåg <arve@android.com>
1235 M: Todd Kjos <tkjos@android.com>
1236 M: Martijn Coenen <maco@android.com>
1237 M: Joel Fernandes <joel@joelfernandes.org>
1238 M: Christian Brauner <christian@brauner.io>
1239 M: Hridya Valsaraju <hridya@google.com>
1240 M: Suren Baghdasaryan <surenb@google.com>
1241 L: linux-kernel@vger.kernel.org
1242 S: Supported
1243 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1244 F: drivers/android/
1245 F: drivers/staging/android/
1246
1247 ANDROID GOLDFISH PIC DRIVER
1248 M: Miodrag Dinic <miodrag.dinic@mips.com>
1249 S: Supported
1250 F: Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1251 F: drivers/irqchip/irq-goldfish-pic.c
1252
1253 ANDROID GOLDFISH RTC DRIVER
1254 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
1255 S: Supported
1256 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1257 F: drivers/rtc/rtc-goldfish.c
1258
1259 AOA (Apple Onboard Audio) ALSA DRIVER
1260 M: Johannes Berg <johannes@sipsolutions.net>
1261 L: linuxppc-dev@lists.ozlabs.org
1262 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1263 S: Maintained
1264 F: sound/aoa/
1265
1266 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1267 M: William Breathitt Gray <vilhelm.gray@gmail.com>
1268 L: linux-iio@vger.kernel.org
1269 S: Maintained
1270 F: drivers/iio/adc/stx104.c
1271
1272 APM DRIVER
1273 M: Jiri Kosina <jikos@kernel.org>
1274 S: Odd fixes
1275 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1276 F: arch/x86/kernel/apm_32.c
1277 F: drivers/char/apm-emulation.c
1278 F: include/linux/apm_bios.h
1279 F: include/uapi/linux/apm_bios.h
1280
1281 APPARMOR SECURITY MODULE
1282 M: John Johansen <john.johansen@canonical.com>
1283 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1284 S: Supported
1285 W: wiki.apparmor.net
1286 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1287 F: Documentation/admin-guide/LSM/apparmor.rst
1288 F: security/apparmor/
1289
1290 APPLE BCM5974 MULTITOUCH DRIVER
1291 M: Henrik Rydberg <rydberg@bitmath.org>
1292 L: linux-input@vger.kernel.org
1293 S: Odd fixes
1294 F: drivers/input/mouse/bcm5974.c
1295
1296 APPLE DART IOMMU DRIVER
1297 M: Sven Peter <sven@svenpeter.dev>
1298 R: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1299 L: iommu@lists.linux-foundation.org
1300 S: Maintained
1301 F: Documentation/devicetree/bindings/iommu/apple,dart.yaml
1302 F: drivers/iommu/apple-dart.c
1303
1304 APPLE SMC DRIVER
1305 M: Henrik Rydberg <rydberg@bitmath.org>
1306 L: linux-hwmon@vger.kernel.org
1307 S: Odd fixes
1308 F: drivers/hwmon/applesmc.c
1309
1310 APPLETALK NETWORK LAYER
1311 L: netdev@vger.kernel.org
1312 S: Odd fixes
1313 F: drivers/net/appletalk/
1314 F: include/linux/atalk.h
1315 F: include/uapi/linux/atalk.h
1316 F: net/appletalk/
1317
1318 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1319 M: Khuong Dinh <khuong@os.amperecomputing.com>
1320 S: Supported
1321 F: arch/arm64/boot/dts/apm/
1322
1323 APPLIED MICRO (APM) X-GENE SOC EDAC
1324 M: Khuong Dinh <khuong@os.amperecomputing.com>
1325 S: Supported
1326 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1327 F: drivers/edac/xgene_edac.c
1328
1329 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1330 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1331 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1332 S: Supported
1333 F: drivers/net/ethernet/apm/xgene-v2/
1334
1335 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1336 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1337 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1338 M: Quan Nguyen <quan@os.amperecomputing.com>
1339 S: Supported
1340 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1341 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1342 F: drivers/net/ethernet/apm/xgene/
1343 F: drivers/net/mdio/mdio-xgene.c
1344
1345 APPLIED MICRO (APM) X-GENE SOC PMU
1346 M: Khuong Dinh <khuong@os.amperecomputing.com>
1347 S: Supported
1348 F: Documentation/admin-guide/perf/xgene-pmu.rst
1349 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1350 F: drivers/perf/xgene_pmu.c
1351
1352 APTINA CAMERA SENSOR PLL
1353 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1354 L: linux-media@vger.kernel.org
1355 S: Maintained
1356 F: drivers/media/i2c/aptina-pll.*
1357
1358 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1359 M: Aleksa Savic <savicaleksa83@gmail.com>
1360 L: linux-hwmon@vger.kernel.org
1361 S: Maintained
1362 F: Documentation/hwmon/aquacomputer_d5next.rst
1363 F: drivers/hwmon/aquacomputer_d5next.c
1364
1365 AQUANTIA ETHERNET DRIVER (atlantic)
1366 M: Igor Russkikh <irusskikh@marvell.com>
1367 L: netdev@vger.kernel.org
1368 S: Supported
1369 W: https://www.marvell.com/
1370 Q: https://patchwork.kernel.org/project/netdevbpf/list/
1371 F: Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1372 F: drivers/net/ethernet/aquantia/atlantic/
1373
1374 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1375 M: Egor Pomozov <epomozov@marvell.com>
1376 L: netdev@vger.kernel.org
1377 S: Supported
1378 W: http://www.aquantia.com
1379 F: drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1380
1381 ARASAN NAND CONTROLLER DRIVER
1382 M: Miquel Raynal <miquel.raynal@bootlin.com>
1383 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1384 L: linux-mtd@lists.infradead.org
1385 S: Maintained
1386 F: Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1387 F: drivers/mtd/nand/raw/arasan-nand-controller.c
1388
1389 ARC FRAMEBUFFER DRIVER
1390 M: Jaya Kumar <jayalk@intworks.biz>
1391 S: Maintained
1392 F: drivers/video/fbdev/arcfb.c
1393 F: drivers/video/fbdev/core/fb_defio.c
1394
1395 ARC PGU DRM DRIVER
1396 M: Alexey Brodkin <abrodkin@synopsys.com>
1397 S: Supported
1398 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
1399 F: drivers/gpu/drm/tiny/arcpgu.c
1400
1401 ARCNET NETWORK LAYER
1402 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
1403 L: netdev@vger.kernel.org
1404 S: Maintained
1405 F: drivers/net/arcnet/
1406 F: include/uapi/linux/if_arcnet.h
1407
1408 ARM ARCHITECTED TIMER DRIVER
1409 M: Mark Rutland <mark.rutland@arm.com>
1410 M: Marc Zyngier <maz@kernel.org>
1411 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1412 S: Maintained
1413 F: arch/arm/include/asm/arch_timer.h
1414 F: arch/arm64/include/asm/arch_timer.h
1415 F: drivers/clocksource/arm_arch_timer.c
1416
1417 ARM HDLCD DRM DRIVER
1418 M: Liviu Dudau <liviu.dudau@arm.com>
1419 S: Supported
1420 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
1421 F: drivers/gpu/drm/arm/hdlcd_*
1422
1423 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1424 M: Linus Walleij <linus.walleij@linaro.org>
1425 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1426 S: Maintained
1427 F: Documentation/devicetree/bindings/arm/arm,integrator.yaml
1428 F: Documentation/devicetree/bindings/arm/arm,realview.yaml
1429 F: Documentation/devicetree/bindings/arm/arm,versatile.yaml
1430 F: Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1431 F: Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1432 F: Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1433 F: Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1434 F: Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1435 F: Documentation/devicetree/bindings/mtd/arm-versatile.txt
1436 F: arch/arm/boot/dts/arm-realview-*
1437 F: arch/arm/boot/dts/integrator*
1438 F: arch/arm/boot/dts/versatile*
1439 F: arch/arm/mach-integrator/
1440 F: arch/arm/mach-realview/
1441 F: arch/arm/mach-versatile/
1442 F: arch/arm/plat-versatile/
1443 F: drivers/bus/arm-integrator-lm.c
1444 F: drivers/clk/versatile/
1445 F: drivers/i2c/busses/i2c-versatile.c
1446 F: drivers/irqchip/irq-versatile-fpga.c
1447 F: drivers/mtd/maps/physmap-versatile.*
1448 F: drivers/power/reset/arm-versatile-reboot.c
1449 F: drivers/soc/versatile/
1450
1451 ARM KOMEDA DRM-KMS DRIVER
1452 M: James (Qian) Wang <james.qian.wang@arm.com>
1453 M: Liviu Dudau <liviu.dudau@arm.com>
1454 M: Mihail Atanassov <mihail.atanassov@arm.com>
1455 L: Mali DP Maintainers <malidp@foss.arm.com>
1456 S: Supported
1457 T: git git://anongit.freedesktop.org/drm/drm-misc
1458 F: Documentation/devicetree/bindings/display/arm,komeda.txt
1459 F: Documentation/gpu/komeda-kms.rst
1460 F: drivers/gpu/drm/arm/display/include/
1461 F: drivers/gpu/drm/arm/display/komeda/
1462
1463 ARM MALI PANFROST DRM DRIVER
1464 M: Rob Herring <robh@kernel.org>
1465 M: Tomeu Vizoso <tomeu.vizoso@collabora.com>
1466 R: Steven Price <steven.price@arm.com>
1467 R: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1468 L: dri-devel@lists.freedesktop.org
1469 S: Supported
1470 T: git git://anongit.freedesktop.org/drm/drm-misc
1471 F: drivers/gpu/drm/panfrost/
1472 F: include/uapi/drm/panfrost_drm.h
1473
1474 ARM MALI-DP DRM DRIVER
1475 M: Liviu Dudau <liviu.dudau@arm.com>
1476 M: Brian Starkey <brian.starkey@arm.com>
1477 L: Mali DP Maintainers <malidp@foss.arm.com>
1478 S: Supported
1479 T: git git://anongit.freedesktop.org/drm/drm-misc
1480 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1481 F: Documentation/gpu/afbc.rst
1482 F: drivers/gpu/drm/arm/
1483
1484 ARM MFM AND FLOPPY DRIVERS
1485 M: Ian Molton <spyro@f2s.com>
1486 S: Maintained
1487 F: arch/arm/include/asm/floppy.h
1488 F: arch/arm/mach-rpc/floppydma.S
1489
1490 ARM PMU PROFILING AND DEBUGGING
1491 M: Will Deacon <will@kernel.org>
1492 M: Mark Rutland <mark.rutland@arm.com>
1493 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1494 S: Maintained
1495 F: Documentation/devicetree/bindings/arm/pmu.yaml
1496 F: Documentation/devicetree/bindings/perf/
1497 F: arch/arm*/include/asm/hw_breakpoint.h
1498 F: arch/arm*/include/asm/perf_event.h
1499 F: arch/arm*/kernel/hw_breakpoint.c
1500 F: arch/arm*/kernel/perf_*
1501 F: drivers/perf/
1502 F: include/linux/perf/arm_pmu.h
1503
1504 ARM PORT
1505 M: Russell King <linux@armlinux.org.uk>
1506 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1507 S: Odd Fixes
1508 W: http://www.armlinux.org.uk/
1509 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1510 F: arch/arm/
1511 X: arch/arm/boot/dts/
1512
1513 ARM PRIMECELL AACI PL041 DRIVER
1514 M: Russell King <linux@armlinux.org.uk>
1515 S: Odd Fixes
1516 F: sound/arm/aaci.*
1517
1518 ARM PRIMECELL BUS SUPPORT
1519 M: Russell King <linux@armlinux.org.uk>
1520 S: Odd Fixes
1521 F: drivers/amba/
1522 F: include/linux/amba/bus.h
1523
1524 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1525 M: Miquel Raynal <miquel.raynal@bootlin.com>
1526 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1527 L: linux-mtd@lists.infradead.org
1528 S: Maintained
1529 F: Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1530 F: drivers/mtd/nand/raw/pl35x-nand-controller.c
1531
1532 ARM PRIMECELL PL35X SMC DRIVER
1533 M: Miquel Raynal <miquel.raynal@bootlin.com>
1534 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1535 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S: Maintained
1537 F: Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1538 F: drivers/memory/pl353-smc.c
1539
1540 ARM PRIMECELL CLCD PL110 DRIVER
1541 M: Russell King <linux@armlinux.org.uk>
1542 S: Odd Fixes
1543 F: drivers/video/fbdev/amba-clcd.*
1544
1545 ARM PRIMECELL KMI PL050 DRIVER
1546 M: Russell King <linux@armlinux.org.uk>
1547 S: Odd Fixes
1548 F: drivers/input/serio/ambakmi.*
1549 F: include/linux/amba/kmi.h
1550
1551 ARM PRIMECELL MMCI PL180/1 DRIVER
1552 M: Russell King <linux@armlinux.org.uk>
1553 S: Odd Fixes
1554 F: drivers/mmc/host/mmci.*
1555 F: include/linux/amba/mmci.h
1556
1557 ARM PRIMECELL SSP PL022 SPI DRIVER
1558 M: Linus Walleij <linus.walleij@linaro.org>
1559 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S: Maintained
1561 F: Documentation/devicetree/bindings/spi/spi-pl022.yaml
1562 F: drivers/spi/spi-pl022.c
1563
1564 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1565 M: Russell King <linux@armlinux.org.uk>
1566 S: Odd Fixes
1567 F: drivers/tty/serial/amba-pl01*.c
1568 F: include/linux/amba/serial.h
1569
1570 ARM PRIMECELL VIC PL190/PL192 DRIVER
1571 M: Linus Walleij <linus.walleij@linaro.org>
1572 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1573 S: Maintained
1574 F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1575 F: drivers/irqchip/irq-vic.c
1576
1577 ARM SMC WATCHDOG DRIVER
1578 M: Julius Werner <jwerner@chromium.org>
1579 R: Evan Benn <evanbenn@chromium.org>
1580 S: Maintained
1581 F: Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1582 F: drivers/watchdog/arm_smc_wdt.c
1583
1584 ARM SMMU DRIVERS
1585 M: Will Deacon <will@kernel.org>
1586 R: Robin Murphy <robin.murphy@arm.com>
1587 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 S: Maintained
1589 F: Documentation/devicetree/bindings/iommu/arm,smmu*
1590 F: drivers/iommu/arm/
1591 F: drivers/iommu/io-pgtable-arm*
1592
1593 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1594 M: Arnd Bergmann <arnd@arndb.de>
1595 M: Olof Johansson <olof@lixom.net>
1596 M: soc@kernel.org
1597 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1598 S: Maintained
1599 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1600 F: arch/arm/boot/dts/Makefile
1601 F: arch/arm64/boot/dts/Makefile
1602
1603 ARM SUB-ARCHITECTURES
1604 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1605 S: Maintained
1606 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1607 F: arch/arm/mach-*/
1608 F: arch/arm/plat-*/
1609
1610 ARM/ACTIONS SEMI ARCHITECTURE
1611 M: Andreas Färber <afaerber@suse.de>
1612 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1613 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1614 L: linux-actions@lists.infradead.org (moderated for non-subscribers)
1615 S: Maintained
1616 F: Documentation/devicetree/bindings/arm/actions.yaml
1617 F: Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1618 F: Documentation/devicetree/bindings/dma/owl-dma.yaml
1619 F: Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1620 F: Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1621 F: Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1622 F: Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1623 F: Documentation/devicetree/bindings/pinctrl/actions,*
1624 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1625 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1626 F: arch/arm/boot/dts/owl-*
1627 F: arch/arm/mach-actions/
1628 F: arch/arm64/boot/dts/actions/
1629 F: drivers/clk/actions/
1630 F: drivers/clocksource/timer-owl*
1631 F: drivers/dma/owl-dma.c
1632 F: drivers/i2c/busses/i2c-owl.c
1633 F: drivers/irqchip/irq-owl-sirq.c
1634 F: drivers/mmc/host/owl-mmc.c
1635 F: drivers/net/ethernet/actions/
1636 F: drivers/pinctrl/actions/*
1637 F: drivers/soc/actions/
1638 F: include/dt-bindings/power/owl-*
1639 F: include/dt-bindings/reset/actions,*
1640 F: include/linux/soc/actions/
1641 N: owl
1642
1643 ARM/ADS SPHERE MACHINE SUPPORT
1644 M: Lennert Buytenhek <kernel@wantstofly.org>
1645 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1646 S: Maintained
1647
1648 ARM/AFEB9260 MACHINE SUPPORT
1649 M: Sergey Lapin <slapin@ossfans.org>
1650 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1651 S: Maintained
1652
1653 ARM/AJECO 1ARM MACHINE SUPPORT
1654 M: Lennert Buytenhek <kernel@wantstofly.org>
1655 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1656 S: Maintained
1657
1658 ARM/Allwinner SoC Clock Support
1659 M: Emilio López <emilio@elopez.com.ar>
1660 S: Maintained
1661 F: drivers/clk/sunxi/
1662
1663 ARM/Allwinner sunXi SoC support
1664 M: Maxime Ripard <mripard@kernel.org>
1665 M: Chen-Yu Tsai <wens@csie.org>
1666 R: Jernej Skrabec <jernej.skrabec@gmail.com>
1667 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1668 S: Maintained
1669 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1670 L: linux-sunxi@lists.linux.dev
1671 F: arch/arm/mach-sunxi/
1672 F: arch/arm64/boot/dts/allwinner/
1673 F: drivers/clk/sunxi-ng/
1674 F: drivers/pinctrl/sunxi/
1675 F: drivers/soc/sunxi/
1676 N: allwinner
1677 N: sun[x456789]i
1678 N: sun50i
1679
1680 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1681 M: Neil Armstrong <narmstrong@baylibre.com>
1682 M: Jerome Brunet <jbrunet@baylibre.com>
1683 L: linux-amlogic@lists.infradead.org
1684 S: Maintained
1685 F: Documentation/devicetree/bindings/clock/amlogic*
1686 F: drivers/clk/meson/
1687 F: include/dt-bindings/clock/gxbb*
1688 F: include/dt-bindings/clock/meson*
1689
1690 ARM/Amlogic Meson SoC Crypto Drivers
1691 M: Corentin Labbe <clabbe@baylibre.com>
1692 L: linux-crypto@vger.kernel.org
1693 L: linux-amlogic@lists.infradead.org
1694 S: Maintained
1695 F: Documentation/devicetree/bindings/crypto/amlogic*
1696 F: drivers/crypto/amlogic/
1697
1698 ARM/Amlogic Meson SoC Sound Drivers
1699 M: Jerome Brunet <jbrunet@baylibre.com>
1700 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1701 S: Maintained
1702 F: Documentation/devicetree/bindings/sound/amlogic*
1703 F: sound/soc/meson/
1704
1705 ARM/Amlogic Meson SoC support
1706 M: Neil Armstrong <narmstrong@baylibre.com>
1707 M: Kevin Hilman <khilman@baylibre.com>
1708 R: Jerome Brunet <jbrunet@baylibre.com>
1709 R: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1710 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1711 L: linux-amlogic@lists.infradead.org
1712 S: Maintained
1713 W: http://linux-meson.com/
1714 F: arch/arm/boot/dts/meson*
1715 F: arch/arm/mach-meson/
1716 F: arch/arm64/boot/dts/amlogic/
1717 F: drivers/mmc/host/meson*
1718 F: drivers/pinctrl/meson/
1719 F: drivers/rtc/rtc-meson*
1720 F: drivers/soc/amlogic/
1721 N: meson
1722
1723 ARM/Annapurna Labs ALPINE ARCHITECTURE
1724 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1725 M: Antoine Tenart <atenart@kernel.org>
1726 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1727 S: Maintained
1728 F: arch/arm/boot/dts/alpine*
1729 F: arch/arm/mach-alpine/
1730 F: arch/arm64/boot/dts/amazon/
1731 F: drivers/*/*alpine*
1732
1733 ARM/APPLE MACHINE SUPPORT
1734 M: Hector Martin <marcan@marcan.st>
1735 M: Sven Peter <sven@svenpeter.dev>
1736 R: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1737 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738 S: Maintained
1739 W: https://asahilinux.org
1740 B: https://github.com/AsahiLinux/linux/issues
1741 C: irc://irc.oftc.net/asahi-dev
1742 T: git https://github.com/AsahiLinux/linux.git
1743 F: Documentation/devicetree/bindings/arm/apple.yaml
1744 F: Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1745 F: Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1746 F: arch/arm64/boot/dts/apple/
1747 F: drivers/irqchip/irq-apple-aic.c
1748 F: include/dt-bindings/interrupt-controller/apple-aic.h
1749 F: include/dt-bindings/pinctrl/apple.h
1750
1751 ARM/ARTPEC MACHINE SUPPORT
1752 M: Jesper Nilsson <jesper.nilsson@axis.com>
1753 M: Lars Persson <lars.persson@axis.com>
1754 L: linux-arm-kernel@axis.com
1755 S: Maintained
1756 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1757 F: arch/arm/boot/dts/artpec6*
1758 F: arch/arm/mach-artpec
1759 F: drivers/clk/axis
1760 F: drivers/crypto/axis
1761 F: drivers/mmc/host/usdhi6rol0.c
1762 F: drivers/pinctrl/pinctrl-artpec*
1763
1764 ARM/ASPEED I2C DRIVER
1765 M: Brendan Higgins <brendanhiggins@google.com>
1766 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1767 R: Joel Stanley <joel@jms.id.au>
1768 L: linux-i2c@vger.kernel.org
1769 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1770 S: Maintained
1771 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1772 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1773 F: drivers/i2c/busses/i2c-aspeed.c
1774 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1775
1776 ARM/ASPEED MACHINE SUPPORT
1777 M: Joel Stanley <joel@jms.id.au>
1778 R: Andrew Jeffery <andrew@aj.id.au>
1779 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1780 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1781 S: Supported
1782 Q: https://patchwork.ozlabs.org/project/linux-aspeed/list/
1783 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1784 F: arch/arm/boot/dts/aspeed-*
1785 F: arch/arm/mach-aspeed/
1786 N: aspeed
1787
1788 ARM/BITMAIN ARCHITECTURE
1789 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1790 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1791 S: Maintained
1792 F: Documentation/devicetree/bindings/arm/bitmain.yaml
1793 F: Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1794 F: Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1795 F: arch/arm64/boot/dts/bitmain/
1796 F: drivers/clk/clk-bm1880.c
1797 F: drivers/pinctrl/pinctrl-bm1880.c
1798
1799 ARM/CALXEDA HIGHBANK ARCHITECTURE
1800 M: Andre Przywara <andre.przywara@arm.com>
1801 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1802 S: Maintained
1803 F: arch/arm/boot/dts/ecx-*.dts*
1804 F: arch/arm/boot/dts/highbank.dts
1805 F: arch/arm/mach-highbank/
1806
1807 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1808 M: Krzysztof Halasa <khalasa@piap.pl>
1809 S: Maintained
1810 F: arch/arm/mach-cns3xxx/
1811
1812 ARM/CAVIUM THUNDER NETWORK DRIVER
1813 M: Sunil Goutham <sgoutham@marvell.com>
1814 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S: Supported
1816 F: drivers/net/ethernet/cavium/thunder/
1817
1818 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1819 M: Lukasz Majewski <lukma@denx.de>
1820 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S: Maintained
1822 F: arch/arm/mach-ep93xx/ts72xx.c
1823
1824 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1825 M: Alexander Shiyan <shc_work@mail.ru>
1826 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 S: Odd Fixes
1828 N: clps711x
1829
1830 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1831 M: Lennert Buytenhek <kernel@wantstofly.org>
1832 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 S: Maintained
1834
1835 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1836 M: Hartley Sweeten <hsweeten@visionengravers.com>
1837 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1838 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1839 S: Maintained
1840 F: arch/arm/mach-ep93xx/
1841 F: arch/arm/mach-ep93xx/include/mach/
1842
1843 ARM/CLKDEV SUPPORT
1844 M: Russell King <linux@armlinux.org.uk>
1845 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1846 S: Maintained
1847 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1848 F: drivers/clk/clkdev.c
1849
1850 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1851 M: Baruch Siach <baruch@tkos.co.il>
1852 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1853 S: Maintained
1854 F: arch/arm/boot/dts/cx92755*
1855 N: digicolor
1856
1857 ARM/CONTEC MICRO9 MACHINE SUPPORT
1858 M: Hubert Feurstein <hubert.feurstein@contec.at>
1859 S: Maintained
1860 F: arch/arm/mach-ep93xx/micro9.c
1861
1862 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1863 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1864 M: Suzuki K Poulose <suzuki.poulose@arm.com>
1865 R: Mike Leach <mike.leach@linaro.org>
1866 R: Leo Yan <leo.yan@linaro.org>
1867 L: coresight@lists.linaro.org (moderated for non-subscribers)
1868 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1869 S: Maintained
1870 T: git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1871 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1872 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1873 F: Documentation/devicetree/bindings/arm/coresight-cti.yaml
1874 F: Documentation/devicetree/bindings/arm/coresight.txt
1875 F: Documentation/devicetree/bindings/arm/ete.yaml
1876 F: Documentation/devicetree/bindings/arm/trbe.yaml
1877 F: Documentation/trace/coresight/*
1878 F: drivers/hwtracing/coresight/*
1879 F: include/dt-bindings/arm/coresight-cti-dt.h
1880 F: include/linux/coresight*
1881 F: tools/perf/arch/arm/util/auxtrace.c
1882 F: tools/perf/arch/arm/util/cs-etm.c
1883 F: tools/perf/arch/arm/util/cs-etm.h
1884 F: tools/perf/arch/arm/util/pmu.c
1885 F: tools/perf/util/cs-etm-decoder/*
1886 F: tools/perf/util/cs-etm.*
1887
1888 ARM/CORGI MACHINE SUPPORT
1889 M: Richard Purdie <rpurdie@rpsys.net>
1890 S: Maintained
1891
1892 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1893 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1894 M: Linus Walleij <linus.walleij@linaro.org>
1895 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1896 S: Maintained
1897 T: git git://github.com/ulli-kroll/linux.git
1898 F: Documentation/devicetree/bindings/arm/gemini.txt
1899 F: Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1900 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1901 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1902 F: arch/arm/boot/dts/gemini*
1903 F: arch/arm/mach-gemini/
1904 F: drivers/crypto/gemini/
1905 F: drivers/net/ethernet/cortina/
1906 F: drivers/pinctrl/pinctrl-gemini.c
1907 F: drivers/rtc/rtc-ftrtc010.c
1908
1909 ARM/CZ.NIC TURRIS SUPPORT
1910 M: Marek Behún <kabel@kernel.org>
1911 S: Maintained
1912 W: https://www.turris.cz/
1913 F: Documentation/ABI/testing/debugfs-moxtet
1914 F: Documentation/ABI/testing/sysfs-bus-moxtet-devices
1915 F: Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1916 F: Documentation/devicetree/bindings/bus/moxtet.txt
1917 F: Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1918 F: Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1919 F: Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1920 F: Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1921 F: drivers/bus/moxtet.c
1922 F: drivers/firmware/turris-mox-rwtm.c
1923 F: drivers/leds/leds-turris-omnia.c
1924 F: drivers/mailbox/armada-37xx-rwtm-mailbox.c
1925 F: drivers/gpio/gpio-moxtet.c
1926 F: drivers/watchdog/armada_37xx_wdt.c
1927 F: include/dt-bindings/bus/moxtet.h
1928 F: include/linux/armada-37xx-rwtm-mailbox.h
1929 F: include/linux/moxtet.h
1930
1931 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1932 M: Robert Jarzmik <robert.jarzmik@free.fr>
1933 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1934 S: Maintained
1935 F: arch/arm/mach-pxa/ezx.c
1936
1937 ARM/FARADAY FA526 PORT
1938 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1939 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S: Maintained
1941 T: git git://git.berlios.de/gemini-board
1942 F: arch/arm/mm/*-fa*
1943
1944 ARM/FOOTBRIDGE ARCHITECTURE
1945 M: Russell King <linux@armlinux.org.uk>
1946 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 S: Maintained
1948 W: http://www.armlinux.org.uk/
1949 F: arch/arm/include/asm/hardware/dec21285.h
1950 F: arch/arm/mach-footbridge/
1951
1952 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1953 M: Shawn Guo <shawnguo@kernel.org>
1954 M: Sascha Hauer <s.hauer@pengutronix.de>
1955 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1956 R: Fabio Estevam <festevam@gmail.com>
1957 R: NXP Linux Team <linux-imx@nxp.com>
1958 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S: Maintained
1960 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1961 X: drivers/media/i2c/
1962 N: imx
1963 N: mxs
1964
1965 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1966 M: Shawn Guo <shawnguo@kernel.org>
1967 M: Li Yang <leoyang.li@nxp.com>
1968 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1969 S: Maintained
1970 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1971 F: arch/arm/boot/dts/ls1021a*
1972 F: arch/arm64/boot/dts/freescale/fsl-*
1973 F: arch/arm64/boot/dts/freescale/qoriq-*
1974
1975 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1976 M: Shawn Guo <shawnguo@kernel.org>
1977 M: Sascha Hauer <s.hauer@pengutronix.de>
1978 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1979 R: Stefan Agner <stefan@agner.ch>
1980 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1981 S: Maintained
1982 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1983 F: arch/arm/boot/dts/vf*
1984 F: arch/arm/mach-imx/*vf610*
1985
1986 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1987 M: Lennert Buytenhek <kernel@wantstofly.org>
1988 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1989 S: Maintained
1990
1991 ARM/GUMSTIX MACHINE SUPPORT
1992 M: Steve Sakoman <sakoman@gmail.com>
1993 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1994 S: Maintained
1995
1996 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1997 M: Philipp Zabel <philipp.zabel@gmail.com>
1998 M: Paul Parsons <lost.distance@yahoo.com>
1999 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S: Maintained
2001 F: arch/arm/mach-pxa/hx4700.c
2002 F: arch/arm/mach-pxa/include/mach/hx4700.h
2003 F: sound/soc/pxa/hx4700.c
2004
2005 ARM/HISILICON SOC SUPPORT
2006 M: Wei Xu <xuwei5@hisilicon.com>
2007 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2008 S: Supported
2009 W: http://www.hisilicon.com
2010 T: git git://github.com/hisilicon/linux-hisi.git
2011 F: arch/arm/boot/dts/hi3*
2012 F: arch/arm/boot/dts/hip*
2013 F: arch/arm/boot/dts/hisi*
2014 F: arch/arm/mach-hisi/
2015 F: arch/arm64/boot/dts/hisilicon/
2016
2017 ARM/HP JORNADA 7XX MACHINE SUPPORT
2018 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
2019 S: Maintained
2020 W: www.jlime.com
2021 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2022 F: arch/arm/mach-sa1100/include/mach/jornada720.h
2023 F: arch/arm/mach-sa1100/jornada720.c
2024
2025 ARM/IGEP MACHINE SUPPORT
2026 M: Enric Balletbo i Serra <eballetbo@gmail.com>
2027 M: Javier Martinez Canillas <javier@dowhile0.org>
2028 L: linux-omap@vger.kernel.org
2029 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S: Maintained
2031 F: arch/arm/boot/dts/omap3-igep*
2032
2033 ARM/INCOME PXA270 SUPPORT
2034 M: Marek Vasut <marek.vasut@gmail.com>
2035 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2036 S: Maintained
2037 F: arch/arm/mach-pxa/colibri-pxa270-income.c
2038
2039 ARM/INTEL IOP32X ARM ARCHITECTURE
2040 M: Lennert Buytenhek <kernel@wantstofly.org>
2041 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 S: Maintained
2043
2044 ARM/INTEL IQ81342EX MACHINE SUPPORT
2045 M: Lennert Buytenhek <kernel@wantstofly.org>
2046 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 S: Maintained
2048
2049 ARM/INTEL IXDP2850 MACHINE SUPPORT
2050 M: Lennert Buytenhek <kernel@wantstofly.org>
2051 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2052 S: Maintained
2053
2054 ARM/INTEL IXP4XX ARM ARCHITECTURE
2055 M: Linus Walleij <linusw@kernel.org>
2056 M: Imre Kaloz <kaloz@openwrt.org>
2057 M: Krzysztof Halasa <khalasa@piap.pl>
2058 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2059 S: Maintained
2060 F: Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2061 F: Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2062 F: Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2063 F: Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2064 F: Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2065 F: arch/arm/mach-ixp4xx/
2066 F: drivers/bus/intel-ixp4xx-eb.c
2067 F: drivers/clocksource/timer-ixp4xx.c
2068 F: drivers/crypto/ixp4xx_crypto.c
2069 F: drivers/gpio/gpio-ixp4xx.c
2070 F: drivers/irqchip/irq-ixp4xx.c
2071 F: include/linux/irqchip/irq-ixp4xx.h
2072 F: include/linux/platform_data/timer-ixp4xx.h
2073
2074 ARM/INTEL KEEMBAY ARCHITECTURE
2075 M: Paul J. Murphy <paul.j.murphy@intel.com>
2076 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2077 S: Maintained
2078 F: Documentation/devicetree/bindings/arm/intel,keembay.yaml
2079 F: arch/arm64/boot/dts/intel/keembay-evm.dts
2080 F: arch/arm64/boot/dts/intel/keembay-soc.dtsi
2081
2082 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2083 M: Jonathan Cameron <jic23@cam.ac.uk>
2084 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S: Maintained
2086 F: arch/arm/mach-pxa/stargate2.c
2087 F: drivers/pcmcia/pxa2xx_stargate2.c
2088
2089 ARM/INTEL XSC3 (MANZANO) ARM CORE
2090 M: Lennert Buytenhek <kernel@wantstofly.org>
2091 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2092 S: Maintained
2093
2094 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2095 M: Lennert Buytenhek <kernel@wantstofly.org>
2096 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 S: Maintained
2098
2099 ARM/LG1K ARCHITECTURE
2100 M: Chanho Min <chanho.min@lge.com>
2101 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 S: Maintained
2103 F: arch/arm64/boot/dts/lg/
2104
2105 ARM/LOGICPD PXA270 MACHINE SUPPORT
2106 M: Lennert Buytenhek <kernel@wantstofly.org>
2107 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2108 S: Maintained
2109
2110 ARM/LPC18XX ARCHITECTURE
2111 M: Vladimir Zapolskiy <vz@mleia.com>
2112 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2113 S: Maintained
2114 F: Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2115 F: arch/arm/boot/dts/lpc43*
2116 F: drivers/i2c/busses/i2c-lpc2k.c
2117 F: drivers/memory/pl172.c
2118 F: drivers/mtd/spi-nor/controllers/nxp-spifi.c
2119 F: drivers/rtc/rtc-lpc24xx.c
2120 N: lpc18xx
2121
2122 ARM/LPC32XX SOC SUPPORT
2123 M: Vladimir Zapolskiy <vz@mleia.com>
2124 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2125 S: Maintained
2126 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
2127 F: Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2128 F: arch/arm/boot/dts/lpc32*
2129 F: arch/arm/mach-lpc32xx/
2130 F: drivers/i2c/busses/i2c-pnx.c
2131 F: drivers/net/ethernet/nxp/lpc_eth.c
2132 F: drivers/usb/host/ohci-nxp.c
2133 F: drivers/watchdog/pnx4008_wdt.c
2134 N: lpc32xx
2135
2136 ARM/MAGICIAN MACHINE SUPPORT
2137 M: Philipp Zabel <philipp.zabel@gmail.com>
2138 S: Maintained
2139
2140 ARM/Marvell Dove/MV78xx0/Orion SOC support
2141 M: Andrew Lunn <andrew@lunn.ch>
2142 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2143 M: Gregory Clement <gregory.clement@bootlin.com>
2144 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2145 S: Maintained
2146 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2147 F: Documentation/devicetree/bindings/soc/dove/
2148 F: arch/arm/boot/dts/dove*
2149 F: arch/arm/boot/dts/orion5x*
2150 F: arch/arm/mach-dove/
2151 F: arch/arm/mach-mv78xx0/
2152 F: arch/arm/mach-orion5x/
2153 F: arch/arm/plat-orion/
2154 F: drivers/soc/dove/
2155
2156 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2157 M: Andrew Lunn <andrew@lunn.ch>
2158 M: Gregory Clement <gregory.clement@bootlin.com>
2159 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2160 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2161 S: Maintained
2162 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2163 F: arch/arm/boot/dts/armada*
2164 F: arch/arm/boot/dts/kirkwood*
2165 F: arch/arm/configs/mvebu_*_defconfig
2166 F: arch/arm/mach-mvebu/
2167 F: arch/arm64/boot/dts/marvell/armada*
2168 F: arch/arm64/boot/dts/marvell/cn913*
2169 F: drivers/cpufreq/armada-37xx-cpufreq.c
2170 F: drivers/cpufreq/armada-8k-cpufreq.c
2171 F: drivers/cpufreq/mvebu-cpufreq.c
2172 F: drivers/irqchip/irq-armada-370-xp.c
2173 F: drivers/irqchip/irq-mvebu-*
2174 F: drivers/pinctrl/mvebu/
2175 F: drivers/rtc/rtc-armada38x.c
2176
2177 ARM/Mediatek RTC DRIVER
2178 M: Eddie Huang <eddie.huang@mediatek.com>
2179 M: Sean Wang <sean.wang@mediatek.com>
2180 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2181 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2182 S: Maintained
2183 F: Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2184 F: Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2185 F: drivers/rtc/rtc-mt2712.c
2186 F: drivers/rtc/rtc-mt6397.c
2187 F: drivers/rtc/rtc-mt7622.c
2188
2189 ARM/Mediatek SoC support
2190 M: Matthias Brugger <matthias.bgg@gmail.com>
2191 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2193 S: Maintained
2194 W: https://mtk.wiki.kernel.org/
2195 C: irc://chat.freenode.net/linux-mediatek
2196 F: arch/arm/boot/dts/mt6*
2197 F: arch/arm/boot/dts/mt7*
2198 F: arch/arm/boot/dts/mt8*
2199 F: arch/arm/mach-mediatek/
2200 F: arch/arm64/boot/dts/mediatek/
2201 F: drivers/soc/mediatek/
2202 N: mtk
2203 N: mt[678]
2204 K: mediatek
2205
2206 ARM/Mediatek USB3 PHY DRIVER
2207 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
2208 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2209 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2210 S: Maintained
2211 F: Documentation/devicetree/bindings/phy/mediatek,*
2212 F: drivers/phy/mediatek/
2213
2214 ARM/Microchip (AT91) SoC support
2215 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2216 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
2217 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2218 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2219 S: Supported
2220 W: http://www.linux4sam.org
2221 T: git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2222 F: arch/arm/boot/dts/at91*.dts
2223 F: arch/arm/boot/dts/at91*.dtsi
2224 F: arch/arm/boot/dts/sama*.dts
2225 F: arch/arm/boot/dts/sama*.dtsi
2226 F: arch/arm/include/debug/at91.S
2227 F: arch/arm/mach-at91/
2228 F: drivers/memory/atmel*
2229 F: drivers/watchdog/sama5d4_wdt.c
2230 F: include/soc/at91/
2231 X: drivers/input/touchscreen/atmel_mxt_ts.c
2232 X: drivers/net/wireless/atmel/
2233 N: at91
2234 N: atmel
2235
2236 ARM/Microchip Sparx5 SoC support
2237 M: Lars Povlsen <lars.povlsen@microchip.com>
2238 M: Steen Hegelund <Steen.Hegelund@microchip.com>
2239 M: UNGLinuxDriver@microchip.com
2240 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2241 S: Supported
2242 T: git git://github.com/microchip-ung/linux-upstream.git
2243 F: arch/arm64/boot/dts/microchip/
2244 F: drivers/pinctrl/pinctrl-microchip-sgpio.c
2245 N: sparx5
2246
2247 Microchip Timer Counter Block (TCB) Capture Driver
2248 M: Kamel Bouhara <kamel.bouhara@bootlin.com>
2249 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2250 L: linux-iio@vger.kernel.org
2251 S: Maintained
2252 F: drivers/counter/microchip-tcb-capture.c
2253
2254 ARM/MIOA701 MACHINE SUPPORT
2255 M: Robert Jarzmik <robert.jarzmik@free.fr>
2256 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2257 S: Maintained
2258 F: arch/arm/mach-pxa/mioa701.c
2259
2260 ARM/MStar/Sigmastar Armv7 SoC support
2261 M: Daniel Palmer <daniel@thingy.jp>
2262 M: Romain Perier <romain.perier@gmail.com>
2263 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2264 S: Maintained
2265 W: http://linux-chenxing.org/
2266 T: git git://github.com/linux-chenxing/linux.git
2267 F: Documentation/devicetree/bindings/arm/mstar/*
2268 F: Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2269 F: Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2270 F: arch/arm/boot/dts/mstar-*
2271 F: arch/arm/mach-mstar/
2272 F: drivers/clk/mstar/
2273 F: drivers/gpio/gpio-msc313.c
2274 F: drivers/watchdog/msc313e_wdt.c
2275 F: include/dt-bindings/clock/mstar-*
2276 F: include/dt-bindings/gpio/msc313-gpio.h
2277
2278 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2279 M: Michael Petchkovsky <mkpetch@internode.on.net>
2280 S: Maintained
2281
2282 ARM/NOMADIK/Ux500 ARCHITECTURES
2283 M: Linus Walleij <linus.walleij@linaro.org>
2284 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2285 S: Maintained
2286 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2287 F: Documentation/devicetree/bindings/arm/ste-*
2288 F: Documentation/devicetree/bindings/arm/ux500.yaml
2289 F: Documentation/devicetree/bindings/arm/ux500/
2290 F: Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2291 F: arch/arm/boot/dts/ste-*
2292 F: arch/arm/mach-nomadik/
2293 F: arch/arm/mach-ux500/
2294 F: drivers/clk/clk-nomadik.c
2295 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2296 F: drivers/dma/ste_dma40*
2297 F: drivers/hwspinlock/u8500_hsem.c
2298 F: drivers/i2c/busses/i2c-nomadik.c
2299 F: drivers/iio/adc/ab8500-gpadc.c
2300 F: drivers/mfd/ab8500*
2301 F: drivers/mfd/abx500*
2302 F: drivers/mfd/db8500*
2303 F: drivers/pinctrl/nomadik/
2304 F: drivers/rtc/rtc-ab8500.c
2305 F: drivers/rtc/rtc-pl031.c
2306 F: drivers/soc/ux500/
2307
2308 ARM/NUVOTON NPCM ARCHITECTURE
2309 M: Avi Fishman <avifishman70@gmail.com>
2310 M: Tomer Maimon <tmaimon77@gmail.com>
2311 M: Tali Perry <tali.perry1@gmail.com>
2312 R: Patrick Venture <venture@google.com>
2313 R: Nancy Yuen <yuenn@google.com>
2314 R: Benjamin Fair <benjaminfair@google.com>
2315 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2316 S: Supported
2317 F: Documentation/devicetree/bindings/*/*/*npcm*
2318 F: Documentation/devicetree/bindings/*/*npcm*
2319 F: arch/arm/boot/dts/nuvoton-npcm*
2320 F: arch/arm/mach-npcm/
2321 F: drivers/*/*npcm*
2322 F: drivers/*/*/*npcm*
2323 F: include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2324
2325 ARM/NUVOTON WPCM450 ARCHITECTURE
2326 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2327 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2328 S: Maintained
2329 F: Documentation/devicetree/bindings/*/*wpcm*
2330 F: arch/arm/boot/dts/nuvoton-wpcm450*
2331 F: arch/arm/mach-npcm/wpcm450.c
2332 F: drivers/*/*wpcm*
2333
2334 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2335 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
2336 S: Orphan
2337 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
2338 F: arch/arm/mach-s3c/gta02.h
2339 F: arch/arm/mach-s3c/mach-gta02.c
2340
2341 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2342 M: Alexander Clouter <alex@digriz.org.uk>
2343 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2344 S: Maintained
2345 W: http://www.digriz.org.uk/ts78xx/kernel
2346 F: arch/arm/mach-orion5x/ts78xx-*
2347
2348 ARM/OXNAS platform support
2349 M: Neil Armstrong <narmstrong@baylibre.com>
2350 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2351 L: linux-oxnas@groups.io (moderated for non-subscribers)
2352 S: Maintained
2353 F: arch/arm/boot/dts/ox8*.dts*
2354 F: arch/arm/mach-oxnas/
2355 F: drivers/power/reset/oxnas-restart.c
2356 N: oxnas
2357
2358 ARM/PALM TREO SUPPORT
2359 M: Tomas Cech <sleep_walker@suse.com>
2360 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2361 S: Maintained
2362 W: http://hackndev.com
2363 F: arch/arm/mach-pxa/palmtreo.*
2364
2365 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2366 M: Marek Vasut <marek.vasut@gmail.com>
2367 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2368 S: Maintained
2369 W: http://hackndev.com
2370 F: arch/arm/mach-pxa/include/mach/palmld.h
2371 F: arch/arm/mach-pxa/include/mach/palmtc.h
2372 F: arch/arm/mach-pxa/include/mach/palmtx.h
2373 F: arch/arm/mach-pxa/palmld.c
2374 F: arch/arm/mach-pxa/palmt5.*
2375 F: arch/arm/mach-pxa/palmtc.c
2376 F: arch/arm/mach-pxa/palmte2.*
2377 F: arch/arm/mach-pxa/palmtx.c
2378
2379 ARM/PALMZ72 SUPPORT
2380 M: Sergey Lapin <slapin@ossfans.org>
2381 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2382 S: Maintained
2383 W: http://hackndev.com
2384 F: arch/arm/mach-pxa/palmz72.*
2385
2386 ARM/PLEB SUPPORT
2387 M: Peter Chubb <pleb@gelato.unsw.edu.au>
2388 S: Maintained
2389 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2390
2391 ARM/PT DIGITAL BOARD PORT
2392 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2393 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2394 S: Maintained
2395 W: http://www.armlinux.org.uk/
2396
2397 ARM/QUALCOMM SUPPORT
2398 M: Andy Gross <agross@kernel.org>
2399 M: Bjorn Andersson <bjorn.andersson@linaro.org>
2400 L: linux-arm-msm@vger.kernel.org
2401 S: Maintained
2402 T: git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2403 F: Documentation/devicetree/bindings/*/qcom*
2404 F: Documentation/devicetree/bindings/soc/qcom/
2405 F: arch/arm/boot/dts/qcom-*.dts
2406 F: arch/arm/boot/dts/qcom-*.dtsi
2407 F: arch/arm/mach-qcom/
2408 F: arch/arm64/boot/dts/qcom/
2409 F: drivers/*/*/qcom*
2410 F: drivers/*/*/qcom/
2411 F: drivers/*/pm8???-*
2412 F: drivers/*/qcom*
2413 F: drivers/*/qcom/
2414 F: drivers/bluetooth/btqcomsmd.c
2415 F: drivers/clocksource/timer-qcom.c
2416 F: drivers/cpuidle/cpuidle-qcom-spm.c
2417 F: drivers/extcon/extcon-qcom*
2418 F: drivers/i2c/busses/i2c-qcom-geni.c
2419 F: drivers/i2c/busses/i2c-qup.c
2420 F: drivers/iommu/msm*
2421 F: drivers/mfd/ssbi.c
2422 F: drivers/mmc/host/mmci_qcom*
2423 F: drivers/mmc/host/sdhci-msm.c
2424 F: drivers/pci/controller/dwc/pcie-qcom.c
2425 F: drivers/phy/qualcomm/
2426 F: drivers/power/*/msm*
2427 F: drivers/reset/reset-qcom-*
2428 F: drivers/scsi/ufs/ufs-qcom*
2429 F: drivers/spi/spi-geni-qcom.c
2430 F: drivers/spi/spi-qcom-qspi.c
2431 F: drivers/spi/spi-qup.c
2432 F: drivers/tty/serial/msm_serial.c
2433 F: drivers/usb/dwc3/dwc3-qcom.c
2434 F: include/dt-bindings/*/qcom*
2435 F: include/linux/*/qcom*
2436 F: include/linux/soc/qcom/
2437
2438 ARM/RADISYS ENP2611 MACHINE SUPPORT
2439 M: Lennert Buytenhek <kernel@wantstofly.org>
2440 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2441 S: Maintained
2442
2443 ARM/RDA MICRO ARCHITECTURE
2444 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2445 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2446 L: linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2447 S: Maintained
2448 F: Documentation/devicetree/bindings/arm/rda.yaml
2449 F: Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2450 F: Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2451 F: Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2452 F: Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2453 F: arch/arm/boot/dts/rda8810pl-*
2454 F: drivers/clocksource/timer-rda.c
2455 F: drivers/gpio/gpio-rda.c
2456 F: drivers/irqchip/irq-rda-intc.c
2457 F: drivers/tty/serial/rda-uart.c
2458
2459 ARM/REALTEK ARCHITECTURE
2460 M: Andreas Färber <afaerber@suse.de>
2461 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2462 L: linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2463 S: Maintained
2464 F: Documentation/devicetree/bindings/arm/realtek.yaml
2465 F: arch/arm/boot/dts/rtd*
2466 F: arch/arm/mach-realtek/
2467 F: arch/arm64/boot/dts/realtek/
2468
2469 ARM/RENESAS ARM64 ARCHITECTURE
2470 M: Geert Uytterhoeven <geert+renesas@glider.be>
2471 M: Magnus Damm <magnus.damm@gmail.com>
2472 L: linux-renesas-soc@vger.kernel.org
2473 S: Supported
2474 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2475 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2476 F: Documentation/devicetree/bindings/arm/renesas.yaml
2477 F: arch/arm64/boot/dts/renesas/
2478 F: drivers/soc/renesas/
2479 F: include/linux/soc/renesas/
2480
2481 ARM/RISCPC ARCHITECTURE
2482 M: Russell King <linux@armlinux.org.uk>
2483 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2484 S: Maintained
2485 W: http://www.armlinux.org.uk/
2486 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
2487 F: arch/arm/include/asm/hardware/ioc.h
2488 F: arch/arm/include/asm/hardware/iomd.h
2489 F: arch/arm/include/asm/hardware/memc.h
2490 F: arch/arm/mach-rpc/
2491 F: drivers/net/ethernet/8390/etherh.c
2492 F: drivers/net/ethernet/i825xx/ether1*
2493 F: drivers/net/ethernet/seeq/ether3*
2494 F: drivers/scsi/arm/
2495
2496 ARM/Rockchip SoC support
2497 M: Heiko Stuebner <heiko@sntech.de>
2498 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2499 L: linux-rockchip@lists.infradead.org
2500 S: Maintained
2501 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2502 F: Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2503 F: Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2504 F: Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2505 F: arch/arm/boot/dts/rk3*
2506 F: arch/arm/boot/dts/rv1108*
2507 F: arch/arm/mach-rockchip/
2508 F: drivers/*/*/*rockchip*
2509 F: drivers/*/*rockchip*
2510 F: drivers/clk/rockchip/
2511 F: drivers/i2c/busses/i2c-rk3x.c
2512 F: sound/soc/rockchip/
2513 N: rockchip
2514
2515 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2516 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2517 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2518 L: linux-samsung-soc@vger.kernel.org
2519 S: Maintained
2520 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
2521 F: Documentation/arm/samsung/
2522 F: Documentation/devicetree/bindings/arm/samsung/
2523 F: Documentation/devicetree/bindings/power/pd-samsung.yaml
2524 F: arch/arm/boot/dts/exynos*
2525 F: arch/arm/boot/dts/s3c*
2526 F: arch/arm/boot/dts/s5p*
2527 F: arch/arm/mach-exynos*/
2528 F: arch/arm/mach-s3c/
2529 F: arch/arm/mach-s5p*/
2530 F: arch/arm64/boot/dts/exynos/
2531 F: drivers/*/*/*s3c24*
2532 F: drivers/*/*s3c24*
2533 F: drivers/*/*s3c64xx*
2534 F: drivers/*/*s5pv210*
2535 F: drivers/clocksource/samsung_pwm_timer.c
2536 F: drivers/memory/samsung/
2537 F: drivers/pwm/pwm-samsung.c
2538 F: drivers/soc/samsung/
2539 F: drivers/tty/serial/samsung*
2540 F: include/clocksource/samsung_pwm.h
2541 F: include/linux/platform_data/*s3c*
2542 F: include/linux/serial_s3c.h
2543 F: include/linux/soc/samsung/
2544 N: exynos
2545 N: s3c2410
2546 N: s3c64xx
2547 N: s5pv210
2548
2549 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2550 M: Andrzej Hajda <a.hajda@samsung.com>
2551 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2552 L: linux-media@vger.kernel.org
2553 S: Maintained
2554 F: drivers/media/platform/s5p-g2d/
2555
2556 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2557 M: Marek Szyprowski <m.szyprowski@samsung.com>
2558 L: linux-samsung-soc@vger.kernel.org
2559 L: linux-media@vger.kernel.org
2560 S: Maintained
2561 F: Documentation/devicetree/bindings/media/s5p-cec.txt
2562 F: drivers/media/cec/platform/s5p/
2563
2564 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2565 M: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2566 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
2567 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
2568 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2569 L: linux-media@vger.kernel.org
2570 S: Maintained
2571 F: drivers/media/platform/s5p-jpeg/
2572
2573 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2574 M: Andrzej Hajda <a.hajda@samsung.com>
2575 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2576 L: linux-media@vger.kernel.org
2577 S: Maintained
2578 F: drivers/media/platform/s5p-mfc/
2579
2580 ARM/SHMOBILE ARM ARCHITECTURE
2581 M: Geert Uytterhoeven <geert+renesas@glider.be>
2582 M: Magnus Damm <magnus.damm@gmail.com>
2583 L: linux-renesas-soc@vger.kernel.org
2584 S: Supported
2585 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2587 F: Documentation/devicetree/bindings/arm/renesas.yaml
2588 F: arch/arm/boot/dts/emev2*
2589 F: arch/arm/boot/dts/gr-peach*
2590 F: arch/arm/boot/dts/iwg20d-q7*
2591 F: arch/arm/boot/dts/r7s*
2592 F: arch/arm/boot/dts/r8a*
2593 F: arch/arm/boot/dts/r9a*
2594 F: arch/arm/boot/dts/sh*
2595 F: arch/arm/configs/shmobile_defconfig
2596 F: arch/arm/include/debug/renesas-scif.S
2597 F: arch/arm/mach-shmobile/
2598 F: drivers/soc/renesas/
2599 F: include/linux/soc/renesas/
2600
2601 ARM/SOCFPGA ARCHITECTURE
2602 M: Dinh Nguyen <dinguyen@kernel.org>
2603 S: Maintained
2604 W: http://www.rocketboards.org
2605 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2606 F: arch/arm/boot/dts/socfpga*
2607 F: arch/arm/configs/socfpga_defconfig
2608 F: arch/arm/mach-socfpga/
2609 F: arch/arm64/boot/dts/altera/
2610 F: arch/arm64/boot/dts/intel/
2611
2612 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2613 M: Dinh Nguyen <dinguyen@kernel.org>
2614 S: Maintained
2615 F: drivers/clk/socfpga/
2616
2617 ARM/SOCFPGA EDAC SUPPORT
2618 M: Dinh Nguyen <dinguyen@kernel.org>
2619 S: Maintained
2620 F: drivers/edac/altera_edac.[ch]
2621
2622 ARM/SPREADTRUM SoC SUPPORT
2623 M: Orson Zhai <orsonzhai@gmail.com>
2624 M: Baolin Wang <baolin.wang7@gmail.com>
2625 M: Chunyan Zhang <zhang.lyra@gmail.com>
2626 S: Maintained
2627 F: arch/arm64/boot/dts/sprd
2628 N: sprd
2629 N: sc27xx
2630 N: sc2731
2631
2632 ARM/STI ARCHITECTURE
2633 M: Patrice Chotard <patrice.chotard@foss.st.com>
2634 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2635 S: Maintained
2636 W: http://www.stlinux.com
2637 F: Documentation/devicetree/bindings/i2c/i2c-st.txt
2638 F: arch/arm/boot/dts/sti*
2639 F: arch/arm/mach-sti/
2640 F: drivers/ata/ahci_st.c
2641 F: drivers/char/hw_random/st-rng.c
2642 F: drivers/clocksource/arm_global_timer.c
2643 F: drivers/clocksource/clksrc_st_lpc.c
2644 F: drivers/cpufreq/sti-cpufreq.c
2645 F: drivers/dma/st_fdma*
2646 F: drivers/i2c/busses/i2c-st.c
2647 F: drivers/media/platform/sti/c8sectpfe/
2648 F: drivers/media/rc/st_rc.c
2649 F: drivers/mmc/host/sdhci-st.c
2650 F: drivers/phy/st/phy-miphy28lp.c
2651 F: drivers/phy/st/phy-stih407-usb.c
2652 F: drivers/pinctrl/pinctrl-st.c
2653 F: drivers/remoteproc/st_remoteproc.c
2654 F: drivers/remoteproc/st_slim_rproc.c
2655 F: drivers/reset/sti/
2656 F: drivers/rtc/rtc-st-lpc.c
2657 F: drivers/tty/serial/st-asc.c
2658 F: drivers/usb/dwc3/dwc3-st.c
2659 F: drivers/usb/host/ehci-st.c
2660 F: drivers/usb/host/ohci-st.c
2661 F: drivers/watchdog/st_lpc_wdt.c
2662 F: include/linux/remoteproc/st_slim_rproc.h
2663
2664 ARM/STM32 ARCHITECTURE
2665 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
2666 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
2667 L: linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2668 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2669 S: Maintained
2670 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2671 F: arch/arm/boot/dts/stm32*
2672 F: arch/arm/mach-stm32/
2673 F: drivers/clocksource/armv7m_systick.c
2674 N: stm32
2675 N: stm
2676
2677 ARM/Synaptics SoC support
2678 M: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2679 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2680 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2681 S: Maintained
2682 F: arch/arm/boot/dts/berlin*
2683 F: arch/arm/mach-berlin/
2684 F: arch/arm64/boot/dts/synaptics/
2685
2686 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2687 M: Lennert Buytenhek <kernel@wantstofly.org>
2688 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2689 S: Maintained
2690
2691 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2692 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
2693 L: linux-tegra@vger.kernel.org
2694 L: linux-media@vger.kernel.org
2695 S: Maintained
2696 F: Documentation/devicetree/bindings/media/tegra-cec.txt
2697 F: drivers/media/cec/platform/tegra/
2698
2699 ARM/TETON BGA MACHINE SUPPORT
2700 M: "Mark F. Brown" <mark.brown314@gmail.com>
2701 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2702 S: Maintained
2703
2704 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2705 M: Santosh Shilimkar <ssantosh@kernel.org>
2706 L: linux-kernel@vger.kernel.org
2707 S: Maintained
2708 F: drivers/memory/*emif*
2709
2710 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2711 M: Santosh Shilimkar <ssantosh@kernel.org>
2712 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2713 S: Maintained
2714 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2715 F: arch/arm/boot/dts/keystone-*
2716 F: arch/arm/mach-keystone/
2717
2718 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2719 M: Santosh Shilimkar <ssantosh@kernel.org>
2720 L: linux-kernel@vger.kernel.org
2721 S: Maintained
2722 F: drivers/clk/keystone/
2723
2724 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2725 M: Santosh Shilimkar <ssantosh@kernel.org>
2726 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2727 L: linux-kernel@vger.kernel.org
2728 S: Maintained
2729 F: drivers/clocksource/timer-keystone.c
2730
2731 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2732 M: Santosh Shilimkar <ssantosh@kernel.org>
2733 L: linux-kernel@vger.kernel.org
2734 S: Maintained
2735 F: drivers/power/reset/keystone-reset.c
2736
2737 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2738 M: Nishanth Menon <nm@ti.com>
2739 M: Vignesh Raghavendra <vigneshr@ti.com>
2740 M: Tero Kristo <kristo@kernel.org>
2741 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2742 S: Supported
2743 F: Documentation/devicetree/bindings/arm/ti/k3.yaml
2744 F: arch/arm64/boot/dts/ti/Makefile
2745 F: arch/arm64/boot/dts/ti/k3-*
2746 F: include/dt-bindings/pinctrl/k3.h
2747
2748 ARM/THECUS N2100 MACHINE SUPPORT
2749 M: Lennert Buytenhek <kernel@wantstofly.org>
2750 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2751 S: Maintained
2752
2753 ARM/TOSA MACHINE SUPPORT
2754 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2755 M: Dirk Opfer <dirk@opfer-online.de>
2756 S: Maintained
2757
2758 ARM/TOSHIBA VISCONTI ARCHITECTURE
2759 M: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2760 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2761 S: Supported
2762 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2763 F: Documentation/devicetree/bindings/arm/toshiba.yaml
2764 F: Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2765 F: Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2766 F: Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2767 F: Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2768 F: Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2769 F: arch/arm64/boot/dts/toshiba/
2770 F: drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2771 F: drivers/gpio/gpio-visconti.c
2772 F: drivers/pci/controller/dwc/pcie-visconti.c
2773 F: drivers/pinctrl/visconti/
2774 F: drivers/watchdog/visconti_wdt.c
2775 N: visconti
2776
2777 ARM/UNIPHIER ARCHITECTURE
2778 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2779 M: Masami Hiramatsu <mhiramat@kernel.org>
2780 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2781 S: Maintained
2782 F: Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2783 F: Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2784 F: Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2785 F: arch/arm/boot/dts/uniphier*
2786 F: arch/arm/include/asm/hardware/cache-uniphier.h
2787 F: arch/arm/mach-uniphier/
2788 F: arch/arm/mm/cache-uniphier.c
2789 F: arch/arm64/boot/dts/socionext/uniphier*
2790 F: drivers/bus/uniphier-system-bus.c
2791 F: drivers/clk/uniphier/
2792 F: drivers/dma/uniphier-mdmac.c
2793 F: drivers/gpio/gpio-uniphier.c
2794 F: drivers/i2c/busses/i2c-uniphier*
2795 F: drivers/irqchip/irq-uniphier-aidet.c
2796 F: drivers/mmc/host/uniphier-sd.c
2797 F: drivers/pinctrl/uniphier/
2798 F: drivers/reset/reset-uniphier.c
2799 F: drivers/tty/serial/8250/8250_uniphier.c
2800 N: uniphier
2801
2802 ARM/VERSATILE EXPRESS PLATFORM
2803 M: Liviu Dudau <liviu.dudau@arm.com>
2804 M: Sudeep Holla <sudeep.holla@arm.com>
2805 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2806 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2807 S: Maintained
2808 F: */*/*/vexpress*
2809 F: */*/vexpress*
2810 F: arch/arm/boot/dts/vexpress*
2811 F: arch/arm/mach-vexpress/
2812 F: arch/arm64/boot/dts/arm/
2813 F: drivers/clk/versatile/clk-vexpress-osc.c
2814 F: drivers/clocksource/timer-versatile.c
2815 N: mps2
2816
2817 ARM/VFP SUPPORT
2818 M: Russell King <linux@armlinux.org.uk>
2819 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2820 S: Maintained
2821 W: http://www.armlinux.org.uk/
2822 F: arch/arm/vfp/
2823
2824 ARM/VOIPAC PXA270 SUPPORT
2825 M: Marek Vasut <marek.vasut@gmail.com>
2826 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2827 S: Maintained
2828 F: arch/arm/mach-pxa/include/mach/vpac270.h
2829 F: arch/arm/mach-pxa/vpac270.c
2830
2831 ARM/VT8500 ARM ARCHITECTURE
2832 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2833 S: Orphan
2834 F: Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2835 F: arch/arm/mach-vt8500/
2836 F: drivers/clocksource/timer-vt8500.c
2837 F: drivers/i2c/busses/i2c-wmt.c
2838 F: drivers/mmc/host/wmt-sdmmc.c
2839 F: drivers/pwm/pwm-vt8500.c
2840 F: drivers/rtc/rtc-vt8500.c
2841 F: drivers/tty/serial/vt8500_serial.c
2842 F: drivers/usb/host/ehci-platform.c
2843 F: drivers/usb/host/uhci-platform.c
2844 F: drivers/video/fbdev/vt8500lcdfb.*
2845 F: drivers/video/fbdev/wm8505fb*
2846 F: drivers/video/fbdev/wmt_ge_rops.*
2847
2848 ARM/ZIPIT Z2 SUPPORT
2849 M: Marek Vasut <marek.vasut@gmail.com>
2850 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2851 S: Maintained
2852 F: arch/arm/mach-pxa/include/mach/z2.h
2853 F: arch/arm/mach-pxa/z2.c
2854
2855 ARM/ZYNQ ARCHITECTURE
2856 M: Michal Simek <michal.simek@xilinx.com>
2857 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2858 S: Supported
2859 W: http://wiki.xilinx.com
2860 T: git https://github.com/Xilinx/linux-xlnx.git
2861 F: Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2862 F: Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2863 F: Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2864 F: arch/arm/mach-zynq/
2865 F: drivers/clocksource/timer-cadence-ttc.c
2866 F: drivers/cpuidle/cpuidle-zynq.c
2867 F: drivers/edac/synopsys_edac.c
2868 F: drivers/i2c/busses/i2c-cadence.c
2869 F: drivers/i2c/busses/i2c-xiic.c
2870 F: drivers/mmc/host/sdhci-of-arasan.c
2871 N: zynq
2872 N: xilinx
2873
2874 ARM64 PORT (AARCH64 ARCHITECTURE)
2875 M: Catalin Marinas <catalin.marinas@arm.com>
2876 M: Will Deacon <will@kernel.org>
2877 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2878 S: Maintained
2879 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2880 F: Documentation/arm64/
2881 F: arch/arm64/
2882 F: tools/testing/selftests/arm64/
2883 X: arch/arm64/boot/dts/
2884
2885 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2886 M: George McCollister <george.mccollister@gmail.com>
2887 L: netdev@vger.kernel.org
2888 S: Maintained
2889 F: Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2890 F: drivers/net/dsa/xrs700x/*
2891 F: net/dsa/tag_xrs700x.c
2892
2893 AS3645A LED FLASH CONTROLLER DRIVER
2894 M: Sakari Ailus <sakari.ailus@iki.fi>
2895 L: linux-leds@vger.kernel.org
2896 S: Maintained
2897 F: drivers/leds/flash/leds-as3645a.c
2898
2899 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2900 M: Tianshu Qiu <tian.shu.qiu@intel.com>
2901 L: linux-media@vger.kernel.org
2902 S: Maintained
2903 T: git git://linuxtv.org/media_tree.git
2904 F: Documentation/devicetree/bindings/media/i2c/ak7375.txt
2905 F: drivers/media/i2c/ak7375.c
2906
2907 ASAHI KASEI AK8974 DRIVER
2908 M: Linus Walleij <linus.walleij@linaro.org>
2909 L: linux-iio@vger.kernel.org
2910 S: Supported
2911 W: http://www.akm.com/
2912 F: drivers/iio/magnetometer/ak8974.c
2913
2914 ASC7621 HARDWARE MONITOR DRIVER
2915 M: George Joseph <george.joseph@fairview5.com>
2916 L: linux-hwmon@vger.kernel.org
2917 S: Maintained
2918 F: Documentation/hwmon/asc7621.rst
2919 F: drivers/hwmon/asc7621.c
2920
2921 ASPEED PINCTRL DRIVERS
2922 M: Andrew Jeffery <andrew@aj.id.au>
2923 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2924 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2925 L: linux-gpio@vger.kernel.org
2926 S: Maintained
2927 F: Documentation/devicetree/bindings/pinctrl/aspeed,*
2928 F: drivers/pinctrl/aspeed/
2929
2930 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2931 M: Eddie James <eajames@linux.ibm.com>
2932 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2933 S: Maintained
2934 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2935 F: drivers/irqchip/irq-aspeed-scu-ic.c
2936 F: include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2937
2938 ASPEED SD/MMC DRIVER
2939 M: Andrew Jeffery <andrew@aj.id.au>
2940 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2941 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2942 L: linux-mmc@vger.kernel.org
2943 S: Maintained
2944 F: Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2945 F: drivers/mmc/host/sdhci-of-aspeed*
2946
2947 ASPEED VIDEO ENGINE DRIVER
2948 M: Eddie James <eajames@linux.ibm.com>
2949 L: linux-media@vger.kernel.org
2950 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2951 S: Maintained
2952 F: Documentation/devicetree/bindings/media/aspeed-video.txt
2953 F: drivers/media/platform/aspeed-video.c
2954
2955 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2956 M: Corentin Chary <corentin.chary@gmail.com>
2957 L: acpi4asus-user@lists.sourceforge.net
2958 L: platform-driver-x86@vger.kernel.org
2959 S: Maintained
2960 W: http://acpi4asus.sf.net
2961 F: drivers/platform/x86/asus*.c
2962 F: drivers/platform/x86/eeepc*.c
2963
2964 ASUS WIRELESS RADIO CONTROL DRIVER
2965 M: João Paulo Rechi Vita <jprvita@gmail.com>
2966 L: platform-driver-x86@vger.kernel.org
2967 S: Maintained
2968 F: drivers/platform/x86/asus-wireless.c
2969
2970 ASYMMETRIC KEYS
2971 M: David Howells <dhowells@redhat.com>
2972 L: keyrings@vger.kernel.org
2973 S: Maintained
2974 F: Documentation/crypto/asymmetric-keys.rst
2975 F: crypto/asymmetric_keys/
2976 F: include/crypto/pkcs7.h
2977 F: include/crypto/public_key.h
2978 F: include/linux/verification.h
2979
2980 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2981 R: Dan Williams <dan.j.williams@intel.com>
2982 S: Odd fixes
2983 W: http://sourceforge.net/projects/xscaleiop
2984 F: Documentation/crypto/async-tx-api.rst
2985 F: crypto/async_tx/
2986 F: include/linux/async_tx.h
2987
2988 AT24 EEPROM DRIVER
2989 M: Bartosz Golaszewski <brgl@bgdev.pl>
2990 L: linux-i2c@vger.kernel.org
2991 S: Maintained
2992 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2993 F: Documentation/devicetree/bindings/eeprom/at24.yaml
2994 F: drivers/misc/eeprom/at24.c
2995
2996 ATA OVER ETHERNET (AOE) DRIVER
2997 M: "Justin Sanders" <justin@coraid.com>
2998 S: Supported
2999 W: http://www.openaoe.org/
3000 F: Documentation/admin-guide/aoe/
3001 F: drivers/block/aoe/
3002
3003 ATC260X PMIC MFD DRIVER
3004 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3005 M: Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3006 L: linux-actions@lists.infradead.org
3007 S: Maintained
3008 F: Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3009 F: drivers/input/misc/atc260x-onkey.c
3010 F: drivers/mfd/atc260*
3011 F: drivers/power/reset/atc260x-poweroff.c
3012 F: drivers/regulator/atc260x-regulator.c
3013 F: include/linux/mfd/atc260x/*
3014
3015 ATHEROS 71XX/9XXX GPIO DRIVER
3016 M: Alban Bedel <albeu@free.fr>
3017 S: Maintained
3018 W: https://github.com/AlbanBedel/linux
3019 T: git git://github.com/AlbanBedel/linux
3020 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3021 F: drivers/gpio/gpio-ath79.c
3022
3023 ATHEROS 71XX/9XXX USB PHY DRIVER
3024 M: Alban Bedel <albeu@free.fr>
3025 S: Maintained
3026 W: https://github.com/AlbanBedel/linux
3027 T: git git://github.com/AlbanBedel/linux
3028 F: Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3029 F: drivers/phy/qualcomm/phy-ath79-usb.c
3030
3031 ATHEROS ATH GENERIC UTILITIES
3032 M: Kalle Valo <kvalo@codeaurora.org>
3033 L: linux-wireless@vger.kernel.org
3034 S: Supported
3035 F: drivers/net/wireless/ath/*
3036
3037 ATHEROS ATH5K WIRELESS DRIVER
3038 M: Jiri Slaby <jirislaby@kernel.org>
3039 M: Nick Kossifidis <mickflemm@gmail.com>
3040 M: Luis Chamberlain <mcgrof@kernel.org>
3041 L: linux-wireless@vger.kernel.org
3042 S: Maintained
3043 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3044 F: drivers/net/wireless/ath/ath5k/
3045
3046 ATHEROS ATH6KL WIRELESS DRIVER
3047 M: Kalle Valo <kvalo@codeaurora.org>
3048 L: linux-wireless@vger.kernel.org
3049 S: Supported
3050 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3051 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3052 F: drivers/net/wireless/ath/ath6kl/
3053
3054 ATI_REMOTE2 DRIVER
3055 M: Ville Syrjala <syrjala@sci.fi>
3056 S: Maintained
3057 F: drivers/input/misc/ati_remote2.c
3058
3059 ATK0110 HWMON DRIVER
3060 M: Luca Tettamanti <kronos.it@gmail.com>
3061 L: linux-hwmon@vger.kernel.org
3062 S: Maintained
3063 F: drivers/hwmon/asus_atk0110.c
3064
3065 ATLX ETHERNET DRIVERS
3066 M: Chris Snook <chris.snook@gmail.com>
3067 L: netdev@vger.kernel.org
3068 S: Maintained
3069 W: http://sourceforge.net/projects/atl1
3070 W: http://atl1.sourceforge.net
3071 F: drivers/net/ethernet/atheros/
3072
3073 ATM
3074 M: Chas Williams <3chas3@gmail.com>
3075 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3076 L: netdev@vger.kernel.org
3077 S: Maintained
3078 W: http://linux-atm.sourceforge.net
3079 F: drivers/atm/
3080 F: include/linux/atm*
3081 F: include/uapi/linux/atm*
3082
3083 ATMEL MACB ETHERNET DRIVER
3084 M: Nicolas Ferre <nicolas.ferre@microchip.com>
3085 M: Claudiu Beznea <claudiu.beznea@microchip.com>
3086 S: Supported
3087 F: drivers/net/ethernet/cadence/
3088
3089 ATMEL MAXTOUCH DRIVER
3090 M: Nick Dyer <nick@shmanahar.org>
3091 S: Maintained
3092 T: git git://github.com/ndyer/linux.git
3093 F: Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3094 F: drivers/input/touchscreen/atmel_mxt_ts.c
3095
3096 ATMEL WIRELESS DRIVER
3097 M: Simon Kelley <simon@thekelleys.org.uk>
3098 L: linux-wireless@vger.kernel.org
3099 S: Maintained
3100 W: http://www.thekelleys.org.uk/atmel
3101 W: http://atmelwlandriver.sourceforge.net/
3102 F: drivers/net/wireless/atmel/atmel*
3103
3104 ATOMIC INFRASTRUCTURE
3105 M: Will Deacon <will@kernel.org>
3106 M: Peter Zijlstra <peterz@infradead.org>
3107 R: Boqun Feng <boqun.feng@gmail.com>
3108 L: linux-kernel@vger.kernel.org
3109 S: Maintained
3110 F: arch/*/include/asm/atomic*.h
3111 F: include/*/atomic*.h
3112 F: include/linux/refcount.h
3113 F: Documentation/atomic_*.txt
3114 F: scripts/atomic/
3115
3116 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3117 M: Bradley Grove <linuxdrivers@attotech.com>
3118 L: linux-scsi@vger.kernel.org
3119 S: Supported
3120 W: http://www.attotech.com
3121 F: drivers/scsi/esas2r
3122
3123 ATUSB IEEE 802.15.4 RADIO DRIVER
3124 M: Stefan Schmidt <stefan@datenfreihafen.org>
3125 L: linux-wpan@vger.kernel.org
3126 S: Maintained
3127 F: drivers/net/ieee802154/at86rf230.h
3128 F: drivers/net/ieee802154/atusb.c
3129 F: drivers/net/ieee802154/atusb.h
3130
3131 AUDIT SUBSYSTEM
3132 M: Paul Moore <paul@paul-moore.com>
3133 M: Eric Paris <eparis@redhat.com>
3134 L: linux-audit@redhat.com (moderated for non-subscribers)
3135 S: Supported
3136 W: https://github.com/linux-audit
3137 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3138 F: include/asm-generic/audit_*.h
3139 F: include/linux/audit.h
3140 F: include/uapi/linux/audit.h
3141 F: kernel/audit*
3142 F: lib/*audit.c
3143
3144 AUFS (advanced multi layered unification filesystem) FILESYSTEM
3145 M: "J. R. Okajima" <hooanon05g@gmail.com>
3146 L: aufs-users@lists.sourceforge.net (members only)
3147 L: linux-unionfs@vger.kernel.org
3148 S: Supported
3149 W: http://aufs.sourceforge.net
3150 T: git://github.com/sfjro/aufs4-linux.git
3151 F: Documentation/ABI/testing/debugfs-aufs
3152 F: Documentation/ABI/testing/sysfs-aufs
3153 F: Documentation/filesystems/aufs/
3154 F: fs/aufs/
3155 F: include/uapi/linux/aufs_type.h
3156
3157 AUXILIARY DISPLAY DRIVERS
3158 M: Miguel Ojeda <ojeda@kernel.org>
3159 S: Maintained
3160 F: drivers/auxdisplay/
3161 F: include/linux/cfag12864b.h
3162
3163 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3164 M: Andreas Klinger <ak@it-klinger.de>
3165 L: linux-iio@vger.kernel.org
3166 S: Maintained
3167 F: Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3168 F: drivers/iio/adc/hx711.c
3169
3170 AX.25 NETWORK LAYER
3171 M: Ralf Baechle <ralf@linux-mips.org>
3172 L: linux-hams@vger.kernel.org
3173 S: Maintained
3174 W: http://www.linux-ax25.org/
3175 F: include/net/ax25.h
3176 F: include/uapi/linux/ax25.h
3177 F: net/ax25/
3178
3179 AXENTIA ARM DEVICES
3180 M: Peter Rosin <peda@axentia.se>
3181 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3182 S: Maintained
3183 F: arch/arm/boot/dts/at91-linea.dtsi
3184 F: arch/arm/boot/dts/at91-natte.dtsi
3185 F: arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3186 F: arch/arm/boot/dts/at91-tse850-3.dts
3187
3188 AXENTIA ASOC DRIVERS
3189 M: Peter Rosin <peda@axentia.se>
3190 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3191 S: Maintained
3192 F: Documentation/devicetree/bindings/sound/axentia,*
3193 F: sound/soc/atmel/tse850-pcm5142.c
3194
3195 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3196 M: Nuno Sá <nuno.sa@analog.com>
3197 L: linux-hwmon@vger.kernel.org
3198 S: Supported
3199 W: http://ez.analog.com/community/linux-device-drivers
3200 F: Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3201 F: drivers/hwmon/axi-fan-control.c
3202
3203 AXXIA I2C CONTROLLER
3204 M: Krzysztof Adamski <krzysztof.adamski@nokia.com>
3205 L: linux-i2c@vger.kernel.org
3206 S: Maintained
3207 F: Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3208 F: drivers/i2c/busses/i2c-axxia.c
3209
3210 AZ6007 DVB DRIVER
3211 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3212 L: linux-media@vger.kernel.org
3213 S: Maintained
3214 W: https://linuxtv.org
3215 T: git git://linuxtv.org/media_tree.git
3216 F: drivers/media/usb/dvb-usb-v2/az6007.c
3217
3218 AZTECH FM RADIO RECEIVER DRIVER
3219 M: Hans Verkuil <hverkuil@xs4all.nl>
3220 L: linux-media@vger.kernel.org
3221 S: Maintained
3222 W: https://linuxtv.org
3223 T: git git://linuxtv.org/media_tree.git
3224 F: drivers/media/radio/radio-aztech*
3225
3226 B43 WIRELESS DRIVER
3227 L: linux-wireless@vger.kernel.org
3228 L: b43-dev@lists.infradead.org
3229 S: Odd Fixes
3230 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3231 F: drivers/net/wireless/broadcom/b43/
3232
3233 B43LEGACY WIRELESS DRIVER
3234 M: Larry Finger <Larry.Finger@lwfinger.net>
3235 L: linux-wireless@vger.kernel.org
3236 L: b43-dev@lists.infradead.org
3237 S: Maintained
3238 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3239 F: drivers/net/wireless/broadcom/b43legacy/
3240
3241 BACKLIGHT CLASS/SUBSYSTEM
3242 M: Lee Jones <lee.jones@linaro.org>
3243 M: Daniel Thompson <daniel.thompson@linaro.org>
3244 M: Jingoo Han <jingoohan1@gmail.com>
3245 L: dri-devel@lists.freedesktop.org
3246 S: Maintained
3247 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3248 F: Documentation/ABI/stable/sysfs-class-backlight
3249 F: Documentation/ABI/testing/sysfs-class-backlight
3250 F: Documentation/devicetree/bindings/leds/backlight
3251 F: drivers/video/backlight/
3252 F: include/linux/backlight.h
3253 F: include/linux/pwm_backlight.h
3254
3255 BATMAN ADVANCED
3256 M: Marek Lindner <mareklindner@neomailbox.ch>
3257 M: Simon Wunderlich <sw@simonwunderlich.de>
3258 M: Antonio Quartulli <a@unstable.cc>
3259 M: Sven Eckelmann <sven@narfation.org>
3260 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3261 S: Maintained
3262 W: https://www.open-mesh.org/
3263 Q: https://patchwork.open-mesh.org/project/batman/list/
3264 B: https://www.open-mesh.org/projects/batman-adv/issues
3265 C: ircs://irc.hackint.org/batadv
3266 T: git https://git.open-mesh.org/linux-merge.git
3267 F: Documentation/networking/batman-adv.rst
3268 F: include/uapi/linux/batadv_packet.h
3269 F: include/uapi/linux/batman_adv.h
3270 F: net/batman-adv/
3271
3272 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3273 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
3274 L: linux-hams@vger.kernel.org
3275 S: Maintained
3276 W: http://www.baycom.org/~tom/ham/ham.html
3277 F: drivers/net/hamradio/baycom*
3278
3279 BCACHE (BLOCK LAYER CACHE)
3280 M: Coly Li <colyli@suse.de>
3281 M: Kent Overstreet <kent.overstreet@gmail.com>
3282 L: linux-bcache@vger.kernel.org
3283 S: Maintained
3284 W: http://bcache.evilpiepirate.org
3285 C: irc://irc.oftc.net/bcache
3286 F: drivers/md/bcache/
3287
3288 BDISP ST MEDIA DRIVER
3289 M: Fabien Dessenne <fabien.dessenne@foss.st.com>
3290 L: linux-media@vger.kernel.org
3291 S: Supported
3292 W: https://linuxtv.org
3293 T: git git://linuxtv.org/media_tree.git
3294 F: drivers/media/platform/sti/bdisp
3295
3296 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3297 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
3298 L: netdev@vger.kernel.org
3299 S: Maintained
3300 F: drivers/net/ethernet/ec_bhf.c
3301
3302 BEFS FILE SYSTEM
3303 M: Luis de Bethencourt <luisbg@kernel.org>
3304 M: Salah Triki <salah.triki@gmail.com>
3305 S: Maintained
3306 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3307 F: Documentation/filesystems/befs.rst
3308 F: fs/befs/
3309
3310 BFQ I/O SCHEDULER
3311 M: Paolo Valente <paolo.valente@linaro.org>
3312 M: Jens Axboe <axboe@kernel.dk>
3313 L: linux-block@vger.kernel.org
3314 S: Maintained
3315 F: Documentation/block/bfq-iosched.rst
3316 F: block/bfq-*
3317
3318 BFS FILE SYSTEM
3319 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3320 S: Maintained
3321 F: Documentation/filesystems/bfs.rst
3322 F: fs/bfs/
3323 F: include/uapi/linux/bfs_fs.h
3324
3325 BITMAP API
3326 M: Yury Norov <yury.norov@gmail.com>
3327 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3328 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
3329 S: Maintained
3330 F: include/asm-generic/bitops/find.h
3331 F: include/linux/bitmap.h
3332 F: lib/bitmap.c
3333 F: lib/find_bit.c
3334 F: lib/find_bit_benchmark.c
3335 F: lib/test_bitmap.c
3336 F: tools/include/asm-generic/bitops/find.h
3337 F: tools/include/linux/bitmap.h
3338 F: tools/lib/bitmap.c
3339 F: tools/lib/find_bit.c
3340
3341 BLINKM RGB LED DRIVER
3342 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
3343 S: Maintained
3344 F: drivers/leds/leds-blinkm.c
3345
3346 BLOCK LAYER
3347 M: Jens Axboe <axboe@kernel.dk>
3348 L: linux-block@vger.kernel.org
3349 S: Maintained
3350 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3351 F: block/
3352 F: drivers/block/
3353 F: include/linux/blk*
3354 F: kernel/trace/blktrace.c
3355 F: lib/sbitmap.c
3356
3357 BLOCK2MTD DRIVER
3358 M: Joern Engel <joern@lazybastard.org>
3359 L: linux-mtd@lists.infradead.org
3360 S: Maintained
3361 F: drivers/mtd/devices/block2mtd.c
3362
3363 BLUETOOTH DRIVERS
3364 M: Marcel Holtmann <marcel@holtmann.org>
3365 M: Johan Hedberg <johan.hedberg@gmail.com>
3366 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3367 L: linux-bluetooth@vger.kernel.org
3368 S: Supported
3369 W: http://www.bluez.org/
3370 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3371 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3372 F: drivers/bluetooth/
3373
3374 BLUETOOTH SUBSYSTEM
3375 M: Marcel Holtmann <marcel@holtmann.org>
3376 M: Johan Hedberg <johan.hedberg@gmail.com>
3377 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3378 L: linux-bluetooth@vger.kernel.org
3379 S: Supported
3380 W: http://www.bluez.org/
3381 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3382 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3383 F: include/net/bluetooth/
3384 F: net/bluetooth/
3385
3386 BONDING DRIVER
3387 M: Jay Vosburgh <j.vosburgh@gmail.com>
3388 M: Veaceslav Falico <vfalico@gmail.com>
3389 M: Andy Gospodarek <andy@greyhouse.net>
3390 L: netdev@vger.kernel.org
3391 S: Supported
3392 W: http://sourceforge.net/projects/bonding/
3393 F: drivers/net/bonding/
3394 F: include/net/bonding.h
3395 F: include/uapi/linux/if_bonding.h
3396
3397 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3398 M: Dan Robertson <dan@dlrobertson.com>
3399 L: linux-iio@vger.kernel.org
3400 S: Maintained
3401 F: Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3402 F: drivers/iio/accel/bma400*
3403
3404 BPF (Safe dynamic programs and tools)
3405 M: Alexei Starovoitov <ast@kernel.org>
3406 M: Daniel Borkmann <daniel@iogearbox.net>
3407 M: Andrii Nakryiko <andrii@kernel.org>
3408 R: Martin KaFai Lau <kafai@fb.com>
3409 R: Song Liu <songliubraving@fb.com>
3410 R: Yonghong Song <yhs@fb.com>
3411 R: John Fastabend <john.fastabend@gmail.com>
3412 R: KP Singh <kpsingh@kernel.org>
3413 L: netdev@vger.kernel.org
3414 L: bpf@vger.kernel.org
3415 S: Supported
3416 W: https://bpf.io/
3417 Q: https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3418 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3419 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3420 F: Documentation/bpf/
3421 F: Documentation/networking/filter.rst
3422 F: Documentation/userspace-api/ebpf/
3423 F: arch/*/net/*
3424 F: include/linux/bpf*
3425 F: include/linux/btf*
3426 F: include/linux/filter.h
3427 F: include/trace/events/xdp.h
3428 F: include/uapi/linux/bpf*
3429 F: include/uapi/linux/btf*
3430 F: include/uapi/linux/filter.h
3431 F: kernel/bpf/
3432 F: kernel/trace/bpf_trace.c
3433 F: lib/test_bpf.c
3434 F: net/bpf/
3435 F: net/core/filter.c
3436 F: net/sched/act_bpf.c
3437 F: net/sched/cls_bpf.c
3438 F: samples/bpf/
3439 F: scripts/bpf_doc.py
3440 F: scripts/pahole-flags.sh
3441 F: scripts/pahole-version.sh
3442 F: tools/bpf/
3443 F: tools/lib/bpf/
3444 F: tools/testing/selftests/bpf/
3445 N: bpf
3446 K: bpf
3447
3448 BPF JIT for ARM
3449 M: Shubham Bansal <illusionist.neo@gmail.com>
3450 L: netdev@vger.kernel.org
3451 L: bpf@vger.kernel.org
3452 S: Maintained
3453 F: arch/arm/net/
3454
3455 BPF JIT for ARM64
3456 M: Daniel Borkmann <daniel@iogearbox.net>
3457 M: Alexei Starovoitov <ast@kernel.org>
3458 M: Zi Shen Lim <zlim.lnx@gmail.com>
3459 L: netdev@vger.kernel.org
3460 L: bpf@vger.kernel.org
3461 S: Supported
3462 F: arch/arm64/net/
3463
3464 BPF JIT for MIPS (32-BIT AND 64-BIT)
3465 M: Paul Burton <paulburton@kernel.org>
3466 L: netdev@vger.kernel.org
3467 L: bpf@vger.kernel.org
3468 S: Maintained
3469 F: arch/mips/net/
3470
3471 BPF JIT for NFP NICs
3472 M: Jakub Kicinski <kuba@kernel.org>
3473 L: netdev@vger.kernel.org
3474 L: bpf@vger.kernel.org
3475 S: Supported
3476 F: drivers/net/ethernet/netronome/nfp/bpf/
3477
3478 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3479 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3480 L: netdev@vger.kernel.org
3481 L: bpf@vger.kernel.org
3482 S: Maintained
3483 F: arch/powerpc/net/
3484
3485 BPF JIT for RISC-V (32-bit)
3486 M: Luke Nelson <luke.r.nels@gmail.com>
3487 M: Xi Wang <xi.wang@gmail.com>
3488 L: netdev@vger.kernel.org
3489 L: bpf@vger.kernel.org
3490 S: Maintained
3491 F: arch/riscv/net/
3492 X: arch/riscv/net/bpf_jit_comp64.c
3493
3494 BPF JIT for RISC-V (64-bit)
3495 M: Björn Töpel <bjorn@kernel.org>
3496 L: netdev@vger.kernel.org
3497 L: bpf@vger.kernel.org
3498 S: Maintained
3499 F: arch/riscv/net/
3500 X: arch/riscv/net/bpf_jit_comp32.c
3501
3502 BPF JIT for S390
3503 M: Ilya Leoshkevich <iii@linux.ibm.com>
3504 M: Heiko Carstens <hca@linux.ibm.com>
3505 M: Vasily Gorbik <gor@linux.ibm.com>
3506 L: netdev@vger.kernel.org
3507 L: bpf@vger.kernel.org
3508 S: Maintained
3509 F: arch/s390/net/
3510 X: arch/s390/net/pnet.c
3511
3512 BPF JIT for SPARC (32-BIT AND 64-BIT)
3513 M: David S. Miller <davem@davemloft.net>
3514 L: netdev@vger.kernel.org
3515 L: bpf@vger.kernel.org
3516 S: Maintained
3517 F: arch/sparc/net/
3518
3519 BPF JIT for X86 32-BIT
3520 M: Wang YanQing <udknight@gmail.com>
3521 L: netdev@vger.kernel.org
3522 L: bpf@vger.kernel.org
3523 S: Maintained
3524 F: arch/x86/net/bpf_jit_comp32.c
3525
3526 BPF JIT for X86 64-BIT
3527 M: Alexei Starovoitov <ast@kernel.org>
3528 M: Daniel Borkmann <daniel@iogearbox.net>
3529 L: netdev@vger.kernel.org
3530 L: bpf@vger.kernel.org
3531 S: Supported
3532 F: arch/x86/net/
3533 X: arch/x86/net/bpf_jit_comp32.c
3534
3535 BPF LSM (Security Audit and Enforcement using BPF)
3536 M: KP Singh <kpsingh@kernel.org>
3537 R: Florent Revest <revest@chromium.org>
3538 R: Brendan Jackman <jackmanb@chromium.org>
3539 L: bpf@vger.kernel.org
3540 S: Maintained
3541 F: Documentation/bpf/bpf_lsm.rst
3542 F: include/linux/bpf_lsm.h
3543 F: kernel/bpf/bpf_lsm.c
3544 F: security/bpf/
3545
3546 BROADCOM B44 10/100 ETHERNET DRIVER
3547 M: Michael Chan <michael.chan@broadcom.com>
3548 L: netdev@vger.kernel.org
3549 S: Supported
3550 F: drivers/net/ethernet/broadcom/b44.*
3551
3552 BROADCOM B53 ETHERNET SWITCH DRIVER
3553 M: Florian Fainelli <f.fainelli@gmail.com>
3554 L: netdev@vger.kernel.org
3555 L: openwrt-devel@lists.openwrt.org (subscribers-only)
3556 S: Supported
3557 F: Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3558 F: drivers/net/dsa/b53/*
3559 F: include/linux/dsa/brcm.h
3560 F: include/linux/platform_data/b53.h
3561
3562 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3563 M: Nicolas Saenz Julienne <nsaenz@kernel.org>
3564 L: bcm-kernel-feedback-list@broadcom.com
3565 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3566 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3567 S: Maintained
3568 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3569 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3570 F: drivers/pci/controller/pcie-brcmstb.c
3571 F: drivers/staging/vc04_services
3572 N: bcm2711
3573 N: bcm283*
3574
3575 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3576 M: Florian Fainelli <f.fainelli@gmail.com>
3577 M: Ray Jui <rjui@broadcom.com>
3578 M: Scott Branden <sbranden@broadcom.com>
3579 M: bcm-kernel-feedback-list@broadcom.com
3580 S: Maintained
3581 T: git git://github.com/broadcom/mach-bcm
3582 F: arch/arm/mach-bcm/
3583 N: bcm281*
3584 N: bcm113*
3585 N: bcm216*
3586 N: kona
3587
3588 BROADCOM BCM47XX MIPS ARCHITECTURE
3589 M: Hauke Mehrtens <hauke@hauke-m.de>
3590 M: Rafał Miłecki <zajec5@gmail.com>
3591 L: linux-mips@vger.kernel.org
3592 S: Maintained
3593 F: Documentation/devicetree/bindings/mips/brcm/
3594 F: arch/mips/bcm47xx/*
3595 F: arch/mips/include/asm/mach-bcm47xx/*
3596
3597 BROADCOM BCM4908 ETHERNET DRIVER
3598 M: Rafał Miłecki <rafal@milecki.pl>
3599 M: bcm-kernel-feedback-list@broadcom.com
3600 L: netdev@vger.kernel.org
3601 S: Maintained
3602 F: Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3603 F: drivers/net/ethernet/broadcom/bcm4908_enet.*
3604 F: drivers/net/ethernet/broadcom/unimac.h
3605
3606 BROADCOM BCM5301X ARM ARCHITECTURE
3607 M: Hauke Mehrtens <hauke@hauke-m.de>
3608 M: Rafał Miłecki <zajec5@gmail.com>
3609 M: bcm-kernel-feedback-list@broadcom.com
3610 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3611 S: Maintained
3612 F: arch/arm/boot/dts/bcm470*
3613 F: arch/arm/boot/dts/bcm5301*
3614 F: arch/arm/boot/dts/bcm953012*
3615 F: arch/arm/mach-bcm/bcm_5301x.c
3616
3617 BROADCOM BCM53573 ARM ARCHITECTURE
3618 M: Rafał Miłecki <rafal@milecki.pl>
3619 L: bcm-kernel-feedback-list@broadcom.com
3620 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3621 S: Maintained
3622 F: arch/arm/boot/dts/bcm47189*
3623 F: arch/arm/boot/dts/bcm53573*
3624
3625 BROADCOM BCM63XX ARM ARCHITECTURE
3626 M: Florian Fainelli <f.fainelli@gmail.com>
3627 M: bcm-kernel-feedback-list@broadcom.com
3628 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3629 S: Maintained
3630 T: git git://github.com/broadcom/stblinux.git
3631 N: bcm63xx
3632
3633 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3634 M: Kevin Cernekee <cernekee@gmail.com>
3635 L: linux-usb@vger.kernel.org
3636 S: Maintained
3637 F: drivers/usb/gadget/udc/bcm63xx_udc.*
3638
3639 BROADCOM BCM7XXX ARM ARCHITECTURE
3640 M: Florian Fainelli <f.fainelli@gmail.com>
3641 M: bcm-kernel-feedback-list@broadcom.com
3642 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3643 S: Maintained
3644 T: git git://github.com/broadcom/stblinux.git
3645 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3646 F: arch/arm/boot/dts/bcm7*.dts*
3647 F: arch/arm/include/asm/hardware/cache-b15-rac.h
3648 F: arch/arm/mach-bcm/*brcmstb*
3649 F: arch/arm/mm/cache-b15-rac.c
3650 F: drivers/bus/brcmstb_gisb.c
3651 F: drivers/pci/controller/pcie-brcmstb.c
3652 N: brcmstb
3653
3654 BROADCOM BDC DRIVER
3655 M: Al Cooper <alcooperx@gmail.com>
3656 L: linux-usb@vger.kernel.org
3657 L: bcm-kernel-feedback-list@broadcom.com
3658 S: Maintained
3659 F: Documentation/devicetree/bindings/usb/brcm,bdc.txt
3660 F: drivers/usb/gadget/udc/bdc/
3661
3662 BROADCOM BMIPS CPUFREQ DRIVER
3663 M: Markus Mayer <mmayer@broadcom.com>
3664 M: bcm-kernel-feedback-list@broadcom.com
3665 L: linux-pm@vger.kernel.org
3666 S: Maintained
3667 F: drivers/cpufreq/bmips-cpufreq.c
3668
3669 BROADCOM BMIPS MIPS ARCHITECTURE
3670 M: Florian Fainelli <f.fainelli@gmail.com>
3671 L: bcm-kernel-feedback-list@broadcom.com
3672 L: linux-mips@vger.kernel.org
3673 S: Maintained
3674 T: git git://github.com/broadcom/stblinux.git
3675 F: arch/mips/bmips/*
3676 F: arch/mips/boot/dts/brcm/bcm*.dts*
3677 F: arch/mips/include/asm/mach-bmips/*
3678 F: arch/mips/kernel/*bmips*
3679 F: drivers/soc/bcm/bcm63xx
3680 F: drivers/irqchip/irq-bcm63*
3681 F: drivers/irqchip/irq-bcm7*
3682 F: drivers/irqchip/irq-brcmstb*
3683 F: include/linux/bcm963xx_nvram.h
3684 F: include/linux/bcm963xx_tag.h
3685
3686 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3687 M: Rasesh Mody <rmody@marvell.com>
3688 M: GR-Linux-NIC-Dev@marvell.com
3689 L: netdev@vger.kernel.org
3690 S: Supported
3691 F: drivers/net/ethernet/broadcom/bnx2.*
3692 F: drivers/net/ethernet/broadcom/bnx2_*
3693
3694 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3695 M: Saurav Kashyap <skashyap@marvell.com>
3696 M: Javed Hasan <jhasan@marvell.com>
3697 M: GR-QLogic-Storage-Upstream@marvell.com
3698 L: linux-scsi@vger.kernel.org
3699 S: Supported
3700 F: drivers/scsi/bnx2fc/
3701
3702 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3703 M: Nilesh Javali <njavali@marvell.com>
3704 M: Manish Rangankar <mrangankar@marvell.com>
3705 M: GR-QLogic-Storage-Upstream@marvell.com
3706 L: linux-scsi@vger.kernel.org
3707 S: Supported
3708 F: drivers/scsi/bnx2i/
3709
3710 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3711 M: Ariel Elior <aelior@marvell.com>
3712 M: Sudarsana Kalluru <skalluru@marvell.com>
3713 M: GR-everest-linux-l2@marvell.com
3714 L: netdev@vger.kernel.org
3715 S: Supported
3716 F: drivers/net/ethernet/broadcom/bnx2x/
3717
3718 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3719 M: Michael Chan <michael.chan@broadcom.com>
3720 L: netdev@vger.kernel.org
3721 S: Supported
3722 F: drivers/net/ethernet/broadcom/bnxt/
3723
3724 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3725 M: Arend van Spriel <aspriel@gmail.com>
3726 M: Franky Lin <franky.lin@broadcom.com>
3727 M: Hante Meuleman <hante.meuleman@broadcom.com>
3728 M: Chi-hsien Lin <chi-hsien.lin@infineon.com>
3729 M: Wright Feng <wright.feng@infineon.com>
3730 M: Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3731 L: linux-wireless@vger.kernel.org
3732 L: brcm80211-dev-list.pdl@broadcom.com
3733 L: SHA-cyfmac-dev-list@infineon.com
3734 S: Supported
3735 F: drivers/net/wireless/broadcom/brcm80211/
3736
3737 BROADCOM BRCMSTB GPIO DRIVER
3738 M: Gregory Fong <gregory.0xf0@gmail.com>
3739 L: bcm-kernel-feedback-list@broadcom.com
3740 S: Supported
3741 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3742 F: drivers/gpio/gpio-brcmstb.c
3743
3744 BROADCOM BRCMSTB I2C DRIVER
3745 M: Kamal Dasu <kdasu.kdev@gmail.com>
3746 L: linux-i2c@vger.kernel.org
3747 L: bcm-kernel-feedback-list@broadcom.com
3748 S: Supported
3749 F: Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3750 F: drivers/i2c/busses/i2c-brcmstb.c
3751
3752 BROADCOM BRCMSTB UART DRIVER
3753 M: Al Cooper <alcooperx@gmail.com>
3754 L: linux-serial@vger.kernel.org
3755 L: bcm-kernel-feedback-list@broadcom.com
3756 S: Maintained
3757 F: Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3758 F: drivers/tty/serial/8250/8250_bcm7271.c
3759
3760 BROADCOM BRCMSTB USB EHCI DRIVER
3761 M: Al Cooper <alcooperx@gmail.com>
3762 L: linux-usb@vger.kernel.org
3763 L: bcm-kernel-feedback-list@broadcom.com
3764 S: Maintained
3765 F: Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3766 F: drivers/usb/host/ehci-brcm.*
3767
3768 BROADCOM BRCMSTB USB PIN MAP DRIVER
3769 M: Al Cooper <alcooperx@gmail.com>
3770 L: linux-usb@vger.kernel.org
3771 L: bcm-kernel-feedback-list@broadcom.com
3772 S: Maintained
3773 F: Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3774 F: drivers/usb/misc/brcmstb-usb-pinmap.c
3775
3776 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3777 M: Al Cooper <alcooperx@gmail.com>
3778 L: linux-kernel@vger.kernel.org
3779 L: bcm-kernel-feedback-list@broadcom.com
3780 S: Maintained
3781 F: drivers/phy/broadcom/phy-brcm-usb*
3782
3783 BROADCOM ETHERNET PHY DRIVERS
3784 M: Florian Fainelli <f.fainelli@gmail.com>
3785 L: bcm-kernel-feedback-list@broadcom.com
3786 L: netdev@vger.kernel.org
3787 S: Supported
3788 F: Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3789 F: drivers/net/phy/bcm*.[ch]
3790 F: drivers/net/phy/broadcom.c
3791 F: include/linux/brcmphy.h
3792
3793 BROADCOM GENET ETHERNET DRIVER
3794 M: Doug Berger <opendmb@gmail.com>
3795 M: Florian Fainelli <f.fainelli@gmail.com>
3796 L: bcm-kernel-feedback-list@broadcom.com
3797 L: netdev@vger.kernel.org
3798 S: Supported
3799 F: Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3800 F: Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3801 F: drivers/net/ethernet/broadcom/genet/
3802 F: drivers/net/ethernet/broadcom/unimac.h
3803 F: drivers/net/mdio/mdio-bcm-unimac.c
3804 F: include/linux/platform_data/bcmgenet.h
3805 F: include/linux/platform_data/mdio-bcm-unimac.h
3806
3807 BROADCOM IPROC ARM ARCHITECTURE
3808 M: Ray Jui <rjui@broadcom.com>
3809 M: Scott Branden <sbranden@broadcom.com>
3810 M: bcm-kernel-feedback-list@broadcom.com
3811 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3812 S: Maintained
3813 T: git git://github.com/broadcom/cygnus-linux.git
3814 F: arch/arm64/boot/dts/broadcom/northstar2/*
3815 F: arch/arm64/boot/dts/broadcom/stingray/*
3816 F: drivers/clk/bcm/clk-ns*
3817 F: drivers/clk/bcm/clk-sr*
3818 F: drivers/pinctrl/bcm/pinctrl-ns*
3819 F: include/dt-bindings/clock/bcm-sr*
3820 N: iproc
3821 N: cygnus
3822 N: bcm[-_]nsp
3823 N: bcm9113*
3824 N: bcm9583*
3825 N: bcm9585*
3826 N: bcm9586*
3827 N: bcm988312
3828 N: bcm113*
3829 N: bcm583*
3830 N: bcm585*
3831 N: bcm586*
3832 N: bcm88312
3833 N: hr2
3834 N: stingray
3835
3836 BROADCOM IPROC GBIT ETHERNET DRIVER
3837 M: Rafał Miłecki <rafal@milecki.pl>
3838 M: bcm-kernel-feedback-list@broadcom.com
3839 L: netdev@vger.kernel.org
3840 S: Maintained
3841 F: Documentation/devicetree/bindings/net/brcm,amac.txt
3842 F: drivers/net/ethernet/broadcom/bgmac*
3843 F: drivers/net/ethernet/broadcom/unimac.h
3844
3845 BROADCOM KONA GPIO DRIVER
3846 M: Ray Jui <rjui@broadcom.com>
3847 L: bcm-kernel-feedback-list@broadcom.com
3848 S: Supported
3849 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3850 F: drivers/gpio/gpio-bcm-kona.c
3851
3852 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3853 M: Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3854 M: Kashyap Desai <kashyap.desai@broadcom.com>
3855 M: Sumit Saxena <sumit.saxena@broadcom.com>
3856 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3857 L: mpi3mr-linuxdrv.pdl@broadcom.com
3858 L: linux-scsi@vger.kernel.org
3859 S: Supported
3860 W: https://www.broadcom.com/support/storage
3861 F: drivers/scsi/mpi3mr/
3862
3863 BROADCOM NETXTREME-E ROCE DRIVER
3864 M: Selvin Xavier <selvin.xavier@broadcom.com>
3865 L: linux-rdma@vger.kernel.org
3866 S: Supported
3867 W: http://www.broadcom.com
3868 F: drivers/infiniband/hw/bnxt_re/
3869 F: include/uapi/rdma/bnxt_re-abi.h
3870
3871 BROADCOM NVRAM DRIVER
3872 M: Rafał Miłecki <zajec5@gmail.com>
3873 L: linux-mips@vger.kernel.org
3874 S: Maintained
3875 F: drivers/firmware/broadcom/*
3876
3877 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3878 M: Rafał Miłecki <rafal@milecki.pl>
3879 M: Florian Fainelli <f.fainelli@gmail.com>
3880 M: bcm-kernel-feedback-list@broadcom.com
3881 L: linux-pm@vger.kernel.org
3882 S: Maintained
3883 T: git git://github.com/broadcom/stblinux.git
3884 F: drivers/soc/bcm/bcm63xx/bcm-pmb.c
3885 F: include/dt-bindings/soc/bcm-pmb.h
3886
3887 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3888 M: Rafał Miłecki <zajec5@gmail.com>
3889 L: linux-wireless@vger.kernel.org
3890 S: Maintained
3891 F: drivers/bcma/
3892 F: include/linux/bcma/
3893
3894 BROADCOM SPI DRIVER
3895 M: Kamal Dasu <kdasu.kdev@gmail.com>
3896 M: bcm-kernel-feedback-list@broadcom.com
3897 S: Maintained
3898 F: Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3899 F: drivers/spi/spi-bcm-qspi.*
3900 F: drivers/spi/spi-brcmstb-qspi.c
3901 F: drivers/spi/spi-iproc-qspi.c
3902
3903 BROADCOM STB AVS CPUFREQ DRIVER
3904 M: Markus Mayer <mmayer@broadcom.com>
3905 M: bcm-kernel-feedback-list@broadcom.com
3906 L: linux-pm@vger.kernel.org
3907 S: Maintained
3908 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3909 F: drivers/cpufreq/brcmstb*
3910
3911 BROADCOM STB AVS TMON DRIVER
3912 M: Markus Mayer <mmayer@broadcom.com>
3913 M: bcm-kernel-feedback-list@broadcom.com
3914 L: linux-pm@vger.kernel.org
3915 S: Maintained
3916 F: Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3917 F: drivers/thermal/broadcom/brcmstb*
3918
3919 BROADCOM STB DPFE DRIVER
3920 M: Markus Mayer <mmayer@broadcom.com>
3921 M: bcm-kernel-feedback-list@broadcom.com
3922 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3923 S: Maintained
3924 F: Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3925 F: drivers/memory/brcmstb_dpfe.c
3926
3927 BROADCOM STB NAND FLASH DRIVER
3928 M: Brian Norris <computersforpeace@gmail.com>
3929 M: Kamal Dasu <kdasu.kdev@gmail.com>
3930 L: linux-mtd@lists.infradead.org
3931 L: bcm-kernel-feedback-list@broadcom.com
3932 S: Maintained
3933 F: drivers/mtd/nand/raw/brcmnand/
3934
3935 BROADCOM STB PCIE DRIVER
3936 M: Jim Quinlan <jim2101024@gmail.com>
3937 M: Nicolas Saenz Julienne <nsaenz@kernel.org>
3938 M: Florian Fainelli <f.fainelli@gmail.com>
3939 M: bcm-kernel-feedback-list@broadcom.com
3940 L: linux-pci@vger.kernel.org
3941 S: Maintained
3942 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3943 F: drivers/pci/controller/pcie-brcmstb.c
3944
3945 BROADCOM SYSTEMPORT ETHERNET DRIVER
3946 M: Florian Fainelli <f.fainelli@gmail.com>
3947 L: bcm-kernel-feedback-list@broadcom.com
3948 L: netdev@vger.kernel.org
3949 S: Supported
3950 F: drivers/net/ethernet/broadcom/bcmsysport.*
3951 F: drivers/net/ethernet/broadcom/unimac.h
3952
3953 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3954 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
3955 M: Prashant Sreedharan <prashant@broadcom.com>
3956 M: Michael Chan <mchan@broadcom.com>
3957 L: netdev@vger.kernel.org
3958 S: Supported
3959 F: drivers/net/ethernet/broadcom/tg3.*
3960
3961 BROADCOM VK DRIVER
3962 M: Scott Branden <scott.branden@broadcom.com>
3963 L: bcm-kernel-feedback-list@broadcom.com
3964 S: Supported
3965 F: drivers/misc/bcm-vk/
3966 F: include/uapi/linux/misc/bcm_vk.h
3967
3968 BROCADE BFA FC SCSI DRIVER
3969 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3970 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3971 L: linux-scsi@vger.kernel.org
3972 S: Supported
3973 F: drivers/scsi/bfa/
3974
3975 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3976 M: Rasesh Mody <rmody@marvell.com>
3977 M: Sudarsana Kalluru <skalluru@marvell.com>
3978 M: GR-Linux-NIC-Dev@marvell.com
3979 L: netdev@vger.kernel.org
3980 S: Supported
3981 F: drivers/net/ethernet/brocade/bna/
3982
3983 BSG (block layer generic sg v4 driver)
3984 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3985 L: linux-scsi@vger.kernel.org
3986 S: Supported
3987 F: block/bsg.c
3988 F: include/linux/bsg.h
3989 F: include/uapi/linux/bsg.h
3990
3991 BT87X AUDIO DRIVER
3992 M: Clemens Ladisch <clemens@ladisch.de>
3993 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3994 S: Maintained
3995 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3996 F: Documentation/sound/cards/bt87x.rst
3997 F: sound/pci/bt87x.c
3998
3999 BT8XXGPIO DRIVER
4000 M: Michael Buesch <m@bues.ch>
4001 S: Maintained
4002 W: http://bu3sch.de/btgpio.php
4003 F: drivers/gpio/gpio-bt8xx.c
4004
4005 BTRFS FILE SYSTEM
4006 M: Chris Mason <clm@fb.com>
4007 M: Josef Bacik <josef@toxicpanda.com>
4008 M: David Sterba <dsterba@suse.com>
4009 L: linux-btrfs@vger.kernel.org
4010 S: Maintained
4011 W: http://btrfs.wiki.kernel.org/
4012 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
4013 C: irc://irc.libera.chat/btrfs
4014 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4015 F: Documentation/filesystems/btrfs.rst
4016 F: fs/btrfs/
4017 F: include/linux/btrfs*
4018 F: include/uapi/linux/btrfs*
4019
4020 BTTV VIDEO4LINUX DRIVER
4021 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4022 L: linux-media@vger.kernel.org
4023 S: Odd fixes
4024 W: https://linuxtv.org
4025 T: git git://linuxtv.org/media_tree.git
4026 F: Documentation/driver-api/media/drivers/bttv*
4027 F: drivers/media/pci/bt8xx/bttv*
4028
4029 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4030 M: Chanwoo Choi <cw00.choi@samsung.com>
4031 L: linux-pm@vger.kernel.org
4032 L: linux-samsung-soc@vger.kernel.org
4033 S: Maintained
4034 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4035 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4036 F: drivers/devfreq/exynos-bus.c
4037
4038 BUSLOGIC SCSI DRIVER
4039 M: Khalid Aziz <khalid@gonehiking.org>
4040 L: linux-scsi@vger.kernel.org
4041 S: Maintained
4042 F: drivers/scsi/BusLogic.*
4043 F: drivers/scsi/FlashPoint.*
4044
4045 C-MEDIA CMI8788 DRIVER
4046 M: Clemens Ladisch <clemens@ladisch.de>
4047 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4048 S: Maintained
4049 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4050 F: sound/pci/oxygen/
4051
4052 C-SKY ARCHITECTURE
4053 M: Guo Ren <guoren@kernel.org>
4054 L: linux-csky@vger.kernel.org
4055 S: Supported
4056 T: git https://github.com/c-sky/csky-linux.git
4057 F: Documentation/devicetree/bindings/csky/
4058 F: Documentation/devicetree/bindings/interrupt-controller/csky,*
4059 F: Documentation/devicetree/bindings/timer/csky,*
4060 F: arch/csky/
4061 F: drivers/clocksource/timer-gx6605s.c
4062 F: drivers/clocksource/timer-mp-csky.c
4063 F: drivers/irqchip/irq-csky-*
4064 N: csky
4065 K: csky
4066
4067 CA8210 IEEE-802.15.4 RADIO DRIVER
4068 M: Harry Morris <h.morris@cascoda.com>
4069 L: linux-wpan@vger.kernel.org
4070 S: Maintained
4071 W: https://github.com/Cascoda/ca8210-linux.git
4072 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4073 F: drivers/net/ieee802154/ca8210.c
4074
4075 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4076 M: Damien Le Moal <damien.lemoal@wdc.com>
4077 L: linux-riscv@lists.infradead.org
4078 L: linux-gpio@vger.kernel.org (pinctrl driver)
4079 F: Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4080 F: drivers/pinctrl/pinctrl-k210.c
4081
4082 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4083 M: Damien Le Moal <damien.lemoal@wdc.com>
4084 L: linux-kernel@vger.kernel.org
4085 L: linux-riscv@lists.infradead.org
4086 S: Maintained
4087 F: Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4088 F: drivers/reset/reset-k210.c
4089
4090 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4091 M: Damien Le Moal <damien.lemoal@wdc.com>
4092 L: linux-riscv@lists.infradead.org
4093 S: Maintained
4094 F: Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4095 F: drivers/soc/canaan/
4096 F: include/soc/canaan/
4097
4098 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4099 M: David Howells <dhowells@redhat.com>
4100 L: linux-cachefs@redhat.com (moderated for non-subscribers)
4101 S: Supported
4102 F: Documentation/filesystems/caching/cachefiles.rst
4103 F: fs/cachefiles/
4104
4105 CADENCE MIPI-CSI2 BRIDGES
4106 M: Maxime Ripard <mripard@kernel.org>
4107 L: linux-media@vger.kernel.org
4108 S: Maintained
4109 F: Documentation/devicetree/bindings/media/cdns,*.txt
4110 F: drivers/media/platform/cadence/cdns-csi2*
4111
4112 CADENCE NAND DRIVER
4113 L: linux-mtd@lists.infradead.org
4114 S: Orphan
4115 F: Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4116 F: drivers/mtd/nand/raw/cadence-nand-controller.c
4117
4118 CADENCE USB3 DRD IP DRIVER
4119 M: Peter Chen <peter.chen@kernel.org>
4120 M: Pawel Laszczak <pawell@cadence.com>
4121 R: Roger Quadros <rogerq@kernel.org>
4122 R: Aswath Govindraju <a-govindraju@ti.com>
4123 L: linux-usb@vger.kernel.org
4124 S: Maintained
4125 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4126 F: Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4127 F: drivers/usb/cdns3/
4128 X: drivers/usb/cdns3/cdnsp*
4129
4130 CADENCE USBSSP DRD IP DRIVER
4131 M: Pawel Laszczak <pawell@cadence.com>
4132 L: linux-usb@vger.kernel.org
4133 S: Maintained
4134 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4135 F: drivers/usb/cdns3/
4136 X: drivers/usb/cdns3/cdns3*
4137
4138 CADET FM/AM RADIO RECEIVER DRIVER
4139 M: Hans Verkuil <hverkuil@xs4all.nl>
4140 L: linux-media@vger.kernel.org
4141 S: Maintained
4142 W: https://linuxtv.org
4143 T: git git://linuxtv.org/media_tree.git
4144 F: drivers/media/radio/radio-cadet*
4145
4146 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4147 L: linux-media@vger.kernel.org
4148 S: Orphan
4149 T: git git://linuxtv.org/media_tree.git
4150 F: Documentation/admin-guide/media/cafe_ccic*
4151 F: drivers/media/platform/marvell-ccic/
4152
4153 CAIF NETWORK LAYER
4154 L: netdev@vger.kernel.org
4155 S: Orphan
4156 F: Documentation/networking/caif/
4157 F: drivers/net/caif/
4158 F: include/net/caif/
4159 F: include/uapi/linux/caif/
4160 F: net/caif/
4161
4162 CAKE QDISC
4163 M: Toke Høiland-Jørgensen <toke@toke.dk>
4164 L: cake@lists.bufferbloat.net (moderated for non-subscribers)
4165 S: Maintained
4166 F: net/sched/sch_cake.c
4167
4168 CAN NETWORK DRIVERS
4169 M: Wolfgang Grandegger <wg@grandegger.com>
4170 M: Marc Kleine-Budde <mkl@pengutronix.de>
4171 L: linux-can@vger.kernel.org
4172 S: Maintained
4173 W: https://github.com/linux-can
4174 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4175 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4176 F: Documentation/devicetree/bindings/net/can/
4177 F: Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4178 F: drivers/net/can/
4179 F: drivers/phy/phy-can-transceiver.c
4180 F: include/linux/can/bittiming.h
4181 F: include/linux/can/dev.h
4182 F: include/linux/can/led.h
4183 F: include/linux/can/length.h
4184 F: include/linux/can/platform/
4185 F: include/linux/can/rx-offload.h
4186 F: include/uapi/linux/can/error.h
4187 F: include/uapi/linux/can/netlink.h
4188 F: include/uapi/linux/can/vxcan.h
4189
4190 CAN NETWORK LAYER
4191 M: Oliver Hartkopp <socketcan@hartkopp.net>
4192 M: Marc Kleine-Budde <mkl@pengutronix.de>
4193 L: linux-can@vger.kernel.org
4194 S: Maintained
4195 W: https://github.com/linux-can
4196 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4197 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4198 F: Documentation/networking/can.rst
4199 F: include/linux/can/can-ml.h
4200 F: include/linux/can/core.h
4201 F: include/linux/can/skb.h
4202 F: include/net/netns/can.h
4203 F: include/uapi/linux/can.h
4204 F: include/uapi/linux/can/bcm.h
4205 F: include/uapi/linux/can/gw.h
4206 F: include/uapi/linux/can/isotp.h
4207 F: include/uapi/linux/can/raw.h
4208 F: net/can/
4209
4210 CAN-J1939 NETWORK LAYER
4211 M: Robin van der Gracht <robin@protonic.nl>
4212 M: Oleksij Rempel <o.rempel@pengutronix.de>
4213 R: kernel@pengutronix.de
4214 L: linux-can@vger.kernel.org
4215 S: Maintained
4216 F: Documentation/networking/j1939.rst
4217 F: include/uapi/linux/can/j1939.h
4218 F: net/can/j1939/
4219
4220 CAPABILITIES
4221 M: Serge Hallyn <serge@hallyn.com>
4222 L: linux-security-module@vger.kernel.org
4223 S: Supported
4224 F: include/linux/capability.h
4225 F: include/uapi/linux/capability.h
4226 F: kernel/capability.c
4227 F: security/commoncap.c
4228
4229 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4230 M: Kevin Tsai <ktsai@capellamicro.com>
4231 S: Maintained
4232 F: drivers/iio/light/cm*
4233
4234 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4235 M: Christian Lamparter <chunkeey@googlemail.com>
4236 L: linux-wireless@vger.kernel.org
4237 S: Maintained
4238 W: https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4239 F: drivers/net/wireless/ath/carl9170/
4240
4241 CAVIUM I2C DRIVER
4242 M: Robert Richter <rric@kernel.org>
4243 S: Odd Fixes
4244 W: http://www.marvell.com
4245 F: drivers/i2c/busses/i2c-octeon*
4246 F: drivers/i2c/busses/i2c-thunderx*
4247
4248 CAVIUM LIQUIDIO NETWORK DRIVER
4249 M: Derek Chickles <dchickles@marvell.com>
4250 M: Satanand Burla <sburla@marvell.com>
4251 M: Felix Manlunas <fmanlunas@marvell.com>
4252 L: netdev@vger.kernel.org
4253 S: Supported
4254 W: http://www.marvell.com
4255 F: drivers/net/ethernet/cavium/liquidio/
4256
4257 CAVIUM MMC DRIVER
4258 M: Robert Richter <rric@kernel.org>
4259 S: Odd Fixes
4260 W: http://www.marvell.com
4261 F: drivers/mmc/host/cavium*
4262
4263 CAVIUM OCTEON-TX CRYPTO DRIVER
4264 M: George Cherian <gcherian@marvell.com>
4265 L: linux-crypto@vger.kernel.org
4266 S: Supported
4267 W: http://www.marvell.com
4268 F: drivers/crypto/cavium/cpt/
4269
4270 CAVIUM THUNDERX2 ARM64 SOC
4271 M: Robert Richter <rric@kernel.org>
4272 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4273 S: Odd Fixes
4274 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4275 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
4276
4277 CBS/ETF/TAPRIO QDISCS
4278 M: Vinicius Costa Gomes <vinicius.gomes@intel.com>
4279 S: Maintained
4280 L: netdev@vger.kernel.org
4281 F: net/sched/sch_cbs.c
4282 F: net/sched/sch_etf.c
4283 F: net/sched/sch_taprio.c
4284
4285 CC2520 IEEE-802.15.4 RADIO DRIVER
4286 M: Varka Bhadram <varkabhadram@gmail.com>
4287 L: linux-wpan@vger.kernel.org
4288 S: Maintained
4289 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4290 F: drivers/net/ieee802154/cc2520.c
4291 F: include/linux/spi/cc2520.h
4292
4293 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4294 M: Gilad Ben-Yossef <gilad@benyossef.com>
4295 L: linux-crypto@vger.kernel.org
4296 S: Supported
4297 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4298 F: drivers/crypto/ccree/
4299
4300 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4301 M: Hadar Gat <hadar.gat@arm.com>
4302 L: linux-crypto@vger.kernel.org
4303 S: Supported
4304 F: drivers/char/hw_random/cctrng.c
4305 F: drivers/char/hw_random/cctrng.h
4306 F: Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4307 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4308
4309 CEC FRAMEWORK
4310 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4311 L: linux-media@vger.kernel.org
4312 S: Supported
4313 W: http://linuxtv.org
4314 T: git git://linuxtv.org/media_tree.git
4315 F: Documentation/ABI/testing/debugfs-cec-error-inj
4316 F: Documentation/devicetree/bindings/media/cec.txt
4317 F: Documentation/driver-api/media/cec-core.rst
4318 F: Documentation/userspace-api/media/cec
4319 F: drivers/media/cec/
4320 F: drivers/media/rc/keymaps/rc-cec.c
4321 F: include/media/cec-notifier.h
4322 F: include/media/cec.h
4323 F: include/uapi/linux/cec-funcs.h
4324 F: include/uapi/linux/cec.h
4325
4326 CEC GPIO DRIVER
4327 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4328 L: linux-media@vger.kernel.org
4329 S: Supported
4330 W: http://linuxtv.org
4331 T: git git://linuxtv.org/media_tree.git
4332 F: Documentation/devicetree/bindings/media/cec-gpio.txt
4333 F: drivers/media/cec/platform/cec-gpio/
4334
4335 CELL BROADBAND ENGINE ARCHITECTURE
4336 M: Arnd Bergmann <arnd@arndb.de>
4337 L: linuxppc-dev@lists.ozlabs.org
4338 S: Supported
4339 W: http://www.ibm.com/developerworks/power/cell/
4340 F: arch/powerpc/include/asm/cell*.h
4341 F: arch/powerpc/include/asm/spu*.h
4342 F: arch/powerpc/include/uapi/asm/spu*.h
4343 F: arch/powerpc/platforms/cell/
4344
4345 CELLWISE CW2015 BATTERY DRIVER
4346 M: Tobias Schrammm <t.schramm@manjaro.org>
4347 S: Maintained
4348 F: Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4349 F: drivers/power/supply/cw2015_battery.c
4350
4351 CEPH COMMON CODE (LIBCEPH)
4352 M: Ilya Dryomov <idryomov@gmail.com>
4353 M: Jeff Layton <jlayton@kernel.org>
4354 L: ceph-devel@vger.kernel.org
4355 S: Supported
4356 W: http://ceph.com/
4357 T: git git://github.com/ceph/ceph-client.git
4358 F: include/linux/ceph/
4359 F: include/linux/crush/
4360 F: net/ceph/
4361
4362 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4363 M: Jeff Layton <jlayton@kernel.org>
4364 M: Ilya Dryomov <idryomov@gmail.com>
4365 L: ceph-devel@vger.kernel.org
4366 S: Supported
4367 W: http://ceph.com/
4368 T: git git://github.com/ceph/ceph-client.git
4369 F: Documentation/filesystems/ceph.rst
4370 F: fs/ceph/
4371
4372 CERTIFICATE HANDLING
4373 M: David Howells <dhowells@redhat.com>
4374 M: David Woodhouse <dwmw2@infradead.org>
4375 L: keyrings@vger.kernel.org
4376 S: Maintained
4377 F: Documentation/admin-guide/module-signing.rst
4378 F: certs/
4379 F: scripts/extract-cert.c
4380 F: scripts/sign-file.c
4381
4382 CFAG12864B LCD DRIVER
4383 M: Miguel Ojeda <ojeda@kernel.org>
4384 S: Maintained
4385 F: drivers/auxdisplay/cfag12864b.c
4386 F: include/linux/cfag12864b.h
4387
4388 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4389 M: Miguel Ojeda <ojeda@kernel.org>
4390 S: Maintained
4391 F: drivers/auxdisplay/cfag12864bfb.c
4392 F: include/linux/cfag12864b.h
4393
4394 CHAR and MISC DRIVERS
4395 M: Arnd Bergmann <arnd@arndb.de>
4396 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4397 S: Supported
4398 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4399 F: drivers/char/
4400 F: drivers/misc/
4401 F: include/linux/miscdevice.h
4402 X: drivers/char/agp/
4403 X: drivers/char/hw_random/
4404 X: drivers/char/ipmi/
4405 X: drivers/char/random.c
4406 X: drivers/char/tpm/
4407
4408 CHECKPATCH
4409 M: Andy Whitcroft <apw@canonical.com>
4410 M: Joe Perches <joe@perches.com>
4411 R: Dwaipayan Ray <dwaipayanray1@gmail.com>
4412 R: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4413 S: Maintained
4414 F: scripts/checkpatch.pl
4415
4416 CHECKPATCH DOCUMENTATION
4417 M: Dwaipayan Ray <dwaipayanray1@gmail.com>
4418 M: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4419 R: Joe Perches <joe@perches.com>
4420 S: Maintained
4421 F: Documentation/dev-tools/checkpatch.rst
4422
4423 CHINESE DOCUMENTATION
4424 M: Alex Shi <alexs@kernel.org>
4425 S: Maintained
4426 F: Documentation/translations/zh_CN/
4427
4428 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4429 M: Peter Chen <peter.chen@kernel.org>
4430 L: linux-usb@vger.kernel.org
4431 S: Maintained
4432 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4433 F: drivers/usb/chipidea/
4434
4435 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4436 M: Hans de Goede <hdegoede@redhat.com>
4437 L: linux-input@vger.kernel.org
4438 S: Maintained
4439 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4440 F: drivers/input/touchscreen/chipone_icn8318.c
4441
4442 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4443 M: Hans de Goede <hdegoede@redhat.com>
4444 L: linux-input@vger.kernel.org
4445 S: Maintained
4446 F: drivers/input/touchscreen/chipone_icn8505.c
4447
4448 CHROME HARDWARE PLATFORM SUPPORT
4449 M: Benson Leung <bleung@chromium.org>
4450 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4451 S: Maintained
4452 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4453 F: drivers/platform/chrome/
4454
4455 CHROMEOS EC CODEC DRIVER
4456 M: Cheng-Yi Chiang <cychiang@chromium.org>
4457 R: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4458 R: Guenter Roeck <groeck@chromium.org>
4459 S: Maintained
4460 F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4461 F: sound/soc/codecs/cros_ec_codec.*
4462
4463 CHROMEOS EC SUBDRIVERS
4464 M: Benson Leung <bleung@chromium.org>
4465 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4466 R: Guenter Roeck <groeck@chromium.org>
4467 S: Maintained
4468 F: drivers/power/supply/cros_usbpd-charger.c
4469 N: cros_ec
4470 N: cros-ec
4471
4472 CHRONTEL CH7322 CEC DRIVER
4473 M: Jeff Chase <jnchase@google.com>
4474 L: linux-media@vger.kernel.org
4475 S: Maintained
4476 T: git git://linuxtv.org/media_tree.git
4477 F: Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4478 F: drivers/media/cec/i2c/ch7322.c
4479
4480 CIRRUS LOGIC AUDIO CODEC DRIVERS
4481 M: James Schulman <james.schulman@cirrus.com>
4482 M: David Rhodes <david.rhodes@cirrus.com>
4483 M: Lucas Tanure <tanureal@opensource.cirrus.com>
4484 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4485 L: patches@opensource.cirrus.com
4486 S: Maintained
4487 F: Documentation/devicetree/bindings/sound/cirrus,cs*
4488 F: sound/pci/hda/cs*
4489 F: sound/soc/codecs/cs*
4490
4491 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4492 M: Hartley Sweeten <hsweeten@visionengravers.com>
4493 L: netdev@vger.kernel.org
4494 S: Maintained
4495 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
4496
4497 CIRRUS LOGIC LOCHNAGAR DRIVER
4498 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4499 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4500 L: patches@opensource.cirrus.com
4501 S: Supported
4502 F: Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4503 F: Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4504 F: Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4505 F: Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4506 F: Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4507 F: Documentation/hwmon/lochnagar.rst
4508 F: drivers/clk/clk-lochnagar.c
4509 F: drivers/hwmon/lochnagar-hwmon.c
4510 F: drivers/mfd/lochnagar-i2c.c
4511 F: drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4512 F: drivers/regulator/lochnagar-regulator.c
4513 F: include/dt-bindings/clk/lochnagar.h
4514 F: include/dt-bindings/pinctrl/lochnagar.h
4515 F: include/linux/mfd/lochnagar*
4516 F: sound/soc/codecs/lochnagar-sc.c
4517
4518 CIRRUS LOGIC MADERA CODEC DRIVERS
4519 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4520 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4521 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4522 L: patches@opensource.cirrus.com
4523 S: Supported
4524 W: https://github.com/CirrusLogic/linux-drivers/wiki
4525 T: git https://github.com/CirrusLogic/linux-drivers.git
4526 F: Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4527 F: Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4528 F: Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4529 F: drivers/gpio/gpio-madera*
4530 F: drivers/irqchip/irq-madera*
4531 F: drivers/mfd/cs47l*
4532 F: drivers/mfd/madera*
4533 F: drivers/pinctrl/cirrus/*
4534 F: include/dt-bindings/sound/madera*
4535 F: include/linux/irqchip/irq-madera*
4536 F: include/linux/mfd/madera/*
4537 F: include/sound/madera*
4538 F: sound/soc/codecs/cs47l*
4539 F: sound/soc/codecs/madera*
4540
4541 CISCO FCOE HBA DRIVER
4542 M: Satish Kharat <satishkh@cisco.com>
4543 M: Sesidhar Baddela <sebaddel@cisco.com>
4544 M: Karan Tilak Kumar <kartilak@cisco.com>
4545 L: linux-scsi@vger.kernel.org
4546 S: Supported
4547 F: drivers/scsi/fnic/
4548
4549 CISCO SCSI HBA DRIVER
4550 M: Karan Tilak Kumar <kartilak@cisco.com>
4551 M: Sesidhar Baddela <sebaddel@cisco.com>
4552 L: linux-scsi@vger.kernel.org
4553 S: Supported
4554 F: drivers/scsi/snic/
4555
4556 CISCO VIC ETHERNET NIC DRIVER
4557 M: Christian Benvenuti <benve@cisco.com>
4558 M: Govindarajulu Varadarajan <_govind@gmx.com>
4559 S: Supported
4560 F: drivers/net/ethernet/cisco/enic/
4561
4562 CISCO VIC LOW LATENCY NIC DRIVER
4563 M: Christian Benvenuti <benve@cisco.com>
4564 M: Nelson Escobar <neescoba@cisco.com>
4565 S: Supported
4566 F: drivers/infiniband/hw/usnic/
4567
4568 CLANG-FORMAT FILE
4569 M: Miguel Ojeda <ojeda@kernel.org>
4570 S: Maintained
4571 F: .clang-format
4572
4573 CLANG/LLVM BUILD SUPPORT
4574 M: Nathan Chancellor <nathan@kernel.org>
4575 M: Nick Desaulniers <ndesaulniers@google.com>
4576 L: llvm@lists.linux.dev
4577 S: Supported
4578 W: https://clangbuiltlinux.github.io/
4579 B: https://github.com/ClangBuiltLinux/linux/issues
4580 C: irc://irc.libera.chat/clangbuiltlinux
4581 F: Documentation/kbuild/llvm.rst
4582 F: include/linux/compiler-clang.h
4583 F: scripts/Makefile.clang
4584 F: scripts/clang-tools/
4585 K: \b(?i:clang|llvm)\b
4586
4587 CLANG CONTROL FLOW INTEGRITY SUPPORT
4588 M: Sami Tolvanen <samitolvanen@google.com>
4589 M: Kees Cook <keescook@chromium.org>
4590 R: Nathan Chancellor <nathan@kernel.org>
4591 R: Nick Desaulniers <ndesaulniers@google.com>
4592 L: llvm@lists.linux.dev
4593 S: Supported
4594 B: https://github.com/ClangBuiltLinux/linux/issues
4595 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4596 F: include/linux/cfi.h
4597 F: kernel/cfi.c
4598
4599 CLEANCACHE API
4600 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4601 L: linux-kernel@vger.kernel.org
4602 S: Maintained
4603 F: include/linux/cleancache.h
4604 F: mm/cleancache.c
4605
4606 CLK API
4607 M: Russell King <linux@armlinux.org.uk>
4608 L: linux-clk@vger.kernel.org
4609 S: Maintained
4610 F: include/linux/clk.h
4611
4612 CLOCKSOURCE, CLOCKEVENT DRIVERS
4613 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4614 M: Thomas Gleixner <tglx@linutronix.de>
4615 L: linux-kernel@vger.kernel.org
4616 S: Supported
4617 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4618 F: Documentation/devicetree/bindings/timer/
4619 F: drivers/clocksource/
4620
4621 CMPC ACPI DRIVER
4622 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4623 M: Daniel Oliveira Nascimento <don@syst.com.br>
4624 L: platform-driver-x86@vger.kernel.org
4625 S: Supported
4626 F: drivers/platform/x86/classmate-laptop.c
4627
4628 COBALT MEDIA DRIVER
4629 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4630 L: linux-media@vger.kernel.org
4631 S: Supported
4632 W: https://linuxtv.org
4633 T: git git://linuxtv.org/media_tree.git
4634 F: drivers/media/pci/cobalt/
4635
4636 COCCINELLE/Semantic Patches (SmPL)
4637 M: Julia Lawall <Julia.Lawall@inria.fr>
4638 M: Gilles Muller <Gilles.Muller@inria.fr>
4639 M: Nicolas Palix <nicolas.palix@imag.fr>
4640 M: Michal Marek <michal.lkml@markovi.net>
4641 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
4642 S: Supported
4643 W: http://coccinelle.lip6.fr/
4644 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4645 F: Documentation/dev-tools/coccinelle.rst
4646 F: scripts/coccicheck
4647 F: scripts/coccinelle/
4648
4649 CODA FILE SYSTEM
4650 M: Jan Harkes <jaharkes@cs.cmu.edu>
4651 M: coda@cs.cmu.edu
4652 L: codalist@coda.cs.cmu.edu
4653 S: Maintained
4654 W: http://www.coda.cs.cmu.edu/
4655 F: Documentation/filesystems/coda.rst
4656 F: fs/coda/
4657 F: include/linux/coda*.h
4658 F: include/uapi/linux/coda*.h
4659
4660 CODA V4L2 MEM2MEM DRIVER
4661 M: Philipp Zabel <p.zabel@pengutronix.de>
4662 L: linux-media@vger.kernel.org
4663 S: Maintained
4664 F: Documentation/devicetree/bindings/media/coda.yaml
4665 F: drivers/media/platform/coda/
4666
4667 CODE OF CONDUCT
4668 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4669 S: Supported
4670 F: Documentation/process/code-of-conduct-interpretation.rst
4671 F: Documentation/process/code-of-conduct.rst
4672
4673 COMEDI DRIVERS
4674 M: Ian Abbott <abbotti@mev.co.uk>
4675 M: H Hartley Sweeten <hsweeten@visionengravers.com>
4676 S: Odd Fixes
4677 F: drivers/comedi/
4678
4679 COMMON CLK FRAMEWORK
4680 M: Michael Turquette <mturquette@baylibre.com>
4681 M: Stephen Boyd <sboyd@kernel.org>
4682 L: linux-clk@vger.kernel.org
4683 S: Maintained
4684 Q: http://patchwork.kernel.org/project/linux-clk/list/
4685 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4686 F: Documentation/devicetree/bindings/clock/
4687 F: drivers/clk/
4688 F: include/linux/clk-pr*
4689 F: include/linux/clk/
4690 F: include/linux/of_clk.h
4691 X: drivers/clk/clkdev.c
4692
4693 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4694 M: Steve French <sfrench@samba.org>
4695 L: linux-cifs@vger.kernel.org
4696 L: samba-technical@lists.samba.org (moderated for non-subscribers)
4697 S: Supported
4698 W: http://linux-cifs.samba.org/
4699 T: git git://git.samba.org/sfrench/cifs-2.6.git
4700 F: Documentation/admin-guide/cifs/
4701 F: fs/cifs/
4702 F: fs/smbfs_common/
4703
4704 COMPACTPCI HOTPLUG CORE
4705 M: Scott Murray <scott@spiteful.org>
4706 L: linux-pci@vger.kernel.org
4707 S: Maintained
4708 F: drivers/pci/hotplug/cpci_hotplug*
4709
4710 COMPACTPCI HOTPLUG GENERIC DRIVER
4711 M: Scott Murray <scott@spiteful.org>
4712 L: linux-pci@vger.kernel.org
4713 S: Maintained
4714 F: drivers/pci/hotplug/cpcihp_generic.c
4715
4716 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4717 M: Scott Murray <scott@spiteful.org>
4718 L: linux-pci@vger.kernel.org
4719 S: Maintained
4720 F: drivers/pci/hotplug/cpcihp_zt5550.*
4721
4722 COMPAL LAPTOP SUPPORT
4723 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4724 L: platform-driver-x86@vger.kernel.org
4725 S: Maintained
4726 F: drivers/platform/x86/compal-laptop.c
4727
4728 COMPILER ATTRIBUTES
4729 M: Miguel Ojeda <ojeda@kernel.org>
4730 R: Nick Desaulniers <ndesaulniers@google.com>
4731 S: Maintained
4732 F: include/linux/compiler_attributes.h
4733
4734 COMPUTE EXPRESS LINK (CXL)
4735 M: Alison Schofield <alison.schofield@intel.com>
4736 M: Vishal Verma <vishal.l.verma@intel.com>
4737 M: Ira Weiny <ira.weiny@intel.com>
4738 M: Ben Widawsky <ben.widawsky@intel.com>
4739 M: Dan Williams <dan.j.williams@intel.com>
4740 L: linux-cxl@vger.kernel.org
4741 S: Maintained
4742 F: drivers/cxl/
4743 F: include/uapi/linux/cxl_mem.h
4744
4745 CONEXANT ACCESSRUNNER USB DRIVER
4746 L: accessrunner-general@lists.sourceforge.net
4747 S: Orphan
4748 W: http://accessrunner.sourceforge.net/
4749 F: drivers/usb/atm/cxacru.c
4750
4751 CONFIGFS
4752 M: Joel Becker <jlbec@evilplan.org>
4753 M: Christoph Hellwig <hch@lst.de>
4754 S: Supported
4755 T: git git://git.infradead.org/users/hch/configfs.git
4756 F: fs/configfs/
4757 F: include/linux/configfs.h
4758 F: samples/configfs/
4759
4760 CONSOLE SUBSYSTEM
4761 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4762 S: Supported
4763 F: drivers/video/console/
4764 F: include/linux/console*
4765
4766 CONTEXT TRACKING
4767 M: Frederic Weisbecker <frederic@kernel.org>
4768 S: Maintained
4769 F: kernel/context_tracking.c
4770 F: include/linux/context_tracking*
4771
4772 CONTROL GROUP (CGROUP)
4773 M: Tejun Heo <tj@kernel.org>
4774 M: Zefan Li <lizefan.x@bytedance.com>
4775 M: Johannes Weiner <hannes@cmpxchg.org>
4776 L: cgroups@vger.kernel.org
4777 S: Maintained
4778 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4779 F: Documentation/admin-guide/cgroup-v1/
4780 F: Documentation/admin-guide/cgroup-v2.rst
4781 F: include/linux/cgroup*
4782 F: kernel/cgroup/
4783
4784 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4785 M: Tejun Heo <tj@kernel.org>
4786 M: Jens Axboe <axboe@kernel.dk>
4787 L: cgroups@vger.kernel.org
4788 L: linux-block@vger.kernel.org
4789 T: git git://git.kernel.dk/linux-block
4790 F: Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4791 F: block/bfq-cgroup.c
4792 F: block/blk-cgroup.c
4793 F: block/blk-iolatency.c
4794 F: block/blk-throttle.c
4795 F: include/linux/blk-cgroup.h
4796
4797 CONTROL GROUP - CPUSET
4798 M: Zefan Li <lizefan.x@bytedance.com>
4799 L: cgroups@vger.kernel.org
4800 S: Maintained
4801 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4802 F: Documentation/admin-guide/cgroup-v1/cpusets.rst
4803 F: include/linux/cpuset.h
4804 F: kernel/cgroup/cpuset.c
4805
4806 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4807 M: Johannes Weiner <hannes@cmpxchg.org>
4808 M: Michal Hocko <mhocko@kernel.org>
4809 M: Vladimir Davydov <vdavydov.dev@gmail.com>
4810 L: cgroups@vger.kernel.org
4811 L: linux-mm@kvack.org
4812 S: Maintained
4813 F: mm/memcontrol.c
4814 F: mm/swap_cgroup.c
4815
4816 CORETEMP HARDWARE MONITORING DRIVER
4817 M: Fenghua Yu <fenghua.yu@intel.com>
4818 L: linux-hwmon@vger.kernel.org
4819 S: Maintained
4820 F: Documentation/hwmon/coretemp.rst
4821 F: drivers/hwmon/coretemp.c
4822
4823 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4824 M: Marius Zachmann <mail@mariuszachmann.de>
4825 L: linux-hwmon@vger.kernel.org
4826 S: Maintained
4827 F: drivers/hwmon/corsair-cpro.c
4828
4829 CORSAIR-PSU HARDWARE MONITOR DRIVER
4830 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
4831 L: linux-hwmon@vger.kernel.org
4832 S: Maintained
4833 F: Documentation/hwmon/corsair-psu.rst
4834 F: drivers/hwmon/corsair-psu.c
4835
4836 COSA/SRP SYNC SERIAL DRIVER
4837 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4838 S: Maintained
4839 W: http://www.fi.muni.cz/~kas/cosa/
4840 F: drivers/net/wan/cosa*
4841
4842 COUNTER SUBSYSTEM
4843 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4844 L: linux-iio@vger.kernel.org
4845 S: Maintained
4846 F: Documentation/ABI/testing/sysfs-bus-counter
4847 F: Documentation/driver-api/generic-counter.rst
4848 F: drivers/counter/
4849 F: include/linux/counter.h
4850 F: include/linux/counter_enum.h
4851
4852 CP2615 I2C DRIVER
4853 M: Bence Csókás <bence98@sch.bme.hu>
4854 S: Maintained
4855 F: drivers/i2c/busses/i2c-cp2615.c
4856
4857 CPMAC ETHERNET DRIVER
4858 M: Florian Fainelli <f.fainelli@gmail.com>
4859 L: netdev@vger.kernel.org
4860 S: Maintained
4861 F: drivers/net/ethernet/ti/cpmac.c
4862
4863 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4864 M: Viresh Kumar <viresh.kumar@linaro.org>
4865 M: Sudeep Holla <sudeep.holla@arm.com>
4866 L: linux-pm@vger.kernel.org
4867 S: Maintained
4868 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4869 F: drivers/cpufreq/vexpress-spc-cpufreq.c
4870
4871 CPU FREQUENCY SCALING FRAMEWORK
4872 M: "Rafael J. Wysocki" <rafael@kernel.org>
4873 M: Viresh Kumar <viresh.kumar@linaro.org>
4874 L: linux-pm@vger.kernel.org
4875 S: Maintained
4876 B: https://bugzilla.kernel.org
4877 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4878 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4879 F: Documentation/admin-guide/pm/cpufreq.rst
4880 F: Documentation/admin-guide/pm/intel_pstate.rst
4881 F: Documentation/cpu-freq/
4882 F: Documentation/devicetree/bindings/cpufreq/
4883 F: drivers/cpufreq/
4884 F: include/linux/cpufreq.h
4885 F: include/linux/sched/cpufreq.h
4886 F: kernel/sched/cpufreq*.c
4887 F: tools/testing/selftests/cpufreq/
4888
4889 CPU IDLE TIME MANAGEMENT FRAMEWORK
4890 M: "Rafael J. Wysocki" <rafael@kernel.org>
4891 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4892 L: linux-pm@vger.kernel.org
4893 S: Maintained
4894 B: https://bugzilla.kernel.org
4895 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4896 F: Documentation/admin-guide/pm/cpuidle.rst
4897 F: Documentation/driver-api/pm/cpuidle.rst
4898 F: drivers/cpuidle/
4899 F: include/linux/cpuidle.h
4900
4901 CPU POWER MONITORING SUBSYSTEM
4902 M: Thomas Renninger <trenn@suse.com>
4903 M: Shuah Khan <shuah@kernel.org>
4904 M: Shuah Khan <skhan@linuxfoundation.org>
4905 L: linux-pm@vger.kernel.org
4906 S: Maintained
4907 F: tools/power/cpupower/
4908
4909 CPUID/MSR DRIVER
4910 M: "H. Peter Anvin" <hpa@zytor.com>
4911 S: Maintained
4912 F: arch/x86/kernel/cpuid.c
4913 F: arch/x86/kernel/msr.c
4914
4915 CPUIDLE DRIVER - ARM BIG LITTLE
4916 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4917 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4918 L: linux-pm@vger.kernel.org
4919 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4920 S: Maintained
4921 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4922 F: drivers/cpuidle/cpuidle-big_little.c
4923
4924 CPUIDLE DRIVER - ARM EXYNOS
4925 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4926 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4927 M: Kukjin Kim <kgene@kernel.org>
4928 L: linux-pm@vger.kernel.org
4929 L: linux-samsung-soc@vger.kernel.org
4930 S: Supported
4931 F: arch/arm/mach-exynos/pm.c
4932 F: drivers/cpuidle/cpuidle-exynos.c
4933 F: include/linux/platform_data/cpuidle-exynos.h
4934
4935 CPUIDLE DRIVER - ARM PSCI
4936 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4937 M: Sudeep Holla <sudeep.holla@arm.com>
4938 L: linux-pm@vger.kernel.org
4939 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4940 S: Supported
4941 F: drivers/cpuidle/cpuidle-psci.c
4942
4943 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4944 M: Ulf Hansson <ulf.hansson@linaro.org>
4945 L: linux-pm@vger.kernel.org
4946 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4947 S: Supported
4948 F: drivers/cpuidle/cpuidle-psci.h
4949 F: drivers/cpuidle/cpuidle-psci-domain.c
4950
4951 CRAMFS FILESYSTEM
4952 M: Nicolas Pitre <nico@fluxnic.net>
4953 S: Maintained
4954 F: Documentation/filesystems/cramfs.rst
4955 F: fs/cramfs/
4956
4957 CREATIVE SB0540
4958 M: Bastien Nocera <hadess@hadess.net>
4959 L: linux-input@vger.kernel.org
4960 S: Maintained
4961 F: drivers/hid/hid-creative-sb0540.c
4962
4963 CRYPTO API
4964 M: Herbert Xu <herbert@gondor.apana.org.au>
4965 M: "David S. Miller" <davem@davemloft.net>
4966 L: linux-crypto@vger.kernel.org
4967 S: Maintained
4968 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4969 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4970 F: Documentation/crypto/
4971 F: Documentation/devicetree/bindings/crypto/
4972 F: arch/*/crypto/
4973 F: crypto/
4974 F: drivers/crypto/
4975 F: include/crypto/
4976 F: include/linux/crypto*
4977 F: lib/crypto/
4978
4979 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4980 M: Neil Horman <nhorman@tuxdriver.com>
4981 L: linux-crypto@vger.kernel.org
4982 S: Maintained
4983 F: crypto/ansi_cprng.c
4984 F: crypto/rng.c
4985
4986 CS3308 MEDIA DRIVER
4987 M: Hans Verkuil <hverkuil@xs4all.nl>
4988 L: linux-media@vger.kernel.org
4989 S: Odd Fixes
4990 W: http://linuxtv.org
4991 T: git git://linuxtv.org/media_tree.git
4992 F: drivers/media/i2c/cs3308.c
4993
4994 CS5535 Audio ALSA driver
4995 M: Jaya Kumar <jayakumar.alsa@gmail.com>
4996 S: Maintained
4997 F: sound/pci/cs5535audio/
4998
4999 CSI DRIVERS FOR ALLWINNER V3s
5000 M: Yong Deng <yong.deng@magewell.com>
5001 L: linux-media@vger.kernel.org
5002 S: Maintained
5003 T: git git://linuxtv.org/media_tree.git
5004 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5005 F: drivers/media/platform/sunxi/sun6i-csi/
5006
5007 CW1200 WLAN driver
5008 M: Solomon Peachy <pizza@shaftnet.org>
5009 S: Maintained
5010 F: drivers/net/wireless/st/cw1200/
5011
5012 CX18 VIDEO4LINUX DRIVER
5013 M: Andy Walls <awalls@md.metrocast.net>
5014 L: linux-media@vger.kernel.org
5015 S: Maintained
5016 W: https://linuxtv.org
5017 T: git git://linuxtv.org/media_tree.git
5018 F: drivers/media/pci/cx18/
5019 F: include/uapi/linux/ivtv*
5020
5021 CX2341X MPEG ENCODER HELPER MODULE
5022 M: Hans Verkuil <hverkuil@xs4all.nl>
5023 L: linux-media@vger.kernel.org
5024 S: Maintained
5025 W: https://linuxtv.org
5026 T: git git://linuxtv.org/media_tree.git
5027 F: drivers/media/common/cx2341x*
5028 F: include/media/drv-intf/cx2341x.h
5029
5030 CX24120 MEDIA DRIVER
5031 M: Jemma Denson <jdenson@gmail.com>
5032 M: Patrick Boettcher <patrick.boettcher@posteo.de>
5033 L: linux-media@vger.kernel.org
5034 S: Maintained
5035 W: https://linuxtv.org
5036 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5037 F: drivers/media/dvb-frontends/cx24120*
5038
5039 CX88 VIDEO4LINUX DRIVER
5040 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5041 L: linux-media@vger.kernel.org
5042 S: Odd fixes
5043 W: https://linuxtv.org
5044 T: git git://linuxtv.org/media_tree.git
5045 F: Documentation/driver-api/media/drivers/cx88*
5046 F: drivers/media/pci/cx88/
5047
5048 CXD2820R MEDIA DRIVER
5049 M: Antti Palosaari <crope@iki.fi>
5050 L: linux-media@vger.kernel.org
5051 S: Maintained
5052 W: https://linuxtv.org
5053 W: http://palosaari.fi/linux/
5054 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5055 T: git git://linuxtv.org/anttip/media_tree.git
5056 F: drivers/media/dvb-frontends/cxd2820r*
5057
5058 CXGB3 ETHERNET DRIVER (CXGB3)
5059 M: Raju Rangoju <rajur@chelsio.com>
5060 L: netdev@vger.kernel.org
5061 S: Supported
5062 W: http://www.chelsio.com
5063 F: drivers/net/ethernet/chelsio/cxgb3/
5064
5065 CXGB3 ISCSI DRIVER (CXGB3I)
5066 M: Karen Xie <kxie@chelsio.com>
5067 L: linux-scsi@vger.kernel.org
5068 S: Supported
5069 W: http://www.chelsio.com
5070 F: drivers/scsi/cxgbi/cxgb3i
5071
5072 CXGB4 CRYPTO DRIVER (chcr)
5073 M: Ayush Sawal <ayush.sawal@chelsio.com>
5074 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5075 M: Rohit Maheshwari <rohitm@chelsio.com>
5076 L: linux-crypto@vger.kernel.org
5077 S: Supported
5078 W: http://www.chelsio.com
5079 F: drivers/crypto/chelsio
5080
5081 CXGB4 INLINE CRYPTO DRIVER
5082 M: Ayush Sawal <ayush.sawal@chelsio.com>
5083 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5084 M: Rohit Maheshwari <rohitm@chelsio.com>
5085 L: netdev@vger.kernel.org
5086 S: Supported
5087 W: http://www.chelsio.com
5088 F: drivers/net/ethernet/chelsio/inline_crypto/
5089
5090 CXGB4 ETHERNET DRIVER (CXGB4)
5091 M: Raju Rangoju <rajur@chelsio.com>
5092 L: netdev@vger.kernel.org
5093 S: Supported
5094 W: http://www.chelsio.com
5095 F: drivers/net/ethernet/chelsio/cxgb4/
5096
5097 CXGB4 ISCSI DRIVER (CXGB4I)
5098 M: Karen Xie <kxie@chelsio.com>
5099 L: linux-scsi@vger.kernel.org
5100 S: Supported
5101 W: http://www.chelsio.com
5102 F: drivers/scsi/cxgbi/cxgb4i
5103
5104 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5105 M: Potnuri Bharat Teja <bharat@chelsio.com>
5106 L: linux-rdma@vger.kernel.org
5107 S: Supported
5108 W: http://www.openfabrics.org
5109 F: drivers/infiniband/hw/cxgb4/
5110 F: include/uapi/rdma/cxgb4-abi.h
5111
5112 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5113 M: Raju Rangoju <rajur@chelsio.com>
5114 L: netdev@vger.kernel.org
5115 S: Supported
5116 W: http://www.chelsio.com
5117 F: drivers/net/ethernet/chelsio/cxgb4vf/
5118
5119 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5120 M: Frederic Barrat <fbarrat@linux.ibm.com>
5121 M: Andrew Donnellan <ajd@linux.ibm.com>
5122 L: linuxppc-dev@lists.ozlabs.org
5123 S: Supported
5124 F: Documentation/ABI/testing/sysfs-class-cxl
5125 F: Documentation/powerpc/cxl.rst
5126 F: arch/powerpc/platforms/powernv/pci-cxl.c
5127 F: drivers/misc/cxl/
5128 F: include/misc/cxl*
5129 F: include/uapi/misc/cxl.h
5130
5131 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5132 M: Manoj N. Kumar <manoj@linux.ibm.com>
5133 M: Matthew R. Ochs <mrochs@linux.ibm.com>
5134 M: Uma Krishnan <ukrishn@linux.ibm.com>
5135 L: linux-scsi@vger.kernel.org
5136 S: Supported
5137 F: Documentation/powerpc/cxlflash.rst
5138 F: drivers/scsi/cxlflash/
5139 F: include/uapi/scsi/cxlflash_ioctl.h
5140
5141 CYBERPRO FB DRIVER
5142 M: Russell King <linux@armlinux.org.uk>
5143 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5144 S: Maintained
5145 W: http://www.armlinux.org.uk/
5146 F: drivers/video/fbdev/cyber2000fb.*
5147
5148 CYCLADES PC300 DRIVER
5149 S: Orphan
5150 F: drivers/net/wan/pc300*
5151
5152 CYPRESS_FIRMWARE MEDIA DRIVER
5153 M: Antti Palosaari <crope@iki.fi>
5154 L: linux-media@vger.kernel.org
5155 S: Maintained
5156 W: https://linuxtv.org
5157 W: http://palosaari.fi/linux/
5158 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5159 T: git git://linuxtv.org/anttip/media_tree.git
5160 F: drivers/media/common/cypress_firmware*
5161
5162 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5163 M: Linus Walleij <linus.walleij@linaro.org>
5164 L: linux-input@vger.kernel.org
5165 S: Maintained
5166 F: drivers/input/touchscreen/cy8ctma140.c
5167
5168 CYTTSP TOUCHSCREEN DRIVER
5169 M: Linus Walleij <linus.walleij@linaro.org>
5170 L: linux-input@vger.kernel.org
5171 S: Maintained
5172 F: drivers/input/touchscreen/cyttsp*
5173
5174 D-LINK DIR-685 TOUCHKEYS DRIVER
5175 M: Linus Walleij <linus.walleij@linaro.org>
5176 L: linux-input@vger.kernel.org
5177 S: Supported
5178 F: drivers/input/keyboard/dlink-dir685-touchkeys.c
5179
5180 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5181 M: Joshua Kinard <kumba@gentoo.org>
5182 S: Maintained
5183 F: drivers/rtc/rtc-ds1685.c
5184 F: include/linux/rtc/ds1685.h
5185
5186 DAMA SLAVE for AX.25
5187 M: Joerg Reuter <jreuter@yaina.de>
5188 L: linux-hams@vger.kernel.org
5189 S: Maintained
5190 W: http://yaina.de/jreuter/
5191 W: http://www.qsl.net/dl1bke/
5192 F: net/ax25/af_ax25.c
5193 F: net/ax25/ax25_dev.c
5194 F: net/ax25/ax25_ds_*
5195 F: net/ax25/ax25_in.c
5196 F: net/ax25/ax25_out.c
5197 F: net/ax25/ax25_timer.c
5198 F: net/ax25/sysctl_net_ax25.c
5199
5200 DATA ACCESS MONITOR
5201 M: SeongJae Park <sjpark@amazon.de>
5202 L: linux-mm@kvack.org
5203 S: Maintained
5204 F: Documentation/admin-guide/mm/damon/
5205 F: Documentation/vm/damon/
5206 F: include/linux/damon.h
5207 F: include/trace/events/damon.h
5208 F: mm/damon/
5209 F: tools/testing/selftests/damon/
5210
5211 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5212 L: netdev@vger.kernel.org
5213 S: Orphan
5214 F: Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5215 F: drivers/net/ethernet/dec/tulip/dmfe.c
5216
5217 DC390/AM53C974 SCSI driver
5218 M: Hannes Reinecke <hare@suse.com>
5219 L: linux-scsi@vger.kernel.org
5220 S: Maintained
5221 F: drivers/scsi/am53c974.c
5222
5223 DC395x SCSI driver
5224 M: Oliver Neukum <oliver@neukum.org>
5225 M: Ali Akcaagac <aliakc@web.de>
5226 M: Jamie Lenehan <lenehan@twibble.org>
5227 L: dc395x@twibble.org
5228 S: Maintained
5229 W: http://twibble.org/dist/dc395x/
5230 W: http://lists.twibble.org/mailman/listinfo/dc395x/
5231 F: Documentation/scsi/dc395x.rst
5232 F: drivers/scsi/dc395x.*
5233
5234 DCCP PROTOCOL
5235 L: dccp@vger.kernel.org
5236 S: Orphan
5237 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5238 F: include/linux/dccp.h
5239 F: include/linux/tfrc.h
5240 F: include/uapi/linux/dccp.h
5241 F: net/dccp/
5242
5243 DECnet NETWORK LAYER
5244 L: linux-decnet-user@lists.sourceforge.net
5245 S: Orphan
5246 W: http://linux-decnet.sourceforge.net
5247 F: Documentation/networking/decnet.rst
5248 F: net/decnet/
5249
5250 DECSTATION PLATFORM SUPPORT
5251 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5252 L: linux-mips@vger.kernel.org
5253 S: Maintained
5254 W: http://www.linux-mips.org/wiki/DECstation
5255 F: arch/mips/dec/
5256 F: arch/mips/include/asm/dec/
5257 F: arch/mips/include/asm/mach-dec/
5258
5259 DEFXX FDDI NETWORK DRIVER
5260 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5261 S: Maintained
5262 F: drivers/net/fddi/defxx.*
5263
5264 DEFZA FDDI NETWORK DRIVER
5265 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5266 S: Maintained
5267 F: drivers/net/fddi/defza.*
5268
5269 DEINTERLACE DRIVERS FOR ALLWINNER H3
5270 M: Jernej Skrabec <jernej.skrabec@gmail.com>
5271 L: linux-media@vger.kernel.org
5272 S: Maintained
5273 T: git git://linuxtv.org/media_tree.git
5274 F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5275 F: drivers/media/platform/sunxi/sun8i-di/
5276
5277 DELL LAPTOP DRIVER
5278 M: Matthew Garrett <mjg59@srcf.ucam.org>
5279 M: Pali Rohár <pali@kernel.org>
5280 L: platform-driver-x86@vger.kernel.org
5281 S: Maintained
5282 F: drivers/platform/x86/dell/dell-laptop.c
5283
5284 DELL LAPTOP FREEFALL DRIVER
5285 M: Pali Rohár <pali@kernel.org>
5286 S: Maintained
5287 F: drivers/platform/x86/dell/dell-smo8800.c
5288
5289 DELL LAPTOP RBTN DRIVER
5290 M: Pali Rohár <pali@kernel.org>
5291 S: Maintained
5292 F: drivers/platform/x86/dell/dell-rbtn.*
5293
5294 DELL LAPTOP SMM DRIVER
5295 M: Pali Rohár <pali@kernel.org>
5296 S: Maintained
5297 F: drivers/hwmon/dell-smm-hwmon.c
5298 F: include/uapi/linux/i8k.h
5299
5300 DELL REMOTE BIOS UPDATE DRIVER
5301 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5302 L: platform-driver-x86@vger.kernel.org
5303 S: Maintained
5304 F: drivers/platform/x86/dell/dell_rbu.c
5305
5306 DELL SMBIOS DRIVER
5307 M: Pali Rohár <pali@kernel.org>
5308 L: Dell.Client.Kernel@dell.com
5309 L: platform-driver-x86@vger.kernel.org
5310 S: Maintained
5311 F: drivers/platform/x86/dell/dell-smbios.*
5312
5313 DELL SMBIOS SMM DRIVER
5314 L: Dell.Client.Kernel@dell.com
5315 L: platform-driver-x86@vger.kernel.org
5316 S: Maintained
5317 F: drivers/platform/x86/dell/dell-smbios-smm.c
5318
5319 DELL SMBIOS WMI DRIVER
5320 L: Dell.Client.Kernel@dell.com
5321 L: platform-driver-x86@vger.kernel.org
5322 S: Maintained
5323 F: drivers/platform/x86/dell/dell-smbios-wmi.c
5324 F: tools/wmi/dell-smbios-example.c
5325
5326 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5327 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5328 L: platform-driver-x86@vger.kernel.org
5329 S: Maintained
5330 F: Documentation/driver-api/dcdbas.rst
5331 F: drivers/platform/x86/dell/dcdbas.*
5332
5333 DELL WMI DESCRIPTOR DRIVER
5334 L: Dell.Client.Kernel@dell.com
5335 S: Maintained
5336 F: drivers/platform/x86/dell/dell-wmi-descriptor.c
5337
5338 DELL WMI SYSMAN DRIVER
5339 M: Divya Bharathi <divya.bharathi@dell.com>
5340 M: Prasanth Ksr <prasanth.ksr@dell.com>
5341 L: Dell.Client.Kernel@dell.com
5342 L: platform-driver-x86@vger.kernel.org
5343 S: Maintained
5344 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
5345 F: drivers/platform/x86/dell/dell-wmi-sysman/
5346
5347 DELL WMI NOTIFICATIONS DRIVER
5348 M: Matthew Garrett <mjg59@srcf.ucam.org>
5349 M: Pali Rohár <pali@kernel.org>
5350 S: Maintained
5351 F: drivers/platform/x86/dell/dell-wmi-base.c
5352
5353 DELL WMI HARDWARE PRIVACY SUPPORT
5354 M: Perry Yuan <Perry.Yuan@dell.com>
5355 L: Dell.Client.Kernel@dell.com
5356 L: platform-driver-x86@vger.kernel.org
5357 S: Maintained
5358 F: drivers/platform/x86/dell/dell-wmi-privacy.c
5359
5360 DELTA ST MEDIA DRIVER
5361 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
5362 L: linux-media@vger.kernel.org
5363 S: Supported
5364 W: https://linuxtv.org
5365 T: git git://linuxtv.org/media_tree.git
5366 F: drivers/media/platform/sti/delta
5367
5368 DELTA DPS920AB PSU DRIVER
5369 M: Robert Marko <robert.marko@sartura.hr>
5370 L: linux-hwmon@vger.kernel.org
5371 S: Maintained
5372 F: Documentation/hwmon/dps920ab.rst
5373 F: drivers/hwmon/pmbus/dps920ab.c
5374
5375 DENALI NAND DRIVER
5376 L: linux-mtd@lists.infradead.org
5377 S: Orphan
5378 F: drivers/mtd/nand/raw/denali*
5379
5380 DESIGNWARE EDMA CORE IP DRIVER
5381 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5382 L: dmaengine@vger.kernel.org
5383 S: Maintained
5384 F: drivers/dma/dw-edma/
5385 F: include/linux/dma/edma.h
5386
5387 DESIGNWARE XDATA IP DRIVER
5388 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5389 L: linux-pci@vger.kernel.org
5390 S: Maintained
5391 F: Documentation/misc-devices/dw-xdata-pcie.rst
5392 F: drivers/misc/dw-xdata-pcie.c
5393
5394 DESIGNWARE USB2 DRD IP DRIVER
5395 M: Minas Harutyunyan <hminas@synopsys.com>
5396 L: linux-usb@vger.kernel.org
5397 S: Maintained
5398 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5399 F: drivers/usb/dwc2/
5400
5401 DESIGNWARE USB3 DRD IP DRIVER
5402 M: Felipe Balbi <balbi@kernel.org>
5403 L: linux-usb@vger.kernel.org
5404 S: Maintained
5405 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5406 F: drivers/usb/dwc3/
5407
5408 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5409 M: Andreas Klinger <ak@it-klinger.de>
5410 L: linux-iio@vger.kernel.org
5411 S: Maintained
5412 F: Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5413 F: drivers/iio/proximity/srf*.c
5414
5415 DEVICE COREDUMP (DEV_COREDUMP)
5416 M: Johannes Berg <johannes@sipsolutions.net>
5417 L: linux-kernel@vger.kernel.org
5418 S: Maintained
5419 F: drivers/base/devcoredump.c
5420 F: include/linux/devcoredump.h
5421
5422 DEVICE DEPENDENCY HELPER SCRIPT
5423 M: Saravana Kannan <saravanak@google.com>
5424 L: linux-kernel@vger.kernel.org
5425 S: Maintained
5426 F: scripts/dev-needs.sh
5427
5428 DEVICE DIRECT ACCESS (DAX)
5429 M: Dan Williams <dan.j.williams@intel.com>
5430 M: Vishal Verma <vishal.l.verma@intel.com>
5431 M: Dave Jiang <dave.jiang@intel.com>
5432 L: nvdimm@lists.linux.dev
5433 S: Supported
5434 F: drivers/dax/
5435
5436 DEVICE FREQUENCY (DEVFREQ)
5437 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5438 M: Kyungmin Park <kyungmin.park@samsung.com>
5439 M: Chanwoo Choi <cw00.choi@samsung.com>
5440 L: linux-pm@vger.kernel.org
5441 S: Maintained
5442 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5443 F: Documentation/devicetree/bindings/devfreq/
5444 F: drivers/devfreq/
5445 F: include/linux/devfreq.h
5446 F: include/trace/events/devfreq.h
5447
5448 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5449 M: Chanwoo Choi <cw00.choi@samsung.com>
5450 L: linux-pm@vger.kernel.org
5451 S: Supported
5452 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5453 F: Documentation/devicetree/bindings/devfreq/event/
5454 F: drivers/devfreq/devfreq-event.c
5455 F: drivers/devfreq/event/
5456 F: include/dt-bindings/pmu/exynos_ppmu.h
5457 F: include/linux/devfreq-event.h
5458
5459 DEVICE NUMBER REGISTRY
5460 M: Torben Mathiasen <device@lanana.org>
5461 S: Maintained
5462 W: http://lanana.org/docs/device-list/index.html
5463
5464 DEVICE RESOURCE MANAGEMENT HELPERS
5465 M: Hans de Goede <hdegoede@redhat.com>
5466 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5467 S: Maintained
5468 F: include/linux/devm-helpers.h
5469
5470 DEVICE-MAPPER (LVM)
5471 M: Alasdair Kergon <agk@redhat.com>
5472 M: Mike Snitzer <snitzer@redhat.com>
5473 M: dm-devel@redhat.com
5474 L: dm-devel@redhat.com
5475 S: Maintained
5476 W: http://sources.redhat.com/dm
5477 Q: http://patchwork.kernel.org/project/dm-devel/list/
5478 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5479 T: quilt http://people.redhat.com/agk/patches/linux/editing/
5480 F: Documentation/admin-guide/device-mapper/
5481 F: drivers/md/Kconfig
5482 F: drivers/md/Makefile
5483 F: drivers/md/dm*
5484 F: drivers/md/persistent-data/
5485 F: include/linux/device-mapper.h
5486 F: include/linux/dm-*.h
5487 F: include/uapi/linux/dm-*.h
5488
5489 DEVLINK
5490 M: Jiri Pirko <jiri@nvidia.com>
5491 L: netdev@vger.kernel.org
5492 S: Supported
5493 F: Documentation/networking/devlink
5494 F: include/net/devlink.h
5495 F: include/uapi/linux/devlink.h
5496 F: net/core/devlink.c
5497
5498 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5499 M: Christoph Niedermaier <cniedermaier@dh-electronics.com>
5500 L: kernel@dh-electronics.com
5501 S: Maintained
5502 F: arch/arm/boot/dts/imx6*-dhcom-*
5503
5504 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5505 M: Marek Vasut <marex@denx.de>
5506 L: kernel@dh-electronics.com
5507 S: Maintained
5508 F: arch/arm/boot/dts/stm32mp1*-dhcom-*
5509 F: arch/arm/boot/dts/stm32mp1*-dhcor-*
5510
5511 DIALOG SEMICONDUCTOR DRIVERS
5512 M: Support Opensource <support.opensource@diasemi.com>
5513 S: Supported
5514 W: http://www.dialog-semiconductor.com/products
5515 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
5516 F: Documentation/devicetree/bindings/input/dlg,da72??.txt
5517 F: Documentation/devicetree/bindings/mfd/da90*.txt
5518 F: Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5519 F: Documentation/devicetree/bindings/regulator/da92*.txt
5520 F: Documentation/devicetree/bindings/regulator/slg51000.txt
5521 F: Documentation/devicetree/bindings/sound/da[79]*.txt
5522 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5523 F: Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5524 F: Documentation/hwmon/da90??.rst
5525 F: drivers/gpio/gpio-da90??.c
5526 F: drivers/hwmon/da90??-hwmon.c
5527 F: drivers/iio/adc/da91??-*.c
5528 F: drivers/input/misc/da72??.[ch]
5529 F: drivers/input/misc/da90??_onkey.c
5530 F: drivers/input/touchscreen/da9052_tsi.c
5531 F: drivers/leds/leds-da90??.c
5532 F: drivers/mfd/da903x.c
5533 F: drivers/mfd/da90??-*.c
5534 F: drivers/mfd/da91??-*.c
5535 F: drivers/pinctrl/pinctrl-da90??.c
5536 F: drivers/power/supply/da9052-battery.c
5537 F: drivers/power/supply/da91??-*.c
5538 F: drivers/regulator/da9???-regulator.[ch]
5539 F: drivers/regulator/slg51000-regulator.[ch]
5540 F: drivers/rtc/rtc-da90??.c
5541 F: drivers/thermal/da90??-thermal.c
5542 F: drivers/video/backlight/da90??_bl.c
5543 F: drivers/watchdog/da90??_wdt.c
5544 F: include/dt-bindings/regulator/dlg,da9*-regulator.h
5545 F: include/linux/mfd/da903x.h
5546 F: include/linux/mfd/da9052/
5547 F: include/linux/mfd/da9055/
5548 F: include/linux/mfd/da9062/
5549 F: include/linux/mfd/da9063/
5550 F: include/linux/mfd/da9150/
5551 F: include/linux/regulator/da9211.h
5552 F: include/sound/da[79]*.h
5553 F: sound/soc/codecs/da[79]*.[ch]
5554
5555 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5556 M: William Breathitt Gray <vilhelm.gray@gmail.com>
5557 L: linux-gpio@vger.kernel.org
5558 S: Maintained
5559 F: drivers/gpio/gpio-gpio-mm.c
5560
5561 DIOLAN U2C-12 I2C DRIVER
5562 M: Guenter Roeck <linux@roeck-us.net>
5563 L: linux-i2c@vger.kernel.org
5564 S: Maintained
5565 F: drivers/i2c/busses/i2c-diolan-u2c.c
5566
5567 DIRECTORY NOTIFICATION (DNOTIFY)
5568 M: Jan Kara <jack@suse.cz>
5569 R: Amir Goldstein <amir73il@gmail.com>
5570 L: linux-fsdevel@vger.kernel.org
5571 S: Maintained
5572 F: Documentation/filesystems/dnotify.rst
5573 F: fs/notify/dnotify/
5574 F: include/linux/dnotify.h
5575
5576 DISK GEOMETRY AND PARTITION HANDLING
5577 M: Andries Brouwer <aeb@cwi.nl>
5578 S: Maintained
5579 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5580 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5581 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5582
5583 DISKQUOTA
5584 M: Jan Kara <jack@suse.com>
5585 S: Maintained
5586 F: Documentation/filesystems/quota.rst
5587 F: fs/quota/
5588 F: include/linux/quota*.h
5589 F: include/uapi/linux/quota*.h
5590
5591 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5592 M: Bernie Thompson <bernie@plugable.com>
5593 L: linux-fbdev@vger.kernel.org
5594 S: Maintained
5595 W: http://plugable.com/category/projects/udlfb/
5596 F: Documentation/fb/udlfb.rst
5597 F: drivers/video/fbdev/udlfb.c
5598 F: include/video/udlfb.h
5599
5600 DISTRIBUTED LOCK MANAGER (DLM)
5601 M: Christine Caulfield <ccaulfie@redhat.com>
5602 M: David Teigland <teigland@redhat.com>
5603 L: cluster-devel@redhat.com
5604 S: Supported
5605 W: http://sources.redhat.com/cluster/
5606 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5607 F: fs/dlm/
5608
5609 DMA BUFFER SHARING FRAMEWORK
5610 M: Sumit Semwal <sumit.semwal@linaro.org>
5611 M: Christian König <christian.koenig@amd.com>
5612 L: linux-media@vger.kernel.org
5613 L: dri-devel@lists.freedesktop.org
5614 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5615 S: Maintained
5616 T: git git://anongit.freedesktop.org/drm/drm-misc
5617 F: Documentation/driver-api/dma-buf.rst
5618 F: drivers/dma-buf/
5619 F: include/linux/*fence.h
5620 F: include/linux/dma-buf*
5621 F: include/linux/dma-resv.h
5622 K: \bdma_(?:buf|fence|resv)\b
5623
5624 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5625 M: Vinod Koul <vkoul@kernel.org>
5626 L: dmaengine@vger.kernel.org
5627 S: Maintained
5628 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5629 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5630 F: Documentation/devicetree/bindings/dma/
5631 F: Documentation/driver-api/dmaengine/
5632 F: drivers/dma/
5633 F: include/linux/dma/
5634 F: include/linux/dmaengine.h
5635 F: include/linux/of_dma.h
5636
5637 DMA MAPPING HELPERS
5638 M: Christoph Hellwig <hch@lst.de>
5639 M: Marek Szyprowski <m.szyprowski@samsung.com>
5640 R: Robin Murphy <robin.murphy@arm.com>
5641 L: iommu@lists.linux-foundation.org
5642 S: Supported
5643 W: http://git.infradead.org/users/hch/dma-mapping.git
5644 T: git git://git.infradead.org/users/hch/dma-mapping.git
5645 F: include/asm-generic/dma-mapping.h
5646 F: include/linux/dma-direct.h
5647 F: include/linux/dma-mapping.h
5648 F: include/linux/dma-map-ops.h
5649 F: kernel/dma/
5650
5651 DMA MAPPING BENCHMARK
5652 M: Barry Song <song.bao.hua@hisilicon.com>
5653 L: iommu@lists.linux-foundation.org
5654 F: kernel/dma/map_benchmark.c
5655 F: tools/testing/selftests/dma/
5656
5657 DMA-BUF HEAPS FRAMEWORK
5658 M: Sumit Semwal <sumit.semwal@linaro.org>
5659 R: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5660 R: Liam Mark <lmark@codeaurora.org>
5661 R: Laura Abbott <labbott@redhat.com>
5662 R: Brian Starkey <Brian.Starkey@arm.com>
5663 R: John Stultz <john.stultz@linaro.org>
5664 L: linux-media@vger.kernel.org
5665 L: dri-devel@lists.freedesktop.org
5666 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5667 S: Maintained
5668 T: git git://anongit.freedesktop.org/drm/drm-misc
5669 F: drivers/dma-buf/dma-heap.c
5670 F: drivers/dma-buf/heaps/*
5671 F: include/linux/dma-heap.h
5672 F: include/uapi/linux/dma-heap.h
5673
5674 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5675 M: Lukasz Luba <lukasz.luba@arm.com>
5676 L: linux-pm@vger.kernel.org
5677 L: linux-samsung-soc@vger.kernel.org
5678 S: Maintained
5679 F: Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5680 F: drivers/memory/samsung/exynos5422-dmc.c
5681
5682 DME1737 HARDWARE MONITOR DRIVER
5683 M: Juerg Haefliger <juergh@gmail.com>
5684 L: linux-hwmon@vger.kernel.org
5685 S: Maintained
5686 F: Documentation/hwmon/dme1737.rst
5687 F: drivers/hwmon/dme1737.c
5688
5689 DMI/SMBIOS SUPPORT
5690 M: Jean Delvare <jdelvare@suse.com>
5691 S: Maintained
5692 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5693 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
5694 F: drivers/firmware/dmi-id.c
5695 F: drivers/firmware/dmi_scan.c
5696 F: include/linux/dmi.h
5697
5698 DOCUMENTATION
5699 M: Jonathan Corbet <corbet@lwn.net>
5700 L: linux-doc@vger.kernel.org
5701 S: Maintained
5702 P: Documentation/doc-guide/maintainer-profile.rst
5703 T: git git://git.lwn.net/linux.git docs-next
5704 F: Documentation/
5705 F: scripts/documentation-file-ref-check
5706 F: scripts/kernel-doc
5707 F: scripts/sphinx-pre-install
5708 X: Documentation/ABI/
5709 X: Documentation/admin-guide/media/
5710 X: Documentation/devicetree/
5711 X: Documentation/driver-api/media/
5712 X: Documentation/firmware-guide/acpi/
5713 X: Documentation/i2c/
5714 X: Documentation/power/
5715 X: Documentation/spi/
5716 X: Documentation/userspace-api/media/
5717
5718 DOCUMENTATION REPORTING ISSUES
5719 M: Thorsten Leemhuis <linux@leemhuis.info>
5720 L: linux-doc@vger.kernel.org
5721 S: Maintained
5722 F: Documentation/admin-guide/reporting-issues.rst
5723
5724 DOCUMENTATION SCRIPTS
5725 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5726 L: linux-doc@vger.kernel.org
5727 S: Maintained
5728 F: Documentation/sphinx/parse-headers.pl
5729 F: scripts/documentation-file-ref-check
5730 F: scripts/sphinx-pre-install
5731
5732 DOCUMENTATION/ITALIAN
5733 M: Federico Vaga <federico.vaga@vaga.pv.it>
5734 L: linux-doc@vger.kernel.org
5735 S: Maintained
5736 F: Documentation/translations/it_IT
5737
5738 DONGWOON DW9714 LENS VOICE COIL DRIVER
5739 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5740 L: linux-media@vger.kernel.org
5741 S: Maintained
5742 T: git git://linuxtv.org/media_tree.git
5743 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5744 F: drivers/media/i2c/dw9714.c
5745
5746 DONGWOON DW9768 LENS VOICE COIL DRIVER
5747 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
5748 L: linux-media@vger.kernel.org
5749 S: Maintained
5750 T: git git://linuxtv.org/media_tree.git
5751 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5752 F: drivers/media/i2c/dw9768.c
5753
5754 DONGWOON DW9807 LENS VOICE COIL DRIVER
5755 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5756 L: linux-media@vger.kernel.org
5757 S: Maintained
5758 T: git git://linuxtv.org/media_tree.git
5759 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5760 F: drivers/media/i2c/dw9807-vcm.c
5761
5762 DOUBLETALK DRIVER
5763 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
5764 L: blinux-list@redhat.com
5765 S: Maintained
5766 F: drivers/char/dtlk.c
5767 F: include/linux/dtlk.h
5768
5769 DPAA2 DATAPATH I/O (DPIO) DRIVER
5770 M: Roy Pledge <Roy.Pledge@nxp.com>
5771 L: linux-kernel@vger.kernel.org
5772 S: Maintained
5773 F: drivers/soc/fsl/dpio
5774
5775 DPAA2 ETHERNET DRIVER
5776 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5777 L: netdev@vger.kernel.org
5778 S: Maintained
5779 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5780 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5781 F: drivers/net/ethernet/freescale/dpaa2/Kconfig
5782 F: drivers/net/ethernet/freescale/dpaa2/Makefile
5783 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5784 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5785 F: drivers/net/ethernet/freescale/dpaa2/dpkg.h
5786 F: drivers/net/ethernet/freescale/dpaa2/dpmac*
5787 F: drivers/net/ethernet/freescale/dpaa2/dpni*
5788
5789 DPAA2 ETHERNET SWITCH DRIVER
5790 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5791 L: netdev@vger.kernel.org
5792 S: Maintained
5793 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5794 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5795 F: drivers/net/ethernet/freescale/dpaa2/dpsw*
5796
5797 DPT_I2O SCSI RAID DRIVER
5798 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5799 L: linux-scsi@vger.kernel.org
5800 S: Maintained
5801 W: http://www.adaptec.com/
5802 F: drivers/scsi/dpt*
5803 F: drivers/scsi/dpt/
5804
5805 DRBD DRIVER
5806 M: Philipp Reisner <philipp.reisner@linbit.com>
5807 M: Lars Ellenberg <lars.ellenberg@linbit.com>
5808 L: drbd-dev@lists.linbit.com
5809 S: Supported
5810 W: http://www.drbd.org
5811 T: git git://git.linbit.com/linux-drbd.git
5812 T: git git://git.linbit.com/drbd-8.4.git
5813 F: Documentation/admin-guide/blockdev/
5814 F: drivers/block/drbd/
5815 F: lib/lru_cache.c
5816
5817 DRIVER COMPONENT FRAMEWORK
5818 L: dri-devel@lists.freedesktop.org
5819 F: drivers/base/component.c
5820 F: include/linux/component.h
5821
5822 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5823 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5824 R: "Rafael J. Wysocki" <rafael@kernel.org>
5825 S: Supported
5826 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5827 F: Documentation/core-api/kobject.rst
5828 F: drivers/base/
5829 F: fs/debugfs/
5830 F: fs/sysfs/
5831 F: include/linux/debugfs.h
5832 F: include/linux/kobj*
5833 F: lib/kobj*
5834
5835 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5836 M: Nishanth Menon <nm@ti.com>
5837 L: linux-pm@vger.kernel.org
5838 S: Maintained
5839 F: drivers/soc/ti/smartreflex.c
5840 F: include/linux/power/smartreflex.h
5841
5842 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5843 M: Maxime Ripard <mripard@kernel.org>
5844 M: Chen-Yu Tsai <wens@csie.org>
5845 R: Jernej Skrabec <jernej.skrabec@gmail.com>
5846 L: dri-devel@lists.freedesktop.org
5847 S: Supported
5848 T: git git://anongit.freedesktop.org/drm/drm-misc
5849 F: drivers/gpu/drm/sun4i/sun8i*
5850
5851 DRM DRIVER FOR ARM PL111 CLCD
5852 M: Emma Anholt <emma@anholt.net>
5853 S: Supported
5854 T: git git://anongit.freedesktop.org/drm/drm-misc
5855 F: drivers/gpu/drm/pl111/
5856
5857 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5858 M: Linus Walleij <linus.walleij@linaro.org>
5859 S: Maintained
5860 T: git git://anongit.freedesktop.org/drm/drm-misc
5861 F: Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5862 F: drivers/gpu/drm/panel/panel-arm-versatile.c
5863
5864 DRM DRIVER FOR ASPEED BMC GFX
5865 M: Joel Stanley <joel@jms.id.au>
5866 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5867 S: Supported
5868 T: git git://anongit.freedesktop.org/drm/drm-misc
5869 F: Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5870 F: drivers/gpu/drm/aspeed/
5871
5872 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5873 M: Dave Airlie <airlied@redhat.com>
5874 R: Thomas Zimmermann <tzimmermann@suse.de>
5875 L: dri-devel@lists.freedesktop.org
5876 S: Supported
5877 T: git git://anongit.freedesktop.org/drm/drm-misc
5878 F: drivers/gpu/drm/ast/
5879
5880 DRM DRIVER FOR BOCHS VIRTUAL GPU
5881 M: Gerd Hoffmann <kraxel@redhat.com>
5882 L: virtualization@lists.linux-foundation.org
5883 S: Maintained
5884 T: git git://anongit.freedesktop.org/drm/drm-misc
5885 F: drivers/gpu/drm/tiny/bochs.c
5886
5887 DRM DRIVER FOR BOE HIMAX8279D PANELS
5888 M: Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5889 S: Maintained
5890 F: Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5891 F: drivers/gpu/drm/panel/panel-boe-himax8279d.c
5892
5893 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5894 M: Jagan Teki <jagan@amarulasolutions.com>
5895 S: Maintained
5896 F: Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5897 F: drivers/gpu/drm/bridge/chipone-icn6211.c
5898
5899 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5900 M: Linus Walleij <linus.walleij@linaro.org>
5901 S: Maintained
5902 T: git git://anongit.freedesktop.org/drm/drm-misc
5903 F: drivers/gpu/drm/tve200/
5904
5905 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5906 M: Icenowy Zheng <icenowy@aosc.io>
5907 S: Maintained
5908 F: Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5909 F: drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5910
5911 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5912 M: Jagan Teki <jagan@amarulasolutions.com>
5913 S: Maintained
5914 F: Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5915 F: drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5916
5917 DRM DRIVER FOR GENERIC USB DISPLAY
5918 M: Noralf Trønnes <noralf@tronnes.org>
5919 S: Maintained
5920 W: https://github.com/notro/gud/wiki
5921 T: git git://anongit.freedesktop.org/drm/drm-misc
5922 F: drivers/gpu/drm/gud/
5923 F: include/drm/gud.h
5924
5925 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5926 M: Hans de Goede <hdegoede@redhat.com>
5927 S: Maintained
5928 T: git git://anongit.freedesktop.org/drm/drm-misc
5929 F: drivers/gpu/drm/tiny/gm12u320.c
5930
5931 DRM DRIVER FOR HX8357D PANELS
5932 M: Emma Anholt <emma@anholt.net>
5933 S: Maintained
5934 T: git git://anongit.freedesktop.org/drm/drm-misc
5935 F: Documentation/devicetree/bindings/display/himax,hx8357d.txt
5936 F: drivers/gpu/drm/tiny/hx8357d.c
5937
5938 DRM DRIVER FOR ILITEK ILI9225 PANELS
5939 M: David Lechner <david@lechnology.com>
5940 S: Maintained
5941 T: git git://anongit.freedesktop.org/drm/drm-misc
5942 F: Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5943 F: drivers/gpu/drm/tiny/ili9225.c
5944
5945 DRM DRIVER FOR ILITEK ILI9486 PANELS
5946 M: Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5947 S: Maintained
5948 T: git git://anongit.freedesktop.org/drm/drm-misc
5949 F: Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5950 F: drivers/gpu/drm/tiny/ili9486.c
5951
5952 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5953 S: Orphan / Obsolete
5954 F: drivers/gpu/drm/i810/
5955 F: include/uapi/drm/i810_drm.h
5956
5957 DRM DRIVER FOR LVDS PANELS
5958 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5959 L: dri-devel@lists.freedesktop.org
5960 T: git git://anongit.freedesktop.org/drm/drm-misc
5961 S: Maintained
5962 F: drivers/gpu/drm/panel/panel-lvds.c
5963 F: Documentation/devicetree/bindings/display/panel/lvds.yaml
5964
5965 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5966 M: Guido Günther <agx@sigxcpu.org>
5967 R: Purism Kernel Team <kernel@puri.sm>
5968 S: Maintained
5969 F: Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5970 F: drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5971
5972 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5973 S: Orphan / Obsolete
5974 F: drivers/gpu/drm/mga/
5975 F: include/uapi/drm/mga_drm.h
5976
5977 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5978 M: Dave Airlie <airlied@redhat.com>
5979 R: Thomas Zimmermann <tzimmermann@suse.de>
5980 L: dri-devel@lists.freedesktop.org
5981 S: Supported
5982 T: git git://anongit.freedesktop.org/drm/drm-misc
5983 F: drivers/gpu/drm/mgag200/
5984
5985 DRM DRIVER FOR MI0283QT
5986 M: Noralf Trønnes <noralf@tronnes.org>
5987 S: Maintained
5988 T: git git://anongit.freedesktop.org/drm/drm-misc
5989 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5990 F: drivers/gpu/drm/tiny/mi0283qt.c
5991
5992 DRM DRIVER FOR MSM ADRENO GPU
5993 M: Rob Clark <robdclark@gmail.com>
5994 M: Sean Paul <sean@poorly.run>
5995 L: linux-arm-msm@vger.kernel.org
5996 L: dri-devel@lists.freedesktop.org
5997 L: freedreno@lists.freedesktop.org
5998 S: Maintained
5999 T: git https://gitlab.freedesktop.org/drm/msm.git
6000 F: Documentation/devicetree/bindings/display/msm/
6001 F: drivers/gpu/drm/msm/
6002 F: include/uapi/drm/msm_drm.h
6003
6004 DRM DRIVER FOR NOVATEK NT35510 PANELS
6005 M: Linus Walleij <linus.walleij@linaro.org>
6006 S: Maintained
6007 T: git git://anongit.freedesktop.org/drm/drm-misc
6008 F: Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6009 F: drivers/gpu/drm/panel/panel-novatek-nt35510.c
6010
6011 DRM DRIVER FOR NOVATEK NT36672A PANELS
6012 M: Sumit Semwal <sumit.semwal@linaro.org>
6013 S: Maintained
6014 T: git git://anongit.freedesktop.org/drm/drm-misc
6015 F: Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6016 F: drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6017
6018 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6019 M: Ben Skeggs <bskeggs@redhat.com>
6020 L: dri-devel@lists.freedesktop.org
6021 L: nouveau@lists.freedesktop.org
6022 S: Supported
6023 T: git git://github.com/skeggsb/linux
6024 F: drivers/gpu/drm/nouveau/
6025 F: include/uapi/drm/nouveau_drm.h
6026
6027 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6028 M: Stefan Mavrodiev <stefan@olimex.com>
6029 S: Maintained
6030 F: Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6031 F: drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6032
6033 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6034 M: Noralf Trønnes <noralf@tronnes.org>
6035 S: Maintained
6036 T: git git://anongit.freedesktop.org/drm/drm-misc
6037 F: Documentation/devicetree/bindings/display/repaper.txt
6038 F: drivers/gpu/drm/tiny/repaper.c
6039
6040 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6041 M: Dave Airlie <airlied@redhat.com>
6042 M: Gerd Hoffmann <kraxel@redhat.com>
6043 L: virtualization@lists.linux-foundation.org
6044 S: Obsolete
6045 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6046 T: git git://anongit.freedesktop.org/drm/drm-misc
6047 F: drivers/gpu/drm/tiny/cirrus.c
6048
6049 DRM DRIVER FOR QXL VIRTUAL GPU
6050 M: Dave Airlie <airlied@redhat.com>
6051 M: Gerd Hoffmann <kraxel@redhat.com>
6052 L: virtualization@lists.linux-foundation.org
6053 L: spice-devel@lists.freedesktop.org
6054 S: Maintained
6055 T: git git://anongit.freedesktop.org/drm/drm-misc
6056 F: drivers/gpu/drm/qxl/
6057 F: include/uapi/drm/qxl_drm.h
6058
6059 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6060 S: Orphan / Obsolete
6061 F: drivers/gpu/drm/r128/
6062 F: include/uapi/drm/r128_drm.h
6063
6064 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6065 M: Robert Chiras <robert.chiras@nxp.com>
6066 S: Maintained
6067 F: Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6068 F: drivers/gpu/drm/panel/panel-raydium-rm67191.c
6069
6070 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6071 M: Linus Walleij <linus.walleij@linaro.org>
6072 S: Maintained
6073 T: git git://anongit.freedesktop.org/drm/drm-misc
6074 F: Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6075 F: drivers/gpu/drm/panel/panel-samsung-db7430.c
6076
6077 DRM DRIVER FOR SITRONIX ST7703 PANELS
6078 M: Guido Günther <agx@sigxcpu.org>
6079 R: Purism Kernel Team <kernel@puri.sm>
6080 R: Ondrej Jirman <megous@megous.com>
6081 S: Maintained
6082 F: Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6083 F: drivers/gpu/drm/panel/panel-sitronix-st7703.c
6084
6085 DRM DRIVER FOR SAVAGE VIDEO CARDS
6086 S: Orphan / Obsolete
6087 F: drivers/gpu/drm/savage/
6088 F: include/uapi/drm/savage_drm.h
6089
6090 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6091 M: Thomas Zimmermann <tzimmermann@suse.de>
6092 L: dri-devel@lists.freedesktop.org
6093 S: Maintained
6094 T: git git://anongit.freedesktop.org/drm/drm-misc
6095 F: drivers/gpu/drm/tiny/simpledrm.c
6096
6097 DRM DRIVER FOR SIS VIDEO CARDS
6098 S: Orphan / Obsolete
6099 F: drivers/gpu/drm/sis/
6100 F: include/uapi/drm/sis_drm.h
6101
6102 DRM DRIVER FOR SITRONIX ST7586 PANELS
6103 M: David Lechner <david@lechnology.com>
6104 S: Maintained
6105 T: git git://anongit.freedesktop.org/drm/drm-misc
6106 F: Documentation/devicetree/bindings/display/sitronix,st7586.txt
6107 F: drivers/gpu/drm/tiny/st7586.c
6108
6109 DRM DRIVER FOR SITRONIX ST7701 PANELS
6110 M: Jagan Teki <jagan@amarulasolutions.com>
6111 S: Maintained
6112 F: Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6113 F: drivers/gpu/drm/panel/panel-sitronix-st7701.c
6114
6115 DRM DRIVER FOR SITRONIX ST7735R PANELS
6116 M: David Lechner <david@lechnology.com>
6117 S: Maintained
6118 T: git git://anongit.freedesktop.org/drm/drm-misc
6119 F: Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6120 F: drivers/gpu/drm/tiny/st7735r.c
6121
6122 DRM DRIVER FOR SONY ACX424AKP PANELS
6123 M: Linus Walleij <linus.walleij@linaro.org>
6124 S: Maintained
6125 T: git git://anongit.freedesktop.org/drm/drm-misc
6126 F: drivers/gpu/drm/panel/panel-sony-acx424akp.c
6127
6128 DRM DRIVER FOR ST-ERICSSON MCDE
6129 M: Linus Walleij <linus.walleij@linaro.org>
6130 S: Maintained
6131 T: git git://anongit.freedesktop.org/drm/drm-misc
6132 F: Documentation/devicetree/bindings/display/ste,mcde.yaml
6133 F: drivers/gpu/drm/mcde/
6134
6135 DRM DRIVER FOR TDFX VIDEO CARDS
6136 S: Orphan / Obsolete
6137 F: drivers/gpu/drm/tdfx/
6138
6139 DRM DRIVER FOR TPO TPG110 PANELS
6140 M: Linus Walleij <linus.walleij@linaro.org>
6141 S: Maintained
6142 T: git git://anongit.freedesktop.org/drm/drm-misc
6143 F: Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6144 F: drivers/gpu/drm/panel/panel-tpo-tpg110.c
6145
6146 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6147 M: Dave Airlie <airlied@redhat.com>
6148 R: Sean Paul <sean@poorly.run>
6149 R: Thomas Zimmermann <tzimmermann@suse.de>
6150 L: dri-devel@lists.freedesktop.org
6151 S: Supported
6152 T: git git://anongit.freedesktop.org/drm/drm-misc
6153 F: drivers/gpu/drm/udl/
6154
6155 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6156 M: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6157 M: Melissa Wen <melissa.srw@gmail.com>
6158 R: Haneen Mohammed <hamohammed.sa@gmail.com>
6159 R: Daniel Vetter <daniel@ffwll.ch>
6160 L: dri-devel@lists.freedesktop.org
6161 S: Maintained
6162 T: git git://anongit.freedesktop.org/drm/drm-misc
6163 F: Documentation/gpu/vkms.rst
6164 F: drivers/gpu/drm/vkms/
6165
6166 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6167 M: Hans de Goede <hdegoede@redhat.com>
6168 L: dri-devel@lists.freedesktop.org
6169 S: Maintained
6170 T: git git://anongit.freedesktop.org/drm/drm-misc
6171 F: drivers/gpu/drm/vboxvideo/
6172
6173 DRM DRIVER FOR VMWARE VIRTUAL GPU
6174 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6175 M: Zack Rusin <zackr@vmware.com>
6176 L: dri-devel@lists.freedesktop.org
6177 S: Supported
6178 T: git git://anongit.freedesktop.org/drm/drm-misc
6179 F: drivers/gpu/drm/vmwgfx/
6180 F: include/uapi/drm/vmwgfx_drm.h
6181
6182 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6183 M: Linus Walleij <linus.walleij@linaro.org>
6184 S: Maintained
6185 T: git git://anongit.freedesktop.org/drm/drm-misc
6186 F: Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6187 F: drivers/gpu/drm/panel/panel-widechips-ws2401.c
6188
6189 DRM DRIVERS
6190 M: David Airlie <airlied@linux.ie>
6191 M: Daniel Vetter <daniel@ffwll.ch>
6192 L: dri-devel@lists.freedesktop.org
6193 S: Maintained
6194 B: https://gitlab.freedesktop.org/drm
6195 C: irc://irc.oftc.net/dri-devel
6196 T: git git://anongit.freedesktop.org/drm/drm
6197 F: Documentation/devicetree/bindings/display/
6198 F: Documentation/devicetree/bindings/gpu/
6199 F: Documentation/gpu/
6200 F: drivers/gpu/
6201 F: include/drm/
6202 F: include/linux/vga*
6203 F: include/uapi/drm/
6204
6205 DRM DRIVERS AND MISC GPU PATCHES
6206 M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6207 M: Maxime Ripard <mripard@kernel.org>
6208 M: Thomas Zimmermann <tzimmermann@suse.de>
6209 S: Maintained
6210 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6211 T: git git://anongit.freedesktop.org/drm/drm-misc
6212 F: Documentation/gpu/
6213 F: drivers/gpu/drm/*
6214 F: drivers/gpu/vga/
6215 F: include/drm/drm*
6216 F: include/linux/vga*
6217 F: include/uapi/drm/drm*
6218
6219 DRM DRIVERS FOR ALLWINNER A10
6220 M: Maxime Ripard <mripard@kernel.org>
6221 M: Chen-Yu Tsai <wens@csie.org>
6222 L: dri-devel@lists.freedesktop.org
6223 S: Supported
6224 T: git git://anongit.freedesktop.org/drm/drm-misc
6225 F: Documentation/devicetree/bindings/display/allwinner*
6226 F: drivers/gpu/drm/sun4i/
6227
6228 DRM DRIVERS FOR AMLOGIC SOCS
6229 M: Neil Armstrong <narmstrong@baylibre.com>
6230 L: dri-devel@lists.freedesktop.org
6231 L: linux-amlogic@lists.infradead.org
6232 S: Supported
6233 W: http://linux-meson.com/
6234 T: git git://anongit.freedesktop.org/drm/drm-misc
6235 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6236 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6237 F: Documentation/gpu/meson.rst
6238 F: drivers/gpu/drm/meson/
6239
6240 DRM DRIVERS FOR ATMEL HLCDC
6241 M: Sam Ravnborg <sam@ravnborg.org>
6242 M: Boris Brezillon <bbrezillon@kernel.org>
6243 L: dri-devel@lists.freedesktop.org
6244 S: Supported
6245 T: git git://anongit.freedesktop.org/drm/drm-misc
6246 F: Documentation/devicetree/bindings/display/atmel/
6247 F: drivers/gpu/drm/atmel-hlcdc/
6248
6249 DRM DRIVERS FOR BRIDGE CHIPS
6250 M: Andrzej Hajda <a.hajda@samsung.com>
6251 M: Neil Armstrong <narmstrong@baylibre.com>
6252 M: Robert Foss <robert.foss@linaro.org>
6253 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6254 R: Jonas Karlman <jonas@kwiboo.se>
6255 R: Jernej Skrabec <jernej.skrabec@gmail.com>
6256 S: Maintained
6257 T: git git://anongit.freedesktop.org/drm/drm-misc
6258 F: drivers/gpu/drm/bridge/
6259
6260 DRM DRIVERS FOR EXYNOS
6261 M: Inki Dae <inki.dae@samsung.com>
6262 M: Joonyoung Shim <jy0922.shim@samsung.com>
6263 M: Seung-Woo Kim <sw0312.kim@samsung.com>
6264 M: Kyungmin Park <kyungmin.park@samsung.com>
6265 L: dri-devel@lists.freedesktop.org
6266 S: Supported
6267 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6268 F: Documentation/devicetree/bindings/display/exynos/
6269 F: drivers/gpu/drm/exynos/
6270 F: include/uapi/drm/exynos_drm.h
6271
6272 DRM DRIVERS FOR FREESCALE DCU
6273 M: Stefan Agner <stefan@agner.ch>
6274 M: Alison Wang <alison.wang@nxp.com>
6275 L: dri-devel@lists.freedesktop.org
6276 S: Supported
6277 T: git git://anongit.freedesktop.org/drm/drm-misc
6278 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
6279 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
6280 F: drivers/gpu/drm/fsl-dcu/
6281
6282 DRM DRIVERS FOR FREESCALE IMX
6283 M: Philipp Zabel <p.zabel@pengutronix.de>
6284 L: dri-devel@lists.freedesktop.org
6285 S: Maintained
6286 F: Documentation/devicetree/bindings/display/imx/
6287 F: drivers/gpu/drm/imx/
6288 F: drivers/gpu/ipu-v3/
6289
6290 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6291 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6292 L: dri-devel@lists.freedesktop.org
6293 S: Maintained
6294 T: git git://github.com/patjak/drm-gma500
6295 F: drivers/gpu/drm/gma500/
6296
6297 DRM DRIVERS FOR HISILICON
6298 M: Xinliang Liu <xinliang.liu@linaro.org>
6299 M: Tian Tao <tiantao6@hisilicon.com>
6300 R: John Stultz <john.stultz@linaro.org>
6301 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
6302 R: Chen Feng <puck.chen@hisilicon.com>
6303 L: dri-devel@lists.freedesktop.org
6304 S: Maintained
6305 T: git git://anongit.freedesktop.org/drm/drm-misc
6306 F: Documentation/devicetree/bindings/display/hisilicon/
6307 F: drivers/gpu/drm/hisilicon/
6308
6309 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6310 M: Deepak Rawat <drawat.floss@gmail.com>
6311 L: linux-hyperv@vger.kernel.org
6312 L: dri-devel@lists.freedesktop.org
6313 S: Maintained
6314 T: git git://anongit.freedesktop.org/drm/drm-misc
6315 F: drivers/gpu/drm/hyperv
6316
6317 DRM DRIVERS FOR LIMA
6318 M: Qiang Yu <yuq825@gmail.com>
6319 L: dri-devel@lists.freedesktop.org
6320 L: lima@lists.freedesktop.org (moderated for non-subscribers)
6321 S: Maintained
6322 T: git git://anongit.freedesktop.org/drm/drm-misc
6323 F: drivers/gpu/drm/lima/
6324 F: include/uapi/drm/lima_drm.h
6325
6326 DRM DRIVERS FOR MEDIATEK
6327 M: Chun-Kuang Hu <chunkuang.hu@kernel.org>
6328 M: Philipp Zabel <p.zabel@pengutronix.de>
6329 L: dri-devel@lists.freedesktop.org
6330 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6331 S: Supported
6332 F: Documentation/devicetree/bindings/display/mediatek/
6333 F: drivers/gpu/drm/mediatek/
6334 F: drivers/phy/mediatek/phy-mtk-hdmi*
6335 F: drivers/phy/mediatek/phy-mtk-mipi*
6336
6337 DRM DRIVERS FOR NVIDIA TEGRA
6338 M: Thierry Reding <thierry.reding@gmail.com>
6339 L: dri-devel@lists.freedesktop.org
6340 L: linux-tegra@vger.kernel.org
6341 S: Supported
6342 T: git git://anongit.freedesktop.org/tegra/linux.git
6343 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6344 F: drivers/gpu/drm/tegra/
6345 F: drivers/gpu/host1x/
6346 F: include/linux/host1x.h
6347 F: include/uapi/drm/tegra_drm.h
6348
6349 DRM DRIVERS FOR RENESAS
6350 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6351 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6352 L: dri-devel@lists.freedesktop.org
6353 L: linux-renesas-soc@vger.kernel.org
6354 S: Supported
6355 T: git git://linuxtv.org/pinchartl/media drm/du/next
6356 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6357 F: Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6358 F: Documentation/devicetree/bindings/display/renesas,du.yaml
6359 F: drivers/gpu/drm/rcar-du/
6360 F: drivers/gpu/drm/shmobile/
6361 F: include/linux/platform_data/shmob_drm.h
6362
6363 DRM DRIVERS FOR ROCKCHIP
6364 M: Sandy Huang <hjc@rock-chips.com>
6365 M: Heiko Stübner <heiko@sntech.de>
6366 L: dri-devel@lists.freedesktop.org
6367 S: Maintained
6368 T: git git://anongit.freedesktop.org/drm/drm-misc
6369 F: Documentation/devicetree/bindings/display/rockchip/
6370 F: drivers/gpu/drm/rockchip/
6371
6372 DRM DRIVERS FOR STI
6373 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
6374 L: dri-devel@lists.freedesktop.org
6375 S: Maintained
6376 T: git git://anongit.freedesktop.org/drm/drm-misc
6377 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
6378 F: drivers/gpu/drm/sti
6379
6380 DRM DRIVERS FOR STM
6381 M: Yannick Fertre <yannick.fertre@foss.st.com>
6382 M: Philippe Cornu <philippe.cornu@foss.st.com>
6383 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
6384 L: dri-devel@lists.freedesktop.org
6385 S: Maintained
6386 T: git git://anongit.freedesktop.org/drm/drm-misc
6387 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6388 F: drivers/gpu/drm/stm
6389
6390 DRM DRIVERS FOR TI KEYSTONE
6391 M: Jyri Sarha <jyri.sarha@iki.fi>
6392 M: Tomi Valkeinen <tomba@kernel.org>
6393 L: dri-devel@lists.freedesktop.org
6394 S: Maintained
6395 T: git git://anongit.freedesktop.org/drm/drm-misc
6396 F: Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6397 F: Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6398 F: Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6399 F: drivers/gpu/drm/tidss/
6400
6401 DRM DRIVERS FOR TI LCDC
6402 M: Jyri Sarha <jyri.sarha@iki.fi>
6403 R: Tomi Valkeinen <tomba@kernel.org>
6404 L: dri-devel@lists.freedesktop.org
6405 S: Maintained
6406 F: Documentation/devicetree/bindings/display/tilcdc/
6407 F: drivers/gpu/drm/tilcdc/
6408
6409 DRM DRIVERS FOR TI OMAP
6410 M: Tomi Valkeinen <tomba@kernel.org>
6411 L: dri-devel@lists.freedesktop.org
6412 S: Maintained
6413 F: Documentation/devicetree/bindings/display/ti/
6414 F: drivers/gpu/drm/omapdrm/
6415
6416 DRM DRIVERS FOR V3D
6417 M: Emma Anholt <emma@anholt.net>
6418 S: Supported
6419 T: git git://anongit.freedesktop.org/drm/drm-misc
6420 F: Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6421 F: drivers/gpu/drm/v3d/
6422 F: include/uapi/drm/v3d_drm.h
6423
6424 DRM DRIVERS FOR VC4
6425 M: Emma Anholt <emma@anholt.net>
6426 M: Maxime Ripard <mripard@kernel.org>
6427 S: Supported
6428 T: git git://github.com/anholt/linux
6429 T: git git://anongit.freedesktop.org/drm/drm-misc
6430 F: Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6431 F: drivers/gpu/drm/vc4/
6432 F: include/uapi/drm/vc4_drm.h
6433
6434 DRM DRIVERS FOR VIVANTE GPU IP
6435 M: Lucas Stach <l.stach@pengutronix.de>
6436 R: Russell King <linux+etnaviv@armlinux.org.uk>
6437 R: Christian Gmeiner <christian.gmeiner@gmail.com>
6438 L: etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6439 L: dri-devel@lists.freedesktop.org
6440 S: Maintained
6441 F: Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6442 F: drivers/gpu/drm/etnaviv/
6443 F: include/uapi/drm/etnaviv_drm.h
6444
6445 DRM DRIVERS FOR XEN
6446 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6447 L: dri-devel@lists.freedesktop.org
6448 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
6449 S: Supported
6450 T: git git://anongit.freedesktop.org/drm/drm-misc
6451 F: Documentation/gpu/xen-front.rst
6452 F: drivers/gpu/drm/xen/
6453
6454 DRM DRIVERS FOR XILINX
6455 M: Hyun Kwon <hyun.kwon@xilinx.com>
6456 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6457 L: dri-devel@lists.freedesktop.org
6458 S: Maintained
6459 T: git git://anongit.freedesktop.org/drm/drm-misc
6460 F: Documentation/devicetree/bindings/display/xlnx/
6461 F: drivers/gpu/drm/xlnx/
6462
6463 DRM PANEL DRIVERS
6464 M: Thierry Reding <thierry.reding@gmail.com>
6465 R: Sam Ravnborg <sam@ravnborg.org>
6466 L: dri-devel@lists.freedesktop.org
6467 S: Maintained
6468 T: git git://anongit.freedesktop.org/drm/drm-misc
6469 F: Documentation/devicetree/bindings/display/panel/
6470 F: drivers/gpu/drm/drm_panel.c
6471 F: drivers/gpu/drm/panel/
6472 F: include/drm/drm_panel.h
6473
6474 DRM TTM SUBSYSTEM
6475 M: Christian Koenig <christian.koenig@amd.com>
6476 M: Huang Rui <ray.huang@amd.com>
6477 L: dri-devel@lists.freedesktop.org
6478 S: Maintained
6479 T: git git://anongit.freedesktop.org/drm/drm-misc
6480 F: drivers/gpu/drm/ttm/
6481 F: include/drm/ttm/
6482
6483 DSBR100 USB FM RADIO DRIVER
6484 M: Alexey Klimov <klimov.linux@gmail.com>
6485 L: linux-media@vger.kernel.org
6486 S: Maintained
6487 T: git git://linuxtv.org/media_tree.git
6488 F: drivers/media/radio/dsbr100.c
6489
6490 DT3155 MEDIA DRIVER
6491 M: Hans Verkuil <hverkuil@xs4all.nl>
6492 L: linux-media@vger.kernel.org
6493 S: Odd Fixes
6494 W: https://linuxtv.org
6495 T: git git://linuxtv.org/media_tree.git
6496 F: drivers/media/pci/dt3155/
6497
6498 DVB_USB_AF9015 MEDIA DRIVER
6499 M: Antti Palosaari <crope@iki.fi>
6500 L: linux-media@vger.kernel.org
6501 S: Maintained
6502 W: https://linuxtv.org
6503 W: http://palosaari.fi/linux/
6504 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6505 T: git git://linuxtv.org/anttip/media_tree.git
6506 F: drivers/media/usb/dvb-usb-v2/af9015*
6507
6508 DVB_USB_AF9035 MEDIA DRIVER
6509 M: Antti Palosaari <crope@iki.fi>
6510 L: linux-media@vger.kernel.org
6511 S: Maintained
6512 W: https://linuxtv.org
6513 W: http://palosaari.fi/linux/
6514 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6515 T: git git://linuxtv.org/anttip/media_tree.git
6516 F: drivers/media/usb/dvb-usb-v2/af9035*
6517
6518 DVB_USB_ANYSEE MEDIA DRIVER
6519 M: Antti Palosaari <crope@iki.fi>
6520 L: linux-media@vger.kernel.org
6521 S: Maintained
6522 W: https://linuxtv.org
6523 W: http://palosaari.fi/linux/
6524 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6525 T: git git://linuxtv.org/anttip/media_tree.git
6526 F: drivers/media/usb/dvb-usb-v2/anysee*
6527
6528 DVB_USB_AU6610 MEDIA DRIVER
6529 M: Antti Palosaari <crope@iki.fi>
6530 L: linux-media@vger.kernel.org
6531 S: Maintained
6532 W: https://linuxtv.org
6533 W: http://palosaari.fi/linux/
6534 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6535 T: git git://linuxtv.org/anttip/media_tree.git
6536 F: drivers/media/usb/dvb-usb-v2/au6610*
6537
6538 DVB_USB_CE6230 MEDIA DRIVER
6539 M: Antti Palosaari <crope@iki.fi>
6540 L: linux-media@vger.kernel.org
6541 S: Maintained
6542 W: https://linuxtv.org
6543 W: http://palosaari.fi/linux/
6544 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6545 T: git git://linuxtv.org/anttip/media_tree.git
6546 F: drivers/media/usb/dvb-usb-v2/ce6230*
6547
6548 DVB_USB_CXUSB MEDIA DRIVER
6549 M: Michael Krufky <mkrufky@linuxtv.org>
6550 L: linux-media@vger.kernel.org
6551 S: Maintained
6552 W: https://linuxtv.org
6553 W: http://github.com/mkrufky
6554 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6555 T: git git://linuxtv.org/media_tree.git
6556 F: drivers/media/usb/dvb-usb/cxusb*
6557
6558 DVB_USB_EC168 MEDIA DRIVER
6559 M: Antti Palosaari <crope@iki.fi>
6560 L: linux-media@vger.kernel.org
6561 S: Maintained
6562 W: https://linuxtv.org
6563 W: http://palosaari.fi/linux/
6564 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6565 T: git git://linuxtv.org/anttip/media_tree.git
6566 F: drivers/media/usb/dvb-usb-v2/ec168*
6567
6568 DVB_USB_GL861 MEDIA DRIVER
6569 M: Antti Palosaari <crope@iki.fi>
6570 L: linux-media@vger.kernel.org
6571 S: Maintained
6572 W: https://linuxtv.org
6573 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6574 T: git git://linuxtv.org/anttip/media_tree.git
6575 F: drivers/media/usb/dvb-usb-v2/gl861*
6576
6577 DVB_USB_MXL111SF MEDIA DRIVER
6578 M: Michael Krufky <mkrufky@linuxtv.org>
6579 L: linux-media@vger.kernel.org
6580 S: Maintained
6581 W: https://linuxtv.org
6582 W: http://github.com/mkrufky
6583 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6584 T: git git://linuxtv.org/mkrufky/mxl111sf.git
6585 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
6586
6587 DVB_USB_RTL28XXU MEDIA DRIVER
6588 M: Antti Palosaari <crope@iki.fi>
6589 L: linux-media@vger.kernel.org
6590 S: Maintained
6591 W: https://linuxtv.org
6592 W: http://palosaari.fi/linux/
6593 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6594 T: git git://linuxtv.org/anttip/media_tree.git
6595 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
6596
6597 DVB_USB_V2 MEDIA DRIVER
6598 M: Antti Palosaari <crope@iki.fi>
6599 L: linux-media@vger.kernel.org
6600 S: Maintained
6601 W: https://linuxtv.org
6602 W: http://palosaari.fi/linux/
6603 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6604 T: git git://linuxtv.org/anttip/media_tree.git
6605 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
6606 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
6607
6608 DYNAMIC DEBUG
6609 M: Jason Baron <jbaron@akamai.com>
6610 S: Maintained
6611 F: include/linux/dynamic_debug.h
6612 F: lib/dynamic_debug.c
6613
6614 DYNAMIC INTERRUPT MODERATION
6615 M: Tal Gilboa <talgi@nvidia.com>
6616 S: Maintained
6617 F: Documentation/networking/net_dim.rst
6618 F: include/linux/dim.h
6619 F: lib/dim/
6620
6621 DZ DECSTATION DZ11 SERIAL DRIVER
6622 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
6623 S: Maintained
6624 F: drivers/tty/serial/dz.*
6625
6626 E3X0 POWER BUTTON DRIVER
6627 M: Moritz Fischer <moritz.fischer@ettus.com>
6628 L: usrp-users@lists.ettus.com
6629 S: Supported
6630 W: http://www.ettus.com
6631 F: Documentation/devicetree/bindings/input/e3x0-button.txt
6632 F: drivers/input/misc/e3x0-button.c
6633
6634 E4000 MEDIA DRIVER
6635 M: Antti Palosaari <crope@iki.fi>
6636 L: linux-media@vger.kernel.org
6637 S: Maintained
6638 W: https://linuxtv.org
6639 W: http://palosaari.fi/linux/
6640 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6641 T: git git://linuxtv.org/anttip/media_tree.git
6642 F: drivers/media/tuners/e4000*
6643
6644 EARTH_PT1 MEDIA DRIVER
6645 M: Akihiro Tsukada <tskd08@gmail.com>
6646 L: linux-media@vger.kernel.org
6647 S: Odd Fixes
6648 F: drivers/media/pci/pt1/
6649
6650 EARTH_PT3 MEDIA DRIVER
6651 M: Akihiro Tsukada <tskd08@gmail.com>
6652 L: linux-media@vger.kernel.org
6653 S: Odd Fixes
6654 F: drivers/media/pci/pt3/
6655
6656 EC100 MEDIA DRIVER
6657 M: Antti Palosaari <crope@iki.fi>
6658 L: linux-media@vger.kernel.org
6659 S: Maintained
6660 W: https://linuxtv.org
6661 W: http://palosaari.fi/linux/
6662 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6663 T: git git://linuxtv.org/anttip/media_tree.git
6664 F: drivers/media/dvb-frontends/ec100*
6665
6666 ECRYPT FILE SYSTEM
6667 M: Tyler Hicks <code@tyhicks.com>
6668 L: ecryptfs@vger.kernel.org
6669 S: Odd Fixes
6670 W: http://ecryptfs.org
6671 W: https://launchpad.net/ecryptfs
6672 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6673 F: Documentation/filesystems/ecryptfs.rst
6674 F: fs/ecryptfs/
6675
6676 EDAC-AMD64
6677 M: Yazen Ghannam <yazen.ghannam@amd.com>
6678 L: linux-edac@vger.kernel.org
6679 S: Supported
6680 F: drivers/edac/amd64_edac*
6681 F: drivers/edac/mce_amd*
6682
6683 EDAC-ARMADA
6684 M: Jan Luebbe <jlu@pengutronix.de>
6685 L: linux-edac@vger.kernel.org
6686 S: Maintained
6687 F: Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6688 F: drivers/edac/armada_xp_*
6689
6690 EDAC-AST2500
6691 M: Stefan Schaeckeler <sschaeck@cisco.com>
6692 S: Supported
6693 F: Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6694 F: drivers/edac/aspeed_edac.c
6695
6696 EDAC-BLUEFIELD
6697 M: Shravan Kumar Ramani <shravankr@nvidia.com>
6698 S: Supported
6699 F: drivers/edac/bluefield_edac.c
6700
6701 EDAC-CALXEDA
6702 M: Andre Przywara <andre.przywara@arm.com>
6703 L: linux-edac@vger.kernel.org
6704 S: Maintained
6705 F: drivers/edac/highbank*
6706
6707 EDAC-CAVIUM OCTEON
6708 M: Ralf Baechle <ralf@linux-mips.org>
6709 L: linux-edac@vger.kernel.org
6710 L: linux-mips@vger.kernel.org
6711 S: Supported
6712 F: drivers/edac/octeon_edac*
6713
6714 EDAC-CAVIUM THUNDERX
6715 M: Robert Richter <rric@kernel.org>
6716 L: linux-edac@vger.kernel.org
6717 S: Odd Fixes
6718 F: drivers/edac/thunderx_edac*
6719
6720 EDAC-CORE
6721 M: Borislav Petkov <bp@alien8.de>
6722 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6723 M: Tony Luck <tony.luck@intel.com>
6724 R: James Morse <james.morse@arm.com>
6725 R: Robert Richter <rric@kernel.org>
6726 L: linux-edac@vger.kernel.org
6727 S: Supported
6728 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6729 F: Documentation/admin-guide/ras.rst
6730 F: Documentation/driver-api/edac.rst
6731 F: drivers/edac/
6732 F: include/linux/edac.h
6733
6734 EDAC-DMC520
6735 M: Lei Wang <lewan@microsoft.com>
6736 L: linux-edac@vger.kernel.org
6737 S: Supported
6738 F: drivers/edac/dmc520_edac.c
6739
6740 EDAC-E752X
6741 M: Mark Gross <mark.gross@intel.com>
6742 L: linux-edac@vger.kernel.org
6743 S: Maintained
6744 F: drivers/edac/e752x_edac.c
6745
6746 EDAC-E7XXX
6747 L: linux-edac@vger.kernel.org
6748 S: Maintained
6749 F: drivers/edac/e7xxx_edac.c
6750
6751 EDAC-FSL_DDR
6752 M: York Sun <york.sun@nxp.com>
6753 L: linux-edac@vger.kernel.org
6754 S: Maintained
6755 F: drivers/edac/fsl_ddr_edac.*
6756
6757 EDAC-GHES
6758 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6759 L: linux-edac@vger.kernel.org
6760 S: Maintained
6761 F: drivers/edac/ghes_edac.c
6762
6763 EDAC-I10NM
6764 M: Tony Luck <tony.luck@intel.com>
6765 L: linux-edac@vger.kernel.org
6766 S: Maintained
6767 F: drivers/edac/i10nm_base.c
6768
6769 EDAC-I3000
6770 L: linux-edac@vger.kernel.org
6771 S: Orphan
6772 F: drivers/edac/i3000_edac.c
6773
6774 EDAC-I5000
6775 L: linux-edac@vger.kernel.org
6776 S: Maintained
6777 F: drivers/edac/i5000_edac.c
6778
6779 EDAC-I5400
6780 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6781 L: linux-edac@vger.kernel.org
6782 S: Maintained
6783 F: drivers/edac/i5400_edac.c
6784
6785 EDAC-I7300
6786 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6787 L: linux-edac@vger.kernel.org
6788 S: Maintained
6789 F: drivers/edac/i7300_edac.c
6790
6791 EDAC-I7CORE
6792 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6793 L: linux-edac@vger.kernel.org
6794 S: Maintained
6795 F: drivers/edac/i7core_edac.c
6796
6797 EDAC-I82443BXGX
6798 M: Tim Small <tim@buttersideup.com>
6799 L: linux-edac@vger.kernel.org
6800 S: Maintained
6801 F: drivers/edac/i82443bxgx_edac.c
6802
6803 EDAC-I82975X
6804 M: "Arvind R." <arvino55@gmail.com>
6805 L: linux-edac@vger.kernel.org
6806 S: Maintained
6807 F: drivers/edac/i82975x_edac.c
6808
6809 EDAC-IE31200
6810 M: Jason Baron <jbaron@akamai.com>
6811 L: linux-edac@vger.kernel.org
6812 S: Maintained
6813 F: drivers/edac/ie31200_edac.c
6814
6815 EDAC-IGEN6
6816 M: Tony Luck <tony.luck@intel.com>
6817 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6818 L: linux-edac@vger.kernel.org
6819 S: Maintained
6820 F: drivers/edac/igen6_edac.c
6821
6822 EDAC-MPC85XX
6823 M: Johannes Thumshirn <morbidrsa@gmail.com>
6824 L: linux-edac@vger.kernel.org
6825 S: Maintained
6826 F: drivers/edac/mpc85xx_edac.[ch]
6827
6828 EDAC-PASEMI
6829 M: Egor Martovetsky <egor@pasemi.com>
6830 L: linux-edac@vger.kernel.org
6831 S: Maintained
6832 F: drivers/edac/pasemi_edac.c
6833
6834 EDAC-PND2
6835 M: Tony Luck <tony.luck@intel.com>
6836 L: linux-edac@vger.kernel.org
6837 S: Maintained
6838 F: drivers/edac/pnd2_edac.[ch]
6839
6840 EDAC-QCOM
6841 M: Channagoud Kadabi <ckadabi@codeaurora.org>
6842 M: Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6843 L: linux-arm-msm@vger.kernel.org
6844 L: linux-edac@vger.kernel.org
6845 S: Maintained
6846 F: drivers/edac/qcom_edac.c
6847
6848 EDAC-R82600
6849 M: Tim Small <tim@buttersideup.com>
6850 L: linux-edac@vger.kernel.org
6851 S: Maintained
6852 F: drivers/edac/r82600_edac.c
6853
6854 EDAC-SBRIDGE
6855 M: Tony Luck <tony.luck@intel.com>
6856 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6857 L: linux-edac@vger.kernel.org
6858 S: Maintained
6859 F: drivers/edac/sb_edac.c
6860
6861 EDAC-SIFIVE
6862 M: Yash Shah <yash.shah@sifive.com>
6863 L: linux-edac@vger.kernel.org
6864 S: Supported
6865 F: drivers/edac/sifive_edac.c
6866
6867 EDAC-SKYLAKE
6868 M: Tony Luck <tony.luck@intel.com>
6869 L: linux-edac@vger.kernel.org
6870 S: Maintained
6871 F: drivers/edac/skx_*.[ch]
6872
6873 EDAC-TI
6874 M: Tero Kristo <kristo@kernel.org>
6875 L: linux-edac@vger.kernel.org
6876 S: Odd Fixes
6877 F: drivers/edac/ti_edac.c
6878
6879 EDIROL UA-101/UA-1000 DRIVER
6880 M: Clemens Ladisch <clemens@ladisch.de>
6881 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6882 S: Maintained
6883 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6884 F: sound/usb/misc/ua101.c
6885
6886 EFI TEST DRIVER
6887 M: Ivan Hu <ivan.hu@canonical.com>
6888 M: Ard Biesheuvel <ardb@kernel.org>
6889 L: linux-efi@vger.kernel.org
6890 S: Maintained
6891 F: drivers/firmware/efi/test/
6892
6893 EFI VARIABLE FILESYSTEM
6894 M: Matthew Garrett <matthew.garrett@nebula.com>
6895 M: Jeremy Kerr <jk@ozlabs.org>
6896 M: Ard Biesheuvel <ardb@kernel.org>
6897 L: linux-efi@vger.kernel.org
6898 S: Maintained
6899 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6900 F: fs/efivarfs/
6901
6902 EFIFB FRAMEBUFFER DRIVER
6903 M: Peter Jones <pjones@redhat.com>
6904 L: linux-fbdev@vger.kernel.org
6905 S: Maintained
6906 F: drivers/video/fbdev/efifb.c
6907
6908 EFS FILESYSTEM
6909 S: Orphan
6910 W: http://aeschi.ch.eu.org/efs/
6911 F: fs/efs/
6912
6913 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6914 M: Douglas Miller <dougmill@linux.ibm.com>
6915 L: netdev@vger.kernel.org
6916 S: Maintained
6917 F: drivers/net/ethernet/ibm/ehea/
6918
6919 EM28XX VIDEO4LINUX DRIVER
6920 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6921 L: linux-media@vger.kernel.org
6922 S: Maintained
6923 W: https://linuxtv.org
6924 T: git git://linuxtv.org/media_tree.git
6925 F: Documentation/admin-guide/media/em28xx*
6926 F: drivers/media/usb/em28xx/
6927
6928 EMBEDDED LINUX
6929 M: Matt Mackall <mpm@selenic.com>
6930 M: David Woodhouse <dwmw2@infradead.org>
6931 L: linux-embedded@vger.kernel.org
6932 S: Maintained
6933
6934 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6935 M: Adrian Hunter <adrian.hunter@intel.com>
6936 M: Ritesh Harjani <riteshh@codeaurora.org>
6937 M: Asutosh Das <asutoshd@codeaurora.org>
6938 L: linux-mmc@vger.kernel.org
6939 S: Maintained
6940 F: drivers/mmc/host/cqhci*
6941
6942 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6943 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6944 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
6945 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6946 L: linux-scsi@vger.kernel.org
6947 S: Supported
6948 W: http://www.broadcom.com
6949 F: drivers/scsi/be2iscsi/
6950
6951 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6952 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
6953 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6954 M: Somnath Kotur <somnath.kotur@broadcom.com>
6955 L: netdev@vger.kernel.org
6956 S: Supported
6957 W: http://www.emulex.com
6958 F: drivers/net/ethernet/emulex/benet/
6959
6960 EMULEX ONECONNECT ROCE DRIVER
6961 M: Selvin Xavier <selvin.xavier@broadcom.com>
6962 L: linux-rdma@vger.kernel.org
6963 S: Odd Fixes
6964 W: http://www.broadcom.com
6965 F: drivers/infiniband/hw/ocrdma/
6966 F: include/uapi/rdma/ocrdma-abi.h
6967
6968 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6969 M: James Smart <james.smart@broadcom.com>
6970 M: Dick Kennedy <dick.kennedy@broadcom.com>
6971 L: linux-scsi@vger.kernel.org
6972 S: Supported
6973 W: http://www.broadcom.com
6974 F: drivers/scsi/lpfc/
6975
6976 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6977 M: James Smart <james.smart@broadcom.com>
6978 M: Ram Vegesna <ram.vegesna@broadcom.com>
6979 L: linux-scsi@vger.kernel.org
6980 L: target-devel@vger.kernel.org
6981 S: Supported
6982 W: http://www.broadcom.com
6983 F: drivers/scsi/elx/
6984
6985 ENE CB710 FLASH CARD READER DRIVER
6986 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
6987 S: Maintained
6988 F: drivers/misc/cb710/
6989 F: drivers/mmc/host/cb710-mmc.*
6990 F: include/linux/cb710.h
6991
6992 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6993 M: Maxim Levitsky <maximlevitsky@gmail.com>
6994 S: Maintained
6995 F: drivers/media/rc/ene_ir.*
6996
6997 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6998 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
6999 L: linuxppc-dev@lists.ozlabs.org
7000 S: Maintained
7001 F: drivers/tty/ehv_bytechan.c
7002
7003 EPSON S1D13XXX FRAMEBUFFER DRIVER
7004 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
7005 S: Maintained
7006 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7007 F: drivers/video/fbdev/s1d13xxxfb.c
7008 F: include/video/s1d13xxxfb.h
7009
7010 EROFS FILE SYSTEM
7011 M: Gao Xiang <xiang@kernel.org>
7012 M: Chao Yu <chao@kernel.org>
7013 L: linux-erofs@lists.ozlabs.org
7014 S: Maintained
7015 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7016 F: Documentation/filesystems/erofs.rst
7017 F: fs/erofs/
7018 F: include/trace/events/erofs.h
7019
7020 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7021 M: Jeff Layton <jlayton@kernel.org>
7022 S: Maintained
7023 F: include/linux/errseq.h
7024 F: lib/errseq.c
7025
7026 ET131X NETWORK DRIVER
7027 M: Mark Einon <mark.einon@gmail.com>
7028 S: Odd Fixes
7029 F: drivers/net/ethernet/agere/
7030
7031 ETAS ES58X CAN/USB DRIVER
7032 M: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7033 L: linux-can@vger.kernel.org
7034 S: Maintained
7035 F: drivers/net/can/usb/etas_es58x/
7036
7037 ETHERNET BRIDGE
7038 M: Roopa Prabhu <roopa@nvidia.com>
7039 M: Nikolay Aleksandrov <nikolay@nvidia.com>
7040 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
7041 L: netdev@vger.kernel.org
7042 S: Maintained
7043 W: http://www.linuxfoundation.org/en/Net:Bridge
7044 F: include/linux/netfilter_bridge/
7045 F: net/bridge/
7046
7047 ETHERNET PHY LIBRARY
7048 M: Andrew Lunn <andrew@lunn.ch>
7049 M: Heiner Kallweit <hkallweit1@gmail.com>
7050 R: Russell King <linux@armlinux.org.uk>
7051 L: netdev@vger.kernel.org
7052 S: Maintained
7053 F: Documentation/ABI/testing/sysfs-class-net-phydev
7054 F: Documentation/devicetree/bindings/net/ethernet-phy.yaml
7055 F: Documentation/devicetree/bindings/net/mdio*
7056 F: Documentation/devicetree/bindings/net/qca,ar803x.yaml
7057 F: Documentation/networking/phy.rst
7058 F: drivers/net/mdio/
7059 F: drivers/net/mdio/acpi_mdio.c
7060 F: drivers/net/mdio/fwnode_mdio.c
7061 F: drivers/net/mdio/of_mdio.c
7062 F: drivers/net/pcs/
7063 F: drivers/net/phy/
7064 F: include/dt-bindings/net/qca-ar803x.h
7065 F: include/linux/*mdio*.h
7066 F: include/linux/mdio/*.h
7067 F: include/linux/of_net.h
7068 F: include/linux/phy.h
7069 F: include/linux/phy_fixed.h
7070 F: include/linux/platform_data/mdio-bcm-unimac.h
7071 F: include/linux/platform_data/mdio-gpio.h
7072 F: include/trace/events/mdio.h
7073 F: include/uapi/linux/mdio.h
7074 F: include/uapi/linux/mii.h
7075 F: net/core/of_net.c
7076
7077 EXFAT FILE SYSTEM
7078 M: Namjae Jeon <linkinjeon@kernel.org>
7079 M: Sungjong Seo <sj1557.seo@samsung.com>
7080 L: linux-fsdevel@vger.kernel.org
7081 S: Maintained
7082 F: fs/exfat/
7083
7084 EXT2 FILE SYSTEM
7085 M: Jan Kara <jack@suse.com>
7086 L: linux-ext4@vger.kernel.org
7087 S: Maintained
7088 F: Documentation/filesystems/ext2.rst
7089 F: fs/ext2/
7090 F: include/linux/ext2*
7091
7092 EXT4 FILE SYSTEM
7093 M: "Theodore Ts'o" <tytso@mit.edu>
7094 M: Andreas Dilger <adilger.kernel@dilger.ca>
7095 L: linux-ext4@vger.kernel.org
7096 S: Maintained
7097 W: http://ext4.wiki.kernel.org
7098 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
7099 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7100 F: Documentation/filesystems/ext4/
7101 F: fs/ext4/
7102 F: include/trace/events/ext4.h
7103
7104 Extended Verification Module (EVM)
7105 M: Mimi Zohar <zohar@linux.ibm.com>
7106 L: linux-integrity@vger.kernel.org
7107 S: Supported
7108 F: security/integrity/evm/
7109
7110 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7111 M: Ard Biesheuvel <ardb@kernel.org>
7112 L: linux-efi@vger.kernel.org
7113 S: Maintained
7114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7115 F: Documentation/admin-guide/efi-stub.rst
7116 F: arch/*/include/asm/efi.h
7117 F: arch/*/kernel/efi.c
7118 F: arch/arm/boot/compressed/efi-header.S
7119 F: arch/arm64/kernel/efi-entry.S
7120 F: arch/x86/platform/efi/
7121 F: drivers/firmware/efi/
7122 F: include/linux/efi*.h
7123
7124 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7125 M: MyungJoo Ham <myungjoo.ham@samsung.com>
7126 M: Chanwoo Choi <cw00.choi@samsung.com>
7127 L: linux-kernel@vger.kernel.org
7128 S: Maintained
7129 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7130 F: Documentation/devicetree/bindings/extcon/
7131 F: Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7132 F: drivers/extcon/
7133 F: include/linux/extcon.h
7134 F: include/linux/extcon/
7135
7136 EXTRA BOOT CONFIG
7137 M: Masami Hiramatsu <mhiramat@kernel.org>
7138 S: Maintained
7139 F: Documentation/admin-guide/bootconfig.rst
7140 F: fs/proc/bootconfig.c
7141 F: include/linux/bootconfig.h
7142 F: lib/bootconfig.c
7143 F: tools/bootconfig/*
7144 F: tools/bootconfig/scripts/*
7145
7146 EXYNOS DP DRIVER
7147 M: Jingoo Han <jingoohan1@gmail.com>
7148 L: dri-devel@lists.freedesktop.org
7149 S: Maintained
7150 F: drivers/gpu/drm/exynos/exynos_dp*
7151
7152 EXYNOS SYSMMU (IOMMU) driver
7153 M: Marek Szyprowski <m.szyprowski@samsung.com>
7154 L: iommu@lists.linux-foundation.org
7155 S: Maintained
7156 F: drivers/iommu/exynos-iommu.c
7157
7158 F2FS FILE SYSTEM
7159 M: Jaegeuk Kim <jaegeuk@kernel.org>
7160 M: Chao Yu <chao@kernel.org>
7161 L: linux-f2fs-devel@lists.sourceforge.net
7162 S: Maintained
7163 W: https://f2fs.wiki.kernel.org/
7164 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7165 F: Documentation/ABI/testing/sysfs-fs-f2fs
7166 F: Documentation/filesystems/f2fs.rst
7167 F: fs/f2fs/
7168 F: include/linux/f2fs_fs.h
7169 F: include/trace/events/f2fs.h
7170 F: include/uapi/linux/f2fs.h
7171
7172 F71805F HARDWARE MONITORING DRIVER
7173 M: Jean Delvare <jdelvare@suse.com>
7174 L: linux-hwmon@vger.kernel.org
7175 S: Maintained
7176 F: Documentation/hwmon/f71805f.rst
7177 F: drivers/hwmon/f71805f.c
7178
7179 FADDR2LINE
7180 M: Josh Poimboeuf <jpoimboe@redhat.com>
7181 S: Maintained
7182 F: scripts/faddr2line
7183
7184 FAILOVER MODULE
7185 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
7186 L: netdev@vger.kernel.org
7187 S: Supported
7188 F: Documentation/networking/failover.rst
7189 F: include/net/failover.h
7190 F: net/core/failover.c
7191
7192 FANOTIFY
7193 M: Jan Kara <jack@suse.cz>
7194 R: Amir Goldstein <amir73il@gmail.com>
7195 R: Matthew Bobrowski <repnop@google.com>
7196 L: linux-fsdevel@vger.kernel.org
7197 S: Maintained
7198 F: fs/notify/fanotify/
7199 F: include/linux/fanotify.h
7200 F: include/uapi/linux/fanotify.h
7201
7202 FARSYNC SYNCHRONOUS DRIVER
7203 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
7204 S: Supported
7205 W: http://www.farsite.co.uk/
7206 F: drivers/net/wan/farsync.*
7207
7208 FAULT INJECTION SUPPORT
7209 M: Akinobu Mita <akinobu.mita@gmail.com>
7210 S: Supported
7211 F: Documentation/fault-injection/
7212 F: lib/fault-inject.c
7213
7214 FBTFT Framebuffer drivers
7215 L: dri-devel@lists.freedesktop.org
7216 L: linux-fbdev@vger.kernel.org
7217 S: Orphan
7218 F: drivers/staging/fbtft/
7219
7220 FC0011 TUNER DRIVER
7221 M: Michael Buesch <m@bues.ch>
7222 L: linux-media@vger.kernel.org
7223 S: Maintained
7224 F: drivers/media/tuners/fc0011.c
7225 F: drivers/media/tuners/fc0011.h
7226
7227 FC2580 MEDIA DRIVER
7228 M: Antti Palosaari <crope@iki.fi>
7229 L: linux-media@vger.kernel.org
7230 S: Maintained
7231 W: https://linuxtv.org
7232 W: http://palosaari.fi/linux/
7233 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7234 T: git git://linuxtv.org/anttip/media_tree.git
7235 F: drivers/media/tuners/fc2580*
7236
7237 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7238 M: Hannes Reinecke <hare@suse.de>
7239 L: linux-scsi@vger.kernel.org
7240 S: Supported
7241 W: www.Open-FCoE.org
7242 F: drivers/scsi/fcoe/
7243 F: drivers/scsi/libfc/
7244 F: include/scsi/fc/
7245 F: include/scsi/libfc.h
7246 F: include/scsi/libfcoe.h
7247 F: include/uapi/scsi/fc/
7248
7249 FILE LOCKING (flock() and fcntl()/lockf())
7250 M: Jeff Layton <jlayton@kernel.org>
7251 M: "J. Bruce Fields" <bfields@fieldses.org>
7252 L: linux-fsdevel@vger.kernel.org
7253 S: Maintained
7254 F: fs/fcntl.c
7255 F: fs/locks.c
7256 F: include/linux/fcntl.h
7257 F: include/uapi/linux/fcntl.h
7258
7259 FILESYSTEM DIRECT ACCESS (DAX)
7260 M: Dan Williams <dan.j.williams@intel.com>
7261 R: Matthew Wilcox <willy@infradead.org>
7262 R: Jan Kara <jack@suse.cz>
7263 L: linux-fsdevel@vger.kernel.org
7264 L: nvdimm@lists.linux.dev
7265 S: Supported
7266 F: fs/dax.c
7267 F: include/linux/dax.h
7268 F: include/trace/events/fs_dax.h
7269
7270 FILESYSTEMS (VFS and infrastructure)
7271 M: Alexander Viro <viro@zeniv.linux.org.uk>
7272 L: linux-fsdevel@vger.kernel.org
7273 S: Maintained
7274 F: fs/*
7275 F: include/linux/fs.h
7276 F: include/linux/fs_types.h
7277 F: include/uapi/linux/fs.h
7278 F: include/uapi/linux/openat2.h
7279 X: fs/io-wq.c
7280 X: fs/io-wq.h
7281 X: fs/io_uring.c
7282
7283 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7284 M: Riku Voipio <riku.voipio@iki.fi>
7285 L: linux-hwmon@vger.kernel.org
7286 S: Maintained
7287 F: drivers/hwmon/f75375s.c
7288 F: include/linux/f75375s.h
7289
7290 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7291 M: Clemens Ladisch <clemens@ladisch.de>
7292 M: Takashi Sakamoto <o-takashi@sakamocchi.jp>
7293 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7294 S: Maintained
7295 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7296 F: include/uapi/sound/firewire.h
7297 F: sound/firewire/
7298
7299 FIREWIRE MEDIA DRIVERS (firedtv)
7300 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7301 L: linux-media@vger.kernel.org
7302 L: linux1394-devel@lists.sourceforge.net
7303 S: Maintained
7304 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7305 F: drivers/media/firewire/
7306
7307 FIREWIRE SBP-2 TARGET
7308 M: Chris Boot <bootc@bootc.net>
7309 L: linux-scsi@vger.kernel.org
7310 L: target-devel@vger.kernel.org
7311 L: linux1394-devel@lists.sourceforge.net
7312 S: Maintained
7313 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7314 F: drivers/target/sbp/
7315
7316 FIREWIRE SUBSYSTEM
7317 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7318 L: linux1394-devel@lists.sourceforge.net
7319 S: Maintained
7320 W: http://ieee1394.wiki.kernel.org/
7321 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7322 F: drivers/firewire/
7323 F: include/linux/firewire.h
7324 F: include/uapi/linux/firewire*.h
7325 F: tools/firewire/
7326
7327 FIRMWARE FRAMEWORK FOR ARMV8-A
7328 M: Sudeep Holla <sudeep.holla@arm.com>
7329 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7330 S: Maintained
7331 F: drivers/firmware/arm_ffa/
7332 F: include/linux/arm_ffa.h
7333
7334 FIRMWARE LOADER (request_firmware)
7335 M: Luis Chamberlain <mcgrof@kernel.org>
7336 L: linux-kernel@vger.kernel.org
7337 S: Maintained
7338 F: Documentation/firmware_class/
7339 F: drivers/base/firmware_loader/
7340 F: include/linux/firmware.h
7341
7342 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7343 M: Joshua Morris <josh.h.morris@us.ibm.com>
7344 M: Philip Kelleher <pjk1939@linux.ibm.com>
7345 S: Maintained
7346 F: drivers/block/rsxx/
7347
7348 FLEXTIMER FTM-QUADDEC DRIVER
7349 M: Patrick Havelange <patrick.havelange@essensium.com>
7350 L: linux-iio@vger.kernel.org
7351 S: Maintained
7352 F: Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7353 F: drivers/counter/ftm-quaddec.c
7354
7355 FLOPPY DRIVER
7356 M: Denis Efremov <efremov@linux.com>
7357 L: linux-block@vger.kernel.org
7358 S: Odd Fixes
7359 F: drivers/block/floppy.c
7360
7361 FLYSKY FSIA6B RC RECEIVER
7362 M: Markus Koch <markus@notsyncing.net>
7363 L: linux-input@vger.kernel.org
7364 S: Maintained
7365 F: drivers/input/joystick/fsia6b.c
7366
7367 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7368 M: Geoffrey D. Bennett <g@b4.vu>
7369 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7370 S: Maintained
7371 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7372 F: sound/usb/mixer_scarlett_gen2.c
7373
7374 FORCEDETH GIGABIT ETHERNET DRIVER
7375 M: Rain River <rain.1986.08.12@gmail.com>
7376 M: Zhu Yanjun <zyjzyj2000@gmail.com>
7377 L: netdev@vger.kernel.org
7378 S: Maintained
7379 F: drivers/net/ethernet/nvidia/*
7380
7381 FPGA DFL DRIVERS
7382 M: Wu Hao <hao.wu@intel.com>
7383 R: Tom Rix <trix@redhat.com>
7384 L: linux-fpga@vger.kernel.org
7385 S: Maintained
7386 F: Documentation/ABI/testing/sysfs-bus-dfl*
7387 F: Documentation/fpga/dfl.rst
7388 F: drivers/fpga/dfl*
7389 F: drivers/uio/uio_dfl.c
7390 F: include/linux/dfl.h
7391 F: include/uapi/linux/fpga-dfl.h
7392
7393 FPGA MANAGER FRAMEWORK
7394 M: Moritz Fischer <mdf@kernel.org>
7395 M: Wu Hao <hao.wu@intel.com>
7396 M: Xu Yilun <yilun.xu@intel.com>
7397 R: Tom Rix <trix@redhat.com>
7398 L: linux-fpga@vger.kernel.org
7399 S: Maintained
7400 Q: http://patchwork.kernel.org/project/linux-fpga/list/
7401 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7402 F: Documentation/devicetree/bindings/fpga/
7403 F: Documentation/driver-api/fpga/
7404 F: Documentation/fpga/
7405 F: drivers/fpga/
7406 F: include/linux/fpga/
7407
7408 FPU EMULATOR
7409 M: Bill Metzenthen <billm@melbpc.org.au>
7410 S: Maintained
7411 W: http://floatingpoint.sourceforge.net/emulator/index.html
7412 F: arch/x86/math-emu/
7413
7414 FRAMEBUFFER LAYER
7415 L: dri-devel@lists.freedesktop.org
7416 L: linux-fbdev@vger.kernel.org
7417 S: Orphan
7418 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
7419 T: git git://anongit.freedesktop.org/drm/drm-misc
7420 F: Documentation/fb/
7421 F: drivers/video/
7422 F: include/linux/fb.h
7423 F: include/uapi/linux/fb.h
7424 F: include/uapi/video/
7425 F: include/video/
7426
7427 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7428 M: Horia Geantă <horia.geanta@nxp.com>
7429 M: Pankaj Gupta <pankaj.gupta@nxp.com>
7430 L: linux-crypto@vger.kernel.org
7431 S: Maintained
7432 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7433 F: drivers/crypto/caam/
7434
7435 FREESCALE COLDFIRE M5441X MMC DRIVER
7436 M: Angelo Dureghello <angelo.dureghello@timesys.com>
7437 L: linux-mmc@vger.kernel.org
7438 S: Maintained
7439 F: drivers/mmc/host/sdhci-esdhc-mcf.c
7440 F: include/linux/platform_data/mmc-esdhc-mcf.h
7441
7442 FREESCALE DIU FRAMEBUFFER DRIVER
7443 M: Timur Tabi <timur@kernel.org>
7444 L: linux-fbdev@vger.kernel.org
7445 S: Maintained
7446 F: drivers/video/fbdev/fsl-diu-fb.*
7447
7448 FREESCALE DMA DRIVER
7449 M: Li Yang <leoyang.li@nxp.com>
7450 M: Zhang Wei <zw@zh-kernel.org>
7451 L: linuxppc-dev@lists.ozlabs.org
7452 S: Maintained
7453 F: drivers/dma/fsldma.*
7454
7455 FREESCALE DSPI DRIVER
7456 M: Vladimir Oltean <olteanv@gmail.com>
7457 L: linux-spi@vger.kernel.org
7458 S: Maintained
7459 F: Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7460 F: drivers/spi/spi-fsl-dspi.c
7461 F: include/linux/spi/spi-fsl-dspi.h
7462
7463 FREESCALE ENETC ETHERNET DRIVERS
7464 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7465 L: netdev@vger.kernel.org
7466 S: Maintained
7467 F: drivers/net/ethernet/freescale/enetc/
7468
7469 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7470 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7471 L: netdev@vger.kernel.org
7472 S: Maintained
7473 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7474 F: drivers/net/ethernet/freescale/gianfar*
7475
7476 FREESCALE GPMI NAND DRIVER
7477 M: Han Xu <han.xu@nxp.com>
7478 L: linux-mtd@lists.infradead.org
7479 S: Maintained
7480 F: drivers/mtd/nand/raw/gpmi-nand/*
7481
7482 FREESCALE I2C CPM DRIVER
7483 M: Jochen Friedrich <jochen@scram.de>
7484 L: linuxppc-dev@lists.ozlabs.org
7485 L: linux-i2c@vger.kernel.org
7486 S: Maintained
7487 F: drivers/i2c/busses/i2c-cpm.c
7488
7489 FREESCALE IMX / MXC FEC DRIVER
7490 M: Joakim Zhang <qiangqing.zhang@nxp.com>
7491 L: netdev@vger.kernel.org
7492 S: Maintained
7493 F: Documentation/devicetree/bindings/net/fsl,fec.yaml
7494 F: drivers/net/ethernet/freescale/fec.h
7495 F: drivers/net/ethernet/freescale/fec_main.c
7496 F: drivers/net/ethernet/freescale/fec_ptp.c
7497
7498 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7499 M: Sascha Hauer <s.hauer@pengutronix.de>
7500 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7501 L: linux-fbdev@vger.kernel.org
7502 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7503 S: Maintained
7504 F: drivers/video/fbdev/imxfb.c
7505 F: include/linux/platform_data/video-imxfb.h
7506
7507 FREESCALE IMX DDR PMU DRIVER
7508 M: Frank Li <Frank.li@nxp.com>
7509 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7510 S: Maintained
7511 F: Documentation/admin-guide/perf/imx-ddr.rst
7512 F: Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7513 F: drivers/perf/fsl_imx8_ddr_perf.c
7514
7515 FREESCALE IMX I2C DRIVER
7516 M: Oleksij Rempel <o.rempel@pengutronix.de>
7517 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7518 L: linux-i2c@vger.kernel.org
7519 S: Maintained
7520 F: Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7521 F: drivers/i2c/busses/i2c-imx.c
7522
7523 FREESCALE IMX LPI2C DRIVER
7524 M: Dong Aisheng <aisheng.dong@nxp.com>
7525 L: linux-i2c@vger.kernel.org
7526 L: linux-imx@nxp.com
7527 S: Maintained
7528 F: Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7529 F: drivers/i2c/busses/i2c-imx-lpi2c.c
7530
7531 FREESCALE MPC I2C DRIVER
7532 M: Chris Packham <chris.packham@alliedtelesis.co.nz>
7533 L: linux-i2c@vger.kernel.org
7534 S: Maintained
7535 F: Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7536 F: drivers/i2c/busses/i2c-mpc.c
7537
7538 FREESCALE QORIQ DPAA ETHERNET DRIVER
7539 M: Madalin Bucur <madalin.bucur@nxp.com>
7540 L: netdev@vger.kernel.org
7541 S: Maintained
7542 F: drivers/net/ethernet/freescale/dpaa
7543
7544 FREESCALE QORIQ DPAA FMAN DRIVER
7545 M: Madalin Bucur <madalin.bucur@nxp.com>
7546 L: netdev@vger.kernel.org
7547 S: Maintained
7548 F: Documentation/devicetree/bindings/net/fsl-fman.txt
7549 F: drivers/net/ethernet/freescale/fman
7550
7551 FREESCALE QORIQ PTP CLOCK DRIVER
7552 M: Yangbo Lu <yangbo.lu@nxp.com>
7553 L: netdev@vger.kernel.org
7554 S: Maintained
7555 F: Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7556 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7557 F: drivers/net/ethernet/freescale/dpaa2/dprtc*
7558 F: drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7559 F: drivers/ptp/ptp_qoriq.c
7560 F: drivers/ptp/ptp_qoriq_debugfs.c
7561 F: include/linux/fsl/ptp_qoriq.h
7562
7563 FREESCALE QUAD SPI DRIVER
7564 M: Han Xu <han.xu@nxp.com>
7565 L: linux-spi@vger.kernel.org
7566 S: Maintained
7567 F: Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7568 F: drivers/spi/spi-fsl-qspi.c
7569
7570 FREESCALE QUICC ENGINE LIBRARY
7571 M: Qiang Zhao <qiang.zhao@nxp.com>
7572 L: linuxppc-dev@lists.ozlabs.org
7573 S: Maintained
7574 F: drivers/soc/fsl/qe/
7575 F: include/soc/fsl/*qe*.h
7576 F: include/soc/fsl/*ucc*.h
7577
7578 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7579 M: Li Yang <leoyang.li@nxp.com>
7580 L: netdev@vger.kernel.org
7581 L: linuxppc-dev@lists.ozlabs.org
7582 S: Maintained
7583 F: drivers/net/ethernet/freescale/ucc_geth*
7584
7585 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7586 M: Zhao Qiang <qiang.zhao@nxp.com>
7587 L: netdev@vger.kernel.org
7588 L: linuxppc-dev@lists.ozlabs.org
7589 S: Maintained
7590 F: drivers/net/wan/fsl_ucc_hdlc*
7591
7592 FREESCALE QUICC ENGINE UCC UART DRIVER
7593 M: Timur Tabi <timur@kernel.org>
7594 L: linuxppc-dev@lists.ozlabs.org
7595 S: Maintained
7596 F: drivers/tty/serial/ucc_uart.c
7597
7598 FREESCALE SOC DRIVERS
7599 M: Li Yang <leoyang.li@nxp.com>
7600 L: linuxppc-dev@lists.ozlabs.org
7601 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7602 S: Maintained
7603 F: Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7604 F: Documentation/devicetree/bindings/soc/fsl/
7605 F: drivers/soc/fsl/
7606 F: include/linux/fsl/
7607
7608 FREESCALE SOC FS_ENET DRIVER
7609 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
7610 L: linuxppc-dev@lists.ozlabs.org
7611 L: netdev@vger.kernel.org
7612 S: Maintained
7613 F: drivers/net/ethernet/freescale/fs_enet/
7614 F: include/linux/fs_enet_pd.h
7615
7616 FREESCALE SOC SOUND DRIVERS
7617 M: Nicolin Chen <nicoleotsuka@gmail.com>
7618 M: Xiubo Li <Xiubo.Lee@gmail.com>
7619 R: Fabio Estevam <festevam@gmail.com>
7620 R: Shengjiu Wang <shengjiu.wang@gmail.com>
7621 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7622 L: linuxppc-dev@lists.ozlabs.org
7623 S: Maintained
7624 F: sound/soc/fsl/fsl*
7625 F: sound/soc/fsl/imx*
7626 F: sound/soc/fsl/mpc8610_hpcd.c
7627
7628 FREESCALE USB PERIPHERAL DRIVERS
7629 M: Li Yang <leoyang.li@nxp.com>
7630 L: linux-usb@vger.kernel.org
7631 L: linuxppc-dev@lists.ozlabs.org
7632 S: Maintained
7633 F: drivers/usb/gadget/udc/fsl*
7634
7635 FREESCALE USB PHY DRIVER
7636 M: Ran Wang <ran.wang_1@nxp.com>
7637 L: linux-usb@vger.kernel.org
7638 L: linuxppc-dev@lists.ozlabs.org
7639 S: Maintained
7640 F: drivers/usb/phy/phy-fsl-usb*
7641
7642 FREEVXFS FILESYSTEM
7643 M: Christoph Hellwig <hch@infradead.org>
7644 S: Maintained
7645 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
7646 F: fs/freevxfs/
7647
7648 FREEZER
7649 M: "Rafael J. Wysocki" <rafael@kernel.org>
7650 M: Pavel Machek <pavel@ucw.cz>
7651 L: linux-pm@vger.kernel.org
7652 S: Supported
7653 F: Documentation/power/freezing-of-tasks.rst
7654 F: include/linux/freezer.h
7655 F: kernel/freezer.c
7656
7657 FRONTSWAP API
7658 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7659 L: linux-kernel@vger.kernel.org
7660 S: Maintained
7661 F: include/linux/frontswap.h
7662 F: mm/frontswap.c
7663
7664 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7665 M: David Howells <dhowells@redhat.com>
7666 L: linux-cachefs@redhat.com (moderated for non-subscribers)
7667 S: Supported
7668 F: Documentation/filesystems/caching/
7669 F: fs/fscache/
7670 F: include/linux/fscache*.h
7671
7672 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7673 M: Theodore Y. Ts'o <tytso@mit.edu>
7674 M: Jaegeuk Kim <jaegeuk@kernel.org>
7675 M: Eric Biggers <ebiggers@kernel.org>
7676 L: linux-fscrypt@vger.kernel.org
7677 S: Supported
7678 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7679 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7680 F: Documentation/filesystems/fscrypt.rst
7681 F: fs/crypto/
7682 F: include/linux/fscrypt*.h
7683 F: include/uapi/linux/fscrypt.h
7684
7685 FSI SUBSYSTEM
7686 M: Jeremy Kerr <jk@ozlabs.org>
7687 M: Joel Stanley <joel@jms.id.au>
7688 R: Alistar Popple <alistair@popple.id.au>
7689 R: Eddie James <eajames@linux.ibm.com>
7690 L: linux-fsi@lists.ozlabs.org
7691 S: Supported
7692 Q: http://patchwork.ozlabs.org/project/linux-fsi/list/
7693 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7694 F: drivers/fsi/
7695 F: include/linux/fsi*.h
7696 F: include/trace/events/fsi*.h
7697
7698 FSI-ATTACHED I2C DRIVER
7699 M: Eddie James <eajames@linux.ibm.com>
7700 L: linux-i2c@vger.kernel.org
7701 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
7702 S: Maintained
7703 F: Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7704 F: drivers/i2c/busses/i2c-fsi.c
7705
7706 FSI-ATTACHED SPI DRIVER
7707 M: Eddie James <eajames@linux.ibm.com>
7708 L: linux-spi@vger.kernel.org
7709 S: Maintained
7710 F: Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7711 F: drivers/spi/spi-fsi.c
7712
7713 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7714 M: Jan Kara <jack@suse.cz>
7715 R: Amir Goldstein <amir73il@gmail.com>
7716 L: linux-fsdevel@vger.kernel.org
7717 S: Maintained
7718 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7719 F: fs/notify/
7720 F: include/linux/fsnotify*.h
7721
7722 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7723 M: Eric Biggers <ebiggers@kernel.org>
7724 M: Theodore Y. Ts'o <tytso@mit.edu>
7725 L: linux-fscrypt@vger.kernel.org
7726 S: Supported
7727 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7728 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7729 F: Documentation/filesystems/fsverity.rst
7730 F: fs/verity/
7731 F: include/linux/fsverity.h
7732 F: include/uapi/linux/fsverity.h
7733
7734 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7735 M: Michael Zaidman <michael.zaidman@gmail.com>
7736 L: linux-i2c@vger.kernel.org
7737 L: linux-input@vger.kernel.org
7738 S: Maintained
7739 F: drivers/hid/hid-ft260.c
7740
7741 FUJITSU LAPTOP EXTRAS
7742 M: Jonathan Woithe <jwoithe@just42.net>
7743 L: platform-driver-x86@vger.kernel.org
7744 S: Maintained
7745 F: drivers/platform/x86/fujitsu-laptop.c
7746
7747 FUJITSU M-5MO LS CAMERA ISP DRIVER
7748 M: Kyungmin Park <kyungmin.park@samsung.com>
7749 M: Heungjun Kim <riverful.kim@samsung.com>
7750 L: linux-media@vger.kernel.org
7751 S: Maintained
7752 F: drivers/media/i2c/m5mols/
7753 F: include/media/i2c/m5mols.h
7754
7755 FUJITSU TABLET EXTRAS
7756 M: Robert Gerlach <khnz@gmx.de>
7757 L: platform-driver-x86@vger.kernel.org
7758 S: Maintained
7759 F: drivers/platform/x86/fujitsu-tablet.c
7760
7761 FUSE: FILESYSTEM IN USERSPACE
7762 M: Miklos Szeredi <miklos@szeredi.hu>
7763 L: linux-fsdevel@vger.kernel.org
7764 S: Maintained
7765 W: https://github.com/libfuse/
7766 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7767 F: Documentation/filesystems/fuse.rst
7768 F: fs/fuse/
7769 F: include/uapi/linux/fuse.h
7770
7771 FUTEX SUBSYSTEM
7772 M: Thomas Gleixner <tglx@linutronix.de>
7773 M: Ingo Molnar <mingo@redhat.com>
7774 R: Peter Zijlstra <peterz@infradead.org>
7775 R: Darren Hart <dvhart@infradead.org>
7776 R: Davidlohr Bueso <dave@stgolabs.net>
7777 L: linux-kernel@vger.kernel.org
7778 S: Maintained
7779 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7780 F: Documentation/locking/*futex*
7781 F: include/asm-generic/futex.h
7782 F: include/linux/futex.h
7783 F: include/uapi/linux/futex.h
7784 F: kernel/futex.c
7785 F: tools/perf/bench/futex*
7786 F: tools/testing/selftests/futex/
7787
7788 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7789 M: Tim Harvey <tharvey@gateworks.com>
7790 M: Robert Jones <rjones@gateworks.com>
7791 S: Maintained
7792 F: Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7793 F: drivers/mfd/gateworks-gsc.c
7794 F: include/linux/mfd/gsc.h
7795 F: Documentation/hwmon/gsc-hwmon.rst
7796 F: drivers/hwmon/gsc-hwmon.c
7797 F: include/linux/platform_data/gsc_hwmon.h
7798
7799 GCC PLUGINS
7800 M: Kees Cook <keescook@chromium.org>
7801 L: linux-hardening@vger.kernel.org
7802 S: Maintained
7803 F: Documentation/kbuild/gcc-plugins.rst
7804 F: scripts/Makefile.gcc-plugins
7805 F: scripts/gcc-plugins/
7806
7807 GCOV BASED KERNEL PROFILING
7808 M: Peter Oberparleiter <oberpar@linux.ibm.com>
7809 S: Maintained
7810 F: Documentation/dev-tools/gcov.rst
7811 F: kernel/gcov/
7812
7813 GDB KERNEL DEBUGGING HELPER SCRIPTS
7814 M: Jan Kiszka <jan.kiszka@siemens.com>
7815 M: Kieran Bingham <kbingham@kernel.org>
7816 S: Supported
7817 F: scripts/gdb/
7818
7819 GEMINI CRYPTO DRIVER
7820 M: Corentin Labbe <clabbe@baylibre.com>
7821 L: linux-crypto@vger.kernel.org
7822 S: Maintained
7823 F: drivers/crypto/gemini/
7824
7825 GEMTEK FM RADIO RECEIVER DRIVER
7826 M: Hans Verkuil <hverkuil@xs4all.nl>
7827 L: linux-media@vger.kernel.org
7828 S: Maintained
7829 W: https://linuxtv.org
7830 T: git git://linuxtv.org/media_tree.git
7831 F: drivers/media/radio/radio-gemtek*
7832
7833 GENERIC ARCHITECTURE TOPOLOGY
7834 M: Sudeep Holla <sudeep.holla@arm.com>
7835 L: linux-kernel@vger.kernel.org
7836 S: Maintained
7837 F: drivers/base/arch_topology.c
7838 F: include/linux/arch_topology.h
7839
7840 GENERIC ENTRY CODE
7841 M: Thomas Gleixner <tglx@linutronix.de>
7842 M: Peter Zijlstra <peterz@infradead.org>
7843 M: Andy Lutomirski <luto@kernel.org>
7844 L: linux-kernel@vger.kernel.org
7845 S: Maintained
7846 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7847 F: include/linux/entry-common.h
7848 F: include/linux/entry-kvm.h
7849 F: kernel/entry/
7850
7851 GENERIC GPIO I2C DRIVER
7852 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7853 S: Supported
7854 F: drivers/i2c/busses/i2c-gpio.c
7855 F: include/linux/platform_data/i2c-gpio.h
7856
7857 GENERIC GPIO I2C MULTIPLEXER DRIVER
7858 M: Peter Korsgaard <peter.korsgaard@barco.com>
7859 L: linux-i2c@vger.kernel.org
7860 S: Supported
7861 F: Documentation/i2c/muxes/i2c-mux-gpio.rst
7862 F: drivers/i2c/muxes/i2c-mux-gpio.c
7863 F: include/linux/platform_data/i2c-mux-gpio.h
7864
7865 GENERIC HDLC (WAN) DRIVERS
7866 M: Krzysztof Halasa <khc@pm.waw.pl>
7867 S: Maintained
7868 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
7869 F: drivers/net/wan/c101.c
7870 F: drivers/net/wan/hd6457*
7871 F: drivers/net/wan/hdlc*
7872 F: drivers/net/wan/n2.c
7873 F: drivers/net/wan/pc300too.c
7874 F: drivers/net/wan/pci200syn.c
7875 F: drivers/net/wan/wanxl*
7876
7877 GENERIC INCLUDE/ASM HEADER FILES
7878 M: Arnd Bergmann <arnd@arndb.de>
7879 L: linux-arch@vger.kernel.org
7880 S: Maintained
7881 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7882 F: include/asm-generic/
7883 F: include/uapi/asm-generic/
7884
7885 GENERIC PHY FRAMEWORK
7886 M: Kishon Vijay Abraham I <kishon@ti.com>
7887 M: Vinod Koul <vkoul@kernel.org>
7888 L: linux-phy@lists.infradead.org
7889 S: Supported
7890 Q: https://patchwork.kernel.org/project/linux-phy/list/
7891 T: git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7892 F: Documentation/devicetree/bindings/phy/
7893 F: drivers/phy/
7894 F: include/linux/phy/
7895
7896 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7897 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7898 S: Supported
7899 F: drivers/i2c/muxes/i2c-demux-pinctrl.c
7900
7901 GENERIC PM DOMAINS
7902 M: "Rafael J. Wysocki" <rafael@kernel.org>
7903 M: Kevin Hilman <khilman@kernel.org>
7904 M: Ulf Hansson <ulf.hansson@linaro.org>
7905 L: linux-pm@vger.kernel.org
7906 S: Supported
7907 F: Documentation/devicetree/bindings/power/power?domain*
7908 F: drivers/base/power/domain*.c
7909 F: include/linux/pm_domain.h
7910
7911 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7912 M: Eugen Hristev <eugen.hristev@microchip.com>
7913 L: linux-input@vger.kernel.org
7914 S: Maintained
7915 F: drivers/input/touchscreen/resistive-adc-touch.c
7916
7917 GENERIC STRING LIBRARY
7918 R: Andy Shevchenko <andy@kernel.org>
7919 S: Maintained
7920 F: lib/string.c
7921 F: lib/string_helpers.c
7922 F: lib/test_string.c
7923 F: lib/test-string_helpers.c
7924
7925 GENERIC UIO DRIVER FOR PCI DEVICES
7926 M: "Michael S. Tsirkin" <mst@redhat.com>
7927 L: kvm@vger.kernel.org
7928 S: Supported
7929 F: drivers/uio/uio_pci_generic.c
7930
7931 GENERIC VDSO LIBRARY
7932 M: Andy Lutomirski <luto@kernel.org>
7933 M: Thomas Gleixner <tglx@linutronix.de>
7934 M: Vincenzo Frascino <vincenzo.frascino@arm.com>
7935 L: linux-kernel@vger.kernel.org
7936 S: Maintained
7937 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7938 F: include/asm-generic/vdso/vsyscall.h
7939 F: include/vdso/
7940 F: kernel/time/vsyscall.c
7941 F: lib/vdso/
7942
7943 GENWQE (IBM Generic Workqueue Card)
7944 M: Frank Haverkamp <haver@linux.ibm.com>
7945 S: Supported
7946 F: drivers/misc/genwqe/
7947
7948 GET_MAINTAINER SCRIPT
7949 M: Joe Perches <joe@perches.com>
7950 S: Maintained
7951 F: scripts/get_maintainer.pl
7952
7953 GFS2 FILE SYSTEM
7954 M: Bob Peterson <rpeterso@redhat.com>
7955 M: Andreas Gruenbacher <agruenba@redhat.com>
7956 L: cluster-devel@redhat.com
7957 S: Supported
7958 B: https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7959 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7960 F: Documentation/filesystems/gfs2*
7961 F: fs/gfs2/
7962 F: include/uapi/linux/gfs2_ondisk.h
7963
7964 GIGABYTE WMI DRIVER
7965 M: Thomas Weißschuh <thomas@weissschuh.net>
7966 L: platform-driver-x86@vger.kernel.org
7967 S: Maintained
7968 F: drivers/platform/x86/gigabyte-wmi.c
7969
7970 GNSS SUBSYSTEM
7971 M: Johan Hovold <johan@kernel.org>
7972 S: Maintained
7973 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7974 F: Documentation/ABI/testing/sysfs-class-gnss
7975 F: Documentation/devicetree/bindings/gnss/
7976 F: drivers/gnss/
7977 F: include/linux/gnss.h
7978
7979 GO7007 MPEG CODEC
7980 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
7981 L: linux-media@vger.kernel.org
7982 S: Maintained
7983 F: drivers/media/usb/go7007/
7984
7985 GOODIX TOUCHSCREEN
7986 M: Bastien Nocera <hadess@hadess.net>
7987 L: linux-input@vger.kernel.org
7988 S: Maintained
7989 F: drivers/input/touchscreen/goodix.c
7990
7991 GOOGLE ETHERNET DRIVERS
7992 M: Jeroen de Borst <jeroendb@google.com>
7993 R: Catherine Sullivan <csully@google.com>
7994 R: David Awogbemila <awogbemila@google.com>
7995 L: netdev@vger.kernel.org
7996 S: Supported
7997 F: Documentation/networking/device_drivers/ethernet/google/gve.rst
7998 F: drivers/net/ethernet/google
7999
8000 GPD POCKET FAN DRIVER
8001 M: Hans de Goede <hdegoede@redhat.com>
8002 L: platform-driver-x86@vger.kernel.org
8003 S: Maintained
8004 F: drivers/platform/x86/gpd-pocket-fan.c
8005
8006 GPIO ACPI SUPPORT
8007 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8008 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8009 L: linux-gpio@vger.kernel.org
8010 L: linux-acpi@vger.kernel.org
8011 S: Maintained
8012 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8013 F: Documentation/firmware-guide/acpi/gpio-properties.rst
8014 F: drivers/gpio/gpiolib-acpi.c
8015 F: drivers/gpio/gpiolib-acpi.h
8016
8017 GPIO AGGREGATOR
8018 M: Geert Uytterhoeven <geert+renesas@glider.be>
8019 L: linux-gpio@vger.kernel.org
8020 S: Supported
8021 F: Documentation/admin-guide/gpio/gpio-aggregator.rst
8022 F: drivers/gpio/gpio-aggregator.c
8023
8024 GPIO IR Transmitter
8025 M: Sean Young <sean@mess.org>
8026 L: linux-media@vger.kernel.org
8027 S: Maintained
8028 F: drivers/media/rc/gpio-ir-tx.c
8029
8030 GPIO MOCKUP DRIVER
8031 M: Bamvor Jian Zhang <bamv2005@gmail.com>
8032 L: linux-gpio@vger.kernel.org
8033 S: Maintained
8034 F: drivers/gpio/gpio-mockup.c
8035 F: tools/testing/selftests/gpio/
8036
8037 GPIO REGMAP
8038 R: Michael Walle <michael@walle.cc>
8039 S: Maintained
8040 F: drivers/gpio/gpio-regmap.c
8041 F: include/linux/gpio/regmap.h
8042
8043 GPIO SUBSYSTEM
8044 M: Linus Walleij <linus.walleij@linaro.org>
8045 M: Bartosz Golaszewski <brgl@bgdev.pl>
8046 L: linux-gpio@vger.kernel.org
8047 S: Maintained
8048 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8049 F: Documentation/ABI/obsolete/sysfs-gpio
8050 F: Documentation/ABI/testing/gpio-cdev
8051 F: Documentation/admin-guide/gpio/
8052 F: Documentation/devicetree/bindings/gpio/
8053 F: Documentation/driver-api/gpio/
8054 F: drivers/gpio/
8055 F: include/asm-generic/gpio.h
8056 F: include/linux/gpio.h
8057 F: include/linux/gpio/
8058 F: include/linux/of_gpio.h
8059 F: include/uapi/linux/gpio.h
8060 F: tools/gpio/
8061
8062 GRE DEMULTIPLEXER DRIVER
8063 M: Dmitry Kozlov <xeb@mail.ru>
8064 L: netdev@vger.kernel.org
8065 S: Maintained
8066 F: include/net/gre.h
8067 F: net/ipv4/gre_demux.c
8068 F: net/ipv4/gre_offload.c
8069
8070 GRETH 10/100/1G Ethernet MAC device driver
8071 M: Andreas Larsson <andreas@gaisler.com>
8072 L: netdev@vger.kernel.org
8073 S: Maintained
8074 F: drivers/net/ethernet/aeroflex/
8075
8076 GREYBUS AUDIO PROTOCOLS DRIVERS
8077 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
8078 M: Mark Greer <mgreer@animalcreek.com>
8079 S: Maintained
8080 F: drivers/staging/greybus/audio_apbridgea.c
8081 F: drivers/staging/greybus/audio_apbridgea.h
8082 F: drivers/staging/greybus/audio_codec.c
8083 F: drivers/staging/greybus/audio_codec.h
8084 F: drivers/staging/greybus/audio_gb.c
8085 F: drivers/staging/greybus/audio_manager.c
8086 F: drivers/staging/greybus/audio_manager.h
8087 F: drivers/staging/greybus/audio_manager_module.c
8088 F: drivers/staging/greybus/audio_manager_private.h
8089 F: drivers/staging/greybus/audio_manager_sysfs.c
8090 F: drivers/staging/greybus/audio_module.c
8091 F: drivers/staging/greybus/audio_topology.c
8092
8093 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8094 M: Viresh Kumar <vireshk@kernel.org>
8095 S: Maintained
8096 F: drivers/staging/greybus/authentication.c
8097 F: drivers/staging/greybus/bootrom.c
8098 F: drivers/staging/greybus/firmware.h
8099 F: drivers/staging/greybus/fw-core.c
8100 F: drivers/staging/greybus/fw-download.c
8101 F: drivers/staging/greybus/fw-management.c
8102 F: drivers/staging/greybus/greybus_authentication.h
8103 F: drivers/staging/greybus/greybus_firmware.h
8104 F: drivers/staging/greybus/hid.c
8105 F: drivers/staging/greybus/i2c.c
8106 F: drivers/staging/greybus/spi.c
8107 F: drivers/staging/greybus/spilib.c
8108 F: drivers/staging/greybus/spilib.h
8109
8110 GREYBUS LOOPBACK DRIVER
8111 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
8112 S: Maintained
8113 F: drivers/staging/greybus/loopback.c
8114
8115 GREYBUS PLATFORM DRIVERS
8116 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8117 S: Maintained
8118 F: drivers/staging/greybus/arche-apb-ctrl.c
8119 F: drivers/staging/greybus/arche-platform.c
8120 F: drivers/staging/greybus/arche_platform.h
8121
8122 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8123 M: Rui Miguel Silva <rmfrfs@gmail.com>
8124 S: Maintained
8125 F: drivers/staging/greybus/gpio.c
8126 F: drivers/staging/greybus/light.c
8127 F: drivers/staging/greybus/power_supply.c
8128 F: drivers/staging/greybus/sdio.c
8129 F: drivers/staging/greybus/spi.c
8130 F: drivers/staging/greybus/spilib.c
8131
8132 GREYBUS SUBSYSTEM
8133 M: Johan Hovold <johan@kernel.org>
8134 M: Alex Elder <elder@kernel.org>
8135 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8136 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
8137 S: Maintained
8138 F: drivers/greybus/
8139 F: drivers/staging/greybus/
8140 F: include/linux/greybus.h
8141 F: include/linux/greybus/
8142
8143 GREYBUS UART PROTOCOLS DRIVERS
8144 M: David Lin <dtwlin@gmail.com>
8145 S: Maintained
8146 F: drivers/staging/greybus/log.c
8147 F: drivers/staging/greybus/uart.c
8148
8149 GS1662 VIDEO SERIALIZER
8150 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8151 L: linux-media@vger.kernel.org
8152 S: Maintained
8153 T: git git://linuxtv.org/media_tree.git
8154 F: drivers/media/spi/gs1662.c
8155
8156 GSPCA FINEPIX SUBDRIVER
8157 M: Frank Zago <frank@zago.net>
8158 L: linux-media@vger.kernel.org
8159 S: Maintained
8160 T: git git://linuxtv.org/media_tree.git
8161 F: drivers/media/usb/gspca/finepix.c
8162
8163 GSPCA GL860 SUBDRIVER
8164 M: Olivier Lorin <o.lorin@laposte.net>
8165 L: linux-media@vger.kernel.org
8166 S: Maintained
8167 T: git git://linuxtv.org/media_tree.git
8168 F: drivers/media/usb/gspca/gl860/
8169
8170 GSPCA M5602 SUBDRIVER
8171 M: Erik Andren <erik.andren@gmail.com>
8172 L: linux-media@vger.kernel.org
8173 S: Maintained
8174 T: git git://linuxtv.org/media_tree.git
8175 F: drivers/media/usb/gspca/m5602/
8176
8177 GSPCA PAC207 SONIXB SUBDRIVER
8178 M: Hans Verkuil <hverkuil@xs4all.nl>
8179 L: linux-media@vger.kernel.org
8180 S: Odd Fixes
8181 T: git git://linuxtv.org/media_tree.git
8182 F: drivers/media/usb/gspca/pac207.c
8183
8184 GSPCA SN9C20X SUBDRIVER
8185 M: Brian Johnson <brijohn@gmail.com>
8186 L: linux-media@vger.kernel.org
8187 S: Maintained
8188 T: git git://linuxtv.org/media_tree.git
8189 F: drivers/media/usb/gspca/sn9c20x.c
8190
8191 GSPCA T613 SUBDRIVER
8192 M: Leandro Costantino <lcostantino@gmail.com>
8193 L: linux-media@vger.kernel.org
8194 S: Maintained
8195 T: git git://linuxtv.org/media_tree.git
8196 F: drivers/media/usb/gspca/t613.c
8197
8198 GSPCA USB WEBCAM DRIVER
8199 M: Hans Verkuil <hverkuil@xs4all.nl>
8200 L: linux-media@vger.kernel.org
8201 S: Odd Fixes
8202 T: git git://linuxtv.org/media_tree.git
8203 F: drivers/media/usb/gspca/
8204
8205 GTP (GPRS Tunneling Protocol)
8206 M: Pablo Neira Ayuso <pablo@netfilter.org>
8207 M: Harald Welte <laforge@gnumonks.org>
8208 L: osmocom-net-gprs@lists.osmocom.org
8209 S: Maintained
8210 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8211 F: drivers/net/gtp.c
8212
8213 GUID PARTITION TABLE (GPT)
8214 M: Davidlohr Bueso <dave@stgolabs.net>
8215 L: linux-efi@vger.kernel.org
8216 S: Maintained
8217 F: block/partitions/efi.*
8218
8219 H8/300 ARCHITECTURE
8220 M: Yoshinori Sato <ysato@users.sourceforge.jp>
8221 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8222 S: Maintained
8223 W: http://uclinux-h8.sourceforge.jp
8224 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8225 F: arch/h8300/
8226 F: drivers/clk/h8300/
8227 F: drivers/clocksource/h8300_*.c
8228 F: drivers/irqchip/irq-renesas-h8*.c
8229
8230 HABANALABS PCI DRIVER
8231 M: Oded Gabbay <ogabbay@kernel.org>
8232 S: Supported
8233 T: git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8234 F: Documentation/ABI/testing/debugfs-driver-habanalabs
8235 F: Documentation/ABI/testing/sysfs-driver-habanalabs
8236 F: drivers/misc/habanalabs/
8237 F: include/uapi/misc/habanalabs.h
8238
8239 HACKRF MEDIA DRIVER
8240 M: Antti Palosaari <crope@iki.fi>
8241 L: linux-media@vger.kernel.org
8242 S: Maintained
8243 W: https://linuxtv.org
8244 W: http://palosaari.fi/linux/
8245 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8246 T: git git://linuxtv.org/anttip/media_tree.git
8247 F: drivers/media/usb/hackrf/
8248
8249 HANTRO VPU CODEC DRIVER
8250 M: Ezequiel Garcia <ezequiel@collabora.com>
8251 M: Philipp Zabel <p.zabel@pengutronix.de>
8252 L: linux-media@vger.kernel.org
8253 L: linux-rockchip@lists.infradead.org
8254 S: Maintained
8255 F: Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8256 F: Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8257 F: drivers/staging/media/hantro/
8258
8259 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8260 M: Frank Seidel <frank@f-seidel.de>
8261 L: platform-driver-x86@vger.kernel.org
8262 S: Maintained
8263 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8264 F: drivers/platform/x86/hdaps.c
8265
8266 HARDWARE MONITORING
8267 M: Jean Delvare <jdelvare@suse.com>
8268 M: Guenter Roeck <linux@roeck-us.net>
8269 L: linux-hwmon@vger.kernel.org
8270 S: Maintained
8271 W: http://hwmon.wiki.kernel.org/
8272 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8273 F: Documentation/devicetree/bindings/hwmon/
8274 F: Documentation/hwmon/
8275 F: drivers/hwmon/
8276 F: include/linux/hwmon*.h
8277 F: include/trace/events/hwmon*.h
8278 K: (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8279
8280 HARDWARE RANDOM NUMBER GENERATOR CORE
8281 M: Matt Mackall <mpm@selenic.com>
8282 M: Herbert Xu <herbert@gondor.apana.org.au>
8283 L: linux-crypto@vger.kernel.org
8284 S: Odd fixes
8285 F: Documentation/admin-guide/hw_random.rst
8286 F: Documentation/devicetree/bindings/rng/
8287 F: drivers/char/hw_random/
8288 F: include/linux/hw_random.h
8289
8290 HARDWARE SPINLOCK CORE
8291 M: Ohad Ben-Cohen <ohad@wizery.com>
8292 M: Bjorn Andersson <bjorn.andersson@linaro.org>
8293 R: Baolin Wang <baolin.wang7@gmail.com>
8294 L: linux-remoteproc@vger.kernel.org
8295 S: Maintained
8296 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8297 F: Documentation/devicetree/bindings/hwlock/
8298 F: Documentation/locking/hwspinlock.rst
8299 F: drivers/hwspinlock/
8300 F: include/linux/hwspinlock.h
8301
8302 HARDWARE TRACING FACILITIES
8303 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
8304 S: Maintained
8305 F: drivers/hwtracing/
8306
8307 HARMONY SOUND DRIVER
8308 L: linux-parisc@vger.kernel.org
8309 S: Maintained
8310 F: sound/parisc/harmony.*
8311
8312 HDPVR USB VIDEO ENCODER DRIVER
8313 M: Hans Verkuil <hverkuil@xs4all.nl>
8314 L: linux-media@vger.kernel.org
8315 S: Odd Fixes
8316 W: https://linuxtv.org
8317 T: git git://linuxtv.org/media_tree.git
8318 F: drivers/media/usb/hdpvr/
8319
8320 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8321 M: Matt Hsiao <matt.hsiao@hpe.com>
8322 S: Supported
8323 F: drivers/misc/hpilo.[ch]
8324
8325 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8326 M: Jerry Hoemann <jerry.hoemann@hpe.com>
8327 S: Supported
8328 F: Documentation/watchdog/hpwdt.rst
8329 F: drivers/watchdog/hpwdt.c
8330
8331 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8332 M: Don Brace <don.brace@microchip.com>
8333 L: storagedev@microchip.com
8334 L: linux-scsi@vger.kernel.org
8335 S: Supported
8336 F: Documentation/scsi/hpsa.rst
8337 F: drivers/scsi/hpsa*.[ch]
8338 F: include/linux/cciss*.h
8339 F: include/uapi/linux/cciss*.h
8340
8341 HFI1 DRIVER
8342 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8343 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8344 L: linux-rdma@vger.kernel.org
8345 S: Supported
8346 F: drivers/infiniband/hw/hfi1
8347
8348 HFS FILESYSTEM
8349 L: linux-fsdevel@vger.kernel.org
8350 S: Orphan
8351 F: Documentation/filesystems/hfs.rst
8352 F: fs/hfs/
8353
8354 HFSPLUS FILESYSTEM
8355 L: linux-fsdevel@vger.kernel.org
8356 S: Orphan
8357 F: Documentation/filesystems/hfsplus.rst
8358 F: fs/hfsplus/
8359
8360 HGA FRAMEBUFFER DRIVER
8361 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8362 L: linux-nvidia@lists.surfsouth.com
8363 S: Maintained
8364 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8365 F: drivers/video/fbdev/hgafb.c
8366
8367 HIBERNATION (aka Software Suspend, aka swsusp)
8368 M: "Rafael J. Wysocki" <rafael@kernel.org>
8369 M: Pavel Machek <pavel@ucw.cz>
8370 L: linux-pm@vger.kernel.org
8371 S: Supported
8372 B: https://bugzilla.kernel.org
8373 F: arch/*/include/asm/suspend*.h
8374 F: arch/x86/power/
8375 F: drivers/base/power/
8376 F: include/linux/freezer.h
8377 F: include/linux/pm.h
8378 F: include/linux/suspend.h
8379 F: kernel/power/
8380
8381 HID CORE LAYER
8382 M: Jiri Kosina <jikos@kernel.org>
8383 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
8384 L: linux-input@vger.kernel.org
8385 S: Maintained
8386 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8387 F: drivers/hid/
8388 F: include/linux/hid*
8389 F: include/uapi/linux/hid*
8390
8391 HID PLAYSTATION DRIVER
8392 M: Roderick Colenbrander <roderick.colenbrander@sony.com>
8393 L: linux-input@vger.kernel.org
8394 S: Supported
8395 F: drivers/hid/hid-playstation.c
8396
8397 HID SENSOR HUB DRIVERS
8398 M: Jiri Kosina <jikos@kernel.org>
8399 M: Jonathan Cameron <jic23@kernel.org>
8400 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8401 L: linux-input@vger.kernel.org
8402 L: linux-iio@vger.kernel.org
8403 S: Maintained
8404 F: Documentation/hid/hid-sensor*
8405 F: drivers/hid/hid-sensor-*
8406 F: drivers/iio/*/hid-*
8407 F: include/linux/hid-sensor-*
8408
8409 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8410 M: Thomas Gleixner <tglx@linutronix.de>
8411 L: linux-kernel@vger.kernel.org
8412 S: Maintained
8413 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8414 F: Documentation/timers/
8415 F: include/linux/clockchips.h
8416 F: include/linux/hrtimer.h
8417 F: kernel/time/clockevents.c
8418 F: kernel/time/hrtimer.c
8419 F: kernel/time/timer_*.c
8420
8421 HIGH-SPEED SCC DRIVER FOR AX.25
8422 L: linux-hams@vger.kernel.org
8423 S: Orphan
8424 F: drivers/net/hamradio/dmascc.c
8425 F: drivers/net/hamradio/scc.c
8426
8427 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8428 M: HighPoint Linux Team <linux@highpoint-tech.com>
8429 S: Supported
8430 W: http://www.highpoint-tech.com
8431 F: Documentation/scsi/hptiop.rst
8432 F: drivers/scsi/hptiop.c
8433
8434 HIPPI
8435 M: Jes Sorensen <jes@trained-monkey.org>
8436 L: linux-hippi@sunsite.dk
8437 S: Maintained
8438 F: drivers/net/hippi/
8439 F: include/linux/hippidevice.h
8440 F: include/uapi/linux/if_hippi.h
8441 F: net/802/hippi.c
8442
8443 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8444 M: Kurt Kanzenbach <kurt@linutronix.de>
8445 L: netdev@vger.kernel.org
8446 S: Maintained
8447 F: Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8448 F: drivers/net/dsa/hirschmann/*
8449 F: include/linux/platform_data/hirschmann-hellcreek.h
8450 F: net/dsa/tag_hellcreek.c
8451
8452 HISILICON DMA DRIVER
8453 M: Zhou Wang <wangzhou1@hisilicon.com>
8454 L: dmaengine@vger.kernel.org
8455 S: Maintained
8456 F: drivers/dma/hisi_dma.c
8457
8458 HISILICON GPIO DRIVER
8459 M: Luo Jiaxing <luojiaxing@huawei.com>
8460 L: linux-gpio@vger.kernel.org
8461 S: Maintained
8462 F: drivers/gpio/gpio-hisi.c
8463
8464 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8465 M: Zaibo Xu <xuzaibo@huawei.com>
8466 L: linux-crypto@vger.kernel.org
8467 S: Maintained
8468 F: Documentation/ABI/testing/debugfs-hisi-hpre
8469 F: drivers/crypto/hisilicon/hpre/hpre.h
8470 F: drivers/crypto/hisilicon/hpre/hpre_crypto.c
8471 F: drivers/crypto/hisilicon/hpre/hpre_main.c
8472
8473 HISILICON I2C CONTROLLER DRIVER
8474 M: Yicong Yang <yangyicong@hisilicon.com>
8475 L: linux-i2c@vger.kernel.org
8476 S: Maintained
8477 W: https://www.hisilicon.com
8478 F: drivers/i2c/busses/i2c-hisi.c
8479
8480 HISILICON LPC BUS DRIVER
8481 M: john.garry@huawei.com
8482 S: Maintained
8483 W: http://www.hisilicon.com
8484 F: Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8485 F: drivers/bus/hisi_lpc.c
8486
8487 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8488 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8489 M: Salil Mehta <salil.mehta@huawei.com>
8490 L: netdev@vger.kernel.org
8491 S: Maintained
8492 W: http://www.hisilicon.com
8493 F: drivers/net/ethernet/hisilicon/hns3/
8494
8495 HISILICON NETWORK SUBSYSTEM DRIVER
8496 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8497 M: Salil Mehta <salil.mehta@huawei.com>
8498 L: netdev@vger.kernel.org
8499 S: Maintained
8500 W: http://www.hisilicon.com
8501 F: Documentation/devicetree/bindings/net/hisilicon*.txt
8502 F: drivers/net/ethernet/hisilicon/
8503
8504 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8505 M: John Stultz <john.stultz@linaro.org>
8506 L: linux-kernel@vger.kernel.org
8507 S: Maintained
8508 F: drivers/misc/hisi_hikey_usb.c
8509 F: Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8510
8511 HISILICON PMU DRIVER
8512 M: Shaokun Zhang <zhangshaokun@hisilicon.com>
8513 S: Supported
8514 W: http://www.hisilicon.com
8515 F: Documentation/admin-guide/perf/hisi-pmu.rst
8516 F: drivers/perf/hisilicon
8517
8518 HISILICON QM AND ZIP Controller DRIVER
8519 M: Zhou Wang <wangzhou1@hisilicon.com>
8520 L: linux-crypto@vger.kernel.org
8521 S: Maintained
8522 F: Documentation/ABI/testing/debugfs-hisi-zip
8523 F: drivers/crypto/hisilicon/qm.c
8524 F: drivers/crypto/hisilicon/qm.h
8525 F: drivers/crypto/hisilicon/sgl.c
8526 F: drivers/crypto/hisilicon/zip/
8527
8528 HISILICON ROCE DRIVER
8529 M: Wenpeng Liang <liangwenpeng@huawei.com>
8530 M: Weihang Li <liweihang@huawei.com>
8531 L: linux-rdma@vger.kernel.org
8532 S: Maintained
8533 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8534 F: drivers/infiniband/hw/hns/
8535
8536 HISILICON SAS Controller
8537 M: John Garry <john.garry@huawei.com>
8538 S: Supported
8539 W: http://www.hisilicon.com
8540 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8541 F: drivers/scsi/hisi_sas/
8542
8543 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8544 M: Zaibo Xu <xuzaibo@huawei.com>
8545 L: linux-crypto@vger.kernel.org
8546 S: Maintained
8547 F: Documentation/ABI/testing/debugfs-hisi-sec
8548 F: drivers/crypto/hisilicon/sec2/sec.h
8549 F: drivers/crypto/hisilicon/sec2/sec_crypto.c
8550 F: drivers/crypto/hisilicon/sec2/sec_crypto.h
8551 F: drivers/crypto/hisilicon/sec2/sec_main.c
8552
8553 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8554 M: Jay Fang <f.fangjian@huawei.com>
8555 L: linux-spi@vger.kernel.org
8556 S: Maintained
8557 W: http://www.hisilicon.com
8558 F: drivers/spi/spi-hisi-kunpeng.c
8559
8560 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8561 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8562 L: linux-kernel@vger.kernel.org
8563 S: Maintained
8564 F: Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8565 F: drivers/spmi/hisi-spmi-controller.c
8566
8567 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8568 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8569 L: linux-kernel@vger.kernel.org
8570 S: Maintained
8571 F: Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8572 F: drivers/mfd/hi6421-spmi-pmic.c
8573
8574 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8575 M: Zaibo Xu <xuzaibo@huawei.com>
8576 S: Maintained
8577 F: drivers/crypto/hisilicon/trng/trng.c
8578
8579 HISILICON V3XX SPI NOR FLASH Controller Driver
8580 M: John Garry <john.garry@huawei.com>
8581 S: Maintained
8582 W: http://www.hisilicon.com
8583 F: drivers/spi/spi-hisi-sfc-v3xx.c
8584
8585 HMM - Heterogeneous Memory Management
8586 M: Jérôme Glisse <jglisse@redhat.com>
8587 L: linux-mm@kvack.org
8588 S: Maintained
8589 F: Documentation/vm/hmm.rst
8590 F: include/linux/hmm*
8591 F: lib/test_hmm*
8592 F: mm/hmm*
8593 F: tools/testing/selftests/vm/*hmm*
8594
8595 HOST AP DRIVER
8596 M: Jouni Malinen <j@w1.fi>
8597 L: linux-wireless@vger.kernel.org
8598 S: Obsolete
8599 W: http://w1.fi/hostap-driver.html
8600 F: drivers/net/wireless/intersil/hostap/
8601
8602 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8603 L: platform-driver-x86@vger.kernel.org
8604 S: Orphan
8605 F: drivers/platform/x86/tc1100-wmi.c
8606
8607 HPET: High Precision Event Timers driver
8608 M: Clemens Ladisch <clemens@ladisch.de>
8609 S: Maintained
8610 F: Documentation/timers/hpet.rst
8611 F: drivers/char/hpet.c
8612 F: include/linux/hpet.h
8613 F: include/uapi/linux/hpet.h
8614
8615 HPET: x86
8616 S: Orphan
8617 F: arch/x86/include/asm/hpet.h
8618 F: arch/x86/kernel/hpet.c
8619
8620 HPFS FILESYSTEM
8621 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8622 S: Maintained
8623 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8624 F: fs/hpfs/
8625
8626 HSI SUBSYSTEM
8627 M: Sebastian Reichel <sre@kernel.org>
8628 S: Maintained
8629 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8630 F: Documentation/ABI/testing/sysfs-bus-hsi
8631 F: Documentation/driver-api/hsi.rst
8632 F: drivers/hsi/
8633 F: include/linux/hsi/
8634 F: include/uapi/linux/hsi/
8635
8636 HSO 3G MODEM DRIVER
8637 L: linux-usb@vger.kernel.org
8638 S: Orphan
8639 F: drivers/net/usb/hso.c
8640
8641 HSR NETWORK PROTOCOL
8642 L: netdev@vger.kernel.org
8643 S: Orphan
8644 F: net/hsr/
8645
8646 HT16K33 LED CONTROLLER DRIVER
8647 M: Robin van der Gracht <robin@protonic.nl>
8648 S: Maintained
8649 F: Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8650 F: drivers/auxdisplay/ht16k33.c
8651
8652 HTCPEN TOUCHSCREEN DRIVER
8653 M: Pau Oliva Fora <pof@eslack.org>
8654 L: linux-input@vger.kernel.org
8655 S: Maintained
8656 F: drivers/input/touchscreen/htcpen.c
8657
8658 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8659 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8660 L: linux-iio@vger.kernel.org
8661 S: Maintained
8662 W: http://www.st.com/
8663 F: Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8664 F: drivers/iio/humidity/hts221*
8665
8666 HUAWEI ETHERNET DRIVER
8667 L: netdev@vger.kernel.org
8668 S: Orphan
8669 F: Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8670 F: drivers/net/ethernet/huawei/hinic/
8671
8672 HUGETLB FILESYSTEM
8673 M: Mike Kravetz <mike.kravetz@oracle.com>
8674 L: linux-mm@kvack.org
8675 S: Maintained
8676 F: Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8677 F: Documentation/admin-guide/mm/hugetlbpage.rst
8678 F: Documentation/vm/hugetlbfs_reserv.rst
8679 F: fs/hugetlbfs/
8680 F: include/linux/hugetlb.h
8681 F: mm/hugetlb.c
8682
8683 HVA ST MEDIA DRIVER
8684 M: Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8685 L: linux-media@vger.kernel.org
8686 S: Supported
8687 W: https://linuxtv.org
8688 T: git git://linuxtv.org/media_tree.git
8689 F: drivers/media/platform/sti/hva
8690
8691 HWPOISON MEMORY FAILURE HANDLING
8692 M: Naoya Horiguchi <naoya.horiguchi@nec.com>
8693 L: linux-mm@kvack.org
8694 S: Maintained
8695 F: mm/hwpoison-inject.c
8696 F: mm/memory-failure.c
8697
8698 HYCON HY46XX TOUCHSCREEN SUPPORT
8699 M: Giulio Benetti <giulio.benetti@benettiengineering.com>
8700 L: linux-input@vger.kernel.org
8701 S: Maintained
8702 F: Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8703 F: drivers/input/touchscreen/hycon-hy46xx.c
8704
8705 HYGON PROCESSOR SUPPORT
8706 M: Pu Wen <puwen@hygon.cn>
8707 L: linux-kernel@vger.kernel.org
8708 S: Maintained
8709 F: arch/x86/kernel/cpu/hygon.c
8710
8711 HYNIX HI556 SENSOR DRIVER
8712 M: Shawn Tu <shawnx.tu@intel.com>
8713 L: linux-media@vger.kernel.org
8714 S: Maintained
8715 T: git git://linuxtv.org/media_tree.git
8716 F: drivers/media/i2c/hi556.c
8717
8718 Hyper-V/Azure CORE AND DRIVERS
8719 M: "K. Y. Srinivasan" <kys@microsoft.com>
8720 M: Haiyang Zhang <haiyangz@microsoft.com>
8721 M: Stephen Hemminger <sthemmin@microsoft.com>
8722 M: Wei Liu <wei.liu@kernel.org>
8723 M: Dexuan Cui <decui@microsoft.com>
8724 L: linux-hyperv@vger.kernel.org
8725 S: Supported
8726 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8727 F: Documentation/ABI/stable/sysfs-bus-vmbus
8728 F: Documentation/ABI/testing/debugfs-hyperv
8729 F: Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8730 F: arch/arm64/hyperv
8731 F: arch/arm64/include/asm/hyperv-tlfs.h
8732 F: arch/arm64/include/asm/mshyperv.h
8733 F: arch/x86/hyperv
8734 F: arch/x86/include/asm/hyperv-tlfs.h
8735 F: arch/x86/include/asm/mshyperv.h
8736 F: arch/x86/include/asm/trace/hyperv.h
8737 F: arch/x86/kernel/cpu/mshyperv.c
8738 F: drivers/clocksource/hyperv_timer.c
8739 F: drivers/hid/hid-hyperv.c
8740 F: drivers/hv/
8741 F: drivers/input/serio/hyperv-keyboard.c
8742 F: drivers/iommu/hyperv-iommu.c
8743 F: drivers/net/ethernet/microsoft/
8744 F: drivers/net/hyperv/
8745 F: drivers/pci/controller/pci-hyperv-intf.c
8746 F: drivers/pci/controller/pci-hyperv.c
8747 F: drivers/scsi/storvsc_drv.c
8748 F: drivers/uio/uio_hv_generic.c
8749 F: drivers/video/fbdev/hyperv_fb.c
8750 F: include/asm-generic/hyperv-tlfs.h
8751 F: include/asm-generic/mshyperv.h
8752 F: include/clocksource/hyperv_timer.h
8753 F: include/linux/hyperv.h
8754 F: include/uapi/linux/hyperv.h
8755 F: net/vmw_vsock/hyperv_transport.c
8756 F: tools/hv/
8757
8758 HYPERBUS SUPPORT
8759 M: Vignesh Raghavendra <vigneshr@ti.com>
8760 L: linux-mtd@lists.infradead.org
8761 S: Supported
8762 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8763 C: irc://irc.oftc.net/mtd
8764 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8765 F: Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8766 F: Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8767 F: drivers/mtd/hyperbus/
8768 F: include/linux/mtd/hyperbus.h
8769
8770 HYPERVISOR VIRTUAL CONSOLE DRIVER
8771 L: linuxppc-dev@lists.ozlabs.org
8772 S: Odd Fixes
8773 F: drivers/tty/hvc/
8774
8775 I2C ACPI SUPPORT
8776 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8777 L: linux-i2c@vger.kernel.org
8778 L: linux-acpi@vger.kernel.org
8779 S: Maintained
8780 F: drivers/i2c/i2c-core-acpi.c
8781
8782 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8783 M: Ajay Gupta <ajayg@nvidia.com>
8784 L: linux-i2c@vger.kernel.org
8785 S: Maintained
8786 F: Documentation/i2c/busses/i2c-nvidia-gpu.rst
8787 F: drivers/i2c/busses/i2c-nvidia-gpu.c
8788
8789 I2C MUXES
8790 M: Peter Rosin <peda@axentia.se>
8791 L: linux-i2c@vger.kernel.org
8792 S: Maintained
8793 F: Documentation/devicetree/bindings/i2c/i2c-arb*
8794 F: Documentation/devicetree/bindings/i2c/i2c-gate*
8795 F: Documentation/devicetree/bindings/i2c/i2c-mux*
8796 F: Documentation/i2c/i2c-topology.rst
8797 F: Documentation/i2c/muxes/
8798 F: drivers/i2c/i2c-mux.c
8799 F: drivers/i2c/muxes/
8800 F: include/linux/i2c-mux.h
8801
8802 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8803 M: Gregory CLEMENT <gregory.clement@bootlin.com>
8804 L: linux-i2c@vger.kernel.org
8805 S: Maintained
8806 F: Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8807 F: drivers/i2c/busses/i2c-mv64xxx.c
8808
8809 I2C OVER PARALLEL PORT
8810 M: Jean Delvare <jdelvare@suse.com>
8811 L: linux-i2c@vger.kernel.org
8812 S: Maintained
8813 F: Documentation/i2c/busses/i2c-parport.rst
8814 F: drivers/i2c/busses/i2c-parport.c
8815
8816 I2C SUBSYSTEM
8817 M: Wolfram Sang <wsa@kernel.org>
8818 L: linux-i2c@vger.kernel.org
8819 S: Maintained
8820 W: https://i2c.wiki.kernel.org/
8821 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8822 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8823 F: Documentation/devicetree/bindings/i2c/i2c.txt
8824 F: Documentation/i2c/
8825 F: drivers/i2c/*
8826 F: include/linux/i2c-dev.h
8827 F: include/linux/i2c-smbus.h
8828 F: include/linux/i2c.h
8829 F: include/uapi/linux/i2c-*.h
8830 F: include/uapi/linux/i2c.h
8831
8832 I2C SUBSYSTEM HOST DRIVERS
8833 L: linux-i2c@vger.kernel.org
8834 S: Odd Fixes
8835 W: https://i2c.wiki.kernel.org/
8836 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8837 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8838 F: Documentation/devicetree/bindings/i2c/
8839 F: drivers/i2c/algos/
8840 F: drivers/i2c/busses/
8841
8842 I2C-TAOS-EVM DRIVER
8843 M: Jean Delvare <jdelvare@suse.com>
8844 L: linux-i2c@vger.kernel.org
8845 S: Maintained
8846 F: Documentation/i2c/busses/i2c-taos-evm.rst
8847 F: drivers/i2c/busses/i2c-taos-evm.c
8848
8849 I2C-TINY-USB DRIVER
8850 M: Till Harbaum <till@harbaum.org>
8851 L: linux-i2c@vger.kernel.org
8852 S: Maintained
8853 W: http://www.harbaum.org/till/i2c_tiny_usb
8854 F: drivers/i2c/busses/i2c-tiny-usb.c
8855
8856 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8857 M: Jean Delvare <jdelvare@suse.com>
8858 L: linux-i2c@vger.kernel.org
8859 S: Maintained
8860 F: Documentation/i2c/busses/i2c-ali1535.rst
8861 F: Documentation/i2c/busses/i2c-ali1563.rst
8862 F: Documentation/i2c/busses/i2c-ali15x3.rst
8863 F: Documentation/i2c/busses/i2c-amd756.rst
8864 F: Documentation/i2c/busses/i2c-amd8111.rst
8865 F: Documentation/i2c/busses/i2c-i801.rst
8866 F: Documentation/i2c/busses/i2c-nforce2.rst
8867 F: Documentation/i2c/busses/i2c-piix4.rst
8868 F: Documentation/i2c/busses/i2c-sis5595.rst
8869 F: Documentation/i2c/busses/i2c-sis630.rst
8870 F: Documentation/i2c/busses/i2c-sis96x.rst
8871 F: Documentation/i2c/busses/i2c-via.rst
8872 F: Documentation/i2c/busses/i2c-viapro.rst
8873 F: drivers/i2c/busses/i2c-ali1535.c
8874 F: drivers/i2c/busses/i2c-ali1563.c
8875 F: drivers/i2c/busses/i2c-ali15x3.c
8876 F: drivers/i2c/busses/i2c-amd756-s4882.c
8877 F: drivers/i2c/busses/i2c-amd756.c
8878 F: drivers/i2c/busses/i2c-amd8111.c
8879 F: drivers/i2c/busses/i2c-i801.c
8880 F: drivers/i2c/busses/i2c-isch.c
8881 F: drivers/i2c/busses/i2c-nforce2-s4985.c
8882 F: drivers/i2c/busses/i2c-nforce2.c
8883 F: drivers/i2c/busses/i2c-piix4.c
8884 F: drivers/i2c/busses/i2c-sis5595.c
8885 F: drivers/i2c/busses/i2c-sis630.c
8886 F: drivers/i2c/busses/i2c-sis96x.c
8887 F: drivers/i2c/busses/i2c-via.c
8888 F: drivers/i2c/busses/i2c-viapro.c
8889
8890 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8891 M: Hans de Goede <hdegoede@redhat.com>
8892 L: linux-i2c@vger.kernel.org
8893 S: Maintained
8894 F: drivers/i2c/busses/i2c-cht-wc.c
8895
8896 I2C/SMBUS ISMT DRIVER
8897 M: Seth Heasley <seth.heasley@intel.com>
8898 M: Neil Horman <nhorman@tuxdriver.com>
8899 L: linux-i2c@vger.kernel.org
8900 F: Documentation/i2c/busses/i2c-ismt.rst
8901 F: drivers/i2c/busses/i2c-ismt.c
8902
8903 I2C/SMBUS STUB DRIVER
8904 M: Jean Delvare <jdelvare@suse.com>
8905 L: linux-i2c@vger.kernel.org
8906 S: Maintained
8907 F: drivers/i2c/i2c-stub.c
8908
8909 I3C DRIVER FOR CADENCE I3C MASTER IP
8910 M: Przemysław Gaj <pgaj@cadence.com>
8911 S: Maintained
8912 F: Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8913 F: drivers/i3c/master/i3c-master-cdns.c
8914
8915 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8916 M: Vitor Soares <vitor.soares@synopsys.com>
8917 S: Maintained
8918 F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8919 F: drivers/i3c/master/dw*
8920
8921 I3C SUBSYSTEM
8922 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
8923 L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
8924 S: Maintained
8925 C: irc://chat.freenode.net/linux-i3c
8926 T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8927 F: Documentation/ABI/testing/sysfs-bus-i3c
8928 F: Documentation/devicetree/bindings/i3c/
8929 F: Documentation/driver-api/i3c
8930 F: drivers/i3c/
8931 F: include/linux/i3c/
8932
8933 IA64 (Itanium) PLATFORM
8934 L: linux-ia64@vger.kernel.org
8935 S: Orphan
8936 F: Documentation/ia64/
8937 F: arch/ia64/
8938
8939 IBM Power 842 compression accelerator
8940 M: Haren Myneni <haren@us.ibm.com>
8941 S: Supported
8942 F: crypto/842.c
8943 F: drivers/crypto/nx/Kconfig
8944 F: drivers/crypto/nx/Makefile
8945 F: drivers/crypto/nx/nx-842*
8946 F: include/linux/sw842.h
8947 F: lib/842/
8948
8949 IBM Power in-Nest Crypto Acceleration
8950 M: Breno Leitão <leitao@debian.org>
8951 M: Nayna Jain <nayna@linux.ibm.com>
8952 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8953 L: linux-crypto@vger.kernel.org
8954 S: Supported
8955 F: drivers/crypto/nx/Kconfig
8956 F: drivers/crypto/nx/Makefile
8957 F: drivers/crypto/nx/nx-aes*
8958 F: drivers/crypto/nx/nx-sha*
8959 F: drivers/crypto/nx/nx.*
8960 F: drivers/crypto/nx/nx_csbcpb.h
8961 F: drivers/crypto/nx/nx_debugfs.c
8962
8963 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8964 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8965 L: linux-pci@vger.kernel.org
8966 L: linuxppc-dev@lists.ozlabs.org
8967 S: Supported
8968 F: drivers/pci/hotplug/rpadlpar*
8969
8970 IBM Power Linux RAID adapter
8971 M: Brian King <brking@us.ibm.com>
8972 S: Supported
8973 F: drivers/scsi/ipr.*
8974
8975 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8976 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8977 L: linux-pci@vger.kernel.org
8978 L: linuxppc-dev@lists.ozlabs.org
8979 S: Supported
8980 F: drivers/pci/hotplug/rpaphp*
8981
8982 IBM Power SRIOV Virtual NIC Device Driver
8983 M: Dany Madden <drt@linux.ibm.com>
8984 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8985 R: Thomas Falcon <tlfalcon@linux.ibm.com>
8986 L: netdev@vger.kernel.org
8987 S: Supported
8988 F: drivers/net/ethernet/ibm/ibmvnic.*
8989
8990 IBM Power Virtual Accelerator Switchboard
8991 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8992 L: linuxppc-dev@lists.ozlabs.org
8993 S: Supported
8994 F: arch/powerpc/include/asm/vas.h
8995 F: arch/powerpc/platforms/powernv/copy-paste.h
8996 F: arch/powerpc/platforms/powernv/vas*
8997
8998 IBM Power Virtual Ethernet Device Driver
8999 M: Cristobal Forno <cforno12@linux.ibm.com>
9000 L: netdev@vger.kernel.org
9001 S: Supported
9002 F: drivers/net/ethernet/ibm/ibmveth.*
9003
9004 IBM Power Virtual FC Device Drivers
9005 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9006 L: linux-scsi@vger.kernel.org
9007 S: Supported
9008 F: drivers/scsi/ibmvscsi/ibmvfc*
9009
9010 IBM Power Virtual Management Channel Driver
9011 M: Brad Warrum <bwarrum@linux.ibm.com>
9012 M: Ritu Agarwal <rituagar@linux.ibm.com>
9013 S: Supported
9014 F: drivers/misc/ibmvmc.*
9015
9016 IBM Power Virtual SCSI Device Drivers
9017 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9018 L: linux-scsi@vger.kernel.org
9019 S: Supported
9020 F: drivers/scsi/ibmvscsi/ibmvscsi*
9021 F: include/scsi/viosrp.h
9022
9023 IBM Power Virtual SCSI Device Target Driver
9024 M: Michael Cyr <mikecyr@linux.ibm.com>
9025 L: linux-scsi@vger.kernel.org
9026 L: target-devel@vger.kernel.org
9027 S: Supported
9028 F: drivers/scsi/ibmvscsi_tgt/
9029
9030 IBM Power VMX Cryptographic instructions
9031 M: Breno Leitão <leitao@debian.org>
9032 M: Nayna Jain <nayna@linux.ibm.com>
9033 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9034 L: linux-crypto@vger.kernel.org
9035 S: Supported
9036 F: drivers/crypto/vmx/Kconfig
9037 F: drivers/crypto/vmx/Makefile
9038 F: drivers/crypto/vmx/aes*
9039 F: drivers/crypto/vmx/ghash*
9040 F: drivers/crypto/vmx/ppc-xlate.pl
9041 F: drivers/crypto/vmx/vmx.c
9042
9043 IBM ServeRAID RAID DRIVER
9044 S: Orphan
9045 F: drivers/scsi/ips.*
9046
9047 ICH LPC AND GPIO DRIVER
9048 M: Peter Tyser <ptyser@xes-inc.com>
9049 S: Maintained
9050 F: drivers/gpio/gpio-ich.c
9051 F: drivers/mfd/lpc_ich.c
9052
9053 ICY I2C DRIVER
9054 M: Max Staudt <max@enpas.org>
9055 L: linux-i2c@vger.kernel.org
9056 S: Maintained
9057 F: drivers/i2c/busses/i2c-icy.c
9058
9059 IDEAPAD LAPTOP EXTRAS DRIVER
9060 M: Ike Panhc <ike.pan@canonical.com>
9061 L: platform-driver-x86@vger.kernel.org
9062 S: Maintained
9063 W: http://launchpad.net/ideapad-laptop
9064 F: drivers/platform/x86/ideapad-laptop.c
9065
9066 IDEAPAD LAPTOP SLIDEBAR DRIVER
9067 M: Andrey Moiseev <o2g.org.ru@gmail.com>
9068 L: linux-input@vger.kernel.org
9069 S: Maintained
9070 W: https://github.com/o2genum/ideapad-slidebar
9071 F: drivers/input/misc/ideapad_slidebar.c
9072
9073 IDT VersaClock 5 CLOCK DRIVER
9074 M: Luca Ceresoli <luca@lucaceresoli.net>
9075 S: Maintained
9076 F: Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9077 F: drivers/clk/clk-versaclock5.c
9078
9079 IEEE 802.15.4 SUBSYSTEM
9080 M: Alexander Aring <alex.aring@gmail.com>
9081 M: Stefan Schmidt <stefan@datenfreihafen.org>
9082 L: linux-wpan@vger.kernel.org
9083 S: Maintained
9084 W: https://linux-wpan.org/
9085 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9086 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9087 F: Documentation/networking/ieee802154.rst
9088 F: drivers/net/ieee802154/
9089 F: include/linux/ieee802154.h
9090 F: include/linux/nl802154.h
9091 F: include/net/af_ieee802154.h
9092 F: include/net/cfg802154.h
9093 F: include/net/ieee802154_netdev.h
9094 F: include/net/mac802154.h
9095 F: include/net/nl802154.h
9096 F: net/ieee802154/
9097 F: net/mac802154/
9098
9099 IFE PROTOCOL
9100 M: Yotam Gigi <yotam.gi@gmail.com>
9101 M: Jamal Hadi Salim <jhs@mojatatu.com>
9102 F: include/net/ife.h
9103 F: include/uapi/linux/ife.h
9104 F: net/ife
9105
9106 IGORPLUG-USB IR RECEIVER
9107 M: Sean Young <sean@mess.org>
9108 L: linux-media@vger.kernel.org
9109 S: Maintained
9110 F: drivers/media/rc/igorplugusb.c
9111
9112 IGUANAWORKS USB IR TRANSCEIVER
9113 M: Sean Young <sean@mess.org>
9114 L: linux-media@vger.kernel.org
9115 S: Maintained
9116 F: drivers/media/rc/iguanair.c
9117
9118 IIO DIGITAL POTENTIOMETER DAC
9119 M: Peter Rosin <peda@axentia.se>
9120 L: linux-iio@vger.kernel.org
9121 S: Maintained
9122 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9123 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9124 F: drivers/iio/dac/dpot-dac.c
9125
9126 IIO ENVELOPE DETECTOR
9127 M: Peter Rosin <peda@axentia.se>
9128 L: linux-iio@vger.kernel.org
9129 S: Maintained
9130 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9131 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9132 F: drivers/iio/adc/envelope-detector.c
9133
9134 IIO MULTIPLEXER
9135 M: Peter Rosin <peda@axentia.se>
9136 L: linux-iio@vger.kernel.org
9137 S: Maintained
9138 F: Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9139 F: drivers/iio/multiplexer/iio-mux.c
9140
9141 IIO SCMI BASED DRIVER
9142 M: Jyoti Bhayana <jbhayana@google.com>
9143 L: linux-iio@vger.kernel.org
9144 S: Maintained
9145 F: drivers/iio/common/scmi_sensors/scmi_iio.c
9146
9147 IIO SUBSYSTEM AND DRIVERS
9148 M: Jonathan Cameron <jic23@kernel.org>
9149 R: Lars-Peter Clausen <lars@metafoo.de>
9150 L: linux-iio@vger.kernel.org
9151 S: Maintained
9152 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9153 F: Documentation/ABI/testing/configfs-iio*
9154 F: Documentation/ABI/testing/sysfs-bus-iio*
9155 F: Documentation/devicetree/bindings/iio/
9156 F: drivers/iio/
9157 F: drivers/staging/iio/
9158 F: include/linux/iio/
9159 F: tools/iio/
9160
9161 IIO UNIT CONVERTER
9162 M: Peter Rosin <peda@axentia.se>
9163 L: linux-iio@vger.kernel.org
9164 S: Maintained
9165 F: Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9166 F: Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9167 F: Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9168 F: drivers/iio/afe/iio-rescale.c
9169
9170 IKANOS/ADI EAGLE ADSL USB DRIVER
9171 M: Matthieu Castet <castet.matthieu@free.fr>
9172 M: Stanislaw Gruszka <stf_xl@wp.pl>
9173 S: Maintained
9174 F: drivers/usb/atm/ueagle-atm.c
9175
9176 IMGTEC ASCII LCD DRIVER
9177 M: Paul Burton <paulburton@kernel.org>
9178 S: Maintained
9179 F: Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9180 F: drivers/auxdisplay/img-ascii-lcd.c
9181
9182 IMGTEC IR DECODER DRIVER
9183 S: Orphan
9184 F: drivers/media/rc/img-ir/
9185
9186 IMON SOUNDGRAPH USB IR RECEIVER
9187 M: Sean Young <sean@mess.org>
9188 L: linux-media@vger.kernel.org
9189 S: Maintained
9190 F: drivers/media/rc/imon.c
9191 F: drivers/media/rc/imon_raw.c
9192
9193 IMS TWINTURBO FRAMEBUFFER DRIVER
9194 L: linux-fbdev@vger.kernel.org
9195 S: Orphan
9196 F: drivers/video/fbdev/imsttfb.c
9197
9198 INA209 HARDWARE MONITOR DRIVER
9199 M: Guenter Roeck <linux@roeck-us.net>
9200 L: linux-hwmon@vger.kernel.org
9201 S: Maintained
9202 F: Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9203 F: Documentation/hwmon/ina209.rst
9204 F: drivers/hwmon/ina209.c
9205
9206 INA2XX HARDWARE MONITOR DRIVER
9207 M: Guenter Roeck <linux@roeck-us.net>
9208 L: linux-hwmon@vger.kernel.org
9209 S: Maintained
9210 F: Documentation/hwmon/ina2xx.rst
9211 F: drivers/hwmon/ina2xx.c
9212 F: include/linux/platform_data/ina2xx.h
9213
9214 INDUSTRY PACK SUBSYSTEM (IPACK)
9215 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9216 M: Jens Taprogge <jens.taprogge@taprogge.org>
9217 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9218 L: industrypack-devel@lists.sourceforge.net
9219 S: Maintained
9220 W: http://industrypack.sourceforge.net
9221 F: drivers/ipack/
9222
9223 INFINEON DPS310 Driver
9224 M: Eddie James <eajames@linux.ibm.com>
9225 L: linux-iio@vger.kernel.org
9226 S: Maintained
9227 F: drivers/iio/pressure/dps310.c
9228
9229 INFINIBAND SUBSYSTEM
9230 M: Doug Ledford <dledford@redhat.com>
9231 M: Jason Gunthorpe <jgg@nvidia.com>
9232 L: linux-rdma@vger.kernel.org
9233 S: Supported
9234 W: https://github.com/linux-rdma/rdma-core
9235 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9236 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9237 F: Documentation/devicetree/bindings/infiniband/
9238 F: Documentation/infiniband/
9239 F: drivers/infiniband/
9240 F: include/rdma/
9241 F: include/trace/events/ib_mad.h
9242 F: include/trace/events/ib_umad.h
9243 F: include/uapi/linux/if_infiniband.h
9244 F: include/uapi/rdma/
9245 F: samples/bpf/ibumad_kern.c
9246 F: samples/bpf/ibumad_user.c
9247
9248 INGENIC JZ4780 NAND DRIVER
9249 M: Harvey Hunt <harveyhuntnexus@gmail.com>
9250 L: linux-mtd@lists.infradead.org
9251 L: linux-mips@vger.kernel.org
9252 S: Maintained
9253 F: drivers/mtd/nand/raw/ingenic/
9254
9255 INGENIC JZ47xx SoCs
9256 M: Paul Cercueil <paul@crapouillou.net>
9257 L: linux-mips@vger.kernel.org
9258 S: Maintained
9259 F: arch/mips/boot/dts/ingenic/
9260 F: arch/mips/generic/board-ingenic.c
9261 F: arch/mips/include/asm/mach-ingenic/
9262 F: arch/mips/ingenic/Kconfig
9263 F: drivers/clk/ingenic/
9264 F: drivers/dma/dma-jz4780.c
9265 F: drivers/gpu/drm/ingenic/
9266 F: drivers/i2c/busses/i2c-jz4780.c
9267 F: drivers/iio/adc/ingenic-adc.c
9268 F: drivers/irqchip/irq-ingenic.c
9269 F: drivers/memory/jz4780-nemc.c
9270 F: drivers/mmc/host/jz4740_mmc.c
9271 F: drivers/mtd/nand/raw/ingenic/
9272 F: drivers/pinctrl/pinctrl-ingenic.c
9273 F: drivers/power/supply/ingenic-battery.c
9274 F: drivers/pwm/pwm-jz4740.c
9275 F: drivers/remoteproc/ingenic_rproc.c
9276 F: drivers/rtc/rtc-jz4740.c
9277 F: drivers/tty/serial/8250/8250_ingenic.c
9278 F: drivers/usb/musb/jz4740.c
9279 F: drivers/watchdog/jz4740_wdt.c
9280 F: include/dt-bindings/iio/adc/ingenic,adc.h
9281 F: include/linux/mfd/ingenic-tcu.h
9282 F: sound/soc/codecs/jz47*
9283 F: sound/soc/jz4740/
9284
9285 INOTIFY
9286 M: Jan Kara <jack@suse.cz>
9287 R: Amir Goldstein <amir73il@gmail.com>
9288 L: linux-fsdevel@vger.kernel.org
9289 S: Maintained
9290 F: Documentation/filesystems/inotify.rst
9291 F: fs/notify/inotify/
9292 F: include/linux/inotify.h
9293 F: include/uapi/linux/inotify.h
9294
9295 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9296 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
9297 L: linux-input@vger.kernel.org
9298 S: Maintained
9299 Q: http://patchwork.kernel.org/project/linux-input/list/
9300 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9301 F: Documentation/devicetree/bindings/input/
9302 F: Documentation/devicetree/bindings/serio/
9303 F: Documentation/input/
9304 F: drivers/input/
9305 F: include/linux/input.h
9306 F: include/linux/input/
9307 F: include/uapi/linux/input-event-codes.h
9308 F: include/uapi/linux/input.h
9309
9310 INPUT MULTITOUCH (MT) PROTOCOL
9311 M: Henrik Rydberg <rydberg@bitmath.org>
9312 L: linux-input@vger.kernel.org
9313 S: Odd fixes
9314 F: Documentation/input/multi-touch-protocol.rst
9315 F: drivers/input/input-mt.c
9316 K: \b(ABS|SYN)_MT_
9317
9318 INSIDE SECURE CRYPTO DRIVER
9319 M: Antoine Tenart <atenart@kernel.org>
9320 L: linux-crypto@vger.kernel.org
9321 S: Maintained
9322 F: drivers/crypto/inside-secure/
9323
9324 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9325 M: Mimi Zohar <zohar@linux.ibm.com>
9326 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9327 L: linux-integrity@vger.kernel.org
9328 S: Supported
9329 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9330 F: security/integrity/ima/
9331
9332 INTEL 810/815 FRAMEBUFFER DRIVER
9333 M: Antonino Daplas <adaplas@gmail.com>
9334 L: linux-fbdev@vger.kernel.org
9335 S: Maintained
9336 F: drivers/video/fbdev/i810/
9337
9338 INTEL ASoC DRIVERS
9339 M: Cezary Rojewski <cezary.rojewski@intel.com>
9340 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9341 M: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9342 M: Jie Yang <yang.jie@linux.intel.com>
9343 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9344 S: Supported
9345 F: sound/soc/intel/
9346
9347 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9348 M: Hans de Goede <hdegoede@redhat.com>
9349 L: platform-driver-x86@vger.kernel.org
9350 S: Maintained
9351 F: drivers/platform/x86/intel/atomisp2/pm.c
9352
9353 INTEL ATOMISP2 LED DRIVER
9354 M: Hans de Goede <hdegoede@redhat.com>
9355 L: platform-driver-x86@vger.kernel.org
9356 S: Maintained
9357 F: drivers/platform/x86/intel/atomisp2/led.c
9358
9359 INTEL BIOS SAR INT1092 DRIVER
9360 M: Shravan Sudhakar <s.shravan@intel.com>
9361 M: Intel Corporation <linuxwwan@intel.com>
9362 L: platform-driver-x86@vger.kernel.org
9363 S: Maintained
9364 F: drivers/platform/x86/intel/int1092/
9365
9366 INTEL BROXTON PMC DRIVER
9367 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9368 M: Zha Qipeng <qipeng.zha@intel.com>
9369 S: Maintained
9370 F: drivers/mfd/intel_pmc_bxt.c
9371 F: include/linux/mfd/intel_pmc_bxt.h
9372
9373 INTEL C600 SERIES SAS CONTROLLER DRIVER
9374 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9375 L: linux-scsi@vger.kernel.org
9376 S: Supported
9377 T: git git://git.code.sf.net/p/intel-sas/isci
9378 F: drivers/scsi/isci/
9379
9380 INTEL CPU family model numbers
9381 M: Tony Luck <tony.luck@intel.com>
9382 M: x86@kernel.org
9383 L: linux-kernel@vger.kernel.org
9384 S: Supported
9385 F: arch/x86/include/asm/intel-family.h
9386
9387 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9388 M: Jani Nikula <jani.nikula@linux.intel.com>
9389 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9390 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
9391 L: intel-gfx@lists.freedesktop.org
9392 S: Supported
9393 W: https://01.org/linuxgraphics/
9394 Q: http://patchwork.freedesktop.org/project/intel-gfx/
9395 B: https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9396 C: irc://irc.oftc.net/intel-gfx
9397 T: git git://anongit.freedesktop.org/drm-intel
9398 F: Documentation/gpu/i915.rst
9399 F: drivers/gpu/drm/i915/
9400 F: include/drm/i915*
9401 F: include/uapi/drm/i915_drm.h
9402
9403 INTEL ETHERNET DRIVERS
9404 M: Jesse Brandeburg <jesse.brandeburg@intel.com>
9405 M: Tony Nguyen <anthony.l.nguyen@intel.com>
9406 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9407 S: Supported
9408 W: http://www.intel.com/support/feedback.htm
9409 W: http://e1000.sourceforge.net/
9410 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9411 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9412 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9413 F: Documentation/networking/device_drivers/ethernet/intel/
9414 F: drivers/net/ethernet/intel/
9415 F: drivers/net/ethernet/intel/*/
9416 F: include/linux/avf/virtchnl.h
9417 F: include/linux/net/intel/iidc.h
9418
9419 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9420 M: Mustafa Ismail <mustafa.ismail@intel.com>
9421 M: Shiraz Saleem <shiraz.saleem@intel.com>
9422 L: linux-rdma@vger.kernel.org
9423 S: Supported
9424 F: drivers/infiniband/hw/irdma/
9425 F: include/uapi/rdma/irdma-abi.h
9426
9427 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9428 M: Maik Broemme <mbroemme@libmpq.org>
9429 L: linux-fbdev@vger.kernel.org
9430 S: Maintained
9431 F: Documentation/fb/intelfb.rst
9432 F: drivers/video/fbdev/intelfb/
9433
9434 INTEL GPIO DRIVERS
9435 M: Andy Shevchenko <andy@kernel.org>
9436 L: linux-gpio@vger.kernel.org
9437 S: Maintained
9438 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9439 F: drivers/gpio/gpio-ich.c
9440 F: drivers/gpio/gpio-merrifield.c
9441 F: drivers/gpio/gpio-ml-ioh.c
9442 F: drivers/gpio/gpio-pch.c
9443 F: drivers/gpio/gpio-sch.c
9444 F: drivers/gpio/gpio-sodaville.c
9445
9446 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9447 M: Zhenyu Wang <zhenyuw@linux.intel.com>
9448 M: Zhi Wang <zhi.a.wang@intel.com>
9449 L: intel-gvt-dev@lists.freedesktop.org
9450 L: intel-gfx@lists.freedesktop.org
9451 S: Supported
9452 W: https://01.org/igvt-g
9453 T: git https://github.com/intel/gvt-linux.git
9454 F: drivers/gpu/drm/i915/gvt/
9455
9456 INTEL HID EVENT DRIVER
9457 M: Alex Hung <alex.hung@canonical.com>
9458 L: platform-driver-x86@vger.kernel.org
9459 S: Maintained
9460 F: drivers/platform/x86/intel/hid.c
9461
9462 INTEL I/OAT DMA DRIVER
9463 M: Dave Jiang <dave.jiang@intel.com>
9464 R: Dan Williams <dan.j.williams@intel.com>
9465 L: dmaengine@vger.kernel.org
9466 S: Supported
9467 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
9468 F: drivers/dma/ioat*
9469
9470 INTEL IADX DRIVER
9471 M: Dave Jiang <dave.jiang@intel.com>
9472 L: dmaengine@vger.kernel.org
9473 S: Supported
9474 F: drivers/dma/idxd/*
9475 F: include/uapi/linux/idxd.h
9476
9477 INTEL IDLE DRIVER
9478 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
9479 M: Len Brown <lenb@kernel.org>
9480 L: linux-pm@vger.kernel.org
9481 S: Supported
9482 B: https://bugzilla.kernel.org
9483 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9484 F: drivers/idle/intel_idle.c
9485
9486 INTEL INTEGRATED SENSOR HUB DRIVER
9487 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9488 M: Jiri Kosina <jikos@kernel.org>
9489 L: linux-input@vger.kernel.org
9490 S: Maintained
9491 F: drivers/hid/intel-ish-hid/
9492
9493 INTEL IOMMU (VT-d)
9494 M: David Woodhouse <dwmw2@infradead.org>
9495 M: Lu Baolu <baolu.lu@linux.intel.com>
9496 L: iommu@lists.linux-foundation.org
9497 S: Supported
9498 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9499 F: drivers/iommu/intel/
9500 F: include/linux/intel-iommu.h
9501 F: include/linux/intel-svm.h
9502
9503 INTEL IOP-ADMA DMA DRIVER
9504 R: Dan Williams <dan.j.williams@intel.com>
9505 S: Odd fixes
9506 F: drivers/dma/iop-adma.c
9507
9508 INTEL IPU3 CSI-2 CIO2 DRIVER
9509 M: Yong Zhi <yong.zhi@intel.com>
9510 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9511 M: Bingbu Cao <bingbu.cao@intel.com>
9512 M: Dan Scally <djrscally@gmail.com>
9513 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9514 L: linux-media@vger.kernel.org
9515 S: Maintained
9516 T: git git://linuxtv.org/media_tree.git
9517 F: Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9518 F: drivers/media/pci/intel/ipu3/
9519
9520 INTEL IPU3 CSI-2 IMGU DRIVER
9521 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9522 R: Bingbu Cao <bingbu.cao@intel.com>
9523 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9524 L: linux-media@vger.kernel.org
9525 S: Maintained
9526 F: Documentation/admin-guide/media/ipu3.rst
9527 F: Documentation/admin-guide/media/ipu3_rcb.svg
9528 F: Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9529 F: drivers/staging/media/ipu3/
9530
9531 INTEL IXP4XX CRYPTO SUPPORT
9532 M: Corentin Labbe <clabbe@baylibre.com>
9533 L: linux-crypto@vger.kernel.org
9534 S: Maintained
9535 F: drivers/crypto/ixp4xx_crypto.c
9536
9537 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9538 M: Krzysztof Halasa <khalasa@piap.pl>
9539 S: Maintained
9540 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
9541 F: drivers/net/wan/ixp4xx_hss.c
9542 F: drivers/soc/ixp4xx/ixp4xx-npe.c
9543 F: drivers/soc/ixp4xx/ixp4xx-qmgr.c
9544 F: include/linux/soc/ixp4xx/npe.h
9545 F: include/linux/soc/ixp4xx/qmgr.h
9546
9547 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9548 M: Deepak Saxena <dsaxena@plexity.net>
9549 S: Maintained
9550 F: Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9551 F: drivers/char/hw_random/ixp4xx-rng.c
9552
9553 INTEL KEEM BAY DRM DRIVER
9554 M: Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9555 M: Edmund Dea <edmund.j.dea@intel.com>
9556 S: Maintained
9557 F: Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9558 F: drivers/gpu/drm/kmb/
9559
9560 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9561 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9562 S: Maintained
9563 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9564 F: drivers/crypto/keembay/Kconfig
9565 F: drivers/crypto/keembay/Makefile
9566 F: drivers/crypto/keembay/keembay-ocs-aes-core.c
9567 F: drivers/crypto/keembay/ocs-aes.c
9568 F: drivers/crypto/keembay/ocs-aes.h
9569
9570 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9571 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9572 M: Declan Murphy <declan.murphy@intel.com>
9573 S: Maintained
9574 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9575 F: drivers/crypto/keembay/Kconfig
9576 F: drivers/crypto/keembay/Makefile
9577 F: drivers/crypto/keembay/keembay-ocs-hcu-core.c
9578 F: drivers/crypto/keembay/ocs-hcu.c
9579 F: drivers/crypto/keembay/ocs-hcu.h
9580
9581 INTEL MANAGEMENT ENGINE (mei)
9582 M: Tomas Winkler <tomas.winkler@intel.com>
9583 L: linux-kernel@vger.kernel.org
9584 S: Supported
9585 F: Documentation/driver-api/mei/*
9586 F: drivers/misc/mei/
9587 F: drivers/watchdog/mei_wdt.c
9588 F: include/linux/mei_cl_bus.h
9589 F: include/uapi/linux/mei.h
9590 F: samples/mei/*
9591
9592 INTEL MAX 10 BMC MFD DRIVER
9593 M: Xu Yilun <yilun.xu@intel.com>
9594 R: Tom Rix <trix@redhat.com>
9595 S: Maintained
9596 F: Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9597 F: Documentation/hwmon/intel-m10-bmc-hwmon.rst
9598 F: drivers/hwmon/intel-m10-bmc-hwmon.c
9599 F: drivers/mfd/intel-m10-bmc.c
9600 F: include/linux/mfd/intel-m10-bmc.h
9601
9602 INTEL MENLOW THERMAL DRIVER
9603 M: Sujith Thomas <sujith.thomas@intel.com>
9604 L: linux-pm@vger.kernel.org
9605 S: Supported
9606 W: https://01.org/linux-acpi
9607 F: drivers/thermal/intel/intel_menlow.c
9608
9609 INTEL P-Unit IPC DRIVER
9610 M: Zha Qipeng <qipeng.zha@intel.com>
9611 L: platform-driver-x86@vger.kernel.org
9612 S: Maintained
9613 F: arch/x86/include/asm/intel_punit_ipc.h
9614 F: drivers/platform/x86/intel/punit_ipc.c
9615
9616 INTEL PMC CORE DRIVER
9617 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9618 M: David E Box <david.e.box@intel.com>
9619 L: platform-driver-x86@vger.kernel.org
9620 S: Maintained
9621 F: Documentation/ABI/testing/sysfs-platform-intel-pmc
9622 F: drivers/platform/x86/intel/pmc/
9623
9624 INTEL PMIC GPIO DRIVERS
9625 M: Andy Shevchenko <andy@kernel.org>
9626 S: Maintained
9627 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9628 F: drivers/gpio/gpio-*cove.c
9629
9630 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9631 M: Andy Shevchenko <andy@kernel.org>
9632 S: Maintained
9633 F: drivers/mfd/intel_soc_pmic*
9634 F: include/linux/mfd/intel_soc_pmic*
9635
9636 INTEL PMT DRIVER
9637 M: "David E. Box" <david.e.box@linux.intel.com>
9638 S: Maintained
9639 F: drivers/mfd/intel_pmt.c
9640 F: drivers/platform/x86/intel/pmt/
9641
9642 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9643 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
9644 L: linux-wireless@vger.kernel.org
9645 S: Maintained
9646 F: Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9647 F: Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9648 F: drivers/net/wireless/intel/ipw2x00/
9649
9650 INTEL PSTATE DRIVER
9651 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9652 M: Len Brown <lenb@kernel.org>
9653 L: linux-pm@vger.kernel.org
9654 S: Supported
9655 F: drivers/cpufreq/intel_pstate.c
9656
9657 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9658 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9659 L: linux-iio@vger.kernel.org
9660 F: drivers/counter/intel-qep.c
9661
9662 INTEL SCU DRIVERS
9663 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9664 S: Maintained
9665 F: arch/x86/include/asm/intel_scu_ipc.h
9666 F: drivers/platform/x86/intel_scu_*
9667
9668 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9669 M: Daniel Scally <djrscally@gmail.com>
9670 S: Maintained
9671 F: drivers/platform/x86/intel/int3472/
9672
9673 INTEL SPEED SELECT TECHNOLOGY
9674 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9675 L: platform-driver-x86@vger.kernel.org
9676 S: Maintained
9677 F: drivers/platform/x86/intel/speed_select_if/
9678 F: include/uapi/linux/isst_if.h
9679 F: tools/power/x86/intel-speed-select/
9680
9681 INTEL STRATIX10 FIRMWARE DRIVERS
9682 M: Dinh Nguyen <dinguyen@kernel.org>
9683 L: linux-kernel@vger.kernel.org
9684 S: Maintained
9685 F: Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9686 F: Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9687 F: drivers/firmware/stratix10-rsu.c
9688 F: drivers/firmware/stratix10-svc.c
9689 F: include/linux/firmware/intel/stratix10-smc.h
9690 F: include/linux/firmware/intel/stratix10-svc-client.h
9691
9692 INTEL TELEMETRY DRIVER
9693 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9694 M: "David E. Box" <david.e.box@linux.intel.com>
9695 L: platform-driver-x86@vger.kernel.org
9696 S: Maintained
9697 F: arch/x86/include/asm/intel_telemetry.h
9698 F: drivers/platform/x86/intel/telemetry/
9699
9700 INTEL UNCORE FREQUENCY CONTROL
9701 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9702 L: platform-driver-x86@vger.kernel.org
9703 S: Maintained
9704 F: drivers/platform/x86/intel/uncore-frequency.c
9705
9706 INTEL VIRTUAL BUTTON DRIVER
9707 M: AceLan Kao <acelan.kao@canonical.com>
9708 L: platform-driver-x86@vger.kernel.org
9709 S: Maintained
9710 F: drivers/platform/x86/intel/vbtn.c
9711
9712 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9713 M: Stanislaw Gruszka <stf_xl@wp.pl>
9714 L: linux-wireless@vger.kernel.org
9715 S: Supported
9716 F: drivers/net/wireless/intel/iwlegacy/
9717
9718 INTEL WIRELESS WIFI LINK (iwlwifi)
9719 M: Luca Coelho <luciano.coelho@intel.com>
9720 L: linux-wireless@vger.kernel.org
9721 S: Supported
9722 W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9723 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9724 F: drivers/net/wireless/intel/iwlwifi/
9725
9726 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9727 M: Jithu Joseph <jithu.joseph@intel.com>
9728 R: Maurice Ma <maurice.ma@intel.com>
9729 S: Maintained
9730 W: https://slimbootloader.github.io/security/firmware-update.html
9731 F: drivers/platform/x86/intel/wmi/sbl-fw-update.c
9732
9733 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9734 L: Dell.Client.Kernel@dell.com
9735 S: Maintained
9736 F: drivers/platform/x86/intel/wmi/thunderbolt.c
9737
9738 INTEL WWAN IOSM DRIVER
9739 M: M Chetan Kumar <m.chetan.kumar@intel.com>
9740 M: Intel Corporation <linuxwwan@intel.com>
9741 L: netdev@vger.kernel.org
9742 S: Maintained
9743 F: drivers/net/wwan/iosm/
9744
9745 INTEL(R) TRACE HUB
9746 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9747 S: Supported
9748 F: Documentation/trace/intel_th.rst
9749 F: drivers/hwtracing/intel_th/
9750 F: include/linux/intel_th.h
9751
9752 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9753 M: Ning Sun <ning.sun@intel.com>
9754 L: tboot-devel@lists.sourceforge.net
9755 S: Supported
9756 W: http://tboot.sourceforge.net
9757 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9758 F: Documentation/x86/intel_txt.rst
9759 F: arch/x86/kernel/tboot.c
9760 F: include/linux/tboot.h
9761
9762 INTEL SGX
9763 M: Jarkko Sakkinen <jarkko@kernel.org>
9764 R: Dave Hansen <dave.hansen@linux.intel.com>
9765 L: linux-sgx@vger.kernel.org
9766 S: Supported
9767 Q: https://patchwork.kernel.org/project/intel-sgx/list/
9768 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9769 F: Documentation/x86/sgx.rst
9770 F: arch/x86/entry/vdso/vsgx.S
9771 F: arch/x86/include/asm/sgx.h
9772 F: arch/x86/include/uapi/asm/sgx.h
9773 F: arch/x86/kernel/cpu/sgx/*
9774 F: tools/testing/selftests/sgx/*
9775 K: \bSGX_
9776
9777 INTERCONNECT API
9778 M: Georgi Djakov <djakov@kernel.org>
9779 L: linux-pm@vger.kernel.org
9780 S: Maintained
9781 T: git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9782 F: Documentation/devicetree/bindings/interconnect/
9783 F: Documentation/driver-api/interconnect.rst
9784 F: drivers/interconnect/
9785 F: include/dt-bindings/interconnect/
9786 F: include/linux/interconnect-provider.h
9787 F: include/linux/interconnect.h
9788
9789 INTERRUPT COUNTER DRIVER
9790 M: Oleksij Rempel <o.rempel@pengutronix.de>
9791 R: Pengutronix Kernel Team <kernel@pengutronix.de>
9792 L: linux-iio@vger.kernel.org
9793 F: Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9794 F: drivers/counter/interrupt-cnt.c
9795
9796 INVENSENSE ICM-426xx IMU DRIVER
9797 M: Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9798 L: linux-iio@vger.kernel.org
9799 S: Maintained
9800 W: https://invensense.tdk.com/
9801 F: Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9802 F: drivers/iio/imu/inv_icm42600/
9803
9804 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9805 M: Linus Walleij <linus.walleij@linaro.org>
9806 L: linux-iio@vger.kernel.org
9807 S: Maintained
9808 F: Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9809 F: drivers/iio/gyro/mpu3050*
9810
9811 IOC3 ETHERNET DRIVER
9812 M: Ralf Baechle <ralf@linux-mips.org>
9813 L: linux-mips@vger.kernel.org
9814 S: Maintained
9815 F: drivers/net/ethernet/sgi/ioc3-eth.c
9816
9817 IOMAP FILESYSTEM LIBRARY
9818 M: Christoph Hellwig <hch@infradead.org>
9819 M: Darrick J. Wong <djwong@kernel.org>
9820 M: linux-xfs@vger.kernel.org
9821 M: linux-fsdevel@vger.kernel.org
9822 L: linux-xfs@vger.kernel.org
9823 L: linux-fsdevel@vger.kernel.org
9824 S: Supported
9825 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9826 F: fs/iomap/
9827 F: include/linux/iomap.h
9828
9829 IOMMU DRIVERS
9830 M: Joerg Roedel <joro@8bytes.org>
9831 M: Will Deacon <will@kernel.org>
9832 L: iommu@lists.linux-foundation.org
9833 S: Maintained
9834 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9835 F: Documentation/devicetree/bindings/iommu/
9836 F: Documentation/userspace-api/iommu.rst
9837 F: drivers/iommu/
9838 F: include/linux/iommu.h
9839 F: include/linux/iova.h
9840 F: include/linux/of_iommu.h
9841 F: include/uapi/linux/iommu.h
9842
9843 IO_URING
9844 M: Jens Axboe <axboe@kernel.dk>
9845 R: Pavel Begunkov <asml.silence@gmail.com>
9846 L: io-uring@vger.kernel.org
9847 S: Maintained
9848 T: git git://git.kernel.dk/linux-block
9849 T: git git://git.kernel.dk/liburing
9850 F: fs/io-wq.c
9851 F: fs/io-wq.h
9852 F: fs/io_uring.c
9853 F: include/linux/io_uring.h
9854 F: include/uapi/linux/io_uring.h
9855 F: tools/io_uring/
9856
9857 IPMI SUBSYSTEM
9858 M: Corey Minyard <minyard@acm.org>
9859 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9860 S: Supported
9861 W: http://openipmi.sourceforge.net/
9862 F: Documentation/driver-api/ipmi.rst
9863 F: Documentation/devicetree/bindings/ipmi/
9864 F: drivers/char/ipmi/
9865 F: include/linux/ipmi*
9866 F: include/uapi/linux/ipmi*
9867
9868 IPS SCSI RAID DRIVER
9869 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9870 L: linux-scsi@vger.kernel.org
9871 S: Maintained
9872 W: http://www.adaptec.com/
9873 F: drivers/scsi/ips*
9874
9875 IPVS
9876 M: Simon Horman <horms@verge.net.au>
9877 M: Julian Anastasov <ja@ssi.bg>
9878 L: netdev@vger.kernel.org
9879 L: lvs-devel@vger.kernel.org
9880 S: Maintained
9881 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9882 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9883 F: Documentation/networking/ipvs-sysctl.rst
9884 F: include/net/ip_vs.h
9885 F: include/uapi/linux/ip_vs.h
9886 F: net/netfilter/ipvs/
9887
9888 IPWIRELESS DRIVER
9889 M: Jiri Kosina <jikos@kernel.org>
9890 M: David Sterba <dsterba@suse.com>
9891 S: Odd Fixes
9892 F: drivers/tty/ipwireless/
9893
9894 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9895 M: Marc Zyngier <maz@kernel.org>
9896 S: Maintained
9897 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9898 F: Documentation/core-api/irq/irq-domain.rst
9899 F: include/linux/irqdomain.h
9900 F: kernel/irq/irqdomain.c
9901 F: kernel/irq/msi.c
9902
9903 IRQ SUBSYSTEM
9904 M: Thomas Gleixner <tglx@linutronix.de>
9905 L: linux-kernel@vger.kernel.org
9906 S: Maintained
9907 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9908 F: kernel/irq/
9909
9910 IRQCHIP DRIVERS
9911 M: Thomas Gleixner <tglx@linutronix.de>
9912 M: Marc Zyngier <maz@kernel.org>
9913 L: linux-kernel@vger.kernel.org
9914 S: Maintained
9915 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9916 F: Documentation/devicetree/bindings/interrupt-controller/
9917 F: drivers/irqchip/
9918
9919 ISA
9920 M: William Breathitt Gray <vilhelm.gray@gmail.com>
9921 S: Maintained
9922 F: Documentation/driver-api/isa.rst
9923 F: drivers/base/isa.c
9924 F: include/linux/isa.h
9925
9926 ISA RADIO MODULE
9927 M: Hans Verkuil <hverkuil@xs4all.nl>
9928 L: linux-media@vger.kernel.org
9929 S: Maintained
9930 W: https://linuxtv.org
9931 T: git git://linuxtv.org/media_tree.git
9932 F: drivers/media/radio/radio-isa*
9933
9934 ISAPNP
9935 M: Jaroslav Kysela <perex@perex.cz>
9936 S: Maintained
9937 F: Documentation/driver-api/isapnp.rst
9938 F: drivers/pnp/isapnp/
9939 F: include/linux/isapnp.h
9940
9941 ISCSI
9942 M: Lee Duncan <lduncan@suse.com>
9943 M: Chris Leech <cleech@redhat.com>
9944 L: open-iscsi@googlegroups.com
9945 L: linux-scsi@vger.kernel.org
9946 S: Maintained
9947 W: www.open-iscsi.com
9948 F: drivers/scsi/*iscsi*
9949 F: include/scsi/*iscsi*
9950
9951 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9952 M: Peter Jones <pjones@redhat.com>
9953 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
9954 S: Maintained
9955 F: drivers/firmware/iscsi_ibft*
9956
9957 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9958 M: Sagi Grimberg <sagi@grimberg.me>
9959 M: Max Gurtovoy <mgurtovoy@nvidia.com>
9960 L: linux-rdma@vger.kernel.org
9961 S: Supported
9962 W: http://www.openfabrics.org
9963 W: www.open-iscsi.org
9964 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9965 F: drivers/infiniband/ulp/iser/
9966
9967 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9968 M: Sagi Grimberg <sagi@grimberg.me>
9969 L: linux-rdma@vger.kernel.org
9970 L: target-devel@vger.kernel.org
9971 S: Supported
9972 W: http://www.linux-iscsi.org
9973 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9974 F: drivers/infiniband/ulp/isert
9975
9976 ISDN/CMTP OVER BLUETOOTH
9977 M: Karsten Keil <isdn@linux-pingi.de>
9978 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9979 L: netdev@vger.kernel.org
9980 S: Odd Fixes
9981 W: http://www.isdn4linux.de
9982 F: Documentation/isdn/
9983 F: drivers/isdn/capi/
9984 F: include/linux/isdn/
9985 F: include/uapi/linux/isdn/
9986 F: net/bluetooth/cmtp/
9987
9988 ISDN/mISDN SUBSYSTEM
9989 M: Karsten Keil <isdn@linux-pingi.de>
9990 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9991 L: netdev@vger.kernel.org
9992 S: Maintained
9993 W: http://www.isdn4linux.de
9994 F: drivers/isdn/Kconfig
9995 F: drivers/isdn/Makefile
9996 F: drivers/isdn/hardware/
9997 F: drivers/isdn/mISDN/
9998
9999 IT87 HARDWARE MONITORING DRIVER
10000 M: Jean Delvare <jdelvare@suse.com>
10001 L: linux-hwmon@vger.kernel.org
10002 S: Maintained
10003 F: Documentation/hwmon/it87.rst
10004 F: drivers/hwmon/it87.c
10005
10006 IT913X MEDIA DRIVER
10007 M: Antti Palosaari <crope@iki.fi>
10008 L: linux-media@vger.kernel.org
10009 S: Maintained
10010 W: https://linuxtv.org
10011 W: http://palosaari.fi/linux/
10012 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10013 T: git git://linuxtv.org/anttip/media_tree.git
10014 F: drivers/media/tuners/it913x*
10015
10016 ITE IT66121 HDMI BRIDGE DRIVER
10017 M: Phong LE <ple@baylibre.com>
10018 M: Neil Armstrong <narmstrong@baylibre.com>
10019 S: Maintained
10020 T: git git://anongit.freedesktop.org/drm/drm-misc
10021 F: Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10022 F: drivers/gpu/drm/bridge/ite-it66121.c
10023
10024 IVTV VIDEO4LINUX DRIVER
10025 M: Andy Walls <awalls@md.metrocast.net>
10026 L: linux-media@vger.kernel.org
10027 S: Maintained
10028 W: https://linuxtv.org
10029 T: git git://linuxtv.org/media_tree.git
10030 F: Documentation/admin-guide/media/ivtv*
10031 F: drivers/media/pci/ivtv/
10032 F: include/uapi/linux/ivtv*
10033
10034 IX2505V MEDIA DRIVER
10035 M: Malcolm Priestley <tvboxspy@gmail.com>
10036 L: linux-media@vger.kernel.org
10037 S: Maintained
10038 W: https://linuxtv.org
10039 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10040 F: drivers/media/dvb-frontends/ix2505v*
10041
10042 JAILHOUSE HYPERVISOR INTERFACE
10043 M: Jan Kiszka <jan.kiszka@siemens.com>
10044 L: jailhouse-dev@googlegroups.com
10045 S: Maintained
10046 F: arch/x86/include/asm/jailhouse_para.h
10047 F: arch/x86/kernel/jailhouse.c
10048
10049 JC42.4 TEMPERATURE SENSOR DRIVER
10050 M: Guenter Roeck <linux@roeck-us.net>
10051 L: linux-hwmon@vger.kernel.org
10052 S: Maintained
10053 F: Documentation/hwmon/jc42.rst
10054 F: drivers/hwmon/jc42.c
10055
10056 JFS FILESYSTEM
10057 M: Dave Kleikamp <shaggy@kernel.org>
10058 L: jfs-discussion@lists.sourceforge.net
10059 S: Maintained
10060 W: http://jfs.sourceforge.net/
10061 T: git git://github.com/kleikamp/linux-shaggy.git
10062 F: Documentation/admin-guide/jfs.rst
10063 F: fs/jfs/
10064
10065 JME NETWORK DRIVER
10066 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
10067 L: netdev@vger.kernel.org
10068 S: Maintained
10069 F: drivers/net/ethernet/jme.*
10070
10071 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10072 M: David Woodhouse <dwmw2@infradead.org>
10073 M: Richard Weinberger <richard@nod.at>
10074 L: linux-mtd@lists.infradead.org
10075 S: Odd Fixes
10076 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
10077 T: git git://git.infradead.org/ubifs-2.6.git
10078 F: fs/jffs2/
10079 F: include/uapi/linux/jffs2.h
10080
10081 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10082 M: "Theodore Ts'o" <tytso@mit.edu>
10083 M: Jan Kara <jack@suse.com>
10084 L: linux-ext4@vger.kernel.org
10085 S: Maintained
10086 F: fs/jbd2/
10087 F: include/linux/jbd2.h
10088
10089 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10090 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10091 L: linux-media@vger.kernel.org
10092 S: Maintained
10093 F: drivers/media/platform/rcar_jpu.c
10094
10095 JSM Neo PCI based serial card
10096 L: linux-serial@vger.kernel.org
10097 S: Orphan
10098 F: drivers/tty/serial/jsm/
10099
10100 K10TEMP HARDWARE MONITORING DRIVER
10101 M: Clemens Ladisch <clemens@ladisch.de>
10102 L: linux-hwmon@vger.kernel.org
10103 S: Maintained
10104 F: Documentation/hwmon/k10temp.rst
10105 F: drivers/hwmon/k10temp.c
10106
10107 K8TEMP HARDWARE MONITORING DRIVER
10108 M: Rudolf Marek <r.marek@assembler.cz>
10109 L: linux-hwmon@vger.kernel.org
10110 S: Maintained
10111 F: Documentation/hwmon/k8temp.rst
10112 F: drivers/hwmon/k8temp.c
10113
10114 KASAN
10115 M: Andrey Ryabinin <ryabinin.a.a@gmail.com>
10116 R: Alexander Potapenko <glider@google.com>
10117 R: Andrey Konovalov <andreyknvl@gmail.com>
10118 R: Dmitry Vyukov <dvyukov@google.com>
10119 L: kasan-dev@googlegroups.com
10120 S: Maintained
10121 F: Documentation/dev-tools/kasan.rst
10122 F: arch/*/include/asm/*kasan.h
10123 F: arch/*/mm/kasan_init*
10124 F: include/linux/kasan*.h
10125 F: lib/Kconfig.kasan
10126 F: lib/test_kasan*.c
10127 F: mm/kasan/
10128 F: scripts/Makefile.kasan
10129
10130 KCONFIG
10131 M: Masahiro Yamada <masahiroy@kernel.org>
10132 L: linux-kbuild@vger.kernel.org
10133 S: Maintained
10134 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10135 F: Documentation/kbuild/kconfig*
10136 F: scripts/Kconfig.include
10137 F: scripts/kconfig/
10138
10139 KCOV
10140 R: Dmitry Vyukov <dvyukov@google.com>
10141 R: Andrey Konovalov <andreyknvl@gmail.com>
10142 L: kasan-dev@googlegroups.com
10143 S: Maintained
10144 F: Documentation/dev-tools/kcov.rst
10145 F: include/linux/kcov.h
10146 F: include/uapi/linux/kcov.h
10147 F: kernel/kcov.c
10148 F: scripts/Makefile.kcov
10149
10150 KCSAN
10151 M: Marco Elver <elver@google.com>
10152 R: Dmitry Vyukov <dvyukov@google.com>
10153 L: kasan-dev@googlegroups.com
10154 S: Maintained
10155 F: Documentation/dev-tools/kcsan.rst
10156 F: include/linux/kcsan*.h
10157 F: kernel/kcsan/
10158 F: lib/Kconfig.kcsan
10159 F: scripts/Makefile.kcsan
10160
10161 KDUMP
10162 M: Dave Young <dyoung@redhat.com>
10163 M: Baoquan He <bhe@redhat.com>
10164 R: Vivek Goyal <vgoyal@redhat.com>
10165 L: kexec@lists.infradead.org
10166 S: Maintained
10167 W: http://lse.sourceforge.net/kdump/
10168 F: Documentation/admin-guide/kdump/
10169 F: fs/proc/vmcore.c
10170 F: include/linux/crash_core.h
10171 F: include/linux/crash_dump.h
10172 F: include/uapi/linux/vmcore.h
10173 F: kernel/crash_*.c
10174
10175 KEENE FM RADIO TRANSMITTER DRIVER
10176 M: Hans Verkuil <hverkuil@xs4all.nl>
10177 L: linux-media@vger.kernel.org
10178 S: Maintained
10179 W: https://linuxtv.org
10180 T: git git://linuxtv.org/media_tree.git
10181 F: drivers/media/radio/radio-keene*
10182
10183 KERNEL AUTOMOUNTER
10184 M: Ian Kent <raven@themaw.net>
10185 L: autofs@vger.kernel.org
10186 S: Maintained
10187 F: fs/autofs/
10188
10189 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10190 M: Masahiro Yamada <masahiroy@kernel.org>
10191 M: Michal Marek <michal.lkml@markovi.net>
10192 R: Nick Desaulniers <ndesaulniers@google.com>
10193 L: linux-kbuild@vger.kernel.org
10194 S: Maintained
10195 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10196 F: Documentation/kbuild/
10197 F: Makefile
10198 F: scripts/*vmlinux*
10199 F: scripts/Kbuild*
10200 F: scripts/Makefile*
10201 F: scripts/basic/
10202 F: scripts/dummy-tools/
10203 F: scripts/mk*
10204 F: scripts/mod/
10205 F: scripts/package/
10206
10207 KERNEL JANITORS
10208 L: kernel-janitors@vger.kernel.org
10209 S: Odd Fixes
10210 W: http://kernelnewbies.org/KernelJanitors
10211
10212 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10213 M: "J. Bruce Fields" <bfields@fieldses.org>
10214 M: Chuck Lever <chuck.lever@oracle.com>
10215 L: linux-nfs@vger.kernel.org
10216 S: Supported
10217 W: http://nfs.sourceforge.net/
10218 T: git git://linux-nfs.org/~bfields/linux.git
10219 F: fs/lockd/
10220 F: fs/nfs_common/
10221 F: fs/nfsd/
10222 F: include/linux/lockd/
10223 F: include/linux/sunrpc/
10224 F: include/uapi/linux/nfsd/
10225 F: include/uapi/linux/sunrpc/
10226 F: net/sunrpc/
10227 F: Documentation/filesystems/nfs/
10228
10229 KERNEL REGRESSIONS
10230 M: Thorsten Leemhuis <linux@leemhuis.info>
10231 L: regressions@lists.linux.dev
10232 S: Supported
10233
10234 KERNEL SELFTEST FRAMEWORK
10235 M: Shuah Khan <shuah@kernel.org>
10236 M: Shuah Khan <skhan@linuxfoundation.org>
10237 L: linux-kselftest@vger.kernel.org
10238 S: Maintained
10239 Q: https://patchwork.kernel.org/project/linux-kselftest/list/
10240 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10241 F: Documentation/dev-tools/kselftest*
10242 F: tools/testing/selftests/
10243
10244 KERNEL SMB3 SERVER (KSMBD)
10245 M: Namjae Jeon <linkinjeon@kernel.org>
10246 M: Sergey Senozhatsky <senozhatsky@chromium.org>
10247 M: Steve French <sfrench@samba.org>
10248 M: Hyunchul Lee <hyc.lee@gmail.com>
10249 L: linux-cifs@vger.kernel.org
10250 S: Maintained
10251 T: git git://git.samba.org/ksmbd.git
10252 F: fs/ksmbd/
10253 F: fs/smbfs_common/
10254
10255 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10256 M: Brendan Higgins <brendanhiggins@google.com>
10257 L: linux-kselftest@vger.kernel.org
10258 L: kunit-dev@googlegroups.com
10259 S: Maintained
10260 W: https://google.github.io/kunit-docs/third_party/kernel/docs/
10261 F: Documentation/dev-tools/kunit/
10262 F: include/kunit/
10263 F: lib/kunit/
10264 F: tools/testing/kunit/
10265
10266 KERNEL USERMODE HELPER
10267 M: Luis Chamberlain <mcgrof@kernel.org>
10268 L: linux-kernel@vger.kernel.org
10269 S: Maintained
10270 F: include/linux/umh.h
10271 F: kernel/umh.c
10272
10273 KERNEL VIRTUAL MACHINE (KVM)
10274 M: Paolo Bonzini <pbonzini@redhat.com>
10275 L: kvm@vger.kernel.org
10276 S: Supported
10277 W: http://www.linux-kvm.org
10278 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10279 F: Documentation/virt/kvm/
10280 F: include/asm-generic/kvm*
10281 F: include/kvm/iodev.h
10282 F: include/linux/kvm*
10283 F: include/trace/events/kvm.h
10284 F: include/uapi/asm-generic/kvm*
10285 F: include/uapi/linux/kvm*
10286 F: tools/kvm/
10287 F: tools/testing/selftests/kvm/
10288 F: virt/kvm/*
10289
10290 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10291 M: Marc Zyngier <maz@kernel.org>
10292 R: James Morse <james.morse@arm.com>
10293 R: Alexandru Elisei <alexandru.elisei@arm.com>
10294 R: Suzuki K Poulose <suzuki.poulose@arm.com>
10295 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10296 L: kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10297 S: Maintained
10298 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10299 F: arch/arm64/include/asm/kvm*
10300 F: arch/arm64/include/uapi/asm/kvm*
10301 F: arch/arm64/kvm/
10302 F: include/kvm/arm_*
10303 F: tools/testing/selftests/kvm/*/aarch64/
10304 F: tools/testing/selftests/kvm/aarch64/
10305
10306 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10307 M: Huacai Chen <chenhuacai@kernel.org>
10308 M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10309 L: linux-mips@vger.kernel.org
10310 L: kvm@vger.kernel.org
10311 S: Maintained
10312 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10313 F: arch/mips/include/asm/kvm*
10314 F: arch/mips/include/uapi/asm/kvm*
10315 F: arch/mips/kvm/
10316
10317 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10318 M: Paul Mackerras <paulus@ozlabs.org>
10319 L: kvm-ppc@vger.kernel.org
10320 S: Supported
10321 W: http://www.linux-kvm.org/
10322 T: git git://github.com/agraf/linux-2.6.git
10323 F: arch/powerpc/include/asm/kvm*
10324 F: arch/powerpc/include/uapi/asm/kvm*
10325 F: arch/powerpc/kernel/kvm*
10326 F: arch/powerpc/kvm/
10327
10328 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10329 M: Christian Borntraeger <borntraeger@de.ibm.com>
10330 M: Janosch Frank <frankja@linux.ibm.com>
10331 R: David Hildenbrand <david@redhat.com>
10332 R: Claudio Imbrenda <imbrenda@linux.ibm.com>
10333 L: kvm@vger.kernel.org
10334 S: Supported
10335 W: http://www.ibm.com/developerworks/linux/linux390/
10336 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10337 F: Documentation/virt/kvm/s390*
10338 F: arch/s390/include/asm/gmap.h
10339 F: arch/s390/include/asm/kvm*
10340 F: arch/s390/include/uapi/asm/kvm*
10341 F: arch/s390/include/uapi/asm/uvdevice.h
10342 F: arch/s390/kernel/uv.c
10343 F: arch/s390/kvm/
10344 F: arch/s390/mm/gmap.c
10345 F: drivers/s390/char/uvdevice.c
10346 F: tools/testing/selftests/kvm/*/s390x/
10347 F: tools/testing/selftests/kvm/s390x/
10348
10349 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10350 M: Paolo Bonzini <pbonzini@redhat.com>
10351 R: Sean Christopherson <seanjc@google.com>
10352 R: Vitaly Kuznetsov <vkuznets@redhat.com>
10353 R: Wanpeng Li <wanpengli@tencent.com>
10354 R: Jim Mattson <jmattson@google.com>
10355 R: Joerg Roedel <joro@8bytes.org>
10356 L: kvm@vger.kernel.org
10357 S: Supported
10358 W: http://www.linux-kvm.org
10359 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10360 F: arch/x86/include/asm/kvm*
10361 F: arch/x86/include/asm/pvclock-abi.h
10362 F: arch/x86/include/asm/svm.h
10363 F: arch/x86/include/asm/vmx*.h
10364 F: arch/x86/include/uapi/asm/kvm*
10365 F: arch/x86/include/uapi/asm/svm.h
10366 F: arch/x86/include/uapi/asm/vmx.h
10367 F: arch/x86/kernel/kvm.c
10368 F: arch/x86/kernel/kvmclock.c
10369 F: arch/x86/kvm/
10370 F: arch/x86/kvm/*/
10371
10372 KERNFS
10373 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10374 M: Tejun Heo <tj@kernel.org>
10375 S: Supported
10376 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10377 F: fs/kernfs/
10378 F: include/linux/kernfs.h
10379
10380 KEXEC
10381 M: Eric Biederman <ebiederm@xmission.com>
10382 L: kexec@lists.infradead.org
10383 S: Maintained
10384 W: http://kernel.org/pub/linux/utils/kernel/kexec/
10385 F: include/linux/kexec.h
10386 F: include/uapi/linux/kexec.h
10387 F: kernel/kexec*
10388
10389 KEYS-ENCRYPTED
10390 M: Mimi Zohar <zohar@linux.ibm.com>
10391 L: linux-integrity@vger.kernel.org
10392 L: keyrings@vger.kernel.org
10393 S: Supported
10394 F: Documentation/security/keys/trusted-encrypted.rst
10395 F: include/keys/encrypted-type.h
10396 F: security/keys/encrypted-keys/
10397
10398 KEYS-TRUSTED
10399 M: James Bottomley <jejb@linux.ibm.com>
10400 M: Jarkko Sakkinen <jarkko@kernel.org>
10401 M: Mimi Zohar <zohar@linux.ibm.com>
10402 L: linux-integrity@vger.kernel.org
10403 L: keyrings@vger.kernel.org
10404 S: Supported
10405 F: Documentation/security/keys/trusted-encrypted.rst
10406 F: include/keys/trusted-type.h
10407 F: include/keys/trusted_tpm.h
10408 F: security/keys/trusted-keys/
10409
10410 KEYS-TRUSTED-TEE
10411 M: Sumit Garg <sumit.garg@linaro.org>
10412 L: linux-integrity@vger.kernel.org
10413 L: keyrings@vger.kernel.org
10414 S: Supported
10415 F: include/keys/trusted_tee.h
10416 F: security/keys/trusted-keys/trusted_tee.c
10417
10418 KEYS/KEYRINGS
10419 M: David Howells <dhowells@redhat.com>
10420 M: Jarkko Sakkinen <jarkko@kernel.org>
10421 L: keyrings@vger.kernel.org
10422 S: Maintained
10423 F: Documentation/security/keys/core.rst
10424 F: include/keys/
10425 F: include/linux/key-type.h
10426 F: include/linux/key.h
10427 F: include/linux/keyctl.h
10428 F: include/uapi/linux/keyctl.h
10429 F: security/keys/
10430
10431 KFENCE
10432 M: Alexander Potapenko <glider@google.com>
10433 M: Marco Elver <elver@google.com>
10434 R: Dmitry Vyukov <dvyukov@google.com>
10435 L: kasan-dev@googlegroups.com
10436 S: Maintained
10437 F: Documentation/dev-tools/kfence.rst
10438 F: arch/*/include/asm/kfence.h
10439 F: include/linux/kfence.h
10440 F: lib/Kconfig.kfence
10441 F: mm/kfence/
10442
10443 KFIFO
10444 M: Stefani Seibold <stefani@seibold.net>
10445 S: Maintained
10446 F: include/linux/kfifo.h
10447 F: lib/kfifo.c
10448 F: samples/kfifo/
10449
10450 KGDB / KDB /debug_core
10451 M: Jason Wessel <jason.wessel@windriver.com>
10452 M: Daniel Thompson <daniel.thompson@linaro.org>
10453 R: Douglas Anderson <dianders@chromium.org>
10454 L: kgdb-bugreport@lists.sourceforge.net
10455 S: Maintained
10456 W: http://kgdb.wiki.kernel.org/
10457 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10458 F: Documentation/dev-tools/kgdb.rst
10459 F: drivers/misc/kgdbts.c
10460 F: drivers/tty/serial/kgdboc.c
10461 F: include/linux/kdb.h
10462 F: include/linux/kgdb.h
10463 F: kernel/debug/
10464
10465 KHADAS MCU MFD DRIVER
10466 M: Neil Armstrong <narmstrong@baylibre.com>
10467 L: linux-amlogic@lists.infradead.org
10468 S: Maintained
10469 F: Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10470 F: drivers/mfd/khadas-mcu.c
10471 F: include/linux/mfd/khadas-mcu.h
10472 F: drivers/thermal/khadas_mcu_fan.c
10473
10474 KMEMLEAK
10475 M: Catalin Marinas <catalin.marinas@arm.com>
10476 S: Maintained
10477 F: Documentation/dev-tools/kmemleak.rst
10478 F: include/linux/kmemleak.h
10479 F: mm/kmemleak.c
10480 F: samples/kmemleak/kmemleak-test.c
10481
10482 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10483 M: Luis Chamberlain <mcgrof@kernel.org>
10484 L: linux-kernel@vger.kernel.org
10485 S: Maintained
10486 F: include/linux/kmod.h
10487 F: kernel/kmod.c
10488 F: lib/test_kmod.c
10489 F: tools/testing/selftests/kmod/
10490
10491 KPROBES
10492 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10493 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10494 M: "David S. Miller" <davem@davemloft.net>
10495 M: Masami Hiramatsu <mhiramat@kernel.org>
10496 S: Maintained
10497 F: Documentation/trace/kprobes.rst
10498 F: include/asm-generic/kprobes.h
10499 F: include/linux/kprobes.h
10500 F: kernel/kprobes.c
10501
10502 KS0108 LCD CONTROLLER DRIVER
10503 M: Miguel Ojeda <ojeda@kernel.org>
10504 S: Maintained
10505 F: Documentation/admin-guide/auxdisplay/ks0108.rst
10506 F: drivers/auxdisplay/ks0108.c
10507 F: include/linux/ks0108.h
10508
10509 KTD253 BACKLIGHT DRIVER
10510 M: Linus Walleij <linus.walleij@linaro.org>
10511 S: Maintained
10512 F: Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10513 F: drivers/video/backlight/ktd253-backlight.c
10514
10515 KTEST
10516 M: Steven Rostedt <rostedt@goodmis.org>
10517 M: John Hawley <warthog9@eaglescrag.net>
10518 S: Maintained
10519 F: tools/testing/ktest
10520
10521 L3MDEV
10522 M: David Ahern <dsahern@kernel.org>
10523 L: netdev@vger.kernel.org
10524 S: Maintained
10525 F: include/net/l3mdev.h
10526 F: net/l3mdev
10527
10528 L7 BPF FRAMEWORK
10529 M: John Fastabend <john.fastabend@gmail.com>
10530 M: Daniel Borkmann <daniel@iogearbox.net>
10531 M: Jakub Sitnicki <jakub@cloudflare.com>
10532 M: Lorenz Bauer <lmb@cloudflare.com>
10533 L: netdev@vger.kernel.org
10534 L: bpf@vger.kernel.org
10535 S: Maintained
10536 F: include/linux/skmsg.h
10537 F: net/core/skmsg.c
10538 F: net/core/sock_map.c
10539 F: net/ipv4/tcp_bpf.c
10540 F: net/ipv4/udp_bpf.c
10541 F: net/unix/unix_bpf.c
10542
10543 LANDLOCK SECURITY MODULE
10544 M: Mickaël Salaün <mic@digikod.net>
10545 L: linux-security-module@vger.kernel.org
10546 S: Supported
10547 W: https://landlock.io
10548 T: git https://github.com/landlock-lsm/linux.git
10549 F: Documentation/security/landlock.rst
10550 F: Documentation/userspace-api/landlock.rst
10551 F: include/uapi/linux/landlock.h
10552 F: samples/landlock/
10553 F: security/landlock/
10554 F: tools/testing/selftests/landlock/
10555 K: landlock
10556 K: LANDLOCK
10557
10558 LANTIQ / INTEL Ethernet drivers
10559 M: Hauke Mehrtens <hauke@hauke-m.de>
10560 L: netdev@vger.kernel.org
10561 S: Maintained
10562 F: drivers/net/dsa/lantiq_gswip.c
10563 F: drivers/net/dsa/lantiq_pce.h
10564 F: drivers/net/ethernet/lantiq_xrx200.c
10565 F: net/dsa/tag_gswip.c
10566
10567 LANTIQ MIPS ARCHITECTURE
10568 M: John Crispin <john@phrozen.org>
10569 L: linux-mips@vger.kernel.org
10570 S: Maintained
10571 F: arch/mips/lantiq
10572 F: drivers/soc/lantiq
10573
10574 LASI 53c700 driver for PARISC
10575 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10576 L: linux-scsi@vger.kernel.org
10577 S: Maintained
10578 F: Documentation/scsi/53c700.rst
10579 F: drivers/scsi/53c700*
10580
10581 LEAKING_ADDRESSES
10582 M: Tobin C. Harding <me@tobin.cc>
10583 M: Tycho Andersen <tycho@tycho.pizza>
10584 L: linux-hardening@vger.kernel.org
10585 S: Maintained
10586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10587 F: scripts/leaking_addresses.pl
10588
10589 LED SUBSYSTEM
10590 M: Pavel Machek <pavel@ucw.cz>
10591 L: linux-leds@vger.kernel.org
10592 S: Maintained
10593 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10594 F: Documentation/devicetree/bindings/leds/
10595 F: drivers/leds/
10596 F: include/linux/leds.h
10597
10598 LEGACY EEPROM DRIVER
10599 M: Jean Delvare <jdelvare@suse.com>
10600 S: Maintained
10601 F: Documentation/misc-devices/eeprom.rst
10602 F: drivers/misc/eeprom/eeprom.c
10603
10604 LEGO MINDSTORMS EV3
10605 R: David Lechner <david@lechnology.com>
10606 S: Maintained
10607 F: Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10608 F: arch/arm/boot/dts/da850-lego-ev3.dts
10609 F: drivers/power/supply/lego_ev3_battery.c
10610
10611 LEGO USB Tower driver
10612 M: Juergen Stuber <starblue@users.sourceforge.net>
10613 L: legousb-devel@lists.sourceforge.net
10614 S: Maintained
10615 W: http://legousb.sourceforge.net/
10616 F: drivers/usb/misc/legousbtower.c
10617
10618 LG LAPTOP EXTRAS
10619 M: Matan Ziv-Av <matan@svgalib.org>
10620 L: platform-driver-x86@vger.kernel.org
10621 S: Maintained
10622 F: Documentation/ABI/testing/sysfs-platform-lg-laptop
10623 F: Documentation/admin-guide/laptops/lg-laptop.rst
10624 F: drivers/platform/x86/lg-laptop.c
10625
10626 LG2160 MEDIA DRIVER
10627 M: Michael Krufky <mkrufky@linuxtv.org>
10628 L: linux-media@vger.kernel.org
10629 S: Maintained
10630 W: https://linuxtv.org
10631 W: http://github.com/mkrufky
10632 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10633 T: git git://linuxtv.org/mkrufky/tuners.git
10634 F: drivers/media/dvb-frontends/lg2160.*
10635
10636 LGDT3305 MEDIA DRIVER
10637 M: Michael Krufky <mkrufky@linuxtv.org>
10638 L: linux-media@vger.kernel.org
10639 S: Maintained
10640 W: https://linuxtv.org
10641 W: http://github.com/mkrufky
10642 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10643 T: git git://linuxtv.org/mkrufky/tuners.git
10644 F: drivers/media/dvb-frontends/lgdt3305.*
10645
10646 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10647 M: Viresh Kumar <vireshk@kernel.org>
10648 L: linux-ide@vger.kernel.org
10649 S: Maintained
10650 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10651 F: drivers/ata/pata_arasan_cf.c
10652 F: include/linux/pata_arasan_cf_data.h
10653
10654 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10655 M: Linus Walleij <linus.walleij@linaro.org>
10656 L: linux-ide@vger.kernel.org
10657 S: Maintained
10658 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10659 F: drivers/ata/pata_ftide010.c
10660 F: drivers/ata/sata_gemini.c
10661 F: drivers/ata/sata_gemini.h
10662
10663 LIBATA SATA AHCI PLATFORM devices support
10664 M: Hans de Goede <hdegoede@redhat.com>
10665 M: Jens Axboe <axboe@kernel.dk>
10666 L: linux-ide@vger.kernel.org
10667 S: Maintained
10668 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10669 F: drivers/ata/ahci_platform.c
10670 F: drivers/ata/libahci_platform.c
10671 F: include/linux/ahci_platform.h
10672
10673 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10674 M: Mikael Pettersson <mikpelinux@gmail.com>
10675 L: linux-ide@vger.kernel.org
10676 S: Maintained
10677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10678 F: drivers/ata/sata_promise.*
10679
10680 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10681 M: Damien Le Moal <damien.lemoal@opensource.wdc.com>
10682 L: linux-ide@vger.kernel.org
10683 S: Maintained
10684 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10685 F: Documentation/devicetree/bindings/ata/
10686 F: drivers/ata/
10687 F: include/linux/ata.h
10688 F: include/linux/libata.h
10689
10690 LIBLOCKDEP
10691 M: Sasha Levin <alexander.levin@microsoft.com>
10692 S: Maintained
10693 F: tools/lib/lockdep/
10694
10695 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10696 M: Dan Williams <dan.j.williams@intel.com>
10697 M: Vishal Verma <vishal.l.verma@intel.com>
10698 M: Dave Jiang <dave.jiang@intel.com>
10699 L: nvdimm@lists.linux.dev
10700 S: Supported
10701 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10702 P: Documentation/nvdimm/maintainer-entry-profile.rst
10703 F: drivers/nvdimm/blk.c
10704 F: drivers/nvdimm/region_devs.c
10705
10706 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10707 M: Vishal Verma <vishal.l.verma@intel.com>
10708 M: Dan Williams <dan.j.williams@intel.com>
10709 M: Dave Jiang <dave.jiang@intel.com>
10710 L: nvdimm@lists.linux.dev
10711 S: Supported
10712 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10713 P: Documentation/nvdimm/maintainer-entry-profile.rst
10714 F: drivers/nvdimm/btt*
10715
10716 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10717 M: Dan Williams <dan.j.williams@intel.com>
10718 M: Vishal Verma <vishal.l.verma@intel.com>
10719 M: Dave Jiang <dave.jiang@intel.com>
10720 L: nvdimm@lists.linux.dev
10721 S: Supported
10722 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10723 P: Documentation/nvdimm/maintainer-entry-profile.rst
10724 F: drivers/nvdimm/pmem*
10725
10726 LIBNVDIMM: DEVICETREE BINDINGS
10727 M: Oliver O'Halloran <oohall@gmail.com>
10728 L: nvdimm@lists.linux.dev
10729 S: Supported
10730 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10731 F: Documentation/devicetree/bindings/pmem/pmem-region.txt
10732 F: drivers/nvdimm/of_pmem.c
10733
10734 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10735 M: Dan Williams <dan.j.williams@intel.com>
10736 M: Vishal Verma <vishal.l.verma@intel.com>
10737 M: Dave Jiang <dave.jiang@intel.com>
10738 M: Ira Weiny <ira.weiny@intel.com>
10739 L: nvdimm@lists.linux.dev
10740 S: Supported
10741 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10742 P: Documentation/nvdimm/maintainer-entry-profile.rst
10743 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10744 F: drivers/acpi/nfit/*
10745 F: drivers/nvdimm/*
10746 F: include/linux/libnvdimm.h
10747 F: include/linux/nd.h
10748 F: include/uapi/linux/ndctl.h
10749 F: tools/testing/nvdimm/
10750
10751 LICENSES and SPDX stuff
10752 M: Thomas Gleixner <tglx@linutronix.de>
10753 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10754 L: linux-spdx@vger.kernel.org
10755 S: Maintained
10756 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10757 F: COPYING
10758 F: Documentation/process/license-rules.rst
10759 F: LICENSES/
10760 F: scripts/spdxcheck-test.sh
10761 F: scripts/spdxcheck.py
10762
10763 LINEAR RANGES HELPERS
10764 M: Mark Brown <broonie@kernel.org>
10765 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10766 F: lib/linear_ranges.c
10767 F: lib/test_linear_ranges.c
10768 F: include/linux/linear_range.h
10769
10770 LINUX FOR POWER MACINTOSH
10771 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10772 L: linuxppc-dev@lists.ozlabs.org
10773 S: Odd Fixes
10774 F: arch/powerpc/platforms/powermac/
10775 F: drivers/macintosh/
10776
10777 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10778 M: Michael Ellerman <mpe@ellerman.id.au>
10779 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10780 R: Paul Mackerras <paulus@samba.org>
10781 L: linuxppc-dev@lists.ozlabs.org
10782 S: Supported
10783 W: https://github.com/linuxppc/wiki/wiki
10784 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10785 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10786 F: Documentation/ABI/stable/sysfs-firmware-opal-*
10787 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
10788 F: Documentation/devicetree/bindings/powerpc/
10789 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
10790 F: Documentation/powerpc/
10791 F: arch/powerpc/
10792 F: drivers/*/*/*pasemi*
10793 F: drivers/*/*pasemi*
10794 F: drivers/char/tpm/tpm_ibmvtpm*
10795 F: drivers/crypto/nx/
10796 F: drivers/crypto/vmx/
10797 F: drivers/i2c/busses/i2c-opal.c
10798 F: drivers/net/ethernet/ibm/ibmveth.*
10799 F: drivers/net/ethernet/ibm/ibmvnic.*
10800 F: drivers/pci/hotplug/pnv_php.c
10801 F: drivers/pci/hotplug/rpa*
10802 F: drivers/rtc/rtc-opal.c
10803 F: drivers/scsi/ibmvscsi/
10804 F: drivers/tty/hvc/hvc_opal.c
10805 F: drivers/watchdog/wdrtas.c
10806 F: tools/testing/selftests/powerpc
10807 N: /pmac
10808 N: powermac
10809 N: powernv
10810 N: [^a-z0-9]ps3
10811 N: pseries
10812
10813 LINUX FOR POWERPC EMBEDDED MPC5XXX
10814 M: Anatolij Gustschin <agust@denx.de>
10815 L: linuxppc-dev@lists.ozlabs.org
10816 S: Odd Fixes
10817 F: arch/powerpc/platforms/512x/
10818 F: arch/powerpc/platforms/52xx/
10819
10820 LINUX FOR POWERPC EMBEDDED PPC4XX
10821 L: linuxppc-dev@lists.ozlabs.org
10822 S: Orphan
10823 F: arch/powerpc/platforms/40x/
10824 F: arch/powerpc/platforms/44x/
10825
10826 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10827 M: Scott Wood <oss@buserror.net>
10828 L: linuxppc-dev@lists.ozlabs.org
10829 S: Odd fixes
10830 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10831 F: Documentation/devicetree/bindings/powerpc/fsl/
10832 F: arch/powerpc/platforms/83xx/
10833 F: arch/powerpc/platforms/85xx/
10834
10835 LINUX FOR POWERPC EMBEDDED PPC8XX
10836 M: Christophe Leroy <christophe.leroy@csgroup.eu>
10837 L: linuxppc-dev@lists.ozlabs.org
10838 S: Maintained
10839 F: arch/powerpc/platforms/8xx/
10840
10841 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10842 M: Kees Cook <keescook@chromium.org>
10843 S: Maintained
10844 F: drivers/misc/lkdtm/*
10845 F: tools/testing/selftests/lkdtm/*
10846
10847 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10848 M: Alan Stern <stern@rowland.harvard.edu>
10849 M: Andrea Parri <parri.andrea@gmail.com>
10850 M: Will Deacon <will@kernel.org>
10851 M: Peter Zijlstra <peterz@infradead.org>
10852 M: Boqun Feng <boqun.feng@gmail.com>
10853 M: Nicholas Piggin <npiggin@gmail.com>
10854 M: David Howells <dhowells@redhat.com>
10855 M: Jade Alglave <j.alglave@ucl.ac.uk>
10856 M: Luc Maranget <luc.maranget@inria.fr>
10857 M: "Paul E. McKenney" <paulmck@kernel.org>
10858 R: Akira Yokosawa <akiyks@gmail.com>
10859 R: Daniel Lustig <dlustig@nvidia.com>
10860 R: Joel Fernandes <joel@joelfernandes.org>
10861 L: linux-kernel@vger.kernel.org
10862 L: linux-arch@vger.kernel.org
10863 S: Supported
10864 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10865 F: Documentation/atomic_bitops.txt
10866 F: Documentation/atomic_t.txt
10867 F: Documentation/core-api/refcount-vs-atomic.rst
10868 F: Documentation/litmus-tests/
10869 F: Documentation/memory-barriers.txt
10870 F: tools/memory-model/
10871
10872 LIS3LV02D ACCELEROMETER DRIVER
10873 M: Eric Piel <eric.piel@tremplin-utc.net>
10874 S: Maintained
10875 F: Documentation/misc-devices/lis3lv02d.rst
10876 F: drivers/misc/lis3lv02d/
10877 F: drivers/platform/x86/hp_accel.c
10878
10879 LIST KUNIT TEST
10880 M: David Gow <davidgow@google.com>
10881 L: linux-kselftest@vger.kernel.org
10882 L: kunit-dev@googlegroups.com
10883 S: Maintained
10884 F: lib/list-test.c
10885
10886 LITEX PLATFORM
10887 M: Karol Gugala <kgugala@antmicro.com>
10888 M: Mateusz Holenko <mholenko@antmicro.com>
10889 S: Maintained
10890 F: Documentation/devicetree/bindings/*/litex,*.yaml
10891 F: arch/openrisc/boot/dts/or1klitex.dts
10892 F: drivers/soc/litex/litex_soc_ctrl.c
10893 F: drivers/tty/serial/liteuart.c
10894 F: include/linux/litex.h
10895
10896 LIVE PATCHING
10897 M: Josh Poimboeuf <jpoimboe@redhat.com>
10898 M: Jiri Kosina <jikos@kernel.org>
10899 M: Miroslav Benes <mbenes@suse.cz>
10900 M: Petr Mladek <pmladek@suse.com>
10901 R: Joe Lawrence <joe.lawrence@redhat.com>
10902 L: live-patching@vger.kernel.org
10903 S: Maintained
10904 T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10905 F: Documentation/ABI/testing/sysfs-kernel-livepatch
10906 F: Documentation/livepatch/
10907 F: arch/powerpc/include/asm/livepatch.h
10908 F: arch/s390/include/asm/livepatch.h
10909 F: arch/x86/include/asm/livepatch.h
10910 F: include/linux/livepatch.h
10911 F: kernel/livepatch/
10912 F: lib/livepatch/
10913 F: samples/livepatch/
10914 F: tools/testing/selftests/livepatch/
10915
10916 LLC (802.2)
10917 L: netdev@vger.kernel.org
10918 S: Odd fixes
10919 F: include/linux/llc.h
10920 F: include/net/llc*
10921 F: include/uapi/linux/llc.h
10922 F: net/llc/
10923
10924 LM73 HARDWARE MONITOR DRIVER
10925 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
10926 L: linux-hwmon@vger.kernel.org
10927 S: Maintained
10928 F: drivers/hwmon/lm73.c
10929
10930 LM78 HARDWARE MONITOR DRIVER
10931 M: Jean Delvare <jdelvare@suse.com>
10932 L: linux-hwmon@vger.kernel.org
10933 S: Maintained
10934 F: Documentation/hwmon/lm78.rst
10935 F: drivers/hwmon/lm78.c
10936
10937 LM83 HARDWARE MONITOR DRIVER
10938 M: Jean Delvare <jdelvare@suse.com>
10939 L: linux-hwmon@vger.kernel.org
10940 S: Maintained
10941 F: Documentation/hwmon/lm83.rst
10942 F: drivers/hwmon/lm83.c
10943
10944 LM90 HARDWARE MONITOR DRIVER
10945 M: Jean Delvare <jdelvare@suse.com>
10946 L: linux-hwmon@vger.kernel.org
10947 S: Maintained
10948 F: Documentation/devicetree/bindings/hwmon/lm90.txt
10949 F: Documentation/hwmon/lm90.rst
10950 F: drivers/hwmon/lm90.c
10951 F: include/dt-bindings/thermal/lm90.h
10952
10953 LM95234 HARDWARE MONITOR DRIVER
10954 M: Guenter Roeck <linux@roeck-us.net>
10955 L: linux-hwmon@vger.kernel.org
10956 S: Maintained
10957 F: Documentation/hwmon/lm95234.rst
10958 F: drivers/hwmon/lm95234.c
10959
10960 LME2510 MEDIA DRIVER
10961 M: Malcolm Priestley <tvboxspy@gmail.com>
10962 L: linux-media@vger.kernel.org
10963 S: Maintained
10964 W: https://linuxtv.org
10965 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10966 F: drivers/media/usb/dvb-usb-v2/lmedm04*
10967
10968 LOADPIN SECURITY MODULE
10969 M: Kees Cook <keescook@chromium.org>
10970 S: Supported
10971 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10972 F: Documentation/admin-guide/LSM/LoadPin.rst
10973 F: security/loadpin/
10974
10975 LOCKING PRIMITIVES
10976 M: Peter Zijlstra <peterz@infradead.org>
10977 M: Ingo Molnar <mingo@redhat.com>
10978 M: Will Deacon <will@kernel.org>
10979 R: Waiman Long <longman@redhat.com>
10980 R: Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10981 L: linux-kernel@vger.kernel.org
10982 S: Maintained
10983 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10984 F: Documentation/locking/
10985 F: arch/*/include/asm/spinlock*.h
10986 F: include/linux/lockdep.h
10987 F: include/linux/mutex*.h
10988 F: include/linux/rwlock*.h
10989 F: include/linux/rwsem*.h
10990 F: include/linux/seqlock.h
10991 F: include/linux/spinlock*.h
10992 F: kernel/locking/
10993 F: lib/locking*.[ch]
10994 X: kernel/locking/locktorture.c
10995
10996 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10997 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
10998 L: linux-ntfs-dev@lists.sourceforge.net
10999 S: Maintained
11000 W: http://www.linux-ntfs.org/content/view/19/37/
11001 F: Documentation/admin-guide/ldm.rst
11002 F: block/partitions/ldm.*
11003
11004 LOGITECH HID GAMING KEYBOARDS
11005 M: Hans de Goede <hdegoede@redhat.com>
11006 L: linux-input@vger.kernel.org
11007 S: Maintained
11008 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11009 F: drivers/hid/hid-lg-g15.c
11010
11011 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11012 M: Adrien Grassein <adrien.grassein@gmail.com>
11013 S: Maintained
11014 F: Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11015 F: drivers/gpu/drm/bridge/lontium-lt8912b.c
11016
11017 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11018 M: Sathya Prakash <sathya.prakash@broadcom.com>
11019 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11020 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11021 L: MPT-FusionLinux.pdl@broadcom.com
11022 L: linux-scsi@vger.kernel.org
11023 S: Supported
11024 W: http://www.avagotech.com/support/
11025 F: drivers/message/fusion/
11026 F: drivers/scsi/mpt3sas/
11027
11028 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11029 M: Matthew Wilcox <willy@infradead.org>
11030 L: linux-scsi@vger.kernel.org
11031 S: Maintained
11032 F: drivers/scsi/sym53c8xx_2/
11033
11034 LTC1660 DAC DRIVER
11035 M: Marcus Folkesson <marcus.folkesson@gmail.com>
11036 L: linux-iio@vger.kernel.org
11037 S: Maintained
11038 F: Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11039 F: drivers/iio/dac/ltc1660.c
11040
11041 LTC2947 HARDWARE MONITOR DRIVER
11042 M: Nuno Sá <nuno.sa@analog.com>
11043 L: linux-hwmon@vger.kernel.org
11044 S: Supported
11045 W: http://ez.analog.com/community/linux-device-drivers
11046 F: Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11047 F: drivers/hwmon/ltc2947-core.c
11048 F: drivers/hwmon/ltc2947-i2c.c
11049 F: drivers/hwmon/ltc2947-spi.c
11050 F: drivers/hwmon/ltc2947.h
11051
11052 LTC2983 IIO TEMPERATURE DRIVER
11053 M: Nuno Sá <nuno.sa@analog.com>
11054 L: linux-iio@vger.kernel.org
11055 S: Supported
11056 W: http://ez.analog.com/community/linux-device-drivers
11057 F: Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11058 F: drivers/iio/temperature/ltc2983.c
11059
11060 LTC4261 HARDWARE MONITOR DRIVER
11061 M: Guenter Roeck <linux@roeck-us.net>
11062 L: linux-hwmon@vger.kernel.org
11063 S: Maintained
11064 F: Documentation/hwmon/ltc4261.rst
11065 F: drivers/hwmon/ltc4261.c
11066
11067 LTC4306 I2C MULTIPLEXER DRIVER
11068 M: Michael Hennerich <michael.hennerich@analog.com>
11069 L: linux-i2c@vger.kernel.org
11070 S: Supported
11071 W: http://ez.analog.com/community/linux-device-drivers
11072 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11073 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
11074
11075 LTP (Linux Test Project)
11076 M: Mike Frysinger <vapier@gentoo.org>
11077 M: Cyril Hrubis <chrubis@suse.cz>
11078 M: Wanlong Gao <wanlong.gao@gmail.com>
11079 M: Jan Stancek <jstancek@redhat.com>
11080 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11081 M: Alexey Kodanev <alexey.kodanev@oracle.com>
11082 L: ltp@lists.linux.it (subscribers-only)
11083 S: Maintained
11084 W: http://linux-test-project.github.io/
11085 T: git git://github.com/linux-test-project/ltp.git
11086
11087 LYNX PCS MODULE
11088 M: Ioana Ciornei <ioana.ciornei@nxp.com>
11089 L: netdev@vger.kernel.org
11090 S: Supported
11091 F: drivers/net/pcs/pcs-lynx.c
11092 F: include/linux/pcs-lynx.h
11093
11094 M68K ARCHITECTURE
11095 M: Geert Uytterhoeven <geert@linux-m68k.org>
11096 L: linux-m68k@lists.linux-m68k.org
11097 S: Maintained
11098 W: http://www.linux-m68k.org/
11099 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11100 F: arch/m68k/
11101 F: drivers/zorro/
11102
11103 M68K ON APPLE MACINTOSH
11104 M: Joshua Thompson <funaho@jurai.org>
11105 L: linux-m68k@lists.linux-m68k.org
11106 S: Maintained
11107 W: http://www.mac.linux-m68k.org/
11108 F: arch/m68k/mac/
11109 F: drivers/macintosh/adb-iop.c
11110 F: drivers/macintosh/via-macii.c
11111
11112 M68K ON HP9000/300
11113 M: Philip Blundell <philb@gnu.org>
11114 S: Maintained
11115 W: http://www.tazenda.demon.co.uk/phil/linux-hp
11116 F: arch/m68k/hp300/
11117
11118 M88DS3103 MEDIA DRIVER
11119 M: Antti Palosaari <crope@iki.fi>
11120 L: linux-media@vger.kernel.org
11121 S: Maintained
11122 W: https://linuxtv.org
11123 W: http://palosaari.fi/linux/
11124 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11125 T: git git://linuxtv.org/anttip/media_tree.git
11126 F: drivers/media/dvb-frontends/m88ds3103*
11127
11128 M88RS2000 MEDIA DRIVER
11129 M: Malcolm Priestley <tvboxspy@gmail.com>
11130 L: linux-media@vger.kernel.org
11131 S: Maintained
11132 W: https://linuxtv.org
11133 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11134 F: drivers/media/dvb-frontends/m88rs2000*
11135
11136 MA901 MASTERKIT USB FM RADIO DRIVER
11137 M: Alexey Klimov <klimov.linux@gmail.com>
11138 L: linux-media@vger.kernel.org
11139 S: Maintained
11140 T: git git://linuxtv.org/media_tree.git
11141 F: drivers/media/radio/radio-ma901.c
11142
11143 MAC80211
11144 M: Johannes Berg <johannes@sipsolutions.net>
11145 L: linux-wireless@vger.kernel.org
11146 S: Maintained
11147 W: https://wireless.wiki.kernel.org/
11148 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11149 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11150 F: Documentation/networking/mac80211-injection.rst
11151 F: Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11152 F: drivers/net/wireless/mac80211_hwsim.[ch]
11153 F: include/net/mac80211.h
11154 F: net/mac80211/
11155
11156 MAILBOX API
11157 M: Jassi Brar <jassisinghbrar@gmail.com>
11158 L: linux-kernel@vger.kernel.org
11159 S: Maintained
11160 F: drivers/mailbox/
11161 F: include/linux/mailbox_client.h
11162 F: include/linux/mailbox_controller.h
11163 F: include/dt-bindings/mailbox/
11164 F: Documentation/devicetree/bindings/mailbox/
11165
11166 MAILBOX ARM MHUv2
11167 M: Viresh Kumar <viresh.kumar@linaro.org>
11168 M: Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11169 L: linux-kernel@vger.kernel.org
11170 S: Maintained
11171 F: drivers/mailbox/arm_mhuv2.c
11172 F: include/linux/mailbox/arm_mhuv2_message.h
11173 F: Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11174
11175 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11176 M: Jeremy Kerr <jk@codeconstruct.com.au>
11177 M: Matt Johnston <matt@codeconstruct.com.au>
11178 L: netdev@vger.kernel.org
11179 S: Maintained
11180 F: Documentation/networking/mctp.rst
11181 F: drivers/net/mctp/
11182 F: include/net/mctp.h
11183 F: include/net/mctpdevice.h
11184 F: include/net/netns/mctp.h
11185 F: net/mctp/
11186
11187 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11188 M: Michael Kerrisk <mtk.manpages@gmail.com>
11189 L: linux-man@vger.kernel.org
11190 S: Maintained
11191 W: http://www.kernel.org/doc/man-pages
11192
11193 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11194 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
11195 L: linux-mips@vger.kernel.org
11196 S: Maintained
11197 F: arch/mips/boot/dts/img/pistachio*
11198
11199 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11200 M: Andrew Lunn <andrew@lunn.ch>
11201 M: Vivien Didelot <vivien.didelot@gmail.com>
11202 L: netdev@vger.kernel.org
11203 S: Maintained
11204 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
11205 F: Documentation/networking/devlink/mv88e6xxx.rst
11206 F: drivers/net/dsa/mv88e6xxx/
11207 F: include/linux/dsa/mv88e6xxx.h
11208 F: include/linux/platform_data/mv88e6xxx.h
11209
11210 MARVELL ARMADA 3700 PHY DRIVERS
11211 M: Miquel Raynal <miquel.raynal@bootlin.com>
11212 S: Maintained
11213 F: Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11214 F: Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11215 F: drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11216 F: drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11217
11218 MARVELL ARMADA DRM SUPPORT
11219 M: Russell King <linux@armlinux.org.uk>
11220 S: Maintained
11221 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11222 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11223 F: Documentation/devicetree/bindings/display/armada/
11224 F: drivers/gpu/drm/armada/
11225 F: include/uapi/drm/armada_drm.h
11226
11227 MARVELL CRYPTO DRIVER
11228 M: Boris Brezillon <bbrezillon@kernel.org>
11229 M: Arnaud Ebalard <arno@natisbad.org>
11230 M: Srujana Challa <schalla@marvell.com>
11231 L: linux-crypto@vger.kernel.org
11232 S: Maintained
11233 F: drivers/crypto/marvell/
11234 F: include/linux/soc/marvell/octeontx2/
11235
11236 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11237 M: Mirko Lindner <mlindner@marvell.com>
11238 M: Stephen Hemminger <stephen@networkplumber.org>
11239 L: netdev@vger.kernel.org
11240 S: Maintained
11241 F: drivers/net/ethernet/marvell/sk*
11242
11243 MARVELL LIBERTAS WIRELESS DRIVER
11244 L: libertas-dev@lists.infradead.org
11245 S: Orphan
11246 F: drivers/net/wireless/marvell/libertas/
11247
11248 MARVELL MACCHIATOBIN SUPPORT
11249 M: Russell King <linux@armlinux.org.uk>
11250 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11251 S: Maintained
11252 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11253
11254 MARVELL MV643XX ETHERNET DRIVER
11255 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11256 L: netdev@vger.kernel.org
11257 S: Maintained
11258 F: drivers/net/ethernet/marvell/mv643xx_eth.*
11259 F: include/linux/mv643xx.h
11260
11261 MARVELL MV88X3310 PHY DRIVER
11262 M: Russell King <linux@armlinux.org.uk>
11263 M: Marek Behún <kabel@kernel.org>
11264 L: netdev@vger.kernel.org
11265 S: Maintained
11266 F: drivers/net/phy/marvell10g.c
11267
11268 MARVELL MVEBU THERMAL DRIVER
11269 M: Miquel Raynal <miquel.raynal@bootlin.com>
11270 S: Maintained
11271 F: drivers/thermal/armada_thermal.c
11272
11273 MARVELL MVNETA ETHERNET DRIVER
11274 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11275 L: netdev@vger.kernel.org
11276 S: Maintained
11277 F: drivers/net/ethernet/marvell/mvneta.*
11278
11279 MARVELL MVPP2 ETHERNET DRIVER
11280 M: Marcin Wojtas <mw@semihalf.com>
11281 M: Russell King <linux@armlinux.org.uk>
11282 L: netdev@vger.kernel.org
11283 S: Maintained
11284 F: Documentation/devicetree/bindings/net/marvell-pp2.txt
11285 F: drivers/net/ethernet/marvell/mvpp2/
11286
11287 MARVELL MWIFIEX WIRELESS DRIVER
11288 M: Amitkumar Karwar <amitkarwar@gmail.com>
11289 M: Ganapathi Bhat <ganapathi017@gmail.com>
11290 M: Sharvari Harisangam <sharvari.harisangam@nxp.com>
11291 M: Xinming Hu <huxinming820@gmail.com>
11292 L: linux-wireless@vger.kernel.org
11293 S: Maintained
11294 F: drivers/net/wireless/marvell/mwifiex/
11295
11296 MARVELL MWL8K WIRELESS DRIVER
11297 M: Lennert Buytenhek <buytenh@wantstofly.org>
11298 L: linux-wireless@vger.kernel.org
11299 S: Odd Fixes
11300 F: drivers/net/wireless/marvell/mwl8k.c
11301
11302 MARVELL NAND CONTROLLER DRIVER
11303 M: Miquel Raynal <miquel.raynal@bootlin.com>
11304 L: linux-mtd@lists.infradead.org
11305 S: Maintained
11306 F: Documentation/devicetree/bindings/mtd/marvell-nand.txt
11307 F: drivers/mtd/nand/raw/marvell_nand.c
11308
11309 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11310 M: Sunil Goutham <sgoutham@marvell.com>
11311 M: Geetha sowjanya <gakula@marvell.com>
11312 M: Subbaraya Sundeep <sbhatta@marvell.com>
11313 M: hariprasad <hkelam@marvell.com>
11314 L: netdev@vger.kernel.org
11315 S: Supported
11316 F: drivers/net/ethernet/marvell/octeontx2/nic/
11317 F: include/linux/soc/marvell/octeontx2/
11318
11319 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11320 M: Sunil Goutham <sgoutham@marvell.com>
11321 M: Linu Cherian <lcherian@marvell.com>
11322 M: Geetha sowjanya <gakula@marvell.com>
11323 M: Jerin Jacob <jerinj@marvell.com>
11324 M: hariprasad <hkelam@marvell.com>
11325 M: Subbaraya Sundeep <sbhatta@marvell.com>
11326 L: netdev@vger.kernel.org
11327 S: Supported
11328 F: Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11329 F: drivers/net/ethernet/marvell/octeontx2/af/
11330
11331 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11332 M: Taras Chornyi <tchornyi@marvell.com>
11333 S: Supported
11334 W: https://github.com/Marvell-switching/switchdev-prestera
11335 F: drivers/net/ethernet/marvell/prestera/
11336
11337 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11338 M: Nicolas Pitre <nico@fluxnic.net>
11339 S: Odd Fixes
11340 F: drivers/mmc/host/mvsdio.*
11341
11342 MARVELL USB MDIO CONTROLLER DRIVER
11343 M: Tobias Waldekranz <tobias@waldekranz.com>
11344 L: netdev@vger.kernel.org
11345 S: Maintained
11346 F: Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11347 F: drivers/net/mdio/mdio-mvusb.c
11348
11349 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11350 M: Hu Ziji <huziji@marvell.com>
11351 L: linux-mmc@vger.kernel.org
11352 S: Supported
11353 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11354 F: drivers/mmc/host/sdhci-xenon*
11355
11356 MATROX FRAMEBUFFER DRIVER
11357 L: linux-fbdev@vger.kernel.org
11358 S: Orphan
11359 F: drivers/video/fbdev/matrox/matroxfb_*
11360 F: include/uapi/linux/matroxfb.h
11361
11362 MAX15301 DRIVER
11363 M: Daniel Nilsson <daniel.nilsson@flex.com>
11364 L: linux-hwmon@vger.kernel.org
11365 S: Maintained
11366 F: Documentation/hwmon/max15301.rst
11367 F: drivers/hwmon/pmbus/max15301.c
11368
11369 MAX16065 HARDWARE MONITOR DRIVER
11370 M: Guenter Roeck <linux@roeck-us.net>
11371 L: linux-hwmon@vger.kernel.org
11372 S: Maintained
11373 F: Documentation/hwmon/max16065.rst
11374 F: drivers/hwmon/max16065.c
11375
11376 MAX2175 SDR TUNER DRIVER
11377 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
11378 L: linux-media@vger.kernel.org
11379 S: Maintained
11380 T: git git://linuxtv.org/media_tree.git
11381 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
11382 F: Documentation/userspace-api/media/drivers/max2175.rst
11383 F: drivers/media/i2c/max2175*
11384 F: include/uapi/linux/max2175.h
11385
11386 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11387 L: linux-hwmon@vger.kernel.org
11388 S: Orphan
11389 F: Documentation/hwmon/max6650.rst
11390 F: drivers/hwmon/max6650.c
11391
11392 MAX6697 HARDWARE MONITOR DRIVER
11393 M: Guenter Roeck <linux@roeck-us.net>
11394 L: linux-hwmon@vger.kernel.org
11395 S: Maintained
11396 F: Documentation/devicetree/bindings/hwmon/max6697.txt
11397 F: Documentation/hwmon/max6697.rst
11398 F: drivers/hwmon/max6697.c
11399 F: include/linux/platform_data/max6697.h
11400
11401 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11402 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
11403 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11404 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11405 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11406 L: linux-media@vger.kernel.org
11407 S: Maintained
11408 F: Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11409 F: drivers/media/i2c/max9286.c
11410
11411 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11412 M: Peter Rosin <peda@axentia.se>
11413 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11414 S: Maintained
11415 F: Documentation/devicetree/bindings/sound/max9860.txt
11416 F: sound/soc/codecs/max9860.*
11417
11418 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11419 M: Andreas Klinger <ak@it-klinger.de>
11420 L: linux-iio@vger.kernel.org
11421 S: Maintained
11422 F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11423 F: drivers/iio/proximity/mb1232.c
11424
11425 MAXIM MAX77650 PMIC MFD DRIVER
11426 M: Bartosz Golaszewski <brgl@bgdev.pl>
11427 L: linux-kernel@vger.kernel.org
11428 S: Maintained
11429 F: Documentation/devicetree/bindings/*/*max77650.yaml
11430 F: Documentation/devicetree/bindings/*/max77650*.yaml
11431 F: drivers/gpio/gpio-max77650.c
11432 F: drivers/input/misc/max77650-onkey.c
11433 F: drivers/leds/leds-max77650.c
11434 F: drivers/mfd/max77650.c
11435 F: drivers/power/supply/max77650-charger.c
11436 F: drivers/regulator/max77650-regulator.c
11437 F: include/linux/mfd/max77650.h
11438
11439 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11440 M: Javier Martinez Canillas <javier@dowhile0.org>
11441 L: linux-kernel@vger.kernel.org
11442 S: Supported
11443 F: Documentation/devicetree/bindings/*/*max77802.txt
11444 F: drivers/regulator/max77802-regulator.c
11445 F: include/dt-bindings/*/*max77802.h
11446
11447 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11448 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11449 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11450 L: linux-pm@vger.kernel.org
11451 S: Supported
11452 F: drivers/power/supply/max14577_charger.c
11453 F: drivers/power/supply/max77693_charger.c
11454
11455 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11456 M: Chanwoo Choi <cw00.choi@samsung.com>
11457 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11458 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11459 L: linux-kernel@vger.kernel.org
11460 S: Supported
11461 F: Documentation/devicetree/bindings/*/max77686.txt
11462 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
11463 F: Documentation/devicetree/bindings/mfd/max14577.txt
11464 F: Documentation/devicetree/bindings/mfd/max77693.txt
11465 F: drivers/*/max14577*.c
11466 F: drivers/*/max77686*.c
11467 F: drivers/*/max77693*.c
11468 F: drivers/clk/clk-max77686.c
11469 F: drivers/extcon/extcon-max14577.c
11470 F: drivers/extcon/extcon-max77693.c
11471 F: drivers/rtc/rtc-max77686.c
11472 F: include/linux/mfd/max14577*.h
11473 F: include/linux/mfd/max77686*.h
11474 F: include/linux/mfd/max77693*.h
11475
11476 MAXIRADIO FM RADIO RECEIVER DRIVER
11477 M: Hans Verkuil <hverkuil@xs4all.nl>
11478 L: linux-media@vger.kernel.org
11479 S: Maintained
11480 W: https://linuxtv.org
11481 T: git git://linuxtv.org/media_tree.git
11482 F: drivers/media/radio/radio-maxiradio*
11483
11484 MAXLINEAR ETHERNET PHY DRIVER
11485 M: Xu Liang <lxu@maxlinear.com>
11486 L: netdev@vger.kernel.org
11487 S: Supported
11488 F: drivers/net/phy/mxl-gpy.c
11489
11490 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11491 R: Yasushi SHOJI <yashi@spacecubics.com>
11492 L: linux-can@vger.kernel.org
11493 S: Maintained
11494 F: drivers/net/can/usb/mcba_usb.c
11495
11496 MCAN MMIO DEVICE DRIVER
11497 M: Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11498 L: linux-can@vger.kernel.org
11499 S: Maintained
11500 F: Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11501 F: drivers/net/can/m_can/m_can.c
11502 F: drivers/net/can/m_can/m_can.h
11503 F: drivers/net/can/m_can/m_can_platform.c
11504
11505 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11506 M: Rishi Gupta <gupt21@gmail.com>
11507 L: linux-i2c@vger.kernel.org
11508 L: linux-input@vger.kernel.org
11509 S: Maintained
11510 F: drivers/hid/hid-mcp2221.c
11511
11512 MCP251XFD SPI-CAN NETWORK DRIVER
11513 M: Marc Kleine-Budde <mkl@pengutronix.de>
11514 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11515 R: Thomas Kopp <thomas.kopp@microchip.com>
11516 L: linux-can@vger.kernel.org
11517 S: Maintained
11518 F: Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11519 F: drivers/net/can/spi/mcp251xfd/
11520
11521 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11522 M: Peter Rosin <peda@axentia.se>
11523 L: linux-iio@vger.kernel.org
11524 S: Maintained
11525 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11526 F: drivers/iio/potentiometer/mcp4018.c
11527 F: drivers/iio/potentiometer/mcp4531.c
11528
11529 MCR20A IEEE-802.15.4 RADIO DRIVER
11530 M: Xue Liu <liuxuenetmail@gmail.com>
11531 L: linux-wpan@vger.kernel.org
11532 S: Maintained
11533 W: https://github.com/xueliu/mcr20a-linux
11534 F: Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11535 F: drivers/net/ieee802154/mcr20a.c
11536 F: drivers/net/ieee802154/mcr20a.h
11537
11538 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11539 M: William Breathitt Gray <vilhelm.gray@gmail.com>
11540 L: linux-iio@vger.kernel.org
11541 S: Maintained
11542 F: drivers/iio/dac/cio-dac.c
11543
11544 MEDIA CONTROLLER FRAMEWORK
11545 M: Sakari Ailus <sakari.ailus@linux.intel.com>
11546 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11547 L: linux-media@vger.kernel.org
11548 S: Supported
11549 W: https://www.linuxtv.org
11550 T: git git://linuxtv.org/media_tree.git
11551 F: drivers/media/mc/
11552 F: include/media/media-*.h
11553 F: include/uapi/linux/media.h
11554
11555 MEDIA DRIVER FOR FREESCALE IMX PXP
11556 M: Philipp Zabel <p.zabel@pengutronix.de>
11557 L: linux-media@vger.kernel.org
11558 S: Maintained
11559 T: git git://linuxtv.org/media_tree.git
11560 F: drivers/media/platform/imx-pxp.[ch]
11561
11562 MEDIA DRIVERS FOR ASCOT2E
11563 M: Sergey Kozlov <serjk@netup.ru>
11564 M: Abylay Ospan <aospan@netup.ru>
11565 L: linux-media@vger.kernel.org
11566 S: Supported
11567 W: https://linuxtv.org
11568 W: http://netup.tv/
11569 T: git git://linuxtv.org/media_tree.git
11570 F: drivers/media/dvb-frontends/ascot2e*
11571
11572 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11573 M: Jasmin Jessich <jasmin@anw.at>
11574 L: linux-media@vger.kernel.org
11575 S: Maintained
11576 W: https://linuxtv.org
11577 T: git git://linuxtv.org/media_tree.git
11578 F: drivers/media/dvb-frontends/cxd2099*
11579
11580 MEDIA DRIVERS FOR CXD2841ER
11581 M: Sergey Kozlov <serjk@netup.ru>
11582 M: Abylay Ospan <aospan@netup.ru>
11583 L: linux-media@vger.kernel.org
11584 S: Supported
11585 W: https://linuxtv.org
11586 W: http://netup.tv/
11587 T: git git://linuxtv.org/media_tree.git
11588 F: drivers/media/dvb-frontends/cxd2841er*
11589
11590 MEDIA DRIVERS FOR CXD2880
11591 M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11592 L: linux-media@vger.kernel.org
11593 S: Supported
11594 W: http://linuxtv.org/
11595 T: git git://linuxtv.org/media_tree.git
11596 F: drivers/media/dvb-frontends/cxd2880/*
11597 F: drivers/media/spi/cxd2880*
11598
11599 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11600 L: linux-media@vger.kernel.org
11601 S: Orphan
11602 W: https://linuxtv.org
11603 T: git git://linuxtv.org/media_tree.git
11604 F: drivers/media/pci/ddbridge/*
11605
11606 MEDIA DRIVERS FOR FREESCALE IMX
11607 M: Steve Longerbeam <slongerbeam@gmail.com>
11608 M: Philipp Zabel <p.zabel@pengutronix.de>
11609 L: linux-media@vger.kernel.org
11610 S: Maintained
11611 T: git git://linuxtv.org/media_tree.git
11612 F: Documentation/admin-guide/media/imx.rst
11613 F: Documentation/devicetree/bindings/media/imx.txt
11614 F: drivers/staging/media/imx/
11615 F: include/linux/imx-media.h
11616 F: include/media/imx.h
11617
11618 MEDIA DRIVERS FOR FREESCALE IMX7
11619 M: Rui Miguel Silva <rmfrfs@gmail.com>
11620 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11621 L: linux-media@vger.kernel.org
11622 S: Maintained
11623 T: git git://linuxtv.org/media_tree.git
11624 F: Documentation/admin-guide/media/imx7.rst
11625 F: Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11626 F: Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11627 F: drivers/staging/media/imx/imx7-media-csi.c
11628 F: drivers/staging/media/imx/imx7-mipi-csis.c
11629
11630 MEDIA DRIVERS FOR HELENE
11631 M: Abylay Ospan <aospan@netup.ru>
11632 L: linux-media@vger.kernel.org
11633 S: Supported
11634 W: https://linuxtv.org
11635 W: http://netup.tv/
11636 T: git git://linuxtv.org/media_tree.git
11637 F: drivers/media/dvb-frontends/helene*
11638
11639 MEDIA DRIVERS FOR HORUS3A
11640 M: Sergey Kozlov <serjk@netup.ru>
11641 M: Abylay Ospan <aospan@netup.ru>
11642 L: linux-media@vger.kernel.org
11643 S: Supported
11644 W: https://linuxtv.org
11645 W: http://netup.tv/
11646 T: git git://linuxtv.org/media_tree.git
11647 F: drivers/media/dvb-frontends/horus3a*
11648
11649 MEDIA DRIVERS FOR LNBH25
11650 M: Sergey Kozlov <serjk@netup.ru>
11651 M: Abylay Ospan <aospan@netup.ru>
11652 L: linux-media@vger.kernel.org
11653 S: Supported
11654 W: https://linuxtv.org
11655 W: http://netup.tv/
11656 T: git git://linuxtv.org/media_tree.git
11657 F: drivers/media/dvb-frontends/lnbh25*
11658
11659 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11660 L: linux-media@vger.kernel.org
11661 S: Orphan
11662 W: https://linuxtv.org
11663 T: git git://linuxtv.org/media_tree.git
11664 F: drivers/media/dvb-frontends/mxl5xx*
11665
11666 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11667 M: Sergey Kozlov <serjk@netup.ru>
11668 M: Abylay Ospan <aospan@netup.ru>
11669 L: linux-media@vger.kernel.org
11670 S: Supported
11671 W: https://linuxtv.org
11672 W: http://netup.tv/
11673 T: git git://linuxtv.org/media_tree.git
11674 F: drivers/media/pci/netup_unidvb/*
11675
11676 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11677 M: Dmitry Osipenko <digetx@gmail.com>
11678 L: linux-media@vger.kernel.org
11679 L: linux-tegra@vger.kernel.org
11680 S: Maintained
11681 T: git git://linuxtv.org/media_tree.git
11682 F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11683 F: drivers/staging/media/tegra-vde/
11684
11685 MEDIA DRIVERS FOR RENESAS - CEU
11686 M: Jacopo Mondi <jacopo@jmondi.org>
11687 L: linux-media@vger.kernel.org
11688 L: linux-renesas-soc@vger.kernel.org
11689 S: Supported
11690 T: git git://linuxtv.org/media_tree.git
11691 F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
11692 F: drivers/media/platform/renesas-ceu.c
11693 F: include/media/drv-intf/renesas-ceu.h
11694
11695 MEDIA DRIVERS FOR RENESAS - DRIF
11696 M: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11697 L: linux-media@vger.kernel.org
11698 L: linux-renesas-soc@vger.kernel.org
11699 S: Supported
11700 T: git git://linuxtv.org/media_tree.git
11701 F: Documentation/devicetree/bindings/media/renesas,drif.yaml
11702 F: drivers/media/platform/rcar_drif.c
11703
11704 MEDIA DRIVERS FOR RENESAS - FCP
11705 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11706 L: linux-media@vger.kernel.org
11707 L: linux-renesas-soc@vger.kernel.org
11708 S: Supported
11709 T: git git://linuxtv.org/media_tree.git
11710 F: Documentation/devicetree/bindings/media/renesas,fcp.yaml
11711 F: drivers/media/platform/rcar-fcp.c
11712 F: include/media/rcar-fcp.h
11713
11714 MEDIA DRIVERS FOR RENESAS - FDP1
11715 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11716 L: linux-media@vger.kernel.org
11717 L: linux-renesas-soc@vger.kernel.org
11718 S: Supported
11719 T: git git://linuxtv.org/media_tree.git
11720 F: Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11721 F: drivers/media/platform/rcar_fdp1.c
11722
11723 MEDIA DRIVERS FOR RENESAS - VIN
11724 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
11725 L: linux-media@vger.kernel.org
11726 L: linux-renesas-soc@vger.kernel.org
11727 S: Supported
11728 T: git git://linuxtv.org/media_tree.git
11729 F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
11730 F: Documentation/devicetree/bindings/media/renesas,isp.yaml
11731 F: Documentation/devicetree/bindings/media/renesas,vin.yaml
11732 F: drivers/media/platform/rcar-vin/
11733
11734 MEDIA DRIVERS FOR RENESAS - VSP1
11735 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11736 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11737 L: linux-media@vger.kernel.org
11738 L: linux-renesas-soc@vger.kernel.org
11739 S: Supported
11740 T: git git://linuxtv.org/media_tree.git
11741 F: Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11742 F: drivers/media/platform/vsp1/
11743
11744 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11745 L: linux-media@vger.kernel.org
11746 S: Orphan
11747 W: https://linuxtv.org
11748 T: git git://linuxtv.org/media_tree.git
11749 F: drivers/media/dvb-frontends/stv0910*
11750
11751 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11752 L: linux-media@vger.kernel.org
11753 S: Orphan
11754 W: https://linuxtv.org
11755 T: git git://linuxtv.org/media_tree.git
11756 F: drivers/media/dvb-frontends/stv6111*
11757
11758 MEDIA DRIVERS FOR STM32 - DCMI
11759 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
11760 L: linux-media@vger.kernel.org
11761 S: Supported
11762 T: git git://linuxtv.org/media_tree.git
11763 F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11764 F: drivers/media/platform/stm32/stm32-dcmi.c
11765
11766 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11767 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11768 L: linux-media@vger.kernel.org
11769 S: Maintained
11770 W: https://linuxtv.org
11771 Q: http://patchwork.kernel.org/project/linux-media/list/
11772 T: git git://linuxtv.org/media_tree.git
11773 F: Documentation/admin-guide/media/
11774 F: Documentation/devicetree/bindings/media/
11775 F: Documentation/driver-api/media/
11776 F: Documentation/userspace-api/media/
11777 F: drivers/media/
11778 F: drivers/staging/media/
11779 F: include/linux/platform_data/media/
11780 F: include/media/
11781 F: include/uapi/linux/dvb/
11782 F: include/uapi/linux/ivtv*
11783 F: include/uapi/linux/media.h
11784 F: include/uapi/linux/meye.h
11785 F: include/uapi/linux/uvcvideo.h
11786 F: include/uapi/linux/v4l2-*
11787 F: include/uapi/linux/videodev2.h
11788
11789 MEDIATEK BLUETOOTH DRIVER
11790 M: Sean Wang <sean.wang@mediatek.com>
11791 L: linux-bluetooth@vger.kernel.org
11792 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11793 S: Maintained
11794 F: Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11795 F: drivers/bluetooth/btmtkuart.c
11796
11797 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11798 M: Sean Wang <sean.wang@mediatek.com>
11799 L: linux-pm@vger.kernel.org
11800 S: Maintained
11801 F: Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11802 F: drivers/power/reset/mt6323-poweroff.c
11803
11804 MEDIATEK CIR DRIVER
11805 M: Sean Wang <sean.wang@mediatek.com>
11806 S: Maintained
11807 F: drivers/media/rc/mtk-cir.c
11808
11809 MEDIATEK DMA DRIVER
11810 M: Sean Wang <sean.wang@mediatek.com>
11811 L: dmaengine@vger.kernel.org
11812 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11813 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11814 S: Maintained
11815 F: Documentation/devicetree/bindings/dma/mtk-*
11816 F: drivers/dma/mediatek/
11817
11818 MEDIATEK ETHERNET DRIVER
11819 M: Felix Fietkau <nbd@nbd.name>
11820 M: John Crispin <john@phrozen.org>
11821 M: Sean Wang <sean.wang@mediatek.com>
11822 M: Mark Lee <Mark-MC.Lee@mediatek.com>
11823 L: netdev@vger.kernel.org
11824 S: Maintained
11825 F: drivers/net/ethernet/mediatek/
11826
11827 MEDIATEK I2C CONTROLLER DRIVER
11828 M: Qii Wang <qii.wang@mediatek.com>
11829 L: linux-i2c@vger.kernel.org
11830 S: Maintained
11831 F: Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11832 F: drivers/i2c/busses/i2c-mt65xx.c
11833
11834 MEDIATEK IOMMU DRIVER
11835 M: Yong Wu <yong.wu@mediatek.com>
11836 L: iommu@lists.linux-foundation.org
11837 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11838 S: Supported
11839 F: Documentation/devicetree/bindings/iommu/mediatek*
11840 F: drivers/iommu/mtk_iommu*
11841 F: include/dt-bindings/memory/mt*-port.h
11842
11843 MEDIATEK JPEG DRIVER
11844 M: Rick Chang <rick.chang@mediatek.com>
11845 M: Bin Liu <bin.liu@mediatek.com>
11846 S: Supported
11847 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11848 F: drivers/media/platform/mtk-jpeg/
11849
11850 MEDIATEK MDP DRIVER
11851 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11852 M: Houlong Wei <houlong.wei@mediatek.com>
11853 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11854 S: Supported
11855 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
11856 F: drivers/media/platform/mtk-mdp/
11857 F: drivers/media/platform/mtk-vpu/
11858
11859 MEDIATEK MEDIA DRIVER
11860 M: Tiffany Lin <tiffany.lin@mediatek.com>
11861 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11862 S: Supported
11863 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11864 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
11865 F: drivers/media/platform/mtk-vcodec/
11866 F: drivers/media/platform/mtk-vpu/
11867
11868 MEDIATEK MMC/SD/SDIO DRIVER
11869 M: Chaotian Jing <chaotian.jing@mediatek.com>
11870 S: Maintained
11871 F: Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11872 F: drivers/mmc/host/mtk-sd.c
11873
11874 MEDIATEK MT76 WIRELESS LAN DRIVER
11875 M: Felix Fietkau <nbd@nbd.name>
11876 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11877 R: Ryder Lee <ryder.lee@mediatek.com>
11878 L: linux-wireless@vger.kernel.org
11879 S: Maintained
11880 F: drivers/net/wireless/mediatek/mt76/
11881
11882 MEDIATEK MT7601U WIRELESS LAN DRIVER
11883 M: Jakub Kicinski <kubakici@wp.pl>
11884 L: linux-wireless@vger.kernel.org
11885 S: Maintained
11886 F: drivers/net/wireless/mediatek/mt7601u/
11887
11888 MEDIATEK MT7621 CLOCK DRIVER
11889 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11890 S: Maintained
11891 F: Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11892 F: drivers/clk/ralink/clk-mt7621.c
11893
11894 MEDIATEK MT7621/28/88 I2C DRIVER
11895 M: Stefan Roese <sr@denx.de>
11896 L: linux-i2c@vger.kernel.org
11897 S: Maintained
11898 F: Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11899 F: drivers/i2c/busses/i2c-mt7621.c
11900
11901 MEDIATEK MT7621 PHY PCI DRIVER
11902 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11903 S: Maintained
11904 F: Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11905 F: drivers/phy/ralink/phy-mt7621-pci.c
11906
11907 MEDIATEK NAND CONTROLLER DRIVER
11908 L: linux-mtd@lists.infradead.org
11909 S: Orphan
11910 F: Documentation/devicetree/bindings/mtd/mtk-nand.txt
11911 F: drivers/mtd/nand/raw/mtk_*
11912
11913 MEDIATEK PMIC LED DRIVER
11914 M: Sean Wang <sean.wang@mediatek.com>
11915 S: Maintained
11916 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
11917 F: drivers/leds/leds-mt6323.c
11918
11919 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11920 M: Sean Wang <sean.wang@mediatek.com>
11921 S: Maintained
11922 F: drivers/char/hw_random/mtk-rng.c
11923
11924 MEDIATEK SWITCH DRIVER
11925 M: Sean Wang <sean.wang@mediatek.com>
11926 M: Landen Chao <Landen.Chao@mediatek.com>
11927 M: DENG Qingfang <dqfext@gmail.com>
11928 L: netdev@vger.kernel.org
11929 S: Maintained
11930 F: drivers/net/dsa/mt7530.*
11931 F: net/dsa/tag_mtk.c
11932
11933 MEDIATEK USB3 DRD IP DRIVER
11934 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
11935 L: linux-usb@vger.kernel.org
11936 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11937 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11938 S: Maintained
11939 F: Documentation/devicetree/bindings/usb/mediatek,*
11940 F: drivers/usb/host/xhci-mtk*
11941 F: drivers/usb/mtu3/
11942
11943 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11944 M: Peter Senna Tschudin <peter.senna@gmail.com>
11945 M: Martin Donnelly <martin.donnelly@ge.com>
11946 M: Martyn Welch <martyn.welch@collabora.co.uk>
11947 S: Maintained
11948 F: Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11949 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11950
11951 MEGARAID SCSI/SAS DRIVERS
11952 M: Kashyap Desai <kashyap.desai@broadcom.com>
11953 M: Sumit Saxena <sumit.saxena@broadcom.com>
11954 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11955 L: megaraidlinux.pdl@broadcom.com
11956 L: linux-scsi@vger.kernel.org
11957 S: Maintained
11958 W: http://www.avagotech.com/support/
11959 F: Documentation/scsi/megaraid.rst
11960 F: drivers/scsi/megaraid.*
11961 F: drivers/scsi/megaraid/
11962
11963 MELEXIS MLX90614 DRIVER
11964 M: Crt Mori <cmo@melexis.com>
11965 L: linux-iio@vger.kernel.org
11966 S: Supported
11967 W: http://www.melexis.com
11968 F: drivers/iio/temperature/mlx90614.c
11969
11970 MELEXIS MLX90632 DRIVER
11971 M: Crt Mori <cmo@melexis.com>
11972 L: linux-iio@vger.kernel.org
11973 S: Supported
11974 W: http://www.melexis.com
11975 F: drivers/iio/temperature/mlx90632.c
11976
11977 MELFAS MIP4 TOUCHSCREEN DRIVER
11978 M: Sangwon Jee <jeesw@melfas.com>
11979 S: Supported
11980 W: http://www.melfas.com
11981 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11982 F: drivers/input/touchscreen/melfas_mip4.c
11983
11984 MELLANOX BLUEFIELD I2C DRIVER
11985 M: Khalil Blaiech <kblaiech@nvidia.com>
11986 L: linux-i2c@vger.kernel.org
11987 S: Supported
11988 F: Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11989 F: drivers/i2c/busses/i2c-mlxbf.c
11990
11991 MELLANOX ETHERNET DRIVER (mlx4_en)
11992 M: Tariq Toukan <tariqt@nvidia.com>
11993 L: netdev@vger.kernel.org
11994 S: Supported
11995 W: http://www.mellanox.com
11996 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11997 F: drivers/net/ethernet/mellanox/mlx4/en_*
11998
11999 MELLANOX ETHERNET DRIVER (mlx5e)
12000 M: Saeed Mahameed <saeedm@nvidia.com>
12001 L: netdev@vger.kernel.org
12002 S: Supported
12003 W: http://www.mellanox.com
12004 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12005 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
12006
12007 MELLANOX ETHERNET INNOVA DRIVERS
12008 R: Boris Pismenny <borisp@nvidia.com>
12009 L: netdev@vger.kernel.org
12010 S: Supported
12011 W: http://www.mellanox.com
12012 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12013 F: drivers/net/ethernet/mellanox/mlx5/core/accel/*
12014 F: drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12015 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12016 F: include/linux/mlx5/mlx5_ifc_fpga.h
12017
12018 MELLANOX ETHERNET SWITCH DRIVERS
12019 M: Jiri Pirko <jiri@nvidia.com>
12020 M: Ido Schimmel <idosch@nvidia.com>
12021 L: netdev@vger.kernel.org
12022 S: Supported
12023 W: http://www.mellanox.com
12024 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12025 F: drivers/net/ethernet/mellanox/mlxsw/
12026 F: tools/testing/selftests/drivers/net/mlxsw/
12027
12028 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12029 M: mlxsw@nvidia.com
12030 L: netdev@vger.kernel.org
12031 S: Supported
12032 W: http://www.mellanox.com
12033 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12034 F: drivers/net/ethernet/mellanox/mlxfw/
12035
12036 MELLANOX HARDWARE PLATFORM SUPPORT
12037 M: Hans de Goede <hdegoede@redhat.com>
12038 M: Mark Gross <mgross@linux.intel.com>
12039 M: Vadim Pasternak <vadimp@nvidia.com>
12040 L: platform-driver-x86@vger.kernel.org
12041 S: Supported
12042 F: Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12043 F: drivers/platform/mellanox/
12044 F: include/linux/platform_data/mlxreg.h
12045
12046 MELLANOX MLX4 core VPI driver
12047 M: Tariq Toukan <tariqt@nvidia.com>
12048 L: netdev@vger.kernel.org
12049 L: linux-rdma@vger.kernel.org
12050 S: Supported
12051 W: http://www.mellanox.com
12052 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12053 F: drivers/net/ethernet/mellanox/mlx4/
12054 F: include/linux/mlx4/
12055
12056 MELLANOX MLX4 IB driver
12057 M: Yishai Hadas <yishaih@nvidia.com>
12058 L: linux-rdma@vger.kernel.org
12059 S: Supported
12060 W: http://www.mellanox.com
12061 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12062 F: drivers/infiniband/hw/mlx4/
12063 F: include/linux/mlx4/
12064 F: include/uapi/rdma/mlx4-abi.h
12065
12066 MELLANOX MLX5 core VPI driver
12067 M: Saeed Mahameed <saeedm@nvidia.com>
12068 M: Leon Romanovsky <leonro@nvidia.com>
12069 L: netdev@vger.kernel.org
12070 L: linux-rdma@vger.kernel.org
12071 S: Supported
12072 W: http://www.mellanox.com
12073 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12074 F: Documentation/networking/device_drivers/ethernet/mellanox/
12075 F: drivers/net/ethernet/mellanox/mlx5/core/
12076 F: include/linux/mlx5/
12077
12078 MELLANOX MLX5 IB driver
12079 M: Leon Romanovsky <leonro@nvidia.com>
12080 L: linux-rdma@vger.kernel.org
12081 S: Supported
12082 W: http://www.mellanox.com
12083 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12084 F: drivers/infiniband/hw/mlx5/
12085 F: include/linux/mlx5/
12086 F: include/uapi/rdma/mlx5-abi.h
12087
12088 MELLANOX MLXCPLD I2C AND MUX DRIVER
12089 M: Vadim Pasternak <vadimp@nvidia.com>
12090 M: Michael Shych <michaelsh@nvidia.com>
12091 L: linux-i2c@vger.kernel.org
12092 S: Supported
12093 F: Documentation/i2c/busses/i2c-mlxcpld.rst
12094 F: drivers/i2c/busses/i2c-mlxcpld.c
12095 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
12096
12097 MELLANOX MLXCPLD LED DRIVER
12098 M: Vadim Pasternak <vadimp@nvidia.com>
12099 L: linux-leds@vger.kernel.org
12100 S: Supported
12101 F: Documentation/leds/leds-mlxcpld.rst
12102 F: drivers/leds/leds-mlxcpld.c
12103 F: drivers/leds/leds-mlxreg.c
12104
12105 MELLANOX PLATFORM DRIVER
12106 M: Vadim Pasternak <vadimp@nvidia.com>
12107 L: platform-driver-x86@vger.kernel.org
12108 S: Supported
12109 F: drivers/platform/x86/mlx-platform.c
12110
12111 MEMBARRIER SUPPORT
12112 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12113 M: "Paul E. McKenney" <paulmck@kernel.org>
12114 L: linux-kernel@vger.kernel.org
12115 S: Supported
12116 F: arch/powerpc/include/asm/membarrier.h
12117 F: include/uapi/linux/membarrier.h
12118 F: kernel/sched/membarrier.c
12119
12120 MEMBLOCK
12121 M: Mike Rapoport <rppt@linux.ibm.com>
12122 L: linux-mm@kvack.org
12123 S: Maintained
12124 F: Documentation/core-api/boot-time-mm.rst
12125 F: include/linux/memblock.h
12126 F: mm/memblock.c
12127
12128 MEMORY CONTROLLER DRIVERS
12129 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12130 L: linux-kernel@vger.kernel.org
12131 S: Maintained
12132 T: git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12133 F: Documentation/devicetree/bindings/memory-controllers/
12134 F: drivers/memory/
12135 F: include/dt-bindings/memory/
12136 F: include/memory/
12137
12138 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12139 M: Dmitry Osipenko <digetx@gmail.com>
12140 L: linux-pm@vger.kernel.org
12141 L: linux-tegra@vger.kernel.org
12142 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12143 S: Maintained
12144 F: drivers/devfreq/tegra30-devfreq.c
12145
12146 MEMORY MANAGEMENT
12147 M: Andrew Morton <akpm@linux-foundation.org>
12148 L: linux-mm@kvack.org
12149 S: Maintained
12150 W: http://www.linux-mm.org
12151 T: quilt https://ozlabs.org/~akpm/mmotm/
12152 T: quilt https://ozlabs.org/~akpm/mmots/
12153 T: git git://github.com/hnaz/linux-mm.git
12154 F: include/linux/gfp.h
12155 F: include/linux/memory_hotplug.h
12156 F: include/linux/mm.h
12157 F: include/linux/mmzone.h
12158 F: include/linux/pagewalk.h
12159 F: include/linux/vmalloc.h
12160 F: mm/
12161 F: tools/testing/selftests/vm/
12162
12163 MEMORY TECHNOLOGY DEVICES (MTD)
12164 M: Miquel Raynal <miquel.raynal@bootlin.com>
12165 M: Richard Weinberger <richard@nod.at>
12166 M: Vignesh Raghavendra <vigneshr@ti.com>
12167 L: linux-mtd@lists.infradead.org
12168 S: Maintained
12169 W: http://www.linux-mtd.infradead.org/
12170 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12171 C: irc://irc.oftc.net/mtd
12172 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12173 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12174 F: Documentation/devicetree/bindings/mtd/
12175 F: drivers/mtd/
12176 F: include/linux/mtd/
12177 F: include/uapi/mtd/
12178
12179 MEN A21 WATCHDOG DRIVER
12180 M: Johannes Thumshirn <morbidrsa@gmail.com>
12181 L: linux-watchdog@vger.kernel.org
12182 S: Maintained
12183 F: drivers/watchdog/mena21_wdt.c
12184
12185 MEN CHAMELEON BUS (mcb)
12186 M: Johannes Thumshirn <morbidrsa@gmail.com>
12187 S: Maintained
12188 F: Documentation/driver-api/men-chameleon-bus.rst
12189 F: drivers/mcb/
12190 F: include/linux/mcb.h
12191
12192 MEN F21BMC (Board Management Controller)
12193 M: Andreas Werner <andreas.werner@men.de>
12194 S: Supported
12195 F: Documentation/hwmon/menf21bmc.rst
12196 F: drivers/hwmon/menf21bmc_hwmon.c
12197 F: drivers/leds/leds-menf21bmc.c
12198 F: drivers/mfd/menf21bmc.c
12199 F: drivers/watchdog/menf21bmc_wdt.c
12200
12201 MEN Z069 WATCHDOG DRIVER
12202 M: Johannes Thumshirn <jth@kernel.org>
12203 L: linux-watchdog@vger.kernel.org
12204 S: Maintained
12205 F: drivers/watchdog/menz69_wdt.c
12206
12207 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12208 M: Neil Armstrong <narmstrong@baylibre.com>
12209 L: linux-media@vger.kernel.org
12210 L: linux-amlogic@lists.infradead.org
12211 S: Supported
12212 W: http://linux-meson.com/
12213 T: git git://linuxtv.org/media_tree.git
12214 F: Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12215 F: drivers/media/cec/platform/meson/ao-cec-g12a.c
12216 F: drivers/media/cec/platform/meson/ao-cec.c
12217
12218 MESON GE2D DRIVER FOR AMLOGIC SOCS
12219 M: Neil Armstrong <narmstrong@baylibre.com>
12220 L: linux-media@vger.kernel.org
12221 L: linux-amlogic@lists.infradead.org
12222 S: Supported
12223 T: git git://linuxtv.org/media_tree.git
12224 F: Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12225 F: drivers/media/platform/meson/ge2d/
12226
12227 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12228 M: Liang Yang <liang.yang@amlogic.com>
12229 L: linux-mtd@lists.infradead.org
12230 S: Maintained
12231 F: Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12232 F: drivers/mtd/nand/raw/meson_*
12233
12234 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12235 M: Neil Armstrong <narmstrong@baylibre.com>
12236 L: linux-media@vger.kernel.org
12237 L: linux-amlogic@lists.infradead.org
12238 S: Supported
12239 T: git git://linuxtv.org/media_tree.git
12240 F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12241 F: drivers/staging/media/meson/vdec/
12242
12243 METHODE UDPU SUPPORT
12244 M: Vladimir Vid <vladimir.vid@sartura.hr>
12245 S: Maintained
12246 F: arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12247
12248 MHI BUS
12249 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12250 M: Hemant Kumar <hemantk@codeaurora.org>
12251 L: linux-arm-msm@vger.kernel.org
12252 S: Maintained
12253 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12254 F: Documentation/ABI/stable/sysfs-bus-mhi
12255 F: Documentation/mhi/
12256 F: drivers/bus/mhi/
12257 F: include/linux/mhi.h
12258
12259 MICROBLAZE ARCHITECTURE
12260 M: Michal Simek <monstr@monstr.eu>
12261 S: Supported
12262 W: http://www.monstr.eu/fdt/
12263 T: git git://git.monstr.eu/linux-2.6-microblaze.git
12264 F: arch/microblaze/
12265
12266 MICROCHIP AT91 DMA DRIVERS
12267 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12268 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12269 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12270 L: dmaengine@vger.kernel.org
12271 S: Supported
12272 F: Documentation/devicetree/bindings/dma/atmel-dma.txt
12273 F: drivers/dma/at_hdmac.c
12274 F: drivers/dma/at_hdmac_regs.h
12275 F: drivers/dma/at_xdmac.c
12276 F: include/dt-bindings/dma/at91.h
12277
12278 MICROCHIP AT91 SERIAL DRIVER
12279 M: Richard Genoud <richard.genoud@gmail.com>
12280 S: Maintained
12281 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12282 F: drivers/tty/serial/atmel_serial.c
12283 F: drivers/tty/serial/atmel_serial.h
12284
12285 MICROCHIP AT91 USART MFD DRIVER
12286 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12287 L: linux-kernel@vger.kernel.org
12288 S: Supported
12289 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12290 F: drivers/mfd/at91-usart.c
12291 F: include/dt-bindings/mfd/at91-usart.h
12292
12293 MICROCHIP AT91 USART SPI DRIVER
12294 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12295 L: linux-spi@vger.kernel.org
12296 S: Supported
12297 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12298 F: drivers/spi/spi-at91-usart.c
12299
12300 MICROCHIP AUDIO ASOC DRIVERS
12301 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12302 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12303 S: Supported
12304 F: sound/soc/atmel
12305
12306 MICROCHIP ECC DRIVER
12307 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12308 L: linux-crypto@vger.kernel.org
12309 S: Maintained
12310 F: drivers/crypto/atmel-ecc.*
12311
12312 MICROCHIP I2C DRIVER
12313 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12314 L: linux-i2c@vger.kernel.org
12315 S: Supported
12316 F: drivers/i2c/busses/i2c-at91-*.c
12317 F: drivers/i2c/busses/i2c-at91.h
12318
12319 MICROCHIP ISC DRIVER
12320 M: Eugen Hristev <eugen.hristev@microchip.com>
12321 L: linux-media@vger.kernel.org
12322 S: Supported
12323 F: Documentation/devicetree/bindings/media/atmel,isc.yaml
12324 F: Documentation/devicetree/bindings/media/microchip,xisc.yaml
12325 F: drivers/media/platform/atmel/atmel-isc-base.c
12326 F: drivers/media/platform/atmel/atmel-isc-regs.h
12327 F: drivers/media/platform/atmel/atmel-isc.h
12328 F: drivers/media/platform/atmel/atmel-sama5d2-isc.c
12329 F: drivers/media/platform/atmel/atmel-sama7g5-isc.c
12330 F: include/linux/atmel-isc-media.h
12331
12332 MICROCHIP ISI DRIVER
12333 M: Eugen Hristev <eugen.hristev@microchip.com>
12334 L: linux-media@vger.kernel.org
12335 S: Supported
12336 F: drivers/media/platform/atmel/atmel-isi.c
12337 F: drivers/media/platform/atmel/atmel-isi.h
12338
12339 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12340 M: Woojung Huh <woojung.huh@microchip.com>
12341 M: UNGLinuxDriver@microchip.com
12342 L: netdev@vger.kernel.org
12343 S: Maintained
12344 F: Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12345 F: drivers/net/dsa/microchip/*
12346 F: include/linux/platform_data/microchip-ksz.h
12347 F: net/dsa/tag_ksz.c
12348
12349 MICROCHIP LAN743X ETHERNET DRIVER
12350 M: Bryan Whitehead <bryan.whitehead@microchip.com>
12351 M: UNGLinuxDriver@microchip.com
12352 L: netdev@vger.kernel.org
12353 S: Maintained
12354 F: drivers/net/ethernet/microchip/lan743x_*
12355
12356 MICROCHIP LCDFB DRIVER
12357 M: Nicolas Ferre <nicolas.ferre@microchip.com>
12358 L: linux-fbdev@vger.kernel.org
12359 S: Maintained
12360 F: drivers/video/fbdev/atmel_lcdfb.c
12361 F: include/video/atmel_lcdc.h
12362
12363 MICROCHIP MCP16502 PMIC DRIVER
12364 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12365 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12366 S: Supported
12367 F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12368 F: drivers/regulator/mcp16502.c
12369
12370 MICROCHIP MCP3911 ADC DRIVER
12371 M: Marcus Folkesson <marcus.folkesson@gmail.com>
12372 M: Kent Gustavsson <kent@minoris.se>
12373 L: linux-iio@vger.kernel.org
12374 S: Supported
12375 F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12376 F: drivers/iio/adc/mcp3911.c
12377
12378 MICROCHIP MMC/SD/SDIO MCI DRIVER
12379 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12380 S: Maintained
12381 F: drivers/mmc/host/atmel-mci.c
12382
12383 MICROCHIP NAND DRIVER
12384 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12385 L: linux-mtd@lists.infradead.org
12386 S: Supported
12387 F: Documentation/devicetree/bindings/mtd/atmel-nand.txt
12388 F: drivers/mtd/nand/raw/atmel/*
12389
12390 MICROCHIP PWM DRIVER
12391 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12392 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12393 L: linux-pwm@vger.kernel.org
12394 S: Supported
12395 F: Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12396 F: drivers/pwm/pwm-atmel.c
12397
12398 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12399 M: Eugen Hristev <eugen.hristev@microchip.com>
12400 L: linux-iio@vger.kernel.org
12401 S: Supported
12402 F: Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12403 F: drivers/iio/adc/at91-sama5d2_adc.c
12404 F: include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12405
12406 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12407 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12408 S: Supported
12409 F: drivers/power/reset/at91-sama5d2_shdwc.c
12410
12411 MICROCHIP SPI DRIVER
12412 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12413 S: Supported
12414 F: drivers/spi/spi-atmel.*
12415
12416 MICROCHIP SSC DRIVER
12417 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12418 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12419 S: Supported
12420 F: drivers/misc/atmel-ssc.c
12421 F: include/linux/atmel-ssc.h
12422
12423 MICROCHIP USB251XB DRIVER
12424 M: Richard Leitner <richard.leitner@skidata.com>
12425 L: linux-usb@vger.kernel.org
12426 S: Maintained
12427 F: Documentation/devicetree/bindings/usb/usb251xb.txt
12428 F: drivers/usb/misc/usb251xb.c
12429
12430 MICROCHIP USBA UDC DRIVER
12431 M: Cristian Birsan <cristian.birsan@microchip.com>
12432 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12433 S: Supported
12434 F: drivers/usb/gadget/udc/atmel_usba_udc.*
12435
12436 MICROCHIP WILC1000 WIFI DRIVER
12437 M: Ajay Singh <ajay.kathat@microchip.com>
12438 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12439 L: linux-wireless@vger.kernel.org
12440 S: Supported
12441 F: drivers/net/wireless/microchip/wilc1000/
12442
12443 MICROSEMI MIPS SOCS
12444 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
12445 M: UNGLinuxDriver@microchip.com
12446 L: linux-mips@vger.kernel.org
12447 S: Supported
12448 F: Documentation/devicetree/bindings/mips/mscc.txt
12449 F: Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12450 F: arch/mips/boot/dts/mscc/
12451 F: arch/mips/configs/generic/board-ocelot.config
12452 F: arch/mips/generic/board-ocelot.c
12453
12454 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12455 M: Don Brace <don.brace@microchip.com>
12456 L: storagedev@microchip.com
12457 L: linux-scsi@vger.kernel.org
12458 S: Supported
12459 F: Documentation/scsi/smartpqi.rst
12460 F: drivers/scsi/smartpqi/Kconfig
12461 F: drivers/scsi/smartpqi/Makefile
12462 F: drivers/scsi/smartpqi/smartpqi*.[ch]
12463 F: include/linux/cciss*.h
12464 F: include/uapi/linux/cciss*.h
12465
12466 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12467 M: Maximilian Luz <luzmaximilian@gmail.com>
12468 L: linux-pm@vger.kernel.org
12469 L: platform-driver-x86@vger.kernel.org
12470 S: Maintained
12471 F: drivers/power/supply/surface_battery.c
12472 F: drivers/power/supply/surface_charger.c
12473
12474 MICROSOFT SURFACE DTX DRIVER
12475 M: Maximilian Luz <luzmaximilian@gmail.com>
12476 L: platform-driver-x86@vger.kernel.org
12477 S: Maintained
12478 F: Documentation/driver-api/surface_aggregator/clients/dtx.rst
12479 F: drivers/platform/surface/surface_dtx.c
12480 F: include/uapi/linux/surface_aggregator/dtx.h
12481
12482 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12483 M: Maximilian Luz <luzmaximilian@gmail.com>
12484 L: platform-driver-x86@vger.kernel.org
12485 S: Maintained
12486 F: drivers/platform/surface/surface_gpe.c
12487
12488 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12489 M: Hans de Goede <hdegoede@redhat.com>
12490 M: Mark Gross <mgross@linux.intel.com>
12491 M: Maximilian Luz <luzmaximilian@gmail.com>
12492 L: platform-driver-x86@vger.kernel.org
12493 S: Maintained
12494 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12495 F: drivers/platform/surface/
12496
12497 MICROSOFT SURFACE HID TRANSPORT DRIVER
12498 M: Maximilian Luz <luzmaximilian@gmail.com>
12499 L: linux-input@vger.kernel.org
12500 L: platform-driver-x86@vger.kernel.org
12501 S: Maintained
12502 F: drivers/hid/surface-hid/
12503
12504 MICROSOFT SURFACE HOT-PLUG DRIVER
12505 M: Maximilian Luz <luzmaximilian@gmail.com>
12506 L: platform-driver-x86@vger.kernel.org
12507 S: Maintained
12508 F: drivers/platform/surface/surface_hotplug.c
12509
12510 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12511 M: Maximilian Luz <luzmaximilian@gmail.com>
12512 L: platform-driver-x86@vger.kernel.org
12513 S: Maintained
12514 F: drivers/platform/surface/surface_platform_profile.c
12515
12516 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12517 M: Chen Yu <yu.c.chen@intel.com>
12518 L: platform-driver-x86@vger.kernel.org
12519 S: Supported
12520 F: drivers/platform/surface/surfacepro3_button.c
12521
12522 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12523 M: Maximilian Luz <luzmaximilian@gmail.com>
12524 L: platform-driver-x86@vger.kernel.org
12525 S: Maintained
12526 W: https://github.com/linux-surface/surface-aggregator-module
12527 C: irc://irc.libera.chat/linux-surface
12528 F: Documentation/driver-api/surface_aggregator/
12529 F: drivers/platform/surface/aggregator/
12530 F: drivers/platform/surface/surface_acpi_notify.c
12531 F: drivers/platform/surface/surface_aggregator_cdev.c
12532 F: drivers/platform/surface/surface_aggregator_registry.c
12533 F: include/linux/surface_acpi_notify.h
12534 F: include/linux/surface_aggregator/
12535 F: include/uapi/linux/surface_aggregator/
12536
12537 MICROTEK X6 SCANNER
12538 M: Oliver Neukum <oliver@neukum.org>
12539 S: Maintained
12540 F: drivers/usb/image/microtek.*
12541
12542 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12543 M: Luka Kovacic <luka.kovacic@sartura.hr>
12544 M: Luka Perkov <luka.perkov@sartura.hr>
12545 S: Maintained
12546 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12547 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12548 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12549 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12550 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12551 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12552
12553 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12554 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12555 L: linux-media@vger.kernel.org
12556 S: Maintained
12557 F: Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12558 F: Documentation/driver-api/media/drivers/ccs/
12559 F: Documentation/userspace-api/media/drivers/ccs.rst
12560 F: drivers/media/i2c/ccs-pll.c
12561 F: drivers/media/i2c/ccs-pll.h
12562 F: drivers/media/i2c/ccs/
12563 F: include/uapi/linux/ccs.h
12564 F: include/uapi/linux/smiapp.h
12565
12566 MIPS
12567 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12568 L: linux-mips@vger.kernel.org
12569 S: Maintained
12570 W: http://www.linux-mips.org/
12571 Q: https://patchwork.kernel.org/project/linux-mips/list/
12572 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12573 F: Documentation/devicetree/bindings/mips/
12574 F: Documentation/mips/
12575 F: arch/mips/
12576 F: drivers/platform/mips/
12577
12578 MIPS BOSTON DEVELOPMENT BOARD
12579 M: Paul Burton <paulburton@kernel.org>
12580 L: linux-mips@vger.kernel.org
12581 S: Maintained
12582 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
12583 F: arch/mips/boot/dts/img/boston.dts
12584 F: arch/mips/configs/generic/board-boston.config
12585 F: drivers/clk/imgtec/clk-boston.c
12586 F: include/dt-bindings/clock/boston-clock.h
12587
12588 MIPS CORE DRIVERS
12589 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12590 M: Serge Semin <fancer.lancer@gmail.com>
12591 L: linux-mips@vger.kernel.org
12592 S: Supported
12593 F: drivers/bus/mips_cdmm.c
12594 F: drivers/clocksource/mips-gic-timer.c
12595 F: drivers/cpuidle/cpuidle-cps.c
12596 F: drivers/irqchip/irq-mips-cpu.c
12597 F: drivers/irqchip/irq-mips-gic.c
12598
12599 MIPS GENERIC PLATFORM
12600 M: Paul Burton <paulburton@kernel.org>
12601 L: linux-mips@vger.kernel.org
12602 S: Supported
12603 F: Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12604 F: arch/mips/generic/
12605 F: arch/mips/tools/generic-board-config.sh
12606
12607 MIPS RINT INSTRUCTION EMULATION
12608 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
12609 L: linux-mips@vger.kernel.org
12610 S: Supported
12611 F: arch/mips/math-emu/dp_rint.c
12612 F: arch/mips/math-emu/sp_rint.c
12613
12614 MIPS/LOONGSON1 ARCHITECTURE
12615 M: Keguang Zhang <keguang.zhang@gmail.com>
12616 L: linux-mips@vger.kernel.org
12617 S: Maintained
12618 F: arch/mips/include/asm/mach-loongson32/
12619 F: arch/mips/loongson32/
12620 F: drivers/*/*/*loongson1*
12621 F: drivers/*/*loongson1*
12622
12623 MIPS/LOONGSON2EF ARCHITECTURE
12624 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12625 L: linux-mips@vger.kernel.org
12626 S: Maintained
12627 F: arch/mips/include/asm/mach-loongson2ef/
12628 F: arch/mips/loongson2ef/
12629 F: drivers/cpufreq/loongson2_cpufreq.c
12630
12631 MIPS/LOONGSON64 ARCHITECTURE
12632 M: Huacai Chen <chenhuacai@kernel.org>
12633 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12634 L: linux-mips@vger.kernel.org
12635 S: Maintained
12636 F: arch/mips/include/asm/mach-loongson64/
12637 F: arch/mips/loongson64/
12638 F: drivers/irqchip/irq-loongson*
12639 F: drivers/platform/mips/cpu_hwmon.c
12640
12641 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12642 M: Hans Verkuil <hverkuil@xs4all.nl>
12643 L: linux-media@vger.kernel.org
12644 S: Odd Fixes
12645 W: https://linuxtv.org
12646 T: git git://linuxtv.org/media_tree.git
12647 F: drivers/media/radio/radio-miropcm20*
12648
12649 MMP SUPPORT
12650 R: Lubomir Rintel <lkundrak@v3.sk>
12651 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12652 S: Odd Fixes
12653 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12654 F: arch/arm/boot/dts/mmp*
12655 F: arch/arm/mach-mmp/
12656 F: include/linux/soc/mmp/
12657
12658 MMP USB PHY DRIVERS
12659 R: Lubomir Rintel <lkundrak@v3.sk>
12660 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12661 S: Maintained
12662 F: drivers/phy/marvell/phy-mmp3-usb.c
12663 F: drivers/phy/marvell/phy-pxa-usb.c
12664
12665 MMU GATHER AND TLB INVALIDATION
12666 M: Will Deacon <will@kernel.org>
12667 M: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12668 M: Andrew Morton <akpm@linux-foundation.org>
12669 M: Nick Piggin <npiggin@gmail.com>
12670 M: Peter Zijlstra <peterz@infradead.org>
12671 L: linux-arch@vger.kernel.org
12672 L: linux-mm@kvack.org
12673 S: Maintained
12674 F: arch/*/include/asm/tlb.h
12675 F: include/asm-generic/tlb.h
12676 F: mm/mmu_gather.c
12677
12678 MN88472 MEDIA DRIVER
12679 M: Antti Palosaari <crope@iki.fi>
12680 L: linux-media@vger.kernel.org
12681 S: Maintained
12682 W: https://linuxtv.org
12683 W: http://palosaari.fi/linux/
12684 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12685 F: drivers/media/dvb-frontends/mn88472*
12686
12687 MN88473 MEDIA DRIVER
12688 M: Antti Palosaari <crope@iki.fi>
12689 L: linux-media@vger.kernel.org
12690 S: Maintained
12691 W: https://linuxtv.org
12692 W: http://palosaari.fi/linux/
12693 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12694 F: drivers/media/dvb-frontends/mn88473*
12695
12696 MODULE SUPPORT
12697 M: Luis Chamberlain <mcgrof@kernel.org>
12698 M: Jessica Yu <jeyu@kernel.org>
12699 S: Maintained
12700 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12701 F: include/linux/module.h
12702 F: kernel/module.c
12703
12704 MONOLITHIC POWER SYSTEM PMIC DRIVER
12705 M: Saravanan Sekar <sravanhome@gmail.com>
12706 S: Maintained
12707 F: Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12708 F: Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12709 F: drivers/iio/adc/mp2629_adc.c
12710 F: drivers/mfd/mp2629.c
12711 F: drivers/power/supply/mp2629_charger.c
12712 F: drivers/regulator/mp5416.c
12713 F: drivers/regulator/mpq7920.c
12714 F: drivers/regulator/mpq7920.h
12715 F: include/linux/mfd/mp2629.h
12716
12717 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12718 S: Orphan
12719 W: http://popies.net/meye/
12720 F: Documentation/userspace-api/media/drivers/meye*
12721 F: drivers/media/pci/meye/
12722 F: include/uapi/linux/meye.h
12723
12724 MOTORCOMM PHY DRIVER
12725 M: Peter Geis <pgwipeout@gmail.com>
12726 L: netdev@vger.kernel.org
12727 S: Maintained
12728 F: drivers/net/phy/motorcomm.c
12729
12730 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12731 M: Jiri Slaby <jirislaby@kernel.org>
12732 S: Maintained
12733 F: Documentation/driver-api/serial/moxa-smartio.rst
12734 F: drivers/tty/mxser.*
12735
12736 MR800 AVERMEDIA USB FM RADIO DRIVER
12737 M: Alexey Klimov <klimov.linux@gmail.com>
12738 L: linux-media@vger.kernel.org
12739 S: Maintained
12740 T: git git://linuxtv.org/media_tree.git
12741 F: drivers/media/radio/radio-mr800.c
12742
12743 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12744 M: Alan Ott <alan@signal11.us>
12745 L: linux-wpan@vger.kernel.org
12746 S: Maintained
12747 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12748 F: drivers/net/ieee802154/mrf24j40.c
12749
12750 MSI LAPTOP SUPPORT
12751 M: "Lee, Chun-Yi" <jlee@suse.com>
12752 L: platform-driver-x86@vger.kernel.org
12753 S: Maintained
12754 F: drivers/platform/x86/msi-laptop.c
12755
12756 MSI WMI SUPPORT
12757 L: platform-driver-x86@vger.kernel.org
12758 S: Orphan
12759 F: drivers/platform/x86/msi-wmi.c
12760
12761 MSI001 MEDIA DRIVER
12762 M: Antti Palosaari <crope@iki.fi>
12763 L: linux-media@vger.kernel.org
12764 S: Maintained
12765 W: https://linuxtv.org
12766 W: http://palosaari.fi/linux/
12767 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12768 T: git git://linuxtv.org/anttip/media_tree.git
12769 F: drivers/media/tuners/msi001*
12770
12771 MSI2500 MEDIA DRIVER
12772 M: Antti Palosaari <crope@iki.fi>
12773 L: linux-media@vger.kernel.org
12774 S: Maintained
12775 W: https://linuxtv.org
12776 W: http://palosaari.fi/linux/
12777 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12778 T: git git://linuxtv.org/anttip/media_tree.git
12779 F: drivers/media/usb/msi2500/
12780
12781 MSTAR INTERRUPT CONTROLLER DRIVER
12782 M: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12783 M: Daniel Palmer <daniel@thingy.jp>
12784 S: Maintained
12785 F: Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12786 F: drivers/irqchip/irq-mst-intc.c
12787
12788 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12789 M: Robert Jarzmik <robert.jarzmik@free.fr>
12790 L: linux-mtd@lists.infradead.org
12791 S: Maintained
12792 F: drivers/mtd/devices/docg3*
12793
12794 MT9M032 APTINA SENSOR DRIVER
12795 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12796 L: linux-media@vger.kernel.org
12797 S: Maintained
12798 T: git git://linuxtv.org/media_tree.git
12799 F: drivers/media/i2c/mt9m032.c
12800 F: include/media/i2c/mt9m032.h
12801
12802 MT9P031 APTINA CAMERA SENSOR
12803 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12804 L: linux-media@vger.kernel.org
12805 S: Maintained
12806 T: git git://linuxtv.org/media_tree.git
12807 F: drivers/media/i2c/mt9p031.c
12808 F: include/media/i2c/mt9p031.h
12809
12810 MT9T001 APTINA CAMERA SENSOR
12811 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12812 L: linux-media@vger.kernel.org
12813 S: Maintained
12814 T: git git://linuxtv.org/media_tree.git
12815 F: drivers/media/i2c/mt9t001.c
12816 F: include/media/i2c/mt9t001.h
12817
12818 MT9T112 APTINA CAMERA SENSOR
12819 M: Jacopo Mondi <jacopo@jmondi.org>
12820 L: linux-media@vger.kernel.org
12821 S: Odd Fixes
12822 T: git git://linuxtv.org/media_tree.git
12823 F: drivers/media/i2c/mt9t112.c
12824 F: include/media/i2c/mt9t112.h
12825
12826 MT9V032 APTINA CAMERA SENSOR
12827 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12828 L: linux-media@vger.kernel.org
12829 S: Maintained
12830 T: git git://linuxtv.org/media_tree.git
12831 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12832 F: drivers/media/i2c/mt9v032.c
12833 F: include/media/i2c/mt9v032.h
12834
12835 MT9V111 APTINA CAMERA SENSOR
12836 M: Jacopo Mondi <jacopo@jmondi.org>
12837 L: linux-media@vger.kernel.org
12838 S: Maintained
12839 T: git git://linuxtv.org/media_tree.git
12840 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12841 F: drivers/media/i2c/mt9v111.c
12842
12843 MULTIFUNCTION DEVICES (MFD)
12844 M: Lee Jones <lee.jones@linaro.org>
12845 S: Supported
12846 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12847 F: Documentation/devicetree/bindings/mfd/
12848 F: drivers/mfd/
12849 F: include/dt-bindings/mfd/
12850 F: include/linux/mfd/
12851
12852 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12853 S: Orphan
12854 F: drivers/mmc/host/mmc_spi.c
12855 F: include/linux/spi/mmc_spi.h
12856
12857 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12858 M: Ulf Hansson <ulf.hansson@linaro.org>
12859 L: linux-mmc@vger.kernel.org
12860 S: Maintained
12861 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12862 F: Documentation/devicetree/bindings/mmc/
12863 F: drivers/mmc/
12864 F: include/linux/mmc/
12865 F: include/uapi/linux/mmc/
12866
12867 MULTIPLEXER SUBSYSTEM
12868 M: Peter Rosin <peda@axentia.se>
12869 S: Maintained
12870 F: Documentation/ABI/testing/sysfs-class-mux*
12871 F: Documentation/devicetree/bindings/mux/
12872 F: drivers/mux/
12873 F: include/dt-bindings/mux/
12874 F: include/linux/mux/
12875
12876 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12877 M: Bin Liu <b-liu@ti.com>
12878 L: linux-usb@vger.kernel.org
12879 S: Maintained
12880 F: drivers/usb/musb/
12881
12882 MXL301RF MEDIA DRIVER
12883 M: Akihiro Tsukada <tskd08@gmail.com>
12884 L: linux-media@vger.kernel.org
12885 S: Odd Fixes
12886 F: drivers/media/tuners/mxl301rf*
12887
12888 MXL5007T MEDIA DRIVER
12889 M: Michael Krufky <mkrufky@linuxtv.org>
12890 L: linux-media@vger.kernel.org
12891 S: Maintained
12892 W: https://linuxtv.org
12893 W: http://github.com/mkrufky
12894 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12895 T: git git://linuxtv.org/mkrufky/tuners.git
12896 F: drivers/media/tuners/mxl5007t.*
12897
12898 MXSFB DRM DRIVER
12899 M: Marek Vasut <marex@denx.de>
12900 M: Stefan Agner <stefan@agner.ch>
12901 L: dri-devel@lists.freedesktop.org
12902 S: Supported
12903 T: git git://anongit.freedesktop.org/drm/drm-misc
12904 F: Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12905 F: drivers/gpu/drm/mxsfb/
12906
12907 MYLEX DAC960 PCI RAID Controller
12908 M: Hannes Reinecke <hare@kernel.org>
12909 L: linux-scsi@vger.kernel.org
12910 S: Supported
12911 F: drivers/scsi/myrb.*
12912 F: drivers/scsi/myrs.*
12913
12914 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12915 M: Chris Lee <christopher.lee@cspi.com>
12916 L: netdev@vger.kernel.org
12917 S: Supported
12918 W: https://www.cspi.com/ethernet-products/support/downloads/
12919 F: drivers/net/ethernet/myricom/myri10ge/
12920
12921 NAND FLASH SUBSYSTEM
12922 M: Miquel Raynal <miquel.raynal@bootlin.com>
12923 R: Richard Weinberger <richard@nod.at>
12924 L: linux-mtd@lists.infradead.org
12925 S: Maintained
12926 W: http://www.linux-mtd.infradead.org/
12927 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12928 C: irc://irc.oftc.net/mtd
12929 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12930 F: drivers/mtd/nand/
12931 F: include/linux/mtd/*nand*.h
12932
12933 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12934 M: Daniel Mack <zonque@gmail.com>
12935 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12936 S: Maintained
12937 W: http://www.native-instruments.com
12938 F: sound/usb/caiaq/
12939
12940 NATSEMI ETHERNET DRIVER (DP8381x)
12941 S: Orphan
12942 F: drivers/net/ethernet/natsemi/natsemi.c
12943
12944 NCR 5380 SCSI DRIVERS
12945 M: Finn Thain <fthain@linux-m68k.org>
12946 M: Michael Schmitz <schmitzmic@gmail.com>
12947 L: linux-scsi@vger.kernel.org
12948 S: Maintained
12949 F: Documentation/scsi/g_NCR5380.rst
12950 F: drivers/scsi/NCR5380.*
12951 F: drivers/scsi/arm/cumana_1.c
12952 F: drivers/scsi/arm/oak.c
12953 F: drivers/scsi/atari_scsi.*
12954 F: drivers/scsi/dmx3191d.c
12955 F: drivers/scsi/g_NCR5380.*
12956 F: drivers/scsi/mac_scsi.*
12957 F: drivers/scsi/sun3_scsi.*
12958 F: drivers/scsi/sun3_scsi_vme.c
12959
12960 NCSI LIBRARY
12961 M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
12962 S: Maintained
12963 F: net/ncsi/
12964
12965 NCT6775 HARDWARE MONITOR DRIVER
12966 M: Guenter Roeck <linux@roeck-us.net>
12967 L: linux-hwmon@vger.kernel.org
12968 S: Maintained
12969 F: Documentation/hwmon/nct6775.rst
12970 F: drivers/hwmon/nct6775.c
12971
12972 NETDEVSIM
12973 M: Jakub Kicinski <kuba@kernel.org>
12974 S: Maintained
12975 F: drivers/net/netdevsim/*
12976
12977 NETEM NETWORK EMULATOR
12978 M: Stephen Hemminger <stephen@networkplumber.org>
12979 L: netdev@vger.kernel.org
12980 S: Maintained
12981 F: net/sched/sch_netem.c
12982
12983 NETERION 10GbE DRIVERS (s2io/vxge)
12984 M: Jon Mason <jdmason@kudzu.us>
12985 L: netdev@vger.kernel.org
12986 S: Supported
12987 F: Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12988 F: Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12989 F: drivers/net/ethernet/neterion/
12990
12991 NETFILTER
12992 M: Pablo Neira Ayuso <pablo@netfilter.org>
12993 M: Jozsef Kadlecsik <kadlec@netfilter.org>
12994 M: Florian Westphal <fw@strlen.de>
12995 L: netfilter-devel@vger.kernel.org
12996 L: coreteam@netfilter.org
12997 S: Maintained
12998 W: http://www.netfilter.org/
12999 W: http://www.iptables.org/
13000 W: http://www.nftables.org/
13001 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
13002 C: irc://irc.libera.chat/netfilter
13003 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13004 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13005 F: include/linux/netfilter*
13006 F: include/linux/netfilter/
13007 F: include/net/netfilter/
13008 F: include/uapi/linux/netfilter*
13009 F: include/uapi/linux/netfilter/
13010 F: net/*/netfilter.c
13011 F: net/*/netfilter/
13012 F: net/bridge/br_netfilter*.c
13013 F: net/netfilter/
13014
13015 NETROM NETWORK LAYER
13016 M: Ralf Baechle <ralf@linux-mips.org>
13017 L: linux-hams@vger.kernel.org
13018 S: Maintained
13019 W: http://www.linux-ax25.org/
13020 F: include/net/netrom.h
13021 F: include/uapi/linux/netrom.h
13022 F: net/netrom/
13023
13024 NETRONIX EMBEDDED CONTROLLER
13025 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13026 S: Maintained
13027 F: Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13028 F: drivers/mfd/ntxec.c
13029 F: drivers/pwm/pwm-ntxec.c
13030 F: drivers/rtc/rtc-ntxec.c
13031 F: include/linux/mfd/ntxec.h
13032
13033 NETRONOME ETHERNET DRIVERS
13034 M: Simon Horman <simon.horman@corigine.com>
13035 R: Jakub Kicinski <kuba@kernel.org>
13036 L: oss-drivers@corigine.com
13037 S: Maintained
13038 F: drivers/net/ethernet/netronome/
13039
13040 NETWORK BLOCK DEVICE (NBD)
13041 M: Josef Bacik <josef@toxicpanda.com>
13042 L: linux-block@vger.kernel.org
13043 L: nbd@other.debian.org
13044 S: Maintained
13045 F: Documentation/admin-guide/blockdev/nbd.rst
13046 F: drivers/block/nbd.c
13047 F: include/trace/events/nbd.h
13048 F: include/uapi/linux/nbd.h
13049
13050 NETWORK DROP MONITOR
13051 M: Neil Horman <nhorman@tuxdriver.com>
13052 L: netdev@vger.kernel.org
13053 S: Maintained
13054 W: https://fedorahosted.org/dropwatch/
13055 F: include/uapi/linux/net_dropmon.h
13056 F: net/core/drop_monitor.c
13057
13058 NETWORKING DRIVERS
13059 M: "David S. Miller" <davem@davemloft.net>
13060 M: Jakub Kicinski <kuba@kernel.org>
13061 L: netdev@vger.kernel.org
13062 S: Maintained
13063 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13064 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13065 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13066 F: Documentation/devicetree/bindings/net/
13067 F: drivers/connector/
13068 F: drivers/net/
13069 F: include/linux/etherdevice.h
13070 F: include/linux/fcdevice.h
13071 F: include/linux/fddidevice.h
13072 F: include/linux/hippidevice.h
13073 F: include/linux/if_*
13074 F: include/linux/inetdevice.h
13075 F: include/linux/netdevice.h
13076 F: include/uapi/linux/if_*
13077 F: include/uapi/linux/netdevice.h
13078
13079 NETWORKING DRIVERS (WIRELESS)
13080 M: Kalle Valo <kvalo@codeaurora.org>
13081 L: linux-wireless@vger.kernel.org
13082 S: Maintained
13083 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13084 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13085 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13086 F: Documentation/devicetree/bindings/net/wireless/
13087 F: drivers/net/wireless/
13088
13089 NETWORKING [DSA]
13090 M: Andrew Lunn <andrew@lunn.ch>
13091 M: Vivien Didelot <vivien.didelot@gmail.com>
13092 M: Florian Fainelli <f.fainelli@gmail.com>
13093 M: Vladimir Oltean <olteanv@gmail.com>
13094 S: Maintained
13095 F: Documentation/devicetree/bindings/net/dsa/
13096 F: drivers/net/dsa/
13097 F: include/linux/dsa/
13098 F: include/linux/platform_data/dsa.h
13099 F: include/net/dsa.h
13100 F: net/dsa/
13101
13102 NETWORKING [GENERAL]
13103 M: "David S. Miller" <davem@davemloft.net>
13104 M: Jakub Kicinski <kuba@kernel.org>
13105 L: netdev@vger.kernel.org
13106 S: Maintained
13107 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13108 B: mailto:netdev@vger.kernel.org
13109 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13110 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13111 F: Documentation/networking/
13112 F: include/linux/in.h
13113 F: include/linux/net.h
13114 F: include/linux/netdevice.h
13115 F: include/net/
13116 F: include/uapi/linux/in.h
13117 F: include/uapi/linux/net.h
13118 F: include/uapi/linux/net_namespace.h
13119 F: include/uapi/linux/netdevice.h
13120 F: lib/net_utils.c
13121 F: lib/random32.c
13122 F: net/
13123 F: tools/testing/selftests/net/
13124
13125 NETWORKING [IPSEC]
13126 M: Steffen Klassert <steffen.klassert@secunet.com>
13127 M: Herbert Xu <herbert@gondor.apana.org.au>
13128 M: "David S. Miller" <davem@davemloft.net>
13129 L: netdev@vger.kernel.org
13130 S: Maintained
13131 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13132 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13133 F: include/net/xfrm.h
13134 F: include/uapi/linux/xfrm.h
13135 F: net/ipv4/ah4.c
13136 F: net/ipv4/esp4*
13137 F: net/ipv4/ip_vti.c
13138 F: net/ipv4/ipcomp.c
13139 F: net/ipv4/xfrm*
13140 F: net/ipv6/ah6.c
13141 F: net/ipv6/esp6*
13142 F: net/ipv6/ip6_vti.c
13143 F: net/ipv6/ipcomp6.c
13144 F: net/ipv6/xfrm*
13145 F: net/key/
13146 F: net/xfrm/
13147 F: tools/testing/selftests/net/ipsec.c
13148
13149 NETWORKING [IPv4/IPv6]
13150 M: "David S. Miller" <davem@davemloft.net>
13151 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13152 M: David Ahern <dsahern@kernel.org>
13153 L: netdev@vger.kernel.org
13154 S: Maintained
13155 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13156 F: arch/x86/net/*
13157 F: include/net/ip*
13158 F: net/ipv4/
13159 F: net/ipv6/
13160
13161 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13162 M: Paul Moore <paul@paul-moore.com>
13163 L: netdev@vger.kernel.org
13164 L: linux-security-module@vger.kernel.org
13165 S: Maintained
13166 W: https://github.com/netlabel
13167 F: Documentation/netlabel/
13168 F: include/net/calipso.h
13169 F: include/net/cipso_ipv4.h
13170 F: include/net/netlabel.h
13171 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
13172 F: include/uapi/linux/netfilter/xt_SECMARK.h
13173 F: net/ipv4/cipso_ipv4.c
13174 F: net/ipv6/calipso.c
13175 F: net/netfilter/xt_CONNSECMARK.c
13176 F: net/netfilter/xt_SECMARK.c
13177 F: net/netlabel/
13178
13179 NETWORKING [MPTCP]
13180 M: Mat Martineau <mathew.j.martineau@linux.intel.com>
13181 M: Matthieu Baerts <matthieu.baerts@tessares.net>
13182 L: netdev@vger.kernel.org
13183 L: mptcp@lists.linux.dev
13184 S: Maintained
13185 W: https://github.com/multipath-tcp/mptcp_net-next/wiki
13186 B: https://github.com/multipath-tcp/mptcp_net-next/issues
13187 F: Documentation/networking/mptcp-sysctl.rst
13188 F: include/net/mptcp.h
13189 F: include/trace/events/mptcp.h
13190 F: include/uapi/linux/mptcp.h
13191 F: net/mptcp/
13192 F: tools/testing/selftests/net/mptcp/
13193
13194 NETWORKING [TCP]
13195 M: Eric Dumazet <edumazet@google.com>
13196 L: netdev@vger.kernel.org
13197 S: Maintained
13198 F: include/linux/tcp.h
13199 F: include/net/tcp.h
13200 F: include/trace/events/tcp.h
13201 F: include/uapi/linux/tcp.h
13202 F: net/ipv4/syncookies.c
13203 F: net/ipv4/tcp*.c
13204 F: net/ipv6/syncookies.c
13205 F: net/ipv6/tcp*.c
13206
13207 NETWORKING [TLS]
13208 M: Boris Pismenny <borisp@nvidia.com>
13209 M: John Fastabend <john.fastabend@gmail.com>
13210 M: Daniel Borkmann <daniel@iogearbox.net>
13211 M: Jakub Kicinski <kuba@kernel.org>
13212 L: netdev@vger.kernel.org
13213 S: Maintained
13214 F: include/net/tls.h
13215 F: include/uapi/linux/tls.h
13216 F: net/tls/*
13217
13218 NETWORKING [WIRELESS]
13219 L: linux-wireless@vger.kernel.org
13220 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13221
13222 NETXEN (1/10) GbE SUPPORT
13223 M: Manish Chopra <manishc@marvell.com>
13224 M: Rahul Verma <rahulv@marvell.com>
13225 M: GR-Linux-NIC-Dev@marvell.com
13226 L: netdev@vger.kernel.org
13227 S: Supported
13228 F: drivers/net/ethernet/qlogic/netxen/
13229
13230 NET_FAILOVER MODULE
13231 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
13232 L: netdev@vger.kernel.org
13233 S: Supported
13234 F: Documentation/networking/net_failover.rst
13235 F: drivers/net/net_failover.c
13236 F: include/net/net_failover.h
13237
13238 NEXTHOP
13239 M: David Ahern <dsahern@kernel.org>
13240 L: netdev@vger.kernel.org
13241 S: Maintained
13242 F: include/net/netns/nexthop.h
13243 F: include/net/nexthop.h
13244 F: include/uapi/linux/nexthop.h
13245 F: net/ipv4/nexthop.c
13246
13247 NFC SUBSYSTEM
13248 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13249 L: linux-nfc@lists.01.org (subscribers-only)
13250 L: netdev@vger.kernel.org
13251 S: Maintained
13252 F: Documentation/devicetree/bindings/net/nfc/
13253 F: drivers/nfc/
13254 F: include/linux/platform_data/nfcmrvl.h
13255 F: include/net/nfc/
13256 F: include/uapi/linux/nfc.h
13257 F: net/nfc/
13258
13259 NFC VIRTUAL NCI DEVICE DRIVER
13260 M: Bongsu Jeon <bongsu.jeon@samsung.com>
13261 L: netdev@vger.kernel.org
13262 L: linux-nfc@lists.01.org (subscribers-only)
13263 S: Supported
13264 F: drivers/nfc/virtual_ncidev.c
13265 F: tools/testing/selftests/nci/
13266
13267 NFS, SUNRPC, AND LOCKD CLIENTS
13268 M: Trond Myklebust <trond.myklebust@hammerspace.com>
13269 M: Anna Schumaker <anna.schumaker@netapp.com>
13270 L: linux-nfs@vger.kernel.org
13271 S: Maintained
13272 W: http://client.linux-nfs.org
13273 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13274 F: fs/lockd/
13275 F: fs/nfs/
13276 F: fs/nfs_common/
13277 F: include/linux/lockd/
13278 F: include/linux/nfs*
13279 F: include/linux/sunrpc/
13280 F: include/uapi/linux/nfs*
13281 F: include/uapi/linux/sunrpc/
13282 F: net/sunrpc/
13283 F: Documentation/filesystems/nfs/
13284
13285 NILFS2 FILESYSTEM
13286 M: Ryusuke Konishi <konishi.ryusuke@gmail.com>
13287 L: linux-nilfs@vger.kernel.org
13288 S: Supported
13289 W: https://nilfs.sourceforge.io/
13290 W: https://nilfs.osdn.jp/
13291 T: git git://github.com/konis/nilfs2.git
13292 F: Documentation/filesystems/nilfs2.rst
13293 F: fs/nilfs2/
13294 F: include/trace/events/nilfs2.h
13295 F: include/uapi/linux/nilfs2_api.h
13296 F: include/uapi/linux/nilfs2_ondisk.h
13297
13298 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13299 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13300 S: Maintained
13301 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13302 F: Documentation/scsi/NinjaSCSI.rst
13303 F: drivers/scsi/pcmcia/nsp_*
13304
13305 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13306 M: GOTO Masanori <gotom@debian.or.jp>
13307 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13308 S: Maintained
13309 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13310 F: Documentation/scsi/NinjaSCSI.rst
13311 F: drivers/scsi/nsp32*
13312
13313 NIOS2 ARCHITECTURE
13314 M: Dinh Nguyen <dinguyen@kernel.org>
13315 S: Maintained
13316 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13317 F: arch/nios2/
13318
13319 NITRO ENCLAVES (NE)
13320 M: Andra Paraschiv <andraprs@amazon.com>
13321 M: Alexandru Vasile <lexnv@amazon.com>
13322 M: Alexandru Ciobotaru <alcioa@amazon.com>
13323 L: linux-kernel@vger.kernel.org
13324 S: Supported
13325 W: https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13326 F: Documentation/virt/ne_overview.rst
13327 F: drivers/virt/nitro_enclaves/
13328 F: include/linux/nitro_enclaves.h
13329 F: include/uapi/linux/nitro_enclaves.h
13330 F: samples/nitro_enclaves/
13331
13332 NOHZ, DYNTICKS SUPPORT
13333 M: Frederic Weisbecker <fweisbec@gmail.com>
13334 M: Thomas Gleixner <tglx@linutronix.de>
13335 M: Ingo Molnar <mingo@kernel.org>
13336 L: linux-kernel@vger.kernel.org
13337 S: Maintained
13338 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13339 F: include/linux/sched/nohz.h
13340 F: include/linux/tick.h
13341 F: kernel/time/tick*.*
13342
13343 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13344 M: Pavel Machek <pavel@ucw.cz>
13345 M: Sakari Ailus <sakari.ailus@iki.fi>
13346 L: linux-media@vger.kernel.org
13347 S: Maintained
13348 F: drivers/media/i2c/ad5820.c
13349 F: drivers/media/i2c/et8ek8
13350
13351 NOKIA N900 POWER SUPPLY DRIVERS
13352 R: Pali Rohár <pali@kernel.org>
13353 F: drivers/power/supply/bq2415x_charger.c
13354 F: drivers/power/supply/bq27xxx_battery.c
13355 F: drivers/power/supply/bq27xxx_battery_i2c.c
13356 F: drivers/power/supply/isp1704_charger.c
13357 F: drivers/power/supply/rx51_battery.c
13358 F: include/linux/power/bq2415x_charger.h
13359 F: include/linux/power/bq27xxx_battery.h
13360
13361 NOLIBC HEADER FILE
13362 M: Willy Tarreau <w@1wt.eu>
13363 S: Maintained
13364 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13365 F: tools/include/nolibc/
13366
13367 NSDEPS
13368 M: Matthias Maennich <maennich@google.com>
13369 S: Maintained
13370 F: Documentation/core-api/symbol-namespaces.rst
13371 F: scripts/nsdeps
13372
13373 NTB AMD DRIVER
13374 M: Sanjay R Mehta <sanju.mehta@amd.com>
13375 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13376 L: linux-ntb@googlegroups.com
13377 S: Supported
13378 F: drivers/ntb/hw/amd/
13379
13380 NTB DRIVER CORE
13381 M: Jon Mason <jdmason@kudzu.us>
13382 M: Dave Jiang <dave.jiang@intel.com>
13383 M: Allen Hubbe <allenbh@gmail.com>
13384 L: linux-ntb@googlegroups.com
13385 S: Supported
13386 W: https://github.com/jonmason/ntb/wiki
13387 T: git git://github.com/jonmason/ntb.git
13388 F: drivers/net/ntb_netdev.c
13389 F: drivers/ntb/
13390 F: include/linux/ntb.h
13391 F: include/linux/ntb_transport.h
13392 F: tools/testing/selftests/ntb/
13393
13394 NTB IDT DRIVER
13395 M: Serge Semin <fancer.lancer@gmail.com>
13396 L: linux-ntb@googlegroups.com
13397 S: Supported
13398 F: drivers/ntb/hw/idt/
13399
13400 NTB INTEL DRIVER
13401 M: Dave Jiang <dave.jiang@intel.com>
13402 L: linux-ntb@googlegroups.com
13403 S: Supported
13404 W: https://github.com/davejiang/linux/wiki
13405 T: git https://github.com/davejiang/linux.git
13406 F: drivers/ntb/hw/intel/
13407
13408 NTFS FILESYSTEM
13409 M: Anton Altaparmakov <anton@tuxera.com>
13410 L: linux-ntfs-dev@lists.sourceforge.net
13411 S: Supported
13412 W: http://www.tuxera.com/
13413 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13414 F: Documentation/filesystems/ntfs.rst
13415 F: fs/ntfs/
13416
13417 NTFS3 FILESYSTEM
13418 M: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13419 L: ntfs3@lists.linux.dev
13420 S: Supported
13421 W: http://www.paragon-software.com/
13422 T: git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13423 F: Documentation/filesystems/ntfs3.rst
13424 F: fs/ntfs3/
13425
13426 NUBUS SUBSYSTEM
13427 M: Finn Thain <fthain@linux-m68k.org>
13428 L: linux-m68k@lists.linux-m68k.org
13429 S: Maintained
13430 F: arch/*/include/asm/nubus.h
13431 F: drivers/nubus/
13432 F: include/linux/nubus.h
13433 F: include/uapi/linux/nubus.h
13434
13435 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13436 M: Antonino Daplas <adaplas@gmail.com>
13437 L: linux-fbdev@vger.kernel.org
13438 S: Maintained
13439 F: drivers/video/fbdev/nvidia/
13440 F: drivers/video/fbdev/riva/
13441
13442 NVIDIA WMI EC BACKLIGHT DRIVER
13443 M: Daniel Dadap <ddadap@nvidia.com>
13444 L: platform-driver-x86@vger.kernel.org
13445 S: Supported
13446 F: drivers/platform/x86/nvidia-wmi-ec-backlight.c
13447
13448 NVM EXPRESS DRIVER
13449 M: Keith Busch <kbusch@kernel.org>
13450 M: Jens Axboe <axboe@fb.com>
13451 M: Christoph Hellwig <hch@lst.de>
13452 M: Sagi Grimberg <sagi@grimberg.me>
13453 L: linux-nvme@lists.infradead.org
13454 S: Supported
13455 W: http://git.infradead.org/nvme.git
13456 T: git://git.infradead.org/nvme.git
13457 F: drivers/nvme/host/
13458 F: include/linux/nvme.h
13459 F: include/uapi/linux/nvme_ioctl.h
13460
13461 NVM EXPRESS FC TRANSPORT DRIVERS
13462 M: James Smart <james.smart@broadcom.com>
13463 L: linux-nvme@lists.infradead.org
13464 S: Supported
13465 F: drivers/nvme/host/fc.c
13466 F: drivers/nvme/target/fc.c
13467 F: drivers/nvme/target/fcloop.c
13468 F: include/linux/nvme-fc-driver.h
13469 F: include/linux/nvme-fc.h
13470
13471 NVM EXPRESS TARGET DRIVER
13472 M: Christoph Hellwig <hch@lst.de>
13473 M: Sagi Grimberg <sagi@grimberg.me>
13474 M: Chaitanya Kulkarni <kch@nvidia.com>
13475 L: linux-nvme@lists.infradead.org
13476 S: Supported
13477 W: http://git.infradead.org/nvme.git
13478 T: git://git.infradead.org/nvme.git
13479 F: drivers/nvme/target/
13480
13481 NVMEM FRAMEWORK
13482 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13483 S: Maintained
13484 T: git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13485 F: Documentation/ABI/stable/sysfs-bus-nvmem
13486 F: Documentation/devicetree/bindings/nvmem/
13487 F: drivers/nvmem/
13488 F: include/linux/nvmem-consumer.h
13489 F: include/linux/nvmem-provider.h
13490
13491 NXP C45 TJA11XX PHY DRIVER
13492 M: Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13493 L: netdev@vger.kernel.org
13494 S: Maintained
13495 F: drivers/net/phy/nxp-c45-tja11xx.c
13496
13497 NXP FSPI DRIVER
13498 M: Ashish Kumar <ashish.kumar@nxp.com>
13499 R: Yogesh Gaur <yogeshgaur.83@gmail.com>
13500 L: linux-spi@vger.kernel.org
13501 S: Maintained
13502 F: Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13503 F: drivers/spi/spi-nxp-fspi.c
13504
13505 NXP FXAS21002C DRIVER
13506 M: Rui Miguel Silva <rmfrfs@gmail.com>
13507 L: linux-iio@vger.kernel.org
13508 S: Maintained
13509 F: Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13510 F: drivers/iio/gyro/fxas21002c.h
13511 F: drivers/iio/gyro/fxas21002c_core.c
13512 F: drivers/iio/gyro/fxas21002c_i2c.c
13513 F: drivers/iio/gyro/fxas21002c_spi.c
13514
13515 NXP i.MX CLOCK DRIVERS
13516 M: Abel Vesa <abel.vesa@nxp.com>
13517 L: linux-clk@vger.kernel.org
13518 L: linux-imx@nxp.com
13519 S: Maintained
13520 F: drivers/clk/imx/
13521
13522 NXP i.MX 8MQ DCSS DRIVER
13523 M: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13524 R: Lucas Stach <l.stach@pengutronix.de>
13525 L: dri-devel@lists.freedesktop.org
13526 S: Maintained
13527 F: Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13528 F: drivers/gpu/drm/imx/dcss/
13529
13530 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13531 M: Jagan Teki <jagan@amarulasolutions.com>
13532 S: Maintained
13533 F: Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13534 F: drivers/regulator/pf8x00-regulator.c
13535
13536 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13537 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13538 L: linux-kernel@vger.kernel.org
13539 S: Maintained
13540 F: Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13541 F: drivers/extcon/extcon-ptn5150.c
13542
13543 NXP SGTL5000 DRIVER
13544 M: Fabio Estevam <festevam@gmail.com>
13545 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13546 S: Maintained
13547 F: Documentation/devicetree/bindings/sound/sgtl5000.yaml
13548 F: sound/soc/codecs/sgtl5000*
13549
13550 NXP SJA1105 ETHERNET SWITCH DRIVER
13551 M: Vladimir Oltean <olteanv@gmail.com>
13552 L: linux-kernel@vger.kernel.org
13553 S: Maintained
13554 F: drivers/net/dsa/sja1105
13555 F: drivers/net/pcs/pcs-xpcs-nxp.c
13556
13557 NXP TDA998X DRM DRIVER
13558 M: Russell King <linux@armlinux.org.uk>
13559 S: Maintained
13560 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13561 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13562 F: drivers/gpu/drm/i2c/tda998x_drv.c
13563 F: include/drm/i2c/tda998x.h
13564 F: include/dt-bindings/display/tda998x.h
13565 K: "nxp,tda998x"
13566
13567 NXP TFA9879 DRIVER
13568 M: Peter Rosin <peda@axentia.se>
13569 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13570 S: Maintained
13571 F: Documentation/devicetree/bindings/sound/tfa9879.txt
13572 F: sound/soc/codecs/tfa9879*
13573
13574 NXP/Goodix TFA989X (TFA1) DRIVER
13575 M: Stephan Gerhold <stephan@gerhold.net>
13576 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13577 S: Maintained
13578 F: Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13579 F: sound/soc/codecs/tfa989x.c
13580
13581 NXP-NCI NFC DRIVER
13582 R: Charles Gorand <charles.gorand@effinnov.com>
13583 L: linux-nfc@lists.01.org (subscribers-only)
13584 S: Supported
13585 F: drivers/nfc/nxp-nci
13586
13587 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13588 M: Mirela Rabulea <mirela.rabulea@nxp.com>
13589 R: NXP Linux Team <linux-imx@nxp.com>
13590 L: linux-media@vger.kernel.org
13591 S: Maintained
13592 F: Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13593 F: drivers/media/platform/imx-jpeg
13594
13595 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13596 M: Jonas Malaco <jonas@protocubo.io>
13597 L: linux-hwmon@vger.kernel.org
13598 S: Maintained
13599 F: Documentation/hwmon/nzxt-kraken2.rst
13600 F: drivers/hwmon/nzxt-kraken2.c
13601
13602 OBJAGG
13603 M: Jiri Pirko <jiri@nvidia.com>
13604 L: netdev@vger.kernel.org
13605 S: Supported
13606 F: include/linux/objagg.h
13607 F: lib/objagg.c
13608 F: lib/test_objagg.c
13609
13610 OBJTOOL
13611 M: Josh Poimboeuf <jpoimboe@redhat.com>
13612 M: Peter Zijlstra <peterz@infradead.org>
13613 S: Supported
13614 F: tools/objtool/
13615 F: include/linux/objtool.h
13616
13617 OCELOT ETHERNET SWITCH DRIVER
13618 M: Vladimir Oltean <vladimir.oltean@nxp.com>
13619 M: Claudiu Manoil <claudiu.manoil@nxp.com>
13620 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
13621 M: UNGLinuxDriver@microchip.com
13622 L: netdev@vger.kernel.org
13623 S: Supported
13624 F: drivers/net/dsa/ocelot/*
13625 F: drivers/net/ethernet/mscc/
13626 F: include/soc/mscc/ocelot*
13627 F: net/dsa/tag_ocelot.c
13628 F: net/dsa/tag_ocelot_8021q.c
13629 F: tools/testing/selftests/drivers/net/ocelot/*
13630
13631 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13632 M: Frederic Barrat <fbarrat@linux.ibm.com>
13633 M: Andrew Donnellan <ajd@linux.ibm.com>
13634 L: linuxppc-dev@lists.ozlabs.org
13635 S: Supported
13636 F: Documentation/userspace-api/accelerators/ocxl.rst
13637 F: arch/powerpc/include/asm/pnv-ocxl.h
13638 F: arch/powerpc/platforms/powernv/ocxl.c
13639 F: drivers/misc/ocxl/
13640 F: include/misc/ocxl*
13641 F: include/uapi/misc/ocxl.h
13642
13643 OMAP AUDIO SUPPORT
13644 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
13645 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
13646 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13647 L: linux-omap@vger.kernel.org
13648 S: Maintained
13649 F: sound/soc/ti/n810.c
13650 F: sound/soc/ti/omap*
13651 F: sound/soc/ti/rx51.c
13652 F: sound/soc/ti/sdma-pcm.*
13653
13654 OMAP CLOCK FRAMEWORK SUPPORT
13655 M: Paul Walmsley <paul@pwsan.com>
13656 L: linux-omap@vger.kernel.org
13657 S: Maintained
13658 F: arch/arm/*omap*/*clock*
13659
13660 OMAP DEVICE TREE SUPPORT
13661 M: Benoît Cousson <bcousson@baylibre.com>
13662 M: Tony Lindgren <tony@atomide.com>
13663 L: linux-omap@vger.kernel.org
13664 L: devicetree@vger.kernel.org
13665 S: Maintained
13666 F: arch/arm/boot/dts/*am3*
13667 F: arch/arm/boot/dts/*am4*
13668 F: arch/arm/boot/dts/*am5*
13669 F: arch/arm/boot/dts/*dra7*
13670 F: arch/arm/boot/dts/*omap*
13671 F: arch/arm/boot/dts/logicpd-som-lv*
13672 F: arch/arm/boot/dts/logicpd-torpedo*
13673
13674 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13675 L: linux-omap@vger.kernel.org
13676 L: linux-fbdev@vger.kernel.org
13677 S: Orphan
13678 F: Documentation/arm/omap/dss.rst
13679 F: drivers/video/fbdev/omap2/
13680
13681 OMAP FRAMEBUFFER SUPPORT
13682 L: linux-fbdev@vger.kernel.org
13683 L: linux-omap@vger.kernel.org
13684 S: Orphan
13685 F: drivers/video/fbdev/omap/
13686
13687 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13688 M: Roger Quadros <rogerq@kernel.org>
13689 M: Tony Lindgren <tony@atomide.com>
13690 L: linux-omap@vger.kernel.org
13691 S: Maintained
13692 F: arch/arm/mach-omap2/*gpmc*
13693 F: drivers/memory/omap-gpmc.c
13694
13695 OMAP GPIO DRIVER
13696 M: Grygorii Strashko <grygorii.strashko@ti.com>
13697 M: Santosh Shilimkar <ssantosh@kernel.org>
13698 M: Kevin Hilman <khilman@kernel.org>
13699 L: linux-omap@vger.kernel.org
13700 S: Maintained
13701 F: Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13702 F: drivers/gpio/gpio-omap.c
13703
13704 OMAP HARDWARE SPINLOCK SUPPORT
13705 M: Ohad Ben-Cohen <ohad@wizery.com>
13706 L: linux-omap@vger.kernel.org
13707 S: Maintained
13708 F: drivers/hwspinlock/omap_hwspinlock.c
13709
13710 OMAP HS MMC SUPPORT
13711 L: linux-mmc@vger.kernel.org
13712 L: linux-omap@vger.kernel.org
13713 S: Orphan
13714 F: drivers/mmc/host/omap_hsmmc.c
13715
13716 OMAP HWMOD DATA
13717 M: Paul Walmsley <paul@pwsan.com>
13718 L: linux-omap@vger.kernel.org
13719 S: Maintained
13720 F: arch/arm/mach-omap2/omap_hwmod*data*
13721
13722 OMAP HWMOD SUPPORT
13723 M: Benoît Cousson <bcousson@baylibre.com>
13724 M: Paul Walmsley <paul@pwsan.com>
13725 L: linux-omap@vger.kernel.org
13726 S: Maintained
13727 F: arch/arm/mach-omap2/omap_hwmod.*
13728
13729 OMAP I2C DRIVER
13730 M: Vignesh R <vigneshr@ti.com>
13731 L: linux-omap@vger.kernel.org
13732 L: linux-i2c@vger.kernel.org
13733 S: Maintained
13734 F: Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13735 F: drivers/i2c/busses/i2c-omap.c
13736
13737 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13738 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13739 L: linux-media@vger.kernel.org
13740 S: Maintained
13741 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
13742 F: drivers/media/platform/omap3isp/
13743 F: drivers/staging/media/omap4iss/
13744
13745 OMAP MMC SUPPORT
13746 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13747 L: linux-omap@vger.kernel.org
13748 S: Odd Fixes
13749 F: drivers/mmc/host/omap.c
13750
13751 OMAP POWER MANAGEMENT SUPPORT
13752 M: Kevin Hilman <khilman@kernel.org>
13753 L: linux-omap@vger.kernel.org
13754 S: Maintained
13755 F: arch/arm/*omap*/*pm*
13756 F: drivers/cpufreq/omap-cpufreq.c
13757
13758 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13759 M: Rajendra Nayak <rnayak@codeaurora.org>
13760 M: Paul Walmsley <paul@pwsan.com>
13761 L: linux-omap@vger.kernel.org
13762 S: Maintained
13763 F: arch/arm/mach-omap2/prm*
13764
13765 OMAP RANDOM NUMBER GENERATOR SUPPORT
13766 M: Deepak Saxena <dsaxena@plexity.net>
13767 S: Maintained
13768 F: drivers/char/hw_random/omap-rng.c
13769
13770 OMAP USB SUPPORT
13771 L: linux-usb@vger.kernel.org
13772 L: linux-omap@vger.kernel.org
13773 S: Orphan
13774 F: arch/arm/*omap*/usb*
13775 F: drivers/usb/*/*omap*
13776
13777 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13778 M: Mark Jackson <mpfj@newflow.co.uk>
13779 L: linux-omap@vger.kernel.org
13780 S: Maintained
13781 F: arch/arm/boot/dts/am335x-nano.dts
13782
13783 OMAP1 SUPPORT
13784 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13785 M: Tony Lindgren <tony@atomide.com>
13786 L: linux-omap@vger.kernel.org
13787 S: Maintained
13788 Q: http://patchwork.kernel.org/project/linux-omap/list/
13789 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13790 F: arch/arm/configs/omap1_defconfig
13791 F: arch/arm/mach-omap1/
13792 F: arch/arm/plat-omap/
13793 F: drivers/i2c/busses/i2c-omap.c
13794 F: include/linux/platform_data/ams-delta-fiq.h
13795 F: include/linux/platform_data/i2c-omap.h
13796
13797 OMAP2+ SUPPORT
13798 M: Tony Lindgren <tony@atomide.com>
13799 L: linux-omap@vger.kernel.org
13800 S: Maintained
13801 W: http://www.muru.com/linux/omap/
13802 W: http://linux.omap.com/
13803 Q: http://patchwork.kernel.org/project/linux-omap/list/
13804 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13805 F: arch/arm/configs/omap2plus_defconfig
13806 F: arch/arm/mach-omap2/
13807 F: arch/arm/plat-omap/
13808 F: drivers/bus/ti-sysc.c
13809 F: drivers/i2c/busses/i2c-omap.c
13810 F: drivers/irqchip/irq-omap-intc.c
13811 F: drivers/mfd/*omap*.c
13812 F: drivers/mfd/menelaus.c
13813 F: drivers/mfd/palmas.c
13814 F: drivers/mfd/tps65217.c
13815 F: drivers/mfd/tps65218.c
13816 F: drivers/mfd/tps65910.c
13817 F: drivers/mfd/twl-core.[ch]
13818 F: drivers/mfd/twl4030*.c
13819 F: drivers/mfd/twl6030*.c
13820 F: drivers/mfd/twl6040*.c
13821 F: drivers/regulator/palmas-regulator*.c
13822 F: drivers/regulator/pbias-regulator.c
13823 F: drivers/regulator/tps65217-regulator.c
13824 F: drivers/regulator/tps65218-regulator.c
13825 F: drivers/regulator/tps65910-regulator.c
13826 F: drivers/regulator/twl-regulator.c
13827 F: drivers/regulator/twl6030-regulator.c
13828 F: include/linux/platform_data/i2c-omap.h
13829 F: include/linux/platform_data/ti-sysc.h
13830
13831 OMFS FILESYSTEM
13832 M: Bob Copeland <me@bobcopeland.com>
13833 L: linux-karma-devel@lists.sourceforge.net
13834 S: Maintained
13835 F: Documentation/filesystems/omfs.rst
13836 F: fs/omfs/
13837
13838 OMNIKEY CARDMAN 4000 DRIVER
13839 M: Harald Welte <laforge@gnumonks.org>
13840 S: Maintained
13841 F: drivers/char/pcmcia/cm4000_cs.c
13842 F: include/linux/cm4000_cs.h
13843 F: include/uapi/linux/cm4000_cs.h
13844
13845 OMNIKEY CARDMAN 4040 DRIVER
13846 M: Harald Welte <laforge@gnumonks.org>
13847 S: Maintained
13848 F: drivers/char/pcmcia/cm4040_cs.*
13849
13850 OMNIVISION OV02A10 SENSOR DRIVER
13851 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13852 L: linux-media@vger.kernel.org
13853 S: Maintained
13854 T: git git://linuxtv.org/media_tree.git
13855 F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13856 F: drivers/media/i2c/ov02a10.c
13857
13858 OMNIVISION OV13858 SENSOR DRIVER
13859 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13860 L: linux-media@vger.kernel.org
13861 S: Maintained
13862 T: git git://linuxtv.org/media_tree.git
13863 F: drivers/media/i2c/ov13858.c
13864
13865 OMNIVISION OV2680 SENSOR DRIVER
13866 M: Rui Miguel Silva <rmfrfs@gmail.com>
13867 L: linux-media@vger.kernel.org
13868 S: Maintained
13869 T: git git://linuxtv.org/media_tree.git
13870 F: Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13871 F: drivers/media/i2c/ov2680.c
13872
13873 OMNIVISION OV2685 SENSOR DRIVER
13874 M: Shunqian Zheng <zhengsq@rock-chips.com>
13875 L: linux-media@vger.kernel.org
13876 S: Maintained
13877 T: git git://linuxtv.org/media_tree.git
13878 F: drivers/media/i2c/ov2685.c
13879
13880 OMNIVISION OV2740 SENSOR DRIVER
13881 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13882 R: Shawn Tu <shawnx.tu@intel.com>
13883 R: Bingbu Cao <bingbu.cao@intel.com>
13884 L: linux-media@vger.kernel.org
13885 S: Maintained
13886 T: git git://linuxtv.org/media_tree.git
13887 F: drivers/media/i2c/ov2740.c
13888
13889 OMNIVISION OV5640 SENSOR DRIVER
13890 M: Steve Longerbeam <slongerbeam@gmail.com>
13891 L: linux-media@vger.kernel.org
13892 S: Maintained
13893 T: git git://linuxtv.org/media_tree.git
13894 F: drivers/media/i2c/ov5640.c
13895
13896 OMNIVISION OV5647 SENSOR DRIVER
13897 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
13898 M: Jacopo Mondi <jacopo@jmondi.org>
13899 L: linux-media@vger.kernel.org
13900 S: Maintained
13901 T: git git://linuxtv.org/media_tree.git
13902 F: Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13903 F: drivers/media/i2c/ov5647.c
13904
13905 OMNIVISION OV5670 SENSOR DRIVER
13906 M: Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13907 M: Hyungwoo Yang <hyungwoo.yang@intel.com>
13908 L: linux-media@vger.kernel.org
13909 S: Maintained
13910 T: git git://linuxtv.org/media_tree.git
13911 F: drivers/media/i2c/ov5670.c
13912
13913 OMNIVISION OV5675 SENSOR DRIVER
13914 M: Shawn Tu <shawnx.tu@intel.com>
13915 L: linux-media@vger.kernel.org
13916 S: Maintained
13917 T: git git://linuxtv.org/media_tree.git
13918 F: drivers/media/i2c/ov5675.c
13919
13920 OMNIVISION OV5695 SENSOR DRIVER
13921 M: Shunqian Zheng <zhengsq@rock-chips.com>
13922 L: linux-media@vger.kernel.org
13923 S: Maintained
13924 T: git git://linuxtv.org/media_tree.git
13925 F: drivers/media/i2c/ov5695.c
13926
13927 OMNIVISION OV7670 SENSOR DRIVER
13928 L: linux-media@vger.kernel.org
13929 S: Orphan
13930 T: git git://linuxtv.org/media_tree.git
13931 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
13932 F: drivers/media/i2c/ov7670.c
13933
13934 OMNIVISION OV772x SENSOR DRIVER
13935 M: Jacopo Mondi <jacopo@jmondi.org>
13936 L: linux-media@vger.kernel.org
13937 S: Odd fixes
13938 T: git git://linuxtv.org/media_tree.git
13939 F: Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13940 F: drivers/media/i2c/ov772x.c
13941 F: include/media/i2c/ov772x.h
13942
13943 OMNIVISION OV7740 SENSOR DRIVER
13944 M: Wenyou Yang <wenyou.yang@microchip.com>
13945 L: linux-media@vger.kernel.org
13946 S: Maintained
13947 T: git git://linuxtv.org/media_tree.git
13948 F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
13949 F: drivers/media/i2c/ov7740.c
13950
13951 OMNIVISION OV8856 SENSOR DRIVER
13952 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13953 L: linux-media@vger.kernel.org
13954 S: Maintained
13955 T: git git://linuxtv.org/media_tree.git
13956 F: Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13957 F: drivers/media/i2c/ov8856.c
13958
13959 OMNIVISION OV9282 SENSOR DRIVER
13960 M: Paul J. Murphy <paul.j.murphy@intel.com>
13961 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
13962 L: linux-media@vger.kernel.org
13963 S: Maintained
13964 T: git git://linuxtv.org/media_tree.git
13965 F: Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
13966 F: drivers/media/i2c/ov9282.c
13967
13968 OMNIVISION OV9640 SENSOR DRIVER
13969 M: Petr Cvek <petrcvekcz@gmail.com>
13970 L: linux-media@vger.kernel.org
13971 S: Maintained
13972 F: drivers/media/i2c/ov9640.*
13973
13974 OMNIVISION OV9650 SENSOR DRIVER
13975 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13976 R: Akinobu Mita <akinobu.mita@gmail.com>
13977 R: Sylwester Nawrocki <s.nawrocki@samsung.com>
13978 L: linux-media@vger.kernel.org
13979 S: Maintained
13980 T: git git://linuxtv.org/media_tree.git
13981 F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
13982 F: drivers/media/i2c/ov9650.c
13983
13984 OMNIVISION OV9734 SENSOR DRIVER
13985 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13986 R: Bingbu Cao <bingbu.cao@intel.com>
13987 L: linux-media@vger.kernel.org
13988 S: Maintained
13989 T: git git://linuxtv.org/media_tree.git
13990 F: drivers/media/i2c/ov9734.c
13991
13992 ONENAND FLASH DRIVER
13993 M: Kyungmin Park <kyungmin.park@samsung.com>
13994 L: linux-mtd@lists.infradead.org
13995 S: Maintained
13996 F: drivers/mtd/nand/onenand/
13997 F: include/linux/mtd/onenand*.h
13998
13999 ONION OMEGA2+ BOARD
14000 M: Harvey Hunt <harveyhuntnexus@gmail.com>
14001 L: linux-mips@vger.kernel.org
14002 S: Maintained
14003 F: arch/mips/boot/dts/ralink/omega2p.dts
14004
14005 OP-TEE DRIVER
14006 M: Jens Wiklander <jens.wiklander@linaro.org>
14007 L: op-tee@lists.trustedfirmware.org
14008 S: Maintained
14009 F: Documentation/ABI/testing/sysfs-bus-optee-devices
14010 F: drivers/tee/optee/
14011
14012 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14013 M: Sumit Garg <sumit.garg@linaro.org>
14014 L: op-tee@lists.trustedfirmware.org
14015 S: Maintained
14016 F: drivers/char/hw_random/optee-rng.c
14017
14018 OPA-VNIC DRIVER
14019 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14020 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14021 L: linux-rdma@vger.kernel.org
14022 S: Supported
14023 F: drivers/infiniband/ulp/opa_vnic
14024
14025 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14026 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14027 M: Frank Rowand <frowand.list@gmail.com>
14028 L: devicetree@vger.kernel.org
14029 S: Maintained
14030 F: Documentation/devicetree/dynamic-resolution-notes.rst
14031 F: Documentation/devicetree/overlay-notes.rst
14032 F: drivers/of/overlay.c
14033 F: drivers/of/resolver.c
14034 K: of_overlay_notifier_
14035
14036 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14037 M: Rob Herring <robh+dt@kernel.org>
14038 M: Frank Rowand <frowand.list@gmail.com>
14039 L: devicetree@vger.kernel.org
14040 S: Maintained
14041 W: http://www.devicetree.org/
14042 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14043 F: Documentation/ABI/testing/sysfs-firmware-ofw
14044 F: drivers/of/
14045 F: include/linux/of*.h
14046 F: scripts/dtc/
14047
14048 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14049 M: Rob Herring <robh+dt@kernel.org>
14050 L: devicetree@vger.kernel.org
14051 S: Maintained
14052 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14053 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14054 F: Documentation/devicetree/
14055 F: arch/*/boot/dts/
14056 F: include/dt-bindings/
14057
14058 OPENCOMPUTE PTP CLOCK DRIVER
14059 M: Jonathan Lemon <jonathan.lemon@gmail.com>
14060 L: netdev@vger.kernel.org
14061 S: Maintained
14062 F: drivers/ptp/ptp_ocp.c
14063
14064 OPENCORES I2C BUS DRIVER
14065 M: Peter Korsgaard <peter@korsgaard.com>
14066 M: Andrew Lunn <andrew@lunn.ch>
14067 L: linux-i2c@vger.kernel.org
14068 S: Maintained
14069 F: Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14070 F: Documentation/i2c/busses/i2c-ocores.rst
14071 F: drivers/i2c/busses/i2c-ocores.c
14072 F: include/linux/platform_data/i2c-ocores.h
14073
14074 OPENRISC ARCHITECTURE
14075 M: Jonas Bonn <jonas@southpole.se>
14076 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14077 M: Stafford Horne <shorne@gmail.com>
14078 L: openrisc@lists.librecores.org
14079 S: Maintained
14080 W: http://openrisc.io
14081 T: git git://github.com/openrisc/linux.git
14082 F: Documentation/devicetree/bindings/openrisc/
14083 F: Documentation/openrisc/
14084 F: arch/openrisc/
14085 F: drivers/irqchip/irq-ompic.c
14086 F: drivers/irqchip/irq-or1k-*
14087
14088 OPENVSWITCH
14089 M: Pravin B Shelar <pshelar@ovn.org>
14090 L: netdev@vger.kernel.org
14091 L: dev@openvswitch.org
14092 S: Maintained
14093 W: http://openvswitch.org
14094 F: include/uapi/linux/openvswitch.h
14095 F: net/openvswitch/
14096
14097 OPERATING PERFORMANCE POINTS (OPP)
14098 M: Viresh Kumar <vireshk@kernel.org>
14099 M: Nishanth Menon <nm@ti.com>
14100 M: Stephen Boyd <sboyd@kernel.org>
14101 L: linux-pm@vger.kernel.org
14102 S: Maintained
14103 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14104 F: Documentation/devicetree/bindings/opp/
14105 F: Documentation/power/opp.rst
14106 F: drivers/opp/
14107 F: include/linux/pm_opp.h
14108
14109 OPL4 DRIVER
14110 M: Clemens Ladisch <clemens@ladisch.de>
14111 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14112 S: Maintained
14113 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14114 F: sound/drivers/opl4/
14115
14116 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14117 M: Mark Fasheh <mark@fasheh.com>
14118 M: Joel Becker <jlbec@evilplan.org>
14119 M: Joseph Qi <joseph.qi@linux.alibaba.com>
14120 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14121 S: Supported
14122 W: http://ocfs2.wiki.kernel.org
14123 F: Documentation/filesystems/dlmfs.rst
14124 F: Documentation/filesystems/ocfs2.rst
14125 F: fs/ocfs2/
14126
14127 ORANGEFS FILESYSTEM
14128 M: Mike Marshall <hubcap@omnibond.com>
14129 R: Martin Brandenburg <martin@omnibond.com>
14130 L: devel@lists.orangefs.org
14131 S: Supported
14132 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14133 F: Documentation/filesystems/orangefs.rst
14134 F: fs/orangefs/
14135
14136 ORINOCO DRIVER
14137 L: linux-wireless@vger.kernel.org
14138 S: Orphan
14139 W: https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14140 W: http://www.nongnu.org/orinoco/
14141 F: drivers/net/wireless/intersil/orinoco/
14142
14143 OV2659 OMNIVISION SENSOR DRIVER
14144 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14145 L: linux-media@vger.kernel.org
14146 S: Maintained
14147 W: https://linuxtv.org
14148 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14149 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14150 F: drivers/media/i2c/ov2659.c
14151 F: include/media/i2c/ov2659.h
14152
14153 OVERLAY FILESYSTEM
14154 M: Miklos Szeredi <miklos@szeredi.hu>
14155 L: linux-unionfs@vger.kernel.org
14156 S: Supported
14157 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14158 F: Documentation/filesystems/overlayfs.rst
14159 F: fs/overlayfs/
14160
14161 P54 WIRELESS DRIVER
14162 M: Christian Lamparter <chunkeey@googlemail.com>
14163 L: linux-wireless@vger.kernel.org
14164 S: Maintained
14165 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
14166 F: drivers/net/wireless/intersil/p54/
14167
14168 PACKING
14169 M: Vladimir Oltean <olteanv@gmail.com>
14170 L: netdev@vger.kernel.org
14171 S: Supported
14172 F: Documentation/core-api/packing.rst
14173 F: include/linux/packing.h
14174 F: lib/packing.c
14175
14176 PADATA PARALLEL EXECUTION MECHANISM
14177 M: Steffen Klassert <steffen.klassert@secunet.com>
14178 M: Daniel Jordan <daniel.m.jordan@oracle.com>
14179 L: linux-crypto@vger.kernel.org
14180 L: linux-kernel@vger.kernel.org
14181 S: Maintained
14182 F: Documentation/core-api/padata.rst
14183 F: include/linux/padata.h
14184 F: kernel/padata.c
14185
14186 PAGE POOL
14187 M: Jesper Dangaard Brouer <hawk@kernel.org>
14188 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
14189 L: netdev@vger.kernel.org
14190 S: Supported
14191 F: Documentation/networking/page_pool.rst
14192 F: include/net/page_pool.h
14193 F: include/trace/events/page_pool.h
14194 F: net/core/page_pool.c
14195
14196 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14197 M: Kenneth Chan <kenneth.t.chan@gmail.com>
14198 L: platform-driver-x86@vger.kernel.org
14199 S: Maintained
14200 F: drivers/platform/x86/panasonic-laptop.c
14201
14202 PARALLAX PING IIO SENSOR DRIVER
14203 M: Andreas Klinger <ak@it-klinger.de>
14204 L: linux-iio@vger.kernel.org
14205 S: Maintained
14206 F: Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14207 F: drivers/iio/proximity/ping.c
14208
14209 PARALLEL LCD/KEYPAD PANEL DRIVER
14210 M: Willy Tarreau <willy@haproxy.com>
14211 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14212 S: Odd Fixes
14213 F: Documentation/admin-guide/lcd-panel-cgram.rst
14214 F: drivers/auxdisplay/panel.c
14215
14216 PARALLEL PORT SUBSYSTEM
14217 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14218 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14219 L: linux-parport@lists.infradead.org (subscribers-only)
14220 S: Maintained
14221 F: Documentation/driver-api/parport*.rst
14222 F: drivers/char/ppdev.c
14223 F: drivers/parport/
14224 F: include/linux/parport*.h
14225 F: include/uapi/linux/ppdev.h
14226
14227 PARAVIRT_OPS INTERFACE
14228 M: Juergen Gross <jgross@suse.com>
14229 M: Deep Shah <sdeep@vmware.com>
14230 M: "VMware, Inc." <pv-drivers@vmware.com>
14231 L: virtualization@lists.linux-foundation.org
14232 S: Supported
14233 F: Documentation/virt/paravirt_ops.rst
14234 F: arch/*/include/asm/paravirt*.h
14235 F: arch/*/kernel/paravirt*
14236 F: include/linux/hypervisor.h
14237
14238 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14239 M: Tim Waugh <tim@cyberelk.net>
14240 L: linux-parport@lists.infradead.org (subscribers-only)
14241 S: Maintained
14242 F: Documentation/admin-guide/blockdev/paride.rst
14243 F: drivers/block/paride/
14244
14245 PARISC ARCHITECTURE
14246 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14247 M: Helge Deller <deller@gmx.de>
14248 L: linux-parisc@vger.kernel.org
14249 S: Maintained
14250 W: https://parisc.wiki.kernel.org
14251 Q: http://patchwork.kernel.org/project/linux-parisc/list/
14252 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14253 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14254 F: Documentation/parisc/
14255 F: arch/parisc/
14256 F: drivers/char/agp/parisc-agp.c
14257 F: drivers/input/misc/hp_sdc_rtc.c
14258 F: drivers/input/serio/gscps2.c
14259 F: drivers/input/serio/hp_sdc*
14260 F: drivers/parisc/
14261 F: drivers/parport/parport_gsc.*
14262 F: drivers/tty/serial/8250/8250_gsc.c
14263 F: drivers/video/console/sti*
14264 F: drivers/video/fbdev/sti*
14265 F: drivers/video/logo/logo_parisc*
14266 F: include/linux/hp_sdc.h
14267
14268 PARMAN
14269 M: Jiri Pirko <jiri@nvidia.com>
14270 L: netdev@vger.kernel.org
14271 S: Supported
14272 F: include/linux/parman.h
14273 F: lib/parman.c
14274 F: lib/test_parman.c
14275
14276 PC ENGINES APU BOARD DRIVER
14277 M: Enrico Weigelt, metux IT consult <info@metux.net>
14278 S: Maintained
14279 F: drivers/platform/x86/pcengines-apuv2.c
14280
14281 PC87360 HARDWARE MONITORING DRIVER
14282 M: Jim Cromie <jim.cromie@gmail.com>
14283 L: linux-hwmon@vger.kernel.org
14284 S: Maintained
14285 F: Documentation/hwmon/pc87360.rst
14286 F: drivers/hwmon/pc87360.c
14287
14288 PC8736x GPIO DRIVER
14289 M: Jim Cromie <jim.cromie@gmail.com>
14290 S: Maintained
14291 F: drivers/char/pc8736x_gpio.c
14292
14293 PC87427 HARDWARE MONITORING DRIVER
14294 M: Jean Delvare <jdelvare@suse.com>
14295 L: linux-hwmon@vger.kernel.org
14296 S: Maintained
14297 F: Documentation/hwmon/pc87427.rst
14298 F: drivers/hwmon/pc87427.c
14299
14300 PCA9532 LED DRIVER
14301 M: Riku Voipio <riku.voipio@iki.fi>
14302 S: Maintained
14303 F: drivers/leds/leds-pca9532.c
14304 F: include/linux/leds-pca9532.h
14305
14306 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14307 M: Guenter Roeck <linux@roeck-us.net>
14308 L: linux-i2c@vger.kernel.org
14309 S: Maintained
14310 F: drivers/i2c/muxes/i2c-mux-pca9541.c
14311
14312 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14313 M: Khalid Aziz <khalid@gonehiking.org>
14314 S: Maintained
14315 F: drivers/firmware/pcdp.*
14316
14317 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14318 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14319 M: Pali Rohár <pali@kernel.org>
14320 L: linux-pci@vger.kernel.org
14321 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14322 S: Maintained
14323 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
14324 F: drivers/pci/controller/pci-aardvark.c
14325
14326 PCI DRIVER FOR ALTERA PCIE IP
14327 M: Joyce Ooi <joyce.ooi@intel.com>
14328 L: linux-pci@vger.kernel.org
14329 S: Supported
14330 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
14331 F: drivers/pci/controller/pcie-altera.c
14332
14333 PCI DRIVER FOR APPLIEDMICRO XGENE
14334 M: Toan Le <toan@os.amperecomputing.com>
14335 L: linux-pci@vger.kernel.org
14336 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14337 S: Maintained
14338 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
14339 F: drivers/pci/controller/pci-xgene.c
14340
14341 PCI DRIVER FOR ARM VERSATILE PLATFORM
14342 M: Rob Herring <robh@kernel.org>
14343 L: linux-pci@vger.kernel.org
14344 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14345 S: Maintained
14346 F: Documentation/devicetree/bindings/pci/versatile.yaml
14347 F: drivers/pci/controller/pci-versatile.c
14348
14349 PCI DRIVER FOR ARMADA 8K
14350 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14351 L: linux-pci@vger.kernel.org
14352 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14353 S: Maintained
14354 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
14355 F: drivers/pci/controller/dwc/pcie-armada8k.c
14356
14357 PCI DRIVER FOR CADENCE PCIE IP
14358 M: Tom Joseph <tjoseph@cadence.com>
14359 L: linux-pci@vger.kernel.org
14360 S: Maintained
14361 F: Documentation/devicetree/bindings/pci/cdns,*
14362 F: drivers/pci/controller/cadence/
14363
14364 PCI DRIVER FOR FREESCALE LAYERSCAPE
14365 M: Minghuan Lian <minghuan.Lian@nxp.com>
14366 M: Mingkai Hu <mingkai.hu@nxp.com>
14367 M: Roy Zang <roy.zang@nxp.com>
14368 L: linuxppc-dev@lists.ozlabs.org
14369 L: linux-pci@vger.kernel.org
14370 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14371 S: Maintained
14372 F: drivers/pci/controller/dwc/*layerscape*
14373
14374 PCI DRIVER FOR GENERIC OF HOSTS
14375 M: Will Deacon <will@kernel.org>
14376 L: linux-pci@vger.kernel.org
14377 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14378 S: Maintained
14379 F: Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14380 F: drivers/pci/controller/pci-host-common.c
14381 F: drivers/pci/controller/pci-host-generic.c
14382
14383 PCI DRIVER FOR IMX6
14384 M: Richard Zhu <hongxing.zhu@nxp.com>
14385 M: Lucas Stach <l.stach@pengutronix.de>
14386 L: linux-pci@vger.kernel.org
14387 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14388 S: Maintained
14389 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14390 F: drivers/pci/controller/dwc/*imx6*
14391
14392 PCI DRIVER FOR FU740
14393 M: Paul Walmsley <paul.walmsley@sifive.com>
14394 M: Greentime Hu <greentime.hu@sifive.com>
14395 L: linux-pci@vger.kernel.org
14396 S: Maintained
14397 F: Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14398 F: drivers/pci/controller/dwc/pcie-fu740.c
14399
14400 PCI DRIVER FOR INTEL IXP4XX
14401 M: Linus Walleij <linus.walleij@linaro.org>
14402 S: Maintained
14403 F: Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14404 F: drivers/pci/controller/pci-ixp4xx.c
14405
14406 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14407 M: Nirmal Patel <nirmal.patel@linux.intel.com>
14408 R: Jonathan Derrick <jonathan.derrick@linux.dev>
14409 L: linux-pci@vger.kernel.org
14410 S: Supported
14411 F: drivers/pci/controller/vmd.c
14412
14413 PCI DRIVER FOR MICROSEMI SWITCHTEC
14414 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14415 M: Logan Gunthorpe <logang@deltatee.com>
14416 L: linux-pci@vger.kernel.org
14417 S: Maintained
14418 F: Documentation/ABI/testing/sysfs-class-switchtec
14419 F: Documentation/driver-api/switchtec.rst
14420 F: drivers/ntb/hw/mscc/
14421 F: drivers/pci/switch/switchtec*
14422 F: include/linux/switchtec.h
14423 F: include/uapi/linux/switchtec_ioctl.h
14424
14425 PCI DRIVER FOR MOBIVEIL PCIE IP
14426 M: Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14427 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14428 L: linux-pci@vger.kernel.org
14429 S: Supported
14430 F: Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14431 F: drivers/pci/controller/mobiveil/pcie-mobiveil*
14432
14433 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14434 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14435 L: linux-pci@vger.kernel.org
14436 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14437 S: Maintained
14438 F: drivers/pci/controller/*mvebu*
14439
14440 PCI DRIVER FOR NVIDIA TEGRA
14441 M: Thierry Reding <thierry.reding@gmail.com>
14442 L: linux-tegra@vger.kernel.org
14443 L: linux-pci@vger.kernel.org
14444 S: Supported
14445 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14446 F: drivers/pci/controller/pci-tegra.c
14447
14448 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14449 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14450 L: linux-pci@vger.kernel.org
14451 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14452 S: Maintained
14453 F: Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14454 F: drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14455
14456 PCI DRIVER FOR RENESAS R-CAR
14457 M: Marek Vasut <marek.vasut+renesas@gmail.com>
14458 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14459 L: linux-pci@vger.kernel.org
14460 L: linux-renesas-soc@vger.kernel.org
14461 S: Maintained
14462 F: Documentation/devicetree/bindings/pci/*rcar*
14463 F: drivers/pci/controller/*rcar*
14464
14465 PCI DRIVER FOR SAMSUNG EXYNOS
14466 M: Jingoo Han <jingoohan1@gmail.com>
14467 L: linux-pci@vger.kernel.org
14468 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14469 L: linux-samsung-soc@vger.kernel.org
14470 S: Maintained
14471 F: drivers/pci/controller/dwc/pci-exynos.c
14472
14473 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14474 M: Jingoo Han <jingoohan1@gmail.com>
14475 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14476 L: linux-pci@vger.kernel.org
14477 S: Maintained
14478 F: Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14479 F: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14480 F: drivers/pci/controller/dwc/*designware*
14481
14482 PCI DRIVER FOR TI DRA7XX/J721E
14483 M: Kishon Vijay Abraham I <kishon@ti.com>
14484 L: linux-omap@vger.kernel.org
14485 L: linux-pci@vger.kernel.org
14486 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14487 S: Supported
14488 F: Documentation/devicetree/bindings/pci/ti-pci.txt
14489 F: drivers/pci/controller/cadence/pci-j721e.c
14490 F: drivers/pci/controller/dwc/pci-dra7xx.c
14491
14492 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14493 M: Linus Walleij <linus.walleij@linaro.org>
14494 L: linux-pci@vger.kernel.org
14495 S: Maintained
14496 F: Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14497 F: drivers/pci/controller/pci-v3-semi.c
14498
14499 PCI ENDPOINT SUBSYSTEM
14500 M: Kishon Vijay Abraham I <kishon@ti.com>
14501 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14502 R: Krzysztof Wilczyński <kw@linux.com>
14503 L: linux-pci@vger.kernel.org
14504 S: Supported
14505 F: Documentation/PCI/endpoint/*
14506 F: Documentation/misc-devices/pci-endpoint-test.rst
14507 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14508 F: drivers/misc/pci_endpoint_test.c
14509 F: drivers/pci/endpoint/
14510 F: tools/pci/
14511
14512 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14513 M: Russell Currey <ruscur@russell.cc>
14514 M: Oliver O'Halloran <oohall@gmail.com>
14515 L: linuxppc-dev@lists.ozlabs.org
14516 S: Supported
14517 F: Documentation/PCI/pci-error-recovery.rst
14518 F: Documentation/powerpc/eeh-pci-error-recovery.rst
14519 F: arch/powerpc/include/*/eeh*.h
14520 F: arch/powerpc/kernel/eeh*.c
14521 F: arch/powerpc/platforms/*/eeh*.c
14522 F: drivers/pci/pcie/aer.c
14523 F: drivers/pci/pcie/dpc.c
14524 F: drivers/pci/pcie/err.c
14525
14526 PCI ERROR RECOVERY
14527 M: Linas Vepstas <linasvepstas@gmail.com>
14528 L: linux-pci@vger.kernel.org
14529 S: Supported
14530 F: Documentation/PCI/pci-error-recovery.rst
14531
14532 PCI MSI DRIVER FOR ALTERA MSI IP
14533 M: Joyce Ooi <joyce.ooi@intel.com>
14534 L: linux-pci@vger.kernel.org
14535 S: Supported
14536 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14537 F: drivers/pci/controller/pcie-altera-msi.c
14538
14539 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14540 M: Toan Le <toan@os.amperecomputing.com>
14541 L: linux-pci@vger.kernel.org
14542 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14543 S: Maintained
14544 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14545 F: drivers/pci/controller/pci-xgene-msi.c
14546
14547 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14548 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14549 R: Rob Herring <robh@kernel.org>
14550 R: Krzysztof Wilczyński <kw@linux.com>
14551 L: linux-pci@vger.kernel.org
14552 S: Supported
14553 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14554 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14555 F: drivers/pci/controller/
14556
14557 PCI SUBSYSTEM
14558 M: Bjorn Helgaas <bhelgaas@google.com>
14559 L: linux-pci@vger.kernel.org
14560 S: Supported
14561 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14562 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14563 F: Documentation/PCI/
14564 F: Documentation/devicetree/bindings/pci/
14565 F: arch/x86/kernel/early-quirks.c
14566 F: arch/x86/kernel/quirks.c
14567 F: arch/x86/pci/
14568 F: drivers/acpi/pci*
14569 F: drivers/pci/
14570 F: include/asm-generic/pci*
14571 F: include/linux/of_pci.h
14572 F: include/linux/pci*
14573 F: include/uapi/linux/pci*
14574 F: lib/pci*
14575
14576 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14577 M: Jonathan Chocron <jonnyc@amazon.com>
14578 L: linux-pci@vger.kernel.org
14579 S: Maintained
14580 F: Documentation/devicetree/bindings/pci/pcie-al.txt
14581 F: drivers/pci/controller/dwc/pcie-al.c
14582
14583 PCIE DRIVER FOR AMLOGIC MESON
14584 M: Yue Wang <yue.wang@Amlogic.com>
14585 L: linux-pci@vger.kernel.org
14586 L: linux-amlogic@lists.infradead.org
14587 S: Maintained
14588 F: drivers/pci/controller/dwc/pci-meson.c
14589
14590 PCIE DRIVER FOR AXIS ARTPEC
14591 M: Jesper Nilsson <jesper.nilsson@axis.com>
14592 L: linux-arm-kernel@axis.com
14593 L: linux-pci@vger.kernel.org
14594 S: Maintained
14595 F: Documentation/devicetree/bindings/pci/axis,artpec*
14596 F: drivers/pci/controller/dwc/*artpec*
14597
14598 PCIE DRIVER FOR CAVIUM THUNDERX
14599 M: Robert Richter <rric@kernel.org>
14600 L: linux-pci@vger.kernel.org
14601 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14602 S: Odd Fixes
14603 F: drivers/pci/controller/pci-thunder-*
14604
14605 PCIE DRIVER FOR HISILICON
14606 M: Zhou Wang <wangzhou1@hisilicon.com>
14607 L: linux-pci@vger.kernel.org
14608 S: Maintained
14609 F: drivers/pci/controller/dwc/pcie-hisi.c
14610
14611 PCIE DRIVER FOR HISILICON KIRIN
14612 M: Xiaowei Song <songxiaowei@hisilicon.com>
14613 M: Binghui Wang <wangbinghui@hisilicon.com>
14614 L: linux-pci@vger.kernel.org
14615 S: Maintained
14616 F: Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14617 F: drivers/pci/controller/dwc/pcie-kirin.c
14618
14619 PCIE DRIVER FOR HISILICON STB
14620 M: Shawn Guo <shawn.guo@linaro.org>
14621 L: linux-pci@vger.kernel.org
14622 S: Maintained
14623 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14624 F: drivers/pci/controller/dwc/pcie-histb.c
14625
14626 PCIE DRIVER FOR INTEL KEEM BAY
14627 M: Srikanth Thokala <srikanth.thokala@intel.com>
14628 L: linux-pci@vger.kernel.org
14629 S: Supported
14630 F: Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14631 F: drivers/pci/controller/dwc/pcie-keembay.c
14632
14633 PCIE DRIVER FOR INTEL LGM GW SOC
14634 M: Rahul Tanwar <rtanwar@maxlinear.com>
14635 L: linux-pci@vger.kernel.org
14636 S: Maintained
14637 F: Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14638 F: drivers/pci/controller/dwc/pcie-intel-gw.c
14639
14640 PCIE DRIVER FOR MEDIATEK
14641 M: Ryder Lee <ryder.lee@mediatek.com>
14642 M: Jianjun Wang <jianjun.wang@mediatek.com>
14643 L: linux-pci@vger.kernel.org
14644 L: linux-mediatek@lists.infradead.org
14645 S: Supported
14646 F: Documentation/devicetree/bindings/pci/mediatek*
14647 F: drivers/pci/controller/*mediatek*
14648
14649 PCIE DRIVER FOR MICROCHIP
14650 M: Daire McNamara <daire.mcnamara@microchip.com>
14651 L: linux-pci@vger.kernel.org
14652 S: Supported
14653 F: Documentation/devicetree/bindings/pci/microchip*
14654 F: drivers/pci/controller/*microchip*
14655
14656 PCIE DRIVER FOR QUALCOMM MSM
14657 M: Stanimir Varbanov <svarbanov@mm-sol.com>
14658 L: linux-pci@vger.kernel.org
14659 L: linux-arm-msm@vger.kernel.org
14660 S: Maintained
14661 F: drivers/pci/controller/dwc/*qcom*
14662
14663 PCIE DRIVER FOR ROCKCHIP
14664 M: Shawn Lin <shawn.lin@rock-chips.com>
14665 L: linux-pci@vger.kernel.org
14666 L: linux-rockchip@lists.infradead.org
14667 S: Maintained
14668 F: Documentation/devicetree/bindings/pci/rockchip-pcie*
14669 F: drivers/pci/controller/pcie-rockchip*
14670
14671 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14672 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14673 L: linux-pci@vger.kernel.org
14674 S: Maintained
14675 F: Documentation/devicetree/bindings/pci/uniphier-pcie*
14676 F: drivers/pci/controller/dwc/pcie-uniphier*
14677
14678 PCIE DRIVER FOR ST SPEAR13XX
14679 M: Pratyush Anand <pratyush.anand@gmail.com>
14680 L: linux-pci@vger.kernel.org
14681 S: Maintained
14682 F: drivers/pci/controller/dwc/*spear*
14683
14684 PCMCIA SUBSYSTEM
14685 M: Dominik Brodowski <linux@dominikbrodowski.net>
14686 S: Odd Fixes
14687 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14688 F: Documentation/pcmcia/
14689 F: drivers/pcmcia/
14690 F: include/pcmcia/
14691 F: tools/pcmcia/
14692
14693 PCNET32 NETWORK DRIVER
14694 M: Don Fry <pcnet32@frontier.com>
14695 L: netdev@vger.kernel.org
14696 S: Maintained
14697 F: drivers/net/ethernet/amd/pcnet32.c
14698
14699 PCRYPT PARALLEL CRYPTO ENGINE
14700 M: Steffen Klassert <steffen.klassert@secunet.com>
14701 L: linux-crypto@vger.kernel.org
14702 S: Maintained
14703 F: crypto/pcrypt.c
14704 F: include/crypto/pcrypt.h
14705
14706 PEAQ WMI HOTKEYS DRIVER
14707 M: Hans de Goede <hdegoede@redhat.com>
14708 L: platform-driver-x86@vger.kernel.org
14709 S: Maintained
14710 F: drivers/platform/x86/peaq-wmi.c
14711
14712 PENSANDO ETHERNET DRIVERS
14713 M: Shannon Nelson <snelson@pensando.io>
14714 M: drivers@pensando.io
14715 L: netdev@vger.kernel.org
14716 S: Supported
14717 F: Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14718 F: drivers/net/ethernet/pensando/
14719
14720 PER-CPU MEMORY ALLOCATOR
14721 M: Dennis Zhou <dennis@kernel.org>
14722 M: Tejun Heo <tj@kernel.org>
14723 M: Christoph Lameter <cl@linux.com>
14724 L: linux-mm@kvack.org
14725 S: Maintained
14726 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14727 F: arch/*/include/asm/percpu.h
14728 F: include/linux/percpu*.h
14729 F: lib/percpu*.c
14730 F: mm/percpu*.c
14731
14732 PER-TASK DELAY ACCOUNTING
14733 M: Balbir Singh <bsingharora@gmail.com>
14734 S: Maintained
14735 F: include/linux/delayacct.h
14736 F: kernel/delayacct.c
14737
14738 PERFORMANCE EVENTS SUBSYSTEM
14739 M: Peter Zijlstra <peterz@infradead.org>
14740 M: Ingo Molnar <mingo@redhat.com>
14741 M: Arnaldo Carvalho de Melo <acme@kernel.org>
14742 R: Mark Rutland <mark.rutland@arm.com>
14743 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
14744 R: Jiri Olsa <jolsa@redhat.com>
14745 R: Namhyung Kim <namhyung@kernel.org>
14746 L: linux-perf-users@vger.kernel.org
14747 L: linux-kernel@vger.kernel.org
14748 S: Supported
14749 W: https://perf.wiki.kernel.org/
14750 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14751 F: arch/*/events/*
14752 F: arch/*/events/*/*
14753 F: arch/*/include/asm/perf_event.h
14754 F: arch/*/kernel/*/*/perf_event*.c
14755 F: arch/*/kernel/*/perf_event*.c
14756 F: arch/*/kernel/perf_callchain.c
14757 F: arch/*/kernel/perf_event*.c
14758 F: include/linux/perf_event.h
14759 F: include/uapi/linux/perf_event.h
14760 F: kernel/events/*
14761 F: tools/lib/perf/
14762 F: tools/perf/
14763
14764 PERFORMANCE EVENTS TOOLING ARM64
14765 R: John Garry <john.garry@huawei.com>
14766 R: Will Deacon <will@kernel.org>
14767 R: Mathieu Poirier <mathieu.poirier@linaro.org>
14768 R: Leo Yan <leo.yan@linaro.org>
14769 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14770 S: Supported
14771 F: tools/build/feature/test-libopencsd.c
14772 F: tools/perf/arch/arm*/
14773 F: tools/perf/pmu-events/arch/arm64/
14774 F: tools/perf/util/arm-spe*
14775 F: tools/perf/util/cs-etm*
14776
14777 PERSONALITY HANDLING
14778 M: Christoph Hellwig <hch@infradead.org>
14779 L: linux-abi-devel@lists.sourceforge.net
14780 S: Maintained
14781 F: include/linux/personality.h
14782 F: include/uapi/linux/personality.h
14783
14784 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14785 M: Marcus Folkesson <marcus.folkesson@gmail.com>
14786 L: linux-input@vger.kernel.org
14787 S: Maintained
14788 F: Documentation/input/devices/pxrc.rst
14789 F: drivers/input/joystick/pxrc.c
14790
14791 PHONET PROTOCOL
14792 M: Remi Denis-Courmont <courmisch@gmail.com>
14793 S: Supported
14794 F: Documentation/networking/phonet.rst
14795 F: include/linux/phonet.h
14796 F: include/net/phonet/
14797 F: include/uapi/linux/phonet.h
14798 F: net/phonet/
14799
14800 PHRAM MTD DRIVER
14801 M: Joern Engel <joern@lazybastard.org>
14802 L: linux-mtd@lists.infradead.org
14803 S: Maintained
14804 F: drivers/mtd/devices/phram.c
14805
14806 PICOLCD HID DRIVER
14807 M: Bruno Prémont <bonbons@linux-vserver.org>
14808 L: linux-input@vger.kernel.org
14809 S: Maintained
14810 F: drivers/hid/hid-picolcd*
14811
14812 PIDFD API
14813 M: Christian Brauner <christian@brauner.io>
14814 L: linux-kernel@vger.kernel.org
14815 S: Maintained
14816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14817 F: samples/pidfd/
14818 F: tools/testing/selftests/clone3/
14819 F: tools/testing/selftests/pid_namespace/
14820 F: tools/testing/selftests/pidfd/
14821 K: (?i)pidfd
14822 K: (?i)clone3
14823 K: \b(clone_args|kernel_clone_args)\b
14824
14825 PIN CONTROL SUBSYSTEM
14826 M: Linus Walleij <linus.walleij@linaro.org>
14827 L: linux-gpio@vger.kernel.org
14828 S: Maintained
14829 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14830 F: Documentation/devicetree/bindings/pinctrl/
14831 F: Documentation/driver-api/pin-control.rst
14832 F: drivers/pinctrl/
14833 F: include/linux/pinctrl/
14834
14835 PIN CONTROLLER - AMD
14836 M: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14837 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14838 S: Maintained
14839 F: drivers/pinctrl/pinctrl-amd.c
14840
14841 PIN CONTROLLER - FREESCALE
14842 M: Dong Aisheng <aisheng.dong@nxp.com>
14843 M: Fabio Estevam <festevam@gmail.com>
14844 M: Shawn Guo <shawnguo@kernel.org>
14845 M: Stefan Agner <stefan@agner.ch>
14846 R: Pengutronix Kernel Team <kernel@pengutronix.de>
14847 L: linux-gpio@vger.kernel.org
14848 S: Maintained
14849 F: Documentation/devicetree/bindings/pinctrl/fsl,*
14850 F: drivers/pinctrl/freescale/
14851
14852 PIN CONTROLLER - INTEL
14853 M: Mika Westerberg <mika.westerberg@linux.intel.com>
14854 M: Andy Shevchenko <andy@kernel.org>
14855 S: Maintained
14856 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14857 F: drivers/pinctrl/intel/
14858
14859 PIN CONTROLLER - KEEMBAY
14860 M: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14861 S: Supported
14862 F: drivers/pinctrl/pinctrl-keembay*
14863
14864 PIN CONTROLLER - MEDIATEK
14865 M: Sean Wang <sean.wang@kernel.org>
14866 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14867 S: Maintained
14868 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14869 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14870 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14871 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14872 F: drivers/pinctrl/mediatek/
14873
14874 PIN CONTROLLER - MICROCHIP AT91
14875 M: Ludovic Desroches <ludovic.desroches@microchip.com>
14876 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14877 L: linux-gpio@vger.kernel.org
14878 S: Supported
14879 F: drivers/gpio/gpio-sama5d2-piobu.c
14880 F: drivers/pinctrl/pinctrl-at91*
14881
14882 PIN CONTROLLER - QUALCOMM
14883 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14884 L: linux-arm-msm@vger.kernel.org
14885 S: Maintained
14886 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14887 F: drivers/pinctrl/qcom/
14888
14889 PIN CONTROLLER - RENESAS
14890 M: Geert Uytterhoeven <geert+renesas@glider.be>
14891 L: linux-renesas-soc@vger.kernel.org
14892 S: Supported
14893 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14894 F: Documentation/devicetree/bindings/pinctrl/renesas,*
14895 F: drivers/pinctrl/renesas/
14896
14897 PIN CONTROLLER - SAMSUNG
14898 M: Tomasz Figa <tomasz.figa@gmail.com>
14899 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14900 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14901 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14902 L: linux-samsung-soc@vger.kernel.org
14903 S: Maintained
14904 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
14905 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14906 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14907 F: drivers/pinctrl/samsung/
14908 F: include/dt-bindings/pinctrl/samsung.h
14909
14910 PIN CONTROLLER - SINGLE
14911 M: Tony Lindgren <tony@atomide.com>
14912 M: Haojian Zhuang <haojian.zhuang@linaro.org>
14913 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14914 L: linux-omap@vger.kernel.org
14915 S: Maintained
14916 F: drivers/pinctrl/pinctrl-single.c
14917
14918 PIN CONTROLLER - ST SPEAR
14919 M: Viresh Kumar <vireshk@kernel.org>
14920 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14921 S: Maintained
14922 W: http://www.st.com/spear
14923 F: drivers/pinctrl/spear/
14924
14925 PKTCDVD DRIVER
14926 M: linux-block@vger.kernel.org
14927 S: Orphan
14928 F: drivers/block/pktcdvd.c
14929 F: include/linux/pktcdvd.h
14930 F: include/uapi/linux/pktcdvd.h
14931
14932 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14933 M: Tomasz Duszynski <tduszyns@gmail.com>
14934 S: Maintained
14935 F: Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14936 F: drivers/iio/chemical/pms7003.c
14937
14938 PLDMFW LIBRARY
14939 M: Jacob Keller <jacob.e.keller@intel.com>
14940 S: Maintained
14941 F: Documentation/driver-api/pldmfw/
14942 F: include/linux/pldmfw.h
14943 F: lib/pldmfw/
14944
14945 PLX DMA DRIVER
14946 M: Logan Gunthorpe <logang@deltatee.com>
14947 S: Maintained
14948 F: drivers/dma/plx_dma.c
14949
14950 PM6764TR DRIVER
14951 M: Charles Hsu <hsu.yungteng@gmail.com>
14952 L: linux-hwmon@vger.kernel.org
14953 S: Maintained
14954 F: Documentation/hwmon/pm6764tr.rst
14955 F: drivers/hwmon/pmbus/pm6764tr.c
14956
14957 PM-GRAPH UTILITY
14958 M: "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14959 L: linux-pm@vger.kernel.org
14960 S: Supported
14961 W: https://01.org/pm-graph
14962 B: https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14963 T: git git://github.com/intel/pm-graph
14964 F: tools/power/pm-graph
14965
14966 PMBUS HARDWARE MONITORING DRIVERS
14967 M: Guenter Roeck <linux@roeck-us.net>
14968 L: linux-hwmon@vger.kernel.org
14969 S: Maintained
14970 W: http://hwmon.wiki.kernel.org/
14971 W: http://www.roeck-us.net/linux/drivers/
14972 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14973 F: Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14974 F: Documentation/devicetree/bindings/hwmon/ltc2978.txt
14975 F: Documentation/devicetree/bindings/hwmon/max31785.txt
14976 F: Documentation/hwmon/adm1275.rst
14977 F: Documentation/hwmon/ibm-cffps.rst
14978 F: Documentation/hwmon/ir35221.rst
14979 F: Documentation/hwmon/lm25066.rst
14980 F: Documentation/hwmon/ltc2978.rst
14981 F: Documentation/hwmon/ltc3815.rst
14982 F: Documentation/hwmon/max16064.rst
14983 F: Documentation/hwmon/max20751.rst
14984 F: Documentation/hwmon/max31785.rst
14985 F: Documentation/hwmon/max34440.rst
14986 F: Documentation/hwmon/max8688.rst
14987 F: Documentation/hwmon/pmbus-core.rst
14988 F: Documentation/hwmon/pmbus.rst
14989 F: Documentation/hwmon/tps40422.rst
14990 F: Documentation/hwmon/ucd9000.rst
14991 F: Documentation/hwmon/ucd9200.rst
14992 F: Documentation/hwmon/zl6100.rst
14993 F: drivers/hwmon/pmbus/
14994 F: include/linux/pmbus.h
14995
14996 PMC SIERRA MaxRAID DRIVER
14997 L: linux-scsi@vger.kernel.org
14998 S: Orphan
14999 W: http://www.pmc-sierra.com/
15000 F: drivers/scsi/pmcraid.*
15001
15002 PMC SIERRA PM8001 DRIVER
15003 M: Jack Wang <jinpu.wang@cloud.ionos.com>
15004 L: linux-scsi@vger.kernel.org
15005 S: Supported
15006 F: drivers/scsi/pm8001/
15007
15008 PNI RM3100 IIO DRIVER
15009 M: Song Qiang <songqiang1304521@gmail.com>
15010 L: linux-iio@vger.kernel.org
15011 S: Maintained
15012 F: Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15013 F: drivers/iio/magnetometer/rm3100*
15014
15015 PNP SUPPORT
15016 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15017 L: linux-acpi@vger.kernel.org
15018 S: Maintained
15019 F: drivers/pnp/
15020 F: include/linux/pnp.h
15021
15022 POSIX CLOCKS and TIMERS
15023 M: Thomas Gleixner <tglx@linutronix.de>
15024 L: linux-kernel@vger.kernel.org
15025 S: Maintained
15026 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15027 F: fs/timerfd.c
15028 F: include/linux/time_namespace.h
15029 F: include/linux/timer*
15030 F: kernel/time/*timer*
15031 F: kernel/time/namespace.c
15032
15033 POWER MANAGEMENT CORE
15034 M: "Rafael J. Wysocki" <rafael@kernel.org>
15035 L: linux-pm@vger.kernel.org
15036 S: Supported
15037 B: https://bugzilla.kernel.org
15038 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15039 F: drivers/base/power/
15040 F: drivers/powercap/
15041 F: include/linux/intel_rapl.h
15042 F: include/linux/pm.h
15043 F: include/linux/pm_*
15044 F: include/linux/powercap.h
15045 F: kernel/configs/nopm.config
15046
15047 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15048 M: Daniel Lezcano <daniel.lezcano@kernel.org>
15049 L: linux-pm@vger.kernel.org
15050 S: Supported
15051 B: https://bugzilla.kernel.org
15052 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15053 F: drivers/powercap/dtpm*
15054 F: include/linux/dtpm.h
15055
15056 POWER STATE COORDINATION INTERFACE (PSCI)
15057 M: Mark Rutland <mark.rutland@arm.com>
15058 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15059 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15060 S: Maintained
15061 F: drivers/firmware/psci/
15062 F: include/linux/psci.h
15063 F: include/uapi/linux/psci.h
15064
15065 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15066 M: Sebastian Reichel <sre@kernel.org>
15067 L: linux-pm@vger.kernel.org
15068 S: Maintained
15069 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15070 F: Documentation/ABI/testing/sysfs-class-power
15071 F: Documentation/devicetree/bindings/power/supply/
15072 F: drivers/power/supply/
15073 F: include/linux/power/
15074 F: include/linux/power_supply.h
15075
15076 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15077 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15078 L: linuxppc-dev@lists.ozlabs.org
15079 S: Maintained
15080 F: drivers/char/powernv-op-panel.c
15081
15082 PPP OVER ATM (RFC 2364)
15083 M: Mitchell Blank Jr <mitch@sfgoth.com>
15084 S: Maintained
15085 F: include/uapi/linux/atmppp.h
15086 F: net/atm/pppoatm.c
15087
15088 PPP OVER ETHERNET
15089 M: Michal Ostrowski <mostrows@earthlink.net>
15090 S: Maintained
15091 F: drivers/net/ppp/pppoe.c
15092 F: drivers/net/ppp/pppox.c
15093
15094 PPP OVER L2TP
15095 M: James Chapman <jchapman@katalix.com>
15096 S: Maintained
15097 F: include/linux/if_pppol2tp.h
15098 F: include/uapi/linux/if_pppol2tp.h
15099 F: net/l2tp/l2tp_ppp.c
15100
15101 PPP PROTOCOL DRIVERS AND COMPRESSORS
15102 M: Paul Mackerras <paulus@samba.org>
15103 L: linux-ppp@vger.kernel.org
15104 S: Maintained
15105 F: drivers/net/ppp/ppp_*
15106
15107 PPS SUPPORT
15108 M: Rodolfo Giometti <giometti@enneenne.com>
15109 L: linuxpps@ml.enneenne.com (subscribers-only)
15110 S: Maintained
15111 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
15112 F: Documentation/ABI/testing/sysfs-pps
15113 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
15114 F: Documentation/driver-api/pps.rst
15115 F: drivers/pps/
15116 F: include/linux/pps*.h
15117 F: include/uapi/linux/pps.h
15118
15119 PPTP DRIVER
15120 M: Dmitry Kozlov <xeb@mail.ru>
15121 L: netdev@vger.kernel.org
15122 S: Maintained
15123 W: http://sourceforge.net/projects/accel-pptp
15124 F: drivers/net/ppp/pptp.c
15125
15126 PRESSURE STALL INFORMATION (PSI)
15127 M: Johannes Weiner <hannes@cmpxchg.org>
15128 S: Maintained
15129 F: include/linux/psi*
15130 F: kernel/sched/psi.c
15131
15132 PRINTK
15133 M: Petr Mladek <pmladek@suse.com>
15134 M: Sergey Senozhatsky <senozhatsky@chromium.org>
15135 R: Steven Rostedt <rostedt@goodmis.org>
15136 R: John Ogness <john.ogness@linutronix.de>
15137 S: Maintained
15138 F: include/linux/printk.h
15139 F: kernel/printk/
15140
15141 PRINTK INDEXING
15142 R: Chris Down <chris@chrisdown.name>
15143 S: Maintained
15144 F: kernel/printk/index.c
15145
15146 PROC FILESYSTEM
15147 L: linux-kernel@vger.kernel.org
15148 L: linux-fsdevel@vger.kernel.org
15149 S: Maintained
15150 F: Documentation/filesystems/proc.rst
15151 F: fs/proc/
15152 F: include/linux/proc_fs.h
15153 F: tools/testing/selftests/proc/
15154
15155 PROC SYSCTL
15156 M: Luis Chamberlain <mcgrof@kernel.org>
15157 M: Kees Cook <keescook@chromium.org>
15158 M: Iurii Zaikin <yzaikin@google.com>
15159 L: linux-kernel@vger.kernel.org
15160 L: linux-fsdevel@vger.kernel.org
15161 S: Maintained
15162 F: fs/proc/proc_sysctl.c
15163 F: include/linux/sysctl.h
15164 F: kernel/sysctl-test.c
15165 F: kernel/sysctl.c
15166 F: tools/testing/selftests/sysctl/
15167
15168 PS3 NETWORK SUPPORT
15169 M: Geoff Levand <geoff@infradead.org>
15170 L: netdev@vger.kernel.org
15171 L: linuxppc-dev@lists.ozlabs.org
15172 S: Maintained
15173 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
15174
15175 PS3 PLATFORM SUPPORT
15176 M: Geoff Levand <geoff@infradead.org>
15177 L: linuxppc-dev@lists.ozlabs.org
15178 S: Maintained
15179 F: arch/powerpc/boot/ps3*
15180 F: arch/powerpc/include/asm/lv1call.h
15181 F: arch/powerpc/include/asm/ps3*.h
15182 F: arch/powerpc/platforms/ps3/
15183 F: drivers/*/ps3*
15184 F: drivers/ps3/
15185 F: drivers/rtc/rtc-ps3.c
15186 F: drivers/usb/host/*ps3.c
15187 F: sound/ppc/snd_ps3*
15188
15189 PS3VRAM DRIVER
15190 M: Jim Paris <jim@jtan.com>
15191 M: Geoff Levand <geoff@infradead.org>
15192 L: linuxppc-dev@lists.ozlabs.org
15193 S: Maintained
15194 F: drivers/block/ps3vram.c
15195
15196 PSAMPLE PACKET SAMPLING SUPPORT
15197 M: Yotam Gigi <yotam.gi@gmail.com>
15198 S: Maintained
15199 F: include/net/psample.h
15200 F: include/uapi/linux/psample.h
15201 F: net/psample
15202
15203 PSTORE FILESYSTEM
15204 M: Kees Cook <keescook@chromium.org>
15205 M: Anton Vorontsov <anton@enomsg.org>
15206 M: Colin Cross <ccross@android.com>
15207 M: Tony Luck <tony.luck@intel.com>
15208 S: Maintained
15209 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15210 F: Documentation/admin-guide/ramoops.rst
15211 F: Documentation/admin-guide/pstore-blk.rst
15212 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15213 F: drivers/acpi/apei/erst.c
15214 F: drivers/firmware/efi/efi-pstore.c
15215 F: fs/pstore/
15216 F: include/linux/pstore*
15217 K: \b(pstore|ramoops)
15218
15219 PTP HARDWARE CLOCK SUPPORT
15220 M: Richard Cochran <richardcochran@gmail.com>
15221 L: netdev@vger.kernel.org
15222 S: Maintained
15223 W: http://linuxptp.sourceforge.net/
15224 F: Documentation/ABI/testing/sysfs-ptp
15225 F: Documentation/driver-api/ptp.rst
15226 F: drivers/net/phy/dp83640*
15227 F: drivers/ptp/*
15228 F: include/linux/ptp_cl*
15229
15230 PTP VIRTUAL CLOCK SUPPORT
15231 M: Yangbo Lu <yangbo.lu@nxp.com>
15232 L: netdev@vger.kernel.org
15233 S: Maintained
15234 F: drivers/ptp/ptp_vclock.c
15235 F: net/ethtool/phc_vclocks.c
15236
15237 PTRACE SUPPORT
15238 M: Oleg Nesterov <oleg@redhat.com>
15239 S: Maintained
15240 F: arch/*/*/ptrace*.c
15241 F: arch/*/include/asm/ptrace*.h
15242 F: arch/*/ptrace*.c
15243 F: include/asm-generic/syscall.h
15244 F: include/linux/ptrace.h
15245 F: include/linux/regset.h
15246 F: include/linux/tracehook.h
15247 F: include/uapi/linux/ptrace.h
15248 F: include/uapi/linux/ptrace.h
15249 F: kernel/ptrace.c
15250
15251 PULSE8-CEC DRIVER
15252 M: Hans Verkuil <hverkuil@xs4all.nl>
15253 L: linux-media@vger.kernel.org
15254 S: Maintained
15255 T: git git://linuxtv.org/media_tree.git
15256 F: Documentation/admin-guide/media/pulse8-cec.rst
15257 F: drivers/media/cec/usb/pulse8/
15258
15259 PVRUSB2 VIDEO4LINUX DRIVER
15260 M: Mike Isely <isely@pobox.com>
15261 L: pvrusb2@isely.net (subscribers-only)
15262 L: linux-media@vger.kernel.org
15263 S: Maintained
15264 W: http://www.isely.net/pvrusb2/
15265 T: git git://linuxtv.org/media_tree.git
15266 F: Documentation/driver-api/media/drivers/pvrusb2*
15267 F: drivers/media/usb/pvrusb2/
15268
15269 PWC WEBCAM DRIVER
15270 M: Hans Verkuil <hverkuil@xs4all.nl>
15271 L: linux-media@vger.kernel.org
15272 S: Odd Fixes
15273 T: git git://linuxtv.org/media_tree.git
15274 F: drivers/media/usb/pwc/*
15275 F: include/trace/events/pwc.h
15276
15277 PWM FAN DRIVER
15278 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15279 L: linux-hwmon@vger.kernel.org
15280 S: Supported
15281 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15282 F: Documentation/hwmon/pwm-fan.rst
15283 F: drivers/hwmon/pwm-fan.c
15284
15285 PWM IR Transmitter
15286 M: Sean Young <sean@mess.org>
15287 L: linux-media@vger.kernel.org
15288 S: Maintained
15289 F: drivers/media/rc/pwm-ir-tx.c
15290
15291 PWM SUBSYSTEM
15292 M: Thierry Reding <thierry.reding@gmail.com>
15293 R: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15294 M: Lee Jones <lee.jones@linaro.org>
15295 L: linux-pwm@vger.kernel.org
15296 S: Maintained
15297 Q: https://patchwork.ozlabs.org/project/linux-pwm/list/
15298 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15299 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15300 F: Documentation/devicetree/bindings/pwm/
15301 F: Documentation/driver-api/pwm.rst
15302 F: drivers/gpio/gpio-mvebu.c
15303 F: drivers/pwm/
15304 F: drivers/video/backlight/pwm_bl.c
15305 F: include/linux/pwm.h
15306 F: include/linux/pwm_backlight.h
15307 K: pwm_(config|apply_state|ops)
15308
15309 PXA GPIO DRIVER
15310 M: Robert Jarzmik <robert.jarzmik@free.fr>
15311 L: linux-gpio@vger.kernel.org
15312 S: Maintained
15313 F: drivers/gpio/gpio-pxa.c
15314
15315 PXA MMCI DRIVER
15316 S: Orphan
15317
15318 PXA RTC DRIVER
15319 M: Robert Jarzmik <robert.jarzmik@free.fr>
15320 L: linux-rtc@vger.kernel.org
15321 S: Maintained
15322
15323 PXA2xx/PXA3xx SUPPORT
15324 M: Daniel Mack <daniel@zonque.org>
15325 M: Haojian Zhuang <haojian.zhuang@gmail.com>
15326 M: Robert Jarzmik <robert.jarzmik@free.fr>
15327 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15328 S: Maintained
15329 T: git git://github.com/hzhuang1/linux.git
15330 T: git git://github.com/rjarzmik/linux.git
15331 F: arch/arm/boot/dts/pxa*
15332 F: arch/arm/mach-pxa/
15333 F: drivers/dma/pxa*
15334 F: drivers/pcmcia/pxa2xx*
15335 F: drivers/pinctrl/pxa/
15336 F: drivers/spi/spi-pxa2xx*
15337 F: drivers/usb/gadget/udc/pxa2*
15338 F: include/sound/pxa2xx-lib.h
15339 F: sound/arm/pxa*
15340 F: sound/soc/pxa/
15341
15342 QAT DRIVER
15343 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15344 L: qat-linux@intel.com
15345 S: Supported
15346 F: drivers/crypto/qat/
15347
15348 QCOM AUDIO (ASoC) DRIVERS
15349 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15350 M: Banajit Goswami <bgoswami@codeaurora.org>
15351 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15352 S: Supported
15353 F: sound/soc/codecs/lpass-va-macro.c
15354 F: sound/soc/codecs/lpass-wsa-macro.*
15355 F: sound/soc/codecs/msm8916-wcd-analog.c
15356 F: sound/soc/codecs/msm8916-wcd-digital.c
15357 F: sound/soc/codecs/wcd9335.*
15358 F: sound/soc/codecs/wcd934x.c
15359 F: sound/soc/codecs/wcd-clsh-v2.*
15360 F: sound/soc/codecs/wsa881x.c
15361 F: sound/soc/qcom/
15362
15363 QCOM IPA DRIVER
15364 M: Alex Elder <elder@kernel.org>
15365 L: netdev@vger.kernel.org
15366 S: Supported
15367 F: drivers/net/ipa/
15368
15369 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15370 M: Gabriel Somlo <somlo@cmu.edu>
15371 M: "Michael S. Tsirkin" <mst@redhat.com>
15372 L: qemu-devel@nongnu.org
15373 S: Maintained
15374 F: drivers/firmware/qemu_fw_cfg.c
15375 F: include/uapi/linux/qemu_fw_cfg.h
15376
15377 QIB DRIVER
15378 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15379 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15380 L: linux-rdma@vger.kernel.org
15381 S: Supported
15382 F: drivers/infiniband/hw/qib/
15383
15384 QLOGIC QL41xxx FCOE DRIVER
15385 M: Saurav Kashyap <skashyap@marvell.com>
15386 M: Javed Hasan <jhasan@marvell.com>
15387 M: GR-QLogic-Storage-Upstream@marvell.com
15388 L: linux-scsi@vger.kernel.org
15389 S: Supported
15390 F: drivers/scsi/qedf/
15391
15392 QLOGIC QL41xxx ISCSI DRIVER
15393 M: Nilesh Javali <njavali@marvell.com>
15394 M: Manish Rangankar <mrangankar@marvell.com>
15395 M: GR-QLogic-Storage-Upstream@marvell.com
15396 L: linux-scsi@vger.kernel.org
15397 S: Supported
15398 F: drivers/scsi/qedi/
15399
15400 QLOGIC QL4xxx ETHERNET DRIVER
15401 M: Ariel Elior <aelior@marvell.com>
15402 M: GR-everest-linux-l2@marvell.com
15403 L: netdev@vger.kernel.org
15404 S: Supported
15405 F: drivers/net/ethernet/qlogic/qed/
15406 F: drivers/net/ethernet/qlogic/qede/
15407 F: include/linux/qed/
15408
15409 QLOGIC QL4xxx RDMA DRIVER
15410 M: Michal Kalderon <mkalderon@marvell.com>
15411 M: Ariel Elior <aelior@marvell.com>
15412 L: linux-rdma@vger.kernel.org
15413 S: Supported
15414 F: drivers/infiniband/hw/qedr/
15415 F: include/uapi/rdma/qedr-abi.h
15416
15417 QLOGIC QLA1280 SCSI DRIVER
15418 M: Michael Reed <mdr@sgi.com>
15419 L: linux-scsi@vger.kernel.org
15420 S: Maintained
15421 F: drivers/scsi/qla1280.[ch]
15422
15423 QLOGIC QLA2XXX FC-SCSI DRIVER
15424 M: Nilesh Javali <njavali@marvell.com>
15425 M: GR-QLogic-Storage-Upstream@marvell.com
15426 L: linux-scsi@vger.kernel.org
15427 S: Supported
15428 F: drivers/scsi/qla2xxx/
15429
15430 QLOGIC QLA3XXX NETWORK DRIVER
15431 M: GR-Linux-NIC-Dev@marvell.com
15432 L: netdev@vger.kernel.org
15433 S: Supported
15434 F: drivers/net/ethernet/qlogic/qla3xxx.*
15435
15436 QLOGIC QLA4XXX iSCSI DRIVER
15437 M: Nilesh Javali <njavali@marvell.com>
15438 M: Manish Rangankar <mrangankar@marvell.com>
15439 M: GR-QLogic-Storage-Upstream@marvell.com
15440 L: linux-scsi@vger.kernel.org
15441 S: Supported
15442 F: drivers/scsi/qla4xxx/
15443
15444 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15445 M: Shahed Shaikh <shshaikh@marvell.com>
15446 M: Manish Chopra <manishc@marvell.com>
15447 M: GR-Linux-NIC-Dev@marvell.com
15448 L: netdev@vger.kernel.org
15449 S: Supported
15450 F: drivers/net/ethernet/qlogic/qlcnic/
15451
15452 QLOGIC QLGE 10Gb ETHERNET DRIVER
15453 M: Manish Chopra <manishc@marvell.com>
15454 M: GR-Linux-NIC-Dev@marvell.com
15455 M: Coiby Xu <coiby.xu@gmail.com>
15456 L: netdev@vger.kernel.org
15457 S: Supported
15458 F: Documentation/networking/device_drivers/qlogic/qlge.rst
15459 F: drivers/staging/qlge/
15460
15461 QM1D1B0004 MEDIA DRIVER
15462 M: Akihiro Tsukada <tskd08@gmail.com>
15463 L: linux-media@vger.kernel.org
15464 S: Odd Fixes
15465 F: drivers/media/tuners/qm1d1b0004*
15466
15467 QM1D1C0042 MEDIA DRIVER
15468 M: Akihiro Tsukada <tskd08@gmail.com>
15469 L: linux-media@vger.kernel.org
15470 S: Odd Fixes
15471 F: drivers/media/tuners/qm1d1c0042*
15472
15473 QNX4 FILESYSTEM
15474 M: Anders Larsen <al@alarsen.net>
15475 S: Maintained
15476 W: http://www.alarsen.net/linux/qnx4fs/
15477 F: fs/qnx4/
15478 F: include/uapi/linux/qnx4_fs.h
15479 F: include/uapi/linux/qnxtypes.h
15480
15481 QORIQ DPAA2 FSL-MC BUS DRIVER
15482 M: Stuart Yoder <stuyoder@gmail.com>
15483 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
15484 L: linux-kernel@vger.kernel.org
15485 S: Maintained
15486 F: Documentation/ABI/stable/sysfs-bus-fsl-mc
15487 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15488 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15489 F: drivers/bus/fsl-mc/
15490 F: include/uapi/linux/fsl_mc.h
15491
15492 QT1010 MEDIA DRIVER
15493 M: Antti Palosaari <crope@iki.fi>
15494 L: linux-media@vger.kernel.org
15495 S: Maintained
15496 W: https://linuxtv.org
15497 W: http://palosaari.fi/linux/
15498 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15499 T: git git://linuxtv.org/anttip/media_tree.git
15500 F: drivers/media/tuners/qt1010*
15501
15502 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15503 M: Kalle Valo <kvalo@codeaurora.org>
15504 L: ath10k@lists.infradead.org
15505 S: Supported
15506 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15507 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15508 F: drivers/net/wireless/ath/ath10k/
15509
15510 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15511 M: Kalle Valo <kvalo@codeaurora.org>
15512 L: ath11k@lists.infradead.org
15513 S: Supported
15514 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15515 F: drivers/net/wireless/ath/ath11k/
15516
15517 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15518 M: ath9k-devel@qca.qualcomm.com
15519 L: linux-wireless@vger.kernel.org
15520 S: Supported
15521 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15522 F: drivers/net/wireless/ath/ath9k/
15523
15524 QUALCOMM CAMERA SUBSYSTEM DRIVER
15525 M: Robert Foss <robert.foss@linaro.org>
15526 M: Todor Tomov <todor.too@gmail.com>
15527 L: linux-media@vger.kernel.org
15528 S: Maintained
15529 F: Documentation/admin-guide/media/qcom_camss.rst
15530 F: Documentation/devicetree/bindings/media/*camss*
15531 F: drivers/media/platform/qcom/camss/
15532
15533 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15534 M: Niklas Cassel <nks@flawful.org>
15535 L: linux-pm@vger.kernel.org
15536 L: linux-arm-msm@vger.kernel.org
15537 S: Maintained
15538 F: Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15539 F: drivers/soc/qcom/cpr.c
15540
15541 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15542 M: Ilia Lin <ilia.lin@kernel.org>
15543 L: linux-pm@vger.kernel.org
15544 S: Maintained
15545 F: Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15546 F: drivers/cpufreq/qcom-cpufreq-nvmem.c
15547
15548 QUALCOMM CRYPTO DRIVERS
15549 M: Thara Gopinath <thara.gopinath@linaro.org>
15550 L: linux-crypto@vger.kernel.org
15551 L: linux-arm-msm@vger.kernel.org
15552 S: Maintained
15553 F: drivers/crypto/qce/
15554
15555 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15556 M: Timur Tabi <timur@kernel.org>
15557 L: netdev@vger.kernel.org
15558 S: Maintained
15559 F: drivers/net/ethernet/qualcomm/emac/
15560
15561 QUALCOMM ETHQOS ETHERNET DRIVER
15562 M: Vinod Koul <vkoul@kernel.org>
15563 L: netdev@vger.kernel.org
15564 S: Maintained
15565 F: Documentation/devicetree/bindings/net/qcom,ethqos.txt
15566 F: drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15567
15568 QUALCOMM GENERIC INTERFACE I2C DRIVER
15569 M: Akash Asthana <akashast@codeaurora.org>
15570 M: Mukesh Savaliya <msavaliy@codeaurora.org>
15571 L: linux-i2c@vger.kernel.org
15572 L: linux-arm-msm@vger.kernel.org
15573 S: Supported
15574 F: drivers/i2c/busses/i2c-qcom-geni.c
15575
15576 QUALCOMM HEXAGON ARCHITECTURE
15577 M: Brian Cain <bcain@codeaurora.org>
15578 L: linux-hexagon@vger.kernel.org
15579 S: Supported
15580 F: arch/hexagon/
15581
15582 QUALCOMM HIDMA DRIVER
15583 M: Sinan Kaya <okaya@kernel.org>
15584 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15585 L: linux-arm-msm@vger.kernel.org
15586 L: dmaengine@vger.kernel.org
15587 S: Supported
15588 F: drivers/dma/qcom/hidma*
15589
15590 QUALCOMM I2C CCI DRIVER
15591 M: Loic Poulain <loic.poulain@linaro.org>
15592 M: Robert Foss <robert.foss@linaro.org>
15593 L: linux-i2c@vger.kernel.org
15594 L: linux-arm-msm@vger.kernel.org
15595 S: Maintained
15596 F: Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15597 F: drivers/i2c/busses/i2c-qcom-cci.c
15598
15599 QUALCOMM IOMMU
15600 M: Rob Clark <robdclark@gmail.com>
15601 L: iommu@lists.linux-foundation.org
15602 L: linux-arm-msm@vger.kernel.org
15603 S: Maintained
15604 F: drivers/iommu/arm/arm-smmu/qcom_iommu.c
15605
15606 QUALCOMM IPC ROUTER (QRTR) DRIVER
15607 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15608 L: linux-arm-msm@vger.kernel.org
15609 S: Maintained
15610 F: include/trace/events/qrtr.h
15611 F: include/uapi/linux/qrtr.h
15612 F: net/qrtr/
15613
15614 QUALCOMM IPCC MAILBOX DRIVER
15615 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15616 L: linux-arm-msm@vger.kernel.org
15617 S: Supported
15618 F: Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15619 F: drivers/mailbox/qcom-ipcc.c
15620 F: include/dt-bindings/mailbox/qcom-ipcc.h
15621
15622 QUALCOMM IPQ4019 USB PHY DRIVER
15623 M: Robert Marko <robert.marko@sartura.hr>
15624 M: Luka Perkov <luka.perkov@sartura.hr>
15625 L: linux-arm-msm@vger.kernel.org
15626 S: Maintained
15627 F: Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15628 F: drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15629
15630 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15631 M: Robert Marko <robert.marko@sartura.hr>
15632 M: Luka Perkov <luka.perkov@sartura.hr>
15633 L: linux-arm-msm@vger.kernel.org
15634 S: Maintained
15635 F: Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15636 F: drivers/regulator/vqmmc-ipq4019-regulator.c
15637
15638 QUALCOMM RMNET DRIVER
15639 M: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15640 M: Sean Tranchetti <stranche@codeaurora.org>
15641 L: netdev@vger.kernel.org
15642 S: Maintained
15643 F: Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15644 F: drivers/net/ethernet/qualcomm/rmnet/
15645 F: include/linux/if_rmnet.h
15646
15647 QUALCOMM TSENS THERMAL DRIVER
15648 M: Amit Kucheria <amitk@kernel.org>
15649 M: Thara Gopinath <thara.gopinath@linaro.org>
15650 L: linux-pm@vger.kernel.org
15651 L: linux-arm-msm@vger.kernel.org
15652 S: Maintained
15653 F: Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15654 F: drivers/thermal/qcom/
15655
15656 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15657 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
15658 L: linux-media@vger.kernel.org
15659 L: linux-arm-msm@vger.kernel.org
15660 S: Maintained
15661 T: git git://linuxtv.org/media_tree.git
15662 F: Documentation/devicetree/bindings/media/*venus*
15663 F: drivers/media/platform/qcom/venus/
15664
15665 QUALCOMM WCN36XX WIRELESS DRIVER
15666 M: Kalle Valo <kvalo@codeaurora.org>
15667 L: wcn36xx@lists.infradead.org
15668 S: Supported
15669 W: https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15670 T: git git://github.com/KrasnikovEugene/wcn36xx.git
15671 F: drivers/net/wireless/ath/wcn36xx/
15672
15673 QUANTENNA QTNFMAC WIRELESS DRIVER
15674 M: Igor Mitsyanko <imitsyanko@quantenna.com>
15675 R: Sergey Matyukevich <geomatsi@gmail.com>
15676 L: linux-wireless@vger.kernel.org
15677 S: Maintained
15678 F: drivers/net/wireless/quantenna
15679
15680 RADEON and AMDGPU DRM DRIVERS
15681 M: Alex Deucher <alexander.deucher@amd.com>
15682 M: Christian König <christian.koenig@amd.com>
15683 M: Pan, Xinhui <Xinhui.Pan@amd.com>
15684 L: amd-gfx@lists.freedesktop.org
15685 S: Supported
15686 T: git https://gitlab.freedesktop.org/agd5f/linux.git
15687 B: https://gitlab.freedesktop.org/drm/amd/-/issues
15688 C: irc://irc.oftc.net/radeon
15689 F: drivers/gpu/drm/amd/
15690 F: drivers/gpu/drm/radeon/
15691 F: include/uapi/drm/amdgpu_drm.h
15692 F: include/uapi/drm/radeon_drm.h
15693
15694 RADEON FRAMEBUFFER DISPLAY DRIVER
15695 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
15696 L: linux-fbdev@vger.kernel.org
15697 S: Maintained
15698 F: drivers/video/fbdev/aty/radeon*
15699 F: include/uapi/linux/radeonfb.h
15700
15701 RADIOSHARK RADIO DRIVER
15702 M: Hans Verkuil <hverkuil@xs4all.nl>
15703 L: linux-media@vger.kernel.org
15704 S: Maintained
15705 T: git git://linuxtv.org/media_tree.git
15706 F: drivers/media/radio/radio-shark.c
15707
15708 RADIOSHARK2 RADIO DRIVER
15709 M: Hans Verkuil <hverkuil@xs4all.nl>
15710 L: linux-media@vger.kernel.org
15711 S: Maintained
15712 T: git git://linuxtv.org/media_tree.git
15713 F: drivers/media/radio/radio-shark2.c
15714 F: drivers/media/radio/radio-tea5777.c
15715
15716 RADOS BLOCK DEVICE (RBD)
15717 M: Ilya Dryomov <idryomov@gmail.com>
15718 R: Dongsheng Yang <dongsheng.yang@easystack.cn>
15719 L: ceph-devel@vger.kernel.org
15720 S: Supported
15721 W: http://ceph.com/
15722 T: git git://github.com/ceph/ceph-client.git
15723 F: Documentation/ABI/testing/sysfs-bus-rbd
15724 F: drivers/block/rbd.c
15725 F: drivers/block/rbd_types.h
15726
15727 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15728 M: Paul Mackerras <paulus@samba.org>
15729 L: linux-fbdev@vger.kernel.org
15730 S: Maintained
15731 F: drivers/video/fbdev/aty/aty128fb.c
15732
15733 RAINSHADOW-CEC DRIVER
15734 M: Hans Verkuil <hverkuil@xs4all.nl>
15735 L: linux-media@vger.kernel.org
15736 S: Maintained
15737 T: git git://linuxtv.org/media_tree.git
15738 F: drivers/media/cec/usb/rainshadow/
15739
15740 RALINK MIPS ARCHITECTURE
15741 M: John Crispin <john@phrozen.org>
15742 L: linux-mips@vger.kernel.org
15743 S: Maintained
15744 F: arch/mips/ralink
15745
15746 RALINK RT2X00 WIRELESS LAN DRIVER
15747 M: Stanislaw Gruszka <stf_xl@wp.pl>
15748 M: Helmut Schaa <helmut.schaa@googlemail.com>
15749 L: linux-wireless@vger.kernel.org
15750 S: Maintained
15751 F: drivers/net/wireless/ralink/rt2x00/
15752
15753 RAMDISK RAM BLOCK DEVICE DRIVER
15754 M: Jens Axboe <axboe@kernel.dk>
15755 S: Maintained
15756 F: Documentation/admin-guide/blockdev/ramdisk.rst
15757 F: drivers/block/brd.c
15758
15759 RANCHU VIRTUAL BOARD FOR MIPS
15760 M: Miodrag Dinic <miodrag.dinic@mips.com>
15761 L: linux-mips@vger.kernel.org
15762 S: Supported
15763 F: arch/mips/configs/generic/board-ranchu.config
15764 F: arch/mips/generic/board-ranchu.c
15765
15766 RANDOM NUMBER DRIVER
15767 M: "Theodore Ts'o" <tytso@mit.edu>
15768 M: Jason A. Donenfeld <Jason@zx2c4.com>
15769 T: git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
15770 S: Maintained
15771 F: drivers/char/random.c
15772
15773 RAPIDIO SUBSYSTEM
15774 M: Matt Porter <mporter@kernel.crashing.org>
15775 M: Alexandre Bounine <alex.bou9@gmail.com>
15776 S: Maintained
15777 F: drivers/rapidio/
15778
15779 RAS INFRASTRUCTURE
15780 M: Tony Luck <tony.luck@intel.com>
15781 M: Borislav Petkov <bp@alien8.de>
15782 L: linux-edac@vger.kernel.org
15783 S: Maintained
15784 F: Documentation/admin-guide/ras.rst
15785 F: drivers/ras/
15786 F: include/linux/ras.h
15787 F: include/ras/ras_event.h
15788
15789 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15790 L: linux-wireless@vger.kernel.org
15791 S: Orphan
15792 F: drivers/net/wireless/ray*
15793
15794 RC-CORE / LIRC FRAMEWORK
15795 M: Sean Young <sean@mess.org>
15796 L: linux-media@vger.kernel.org
15797 S: Maintained
15798 W: http://linuxtv.org
15799 T: git git://linuxtv.org/media_tree.git
15800 F: Documentation/driver-api/media/rc-core.rst
15801 F: Documentation/userspace-api/media/rc/
15802 F: drivers/media/rc/
15803 F: include/media/rc-map.h
15804 F: include/media/rc-core.h
15805 F: include/uapi/linux/lirc.h
15806
15807 RCMM REMOTE CONTROLS DECODER
15808 M: Patrick Lerda <patrick9876@free.fr>
15809 S: Maintained
15810 F: drivers/media/rc/ir-rcmm-decoder.c
15811
15812 RCUTORTURE TEST FRAMEWORK
15813 M: "Paul E. McKenney" <paulmck@kernel.org>
15814 M: Josh Triplett <josh@joshtriplett.org>
15815 R: Steven Rostedt <rostedt@goodmis.org>
15816 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15817 R: Lai Jiangshan <jiangshanlai@gmail.com>
15818 L: rcu@vger.kernel.org
15819 S: Supported
15820 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15821 F: tools/testing/selftests/rcutorture
15822
15823 RDACM20 Camera Sensor
15824 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15825 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15826 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15827 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15828 L: linux-media@vger.kernel.org
15829 S: Maintained
15830 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15831 F: drivers/media/i2c/max9271.c
15832 F: drivers/media/i2c/max9271.h
15833 F: drivers/media/i2c/rdacm20.c
15834
15835 RDACM21 Camera Sensor
15836 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15837 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15838 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15839 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15840 L: linux-media@vger.kernel.org
15841 S: Maintained
15842 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15843 F: drivers/media/i2c/max9271.c
15844 F: drivers/media/i2c/max9271.h
15845 F: drivers/media/i2c/rdacm21.c
15846
15847 RDC R-321X SoC
15848 M: Florian Fainelli <florian@openwrt.org>
15849 S: Maintained
15850
15851 RDC R6040 FAST ETHERNET DRIVER
15852 M: Florian Fainelli <f.fainelli@gmail.com>
15853 L: netdev@vger.kernel.org
15854 S: Maintained
15855 F: drivers/net/ethernet/rdc/r6040.c
15856
15857 RDMAVT - RDMA verbs software
15858 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15859 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15860 L: linux-rdma@vger.kernel.org
15861 S: Supported
15862 F: drivers/infiniband/sw/rdmavt
15863
15864 RDS - RELIABLE DATAGRAM SOCKETS
15865 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
15866 L: netdev@vger.kernel.org
15867 L: linux-rdma@vger.kernel.org
15868 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
15869 S: Supported
15870 W: https://oss.oracle.com/projects/rds/
15871 F: Documentation/networking/rds.rst
15872 F: net/rds/
15873
15874 RDT - RESOURCE ALLOCATION
15875 M: Fenghua Yu <fenghua.yu@intel.com>
15876 M: Reinette Chatre <reinette.chatre@intel.com>
15877 L: linux-kernel@vger.kernel.org
15878 S: Supported
15879 F: Documentation/x86/resctrl*
15880 F: arch/x86/include/asm/resctrl.h
15881 F: arch/x86/kernel/cpu/resctrl/
15882 F: tools/testing/selftests/resctrl/
15883
15884 READ-COPY UPDATE (RCU)
15885 M: "Paul E. McKenney" <paulmck@kernel.org>
15886 M: Josh Triplett <josh@joshtriplett.org>
15887 R: Steven Rostedt <rostedt@goodmis.org>
15888 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15889 R: Lai Jiangshan <jiangshanlai@gmail.com>
15890 R: Joel Fernandes <joel@joelfernandes.org>
15891 L: rcu@vger.kernel.org
15892 S: Supported
15893 W: http://www.rdrop.com/users/paulmck/RCU/
15894 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15895 F: Documentation/RCU/
15896 F: include/linux/rcu*
15897 F: kernel/rcu/
15898 X: Documentation/RCU/torture.rst
15899 X: include/linux/srcu*.h
15900 X: kernel/rcu/srcu*.c
15901
15902 REAL TIME CLOCK (RTC) SUBSYSTEM
15903 M: Alessandro Zummo <a.zummo@towertech.it>
15904 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
15905 L: linux-rtc@vger.kernel.org
15906 S: Maintained
15907 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
15908 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15909 F: Documentation/admin-guide/rtc.rst
15910 F: Documentation/devicetree/bindings/rtc/
15911 F: drivers/rtc/
15912 F: include/linux/platform_data/rtc-*
15913 F: include/linux/rtc.h
15914 F: include/linux/rtc/
15915 F: include/uapi/linux/rtc.h
15916 F: tools/testing/selftests/rtc/
15917
15918 REALTEK AUDIO CODECS
15919 M: Oder Chiou <oder_chiou@realtek.com>
15920 S: Maintained
15921 F: include/sound/rt*.h
15922 F: sound/soc/codecs/rt*
15923
15924 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15925 M: Linus Walleij <linus.walleij@linaro.org>
15926 S: Maintained
15927 F: Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15928 F: drivers/net/dsa/realtek-smi*
15929 F: drivers/net/dsa/rtl83*
15930
15931 REALTEK WIRELESS DRIVER (rtlwifi family)
15932 M: Ping-Ke Shih <pkshih@realtek.com>
15933 L: linux-wireless@vger.kernel.org
15934 S: Maintained
15935 W: https://wireless.wiki.kernel.org/
15936 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15937 F: drivers/net/wireless/realtek/rtlwifi/
15938
15939 REALTEK WIRELESS DRIVER (rtw88)
15940 M: Yan-Hsuan Chuang <tony0620emma@gmail.com>
15941 L: linux-wireless@vger.kernel.org
15942 S: Maintained
15943 F: drivers/net/wireless/realtek/rtw88/
15944
15945 REDPINE WIRELESS DRIVER
15946 M: Amitkumar Karwar <amitkarwar@gmail.com>
15947 M: Siva Rebbagondla <siva8118@gmail.com>
15948 L: linux-wireless@vger.kernel.org
15949 S: Maintained
15950 F: drivers/net/wireless/rsi/
15951
15952 REGISTER MAP ABSTRACTION
15953 M: Mark Brown <broonie@kernel.org>
15954 L: linux-kernel@vger.kernel.org
15955 S: Supported
15956 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15957 F: Documentation/devicetree/bindings/regmap/
15958 F: drivers/base/regmap/
15959 F: include/linux/regmap.h
15960
15961 REISERFS FILE SYSTEM
15962 L: reiserfs-devel@vger.kernel.org
15963 S: Supported
15964 F: fs/reiserfs/
15965
15966 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15967 M: Ohad Ben-Cohen <ohad@wizery.com>
15968 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15969 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15970 L: linux-remoteproc@vger.kernel.org
15971 S: Maintained
15972 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15973 F: Documentation/ABI/testing/sysfs-class-remoteproc
15974 F: Documentation/devicetree/bindings/remoteproc/
15975 F: Documentation/staging/remoteproc.rst
15976 F: drivers/remoteproc/
15977 F: include/linux/remoteproc.h
15978 F: include/linux/remoteproc/
15979
15980 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15981 M: Ohad Ben-Cohen <ohad@wizery.com>
15982 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15983 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15984 L: linux-remoteproc@vger.kernel.org
15985 S: Maintained
15986 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15987 F: Documentation/ABI/testing/sysfs-bus-rpmsg
15988 F: Documentation/staging/rpmsg.rst
15989 F: drivers/rpmsg/
15990 F: include/linux/rpmsg.h
15991 F: include/linux/rpmsg/
15992 F: include/uapi/linux/rpmsg.h
15993 F: samples/rpmsg/
15994
15995 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15996 M: Stephan Gerhold <stephan@gerhold.net>
15997 L: netdev@vger.kernel.org
15998 L: linux-remoteproc@vger.kernel.org
15999 S: Maintained
16000 F: drivers/net/wwan/rpmsg_wwan_ctrl.c
16001
16002 RENESAS CLOCK DRIVERS
16003 M: Geert Uytterhoeven <geert+renesas@glider.be>
16004 L: linux-renesas-soc@vger.kernel.org
16005 S: Supported
16006 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16007 F: Documentation/devicetree/bindings/clock/renesas,*
16008 F: drivers/clk/renesas/
16009
16010 RENESAS EMEV2 I2C DRIVER
16011 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
16012 L: linux-renesas-soc@vger.kernel.org
16013 S: Supported
16014 F: Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16015 F: drivers/i2c/busses/i2c-emev2.c
16016
16017 RENESAS ETHERNET DRIVERS
16018 R: Sergey Shtylyov <s.shtylyov@omp.ru>
16019 L: netdev@vger.kernel.org
16020 L: linux-renesas-soc@vger.kernel.org
16021 F: Documentation/devicetree/bindings/net/renesas,*.yaml
16022 F: drivers/net/ethernet/renesas/
16023 F: include/linux/sh_eth.h
16024
16025 RENESAS R-CAR GYROADC DRIVER
16026 M: Marek Vasut <marek.vasut@gmail.com>
16027 L: linux-iio@vger.kernel.org
16028 S: Supported
16029 F: Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16030 F: drivers/iio/adc/rcar-gyroadc.c
16031
16032 RENESAS R-CAR I2C DRIVERS
16033 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
16034 L: linux-renesas-soc@vger.kernel.org
16035 S: Supported
16036 F: Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16037 F: Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16038 F: drivers/i2c/busses/i2c-rcar.c
16039 F: drivers/i2c/busses/i2c-sh_mobile.c
16040
16041 RENESAS R-CAR THERMAL DRIVERS
16042 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
16043 L: linux-renesas-soc@vger.kernel.org
16044 S: Supported
16045 F: Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16046 F: Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16047 F: drivers/thermal/rcar_gen3_thermal.c
16048 F: drivers/thermal/rcar_thermal.c
16049
16050 RENESAS RIIC DRIVER
16051 M: Chris Brandt <chris.brandt@renesas.com>
16052 L: linux-renesas-soc@vger.kernel.org
16053 S: Supported
16054 F: Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16055 F: drivers/i2c/busses/i2c-riic.c
16056
16057 RENESAS USB PHY DRIVER
16058 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16059 L: linux-renesas-soc@vger.kernel.org
16060 S: Maintained
16061 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
16062
16063 RENESAS RZ/G2L A/D DRIVER
16064 M: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16065 L: linux-iio@vger.kernel.org
16066 L: linux-renesas-soc@vger.kernel.org
16067 S: Supported
16068 F: Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16069 F: drivers/iio/adc/rzg2l_adc.c
16070
16071 RESET CONTROLLER FRAMEWORK
16072 M: Philipp Zabel <p.zabel@pengutronix.de>
16073 S: Maintained
16074 T: git git://git.pengutronix.de/git/pza/linux
16075 F: Documentation/devicetree/bindings/reset/
16076 F: Documentation/driver-api/reset.rst
16077 F: drivers/reset/
16078 F: include/dt-bindings/reset/
16079 F: include/linux/reset-controller.h
16080 F: include/linux/reset.h
16081 F: include/linux/reset/
16082 K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16083
16084 RESTARTABLE SEQUENCES SUPPORT
16085 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16086 M: Peter Zijlstra <peterz@infradead.org>
16087 M: "Paul E. McKenney" <paulmck@kernel.org>
16088 M: Boqun Feng <boqun.feng@gmail.com>
16089 L: linux-kernel@vger.kernel.org
16090 S: Supported
16091 F: include/trace/events/rseq.h
16092 F: include/uapi/linux/rseq.h
16093 F: kernel/rseq.c
16094 F: tools/testing/selftests/rseq/
16095
16096 RFKILL
16097 M: Johannes Berg <johannes@sipsolutions.net>
16098 L: linux-wireless@vger.kernel.org
16099 S: Maintained
16100 W: https://wireless.wiki.kernel.org/
16101 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16102 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16103 F: Documentation/ABI/stable/sysfs-class-rfkill
16104 F: Documentation/driver-api/rfkill.rst
16105 F: include/linux/rfkill.h
16106 F: include/uapi/linux/rfkill.h
16107 F: net/rfkill/
16108
16109 RHASHTABLE
16110 M: Thomas Graf <tgraf@suug.ch>
16111 M: Herbert Xu <herbert@gondor.apana.org.au>
16112 L: netdev@vger.kernel.org
16113 S: Maintained
16114 F: include/linux/rhashtable-types.h
16115 F: include/linux/rhashtable.h
16116 F: lib/rhashtable.c
16117 F: lib/test_rhashtable.c
16118
16119 RICOH R5C592 MEMORYSTICK DRIVER
16120 M: Maxim Levitsky <maximlevitsky@gmail.com>
16121 S: Maintained
16122 F: drivers/memstick/host/r592.*
16123
16124 RICOH SMARTMEDIA/XD DRIVER
16125 M: Maxim Levitsky <maximlevitsky@gmail.com>
16126 S: Maintained
16127 F: drivers/mtd/nand/raw/r852.c
16128 F: drivers/mtd/nand/raw/r852.h
16129
16130 RISC-V ARCHITECTURE
16131 M: Paul Walmsley <paul.walmsley@sifive.com>
16132 M: Palmer Dabbelt <palmer@dabbelt.com>
16133 M: Albert Ou <aou@eecs.berkeley.edu>
16134 L: linux-riscv@lists.infradead.org
16135 S: Supported
16136 P: Documentation/riscv/patch-acceptance.rst
16137 T: git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16138 F: arch/riscv/
16139 N: riscv
16140 K: riscv
16141
16142 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16143 M: Lewis Hanly <lewis.hanly@microchip.com>
16144 L: linux-riscv@lists.infradead.org
16145 S: Supported
16146 F: drivers/mailbox/mailbox-mpfs.c
16147 F: drivers/soc/microchip/
16148 F: include/soc/microchip/mpfs.h
16149
16150 RNBD BLOCK DRIVERS
16151 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16152 M: Jack Wang <jinpu.wang@ionos.com>
16153 L: linux-block@vger.kernel.org
16154 S: Maintained
16155 F: drivers/block/rnbd/
16156
16157 ROCCAT DRIVERS
16158 M: Stefan Achatz <erazor_de@users.sourceforge.net>
16159 S: Maintained
16160 W: http://sourceforge.net/projects/roccat/
16161 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
16162 F: drivers/hid/hid-roccat*
16163 F: include/linux/hid-roccat*
16164
16165 ROCKCHIP ISP V1 DRIVER
16166 M: Helen Koike <helen.koike@collabora.com>
16167 M: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16168 L: linux-media@vger.kernel.org
16169 L: linux-rockchip@lists.infradead.org
16170 S: Maintained
16171 F: Documentation/admin-guide/media/rkisp1.rst
16172 F: Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16173 F: Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16174 F: drivers/media/platform/rockchip/rkisp1
16175 F: include/uapi/linux/rkisp1-config.h
16176
16177 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16178 M: Jacob Chen <jacob-chen@iotwrt.com>
16179 M: Ezequiel Garcia <ezequiel@collabora.com>
16180 L: linux-media@vger.kernel.org
16181 L: linux-rockchip@lists.infradead.org
16182 S: Maintained
16183 F: Documentation/devicetree/bindings/media/rockchip-rga.yaml
16184 F: drivers/media/platform/rockchip/rga/
16185
16186 ROCKCHIP VIDEO DECODER DRIVER
16187 M: Ezequiel Garcia <ezequiel@collabora.com>
16188 L: linux-media@vger.kernel.org
16189 L: linux-rockchip@lists.infradead.org
16190 S: Maintained
16191 F: Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16192 F: drivers/staging/media/rkvdec/
16193
16194 ROCKER DRIVER
16195 M: Jiri Pirko <jiri@resnulli.us>
16196 L: netdev@vger.kernel.org
16197 S: Supported
16198 F: drivers/net/ethernet/rocker/
16199
16200 ROCKETPORT EXPRESS/INFINITY DRIVER
16201 M: Kevin Cernekee <cernekee@gmail.com>
16202 L: linux-serial@vger.kernel.org
16203 S: Odd Fixes
16204 F: drivers/tty/serial/rp2.*
16205
16206 ROHM BD99954 CHARGER IC
16207 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16208 L: linux-power@fi.rohmeurope.com
16209 S: Supported
16210 F: drivers/power/supply/bd99954-charger.c
16211 F: drivers/power/supply/bd99954-charger.h
16212
16213 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16214 M: Tomasz Duszynski <tduszyns@gmail.com>
16215 S: Maintained
16216 F: Documentation/devicetree/bindings/iio/light/bh1750.yaml
16217 F: drivers/iio/light/bh1750.c
16218
16219 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16220 M: Marek Vasut <marek.vasut+renesas@gmail.com>
16221 L: linux-kernel@vger.kernel.org
16222 L: linux-renesas-soc@vger.kernel.org
16223 S: Supported
16224 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16225 F: drivers/gpio/gpio-bd9571mwv.c
16226 F: drivers/mfd/bd9571mwv.c
16227 F: drivers/regulator/bd9571mwv-regulator.c
16228 F: include/linux/mfd/bd9571mwv.h
16229
16230 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16231 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16232 L: linux-power@fi.rohmeurope.com
16233 S: Supported
16234 F: Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16235 F: Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16236 F: drivers/clk/clk-bd718x7.c
16237 F: drivers/gpio/gpio-bd70528.c
16238 F: drivers/gpio/gpio-bd71815.c
16239 F: drivers/gpio/gpio-bd71828.c
16240 F: drivers/mfd/rohm-bd70528.c
16241 F: drivers/mfd/rohm-bd71828.c
16242 F: drivers/mfd/rohm-bd718x7.c
16243 F: drivers/mfd/rohm-bd9576.c
16244 F: drivers/power/supply/bd70528-charger.c
16245 F: drivers/regulator/bd70528-regulator.c
16246 F: drivers/regulator/bd71815-regulator.c
16247 F: drivers/regulator/bd71828-regulator.c
16248 F: drivers/regulator/bd718x7-regulator.c
16249 F: drivers/regulator/bd9576-regulator.c
16250 F: drivers/regulator/rohm-regulator.c
16251 F: drivers/rtc/rtc-bd70528.c
16252 F: drivers/watchdog/bd70528_wdt.c
16253 F: drivers/watchdog/bd9576_wdt.c
16254 F: include/linux/mfd/rohm-bd70528.h
16255 F: include/linux/mfd/rohm-bd71815.h
16256 F: include/linux/mfd/rohm-bd71828.h
16257 F: include/linux/mfd/rohm-bd718x7.h
16258 F: include/linux/mfd/rohm-bd957x.h
16259 F: include/linux/mfd/rohm-generic.h
16260 F: include/linux/mfd/rohm-shared.h
16261
16262 ROSE NETWORK LAYER
16263 M: Ralf Baechle <ralf@linux-mips.org>
16264 L: linux-hams@vger.kernel.org
16265 S: Maintained
16266 W: http://www.linux-ax25.org/
16267 F: include/net/rose.h
16268 F: include/uapi/linux/rose.h
16269 F: net/rose/
16270
16271 ROTATION DRIVER FOR ALLWINNER A83T
16272 M: Jernej Skrabec <jernej.skrabec@gmail.com>
16273 L: linux-media@vger.kernel.org
16274 S: Maintained
16275 T: git git://linuxtv.org/media_tree.git
16276 F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16277 F: drivers/media/platform/sunxi/sun8i-rotate/
16278
16279 RTL2830 MEDIA DRIVER
16280 M: Antti Palosaari <crope@iki.fi>
16281 L: linux-media@vger.kernel.org
16282 S: Maintained
16283 W: https://linuxtv.org
16284 W: http://palosaari.fi/linux/
16285 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16286 T: git git://linuxtv.org/anttip/media_tree.git
16287 F: drivers/media/dvb-frontends/rtl2830*
16288
16289 RTL2832 MEDIA DRIVER
16290 M: Antti Palosaari <crope@iki.fi>
16291 L: linux-media@vger.kernel.org
16292 S: Maintained
16293 W: https://linuxtv.org
16294 W: http://palosaari.fi/linux/
16295 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16296 T: git git://linuxtv.org/anttip/media_tree.git
16297 F: drivers/media/dvb-frontends/rtl2832*
16298
16299 RTL2832_SDR MEDIA DRIVER
16300 M: Antti Palosaari <crope@iki.fi>
16301 L: linux-media@vger.kernel.org
16302 S: Maintained
16303 W: https://linuxtv.org
16304 W: http://palosaari.fi/linux/
16305 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16306 T: git git://linuxtv.org/anttip/media_tree.git
16307 F: drivers/media/dvb-frontends/rtl2832_sdr*
16308
16309 RTL8180 WIRELESS DRIVER
16310 L: linux-wireless@vger.kernel.org
16311 S: Orphan
16312 W: https://wireless.wiki.kernel.org/
16313 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16314 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
16315
16316 RTL8187 WIRELESS DRIVER
16317 M: Herton Ronaldo Krzesinski <herton@canonical.com>
16318 M: Hin-Tak Leung <htl10@users.sourceforge.net>
16319 M: Larry Finger <Larry.Finger@lwfinger.net>
16320 L: linux-wireless@vger.kernel.org
16321 S: Maintained
16322 W: https://wireless.wiki.kernel.org/
16323 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16324 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
16325
16326 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16327 M: Jes Sorensen <Jes.Sorensen@gmail.com>
16328 L: linux-wireless@vger.kernel.org
16329 S: Maintained
16330 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16331 F: drivers/net/wireless/realtek/rtl8xxxu/
16332
16333 RTRS TRANSPORT DRIVERS
16334 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16335 M: Jack Wang <jinpu.wang@ionos.com>
16336 L: linux-rdma@vger.kernel.org
16337 S: Maintained
16338 F: drivers/infiniband/ulp/rtrs/
16339
16340 RXRPC SOCKETS (AF_RXRPC)
16341 M: David Howells <dhowells@redhat.com>
16342 M: Marc Dionne <marc.dionne@auristor.com>
16343 L: linux-afs@lists.infradead.org
16344 S: Supported
16345 W: https://www.infradead.org/~dhowells/kafs/
16346 F: Documentation/networking/rxrpc.rst
16347 F: include/keys/rxrpc-type.h
16348 F: include/net/af_rxrpc.h
16349 F: include/trace/events/rxrpc.h
16350 F: include/uapi/linux/rxrpc.h
16351 F: net/rxrpc/
16352
16353 S3 SAVAGE FRAMEBUFFER DRIVER
16354 M: Antonino Daplas <adaplas@gmail.com>
16355 L: linux-fbdev@vger.kernel.org
16356 S: Maintained
16357 F: drivers/video/fbdev/savage/
16358
16359 S390
16360 M: Heiko Carstens <hca@linux.ibm.com>
16361 M: Vasily Gorbik <gor@linux.ibm.com>
16362 M: Christian Borntraeger <borntraeger@de.ibm.com>
16363 R: Alexander Gordeev <agordeev@linux.ibm.com>
16364 L: linux-s390@vger.kernel.org
16365 S: Supported
16366 W: http://www.ibm.com/developerworks/linux/linux390/
16367 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16368 F: Documentation/driver-api/s390-drivers.rst
16369 F: Documentation/s390/
16370 F: arch/s390/
16371 F: drivers/s390/
16372
16373 S390 COMMON I/O LAYER
16374 M: Vineeth Vijayan <vneethv@linux.ibm.com>
16375 M: Peter Oberparleiter <oberpar@linux.ibm.com>
16376 L: linux-s390@vger.kernel.org
16377 S: Supported
16378 W: http://www.ibm.com/developerworks/linux/linux390/
16379 F: drivers/s390/cio/
16380
16381 S390 DASD DRIVER
16382 M: Stefan Haberland <sth@linux.ibm.com>
16383 M: Jan Hoeppner <hoeppner@linux.ibm.com>
16384 L: linux-s390@vger.kernel.org
16385 S: Supported
16386 W: http://www.ibm.com/developerworks/linux/linux390/
16387 F: block/partitions/ibm.c
16388 F: drivers/s390/block/dasd*
16389 F: include/linux/dasd_mod.h
16390
16391 S390 IOMMU (PCI)
16392 M: Matthew Rosato <mjrosato@linux.ibm.com>
16393 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16394 L: linux-s390@vger.kernel.org
16395 S: Supported
16396 W: http://www.ibm.com/developerworks/linux/linux390/
16397 F: drivers/iommu/s390-iommu.c
16398
16399 S390 IUCV NETWORK LAYER
16400 M: Julian Wiedmann <jwi@linux.ibm.com>
16401 M: Karsten Graul <kgraul@linux.ibm.com>
16402 L: linux-s390@vger.kernel.org
16403 L: netdev@vger.kernel.org
16404 S: Supported
16405 W: http://www.ibm.com/developerworks/linux/linux390/
16406 F: drivers/s390/net/*iucv*
16407 F: include/net/iucv/
16408 F: net/iucv/
16409
16410 S390 NETWORK DRIVERS
16411 M: Julian Wiedmann <jwi@linux.ibm.com>
16412 M: Karsten Graul <kgraul@linux.ibm.com>
16413 L: linux-s390@vger.kernel.org
16414 L: netdev@vger.kernel.org
16415 S: Supported
16416 W: http://www.ibm.com/developerworks/linux/linux390/
16417 F: drivers/s390/net/
16418
16419 S390 PCI SUBSYSTEM
16420 M: Niklas Schnelle <schnelle@linux.ibm.com>
16421 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16422 L: linux-s390@vger.kernel.org
16423 S: Supported
16424 W: http://www.ibm.com/developerworks/linux/linux390/
16425 F: arch/s390/pci/
16426 F: drivers/pci/hotplug/s390_pci_hpc.c
16427 F: Documentation/s390/pci.rst
16428
16429 S390 VFIO AP DRIVER
16430 M: Tony Krowiak <akrowiak@linux.ibm.com>
16431 M: Halil Pasic <pasic@linux.ibm.com>
16432 M: Jason Herne <jjherne@linux.ibm.com>
16433 L: linux-s390@vger.kernel.org
16434 S: Supported
16435 W: http://www.ibm.com/developerworks/linux/linux390/
16436 F: Documentation/s390/vfio-ap.rst
16437 F: drivers/s390/crypto/vfio_ap_drv.c
16438 F: drivers/s390/crypto/vfio_ap_ops.c
16439 F: drivers/s390/crypto/vfio_ap_private.h
16440
16441 S390 VFIO-CCW DRIVER
16442 M: Eric Farman <farman@linux.ibm.com>
16443 M: Matthew Rosato <mjrosato@linux.ibm.com>
16444 R: Halil Pasic <pasic@linux.ibm.com>
16445 L: linux-s390@vger.kernel.org
16446 L: kvm@vger.kernel.org
16447 S: Supported
16448 F: Documentation/s390/vfio-ccw.rst
16449 F: drivers/s390/cio/vfio_ccw*
16450 F: include/uapi/linux/vfio_ccw.h
16451
16452 S390 VFIO-PCI DRIVER
16453 M: Matthew Rosato <mjrosato@linux.ibm.com>
16454 M: Eric Farman <farman@linux.ibm.com>
16455 L: linux-s390@vger.kernel.org
16456 L: kvm@vger.kernel.org
16457 S: Supported
16458 F: drivers/vfio/pci/vfio_pci_zdev.c
16459 F: include/uapi/linux/vfio_zdev.h
16460
16461 S390 ZCRYPT DRIVER
16462 M: Harald Freudenberger <freude@linux.ibm.com>
16463 L: linux-s390@vger.kernel.org
16464 S: Supported
16465 W: http://www.ibm.com/developerworks/linux/linux390/
16466 F: drivers/s390/crypto/
16467
16468 S390 ZFCP DRIVER
16469 M: Steffen Maier <maier@linux.ibm.com>
16470 M: Benjamin Block <bblock@linux.ibm.com>
16471 L: linux-s390@vger.kernel.org
16472 S: Supported
16473 W: http://www.ibm.com/developerworks/linux/linux390/
16474 F: drivers/s390/scsi/zfcp_*
16475
16476 S3C ADC BATTERY DRIVER
16477 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16478 L: linux-samsung-soc@vger.kernel.org
16479 S: Odd Fixes
16480 F: drivers/power/supply/s3c_adc_battery.c
16481 F: include/linux/s3c_adc_battery.h
16482
16483 S3C24XX SD/MMC Driver
16484 M: Ben Dooks <ben-linux@fluff.org>
16485 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16486 S: Supported
16487 F: drivers/mmc/host/s3cmci.*
16488
16489 SAA6588 RDS RECEIVER DRIVER
16490 M: Hans Verkuil <hverkuil@xs4all.nl>
16491 L: linux-media@vger.kernel.org
16492 S: Odd Fixes
16493 W: https://linuxtv.org
16494 T: git git://linuxtv.org/media_tree.git
16495 F: drivers/media/i2c/saa6588*
16496
16497 SAA7134 VIDEO4LINUX DRIVER
16498 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16499 L: linux-media@vger.kernel.org
16500 S: Odd fixes
16501 W: https://linuxtv.org
16502 T: git git://linuxtv.org/media_tree.git
16503 F: Documentation/driver-api/media/drivers/saa7134*
16504 F: drivers/media/pci/saa7134/
16505
16506 SAA7146 VIDEO4LINUX-2 DRIVER
16507 M: Hans Verkuil <hverkuil@xs4all.nl>
16508 L: linux-media@vger.kernel.org
16509 S: Maintained
16510 T: git git://linuxtv.org/media_tree.git
16511 F: drivers/media/common/saa7146/
16512 F: drivers/media/pci/saa7146/
16513 F: include/media/drv-intf/saa7146*
16514
16515 SAFESETID SECURITY MODULE
16516 M: Micah Morton <mortonm@chromium.org>
16517 S: Supported
16518 F: Documentation/admin-guide/LSM/SafeSetID.rst
16519 F: security/safesetid/
16520
16521 SAMSUNG AUDIO (ASoC) DRIVERS
16522 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16523 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16524 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16525 S: Supported
16526 F: Documentation/devicetree/bindings/sound/samsung*
16527 F: sound/soc/samsung/
16528
16529 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16530 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16531 L: linux-crypto@vger.kernel.org
16532 L: linux-samsung-soc@vger.kernel.org
16533 S: Maintained
16534 F: Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16535 F: drivers/crypto/exynos-rng.c
16536
16537 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16538 M: Łukasz Stelmach <l.stelmach@samsung.com>
16539 L: linux-samsung-soc@vger.kernel.org
16540 S: Maintained
16541 F: Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16542 F: drivers/char/hw_random/exynos-trng.c
16543
16544 SAMSUNG FRAMEBUFFER DRIVER
16545 M: Jingoo Han <jingoohan1@gmail.com>
16546 L: linux-fbdev@vger.kernel.org
16547 S: Maintained
16548 F: drivers/video/fbdev/s3c-fb.c
16549
16550 SAMSUNG INTERCONNECT DRIVERS
16551 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16552 M: Artur Świgoń <a.swigon@samsung.com>
16553 L: linux-pm@vger.kernel.org
16554 L: linux-samsung-soc@vger.kernel.org
16555 S: Supported
16556 F: drivers/interconnect/samsung/
16557
16558 SAMSUNG LAPTOP DRIVER
16559 M: Corentin Chary <corentin.chary@gmail.com>
16560 L: platform-driver-x86@vger.kernel.org
16561 S: Maintained
16562 F: drivers/platform/x86/samsung-laptop.c
16563
16564 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16565 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16566 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16567 L: linux-kernel@vger.kernel.org
16568 L: linux-samsung-soc@vger.kernel.org
16569 S: Supported
16570 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16571 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16572 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16573 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16574 F: drivers/clk/clk-s2mps11.c
16575 F: drivers/mfd/sec*.c
16576 F: drivers/regulator/s2m*.c
16577 F: drivers/regulator/s5m*.c
16578 F: drivers/rtc/rtc-s5m.c
16579 F: include/linux/mfd/samsung/
16580
16581 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16582 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16583 L: linux-media@vger.kernel.org
16584 L: linux-samsung-soc@vger.kernel.org
16585 S: Maintained
16586 F: drivers/media/platform/s3c-camif/
16587 F: include/media/drv-intf/s3c_camif.h
16588
16589 SAMSUNG S3FWRN5 NFC DRIVER
16590 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16591 M: Krzysztof Opasiak <k.opasiak@samsung.com>
16592 L: linux-nfc@lists.01.org (subscribers-only)
16593 S: Maintained
16594 F: Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16595 F: drivers/nfc/s3fwrn5
16596
16597 SAMSUNG S5C73M3 CAMERA DRIVER
16598 M: Andrzej Hajda <a.hajda@samsung.com>
16599 L: linux-media@vger.kernel.org
16600 S: Supported
16601 F: drivers/media/i2c/s5c73m3/*
16602
16603 SAMSUNG S5K5BAF CAMERA DRIVER
16604 M: Andrzej Hajda <a.hajda@samsung.com>
16605 L: linux-media@vger.kernel.org
16606 S: Supported
16607 F: drivers/media/i2c/s5k5baf.c
16608
16609 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16610 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16611 M: Vladimir Zapolskiy <vz@mleia.com>
16612 L: linux-crypto@vger.kernel.org
16613 L: linux-samsung-soc@vger.kernel.org
16614 S: Maintained
16615 F: Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16616 F: Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16617 F: drivers/crypto/s5p-sss.c
16618
16619 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16620 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16621 L: linux-media@vger.kernel.org
16622 S: Supported
16623 Q: https://patchwork.linuxtv.org/project/linux-media/list/
16624 F: drivers/media/platform/exynos4-is/
16625
16626 SAMSUNG SOC CLOCK DRIVERS
16627 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16628 M: Tomasz Figa <tomasz.figa@gmail.com>
16629 M: Chanwoo Choi <cw00.choi@samsung.com>
16630 L: linux-samsung-soc@vger.kernel.org
16631 S: Supported
16632 T: git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16633 F: Documentation/devicetree/bindings/clock/exynos*.txt
16634 F: Documentation/devicetree/bindings/clock/samsung,*.yaml
16635 F: Documentation/devicetree/bindings/clock/samsung,s3c*
16636 F: Documentation/devicetree/bindings/clock/samsung,s5p*
16637 F: drivers/clk/samsung/
16638 F: include/dt-bindings/clock/exynos*.h
16639 F: include/dt-bindings/clock/s3c*.h
16640 F: include/dt-bindings/clock/s5p*.h
16641 F: include/dt-bindings/clock/samsung,*.h
16642 F: include/linux/clk/samsung.h
16643 F: include/linux/platform_data/clk-s3c2410.h
16644
16645 SAMSUNG SPI DRIVERS
16646 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16647 M: Andi Shyti <andi@etezian.org>
16648 L: linux-spi@vger.kernel.org
16649 L: linux-samsung-soc@vger.kernel.org
16650 S: Maintained
16651 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
16652 F: drivers/spi/spi-s3c*
16653 F: include/linux/platform_data/spi-s3c64xx.h
16654 F: include/linux/spi/s3c24xx-fiq.h
16655
16656 SAMSUNG SXGBE DRIVERS
16657 M: Byungho An <bh74.an@samsung.com>
16658 L: netdev@vger.kernel.org
16659 S: Supported
16660 F: drivers/net/ethernet/samsung/sxgbe/
16661
16662 SAMSUNG THERMAL DRIVER
16663 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16664 L: linux-pm@vger.kernel.org
16665 L: linux-samsung-soc@vger.kernel.org
16666 S: Supported
16667 T: git https://github.com/lmajewski/linux-samsung-thermal.git
16668 F: drivers/thermal/samsung/
16669
16670 SAMSUNG USB2 PHY DRIVER
16671 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16672 L: linux-kernel@vger.kernel.org
16673 S: Supported
16674 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
16675 F: Documentation/driver-api/phy/samsung-usb2.rst
16676 F: drivers/phy/samsung/phy-exynos4210-usb2.c
16677 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
16678 F: drivers/phy/samsung/phy-exynos5250-usb2.c
16679 F: drivers/phy/samsung/phy-s5pv210-usb2.c
16680 F: drivers/phy/samsung/phy-samsung-usb2.c
16681 F: drivers/phy/samsung/phy-samsung-usb2.h
16682
16683 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16684 M: Paul Barker <paul.barker@sancloud.com>
16685 R: Marc Murphy <marc.murphy@sancloud.com>
16686 S: Supported
16687 F: arch/arm/boot/dts/am335x-sancloud*
16688
16689 SC1200 WDT DRIVER
16690 M: Zwane Mwaikambo <zwanem@gmail.com>
16691 S: Maintained
16692 F: drivers/watchdog/sc1200wdt.c
16693
16694 SCHEDULER
16695 M: Ingo Molnar <mingo@redhat.com>
16696 M: Peter Zijlstra <peterz@infradead.org>
16697 M: Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16698 M: Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16699 R: Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16700 R: Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16701 R: Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16702 R: Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16703 R: Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16704 L: linux-kernel@vger.kernel.org
16705 S: Maintained
16706 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16707 F: include/linux/preempt.h
16708 F: include/linux/sched.h
16709 F: include/linux/wait.h
16710 F: include/uapi/linux/sched.h
16711 F: kernel/sched/
16712
16713 SCR24X CHIP CARD INTERFACE DRIVER
16714 M: Lubomir Rintel <lkundrak@v3.sk>
16715 S: Supported
16716 F: drivers/char/pcmcia/scr24x_cs.c
16717
16718 SCSI RDMA PROTOCOL (SRP) INITIATOR
16719 M: Bart Van Assche <bvanassche@acm.org>
16720 L: linux-rdma@vger.kernel.org
16721 S: Supported
16722 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16723 F: drivers/infiniband/ulp/srp/
16724 F: include/scsi/srp.h
16725
16726 SCSI RDMA PROTOCOL (SRP) TARGET
16727 M: Bart Van Assche <bvanassche@acm.org>
16728 L: linux-rdma@vger.kernel.org
16729 L: target-devel@vger.kernel.org
16730 S: Supported
16731 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16732 F: drivers/infiniband/ulp/srpt/
16733
16734 SCSI SG DRIVER
16735 M: Doug Gilbert <dgilbert@interlog.com>
16736 L: linux-scsi@vger.kernel.org
16737 S: Maintained
16738 W: http://sg.danny.cz/sg
16739 F: Documentation/scsi/scsi-generic.rst
16740 F: drivers/scsi/sg.c
16741 F: include/scsi/sg.h
16742
16743 SCSI SUBSYSTEM
16744 M: "James E.J. Bottomley" <jejb@linux.ibm.com>
16745 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16746 L: linux-scsi@vger.kernel.org
16747 S: Maintained
16748 Q: https://patchwork.kernel.org/project/linux-scsi/list/
16749 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16750 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16751 F: Documentation/devicetree/bindings/scsi/
16752 F: drivers/scsi/
16753 F: include/scsi/
16754
16755 SCSI TAPE DRIVER
16756 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16757 L: linux-scsi@vger.kernel.org
16758 S: Maintained
16759 F: Documentation/scsi/st.rst
16760 F: drivers/scsi/st.*
16761 F: drivers/scsi/st_*.h
16762
16763 SCSI TARGET CORE USER DRIVER
16764 M: Bodo Stroesser <bostroesser@gmail.com>
16765 L: linux-scsi@vger.kernel.org
16766 L: target-devel@vger.kernel.org
16767 S: Supported
16768 F: Documentation/target/tcmu-design.rst
16769 F: drivers/target/target_core_user.c
16770 F: include/uapi/linux/target_core_user.h
16771
16772 SCSI TARGET SUBSYSTEM
16773 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16774 L: linux-scsi@vger.kernel.org
16775 L: target-devel@vger.kernel.org
16776 S: Supported
16777 W: http://www.linux-iscsi.org
16778 Q: https://patchwork.kernel.org/project/target-devel/list/
16779 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16780 F: Documentation/target/
16781 F: drivers/target/
16782 F: include/target/
16783
16784 SCTP PROTOCOL
16785 M: Vlad Yasevich <vyasevich@gmail.com>
16786 M: Neil Horman <nhorman@tuxdriver.com>
16787 M: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16788 L: linux-sctp@vger.kernel.org
16789 S: Maintained
16790 W: http://lksctp.sourceforge.net
16791 F: Documentation/networking/sctp.rst
16792 F: include/linux/sctp.h
16793 F: include/net/sctp/
16794 F: include/uapi/linux/sctp.h
16795 F: net/sctp/
16796
16797 SCx200 CPU SUPPORT
16798 M: Jim Cromie <jim.cromie@gmail.com>
16799 S: Odd Fixes
16800 F: Documentation/i2c/busses/scx200_acb.rst
16801 F: arch/x86/platform/scx200/
16802 F: drivers/i2c/busses/scx200*
16803 F: drivers/mtd/maps/scx200_docflash.c
16804 F: drivers/watchdog/scx200_wdt.c
16805 F: include/linux/scx200.h
16806
16807 SCx200 GPIO DRIVER
16808 M: Jim Cromie <jim.cromie@gmail.com>
16809 S: Maintained
16810 F: drivers/char/scx200_gpio.c
16811 F: include/linux/scx200_gpio.h
16812
16813 SCx200 HRT CLOCKSOURCE DRIVER
16814 M: Jim Cromie <jim.cromie@gmail.com>
16815 S: Maintained
16816 F: drivers/clocksource/scx200_hrt.c
16817
16818 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16819 M: Sascha Sommer <saschasommer@freenet.de>
16820 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16821 S: Maintained
16822 F: drivers/mmc/host/sdricoh_cs.c
16823
16824 SECO BOARDS CEC DRIVER
16825 M: Ettore Chimenti <ek5.chimenti@gmail.com>
16826 S: Maintained
16827 F: drivers/media/cec/platform/seco/seco-cec.c
16828 F: drivers/media/cec/platform/seco/seco-cec.h
16829
16830 SECURE COMPUTING
16831 M: Kees Cook <keescook@chromium.org>
16832 R: Andy Lutomirski <luto@amacapital.net>
16833 R: Will Drewry <wad@chromium.org>
16834 S: Supported
16835 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16836 F: Documentation/userspace-api/seccomp_filter.rst
16837 F: include/linux/seccomp.h
16838 F: include/uapi/linux/seccomp.h
16839 F: kernel/seccomp.c
16840 F: tools/testing/selftests/kselftest_harness.h
16841 F: tools/testing/selftests/seccomp/*
16842 K: \bsecure_computing
16843 K: \bTIF_SECCOMP\b
16844
16845 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16846 M: Al Cooper <alcooperx@gmail.com>
16847 L: linux-mmc@vger.kernel.org
16848 L: bcm-kernel-feedback-list@broadcom.com
16849 S: Maintained
16850 F: drivers/mmc/host/sdhci-brcmstb*
16851
16852 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16853 M: Adrian Hunter <adrian.hunter@intel.com>
16854 L: linux-mmc@vger.kernel.org
16855 S: Maintained
16856 F: drivers/mmc/host/sdhci*
16857 F: include/linux/mmc/sdhci*
16858
16859 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16860 M: Eugen Hristev <eugen.hristev@microchip.com>
16861 L: linux-mmc@vger.kernel.org
16862 S: Supported
16863 F: drivers/mmc/host/sdhci-of-at91.c
16864
16865 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16866 M: Ben Dooks <ben-linux@fluff.org>
16867 M: Jaehoon Chung <jh80.chung@samsung.com>
16868 L: linux-mmc@vger.kernel.org
16869 S: Maintained
16870 F: drivers/mmc/host/sdhci-s3c*
16871
16872 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16873 M: Viresh Kumar <vireshk@kernel.org>
16874 L: linux-mmc@vger.kernel.org
16875 S: Maintained
16876 F: drivers/mmc/host/sdhci-spear.c
16877
16878 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16879 M: Kishon Vijay Abraham I <kishon@ti.com>
16880 L: linux-mmc@vger.kernel.org
16881 S: Maintained
16882 F: drivers/mmc/host/sdhci-omap.c
16883
16884 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16885 M: Jonathan Derrick <jonathan.derrick@intel.com>
16886 M: Revanth Rajashekar <revanth.rajashekar@intel.com>
16887 L: linux-block@vger.kernel.org
16888 S: Supported
16889 F: block/opal_proto.h
16890 F: block/sed*
16891 F: include/linux/sed*
16892 F: include/uapi/linux/sed*
16893
16894 SECURITY CONTACT
16895 M: Security Officers <security@kernel.org>
16896 S: Supported
16897 F: Documentation/admin-guide/security-bugs.rst
16898
16899 SECURITY SUBSYSTEM
16900 M: James Morris <jmorris@namei.org>
16901 M: "Serge E. Hallyn" <serge@hallyn.com>
16902 L: linux-security-module@vger.kernel.org (suggested Cc:)
16903 S: Supported
16904 W: http://kernsec.org/
16905 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16906 F: security/
16907 X: security/selinux/
16908
16909 SELINUX SECURITY MODULE
16910 M: Paul Moore <paul@paul-moore.com>
16911 M: Stephen Smalley <stephen.smalley.work@gmail.com>
16912 M: Eric Paris <eparis@parisplace.org>
16913 L: selinux@vger.kernel.org
16914 S: Supported
16915 W: https://selinuxproject.org
16916 W: https://github.com/SELinuxProject
16917 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16918 F: Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16919 F: Documentation/ABI/obsolete/sysfs-selinux-disable
16920 F: Documentation/admin-guide/LSM/SELinux.rst
16921 F: include/trace/events/avc.h
16922 F: include/uapi/linux/selinux_netlink.h
16923 F: scripts/selinux/
16924 F: security/selinux/
16925
16926 SENSABLE PHANTOM
16927 M: Jiri Slaby <jirislaby@kernel.org>
16928 S: Maintained
16929 F: drivers/misc/phantom.c
16930 F: include/uapi/linux/phantom.h
16931
16932 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16933 M: Tomasz Duszynski <tomasz.duszynski@octakon.com>
16934 S: Maintained
16935 F: Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16936 F: drivers/iio/chemical/scd30.h
16937 F: drivers/iio/chemical/scd30_core.c
16938 F: drivers/iio/chemical/scd30_i2c.c
16939 F: drivers/iio/chemical/scd30_serial.c
16940
16941 SENSIRION SGP40 GAS SENSOR DRIVER
16942 M: Andreas Klinger <ak@it-klinger.de>
16943 S: Maintained
16944 F: Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16945 F: drivers/iio/chemical/sgp40.c
16946
16947 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16948 M: Tomasz Duszynski <tduszyns@gmail.com>
16949 S: Maintained
16950 F: Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16951 F: drivers/iio/chemical/sps30.c
16952 F: drivers/iio/chemical/sps30_i2c.c
16953 F: drivers/iio/chemical/sps30_serial.c
16954
16955 SERIAL DEVICE BUS
16956 M: Rob Herring <robh@kernel.org>
16957 L: linux-serial@vger.kernel.org
16958 S: Maintained
16959 F: Documentation/devicetree/bindings/serial/serial.yaml
16960 F: drivers/tty/serdev/
16961 F: include/linux/serdev.h
16962
16963 SERIAL DRIVERS
16964 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16965 L: linux-serial@vger.kernel.org
16966 S: Maintained
16967 F: Documentation/devicetree/bindings/serial/
16968 F: drivers/tty/serial/
16969
16970 SERIAL IR RECEIVER
16971 M: Sean Young <sean@mess.org>
16972 L: linux-media@vger.kernel.org
16973 S: Maintained
16974 F: drivers/media/rc/serial_ir.c
16975
16976 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16977 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16978 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16979 S: Maintained
16980 F: Documentation/devicetree/bindings/slimbus/
16981 F: drivers/slimbus/
16982 F: include/linux/slimbus.h
16983
16984 SFC NETWORK DRIVER
16985 M: Edward Cree <ecree.xilinx@gmail.com>
16986 M: Martin Habets <habetsm.xilinx@gmail.com>
16987 L: netdev@vger.kernel.org
16988 S: Supported
16989 F: drivers/net/ethernet/sfc/
16990
16991 SFF/SFP/SFP+ MODULE SUPPORT
16992 M: Russell King <linux@armlinux.org.uk>
16993 L: netdev@vger.kernel.org
16994 S: Maintained
16995 F: drivers/net/phy/phylink.c
16996 F: drivers/net/phy/sfp*
16997 F: include/linux/mdio/mdio-i2c.h
16998 F: include/linux/phylink.h
16999 F: include/linux/sfp.h
17000 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)
17001
17002 SGI GRU DRIVER
17003 M: Dimitri Sivanich <dimitri.sivanich@hpe.com>
17004 S: Maintained
17005 F: drivers/misc/sgi-gru/
17006
17007 SGI XP/XPC/XPNET DRIVER
17008 M: Robin Holt <robinmholt@gmail.com>
17009 M: Steve Wahl <steve.wahl@hpe.com>
17010 R: Mike Travis <mike.travis@hpe.com>
17011 S: Maintained
17012 F: drivers/misc/sgi-xp/
17013
17014 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17015 M: Karsten Graul <kgraul@linux.ibm.com>
17016 L: linux-s390@vger.kernel.org
17017 S: Supported
17018 W: http://www.ibm.com/developerworks/linux/linux390/
17019 F: net/smc/
17020
17021 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17022 M: Linus Walleij <linus.walleij@linaro.org>
17023 L: linux-iio@vger.kernel.org
17024 S: Maintained
17025 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17026 F: Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17027 F: drivers/iio/light/gp2ap002.c
17028
17029 SHARP RJ54N1CB0C SENSOR DRIVER
17030 M: Jacopo Mondi <jacopo@jmondi.org>
17031 L: linux-media@vger.kernel.org
17032 S: Odd fixes
17033 T: git git://linuxtv.org/media_tree.git
17034 F: drivers/media/i2c/rj54n1cb0c.c
17035 F: include/media/i2c/rj54n1cb0c.h
17036
17037 SH_VOU V4L2 OUTPUT DRIVER
17038 L: linux-media@vger.kernel.org
17039 S: Orphan
17040 F: drivers/media/platform/sh_vou.c
17041 F: include/media/drv-intf/sh_vou.h
17042
17043 SI2157 MEDIA DRIVER
17044 M: Antti Palosaari <crope@iki.fi>
17045 L: linux-media@vger.kernel.org
17046 S: Maintained
17047 W: https://linuxtv.org
17048 W: http://palosaari.fi/linux/
17049 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17050 T: git git://linuxtv.org/anttip/media_tree.git
17051 F: drivers/media/tuners/si2157*
17052
17053 SI2165 MEDIA DRIVER
17054 M: Matthias Schwarzott <zzam@gentoo.org>
17055 L: linux-media@vger.kernel.org
17056 S: Maintained
17057 W: https://linuxtv.org
17058 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17059 F: drivers/media/dvb-frontends/si2165*
17060
17061 SI2168 MEDIA DRIVER
17062 M: Antti Palosaari <crope@iki.fi>
17063 L: linux-media@vger.kernel.org
17064 S: Maintained
17065 W: https://linuxtv.org
17066 W: http://palosaari.fi/linux/
17067 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17068 T: git git://linuxtv.org/anttip/media_tree.git
17069 F: drivers/media/dvb-frontends/si2168*
17070
17071 SI470X FM RADIO RECEIVER I2C DRIVER
17072 M: Hans Verkuil <hverkuil@xs4all.nl>
17073 L: linux-media@vger.kernel.org
17074 S: Odd Fixes
17075 W: https://linuxtv.org
17076 T: git git://linuxtv.org/media_tree.git
17077 F: drivers/media/radio/si470x/radio-si470x-i2c.c
17078
17079 SI470X FM RADIO RECEIVER USB DRIVER
17080 M: Hans Verkuil <hverkuil@xs4all.nl>
17081 L: linux-media@vger.kernel.org
17082 S: Maintained
17083 W: https://linuxtv.org
17084 T: git git://linuxtv.org/media_tree.git
17085 F: drivers/media/radio/si470x/radio-si470x-common.c
17086 F: drivers/media/radio/si470x/radio-si470x-usb.c
17087 F: drivers/media/radio/si470x/radio-si470x.h
17088
17089 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17090 M: Eduardo Valentin <edubezval@gmail.com>
17091 L: linux-media@vger.kernel.org
17092 S: Odd Fixes
17093 W: https://linuxtv.org
17094 T: git git://linuxtv.org/media_tree.git
17095 F: drivers/media/radio/si4713/si4713.?
17096
17097 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17098 M: Eduardo Valentin <edubezval@gmail.com>
17099 L: linux-media@vger.kernel.org
17100 S: Odd Fixes
17101 W: https://linuxtv.org
17102 T: git git://linuxtv.org/media_tree.git
17103 F: drivers/media/radio/si4713/radio-platform-si4713.c
17104
17105 SI4713 FM RADIO TRANSMITTER USB DRIVER
17106 M: Hans Verkuil <hverkuil@xs4all.nl>
17107 L: linux-media@vger.kernel.org
17108 S: Maintained
17109 W: https://linuxtv.org
17110 T: git git://linuxtv.org/media_tree.git
17111 F: drivers/media/radio/si4713/radio-usb-si4713.c
17112
17113 SIANO DVB DRIVER
17114 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17115 L: linux-media@vger.kernel.org
17116 S: Odd fixes
17117 W: https://linuxtv.org
17118 T: git git://linuxtv.org/media_tree.git
17119 F: drivers/media/common/siano/
17120 F: drivers/media/mmc/siano/
17121 F: drivers/media/usb/siano/
17122 F: drivers/media/usb/siano/
17123
17124 SIFIVE DRIVERS
17125 M: Palmer Dabbelt <palmer@dabbelt.com>
17126 M: Paul Walmsley <paul.walmsley@sifive.com>
17127 L: linux-riscv@lists.infradead.org
17128 S: Supported
17129 T: git git://github.com/sifive/riscv-linux.git
17130 N: sifive
17131 K: [^@]sifive
17132
17133 SIFIVE FU540 SYSTEM-ON-CHIP
17134 M: Paul Walmsley <paul.walmsley@sifive.com>
17135 M: Palmer Dabbelt <palmer@dabbelt.com>
17136 L: linux-riscv@lists.infradead.org
17137 S: Supported
17138 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17139 N: fu540
17140 K: fu540
17141
17142 SIFIVE PDMA DRIVER
17143 M: Green Wan <green.wan@sifive.com>
17144 S: Maintained
17145 F: Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17146 F: drivers/dma/sf-pdma/
17147
17148 SILEAD TOUCHSCREEN DRIVER
17149 M: Hans de Goede <hdegoede@redhat.com>
17150 L: linux-input@vger.kernel.org
17151 L: platform-driver-x86@vger.kernel.org
17152 S: Maintained
17153 F: drivers/input/touchscreen/silead.c
17154 F: drivers/platform/x86/touchscreen_dmi.c
17155
17156 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17157 M: Jérôme Pouiller <jerome.pouiller@silabs.com>
17158 S: Supported
17159 F: drivers/staging/wfx/
17160
17161 SILICON MOTION SM712 FRAME BUFFER DRIVER
17162 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17163 M: Teddy Wang <teddy.wang@siliconmotion.com>
17164 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17165 L: linux-fbdev@vger.kernel.org
17166 S: Maintained
17167 F: Documentation/fb/sm712fb.rst
17168 F: drivers/video/fbdev/sm712*
17169
17170 SILVACO I3C DUAL-ROLE MASTER
17171 M: Miquel Raynal <miquel.raynal@bootlin.com>
17172 M: Conor Culhane <conor.culhane@silvaco.com>
17173 L: linux-i3c@lists.infradead.org
17174 S: Maintained
17175 F: Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17176 F: drivers/i3c/master/svc-i3c-master.c
17177
17178 SIMPLEFB FB DRIVER
17179 M: Hans de Goede <hdegoede@redhat.com>
17180 L: linux-fbdev@vger.kernel.org
17181 S: Maintained
17182 F: Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17183 F: drivers/video/fbdev/simplefb.c
17184 F: include/linux/platform_data/simplefb.h
17185
17186 SIMTEC EB110ATX (Chalice CATS)
17187 M: Simtec Linux Team <linux@simtec.co.uk>
17188 S: Supported
17189 W: http://www.simtec.co.uk/products/EB110ATX/
17190
17191 SIMTEC EB2410ITX (BAST)
17192 M: Simtec Linux Team <linux@simtec.co.uk>
17193 S: Supported
17194 W: http://www.simtec.co.uk/products/EB2410ITX/
17195 F: arch/arm/mach-s3c/bast-ide.c
17196 F: arch/arm/mach-s3c/bast-irq.c
17197 F: arch/arm/mach-s3c/mach-bast.c
17198
17199 SIOX
17200 M: Thorsten Scherer <t.scherer@eckelmann.de>
17201 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17202 R: Pengutronix Kernel Team <kernel@pengutronix.de>
17203 S: Supported
17204 F: drivers/gpio/gpio-siox.c
17205 F: drivers/siox/*
17206 F: include/trace/events/siox.h
17207
17208 SIPHASH PRF ROUTINES
17209 M: Jason A. Donenfeld <Jason@zx2c4.com>
17210 S: Maintained
17211 F: include/linux/siphash.h
17212 F: lib/siphash.c
17213 F: lib/test_siphash.c
17214
17215 SIS 190 ETHERNET DRIVER
17216 M: Francois Romieu <romieu@fr.zoreil.com>
17217 L: netdev@vger.kernel.org
17218 S: Maintained
17219 F: drivers/net/ethernet/sis/sis190.c
17220
17221 SIS 900/7016 FAST ETHERNET DRIVER
17222 M: Daniele Venzano <venza@brownhat.org>
17223 L: netdev@vger.kernel.org
17224 S: Maintained
17225 W: http://www.brownhat.org/sis900.html
17226 F: drivers/net/ethernet/sis/sis900.*
17227
17228 SIS FRAMEBUFFER DRIVER
17229 M: Thomas Winischhofer <thomas@winischhofer.net>
17230 S: Maintained
17231 W: http://www.winischhofer.net/linuxsisvga.shtml
17232 F: Documentation/fb/sisfb.rst
17233 F: drivers/video/fbdev/sis/
17234 F: include/video/sisfb.h
17235
17236 SIS I2C TOUCHSCREEN DRIVER
17237 M: Mika Penttilä <mika.penttila@nextfour.com>
17238 L: linux-input@vger.kernel.org
17239 S: Maintained
17240 F: Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17241 F: drivers/input/touchscreen/sis_i2c.c
17242
17243 SIS USB2VGA DRIVER
17244 M: Thomas Winischhofer <thomas@winischhofer.net>
17245 S: Maintained
17246 W: http://www.winischhofer.at/linuxsisusbvga.shtml
17247 F: drivers/usb/misc/sisusbvga/
17248
17249 SLAB ALLOCATOR
17250 M: Christoph Lameter <cl@linux.com>
17251 M: Pekka Enberg <penberg@kernel.org>
17252 M: David Rientjes <rientjes@google.com>
17253 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
17254 M: Andrew Morton <akpm@linux-foundation.org>
17255 M: Vlastimil Babka <vbabka@suse.cz>
17256 L: linux-mm@kvack.org
17257 S: Maintained
17258 F: include/linux/sl?b*.h
17259 F: mm/sl?b*
17260
17261 SLEEPABLE READ-COPY UPDATE (SRCU)
17262 M: Lai Jiangshan <jiangshanlai@gmail.com>
17263 M: "Paul E. McKenney" <paulmck@kernel.org>
17264 M: Josh Triplett <josh@joshtriplett.org>
17265 R: Steven Rostedt <rostedt@goodmis.org>
17266 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17267 L: rcu@vger.kernel.org
17268 S: Supported
17269 W: http://www.rdrop.com/users/paulmck/RCU/
17270 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17271 F: include/linux/srcu*.h
17272 F: kernel/rcu/srcu*.c
17273
17274 SMACK SECURITY MODULE
17275 M: Casey Schaufler <casey@schaufler-ca.com>
17276 L: linux-security-module@vger.kernel.org
17277 S: Maintained
17278 W: http://schaufler-ca.com
17279 T: git git://github.com/cschaufler/smack-next
17280 F: Documentation/admin-guide/LSM/Smack.rst
17281 F: security/smack/
17282
17283 SMC91x ETHERNET DRIVER
17284 M: Nicolas Pitre <nico@fluxnic.net>
17285 S: Odd Fixes
17286 F: drivers/net/ethernet/smsc/smc91x.*
17287
17288 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17289 M: Mark Rutland <mark.rutland@arm.com>
17290 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17291 M: Sudeep Holla <sudeep.holla@arm.com>
17292 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17293 S: Maintained
17294 F: drivers/firmware/smccc/
17295 F: include/linux/arm-smccc.h
17296
17297 SMM665 HARDWARE MONITOR DRIVER
17298 M: Guenter Roeck <linux@roeck-us.net>
17299 L: linux-hwmon@vger.kernel.org
17300 S: Maintained
17301 F: Documentation/hwmon/smm665.rst
17302 F: drivers/hwmon/smm665.c
17303
17304 SMSC EMC2103 HARDWARE MONITOR DRIVER
17305 M: Steve Glendinning <steve.glendinning@shawell.net>
17306 L: linux-hwmon@vger.kernel.org
17307 S: Maintained
17308 F: Documentation/hwmon/emc2103.rst
17309 F: drivers/hwmon/emc2103.c
17310
17311 SMSC SCH5627 HARDWARE MONITOR DRIVER
17312 M: Hans de Goede <hdegoede@redhat.com>
17313 L: linux-hwmon@vger.kernel.org
17314 S: Supported
17315 F: Documentation/hwmon/sch5627.rst
17316 F: drivers/hwmon/sch5627.c
17317
17318 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17319 M: Steve Glendinning <steve.glendinning@shawell.net>
17320 L: linux-fbdev@vger.kernel.org
17321 S: Maintained
17322 F: drivers/video/fbdev/smscufx.c
17323
17324 SMSC47B397 HARDWARE MONITOR DRIVER
17325 M: Jean Delvare <jdelvare@suse.com>
17326 L: linux-hwmon@vger.kernel.org
17327 S: Maintained
17328 F: Documentation/hwmon/smsc47b397.rst
17329 F: drivers/hwmon/smsc47b397.c
17330
17331 SMSC911x ETHERNET DRIVER
17332 M: Steve Glendinning <steve.glendinning@shawell.net>
17333 L: netdev@vger.kernel.org
17334 S: Maintained
17335 F: drivers/net/ethernet/smsc/smsc911x.*
17336 F: include/linux/smsc911x.h
17337
17338 SMSC9420 PCI ETHERNET DRIVER
17339 M: Steve Glendinning <steve.glendinning@shawell.net>
17340 L: netdev@vger.kernel.org
17341 S: Maintained
17342 F: drivers/net/ethernet/smsc/smsc9420.*
17343
17344 SOCIONEXT (SNI) AVE NETWORK DRIVER
17345 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17346 L: netdev@vger.kernel.org
17347 S: Maintained
17348 F: Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17349 F: drivers/net/ethernet/socionext/sni_ave.c
17350
17351 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17352 M: Jassi Brar <jaswinder.singh@linaro.org>
17353 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
17354 L: netdev@vger.kernel.org
17355 S: Maintained
17356 F: Documentation/devicetree/bindings/net/socionext-netsec.txt
17357 F: drivers/net/ethernet/socionext/netsec.c
17358
17359 SOCIONEXT (SNI) Synquacer SPI DRIVER
17360 M: Masahisa Kojima <masahisa.kojima@linaro.org>
17361 M: Jassi Brar <jaswinder.singh@linaro.org>
17362 L: linux-spi@vger.kernel.org
17363 S: Maintained
17364 F: Documentation/devicetree/bindings/spi/spi-synquacer.txt
17365 F: drivers/spi/spi-synquacer.c
17366
17367 SOCIONEXT SYNQUACER I2C DRIVER
17368 M: Ard Biesheuvel <ardb@kernel.org>
17369 L: linux-i2c@vger.kernel.org
17370 S: Maintained
17371 F: Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17372 F: drivers/i2c/busses/i2c-synquacer.c
17373
17374 SOCIONEXT UNIPHIER SOUND DRIVER
17375 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17376 S: Orphan
17377 F: sound/soc/uniphier/
17378
17379 SOEKRIS NET48XX LED SUPPORT
17380 M: Chris Boot <bootc@bootc.net>
17381 S: Maintained
17382 F: drivers/leds/leds-net48xx.c
17383
17384 SOFT-IWARP DRIVER (siw)
17385 M: Bernard Metzler <bmt@zurich.ibm.com>
17386 L: linux-rdma@vger.kernel.org
17387 S: Supported
17388 F: drivers/infiniband/sw/siw/
17389 F: include/uapi/rdma/siw-abi.h
17390
17391 SOFT-ROCE DRIVER (rxe)
17392 M: Zhu Yanjun <zyjzyj2000@gmail.com>
17393 L: linux-rdma@vger.kernel.org
17394 S: Supported
17395 F: drivers/infiniband/sw/rxe/
17396 F: include/uapi/rdma/rdma_user_rxe.h
17397
17398 SOFTLOGIC 6x10 MPEG CODEC
17399 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17400 M: Anton Sviridenko <anton@corp.bluecherry.net>
17401 M: Andrey Utkin <andrey_utkin@fastmail.com>
17402 M: Ismael Luceno <ismael@iodev.co.uk>
17403 L: linux-media@vger.kernel.org
17404 S: Supported
17405 F: drivers/media/pci/solo6x10/
17406
17407 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17408 M: James Morse <james.morse@arm.com>
17409 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17410 S: Maintained
17411 F: Documentation/devicetree/bindings/arm/firmware/sdei.txt
17412 F: drivers/firmware/arm_sdei.c
17413 F: include/linux/arm_sdei.h
17414 F: include/uapi/linux/arm_sdei.h
17415
17416 SOFTWARE NODES
17417 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17418 R: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17419 L: linux-acpi@vger.kernel.org
17420 S: Maintained
17421 F: drivers/base/swnode.c
17422
17423 SOFTWARE RAID (Multiple Disks) SUPPORT
17424 M: Song Liu <song@kernel.org>
17425 L: linux-raid@vger.kernel.org
17426 S: Supported
17427 T: git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17428 F: drivers/md/Kconfig
17429 F: drivers/md/Makefile
17430 F: drivers/md/md*
17431 F: drivers/md/raid*
17432 F: include/linux/raid/
17433 F: include/uapi/linux/raid/
17434
17435 SOLIDRUN CLEARFOG SUPPORT
17436 M: Russell King <linux@armlinux.org.uk>
17437 S: Maintained
17438 F: arch/arm/boot/dts/armada-388-clearfog*
17439 F: arch/arm/boot/dts/armada-38x-solidrun-*
17440
17441 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17442 M: Russell King <linux@armlinux.org.uk>
17443 S: Maintained
17444 F: arch/arm/boot/dts/imx6*-cubox-i*
17445 F: arch/arm/boot/dts/imx6*-hummingboard*
17446 F: arch/arm/boot/dts/imx6*-sr-*
17447
17448 SONIC NETWORK DRIVER
17449 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17450 L: netdev@vger.kernel.org
17451 S: Maintained
17452 F: drivers/net/ethernet/natsemi/sonic.*
17453
17454 SONICS SILICON BACKPLANE DRIVER (SSB)
17455 M: Michael Buesch <m@bues.ch>
17456 L: linux-wireless@vger.kernel.org
17457 S: Maintained
17458 F: drivers/ssb/
17459 F: include/linux/ssb/
17460
17461 SONY IMX208 SENSOR DRIVER
17462 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17463 L: linux-media@vger.kernel.org
17464 S: Maintained
17465 T: git git://linuxtv.org/media_tree.git
17466 F: drivers/media/i2c/imx208.c
17467
17468 SONY IMX214 SENSOR DRIVER
17469 M: Ricardo Ribalda <ribalda@kernel.org>
17470 L: linux-media@vger.kernel.org
17471 S: Maintained
17472 T: git git://linuxtv.org/media_tree.git
17473 F: Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17474 F: drivers/media/i2c/imx214.c
17475
17476 SONY IMX219 SENSOR DRIVER
17477 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
17478 L: linux-media@vger.kernel.org
17479 S: Maintained
17480 T: git git://linuxtv.org/media_tree.git
17481 F: Documentation/devicetree/bindings/media/i2c/imx219.yaml
17482 F: drivers/media/i2c/imx219.c
17483
17484 SONY IMX258 SENSOR DRIVER
17485 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17486 L: linux-media@vger.kernel.org
17487 S: Maintained
17488 T: git git://linuxtv.org/media_tree.git
17489 F: Documentation/devicetree/bindings/media/i2c/imx258.yaml
17490 F: drivers/media/i2c/imx258.c
17491
17492 SONY IMX274 SENSOR DRIVER
17493 M: Leon Luo <leonl@leopardimaging.com>
17494 L: linux-media@vger.kernel.org
17495 S: Maintained
17496 T: git git://linuxtv.org/media_tree.git
17497 F: Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17498 F: drivers/media/i2c/imx274.c
17499
17500 SONY IMX290 SENSOR DRIVER
17501 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17502 L: linux-media@vger.kernel.org
17503 S: Maintained
17504 T: git git://linuxtv.org/media_tree.git
17505 F: Documentation/devicetree/bindings/media/i2c/imx290.txt
17506 F: drivers/media/i2c/imx290.c
17507
17508 SONY IMX319 SENSOR DRIVER
17509 M: Bingbu Cao <bingbu.cao@intel.com>
17510 L: linux-media@vger.kernel.org
17511 S: Maintained
17512 T: git git://linuxtv.org/media_tree.git
17513 F: drivers/media/i2c/imx319.c
17514
17515 SONY IMX334 SENSOR DRIVER
17516 M: Paul J. Murphy <paul.j.murphy@intel.com>
17517 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17518 L: linux-media@vger.kernel.org
17519 S: Maintained
17520 T: git git://linuxtv.org/media_tree.git
17521 F: Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17522 F: drivers/media/i2c/imx334.c
17523
17524 SONY IMX335 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
17528 S: Maintained
17529 T: git git://linuxtv.org/media_tree.git
17530 F: Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17531 F: drivers/media/i2c/imx335.c
17532
17533 SONY IMX355 SENSOR DRIVER
17534 M: Tianshu Qiu <tian.shu.qiu@intel.com>
17535 L: linux-media@vger.kernel.org
17536 S: Maintained
17537 T: git git://linuxtv.org/media_tree.git
17538 F: drivers/media/i2c/imx355.c
17539
17540 SONY IMX412 SENSOR DRIVER
17541 M: Paul J. Murphy <paul.j.murphy@intel.com>
17542 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17543 L: linux-media@vger.kernel.org
17544 S: Maintained
17545 T: git git://linuxtv.org/media_tree.git
17546 F: Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17547 F: drivers/media/i2c/imx412.c
17548
17549 SONY MEMORYSTICK SUBSYSTEM
17550 M: Maxim Levitsky <maximlevitsky@gmail.com>
17551 M: Alex Dubov <oakad@yahoo.com>
17552 M: Ulf Hansson <ulf.hansson@linaro.org>
17553 L: linux-mmc@vger.kernel.org
17554 S: Maintained
17555 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17556 F: drivers/memstick/
17557 F: include/linux/memstick.h
17558
17559 SONY VAIO CONTROL DEVICE DRIVER
17560 M: Mattia Dongili <malattia@linux.it>
17561 L: platform-driver-x86@vger.kernel.org
17562 S: Maintained
17563 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17564 F: Documentation/admin-guide/laptops/sony-laptop.rst
17565 F: drivers/char/sonypi.c
17566 F: drivers/platform/x86/sony-laptop.c
17567 F: include/linux/sony-laptop.h
17568
17569 SOUND
17570 M: Jaroslav Kysela <perex@perex.cz>
17571 M: Takashi Iwai <tiwai@suse.com>
17572 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17573 S: Maintained
17574 W: http://www.alsa-project.org/
17575 Q: http://patchwork.kernel.org/project/alsa-devel/list/
17576 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17577 F: Documentation/sound/
17578 F: include/sound/
17579 F: include/uapi/sound/
17580 F: sound/
17581
17582 SOUND - COMPRESSED AUDIO
17583 M: Vinod Koul <vkoul@kernel.org>
17584 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17585 S: Supported
17586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17587 F: Documentation/sound/designs/compress-offload.rst
17588 F: include/sound/compress_driver.h
17589 F: include/uapi/sound/compress_*
17590 F: sound/core/compress_offload.c
17591 F: sound/soc/soc-compress.c
17592
17593 SOUND - DMAENGINE HELPERS
17594 M: Lars-Peter Clausen <lars@metafoo.de>
17595 S: Supported
17596 F: include/sound/dmaengine_pcm.h
17597 F: sound/core/pcm_dmaengine.c
17598 F: sound/soc/soc-generic-dmaengine-pcm.c
17599
17600 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17601 M: Liam Girdwood <lgirdwood@gmail.com>
17602 M: Mark Brown <broonie@kernel.org>
17603 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17604 S: Supported
17605 W: http://alsa-project.org/main/index.php/ASoC
17606 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17607 F: Documentation/devicetree/bindings/sound/
17608 F: Documentation/sound/soc/
17609 F: include/dt-bindings/sound/
17610 F: include/sound/soc*
17611 F: sound/soc/
17612
17613 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17614 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17615 M: Liam Girdwood <lgirdwood@gmail.com>
17616 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17617 M: Kai Vehmanen <kai.vehmanen@linux.intel.com>
17618 M: Daniel Baluta <daniel.baluta@nxp.com>
17619 L: sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17620 S: Supported
17621 W: https://github.com/thesofproject/linux/
17622 F: sound/soc/sof/
17623
17624 SOUNDWIRE SUBSYSTEM
17625 M: Vinod Koul <vkoul@kernel.org>
17626 M: Bard Liao <yung-chuan.liao@linux.intel.com>
17627 R: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17628 R: Sanyog Kale <sanyog.r.kale@intel.com>
17629 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17630 S: Supported
17631 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17632 F: Documentation/driver-api/soundwire/
17633 F: drivers/soundwire/
17634 F: include/linux/soundwire/
17635
17636 SP2 MEDIA DRIVER
17637 M: Olli Salonen <olli.salonen@iki.fi>
17638 L: linux-media@vger.kernel.org
17639 S: Maintained
17640 W: https://linuxtv.org
17641 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17642 F: drivers/media/dvb-frontends/sp2*
17643
17644 SPARC + UltraSPARC (sparc/sparc64)
17645 M: "David S. Miller" <davem@davemloft.net>
17646 L: sparclinux@vger.kernel.org
17647 S: Maintained
17648 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
17649 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17650 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17651 F: arch/sparc/
17652 F: drivers/sbus/
17653
17654 SPARC SERIAL DRIVERS
17655 M: "David S. Miller" <davem@davemloft.net>
17656 L: sparclinux@vger.kernel.org
17657 S: Maintained
17658 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17659 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17660 F: drivers/tty/serial/suncore.c
17661 F: drivers/tty/serial/sunhv.c
17662 F: drivers/tty/serial/sunsab.c
17663 F: drivers/tty/serial/sunsab.h
17664 F: drivers/tty/serial/sunsu.c
17665 F: drivers/tty/serial/sunzilog.c
17666 F: drivers/tty/serial/sunzilog.h
17667 F: drivers/tty/vcc.c
17668 F: include/linux/sunserialcore.h
17669
17670 SPARSE CHECKER
17671 M: "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17672 L: linux-sparse@vger.kernel.org
17673 S: Maintained
17674 W: https://sparse.docs.kernel.org/
17675 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17676 Q: https://patchwork.kernel.org/project/linux-sparse/list/
17677 B: https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17678 F: include/linux/compiler.h
17679
17680 SPEAKUP CONSOLE SPEECH DRIVER
17681 M: William Hubbs <w.d.hubbs@gmail.com>
17682 M: Chris Brannon <chris@the-brannons.com>
17683 M: Kirk Reiser <kirk@reisers.ca>
17684 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
17685 L: speakup@linux-speakup.org
17686 S: Odd Fixes
17687 W: http://www.linux-speakup.org/
17688 W: https://github.com/linux-speakup/speakup
17689 B: https://github.com/linux-speakup/speakup/issues
17690 F: drivers/accessibility/speakup/
17691
17692 SPEAR CLOCK FRAMEWORK SUPPORT
17693 M: Viresh Kumar <vireshk@kernel.org>
17694 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17695 S: Maintained
17696 W: http://www.st.com/spear
17697 F: drivers/clk/spear/
17698
17699 SPEAR PLATFORM SUPPORT
17700 M: Viresh Kumar <vireshk@kernel.org>
17701 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17702 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17703 S: Maintained
17704 W: http://www.st.com/spear
17705 F: arch/arm/boot/dts/spear*
17706 F: arch/arm/mach-spear/
17707
17708 SPI NOR SUBSYSTEM
17709 M: Tudor Ambarus <tudor.ambarus@microchip.com>
17710 R: Michael Walle <michael@walle.cc>
17711 R: Pratyush Yadav <p.yadav@ti.com>
17712 L: linux-mtd@lists.infradead.org
17713 S: Maintained
17714 W: http://www.linux-mtd.infradead.org/
17715 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
17716 C: irc://irc.oftc.net/mtd
17717 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17718 F: drivers/mtd/spi-nor/
17719 F: include/linux/mtd/spi-nor.h
17720
17721 SPI SUBSYSTEM
17722 M: Mark Brown <broonie@kernel.org>
17723 L: linux-spi@vger.kernel.org
17724 S: Maintained
17725 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
17726 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17727 F: Documentation/devicetree/bindings/spi/
17728 F: Documentation/spi/
17729 F: drivers/spi/
17730 F: include/linux/spi/
17731 F: include/uapi/linux/spi/
17732 F: tools/spi/
17733
17734 SPIDERNET NETWORK DRIVER for CELL
17735 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17736 M: Geoff Levand <geoff@infradead.org>
17737 L: netdev@vger.kernel.org
17738 L: linuxppc-dev@lists.ozlabs.org
17739 S: Maintained
17740 F: Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17741 F: drivers/net/ethernet/toshiba/spider_net*
17742
17743 SPMI SUBSYSTEM
17744 M: Stephen Boyd <sboyd@kernel.org>
17745 L: linux-kernel@vger.kernel.org
17746 S: Maintained
17747 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17748 F: Documentation/devicetree/bindings/spmi/
17749 F: drivers/spmi/
17750 F: include/dt-bindings/spmi/spmi.h
17751 F: include/linux/spmi.h
17752 F: include/trace/events/spmi.h
17753
17754 SPU FILE SYSTEM
17755 M: Jeremy Kerr <jk@ozlabs.org>
17756 L: linuxppc-dev@lists.ozlabs.org
17757 S: Supported
17758 W: http://www.ibm.com/developerworks/power/cell/
17759 F: Documentation/filesystems/spufs/spufs.rst
17760 F: arch/powerpc/platforms/cell/spufs/
17761
17762 SQUASHFS FILE SYSTEM
17763 M: Phillip Lougher <phillip@squashfs.org.uk>
17764 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
17765 S: Maintained
17766 W: http://squashfs.org.uk
17767 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17768 F: Documentation/filesystems/squashfs.rst
17769 F: fs/squashfs/
17770
17771 SRM (Alpha) environment access
17772 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
17773 S: Maintained
17774 F: arch/alpha/kernel/srm_env.c
17775
17776 ST LSM6DSx IMU IIO DRIVER
17777 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17778 L: linux-iio@vger.kernel.org
17779 S: Maintained
17780 W: http://www.st.com/
17781 F: Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17782 F: drivers/iio/imu/st_lsm6dsx/
17783
17784 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17785 M: Mickael Guene <mickael.guene@st.com>
17786 L: linux-media@vger.kernel.org
17787 S: Maintained
17788 T: git git://linuxtv.org/media_tree.git
17789 F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17790 F: drivers/media/i2c/st-mipid02.c
17791
17792 ST STM32 I2C/SMBUS DRIVER
17793 M: Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17794 M: Alain Volmat <alain.volmat@foss.st.com>
17795 L: linux-i2c@vger.kernel.org
17796 S: Maintained
17797 F: drivers/i2c/busses/i2c-stm32*
17798
17799 ST STM32 SPI DRIVER
17800 M: Alain Volmat <alain.volmat@foss.st.com>
17801 L: linux-spi@vger.kernel.org
17802 S: Maintained
17803 F: drivers/spi/spi-stm32.c
17804
17805 ST STPDDC60 DRIVER
17806 M: Daniel Nilsson <daniel.nilsson@flex.com>
17807 L: linux-hwmon@vger.kernel.org
17808 S: Maintained
17809 F: Documentation/hwmon/stpddc60.rst
17810 F: drivers/hwmon/pmbus/stpddc60.c
17811
17812 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17813 M: Song Qiang <songqiang1304521@gmail.com>
17814 L: linux-iio@vger.kernel.org
17815 S: Maintained
17816 F: Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17817 F: drivers/iio/proximity/vl53l0x-i2c.c
17818
17819 STABLE BRANCH
17820 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17821 M: Sasha Levin <sashal@kernel.org>
17822 L: stable@vger.kernel.org
17823 S: Supported
17824 F: Documentation/process/stable-kernel-rules.rst
17825
17826 STAGING - ATOMISP DRIVER
17827 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17828 R: Sakari Ailus <sakari.ailus@linux.intel.com>
17829 L: linux-media@vger.kernel.org
17830 S: Maintained
17831 F: drivers/staging/media/atomisp/
17832
17833 STAGING - FIELDBUS SUBSYSTEM
17834 M: Sven Van Asbroeck <TheSven73@gmail.com>
17835 S: Maintained
17836 F: drivers/staging/fieldbus/*
17837 F: drivers/staging/fieldbus/Documentation/
17838
17839 STAGING - HMS ANYBUS-S BUS
17840 M: Sven Van Asbroeck <TheSven73@gmail.com>
17841 S: Maintained
17842 F: drivers/staging/fieldbus/anybuss/
17843
17844 STAGING - INDUSTRIAL IO
17845 M: Jonathan Cameron <jic23@kernel.org>
17846 L: linux-iio@vger.kernel.org
17847 S: Odd Fixes
17848 F: Documentation/devicetree/bindings/staging/iio/
17849 F: drivers/staging/iio/
17850
17851 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17852 M: Marc Dietrich <marvin24@gmx.de>
17853 L: ac100@lists.launchpad.net (moderated for non-subscribers)
17854 L: linux-tegra@vger.kernel.org
17855 S: Maintained
17856 F: drivers/staging/nvec/
17857
17858 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17859 M: Jens Frederich <jfrederich@gmail.com>
17860 M: Jon Nettleton <jon.nettleton@gmail.com>
17861 S: Maintained
17862 W: http://wiki.laptop.org/go/DCON
17863 F: drivers/staging/olpc_dcon/
17864
17865 STAGING - REALTEK RTL8188EU DRIVERS
17866 M: Larry Finger <Larry.Finger@lwfinger.net>
17867 M: Phillip Potter <phil@philpotter.co.uk>
17868 S: Supported
17869 F: drivers/staging/r8188eu/
17870
17871 STAGING - REALTEK RTL8712U DRIVERS
17872 M: Larry Finger <Larry.Finger@lwfinger.net>
17873 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17874 S: Odd Fixes
17875 F: drivers/staging/rtl8712/
17876
17877 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17878 M: Michael Hennerich <michael.hennerich@analog.com>
17879 L: linux-fbdev@vger.kernel.org
17880 S: Supported
17881 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17882 F: drivers/staging/fbtft/fb_seps525.c
17883
17884 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17885 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17886 M: Teddy Wang <teddy.wang@siliconmotion.com>
17887 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17888 L: linux-fbdev@vger.kernel.org
17889 S: Maintained
17890 F: drivers/staging/sm750fb/
17891
17892 STAGING - VIA VT665X DRIVERS
17893 M: Forest Bond <forest@alittletooquiet.net>
17894 S: Odd Fixes
17895 F: drivers/staging/vt665?/
17896
17897 STAGING SUBSYSTEM
17898 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17899 L: linux-staging@lists.linux.dev
17900 S: Supported
17901 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17902 F: drivers/staging/
17903
17904 STARFIRE/DURALAN NETWORK DRIVER
17905 M: Ion Badulescu <ionut@badula.org>
17906 S: Odd Fixes
17907 F: drivers/net/ethernet/adaptec/starfire*
17908
17909 STATIC BRANCH/CALL
17910 M: Peter Zijlstra <peterz@infradead.org>
17911 M: Josh Poimboeuf <jpoimboe@redhat.com>
17912 M: Jason Baron <jbaron@akamai.com>
17913 R: Steven Rostedt <rostedt@goodmis.org>
17914 R: Ard Biesheuvel <ardb@kernel.org>
17915 S: Supported
17916 F: arch/*/include/asm/jump_label*.h
17917 F: arch/*/include/asm/static_call*.h
17918 F: arch/*/kernel/jump_label.c
17919 F: arch/*/kernel/static_call.c
17920 F: include/linux/jump_label*.h
17921 F: include/linux/static_call*.h
17922 F: kernel/jump_label.c
17923 F: kernel/static_call.c
17924
17925 STI AUDIO (ASoC) DRIVERS
17926 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17927 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17928 S: Maintained
17929 F: Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17930 F: sound/soc/sti/
17931
17932 STI CEC DRIVER
17933 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
17934 S: Maintained
17935 F: Documentation/devicetree/bindings/media/stih-cec.txt
17936 F: drivers/media/cec/platform/sti/
17937
17938 STK1160 USB VIDEO CAPTURE DRIVER
17939 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17940 L: linux-media@vger.kernel.org
17941 S: Maintained
17942 T: git git://linuxtv.org/media_tree.git
17943 F: drivers/media/usb/stk1160/
17944
17945 STM32 AUDIO (ASoC) DRIVERS
17946 M: Olivier Moysan <olivier.moysan@foss.st.com>
17947 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17948 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17949 S: Maintained
17950 F: Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17951 F: Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17952 F: sound/soc/stm/
17953
17954 STM32 TIMER/LPTIMER DRIVERS
17955 M: Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17956 S: Maintained
17957 F: Documentation/ABI/testing/*timer-stm32
17958 F: Documentation/devicetree/bindings/*/*stm32-*timer*
17959 F: drivers/*/stm32-*timer*
17960 F: drivers/pwm/pwm-stm32*
17961 F: include/linux/*/stm32-*tim*
17962
17963 STMMAC ETHERNET DRIVER
17964 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
17965 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
17966 M: Jose Abreu <joabreu@synopsys.com>
17967 L: netdev@vger.kernel.org
17968 S: Supported
17969 W: http://www.stlinux.com
17970 F: Documentation/networking/device_drivers/ethernet/stmicro/
17971 F: drivers/net/ethernet/stmicro/stmmac/
17972
17973 SUN3/3X
17974 M: Sam Creasey <sammy@sammy.net>
17975 S: Maintained
17976 W: http://sammy.net/sun3/
17977 F: arch/m68k/include/asm/sun3*
17978 F: arch/m68k/kernel/*sun3*
17979 F: arch/m68k/sun3*/
17980 F: drivers/net/ethernet/i825xx/sun3*
17981
17982 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17983 M: Hans de Goede <hdegoede@redhat.com>
17984 L: linux-input@vger.kernel.org
17985 S: Maintained
17986 F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17987 F: drivers/input/keyboard/sun4i-lradc-keys.c
17988
17989 SUNDANCE NETWORK DRIVER
17990 M: Denis Kirjanov <kda@linux-powerpc.org>
17991 L: netdev@vger.kernel.org
17992 S: Maintained
17993 F: drivers/net/ethernet/dlink/sundance.c
17994
17995 SUPERH
17996 M: Yoshinori Sato <ysato@users.sourceforge.jp>
17997 M: Rich Felker <dalias@libc.org>
17998 L: linux-sh@vger.kernel.org
17999 S: Maintained
18000 Q: http://patchwork.kernel.org/project/linux-sh/list/
18001 F: Documentation/sh/
18002 F: arch/sh/
18003 F: drivers/sh/
18004
18005 SUSPEND TO RAM
18006 M: "Rafael J. Wysocki" <rafael@kernel.org>
18007 M: Len Brown <len.brown@intel.com>
18008 M: Pavel Machek <pavel@ucw.cz>
18009 L: linux-pm@vger.kernel.org
18010 S: Supported
18011 B: https://bugzilla.kernel.org
18012 F: Documentation/power/
18013 F: arch/x86/kernel/acpi/
18014 F: drivers/base/power/
18015 F: include/linux/freezer.h
18016 F: include/linux/pm.h
18017 F: include/linux/suspend.h
18018 F: kernel/power/
18019
18020 SVGA HANDLING
18021 M: Martin Mares <mj@ucw.cz>
18022 L: linux-video@atrey.karlin.mff.cuni.cz
18023 S: Maintained
18024 F: Documentation/admin-guide/svga.rst
18025 F: arch/x86/boot/video*
18026
18027 SWIOTLB SUBSYSTEM
18028 M: Christoph Hellwig <hch@infradead.org>
18029 L: iommu@lists.linux-foundation.org
18030 S: Supported
18031 W: http://git.infradead.org/users/hch/dma-mapping.git
18032 T: git git://git.infradead.org/users/hch/dma-mapping.git
18033 F: arch/*/kernel/pci-swiotlb.c
18034 F: include/linux/swiotlb.h
18035 F: kernel/dma/swiotlb.c
18036
18037 SWITCHDEV
18038 M: Jiri Pirko <jiri@resnulli.us>
18039 M: Ivan Vecera <ivecera@redhat.com>
18040 L: netdev@vger.kernel.org
18041 S: Supported
18042 F: include/net/switchdev.h
18043 F: net/switchdev/
18044
18045 SY8106A REGULATOR DRIVER
18046 M: Icenowy Zheng <icenowy@aosc.io>
18047 S: Maintained
18048 F: Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18049 F: drivers/regulator/sy8106a-regulator.c
18050
18051 SYNC FILE FRAMEWORK
18052 M: Sumit Semwal <sumit.semwal@linaro.org>
18053 R: Gustavo Padovan <gustavo@padovan.org>
18054 L: linux-media@vger.kernel.org
18055 L: dri-devel@lists.freedesktop.org
18056 S: Maintained
18057 T: git git://anongit.freedesktop.org/drm/drm-misc
18058 F: Documentation/driver-api/sync_file.rst
18059 F: drivers/dma-buf/dma-fence*
18060 F: drivers/dma-buf/sw_sync.c
18061 F: drivers/dma-buf/sync_*
18062 F: include/linux/sync_file.h
18063 F: include/uapi/linux/sync_file.h
18064
18065 SYNOPSYS ARC ARCHITECTURE
18066 M: Vineet Gupta <vgupta@kernel.org>
18067 L: linux-snps-arc@lists.infradead.org
18068 S: Supported
18069 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18070 F: Documentation/devicetree/bindings/arc/*
18071 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18072 F: arch/arc/
18073 F: drivers/clocksource/arc_timer.c
18074 F: drivers/tty/serial/arc_uart.c
18075
18076 SYNOPSYS ARC HSDK SDP pll clock driver
18077 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18078 S: Supported
18079 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18080 F: drivers/clk/clk-hsdk-pll.c
18081
18082 SYNOPSYS ARC SDP clock driver
18083 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18084 S: Supported
18085 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18086 F: drivers/clk/axs10x/*
18087
18088 SYNOPSYS ARC SDP platform support
18089 M: Alexey Brodkin <abrodkin@synopsys.com>
18090 S: Supported
18091 F: Documentation/devicetree/bindings/arc/axs10*
18092 F: arch/arc/boot/dts/ax*
18093 F: arch/arc/plat-axs10x
18094
18095 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18096 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18097 S: Supported
18098 F: Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18099 F: drivers/reset/reset-axs10x.c
18100
18101 SYNOPSYS CREG GPIO DRIVER
18102 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18103 S: Maintained
18104 F: Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18105 F: drivers/gpio/gpio-creg-snps.c
18106
18107 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18108 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18109 S: Maintained
18110 F: drivers/tty/serial/8250/8250_dw.c
18111 F: drivers/tty/serial/8250/8250_dwlib.*
18112 F: drivers/tty/serial/8250/8250_lpss.c
18113
18114 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18115 M: Hoan Tran <hoan@os.amperecomputing.com>
18116 M: Serge Semin <fancer.lancer@gmail.com>
18117 L: linux-gpio@vger.kernel.org
18118 S: Maintained
18119 F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18120 F: drivers/gpio/gpio-dwapb.c
18121
18122 SYNOPSYS DESIGNWARE APB SSI DRIVER
18123 M: Serge Semin <fancer.lancer@gmail.com>
18124 L: linux-spi@vger.kernel.org
18125 S: Supported
18126 F: Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18127 F: drivers/spi/spi-dw*
18128
18129 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18130 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18131 S: Maintained
18132 F: Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18133 F: drivers/dma/dw-axi-dmac/
18134
18135 SYNOPSYS DESIGNWARE DMAC DRIVER
18136 M: Viresh Kumar <vireshk@kernel.org>
18137 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18138 S: Maintained
18139 F: Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18140 F: drivers/dma/dw/
18141 F: include/dt-bindings/dma/dw-dmac.h
18142 F: include/linux/dma/dw.h
18143 F: include/linux/platform_data/dma-dw.h
18144
18145 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18146 M: Jose Abreu <Jose.Abreu@synopsys.com>
18147 L: netdev@vger.kernel.org
18148 S: Supported
18149 F: drivers/net/ethernet/synopsys/
18150
18151 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18152 M: Jose Abreu <Jose.Abreu@synopsys.com>
18153 L: netdev@vger.kernel.org
18154 S: Supported
18155 F: drivers/net/pcs/pcs-xpcs.c
18156 F: drivers/net/pcs/pcs-xpcs.h
18157 F: include/linux/pcs/pcs-xpcs.h
18158
18159 SYNOPSYS DESIGNWARE I2C DRIVER
18160 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
18161 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18162 R: Mika Westerberg <mika.westerberg@linux.intel.com>
18163 L: linux-i2c@vger.kernel.org
18164 S: Maintained
18165 F: drivers/i2c/busses/i2c-designware-*
18166
18167 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18168 M: Jaehoon Chung <jh80.chung@samsung.com>
18169 L: linux-mmc@vger.kernel.org
18170 S: Maintained
18171 F: drivers/mmc/host/dw_mmc*
18172
18173 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18174 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18175 S: Supported
18176 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18177 F: drivers/reset/reset-hsdk.c
18178 F: include/dt-bindings/reset/snps,hsdk-reset.h
18179
18180 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18181 M: Prabu Thangamuthu <prabu.t@synopsys.com>
18182 M: Manjunath M B <manjumb@synopsys.com>
18183 L: linux-mmc@vger.kernel.org
18184 S: Maintained
18185 F: drivers/mmc/host/sdhci-pci-dwc-mshc.c
18186
18187 SYSTEM CONFIGURATION (SYSCON)
18188 M: Lee Jones <lee.jones@linaro.org>
18189 M: Arnd Bergmann <arnd@arndb.de>
18190 S: Supported
18191 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18192 F: drivers/mfd/syscon.c
18193
18194 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18195 M: Sudeep Holla <sudeep.holla@arm.com>
18196 R: Cristian Marussi <cristian.marussi@arm.com>
18197 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18198 S: Maintained
18199 F: Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18200 F: drivers/clk/clk-sc[mp]i.c
18201 F: drivers/cpufreq/sc[mp]i-cpufreq.c
18202 F: drivers/firmware/arm_scmi/
18203 F: drivers/firmware/arm_scpi.c
18204 F: drivers/regulator/scmi-regulator.c
18205 F: drivers/reset/reset-scmi.c
18206 F: include/linux/sc[mp]i_protocol.h
18207 F: include/trace/events/scmi.h
18208 F: include/uapi/linux/virtio_scmi.h
18209
18210 SYSTEM RESET/SHUTDOWN DRIVERS
18211 M: Sebastian Reichel <sre@kernel.org>
18212 L: linux-pm@vger.kernel.org
18213 S: Maintained
18214 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18215 F: Documentation/devicetree/bindings/power/reset/
18216 F: drivers/power/reset/
18217
18218 SYSTEM TRACE MODULE CLASS
18219 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
18220 S: Maintained
18221 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18222 F: Documentation/trace/stm.rst
18223 F: drivers/hwtracing/stm/
18224 F: include/linux/stm.h
18225 F: include/uapi/linux/stm.h
18226
18227 SYSTEM76 ACPI DRIVER
18228 M: Jeremy Soller <jeremy@system76.com>
18229 M: System76 Product Development <productdev@system76.com>
18230 L: platform-driver-x86@vger.kernel.org
18231 S: Maintained
18232 F: drivers/platform/x86/system76_acpi.c
18233
18234 SYSV FILESYSTEM
18235 M: Christoph Hellwig <hch@infradead.org>
18236 S: Maintained
18237 F: Documentation/filesystems/sysv-fs.rst
18238 F: fs/sysv/
18239 F: include/linux/sysv_fs.h
18240
18241 TASKSTATS STATISTICS INTERFACE
18242 M: Balbir Singh <bsingharora@gmail.com>
18243 S: Maintained
18244 F: Documentation/accounting/taskstats*
18245 F: include/linux/taskstats*
18246 F: kernel/taskstats.c
18247
18248 TC subsystem
18249 M: Jamal Hadi Salim <jhs@mojatatu.com>
18250 M: Cong Wang <xiyou.wangcong@gmail.com>
18251 M: Jiri Pirko <jiri@resnulli.us>
18252 L: netdev@vger.kernel.org
18253 S: Maintained
18254 F: include/net/pkt_cls.h
18255 F: include/net/pkt_sched.h
18256 F: include/net/tc_act/
18257 F: include/uapi/linux/pkt_cls.h
18258 F: include/uapi/linux/pkt_sched.h
18259 F: include/uapi/linux/tc_act/
18260 F: include/uapi/linux/tc_ematch/
18261 F: net/sched/
18262
18263 TC90522 MEDIA DRIVER
18264 M: Akihiro Tsukada <tskd08@gmail.com>
18265 L: linux-media@vger.kernel.org
18266 S: Odd Fixes
18267 F: drivers/media/dvb-frontends/tc90522*
18268
18269 TCP LOW PRIORITY MODULE
18270 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18271 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18272 S: Maintained
18273 W: http://tcp-lp-mod.sourceforge.net/
18274 F: net/ipv4/tcp_lp.c
18275
18276 TDA10071 MEDIA DRIVER
18277 M: Antti Palosaari <crope@iki.fi>
18278 L: linux-media@vger.kernel.org
18279 S: Maintained
18280 W: https://linuxtv.org
18281 W: http://palosaari.fi/linux/
18282 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18283 T: git git://linuxtv.org/anttip/media_tree.git
18284 F: drivers/media/dvb-frontends/tda10071*
18285
18286 TDA18212 MEDIA DRIVER
18287 M: Antti Palosaari <crope@iki.fi>
18288 L: linux-media@vger.kernel.org
18289 S: Maintained
18290 W: https://linuxtv.org
18291 W: http://palosaari.fi/linux/
18292 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18293 T: git git://linuxtv.org/anttip/media_tree.git
18294 F: drivers/media/tuners/tda18212*
18295
18296 TDA18218 MEDIA DRIVER
18297 M: Antti Palosaari <crope@iki.fi>
18298 L: linux-media@vger.kernel.org
18299 S: Maintained
18300 W: https://linuxtv.org
18301 W: http://palosaari.fi/linux/
18302 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18303 T: git git://linuxtv.org/anttip/media_tree.git
18304 F: drivers/media/tuners/tda18218*
18305
18306 TDA18250 MEDIA DRIVER
18307 M: Olli Salonen <olli.salonen@iki.fi>
18308 L: linux-media@vger.kernel.org
18309 S: Maintained
18310 W: https://linuxtv.org
18311 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18312 T: git git://linuxtv.org/media_tree.git
18313 F: drivers/media/tuners/tda18250*
18314
18315 TDA18271 MEDIA DRIVER
18316 M: Michael Krufky <mkrufky@linuxtv.org>
18317 L: linux-media@vger.kernel.org
18318 S: Maintained
18319 W: https://linuxtv.org
18320 W: http://github.com/mkrufky
18321 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18322 T: git git://linuxtv.org/mkrufky/tuners.git
18323 F: drivers/media/tuners/tda18271*
18324
18325 TDA1997x MEDIA DRIVER
18326 M: Tim Harvey <tharvey@gateworks.com>
18327 L: linux-media@vger.kernel.org
18328 S: Maintained
18329 W: https://linuxtv.org
18330 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18331 F: drivers/media/i2c/tda1997x.*
18332
18333 TDA827x MEDIA DRIVER
18334 M: Michael Krufky <mkrufky@linuxtv.org>
18335 L: linux-media@vger.kernel.org
18336 S: Maintained
18337 W: https://linuxtv.org
18338 W: http://github.com/mkrufky
18339 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18340 T: git git://linuxtv.org/mkrufky/tuners.git
18341 F: drivers/media/tuners/tda8290.*
18342
18343 TDA8290 MEDIA DRIVER
18344 M: Michael Krufky <mkrufky@linuxtv.org>
18345 L: linux-media@vger.kernel.org
18346 S: Maintained
18347 W: https://linuxtv.org
18348 W: http://github.com/mkrufky
18349 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18350 T: git git://linuxtv.org/mkrufky/tuners.git
18351 F: drivers/media/tuners/tda8290.*
18352
18353 TDA9840 MEDIA DRIVER
18354 M: Hans Verkuil <hverkuil@xs4all.nl>
18355 L: linux-media@vger.kernel.org
18356 S: Maintained
18357 W: https://linuxtv.org
18358 T: git git://linuxtv.org/media_tree.git
18359 F: drivers/media/i2c/tda9840*
18360
18361 TEA5761 TUNER DRIVER
18362 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18363 L: linux-media@vger.kernel.org
18364 S: Odd fixes
18365 W: https://linuxtv.org
18366 T: git git://linuxtv.org/media_tree.git
18367 F: drivers/media/tuners/tea5761.*
18368
18369 TEA5767 TUNER DRIVER
18370 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18371 L: linux-media@vger.kernel.org
18372 S: Maintained
18373 W: https://linuxtv.org
18374 T: git git://linuxtv.org/media_tree.git
18375 F: drivers/media/tuners/tea5767.*
18376
18377 TEA6415C MEDIA DRIVER
18378 M: Hans Verkuil <hverkuil@xs4all.nl>
18379 L: linux-media@vger.kernel.org
18380 S: Maintained
18381 W: https://linuxtv.org
18382 T: git git://linuxtv.org/media_tree.git
18383 F: drivers/media/i2c/tea6415c*
18384
18385 TEA6420 MEDIA DRIVER
18386 M: Hans Verkuil <hverkuil@xs4all.nl>
18387 L: linux-media@vger.kernel.org
18388 S: Maintained
18389 W: https://linuxtv.org
18390 T: git git://linuxtv.org/media_tree.git
18391 F: drivers/media/i2c/tea6420*
18392
18393 TEAM DRIVER
18394 M: Jiri Pirko <jiri@resnulli.us>
18395 L: netdev@vger.kernel.org
18396 S: Supported
18397 F: drivers/net/team/
18398 F: include/linux/if_team.h
18399 F: include/uapi/linux/if_team.h
18400
18401 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18402 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18403 S: Maintained
18404 F: arch/x86/platform/ts5500/
18405
18406 TECHNOTREND USB IR RECEIVER
18407 M: Sean Young <sean@mess.org>
18408 L: linux-media@vger.kernel.org
18409 S: Maintained
18410 F: drivers/media/rc/ttusbir.c
18411
18412 TECHWELL TW9910 VIDEO DECODER
18413 L: linux-media@vger.kernel.org
18414 S: Orphan
18415 F: drivers/media/i2c/tw9910.c
18416 F: include/media/i2c/tw9910.h
18417
18418 TEE SUBSYSTEM
18419 M: Jens Wiklander <jens.wiklander@linaro.org>
18420 R: Sumit Garg <sumit.garg@linaro.org>
18421 L: op-tee@lists.trustedfirmware.org
18422 S: Maintained
18423 F: Documentation/staging/tee.rst
18424 F: drivers/tee/
18425 F: include/linux/tee_drv.h
18426 F: include/uapi/linux/tee.h
18427
18428 TEGRA ARCHITECTURE SUPPORT
18429 M: Thierry Reding <thierry.reding@gmail.com>
18430 M: Jonathan Hunter <jonathanh@nvidia.com>
18431 L: linux-tegra@vger.kernel.org
18432 S: Supported
18433 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
18434 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18435 N: [^a-z]tegra
18436
18437 TEGRA CLOCK DRIVER
18438 M: Peter De Schrijver <pdeschrijver@nvidia.com>
18439 M: Prashant Gaikwad <pgaikwad@nvidia.com>
18440 S: Supported
18441 F: drivers/clk/tegra/
18442
18443 TEGRA DMA DRIVERS
18444 M: Laxman Dewangan <ldewangan@nvidia.com>
18445 M: Jon Hunter <jonathanh@nvidia.com>
18446 S: Supported
18447 F: drivers/dma/tegra*
18448
18449 TEGRA I2C DRIVER
18450 M: Laxman Dewangan <ldewangan@nvidia.com>
18451 R: Dmitry Osipenko <digetx@gmail.com>
18452 S: Supported
18453 F: drivers/i2c/busses/i2c-tegra.c
18454
18455 TEGRA IOMMU DRIVERS
18456 M: Thierry Reding <thierry.reding@gmail.com>
18457 R: Krishna Reddy <vdumpa@nvidia.com>
18458 L: linux-tegra@vger.kernel.org
18459 S: Supported
18460 F: drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18461 F: drivers/iommu/tegra*
18462
18463 TEGRA KBC DRIVER
18464 M: Laxman Dewangan <ldewangan@nvidia.com>
18465 S: Supported
18466 F: drivers/input/keyboard/tegra-kbc.c
18467
18468 TEGRA NAND DRIVER
18469 M: Stefan Agner <stefan@agner.ch>
18470 M: Lucas Stach <dev@lynxeye.de>
18471 S: Maintained
18472 F: Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18473 F: drivers/mtd/nand/raw/tegra_nand.c
18474
18475 TEGRA PWM DRIVER
18476 M: Thierry Reding <thierry.reding@gmail.com>
18477 S: Supported
18478 F: drivers/pwm/pwm-tegra.c
18479
18480 TEGRA SERIAL DRIVER
18481 M: Laxman Dewangan <ldewangan@nvidia.com>
18482 S: Supported
18483 F: drivers/tty/serial/serial-tegra.c
18484
18485 TEGRA SPI DRIVER
18486 M: Laxman Dewangan <ldewangan@nvidia.com>
18487 S: Supported
18488 F: drivers/spi/spi-tegra*
18489
18490 TEGRA QUAD SPI DRIVER
18491 M: Thierry Reding <thierry.reding@gmail.com>
18492 M: Jonathan Hunter <jonathanh@nvidia.com>
18493 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18494 L: linux-tegra@vger.kernel.org
18495 S: Maintained
18496 F: drivers/spi/spi-tegra210-quad.c
18497
18498 TEGRA VIDEO DRIVER
18499 M: Thierry Reding <thierry.reding@gmail.com>
18500 M: Jonathan Hunter <jonathanh@nvidia.com>
18501 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18502 L: linux-media@vger.kernel.org
18503 L: linux-tegra@vger.kernel.org
18504 S: Maintained
18505 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18506 F: drivers/staging/media/tegra-video/
18507
18508 TEGRA XUSB PADCTL DRIVER
18509 M: JC Kuo <jckuo@nvidia.com>
18510 S: Supported
18511 F: drivers/phy/tegra/xusb*
18512
18513 TEHUTI ETHERNET DRIVER
18514 M: Andy Gospodarek <andy@greyhouse.net>
18515 L: netdev@vger.kernel.org
18516 S: Supported
18517 F: drivers/net/ethernet/tehuti/*
18518
18519 TELECOM CLOCK DRIVER FOR MCPL0010
18520 M: Mark Gross <mark.gross@intel.com>
18521 S: Supported
18522 F: drivers/char/tlclk.c
18523
18524 TEMPO SEMICONDUCTOR DRIVERS
18525 M: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18526 S: Maintained
18527 F: Documentation/devicetree/bindings/sound/tscs*.txt
18528 F: sound/soc/codecs/tscs*.c
18529 F: sound/soc/codecs/tscs*.h
18530
18531 TENSILICA XTENSA PORT (xtensa)
18532 M: Chris Zankel <chris@zankel.net>
18533 M: Max Filippov <jcmvbkbc@gmail.com>
18534 L: linux-xtensa@linux-xtensa.org
18535 S: Maintained
18536 T: git git://github.com/czankel/xtensa-linux.git
18537 F: arch/xtensa/
18538 F: drivers/irqchip/irq-xtensa-*
18539
18540 TEXAS INSTRUMENTS ASoC DRIVERS
18541 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18542 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18543 S: Maintained
18544 F: sound/soc/ti/
18545
18546 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18547 M: Ricardo Ribalda <ribalda@kernel.org>
18548 L: linux-iio@vger.kernel.org
18549 S: Supported
18550 F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18551 F: drivers/iio/dac/ti-dac7612.c
18552
18553 TEXAS INSTRUMENTS DMA DRIVERS
18554 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18555 L: dmaengine@vger.kernel.org
18556 S: Maintained
18557 F: Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18558 F: Documentation/devicetree/bindings/dma/ti-edma.txt
18559 F: Documentation/devicetree/bindings/dma/ti/
18560 F: drivers/dma/ti/
18561 X: drivers/dma/ti/cppi41.c
18562 F: include/linux/dma/k3-udma-glue.h
18563 F: include/linux/dma/ti-cppi5.h
18564 F: include/linux/dma/k3-psil.h
18565
18566 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18567 M: Nishanth Menon <nm@ti.com>
18568 M: Tero Kristo <kristo@kernel.org>
18569 M: Santosh Shilimkar <ssantosh@kernel.org>
18570 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18571 S: Maintained
18572 F: Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18573 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18574 F: Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18575 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18576 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18577 F: Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18578 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18579 F: drivers/clk/keystone/sci-clk.c
18580 F: drivers/firmware/ti_sci*
18581 F: drivers/irqchip/irq-ti-sci-inta.c
18582 F: drivers/irqchip/irq-ti-sci-intr.c
18583 F: drivers/reset/reset-ti-sci.c
18584 F: drivers/soc/ti/ti_sci_inta_msi.c
18585 F: drivers/soc/ti/ti_sci_pm_domains.c
18586 F: include/dt-bindings/soc/ti,sci_pm_domain.h
18587 F: include/linux/soc/ti/ti_sci_inta_msi.h
18588 F: include/linux/soc/ti/ti_sci_protocol.h
18589
18590 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18591 M: Robert Marko <robert.marko@sartura.hr>
18592 M: Luka Perkov <luka.perkov@sartura.hr>
18593 L: linux-hwmon@vger.kernel.org
18594 S: Maintained
18595 F: Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18596 F: Documentation/hwmon/tps23861.rst
18597 F: drivers/hwmon/tps23861.c
18598
18599 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18600 M: Puranjay Mohan <puranjay12@gmail.com>
18601 L: linux-iio@vger.kernel.org
18602 S: Supported
18603 F: Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18604 F: drivers/iio/temperature/tmp117.c
18605
18606 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18607 M: Hans Verkuil <hverkuil@xs4all.nl>
18608 L: linux-media@vger.kernel.org
18609 S: Maintained
18610 W: https://linuxtv.org
18611 T: git git://linuxtv.org/media_tree.git
18612 F: drivers/media/radio/radio-raremono.c
18613
18614 THERMAL
18615 M: Rafael J. Wysocki <rafael@kernel.org>
18616 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18617 R: Amit Kucheria <amitk@kernel.org>
18618 R: Zhang Rui <rui.zhang@intel.com>
18619 L: linux-pm@vger.kernel.org
18620 S: Supported
18621 Q: https://patchwork.kernel.org/project/linux-pm/list/
18622 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18623 F: Documentation/devicetree/bindings/thermal/
18624 F: drivers/thermal/
18625 F: include/linux/cpu_cooling.h
18626 F: include/linux/thermal.h
18627 F: include/uapi/linux/thermal.h
18628 F: tools/thermal/
18629
18630 THERMAL DRIVER FOR AMLOGIC SOCS
18631 M: Guillaume La Roque <glaroque@baylibre.com>
18632 L: linux-pm@vger.kernel.org
18633 L: linux-amlogic@lists.infradead.org
18634 S: Supported
18635 W: http://linux-meson.com/
18636 F: Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18637 F: drivers/thermal/amlogic_thermal.c
18638
18639 THERMAL/CPU_COOLING
18640 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
18641 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18642 M: Viresh Kumar <viresh.kumar@linaro.org>
18643 R: Lukasz Luba <lukasz.luba@arm.com>
18644 L: linux-pm@vger.kernel.org
18645 S: Supported
18646 F: Documentation/driver-api/thermal/cpu-cooling-api.rst
18647 F: Documentation/driver-api/thermal/cpu-idle-cooling.rst
18648 F: drivers/thermal/cpufreq_cooling.c
18649 F: drivers/thermal/cpuidle_cooling.c
18650 F: include/linux/cpu_cooling.h
18651
18652 THERMAL/POWER_ALLOCATOR
18653 M: Lukasz Luba <lukasz.luba@arm.com>
18654 L: linux-pm@vger.kernel.org
18655 S: Maintained
18656 F: Documentation/driver-api/thermal/power_allocator.rst
18657 F: drivers/thermal/gov_power_allocator.c
18658 F: include/trace/events/thermal_power_allocator.h
18659
18660 THINKPAD ACPI EXTRAS DRIVER
18661 M: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18662 L: ibm-acpi-devel@lists.sourceforge.net
18663 L: platform-driver-x86@vger.kernel.org
18664 S: Maintained
18665 W: http://ibm-acpi.sourceforge.net
18666 W: http://thinkwiki.org/wiki/Ibm-acpi
18667 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18668 F: drivers/platform/x86/thinkpad_acpi.c
18669
18670 THINKPAD LMI DRIVER
18671 M: Mark Pearson <markpearson@lenovo.com>
18672 L: platform-driver-x86@vger.kernel.org
18673 S: Maintained
18674 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
18675 F: drivers/platform/x86/think-lmi.?
18676
18677 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18678 M: Isaac Hazan <isaac.hazan@intel.com>
18679 L: linux-usb@vger.kernel.org
18680 S: Maintained
18681 F: drivers/thunderbolt/dma_test.c
18682
18683 THUNDERBOLT DRIVER
18684 M: Andreas Noever <andreas.noever@gmail.com>
18685 M: Michael Jamet <michael.jamet@intel.com>
18686 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18687 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18688 L: linux-usb@vger.kernel.org
18689 S: Maintained
18690 T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18691 F: Documentation/admin-guide/thunderbolt.rst
18692 F: drivers/thunderbolt/
18693 F: include/linux/thunderbolt.h
18694
18695 THUNDERBOLT NETWORK DRIVER
18696 M: Michael Jamet <michael.jamet@intel.com>
18697 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18698 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18699 L: netdev@vger.kernel.org
18700 S: Maintained
18701 F: drivers/net/thunderbolt.c
18702
18703 THUNDERX GPIO DRIVER
18704 M: Robert Richter <rric@kernel.org>
18705 S: Odd Fixes
18706 F: drivers/gpio/gpio-thunderx.c
18707
18708 TI ADS131E0X ADC SERIES DRIVER
18709 M: Tomislav Denis <tomislav.denis@avl.com>
18710 L: linux-iio@vger.kernel.org
18711 S: Maintained
18712 F: Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18713 F: drivers/iio/adc/ti-ads131e08.c
18714
18715 TI AM437X VPFE DRIVER
18716 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18717 L: linux-media@vger.kernel.org
18718 S: Maintained
18719 W: https://linuxtv.org
18720 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18721 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18722 F: drivers/media/platform/am437x/
18723
18724 TI BANDGAP AND THERMAL DRIVER
18725 M: Eduardo Valentin <edubezval@gmail.com>
18726 M: Keerthy <j-keerthy@ti.com>
18727 L: linux-pm@vger.kernel.org
18728 L: linux-omap@vger.kernel.org
18729 S: Maintained
18730 F: drivers/thermal/ti-soc-thermal/
18731
18732 TI BQ27XXX POWER SUPPLY DRIVER
18733 F: drivers/power/supply/bq27xxx_battery.c
18734 F: drivers/power/supply/bq27xxx_battery_i2c.c
18735 F: include/linux/power/bq27xxx_battery.h
18736
18737 TI CDCE706 CLOCK DRIVER
18738 M: Max Filippov <jcmvbkbc@gmail.com>
18739 S: Maintained
18740 F: drivers/clk/clk-cdce706.c
18741
18742 TI CLOCK DRIVER
18743 M: Tero Kristo <kristo@kernel.org>
18744 L: linux-omap@vger.kernel.org
18745 S: Odd Fixes
18746 F: drivers/clk/ti/
18747 F: include/linux/clk/ti.h
18748
18749 TI DAVINCI MACHINE SUPPORT
18750 M: Sekhar Nori <nsekhar@ti.com>
18751 R: Bartosz Golaszewski <brgl@bgdev.pl>
18752 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18753 S: Supported
18754 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18755 F: Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18756 F: arch/arm/boot/dts/da850*
18757 F: arch/arm/mach-davinci/
18758 F: drivers/i2c/busses/i2c-davinci.c
18759
18760 TI DAVINCI SERIES CLOCK DRIVER
18761 M: David Lechner <david@lechnology.com>
18762 R: Sekhar Nori <nsekhar@ti.com>
18763 S: Maintained
18764 F: Documentation/devicetree/bindings/clock/ti/davinci/
18765 F: drivers/clk/davinci/
18766
18767 TI DAVINCI SERIES GPIO DRIVER
18768 M: Keerthy <j-keerthy@ti.com>
18769 L: linux-gpio@vger.kernel.org
18770 S: Maintained
18771 F: Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18772 F: drivers/gpio/gpio-davinci.c
18773
18774 TI DAVINCI SERIES MEDIA DRIVER
18775 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18776 L: linux-media@vger.kernel.org
18777 S: Maintained
18778 W: https://linuxtv.org
18779 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18780 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18781 F: drivers/media/platform/davinci/
18782 F: include/media/davinci/
18783
18784 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18785 R: David Lechner <david@lechnology.com>
18786 L: linux-iio@vger.kernel.org
18787 F: Documentation/devicetree/bindings/counter/ti-eqep.yaml
18788 F: drivers/counter/ti-eqep.c
18789
18790 TI ETHERNET SWITCH DRIVER (CPSW)
18791 R: Grygorii Strashko <grygorii.strashko@ti.com>
18792 L: linux-omap@vger.kernel.org
18793 L: netdev@vger.kernel.org
18794 S: Maintained
18795 F: drivers/net/ethernet/ti/cpsw*
18796 F: drivers/net/ethernet/ti/davinci*
18797
18798 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18799 M: Alex Dubov <oakad@yahoo.com>
18800 S: Maintained
18801 W: http://tifmxx.berlios.de/
18802 F: drivers/memstick/host/tifm_ms.c
18803 F: drivers/misc/tifm*
18804 F: drivers/mmc/host/tifm_sd.c
18805 F: include/linux/tifm.h
18806
18807 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18808 M: Santosh Shilimkar <ssantosh@kernel.org>
18809 L: linux-kernel@vger.kernel.org
18810 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18811 S: Maintained
18812 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18813 F: drivers/soc/ti/*
18814
18815 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18816 M: M R Swami Reddy <mr.swami.reddy@ti.com>
18817 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18818 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18819 S: Maintained
18820 F: sound/soc/codecs/isabelle*
18821 F: sound/soc/codecs/lm49453*
18822
18823 TI PCM3060 ASoC CODEC DRIVER
18824 M: Kirill Marinushkin <kmarinushkin@birdec.com>
18825 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18826 S: Maintained
18827 F: Documentation/devicetree/bindings/sound/pcm3060.txt
18828 F: sound/soc/codecs/pcm3060*
18829
18830 TI TAS571X FAMILY ASoC CODEC DRIVER
18831 M: Kevin Cernekee <cernekee@chromium.org>
18832 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18833 S: Odd Fixes
18834 F: sound/soc/codecs/tas571x*
18835
18836 TI TRF7970A NFC DRIVER
18837 M: Mark Greer <mgreer@animalcreek.com>
18838 L: linux-wireless@vger.kernel.org
18839 L: linux-nfc@lists.01.org (subscribers-only)
18840 S: Supported
18841 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18842 F: drivers/nfc/trf7970a.c
18843
18844 TI TSC2046 ADC DRIVER
18845 M: Oleksij Rempel <o.rempel@pengutronix.de>
18846 R: kernel@pengutronix.de
18847 L: linux-iio@vger.kernel.org
18848 S: Maintained
18849 F: Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18850 F: drivers/iio/adc/ti-tsc2046.c
18851
18852 TI TWL4030 SERIES SOC CODEC DRIVER
18853 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18854 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18855 S: Maintained
18856 F: sound/soc/codecs/twl4030*
18857
18858 TI VPE/CAL DRIVERS
18859 M: Benoit Parrot <bparrot@ti.com>
18860 L: linux-media@vger.kernel.org
18861 S: Maintained
18862 W: http://linuxtv.org/
18863 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18864 F: Documentation/devicetree/bindings/media/ti,cal.yaml
18865 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
18866 F: drivers/media/platform/ti-vpe/
18867
18868 TI WILINK WIRELESS DRIVERS
18869 L: linux-wireless@vger.kernel.org
18870 S: Orphan
18871 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18872 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18873 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18874 F: drivers/net/wireless/ti/
18875 F: include/linux/wl12xx.h
18876
18877 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18878 M: John Stultz <john.stultz@linaro.org>
18879 M: Thomas Gleixner <tglx@linutronix.de>
18880 R: Stephen Boyd <sboyd@kernel.org>
18881 L: linux-kernel@vger.kernel.org
18882 S: Supported
18883 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18884 F: include/linux/clocksource.h
18885 F: include/linux/time.h
18886 F: include/linux/timex.h
18887 F: include/uapi/linux/time.h
18888 F: include/uapi/linux/timex.h
18889 F: kernel/time/alarmtimer.c
18890 F: kernel/time/clocksource.c
18891 F: kernel/time/ntp.c
18892 F: kernel/time/time*.c
18893 F: tools/testing/selftests/timers/
18894
18895 TIPC NETWORK LAYER
18896 M: Jon Maloy <jmaloy@redhat.com>
18897 M: Ying Xue <ying.xue@windriver.com>
18898 L: netdev@vger.kernel.org (core kernel code)
18899 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18900 S: Maintained
18901 W: http://tipc.sourceforge.net/
18902 F: include/uapi/linux/tipc*.h
18903 F: net/tipc/
18904
18905 TLAN NETWORK DRIVER
18906 M: Samuel Chessman <chessman@tux.org>
18907 L: tlan-devel@lists.sourceforge.net (subscribers-only)
18908 S: Maintained
18909 W: http://sourceforge.net/projects/tlan/
18910 F: Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18911 F: drivers/net/ethernet/ti/tlan.*
18912
18913 TM6000 VIDEO4LINUX DRIVER
18914 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18915 L: linux-media@vger.kernel.org
18916 S: Odd fixes
18917 W: https://linuxtv.org
18918 T: git git://linuxtv.org/media_tree.git
18919 F: Documentation/admin-guide/media/tm6000*
18920 F: drivers/media/usb/tm6000/
18921
18922 TMIO/SDHI MMC DRIVER
18923 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
18924 L: linux-mmc@vger.kernel.org
18925 S: Supported
18926 F: drivers/mmc/host/renesas_sdhi*
18927 F: drivers/mmc/host/tmio_mmc*
18928 F: include/linux/mfd/tmio.h
18929
18930 TMP401 HARDWARE MONITOR DRIVER
18931 M: Guenter Roeck <linux@roeck-us.net>
18932 L: linux-hwmon@vger.kernel.org
18933 S: Maintained
18934 F: Documentation/hwmon/tmp401.rst
18935 F: drivers/hwmon/tmp401.c
18936
18937 TMP513 HARDWARE MONITOR DRIVER
18938 M: Eric Tremblay <etremblay@distech-controls.com>
18939 L: linux-hwmon@vger.kernel.org
18940 S: Maintained
18941 F: Documentation/hwmon/tmp513.rst
18942 F: drivers/hwmon/tmp513.c
18943
18944 TMPFS (SHMEM FILESYSTEM)
18945 M: Hugh Dickins <hughd@google.com>
18946 L: linux-mm@kvack.org
18947 S: Maintained
18948 F: include/linux/shmem_fs.h
18949 F: mm/shmem.c
18950
18951 TOMOYO SECURITY MODULE
18952 M: Kentaro Takeda <takedakn@nttdata.co.jp>
18953 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18954 L: tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18955 L: tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18956 L: tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18957 L: tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18958 S: Maintained
18959 W: https://tomoyo.osdn.jp/
18960 F: security/tomoyo/
18961
18962 TOPSTAR LAPTOP EXTRAS DRIVER
18963 M: Herton Ronaldo Krzesinski <herton@canonical.com>
18964 L: platform-driver-x86@vger.kernel.org
18965 S: Maintained
18966 F: drivers/platform/x86/topstar-laptop.c
18967
18968 TORTURE-TEST MODULES
18969 M: Davidlohr Bueso <dave@stgolabs.net>
18970 M: "Paul E. McKenney" <paulmck@kernel.org>
18971 M: Josh Triplett <josh@joshtriplett.org>
18972 L: linux-kernel@vger.kernel.org
18973 S: Supported
18974 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18975 F: Documentation/RCU/torture.rst
18976 F: kernel/locking/locktorture.c
18977 F: kernel/rcu/rcuscale.c
18978 F: kernel/rcu/rcutorture.c
18979 F: kernel/rcu/refscale.c
18980 F: kernel/torture.c
18981
18982 TOSHIBA ACPI EXTRAS DRIVER
18983 M: Azael Avalos <coproscefalo@gmail.com>
18984 L: platform-driver-x86@vger.kernel.org
18985 S: Maintained
18986 F: drivers/platform/x86/toshiba_acpi.c
18987
18988 TOSHIBA BLUETOOTH DRIVER
18989 M: Azael Avalos <coproscefalo@gmail.com>
18990 L: platform-driver-x86@vger.kernel.org
18991 S: Maintained
18992 F: drivers/platform/x86/toshiba_bluetooth.c
18993
18994 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18995 M: Azael Avalos <coproscefalo@gmail.com>
18996 L: platform-driver-x86@vger.kernel.org
18997 S: Maintained
18998 F: drivers/platform/x86/toshiba_haps.c
18999
19000 TOSHIBA SMM DRIVER
19001 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
19002 S: Maintained
19003 W: http://www.buzzard.org.uk/toshiba/
19004 F: drivers/char/toshiba.c
19005 F: include/linux/toshiba.h
19006 F: include/uapi/linux/toshiba.h
19007
19008 TOSHIBA TC358743 DRIVER
19009 M: Mats Randgaard <matrandg@cisco.com>
19010 L: linux-media@vger.kernel.org
19011 S: Maintained
19012 F: drivers/media/i2c/tc358743*
19013 F: include/media/i2c/tc358743.h
19014
19015 TOSHIBA WMI HOTKEYS DRIVER
19016 M: Azael Avalos <coproscefalo@gmail.com>
19017 L: platform-driver-x86@vger.kernel.org
19018 S: Maintained
19019 F: drivers/platform/x86/toshiba-wmi.c
19020
19021 TPM DEVICE DRIVER
19022 M: Peter Huewe <peterhuewe@gmx.de>
19023 M: Jarkko Sakkinen <jarkko@kernel.org>
19024 R: Jason Gunthorpe <jgg@ziepe.ca>
19025 L: linux-integrity@vger.kernel.org
19026 S: Maintained
19027 W: https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19028 Q: https://patchwork.kernel.org/project/linux-integrity/list/
19029 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19030 F: drivers/char/tpm/
19031
19032 TRACING
19033 M: Steven Rostedt <rostedt@goodmis.org>
19034 M: Ingo Molnar <mingo@redhat.com>
19035 S: Maintained
19036 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
19037 F: Documentation/trace/ftrace.rst
19038 F: arch/*/*/*/ftrace.h
19039 F: arch/*/kernel/ftrace.c
19040 F: fs/tracefs/
19041 F: include/*/ftrace.h
19042 F: include/linux/trace*.h
19043 F: include/trace/
19044 F: kernel/trace/
19045 F: tools/testing/selftests/ftrace/
19046
19047 TRACING MMIO ACCESSES (MMIOTRACE)
19048 M: Steven Rostedt <rostedt@goodmis.org>
19049 M: Ingo Molnar <mingo@kernel.org>
19050 R: Karol Herbst <karolherbst@gmail.com>
19051 R: Pekka Paalanen <ppaalanen@gmail.com>
19052 L: linux-kernel@vger.kernel.org
19053 L: nouveau@lists.freedesktop.org
19054 S: Maintained
19055 F: arch/x86/mm/kmmio.c
19056 F: arch/x86/mm/mmio-mod.c
19057 F: arch/x86/mm/testmmiotrace.c
19058 F: include/linux/mmiotrace.h
19059 F: kernel/trace/trace_mmiotrace.c
19060
19061 TRACING OS NOISE / LATENCY TRACERS
19062 M: Steven Rostedt <rostedt@goodmis.org>
19063 M: Daniel Bristot de Oliveira <bristot@kernel.org>
19064 S: Maintained
19065 F: kernel/trace/trace_osnoise.c
19066 F: include/trace/events/osnoise.h
19067 F: kernel/trace/trace_hwlat.c
19068 F: kernel/trace/trace_irqsoff.c
19069 F: kernel/trace/trace_sched_wakeup.c
19070 F: Documentation/trace/osnoise-tracer.rst
19071 F: Documentation/trace/timerlat-tracer.rst
19072 F: Documentation/trace/hwlat_detector.rst
19073 F: arch/*/kernel/trace.c
19074
19075 TRADITIONAL CHINESE DOCUMENTATION
19076 M: Hu Haowen <src.res@email.cn>
19077 L: linux-doc-tw-discuss@lists.sourceforge.net
19078 S: Maintained
19079 W: https://github.com/srcres258/linux-doc
19080 T: git git://github.com/srcres258/linux-doc.git doc-zh-tw
19081 F: Documentation/translations/zh_TW/
19082
19083 TRIVIAL PATCHES
19084 M: Jiri Kosina <trivial@kernel.org>
19085 S: Maintained
19086 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19087 K: ^Subject:.*(?i)trivial
19088
19089 TTY LAYER
19090 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19091 M: Jiri Slaby <jirislaby@kernel.org>
19092 S: Supported
19093 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19094 F: Documentation/driver-api/serial/
19095 F: drivers/tty/
19096 F: drivers/tty/serial/serial_core.c
19097 F: include/linux/selection.h
19098 F: include/linux/serial.h
19099 F: include/linux/serial_core.h
19100 F: include/linux/sysrq.h
19101 F: include/linux/tty*.h
19102 F: include/linux/vt.h
19103 F: include/linux/vt_*.h
19104 F: include/uapi/linux/serial.h
19105 F: include/uapi/linux/serial_core.h
19106 F: include/uapi/linux/tty.h
19107
19108 TUA9001 MEDIA DRIVER
19109 M: Antti Palosaari <crope@iki.fi>
19110 L: linux-media@vger.kernel.org
19111 S: Maintained
19112 W: https://linuxtv.org
19113 W: http://palosaari.fi/linux/
19114 Q: http://patchwork.linuxtv.org/project/linux-media/list/
19115 T: git git://linuxtv.org/anttip/media_tree.git
19116 F: drivers/media/tuners/tua9001*
19117
19118 TULIP NETWORK DRIVERS
19119 L: netdev@vger.kernel.org
19120 L: linux-parisc@vger.kernel.org
19121 S: Orphan
19122 F: drivers/net/ethernet/dec/tulip/
19123
19124 TUN/TAP driver
19125 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
19126 S: Maintained
19127 W: http://vtun.sourceforge.net/tun
19128 F: Documentation/networking/tuntap.rst
19129 F: arch/um/os-Linux/drivers/
19130
19131 TURBOCHANNEL SUBSYSTEM
19132 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
19133 M: Ralf Baechle <ralf@linux-mips.org>
19134 L: linux-mips@vger.kernel.org
19135 S: Maintained
19136 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
19137 F: drivers/tc/
19138 F: include/linux/tc.h
19139
19140 TURBOSTAT UTILITY
19141 M: "Len Brown" <lenb@kernel.org>
19142 L: linux-pm@vger.kernel.org
19143 S: Supported
19144 Q: https://patchwork.kernel.org/project/linux-pm/list/
19145 B: https://bugzilla.kernel.org
19146 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19147 F: tools/power/x86/turbostat/
19148
19149 TW5864 VIDEO4LINUX DRIVER
19150 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19151 M: Anton Sviridenko <anton@corp.bluecherry.net>
19152 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19153 M: Andrey Utkin <andrey_utkin@fastmail.com>
19154 L: linux-media@vger.kernel.org
19155 S: Supported
19156 F: drivers/media/pci/tw5864/
19157
19158 TW68 VIDEO4LINUX DRIVER
19159 M: Hans Verkuil <hverkuil@xs4all.nl>
19160 L: linux-media@vger.kernel.org
19161 S: Odd Fixes
19162 W: https://linuxtv.org
19163 T: git git://linuxtv.org/media_tree.git
19164 F: drivers/media/pci/tw68/
19165
19166 TW686X VIDEO4LINUX DRIVER
19167 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19168 L: linux-media@vger.kernel.org
19169 S: Maintained
19170 W: http://linuxtv.org
19171 T: git git://linuxtv.org/media_tree.git
19172 F: drivers/media/pci/tw686x/
19173
19174 UACCE ACCELERATOR FRAMEWORK
19175 M: Zhangfei Gao <zhangfei.gao@linaro.org>
19176 M: Zhou Wang <wangzhou1@hisilicon.com>
19177 L: linux-accelerators@lists.ozlabs.org
19178 L: linux-kernel@vger.kernel.org
19179 S: Maintained
19180 F: Documentation/ABI/testing/sysfs-driver-uacce
19181 F: Documentation/misc-devices/uacce.rst
19182 F: drivers/misc/uacce/
19183 F: include/linux/uacce.h
19184 F: include/uapi/misc/uacce/
19185
19186 UBI FILE SYSTEM (UBIFS)
19187 M: Richard Weinberger <richard@nod.at>
19188 L: linux-mtd@lists.infradead.org
19189 S: Supported
19190 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
19191 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19192 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19193 F: Documentation/filesystems/ubifs-authentication.rst
19194 F: Documentation/filesystems/ubifs.rst
19195 F: fs/ubifs/
19196
19197 UCLINUX (M68KNOMMU AND COLDFIRE)
19198 M: Greg Ungerer <gerg@linux-m68k.org>
19199 L: linux-m68k@lists.linux-m68k.org
19200 L: uclinux-dev@uclinux.org (subscribers-only)
19201 S: Maintained
19202 W: http://www.linux-m68k.org/
19203 W: http://www.uclinux.org/
19204 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19205 F: arch/m68k/*/*_no.*
19206 F: arch/m68k/68*/
19207 F: arch/m68k/coldfire/
19208 F: arch/m68k/include/asm/*_no.*
19209
19210 UDF FILESYSTEM
19211 M: Jan Kara <jack@suse.com>
19212 S: Maintained
19213 F: Documentation/filesystems/udf.rst
19214 F: fs/udf/
19215
19216 UDRAW TABLET
19217 M: Bastien Nocera <hadess@hadess.net>
19218 L: linux-input@vger.kernel.org
19219 S: Maintained
19220 F: drivers/hid/hid-udraw-ps3.c
19221
19222 UFS FILESYSTEM
19223 M: Evgeniy Dushistov <dushistov@mail.ru>
19224 S: Maintained
19225 F: Documentation/admin-guide/ufs.rst
19226 F: fs/ufs/
19227
19228 UHID USERSPACE HID IO DRIVER
19229 M: David Rheinsberg <david.rheinsberg@gmail.com>
19230 L: linux-input@vger.kernel.org
19231 S: Maintained
19232 F: drivers/hid/uhid.c
19233 F: include/uapi/linux/uhid.h
19234
19235 ULPI BUS
19236 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19237 L: linux-usb@vger.kernel.org
19238 S: Maintained
19239 F: drivers/usb/common/ulpi.c
19240 F: include/linux/ulpi/
19241
19242 UNICODE SUBSYSTEM
19243 M: Gabriel Krisman Bertazi <krisman@collabora.com>
19244 L: linux-fsdevel@vger.kernel.org
19245 S: Supported
19246 F: fs/unicode/
19247
19248 UNIFDEF
19249 M: Tony Finch <dot@dotat.at>
19250 S: Maintained
19251 W: http://dotat.at/prog/unifdef
19252 F: scripts/unifdef.c
19253
19254 UNIFORM CDROM DRIVER
19255 M: Phillip Potter <phil@philpotter.co.uk>
19256 S: Maintained
19257 F: Documentation/cdrom/
19258 F: drivers/cdrom/cdrom.c
19259 F: include/linux/cdrom.h
19260 F: include/uapi/linux/cdrom.h
19261
19262 UNISYS S-PAR DRIVERS
19263 M: David Kershner <david.kershner@unisys.com>
19264 L: sparmaintainer@unisys.com (Unisys internal)
19265 S: Supported
19266 F: drivers/staging/unisys/
19267 F: drivers/visorbus/
19268 F: include/linux/visorbus.h
19269
19270 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19271 R: Alim Akhtar <alim.akhtar@samsung.com>
19272 R: Avri Altman <avri.altman@wdc.com>
19273 L: linux-scsi@vger.kernel.org
19274 S: Supported
19275 F: Documentation/scsi/ufs.rst
19276 F: drivers/scsi/ufs/
19277
19278 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19279 M: Pedro Sousa <pedrom.sousa@synopsys.com>
19280 L: linux-scsi@vger.kernel.org
19281 S: Supported
19282 F: drivers/scsi/ufs/*dwc*
19283
19284 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19285 M: Stanley Chu <stanley.chu@mediatek.com>
19286 L: linux-scsi@vger.kernel.org
19287 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19288 S: Maintained
19289 F: drivers/scsi/ufs/ufs-mediatek*
19290
19291 UNSORTED BLOCK IMAGES (UBI)
19292 M: Richard Weinberger <richard@nod.at>
19293 L: linux-mtd@lists.infradead.org
19294 S: Supported
19295 W: http://www.linux-mtd.infradead.org/
19296 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19297 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19298 F: drivers/mtd/ubi/
19299 F: include/linux/mtd/ubi.h
19300 F: include/uapi/mtd/ubi-user.h
19301
19302 USB "USBNET" DRIVER FRAMEWORK
19303 M: Oliver Neukum <oneukum@suse.com>
19304 L: netdev@vger.kernel.org
19305 S: Maintained
19306 W: http://www.linux-usb.org/usbnet
19307 F: drivers/net/usb/usbnet.c
19308 F: include/linux/usb/usbnet.h
19309
19310 USB ACM DRIVER
19311 M: Oliver Neukum <oneukum@suse.com>
19312 L: linux-usb@vger.kernel.org
19313 S: Maintained
19314 F: Documentation/usb/acm.rst
19315 F: drivers/usb/class/cdc-acm.*
19316
19317 USB APPLE MFI FASTCHARGE DRIVER
19318 M: Bastien Nocera <hadess@hadess.net>
19319 L: linux-usb@vger.kernel.org
19320 S: Maintained
19321 F: drivers/usb/misc/apple-mfi-fastcharge.c
19322
19323 USB AR5523 WIRELESS DRIVER
19324 M: Pontus Fuchs <pontus.fuchs@gmail.com>
19325 L: linux-wireless@vger.kernel.org
19326 S: Maintained
19327 F: drivers/net/wireless/ath/ar5523/
19328
19329 USB ATTACHED SCSI
19330 M: Oliver Neukum <oneukum@suse.com>
19331 L: linux-usb@vger.kernel.org
19332 L: linux-scsi@vger.kernel.org
19333 S: Maintained
19334 F: drivers/usb/storage/uas.c
19335
19336 USB CDC ETHERNET DRIVER
19337 M: Oliver Neukum <oliver@neukum.org>
19338 L: linux-usb@vger.kernel.org
19339 S: Maintained
19340 F: drivers/net/usb/cdc_*.c
19341 F: include/uapi/linux/usb/cdc.h
19342
19343 USB CHAOSKEY DRIVER
19344 M: Keith Packard <keithp@keithp.com>
19345 L: linux-usb@vger.kernel.org
19346 S: Maintained
19347 F: drivers/usb/misc/chaoskey.c
19348
19349 USB CYPRESS C67X00 DRIVER
19350 L: linux-usb@vger.kernel.org
19351 S: Orphan
19352 F: drivers/usb/c67x00/
19353
19354 USB DAVICOM DM9601 DRIVER
19355 M: Peter Korsgaard <peter@korsgaard.com>
19356 L: netdev@vger.kernel.org
19357 S: Maintained
19358 W: http://www.linux-usb.org/usbnet
19359 F: drivers/net/usb/dm9601.c
19360
19361 USB EHCI DRIVER
19362 M: Alan Stern <stern@rowland.harvard.edu>
19363 L: linux-usb@vger.kernel.org
19364 S: Maintained
19365 F: Documentation/usb/ehci.rst
19366 F: drivers/usb/host/ehci*
19367
19368 USB GADGET/PERIPHERAL SUBSYSTEM
19369 M: Felipe Balbi <balbi@kernel.org>
19370 L: linux-usb@vger.kernel.org
19371 S: Maintained
19372 W: http://www.linux-usb.org/gadget
19373 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19374 F: drivers/usb/gadget/
19375 F: include/linux/usb/gadget*
19376
19377 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19378 M: Jiri Kosina <jikos@kernel.org>
19379 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
19380 L: linux-usb@vger.kernel.org
19381 S: Maintained
19382 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19383 F: Documentation/hid/hiddev.rst
19384 F: drivers/hid/usbhid/
19385
19386 USB INTEL XHCI ROLE MUX DRIVER
19387 M: Hans de Goede <hdegoede@redhat.com>
19388 L: linux-usb@vger.kernel.org
19389 S: Maintained
19390 F: drivers/usb/roles/intel-xhci-usb-role-switch.c
19391
19392 USB IP DRIVER FOR HISILICON KIRIN 960
19393 M: Yu Chen <chenyu56@huawei.com>
19394 M: Binghui Wang <wangbinghui@hisilicon.com>
19395 L: linux-usb@vger.kernel.org
19396 S: Maintained
19397 F: Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19398 F: drivers/phy/hisilicon/phy-hi3660-usb3.c
19399
19400 USB IP DRIVER FOR HISILICON KIRIN 970
19401 M: Mauro Carvalho Chehab <mchehab@kernel.org>
19402 L: linux-usb@vger.kernel.org
19403 S: Maintained
19404 F: Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19405 F: drivers/phy/hisilicon/phy-hi3670-usb3.c
19406
19407 USB ISP116X DRIVER
19408 M: Olav Kongas <ok@artecdesign.ee>
19409 L: linux-usb@vger.kernel.org
19410 S: Maintained
19411 F: drivers/usb/host/isp116x*
19412 F: include/linux/usb/isp116x.h
19413
19414 USB ISP1760 DRIVER
19415 M: Rui Miguel Silva <rui.silva@linaro.org>
19416 L: linux-usb@vger.kernel.org
19417 S: Maintained
19418 F: drivers/usb/isp1760/*
19419 F: Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19420
19421 USB LAN78XX ETHERNET DRIVER
19422 M: Woojung Huh <woojung.huh@microchip.com>
19423 M: UNGLinuxDriver@microchip.com
19424 L: netdev@vger.kernel.org
19425 S: Maintained
19426 F: Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19427 F: drivers/net/usb/lan78xx.*
19428 F: include/dt-bindings/net/microchip-lan78xx.h
19429
19430 USB MASS STORAGE DRIVER
19431 M: Alan Stern <stern@rowland.harvard.edu>
19432 L: linux-usb@vger.kernel.org
19433 L: usb-storage@lists.one-eyed-alien.net
19434 S: Maintained
19435 F: drivers/usb/storage/
19436
19437 USB MIDI DRIVER
19438 M: Clemens Ladisch <clemens@ladisch.de>
19439 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19440 S: Maintained
19441 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19442 F: sound/usb/midi.*
19443
19444 USB NETWORKING DRIVERS
19445 L: linux-usb@vger.kernel.org
19446 S: Odd Fixes
19447 F: drivers/net/usb/
19448
19449 USB OHCI DRIVER
19450 M: Alan Stern <stern@rowland.harvard.edu>
19451 L: linux-usb@vger.kernel.org
19452 S: Maintained
19453 F: Documentation/usb/ohci.rst
19454 F: drivers/usb/host/ohci*
19455
19456 USB OTG FSM (Finite State Machine)
19457 M: Peter Chen <peter.chen@kernel.org>
19458 L: linux-usb@vger.kernel.org
19459 S: Maintained
19460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19461 F: drivers/usb/common/usb-otg-fsm.c
19462
19463 USB OVER IP DRIVER
19464 M: Valentina Manea <valentina.manea.m@gmail.com>
19465 M: Shuah Khan <shuah@kernel.org>
19466 M: Shuah Khan <skhan@linuxfoundation.org>
19467 L: linux-usb@vger.kernel.org
19468 S: Maintained
19469 F: Documentation/usb/usbip_protocol.rst
19470 F: drivers/usb/usbip/
19471 F: tools/testing/selftests/drivers/usb/usbip/
19472 F: tools/usb/usbip/
19473
19474 USB PEGASUS DRIVER
19475 M: Petko Manolov <petkan@nucleusys.com>
19476 L: linux-usb@vger.kernel.org
19477 L: netdev@vger.kernel.org
19478 S: Maintained
19479 W: https://github.com/petkan/pegasus
19480 T: git git://github.com/petkan/pegasus.git
19481 F: drivers/net/usb/pegasus.*
19482
19483 USB PHY LAYER
19484 M: Felipe Balbi <balbi@kernel.org>
19485 L: linux-usb@vger.kernel.org
19486 S: Maintained
19487 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19488 F: drivers/usb/phy/
19489
19490 USB PRINTER DRIVER (usblp)
19491 M: Pete Zaitcev <zaitcev@redhat.com>
19492 L: linux-usb@vger.kernel.org
19493 S: Supported
19494 F: drivers/usb/class/usblp.c
19495
19496 USB RAW GADGET DRIVER
19497 R: Andrey Konovalov <andreyknvl@gmail.com>
19498 L: linux-usb@vger.kernel.org
19499 S: Maintained
19500 F: Documentation/usb/raw-gadget.rst
19501 F: drivers/usb/gadget/legacy/raw_gadget.c
19502 F: include/uapi/linux/usb/raw_gadget.h
19503
19504 USB QMI WWAN NETWORK DRIVER
19505 M: Bjørn Mork <bjorn@mork.no>
19506 L: netdev@vger.kernel.org
19507 S: Maintained
19508 F: Documentation/ABI/testing/sysfs-class-net-qmi
19509 F: drivers/net/usb/qmi_wwan.c
19510
19511 USB RTL8150 DRIVER
19512 M: Petko Manolov <petkan@nucleusys.com>
19513 L: linux-usb@vger.kernel.org
19514 L: netdev@vger.kernel.org
19515 S: Maintained
19516 W: https://github.com/petkan/rtl8150
19517 T: git git://github.com/petkan/rtl8150.git
19518 F: drivers/net/usb/rtl8150.c
19519
19520 USB SERIAL SUBSYSTEM
19521 M: Johan Hovold <johan@kernel.org>
19522 L: linux-usb@vger.kernel.org
19523 S: Maintained
19524 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19525 F: Documentation/usb/usb-serial.rst
19526 F: drivers/usb/serial/
19527 F: include/linux/usb/serial.h
19528
19529 USB SMSC75XX ETHERNET DRIVER
19530 M: Steve Glendinning <steve.glendinning@shawell.net>
19531 L: netdev@vger.kernel.org
19532 S: Maintained
19533 F: drivers/net/usb/smsc75xx.*
19534
19535 USB SMSC95XX ETHERNET DRIVER
19536 M: Steve Glendinning <steve.glendinning@shawell.net>
19537 M: UNGLinuxDriver@microchip.com
19538 L: netdev@vger.kernel.org
19539 S: Maintained
19540 F: drivers/net/usb/smsc95xx.*
19541
19542 USB SUBSYSTEM
19543 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19544 L: linux-usb@vger.kernel.org
19545 S: Supported
19546 W: http://www.linux-usb.org
19547 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19548 F: Documentation/devicetree/bindings/usb/
19549 F: Documentation/usb/
19550 F: drivers/usb/
19551 F: include/linux/usb.h
19552 F: include/linux/usb/
19553
19554 USB TYPEC BUS FOR ALTERNATE MODES
19555 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19556 L: linux-usb@vger.kernel.org
19557 S: Maintained
19558 F: Documentation/ABI/testing/sysfs-bus-typec
19559 F: Documentation/driver-api/usb/typec_bus.rst
19560 F: drivers/usb/typec/altmodes/
19561 F: include/linux/usb/typec_altmode.h
19562
19563 USB TYPEC CLASS
19564 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19565 L: linux-usb@vger.kernel.org
19566 S: Maintained
19567 F: Documentation/ABI/testing/sysfs-class-typec
19568 F: Documentation/driver-api/usb/typec.rst
19569 F: drivers/usb/typec/
19570 F: include/linux/usb/typec.h
19571
19572 USB TYPEC INTEL PMC MUX DRIVER
19573 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19574 L: linux-usb@vger.kernel.org
19575 S: Maintained
19576 F: Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19577 F: drivers/usb/typec/mux/intel_pmc_mux.c
19578
19579 USB TYPEC PI3USB30532 MUX DRIVER
19580 M: Hans de Goede <hdegoede@redhat.com>
19581 L: linux-usb@vger.kernel.org
19582 S: Maintained
19583 F: drivers/usb/typec/mux/pi3usb30532.c
19584
19585 USB TYPEC PORT CONTROLLER DRIVERS
19586 M: Guenter Roeck <linux@roeck-us.net>
19587 L: linux-usb@vger.kernel.org
19588 S: Maintained
19589 F: drivers/usb/typec/tcpm/
19590
19591 USB UHCI DRIVER
19592 M: Alan Stern <stern@rowland.harvard.edu>
19593 L: linux-usb@vger.kernel.org
19594 S: Maintained
19595 F: drivers/usb/host/uhci*
19596
19597 USB VIDEO CLASS
19598 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19599 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19600 L: linux-media@vger.kernel.org
19601 S: Maintained
19602 W: http://www.ideasonboard.org/uvc/
19603 T: git git://linuxtv.org/media_tree.git
19604 F: drivers/media/usb/uvc/
19605 F: include/uapi/linux/uvcvideo.h
19606
19607 USB WEBCAM GADGET
19608 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19609 L: linux-usb@vger.kernel.org
19610 S: Maintained
19611 F: drivers/usb/gadget/function/*uvc*
19612 F: drivers/usb/gadget/legacy/webcam.c
19613 F: include/uapi/linux/usb/g_uvc.h
19614
19615 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19616 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
19617 L: linux-wireless@vger.kernel.org
19618 S: Maintained
19619 F: drivers/net/wireless/rndis_wlan.c
19620
19621 USB XHCI DRIVER
19622 M: Mathias Nyman <mathias.nyman@intel.com>
19623 L: linux-usb@vger.kernel.org
19624 S: Supported
19625 F: drivers/usb/host/pci-quirks*
19626 F: drivers/usb/host/xhci*
19627
19628 USB ZD1201 DRIVER
19629 L: linux-wireless@vger.kernel.org
19630 S: Orphan
19631 W: http://linux-lc100020.sourceforge.net
19632 F: drivers/net/wireless/zydas/zd1201.*
19633
19634 USB ZR364XX DRIVER
19635 M: Antoine Jacquet <royale@zerezo.com>
19636 L: linux-usb@vger.kernel.org
19637 L: linux-media@vger.kernel.org
19638 S: Maintained
19639 W: http://royale.zerezo.com/zr364xx/
19640 T: git git://linuxtv.org/media_tree.git
19641 F: Documentation/admin-guide/media/zr364xx*
19642 F: drivers/media/usb/zr364xx/
19643
19644 USER-MODE LINUX (UML)
19645 M: Jeff Dike <jdike@addtoit.com>
19646 M: Richard Weinberger <richard@nod.at>
19647 M: Anton Ivanov <anton.ivanov@cambridgegreys.com>
19648 L: linux-um@lists.infradead.org
19649 S: Maintained
19650 W: http://user-mode-linux.sourceforge.net
19651 Q: https://patchwork.ozlabs.org/project/linux-um/list/
19652 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19653 F: Documentation/virt/uml/
19654 F: arch/um/
19655 F: arch/x86/um/
19656 F: fs/hostfs/
19657
19658 USERSPACE COPYIN/COPYOUT (UIOVEC)
19659 M: Alexander Viro <viro@zeniv.linux.org.uk>
19660 S: Maintained
19661 F: include/linux/uio.h
19662 F: lib/iov_iter.c
19663
19664 USERSPACE DMA BUFFER DRIVER
19665 M: Gerd Hoffmann <kraxel@redhat.com>
19666 L: dri-devel@lists.freedesktop.org
19667 S: Maintained
19668 T: git git://anongit.freedesktop.org/drm/drm-misc
19669 F: drivers/dma-buf/udmabuf.c
19670 F: include/uapi/linux/udmabuf.h
19671
19672 USERSPACE I/O (UIO)
19673 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19674 S: Maintained
19675 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19676 F: Documentation/driver-api/uio-howto.rst
19677 F: drivers/uio/
19678 F: include/linux/uio_driver.h
19679
19680 UTIL-LINUX PACKAGE
19681 M: Karel Zak <kzak@redhat.com>
19682 L: util-linux@vger.kernel.org
19683 S: Maintained
19684 W: http://en.wikipedia.org/wiki/Util-linux
19685 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19686
19687 UUID HELPERS
19688 M: Christoph Hellwig <hch@lst.de>
19689 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19690 L: linux-kernel@vger.kernel.org
19691 S: Maintained
19692 T: git git://git.infradead.org/users/hch/uuid.git
19693 F: include/linux/uuid.h
19694 F: include/uapi/linux/uuid.h
19695 F: lib/test_uuid.c
19696 F: lib/uuid.c
19697
19698 UV SYSFS DRIVER
19699 M: Justin Ernst <justin.ernst@hpe.com>
19700 L: platform-driver-x86@vger.kernel.org
19701 S: Maintained
19702 F: drivers/platform/x86/uv_sysfs.c
19703
19704 UVESAFB DRIVER
19705 M: Michal Januszewski <spock@gentoo.org>
19706 L: linux-fbdev@vger.kernel.org
19707 S: Maintained
19708 W: https://github.com/mjanusz/v86d
19709 F: Documentation/fb/uvesafb.rst
19710 F: drivers/video/fbdev/uvesafb.*
19711
19712 Ux500 CLOCK DRIVERS
19713 M: Ulf Hansson <ulf.hansson@linaro.org>
19714 L: linux-clk@vger.kernel.org
19715 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19716 S: Maintained
19717 F: drivers/clk/ux500/
19718
19719 VF610 NAND DRIVER
19720 M: Stefan Agner <stefan@agner.ch>
19721 L: linux-mtd@lists.infradead.org
19722 S: Supported
19723 F: drivers/mtd/nand/raw/vf610_nfc.c
19724
19725 VFAT/FAT/MSDOS FILESYSTEM
19726 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19727 S: Maintained
19728 F: Documentation/filesystems/vfat.rst
19729 F: fs/fat/
19730
19731 VFIO DRIVER
19732 M: Alex Williamson <alex.williamson@redhat.com>
19733 R: Cornelia Huck <cohuck@redhat.com>
19734 L: kvm@vger.kernel.org
19735 S: Maintained
19736 T: git git://github.com/awilliam/linux-vfio.git
19737 F: Documentation/driver-api/vfio.rst
19738 F: drivers/vfio/
19739 F: include/linux/vfio.h
19740 F: include/linux/vfio_pci_core.h
19741 F: include/uapi/linux/vfio.h
19742
19743 VFIO FSL-MC DRIVER
19744 M: Diana Craciun <diana.craciun@oss.nxp.com>
19745 L: kvm@vger.kernel.org
19746 S: Maintained
19747 F: drivers/vfio/fsl-mc/
19748
19749 VFIO MEDIATED DEVICE DRIVERS
19750 M: Kirti Wankhede <kwankhede@nvidia.com>
19751 L: kvm@vger.kernel.org
19752 S: Maintained
19753 F: Documentation/driver-api/vfio-mediated-device.rst
19754 F: drivers/vfio/mdev/
19755 F: include/linux/mdev.h
19756 F: samples/vfio-mdev/
19757
19758 VFIO PLATFORM DRIVER
19759 M: Eric Auger <eric.auger@redhat.com>
19760 L: kvm@vger.kernel.org
19761 S: Maintained
19762 F: drivers/vfio/platform/
19763
19764 VGA_SWITCHEROO
19765 R: Lukas Wunner <lukas@wunner.de>
19766 S: Maintained
19767 T: git git://anongit.freedesktop.org/drm/drm-misc
19768 F: Documentation/gpu/vga-switcheroo.rst
19769 F: drivers/gpu/vga/vga_switcheroo.c
19770 F: include/linux/vga_switcheroo.h
19771
19772 VIA RHINE NETWORK DRIVER
19773 S: Maintained
19774 M: Kevin Brace <kevinbrace@bracecomputerlab.com>
19775 F: drivers/net/ethernet/via/via-rhine.c
19776
19777 VIA SD/MMC CARD CONTROLLER DRIVER
19778 M: Bruce Chang <brucechang@via.com.tw>
19779 M: Harald Welte <HaraldWelte@viatech.com>
19780 S: Maintained
19781 F: drivers/mmc/host/via-sdmmc.c
19782
19783 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19784 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19785 L: linux-fbdev@vger.kernel.org
19786 S: Maintained
19787 F: drivers/video/fbdev/via/
19788 F: include/linux/via-core.h
19789 F: include/linux/via-gpio.h
19790 F: include/linux/via_i2c.h
19791
19792 VIA VELOCITY NETWORK DRIVER
19793 M: Francois Romieu <romieu@fr.zoreil.com>
19794 L: netdev@vger.kernel.org
19795 S: Maintained
19796 F: drivers/net/ethernet/via/via-velocity.*
19797
19798 VICODEC VIRTUAL CODEC DRIVER
19799 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
19800 L: linux-media@vger.kernel.org
19801 S: Maintained
19802 W: https://linuxtv.org
19803 T: git git://linuxtv.org/media_tree.git
19804 F: drivers/media/test-drivers/vicodec/*
19805
19806 VIDEO I2C POLLING DRIVER
19807 M: Matt Ranostay <matt.ranostay@konsulko.com>
19808 L: linux-media@vger.kernel.org
19809 S: Maintained
19810 F: drivers/media/i2c/video-i2c.c
19811
19812 VIDEO MULTIPLEXER DRIVER
19813 M: Philipp Zabel <p.zabel@pengutronix.de>
19814 L: linux-media@vger.kernel.org
19815 S: Maintained
19816 F: drivers/media/platform/video-mux.c
19817
19818 VIDEOBUF2 FRAMEWORK
19819 M: Tomasz Figa <tfiga@chromium.org>
19820 M: Marek Szyprowski <m.szyprowski@samsung.com>
19821 L: linux-media@vger.kernel.org
19822 S: Maintained
19823 F: drivers/media/common/videobuf2/*
19824 F: include/media/videobuf2-*
19825
19826 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19827 M: Helen Koike <helen.koike@collabora.com>
19828 R: Shuah Khan <skhan@linuxfoundation.org>
19829 L: linux-media@vger.kernel.org
19830 S: Maintained
19831 W: https://linuxtv.org
19832 T: git git://linuxtv.org/media_tree.git
19833 F: drivers/media/test-drivers/vimc/*
19834
19835 VIRT LIB
19836 M: Alex Williamson <alex.williamson@redhat.com>
19837 M: Paolo Bonzini <pbonzini@redhat.com>
19838 L: kvm@vger.kernel.org
19839 S: Supported
19840 F: virt/lib/
19841
19842 VIRTIO AND VHOST VSOCK DRIVER
19843 M: Stefan Hajnoczi <stefanha@redhat.com>
19844 M: Stefano Garzarella <sgarzare@redhat.com>
19845 L: kvm@vger.kernel.org
19846 L: virtualization@lists.linux-foundation.org
19847 L: netdev@vger.kernel.org
19848 S: Maintained
19849 F: drivers/vhost/vsock.c
19850 F: include/linux/virtio_vsock.h
19851 F: include/uapi/linux/virtio_vsock.h
19852 F: net/vmw_vsock/virtio_transport.c
19853 F: net/vmw_vsock/virtio_transport_common.c
19854
19855 VIRTIO BLOCK AND SCSI DRIVERS
19856 M: "Michael S. Tsirkin" <mst@redhat.com>
19857 M: Jason Wang <jasowang@redhat.com>
19858 R: Paolo Bonzini <pbonzini@redhat.com>
19859 R: Stefan Hajnoczi <stefanha@redhat.com>
19860 L: virtualization@lists.linux-foundation.org
19861 S: Maintained
19862 F: drivers/block/virtio_blk.c
19863 F: drivers/scsi/virtio_scsi.c
19864 F: drivers/vhost/scsi.c
19865 F: include/uapi/linux/virtio_blk.h
19866 F: include/uapi/linux/virtio_scsi.h
19867
19868 VIRTIO CONSOLE DRIVER
19869 M: Amit Shah <amit@kernel.org>
19870 L: virtualization@lists.linux-foundation.org
19871 S: Maintained
19872 F: drivers/char/virtio_console.c
19873 F: include/linux/virtio_console.h
19874 F: include/uapi/linux/virtio_console.h
19875
19876 VIRTIO CORE AND NET DRIVERS
19877 M: "Michael S. Tsirkin" <mst@redhat.com>
19878 M: Jason Wang <jasowang@redhat.com>
19879 L: virtualization@lists.linux-foundation.org
19880 S: Maintained
19881 F: Documentation/devicetree/bindings/virtio/
19882 F: drivers/block/virtio_blk.c
19883 F: drivers/crypto/virtio/
19884 F: drivers/net/virtio_net.c
19885 F: drivers/vdpa/
19886 F: drivers/virtio/
19887 F: include/linux/vdpa.h
19888 F: include/linux/virtio*.h
19889 F: include/uapi/linux/virtio_*.h
19890 F: tools/virtio/
19891
19892 VIRTIO BALLOON
19893 M: "Michael S. Tsirkin" <mst@redhat.com>
19894 M: David Hildenbrand <david@redhat.com>
19895 L: virtualization@lists.linux-foundation.org
19896 S: Maintained
19897 F: drivers/virtio/virtio_balloon.c
19898 F: include/uapi/linux/virtio_balloon.h
19899 F: include/linux/balloon_compaction.h
19900 F: mm/balloon_compaction.c
19901
19902 VIRTIO CRYPTO DRIVER
19903 M: Gonglei <arei.gonglei@huawei.com>
19904 L: virtualization@lists.linux-foundation.org
19905 L: linux-crypto@vger.kernel.org
19906 S: Maintained
19907 F: drivers/crypto/virtio/
19908 F: include/uapi/linux/virtio_crypto.h
19909
19910 VIRTIO DRIVERS FOR S390
19911 M: Cornelia Huck <cohuck@redhat.com>
19912 M: Halil Pasic <pasic@linux.ibm.com>
19913 L: linux-s390@vger.kernel.org
19914 L: virtualization@lists.linux-foundation.org
19915 L: kvm@vger.kernel.org
19916 S: Supported
19917 F: arch/s390/include/uapi/asm/virtio-ccw.h
19918 F: drivers/s390/virtio/
19919
19920 VIRTIO FILE SYSTEM
19921 M: Vivek Goyal <vgoyal@redhat.com>
19922 M: Stefan Hajnoczi <stefanha@redhat.com>
19923 M: Miklos Szeredi <miklos@szeredi.hu>
19924 L: virtualization@lists.linux-foundation.org
19925 L: linux-fsdevel@vger.kernel.org
19926 S: Supported
19927 W: https://virtio-fs.gitlab.io/
19928 F: Documentation/filesystems/virtiofs.rst
19929 F: fs/fuse/virtio_fs.c
19930 F: include/uapi/linux/virtio_fs.h
19931
19932 VIRTIO GPIO DRIVER
19933 M: Enrico Weigelt, metux IT consult <info@metux.net>
19934 M: Viresh Kumar <vireshk@kernel.org>
19935 L: linux-gpio@vger.kernel.org
19936 L: virtualization@lists.linux-foundation.org
19937 S: Maintained
19938 F: drivers/gpio/gpio-virtio.c
19939 F: include/uapi/linux/virtio_gpio.h
19940
19941 VIRTIO GPU DRIVER
19942 M: David Airlie <airlied@linux.ie>
19943 M: Gerd Hoffmann <kraxel@redhat.com>
19944 L: dri-devel@lists.freedesktop.org
19945 L: virtualization@lists.linux-foundation.org
19946 S: Maintained
19947 T: git git://anongit.freedesktop.org/drm/drm-misc
19948 F: drivers/gpu/drm/virtio/
19949 F: include/uapi/linux/virtio_gpu.h
19950
19951 VIRTIO HOST (VHOST)
19952 M: "Michael S. Tsirkin" <mst@redhat.com>
19953 M: Jason Wang <jasowang@redhat.com>
19954 L: kvm@vger.kernel.org
19955 L: virtualization@lists.linux-foundation.org
19956 L: netdev@vger.kernel.org
19957 S: Maintained
19958 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19959 F: drivers/vhost/
19960 F: include/linux/vhost_iotlb.h
19961 F: include/uapi/linux/vhost.h
19962
19963 VIRTIO INPUT DRIVER
19964 M: Gerd Hoffmann <kraxel@redhat.com>
19965 S: Maintained
19966 F: drivers/virtio/virtio_input.c
19967 F: include/uapi/linux/virtio_input.h
19968
19969 VIRTIO IOMMU DRIVER
19970 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
19971 L: virtualization@lists.linux-foundation.org
19972 S: Maintained
19973 F: drivers/iommu/virtio-iommu.c
19974 F: include/uapi/linux/virtio_iommu.h
19975
19976 VIRTIO MEM DRIVER
19977 M: David Hildenbrand <david@redhat.com>
19978 L: virtualization@lists.linux-foundation.org
19979 S: Maintained
19980 W: https://virtio-mem.gitlab.io/
19981 F: drivers/virtio/virtio_mem.c
19982 F: include/uapi/linux/virtio_mem.h
19983
19984 VIRTIO SOUND DRIVER
19985 M: Anton Yakovlev <anton.yakovlev@opensynergy.com>
19986 M: "Michael S. Tsirkin" <mst@redhat.com>
19987 L: virtualization@lists.linux-foundation.org
19988 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19989 S: Maintained
19990 F: include/uapi/linux/virtio_snd.h
19991 F: sound/virtio/*
19992
19993 VIRTIO I2C DRIVER
19994 M: Jie Deng <jie.deng@intel.com>
19995 M: Viresh Kumar <viresh.kumar@linaro.org>
19996 L: linux-i2c@vger.kernel.org
19997 L: virtualization@lists.linux-foundation.org
19998 S: Maintained
19999 F: drivers/i2c/busses/i2c-virtio.c
20000 F: include/uapi/linux/virtio_i2c.h
20001
20002 VIRTUAL BOX GUEST DEVICE DRIVER
20003 M: Hans de Goede <hdegoede@redhat.com>
20004 M: Arnd Bergmann <arnd@arndb.de>
20005 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20006 S: Maintained
20007 F: drivers/virt/vboxguest/
20008 F: include/linux/vbox_utils.h
20009 F: include/uapi/linux/vbox*.h
20010
20011 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20012 M: Hans de Goede <hdegoede@redhat.com>
20013 L: linux-fsdevel@vger.kernel.org
20014 S: Maintained
20015 F: fs/vboxsf/*
20016
20017 VIRTUAL SERIO DEVICE DRIVER
20018 M: Stephen Chandler Paul <thatslyude@gmail.com>
20019 S: Maintained
20020 F: drivers/input/serio/userio.c
20021 F: include/uapi/linux/userio.h
20022
20023 VIVID VIRTUAL VIDEO DRIVER
20024 M: Hans Verkuil <hverkuil@xs4all.nl>
20025 L: linux-media@vger.kernel.org
20026 S: Maintained
20027 W: https://linuxtv.org
20028 T: git git://linuxtv.org/media_tree.git
20029 F: drivers/media/test-drivers/vivid/*
20030
20031 VIDTV VIRTUAL DIGITAL TV DRIVER
20032 M: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20033 L: linux-media@vger.kernel.org
20034 S: Maintained
20035 W: https://linuxtv.org
20036 T: git git://linuxtv.org/media_tree.git
20037 F: drivers/media/test-drivers/vidtv/*
20038
20039 VLYNQ BUS
20040 M: Florian Fainelli <f.fainelli@gmail.com>
20041 L: openwrt-devel@lists.openwrt.org (subscribers-only)
20042 S: Maintained
20043 F: drivers/vlynq/vlynq.c
20044 F: include/linux/vlynq.h
20045
20046 VME SUBSYSTEM
20047 M: Martyn Welch <martyn@welchs.me.uk>
20048 M: Manohar Vanga <manohar.vanga@gmail.com>
20049 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20050 L: linux-kernel@vger.kernel.org
20051 S: Maintained
20052 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20053 F: Documentation/driver-api/vme.rst
20054 F: drivers/staging/vme/
20055 F: drivers/vme/
20056 F: include/linux/vme*
20057
20058 VM SOCKETS (AF_VSOCK)
20059 M: Stefano Garzarella <sgarzare@redhat.com>
20060 L: virtualization@lists.linux-foundation.org
20061 L: netdev@vger.kernel.org
20062 S: Maintained
20063 F: drivers/net/vsockmon.c
20064 F: include/net/af_vsock.h
20065 F: include/uapi/linux/vm_sockets.h
20066 F: include/uapi/linux/vm_sockets_diag.h
20067 F: include/uapi/linux/vsockmon.h
20068 F: net/vmw_vsock/
20069 F: tools/testing/vsock/
20070
20071 VMWARE BALLOON DRIVER
20072 M: Nadav Amit <namit@vmware.com>
20073 M: "VMware, Inc." <pv-drivers@vmware.com>
20074 L: linux-kernel@vger.kernel.org
20075 S: Maintained
20076 F: drivers/misc/vmw_balloon.c
20077
20078 VMWARE HYPERVISOR INTERFACE
20079 M: Deep Shah <sdeep@vmware.com>
20080 M: "VMware, Inc." <pv-drivers@vmware.com>
20081 L: virtualization@lists.linux-foundation.org
20082 S: Supported
20083 F: arch/x86/include/asm/vmware.h
20084 F: arch/x86/kernel/cpu/vmware.c
20085
20086 VMWARE PVRDMA DRIVER
20087 M: Adit Ranadive <aditr@vmware.com>
20088 M: VMware PV-Drivers <pv-drivers@vmware.com>
20089 L: linux-rdma@vger.kernel.org
20090 S: Maintained
20091 F: drivers/infiniband/hw/vmw_pvrdma/
20092
20093 VMware PVSCSI driver
20094 M: Vishal Bhakta <vbhakta@vmware.com>
20095 M: VMware PV-Drivers <pv-drivers@vmware.com>
20096 L: linux-scsi@vger.kernel.org
20097 S: Maintained
20098 F: drivers/scsi/vmw_pvscsi.c
20099 F: drivers/scsi/vmw_pvscsi.h
20100
20101 VMWARE VIRTUAL PTP CLOCK DRIVER
20102 M: Vivek Thampi <vithampi@vmware.com>
20103 M: "VMware, Inc." <pv-drivers@vmware.com>
20104 L: netdev@vger.kernel.org
20105 S: Supported
20106 F: drivers/ptp/ptp_vmw.c
20107
20108 VMWARE VMCI DRIVER
20109 M: Jorgen Hansen <jhansen@vmware.com>
20110 M: Vishnu Dasa <vdasa@vmware.com>
20111 L: linux-kernel@vger.kernel.org
20112 L: pv-drivers@vmware.com (private)
20113 S: Maintained
20114 F: drivers/misc/vmw_vmci/
20115
20116 VMWARE VMMOUSE SUBDRIVER
20117 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20118 M: "VMware, Inc." <pv-drivers@vmware.com>
20119 L: linux-input@vger.kernel.org
20120 S: Maintained
20121 F: drivers/input/mouse/vmmouse.c
20122 F: drivers/input/mouse/vmmouse.h
20123
20124 VMWARE VMXNET3 ETHERNET DRIVER
20125 M: Ronak Doshi <doshir@vmware.com>
20126 M: pv-drivers@vmware.com
20127 L: netdev@vger.kernel.org
20128 S: Maintained
20129 F: drivers/net/vmxnet3/
20130
20131 VOCORE VOCORE2 BOARD
20132 M: Harvey Hunt <harveyhuntnexus@gmail.com>
20133 L: linux-mips@vger.kernel.org
20134 S: Maintained
20135 F: arch/mips/boot/dts/ralink/vocore2.dts
20136
20137 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20138 M: Liam Girdwood <lgirdwood@gmail.com>
20139 M: Mark Brown <broonie@kernel.org>
20140 L: linux-kernel@vger.kernel.org
20141 S: Supported
20142 W: http://www.slimlogic.co.uk/?p=48
20143 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20144 F: Documentation/devicetree/bindings/regulator/
20145 F: Documentation/power/regulator/
20146 F: drivers/regulator/
20147 F: include/dt-bindings/regulator/
20148 F: include/linux/regulator/
20149 K: regulator_get_optional
20150
20151 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20152 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20153 F: drivers/regulator/irq_helpers.c
20154
20155 VRF
20156 M: David Ahern <dsahern@kernel.org>
20157 L: netdev@vger.kernel.org
20158 S: Maintained
20159 F: Documentation/networking/vrf.rst
20160 F: drivers/net/vrf.c
20161
20162 VSPRINTF
20163 M: Petr Mladek <pmladek@suse.com>
20164 M: Steven Rostedt <rostedt@goodmis.org>
20165 M: Sergey Senozhatsky <senozhatsky@chromium.org>
20166 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20167 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
20168 S: Maintained
20169 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20170 F: Documentation/core-api/printk-formats.rst
20171 F: lib/test_printf.c
20172 F: lib/test_scanf.c
20173 F: lib/vsprintf.c
20174
20175 VT1211 HARDWARE MONITOR DRIVER
20176 M: Juerg Haefliger <juergh@gmail.com>
20177 L: linux-hwmon@vger.kernel.org
20178 S: Maintained
20179 F: Documentation/hwmon/vt1211.rst
20180 F: drivers/hwmon/vt1211.c
20181
20182 VT8231 HARDWARE MONITOR DRIVER
20183 M: Roger Lucas <vt8231@hiddenengine.co.uk>
20184 L: linux-hwmon@vger.kernel.org
20185 S: Maintained
20186 F: drivers/hwmon/vt8231.c
20187
20188 VUB300 USB to SDIO/SD/MMC bridge chip
20189 L: linux-mmc@vger.kernel.org
20190 S: Orphan
20191 F: drivers/mmc/host/vub300.c
20192
20193 W1 DALLAS'S 1-WIRE BUS
20194 M: Evgeniy Polyakov <zbr@ioremap.net>
20195 S: Maintained
20196 F: Documentation/devicetree/bindings/w1/
20197 F: Documentation/w1/
20198 F: drivers/w1/
20199 F: include/linux/w1.h
20200
20201 W83791D HARDWARE MONITORING DRIVER
20202 M: Marc Hulsman <m.hulsman@tudelft.nl>
20203 L: linux-hwmon@vger.kernel.org
20204 S: Maintained
20205 F: Documentation/hwmon/w83791d.rst
20206 F: drivers/hwmon/w83791d.c
20207
20208 W83793 HARDWARE MONITORING DRIVER
20209 M: Rudolf Marek <r.marek@assembler.cz>
20210 L: linux-hwmon@vger.kernel.org
20211 S: Maintained
20212 F: Documentation/hwmon/w83793.rst
20213 F: drivers/hwmon/w83793.c
20214
20215 W83795 HARDWARE MONITORING DRIVER
20216 M: Jean Delvare <jdelvare@suse.com>
20217 L: linux-hwmon@vger.kernel.org
20218 S: Maintained
20219 F: drivers/hwmon/w83795.c
20220
20221 W83L51xD SD/MMC CARD INTERFACE DRIVER
20222 M: Pierre Ossman <pierre@ossman.eu>
20223 S: Maintained
20224 F: drivers/mmc/host/wbsd.*
20225
20226 WACOM PROTOCOL 4 SERIAL TABLETS
20227 M: Julian Squires <julian@cipht.net>
20228 M: Hans de Goede <hdegoede@redhat.com>
20229 L: linux-input@vger.kernel.org
20230 S: Maintained
20231 F: drivers/input/tablet/wacom_serial4.c
20232
20233 WATCHDOG DEVICE DRIVERS
20234 M: Wim Van Sebroeck <wim@linux-watchdog.org>
20235 M: Guenter Roeck <linux@roeck-us.net>
20236 L: linux-watchdog@vger.kernel.org
20237 S: Maintained
20238 W: http://www.linux-watchdog.org/
20239 T: git git://www.linux-watchdog.org/linux-watchdog.git
20240 F: Documentation/devicetree/bindings/watchdog/
20241 F: Documentation/watchdog/
20242 F: drivers/watchdog/
20243 F: include/linux/watchdog.h
20244 F: include/uapi/linux/watchdog.h
20245
20246 WHISKEYCOVE PMIC GPIO DRIVER
20247 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20248 L: linux-gpio@vger.kernel.org
20249 S: Maintained
20250 F: drivers/gpio/gpio-wcove.c
20251
20252 WHWAVE RTC DRIVER
20253 M: Dianlong Li <long17.cool@163.com>
20254 L: linux-rtc@vger.kernel.org
20255 S: Maintained
20256 F: drivers/rtc/rtc-sd3078.c
20257
20258 WIIMOTE HID DRIVER
20259 M: David Rheinsberg <david.rheinsberg@gmail.com>
20260 L: linux-input@vger.kernel.org
20261 S: Maintained
20262 F: drivers/hid/hid-wiimote*
20263
20264 WILOCITY WIL6210 WIRELESS DRIVER
20265 M: Maya Erez <merez@codeaurora.org>
20266 L: linux-wireless@vger.kernel.org
20267 L: wil6210@qti.qualcomm.com
20268 S: Supported
20269 W: https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20270 F: drivers/net/wireless/ath/wil6210/
20271
20272 WINBOND CIR DRIVER
20273 M: David Härdeman <david@hardeman.nu>
20274 S: Maintained
20275 F: drivers/media/rc/winbond-cir.c
20276
20277 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20278 M: William Breathitt Gray <vilhelm.gray@gmail.com>
20279 L: linux-watchdog@vger.kernel.org
20280 S: Maintained
20281 F: drivers/watchdog/ebc-c384_wdt.c
20282
20283 WINSYSTEMS WS16C48 GPIO DRIVER
20284 M: William Breathitt Gray <vilhelm.gray@gmail.com>
20285 L: linux-gpio@vger.kernel.org
20286 S: Maintained
20287 F: drivers/gpio/gpio-ws16c48.c
20288
20289 WIREGUARD SECURE NETWORK TUNNEL
20290 M: Jason A. Donenfeld <Jason@zx2c4.com>
20291 L: wireguard@lists.zx2c4.com
20292 L: netdev@vger.kernel.org
20293 S: Maintained
20294 F: drivers/net/wireguard/
20295 F: tools/testing/selftests/wireguard/
20296
20297 WISTRON LAPTOP BUTTON DRIVER
20298 M: Miloslav Trmac <mitr@volny.cz>
20299 S: Maintained
20300 F: drivers/input/misc/wistron_btns.c
20301
20302 WL3501 WIRELESS PCMCIA CARD DRIVER
20303 L: linux-wireless@vger.kernel.org
20304 S: Odd fixes
20305 F: drivers/net/wireless/wl3501*
20306
20307 WOLFSON MICROELECTRONICS DRIVERS
20308 L: patches@opensource.cirrus.com
20309 S: Supported
20310 W: https://github.com/CirrusLogic/linux-drivers/wiki
20311 T: git https://github.com/CirrusLogic/linux-drivers.git
20312 F: Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20313 F: Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20314 F: Documentation/devicetree/bindings/mfd/wm831x.txt
20315 F: Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20316 F: Documentation/devicetree/bindings/sound/wlf,*.yaml
20317 F: Documentation/devicetree/bindings/sound/wm*
20318 F: Documentation/hwmon/wm83??.rst
20319 F: arch/arm/mach-s3c/mach-crag6410*
20320 F: drivers/clk/clk-wm83*.c
20321 F: drivers/gpio/gpio-*wm*.c
20322 F: drivers/gpio/gpio-arizona.c
20323 F: drivers/hwmon/wm83??-hwmon.c
20324 F: drivers/input/misc/wm831x-on.c
20325 F: drivers/input/touchscreen/wm831x-ts.c
20326 F: drivers/input/touchscreen/wm97*.c
20327 F: drivers/leds/leds-wm83*.c
20328 F: drivers/mfd/arizona*
20329 F: drivers/mfd/cs47l24*
20330 F: drivers/mfd/wm*.c
20331 F: drivers/power/supply/wm83*.c
20332 F: drivers/regulator/arizona*
20333 F: drivers/regulator/wm8*.c
20334 F: drivers/rtc/rtc-wm83*.c
20335 F: drivers/video/backlight/wm83*_bl.c
20336 F: drivers/watchdog/wm83*_wdt.c
20337 F: include/linux/mfd/arizona/
20338 F: include/linux/mfd/wm831x/
20339 F: include/linux/mfd/wm8350/
20340 F: include/linux/mfd/wm8400*
20341 F: include/linux/regulator/arizona*
20342 F: include/linux/wm97xx.h
20343 F: include/sound/wm????.h
20344 F: sound/soc/codecs/arizona*
20345 F: sound/soc/codecs/cs47l24*
20346 F: sound/soc/codecs/wm*
20347
20348 WORKQUEUE
20349 M: Tejun Heo <tj@kernel.org>
20350 R: Lai Jiangshan <jiangshanlai@gmail.com>
20351 S: Maintained
20352 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20353 F: Documentation/core-api/workqueue.rst
20354 F: include/linux/workqueue.h
20355 F: kernel/workqueue.c
20356
20357 WWAN DRIVERS
20358 M: Loic Poulain <loic.poulain@linaro.org>
20359 M: Sergey Ryazanov <ryazanov.s.a@gmail.com>
20360 R: Johannes Berg <johannes@sipsolutions.net>
20361 L: netdev@vger.kernel.org
20362 S: Maintained
20363 F: drivers/net/wwan/
20364 F: include/linux/wwan.h
20365 F: include/uapi/linux/wwan.h
20366
20367 X-POWERS AXP288 PMIC DRIVERS
20368 M: Hans de Goede <hdegoede@redhat.com>
20369 S: Maintained
20370 F: drivers/acpi/pmic/intel_pmic_xpower.c
20371 N: axp288
20372
20373 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20374 M: Chen-Yu Tsai <wens@csie.org>
20375 L: linux-kernel@vger.kernel.org
20376 S: Maintained
20377 N: axp[128]
20378
20379 X.25 STACK
20380 M: Martin Schiller <ms@dev.tdt.de>
20381 L: linux-x25@vger.kernel.org
20382 S: Maintained
20383 F: Documentation/networking/lapb-module.rst
20384 F: Documentation/networking/x25*
20385 F: drivers/net/wan/hdlc_x25.c
20386 F: drivers/net/wan/lapbether.c
20387 F: include/*/lapb.h
20388 F: include/net/x25*
20389 F: include/uapi/linux/x25.h
20390 F: net/lapb/
20391 F: net/x25/
20392
20393 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20394 M: Thomas Gleixner <tglx@linutronix.de>
20395 M: Ingo Molnar <mingo@redhat.com>
20396 M: Borislav Petkov <bp@alien8.de>
20397 M: Dave Hansen <dave.hansen@linux.intel.com>
20398 M: x86@kernel.org
20399 R: "H. Peter Anvin" <hpa@zytor.com>
20400 L: linux-kernel@vger.kernel.org
20401 S: Maintained
20402 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20403 F: Documentation/devicetree/bindings/x86/
20404 F: Documentation/x86/
20405 F: arch/x86/
20406
20407 X86 ENTRY CODE
20408 M: Andy Lutomirski <luto@kernel.org>
20409 L: linux-kernel@vger.kernel.org
20410 S: Maintained
20411 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20412 F: arch/x86/entry/
20413
20414 X86 MCE INFRASTRUCTURE
20415 M: Tony Luck <tony.luck@intel.com>
20416 M: Borislav Petkov <bp@alien8.de>
20417 L: linux-edac@vger.kernel.org
20418 S: Maintained
20419 F: arch/x86/kernel/cpu/mce/*
20420
20421 X86 MICROCODE UPDATE SUPPORT
20422 M: Borislav Petkov <bp@alien8.de>
20423 S: Maintained
20424 F: arch/x86/kernel/cpu/microcode/*
20425
20426 X86 MM
20427 M: Dave Hansen <dave.hansen@linux.intel.com>
20428 M: Andy Lutomirski <luto@kernel.org>
20429 M: Peter Zijlstra <peterz@infradead.org>
20430 L: linux-kernel@vger.kernel.org
20431 S: Maintained
20432 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20433 F: arch/x86/mm/
20434
20435 X86 PLATFORM DRIVERS
20436 M: Hans de Goede <hdegoede@redhat.com>
20437 M: Mark Gross <mgross@linux.intel.com>
20438 L: platform-driver-x86@vger.kernel.org
20439 S: Maintained
20440 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20441 F: drivers/platform/olpc/
20442 F: drivers/platform/x86/
20443
20444 X86 PLATFORM DRIVERS - ARCH
20445 R: Darren Hart <dvhart@infradead.org>
20446 R: Andy Shevchenko <andy@infradead.org>
20447 L: platform-driver-x86@vger.kernel.org
20448 L: x86@kernel.org
20449 S: Maintained
20450 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20451 F: arch/x86/platform
20452
20453 X86 PLATFORM UV HPE SUPERDOME FLEX
20454 M: Steve Wahl <steve.wahl@hpe.com>
20455 R: Mike Travis <mike.travis@hpe.com>
20456 R: Dimitri Sivanich <dimitri.sivanich@hpe.com>
20457 R: Russ Anderson <russ.anderson@hpe.com>
20458 S: Supported
20459 F: arch/x86/include/asm/uv/
20460 F: arch/x86/kernel/apic/x2apic_uv_x.c
20461 F: arch/x86/platform/uv/
20462
20463 X86 VDSO
20464 M: Andy Lutomirski <luto@kernel.org>
20465 L: linux-kernel@vger.kernel.org
20466 S: Maintained
20467 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20468 F: arch/x86/entry/vdso/
20469
20470 XARRAY
20471 M: Matthew Wilcox <willy@infradead.org>
20472 L: linux-fsdevel@vger.kernel.org
20473 S: Supported
20474 F: Documentation/core-api/xarray.rst
20475 F: include/linux/idr.h
20476 F: include/linux/xarray.h
20477 F: lib/idr.c
20478 F: lib/xarray.c
20479 F: tools/testing/radix-tree
20480
20481 XBOX DVD IR REMOTE
20482 M: Benjamin Valentin <benpicco@googlemail.com>
20483 S: Maintained
20484 F: drivers/media/rc/keymaps/rc-xbox-dvd.c
20485 F: drivers/media/rc/xbox_remote.c
20486
20487 XC2028/3028 TUNER DRIVER
20488 M: Mauro Carvalho Chehab <mchehab@kernel.org>
20489 L: linux-media@vger.kernel.org
20490 S: Maintained
20491 W: https://linuxtv.org
20492 T: git git://linuxtv.org/media_tree.git
20493 F: drivers/media/tuners/tuner-xc2028.*
20494
20495 XDP (eXpress Data Path)
20496 M: Alexei Starovoitov <ast@kernel.org>
20497 M: Daniel Borkmann <daniel@iogearbox.net>
20498 M: David S. Miller <davem@davemloft.net>
20499 M: Jakub Kicinski <kuba@kernel.org>
20500 M: Jesper Dangaard Brouer <hawk@kernel.org>
20501 M: John Fastabend <john.fastabend@gmail.com>
20502 L: netdev@vger.kernel.org
20503 L: bpf@vger.kernel.org
20504 S: Supported
20505 F: include/net/xdp.h
20506 F: include/net/xdp_priv.h
20507 F: include/trace/events/xdp.h
20508 F: kernel/bpf/cpumap.c
20509 F: kernel/bpf/devmap.c
20510 F: net/core/xdp.c
20511 F: samples/bpf/xdp*
20512 F: tools/testing/selftests/bpf/*xdp*
20513 F: tools/testing/selftests/bpf/*/*xdp*
20514 F: drivers/net/ethernet/*/*/*/*/*xdp*
20515 F: drivers/net/ethernet/*/*/*xdp*
20516 K: (?:\b|_)xdp(?:\b|_)
20517
20518 XDP SOCKETS (AF_XDP)
20519 M: Björn Töpel <bjorn@kernel.org>
20520 M: Magnus Karlsson <magnus.karlsson@intel.com>
20521 R: Jonathan Lemon <jonathan.lemon@gmail.com>
20522 L: netdev@vger.kernel.org
20523 L: bpf@vger.kernel.org
20524 S: Maintained
20525 F: Documentation/networking/af_xdp.rst
20526 F: include/net/xdp_sock*
20527 F: include/net/xsk_buff_pool.h
20528 F: include/uapi/linux/if_xdp.h
20529 F: include/uapi/linux/xdp_diag.h
20530 F: include/net/netns/xdp.h
20531 F: net/xdp/
20532 F: samples/bpf/xdpsock*
20533 F: tools/lib/bpf/xsk*
20534
20535 XEN BLOCK SUBSYSTEM
20536 M: Roger Pau Monné <roger.pau@citrix.com>
20537 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20538 S: Supported
20539 F: drivers/block/xen*
20540 F: drivers/block/xen-blkback/*
20541
20542 XEN HYPERVISOR ARM
20543 M: Stefano Stabellini <sstabellini@kernel.org>
20544 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20545 S: Maintained
20546 F: arch/arm/include/asm/xen/
20547 F: arch/arm/xen/
20548
20549 XEN HYPERVISOR ARM64
20550 M: Stefano Stabellini <sstabellini@kernel.org>
20551 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20552 S: Maintained
20553 F: arch/arm64/include/asm/xen/
20554 F: arch/arm64/xen/
20555
20556 XEN HYPERVISOR INTERFACE
20557 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
20558 M: Juergen Gross <jgross@suse.com>
20559 R: Stefano Stabellini <sstabellini@kernel.org>
20560 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20561 S: Supported
20562 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20563 F: Documentation/ABI/stable/sysfs-hypervisor-xen
20564 F: Documentation/ABI/testing/sysfs-hypervisor-xen
20565 F: arch/x86/include/asm/pvclock-abi.h
20566 F: arch/x86/include/asm/xen/
20567 F: arch/x86/platform/pvh/
20568 F: arch/x86/xen/
20569 F: drivers/*/xen-*front.c
20570 F: drivers/xen/
20571 F: include/uapi/xen/
20572 F: include/xen/
20573
20574 XEN NETWORK BACKEND DRIVER
20575 M: Wei Liu <wei.liu@kernel.org>
20576 M: Paul Durrant <paul@xen.org>
20577 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20578 L: netdev@vger.kernel.org
20579 S: Supported
20580 F: drivers/net/xen-netback/*
20581
20582 XEN PCI SUBSYSTEM
20583 M: Juergen Gross <jgross@suse.com>
20584 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20585 S: Supported
20586 F: arch/x86/pci/*xen*
20587 F: drivers/pci/*xen*
20588
20589 XEN PVSCSI DRIVERS
20590 M: Juergen Gross <jgross@suse.com>
20591 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20592 L: linux-scsi@vger.kernel.org
20593 S: Supported
20594 F: drivers/scsi/xen-scsifront.c
20595 F: drivers/xen/xen-scsiback.c
20596 F: include/xen/interface/io/vscsiif.h
20597
20598 XEN SOUND FRONTEND DRIVER
20599 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20600 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20601 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20602 S: Supported
20603 F: sound/xen/*
20604
20605 XEN SWIOTLB SUBSYSTEM
20606 M: Juergen Gross <jgross@suse.com>
20607 M: Stefano Stabellini <sstabellini@kernel.org>
20608 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20609 L: iommu@lists.linux-foundation.org
20610 S: Supported
20611 F: arch/x86/xen/*swiotlb*
20612 F: drivers/xen/*swiotlb*
20613
20614 XFS FILESYSTEM
20615 C: irc://irc.oftc.net/xfs
20616 M: Darrick J. Wong <djwong@kernel.org>
20617 M: linux-xfs@vger.kernel.org
20618 L: linux-xfs@vger.kernel.org
20619 S: Supported
20620 W: http://xfs.org/
20621 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20622 F: Documentation/ABI/testing/sysfs-fs-xfs
20623 F: Documentation/admin-guide/xfs.rst
20624 F: Documentation/filesystems/xfs-delayed-logging-design.rst
20625 F: Documentation/filesystems/xfs-self-describing-metadata.rst
20626 F: fs/xfs/
20627 F: include/uapi/linux/dqblk_xfs.h
20628 F: include/uapi/linux/fsmap.h
20629
20630 XILINX AXI ETHERNET DRIVER
20631 M: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20632 S: Maintained
20633 F: drivers/net/ethernet/xilinx/xilinx_axienet*
20634
20635 XILINX CAN DRIVER
20636 M: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20637 R: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20638 L: linux-can@vger.kernel.org
20639 S: Maintained
20640 F: Documentation/devicetree/bindings/net/can/xilinx_can.txt
20641 F: drivers/net/can/xilinx_can.c
20642
20643 XILINX GPIO DRIVER
20644 M: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20645 R: Srinivas Neeli <srinivas.neeli@xilinx.com>
20646 R: Michal Simek <michal.simek@xilinx.com>
20647 S: Maintained
20648 F: Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20649 F: Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20650 F: drivers/gpio/gpio-xilinx.c
20651 F: drivers/gpio/gpio-zynq.c
20652
20653 XILINX SD-FEC IP CORES
20654 M: Derek Kiernan <derek.kiernan@xilinx.com>
20655 M: Dragan Cvetic <dragan.cvetic@xilinx.com>
20656 S: Maintained
20657 F: Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20658 F: Documentation/misc-devices/xilinx_sdfec.rst
20659 F: drivers/misc/Kconfig
20660 F: drivers/misc/Makefile
20661 F: drivers/misc/xilinx_sdfec.c
20662 F: include/uapi/misc/xilinx_sdfec.h
20663
20664 XILINX UARTLITE SERIAL DRIVER
20665 M: Peter Korsgaard <jacmet@sunsite.dk>
20666 L: linux-serial@vger.kernel.org
20667 S: Maintained
20668 F: drivers/tty/serial/uartlite.c
20669
20670 XILINX VIDEO IP CORES
20671 M: Hyun Kwon <hyun.kwon@xilinx.com>
20672 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20673 L: linux-media@vger.kernel.org
20674 S: Supported
20675 T: git git://linuxtv.org/media_tree.git
20676 F: Documentation/devicetree/bindings/media/xilinx/
20677 F: drivers/media/platform/xilinx/
20678 F: include/uapi/linux/xilinx-v4l2-controls.h
20679
20680 XILINX ZYNQMP DPDMA DRIVER
20681 M: Hyun Kwon <hyun.kwon@xilinx.com>
20682 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20683 L: dmaengine@vger.kernel.org
20684 S: Supported
20685 F: Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20686 F: drivers/dma/xilinx/xilinx_dpdma.c
20687 F: include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20688
20689 XILINX ZYNQMP PSGTR PHY DRIVER
20690 M: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20691 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20692 L: linux-kernel@vger.kernel.org
20693 S: Supported
20694 T: git https://github.com/Xilinx/linux-xlnx.git
20695 F: Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20696 F: drivers/phy/xilinx/phy-zynqmp.c
20697
20698 XILLYBUS DRIVER
20699 M: Eli Billauer <eli.billauer@gmail.com>
20700 L: linux-kernel@vger.kernel.org
20701 S: Supported
20702 F: drivers/char/xillybus/
20703
20704 XLP9XX I2C DRIVER
20705 M: George Cherian <gcherian@marvell.com>
20706 L: linux-i2c@vger.kernel.org
20707 S: Supported
20708 W: http://www.marvell.com
20709 F: Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20710 F: drivers/i2c/busses/i2c-xlp9xx.c
20711
20712 XRA1403 GPIO EXPANDER
20713 M: Nandor Han <nandor.han@ge.com>
20714 M: Semi Malinen <semi.malinen@ge.com>
20715 L: linux-gpio@vger.kernel.org
20716 S: Maintained
20717 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20718 F: drivers/gpio/gpio-xra1403.c
20719
20720 XTENSA XTFPGA PLATFORM SUPPORT
20721 M: Max Filippov <jcmvbkbc@gmail.com>
20722 L: linux-xtensa@linux-xtensa.org
20723 S: Maintained
20724 F: drivers/spi/spi-xtensa-xtfpga.c
20725 F: sound/soc/xtensa/xtfpga-i2s.c
20726
20727 YAM DRIVER FOR AX.25
20728 M: Jean-Paul Roubelat <jpr@f6fbb.org>
20729 L: linux-hams@vger.kernel.org
20730 S: Maintained
20731 F: drivers/net/hamradio/yam*
20732 F: include/linux/yam.h
20733
20734 YAMA SECURITY MODULE
20735 M: Kees Cook <keescook@chromium.org>
20736 S: Supported
20737 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20738 F: Documentation/admin-guide/LSM/Yama.rst
20739 F: security/yama/
20740
20741 YEALINK PHONE DRIVER
20742 M: Henk Vergonet <Henk.Vergonet@gmail.com>
20743 L: usbb2k-api-dev@nongnu.org
20744 S: Maintained
20745 F: Documentation/input/devices/yealink.rst
20746 F: drivers/input/misc/yealink.*
20747
20748 Z8530 DRIVER FOR AX.25
20749 M: Joerg Reuter <jreuter@yaina.de>
20750 L: linux-hams@vger.kernel.org
20751 S: Maintained
20752 W: http://yaina.de/jreuter/
20753 W: http://www.qsl.net/dl1bke/
20754 F: Documentation/networking/device_drivers/hamradio/z8530drv.rst
20755 F: drivers/net/hamradio/*scc.c
20756 F: drivers/net/hamradio/z8530.h
20757
20758 ZBUD COMPRESSED PAGE ALLOCATOR
20759 M: Seth Jennings <sjenning@redhat.com>
20760 M: Dan Streetman <ddstreet@ieee.org>
20761 L: linux-mm@kvack.org
20762 S: Maintained
20763 F: mm/zbud.c
20764
20765 ZD1211RW WIRELESS DRIVER
20766 M: Ulrich Kunitz <kune@deine-taler.de>
20767 L: linux-wireless@vger.kernel.org
20768 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
20769 S: Maintained
20770 W: http://zd1211.ath.cx/wiki/DriverRewrite
20771 F: drivers/net/wireless/zydas/zd1211rw/
20772
20773 ZD1301 MEDIA DRIVER
20774 M: Antti Palosaari <crope@iki.fi>
20775 L: linux-media@vger.kernel.org
20776 S: Maintained
20777 W: https://linuxtv.org/
20778 W: http://palosaari.fi/linux/
20779 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20780 F: drivers/media/usb/dvb-usb-v2/zd1301*
20781
20782 ZD1301_DEMOD MEDIA DRIVER
20783 M: Antti Palosaari <crope@iki.fi>
20784 L: linux-media@vger.kernel.org
20785 S: Maintained
20786 W: https://linuxtv.org/
20787 W: http://palosaari.fi/linux/
20788 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20789 F: drivers/media/dvb-frontends/zd1301_demod*
20790
20791 ZHAOXIN PROCESSOR SUPPORT
20792 M: Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20793 L: linux-kernel@vger.kernel.org
20794 S: Maintained
20795 F: arch/x86/kernel/cpu/zhaoxin.c
20796
20797 ZONEFS FILESYSTEM
20798 M: Damien Le Moal <damien.lemoal@wdc.com>
20799 M: Naohiro Aota <naohiro.aota@wdc.com>
20800 R: Johannes Thumshirn <jth@kernel.org>
20801 L: linux-fsdevel@vger.kernel.org
20802 S: Maintained
20803 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20804 F: Documentation/filesystems/zonefs.rst
20805 F: fs/zonefs/
20806
20807 ZPOOL COMPRESSED PAGE STORAGE API
20808 M: Dan Streetman <ddstreet@ieee.org>
20809 L: linux-mm@kvack.org
20810 S: Maintained
20811 F: include/linux/zpool.h
20812 F: mm/zpool.c
20813
20814 ZR36067 VIDEO FOR LINUX DRIVER
20815 M: Corentin Labbe <clabbe@baylibre.com>
20816 L: mjpeg-users@lists.sourceforge.net
20817 L: linux-media@vger.kernel.org
20818 S: Maintained
20819 W: http://mjpeg.sourceforge.net/driver-zoran/
20820 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20821 F: Documentation/driver-api/media/drivers/zoran.rst
20822 F: drivers/staging/media/zoran/
20823
20824 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20825 M: Minchan Kim <minchan@kernel.org>
20826 M: Nitin Gupta <ngupta@vflare.org>
20827 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20828 L: linux-kernel@vger.kernel.org
20829 S: Maintained
20830 F: Documentation/admin-guide/blockdev/zram.rst
20831 F: drivers/block/zram/
20832
20833 ZS DECSTATION Z85C30 SERIAL DRIVER
20834 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
20835 S: Maintained
20836 F: drivers/tty/serial/zs.*
20837
20838 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20839 M: Minchan Kim <minchan@kernel.org>
20840 M: Nitin Gupta <ngupta@vflare.org>
20841 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20842 L: linux-mm@kvack.org
20843 S: Maintained
20844 F: Documentation/vm/zsmalloc.rst
20845 F: include/linux/zsmalloc.h
20846 F: mm/zsmalloc.c
20847
20848 ZSWAP COMPRESSED SWAP CACHING
20849 M: Seth Jennings <sjenning@redhat.com>
20850 M: Dan Streetman <ddstreet@ieee.org>
20851 M: Vitaly Wool <vitaly.wool@konsulko.com>
20852 L: linux-mm@kvack.org
20853 S: Maintained
20854 F: mm/zswap.c
20855
20856 THE REST
20857 M: Linus Torvalds <torvalds@linux-foundation.org>
20858 L: linux-kernel@vger.kernel.org
20859 S: Buried alive in reporters
20860 Q: http://patchwork.kernel.org/project/LKML/list/
20861 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20862 F: *
20863 F: */