]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - MAINTAINERS
x86/speculation/mmio: Reuse SRBDS mitigation for SBDS
[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/kernel/uv.c
10342 F: arch/s390/kvm/
10343 F: arch/s390/mm/gmap.c
10344 F: tools/testing/selftests/kvm/*/s390x/
10345 F: tools/testing/selftests/kvm/s390x/
10346
10347 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10348 M: Paolo Bonzini <pbonzini@redhat.com>
10349 R: Sean Christopherson <seanjc@google.com>
10350 R: Vitaly Kuznetsov <vkuznets@redhat.com>
10351 R: Wanpeng Li <wanpengli@tencent.com>
10352 R: Jim Mattson <jmattson@google.com>
10353 R: Joerg Roedel <joro@8bytes.org>
10354 L: kvm@vger.kernel.org
10355 S: Supported
10356 W: http://www.linux-kvm.org
10357 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10358 F: arch/x86/include/asm/kvm*
10359 F: arch/x86/include/asm/pvclock-abi.h
10360 F: arch/x86/include/asm/svm.h
10361 F: arch/x86/include/asm/vmx*.h
10362 F: arch/x86/include/uapi/asm/kvm*
10363 F: arch/x86/include/uapi/asm/svm.h
10364 F: arch/x86/include/uapi/asm/vmx.h
10365 F: arch/x86/kernel/kvm.c
10366 F: arch/x86/kernel/kvmclock.c
10367 F: arch/x86/kvm/
10368 F: arch/x86/kvm/*/
10369
10370 KERNFS
10371 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10372 M: Tejun Heo <tj@kernel.org>
10373 S: Supported
10374 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10375 F: fs/kernfs/
10376 F: include/linux/kernfs.h
10377
10378 KEXEC
10379 M: Eric Biederman <ebiederm@xmission.com>
10380 L: kexec@lists.infradead.org
10381 S: Maintained
10382 W: http://kernel.org/pub/linux/utils/kernel/kexec/
10383 F: include/linux/kexec.h
10384 F: include/uapi/linux/kexec.h
10385 F: kernel/kexec*
10386
10387 KEYS-ENCRYPTED
10388 M: Mimi Zohar <zohar@linux.ibm.com>
10389 L: linux-integrity@vger.kernel.org
10390 L: keyrings@vger.kernel.org
10391 S: Supported
10392 F: Documentation/security/keys/trusted-encrypted.rst
10393 F: include/keys/encrypted-type.h
10394 F: security/keys/encrypted-keys/
10395
10396 KEYS-TRUSTED
10397 M: James Bottomley <jejb@linux.ibm.com>
10398 M: Jarkko Sakkinen <jarkko@kernel.org>
10399 M: Mimi Zohar <zohar@linux.ibm.com>
10400 L: linux-integrity@vger.kernel.org
10401 L: keyrings@vger.kernel.org
10402 S: Supported
10403 F: Documentation/security/keys/trusted-encrypted.rst
10404 F: include/keys/trusted-type.h
10405 F: include/keys/trusted_tpm.h
10406 F: security/keys/trusted-keys/
10407
10408 KEYS-TRUSTED-TEE
10409 M: Sumit Garg <sumit.garg@linaro.org>
10410 L: linux-integrity@vger.kernel.org
10411 L: keyrings@vger.kernel.org
10412 S: Supported
10413 F: include/keys/trusted_tee.h
10414 F: security/keys/trusted-keys/trusted_tee.c
10415
10416 KEYS/KEYRINGS
10417 M: David Howells <dhowells@redhat.com>
10418 M: Jarkko Sakkinen <jarkko@kernel.org>
10419 L: keyrings@vger.kernel.org
10420 S: Maintained
10421 F: Documentation/security/keys/core.rst
10422 F: include/keys/
10423 F: include/linux/key-type.h
10424 F: include/linux/key.h
10425 F: include/linux/keyctl.h
10426 F: include/uapi/linux/keyctl.h
10427 F: security/keys/
10428
10429 KFENCE
10430 M: Alexander Potapenko <glider@google.com>
10431 M: Marco Elver <elver@google.com>
10432 R: Dmitry Vyukov <dvyukov@google.com>
10433 L: kasan-dev@googlegroups.com
10434 S: Maintained
10435 F: Documentation/dev-tools/kfence.rst
10436 F: arch/*/include/asm/kfence.h
10437 F: include/linux/kfence.h
10438 F: lib/Kconfig.kfence
10439 F: mm/kfence/
10440
10441 KFIFO
10442 M: Stefani Seibold <stefani@seibold.net>
10443 S: Maintained
10444 F: include/linux/kfifo.h
10445 F: lib/kfifo.c
10446 F: samples/kfifo/
10447
10448 KGDB / KDB /debug_core
10449 M: Jason Wessel <jason.wessel@windriver.com>
10450 M: Daniel Thompson <daniel.thompson@linaro.org>
10451 R: Douglas Anderson <dianders@chromium.org>
10452 L: kgdb-bugreport@lists.sourceforge.net
10453 S: Maintained
10454 W: http://kgdb.wiki.kernel.org/
10455 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10456 F: Documentation/dev-tools/kgdb.rst
10457 F: drivers/misc/kgdbts.c
10458 F: drivers/tty/serial/kgdboc.c
10459 F: include/linux/kdb.h
10460 F: include/linux/kgdb.h
10461 F: kernel/debug/
10462
10463 KHADAS MCU MFD DRIVER
10464 M: Neil Armstrong <narmstrong@baylibre.com>
10465 L: linux-amlogic@lists.infradead.org
10466 S: Maintained
10467 F: Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10468 F: drivers/mfd/khadas-mcu.c
10469 F: include/linux/mfd/khadas-mcu.h
10470 F: drivers/thermal/khadas_mcu_fan.c
10471
10472 KMEMLEAK
10473 M: Catalin Marinas <catalin.marinas@arm.com>
10474 S: Maintained
10475 F: Documentation/dev-tools/kmemleak.rst
10476 F: include/linux/kmemleak.h
10477 F: mm/kmemleak.c
10478 F: samples/kmemleak/kmemleak-test.c
10479
10480 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10481 M: Luis Chamberlain <mcgrof@kernel.org>
10482 L: linux-kernel@vger.kernel.org
10483 S: Maintained
10484 F: include/linux/kmod.h
10485 F: kernel/kmod.c
10486 F: lib/test_kmod.c
10487 F: tools/testing/selftests/kmod/
10488
10489 KPROBES
10490 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10491 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10492 M: "David S. Miller" <davem@davemloft.net>
10493 M: Masami Hiramatsu <mhiramat@kernel.org>
10494 S: Maintained
10495 F: Documentation/trace/kprobes.rst
10496 F: include/asm-generic/kprobes.h
10497 F: include/linux/kprobes.h
10498 F: kernel/kprobes.c
10499
10500 KS0108 LCD CONTROLLER DRIVER
10501 M: Miguel Ojeda <ojeda@kernel.org>
10502 S: Maintained
10503 F: Documentation/admin-guide/auxdisplay/ks0108.rst
10504 F: drivers/auxdisplay/ks0108.c
10505 F: include/linux/ks0108.h
10506
10507 KTD253 BACKLIGHT DRIVER
10508 M: Linus Walleij <linus.walleij@linaro.org>
10509 S: Maintained
10510 F: Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10511 F: drivers/video/backlight/ktd253-backlight.c
10512
10513 KTEST
10514 M: Steven Rostedt <rostedt@goodmis.org>
10515 M: John Hawley <warthog9@eaglescrag.net>
10516 S: Maintained
10517 F: tools/testing/ktest
10518
10519 L3MDEV
10520 M: David Ahern <dsahern@kernel.org>
10521 L: netdev@vger.kernel.org
10522 S: Maintained
10523 F: include/net/l3mdev.h
10524 F: net/l3mdev
10525
10526 L7 BPF FRAMEWORK
10527 M: John Fastabend <john.fastabend@gmail.com>
10528 M: Daniel Borkmann <daniel@iogearbox.net>
10529 M: Jakub Sitnicki <jakub@cloudflare.com>
10530 M: Lorenz Bauer <lmb@cloudflare.com>
10531 L: netdev@vger.kernel.org
10532 L: bpf@vger.kernel.org
10533 S: Maintained
10534 F: include/linux/skmsg.h
10535 F: net/core/skmsg.c
10536 F: net/core/sock_map.c
10537 F: net/ipv4/tcp_bpf.c
10538 F: net/ipv4/udp_bpf.c
10539 F: net/unix/unix_bpf.c
10540
10541 LANDLOCK SECURITY MODULE
10542 M: Mickaël Salaün <mic@digikod.net>
10543 L: linux-security-module@vger.kernel.org
10544 S: Supported
10545 W: https://landlock.io
10546 T: git https://github.com/landlock-lsm/linux.git
10547 F: Documentation/security/landlock.rst
10548 F: Documentation/userspace-api/landlock.rst
10549 F: include/uapi/linux/landlock.h
10550 F: samples/landlock/
10551 F: security/landlock/
10552 F: tools/testing/selftests/landlock/
10553 K: landlock
10554 K: LANDLOCK
10555
10556 LANTIQ / INTEL Ethernet drivers
10557 M: Hauke Mehrtens <hauke@hauke-m.de>
10558 L: netdev@vger.kernel.org
10559 S: Maintained
10560 F: drivers/net/dsa/lantiq_gswip.c
10561 F: drivers/net/dsa/lantiq_pce.h
10562 F: drivers/net/ethernet/lantiq_xrx200.c
10563 F: net/dsa/tag_gswip.c
10564
10565 LANTIQ MIPS ARCHITECTURE
10566 M: John Crispin <john@phrozen.org>
10567 L: linux-mips@vger.kernel.org
10568 S: Maintained
10569 F: arch/mips/lantiq
10570 F: drivers/soc/lantiq
10571
10572 LASI 53c700 driver for PARISC
10573 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10574 L: linux-scsi@vger.kernel.org
10575 S: Maintained
10576 F: Documentation/scsi/53c700.rst
10577 F: drivers/scsi/53c700*
10578
10579 LEAKING_ADDRESSES
10580 M: Tobin C. Harding <me@tobin.cc>
10581 M: Tycho Andersen <tycho@tycho.pizza>
10582 L: linux-hardening@vger.kernel.org
10583 S: Maintained
10584 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10585 F: scripts/leaking_addresses.pl
10586
10587 LED SUBSYSTEM
10588 M: Pavel Machek <pavel@ucw.cz>
10589 L: linux-leds@vger.kernel.org
10590 S: Maintained
10591 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10592 F: Documentation/devicetree/bindings/leds/
10593 F: drivers/leds/
10594 F: include/linux/leds.h
10595
10596 LEGACY EEPROM DRIVER
10597 M: Jean Delvare <jdelvare@suse.com>
10598 S: Maintained
10599 F: Documentation/misc-devices/eeprom.rst
10600 F: drivers/misc/eeprom/eeprom.c
10601
10602 LEGO MINDSTORMS EV3
10603 R: David Lechner <david@lechnology.com>
10604 S: Maintained
10605 F: Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10606 F: arch/arm/boot/dts/da850-lego-ev3.dts
10607 F: drivers/power/supply/lego_ev3_battery.c
10608
10609 LEGO USB Tower driver
10610 M: Juergen Stuber <starblue@users.sourceforge.net>
10611 L: legousb-devel@lists.sourceforge.net
10612 S: Maintained
10613 W: http://legousb.sourceforge.net/
10614 F: drivers/usb/misc/legousbtower.c
10615
10616 LG LAPTOP EXTRAS
10617 M: Matan Ziv-Av <matan@svgalib.org>
10618 L: platform-driver-x86@vger.kernel.org
10619 S: Maintained
10620 F: Documentation/ABI/testing/sysfs-platform-lg-laptop
10621 F: Documentation/admin-guide/laptops/lg-laptop.rst
10622 F: drivers/platform/x86/lg-laptop.c
10623
10624 LG2160 MEDIA DRIVER
10625 M: Michael Krufky <mkrufky@linuxtv.org>
10626 L: linux-media@vger.kernel.org
10627 S: Maintained
10628 W: https://linuxtv.org
10629 W: http://github.com/mkrufky
10630 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10631 T: git git://linuxtv.org/mkrufky/tuners.git
10632 F: drivers/media/dvb-frontends/lg2160.*
10633
10634 LGDT3305 MEDIA DRIVER
10635 M: Michael Krufky <mkrufky@linuxtv.org>
10636 L: linux-media@vger.kernel.org
10637 S: Maintained
10638 W: https://linuxtv.org
10639 W: http://github.com/mkrufky
10640 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10641 T: git git://linuxtv.org/mkrufky/tuners.git
10642 F: drivers/media/dvb-frontends/lgdt3305.*
10643
10644 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10645 M: Viresh Kumar <vireshk@kernel.org>
10646 L: linux-ide@vger.kernel.org
10647 S: Maintained
10648 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10649 F: drivers/ata/pata_arasan_cf.c
10650 F: include/linux/pata_arasan_cf_data.h
10651
10652 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10653 M: Linus Walleij <linus.walleij@linaro.org>
10654 L: linux-ide@vger.kernel.org
10655 S: Maintained
10656 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10657 F: drivers/ata/pata_ftide010.c
10658 F: drivers/ata/sata_gemini.c
10659 F: drivers/ata/sata_gemini.h
10660
10661 LIBATA SATA AHCI PLATFORM devices support
10662 M: Hans de Goede <hdegoede@redhat.com>
10663 M: Jens Axboe <axboe@kernel.dk>
10664 L: linux-ide@vger.kernel.org
10665 S: Maintained
10666 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10667 F: drivers/ata/ahci_platform.c
10668 F: drivers/ata/libahci_platform.c
10669 F: include/linux/ahci_platform.h
10670
10671 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10672 M: Mikael Pettersson <mikpelinux@gmail.com>
10673 L: linux-ide@vger.kernel.org
10674 S: Maintained
10675 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10676 F: drivers/ata/sata_promise.*
10677
10678 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10679 M: Damien Le Moal <damien.lemoal@opensource.wdc.com>
10680 L: linux-ide@vger.kernel.org
10681 S: Maintained
10682 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10683 F: Documentation/devicetree/bindings/ata/
10684 F: drivers/ata/
10685 F: include/linux/ata.h
10686 F: include/linux/libata.h
10687
10688 LIBLOCKDEP
10689 M: Sasha Levin <alexander.levin@microsoft.com>
10690 S: Maintained
10691 F: tools/lib/lockdep/
10692
10693 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10694 M: Dan Williams <dan.j.williams@intel.com>
10695 M: Vishal Verma <vishal.l.verma@intel.com>
10696 M: Dave Jiang <dave.jiang@intel.com>
10697 L: nvdimm@lists.linux.dev
10698 S: Supported
10699 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10700 P: Documentation/nvdimm/maintainer-entry-profile.rst
10701 F: drivers/nvdimm/blk.c
10702 F: drivers/nvdimm/region_devs.c
10703
10704 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10705 M: Vishal Verma <vishal.l.verma@intel.com>
10706 M: Dan Williams <dan.j.williams@intel.com>
10707 M: Dave Jiang <dave.jiang@intel.com>
10708 L: nvdimm@lists.linux.dev
10709 S: Supported
10710 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10711 P: Documentation/nvdimm/maintainer-entry-profile.rst
10712 F: drivers/nvdimm/btt*
10713
10714 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10715 M: Dan Williams <dan.j.williams@intel.com>
10716 M: Vishal Verma <vishal.l.verma@intel.com>
10717 M: Dave Jiang <dave.jiang@intel.com>
10718 L: nvdimm@lists.linux.dev
10719 S: Supported
10720 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10721 P: Documentation/nvdimm/maintainer-entry-profile.rst
10722 F: drivers/nvdimm/pmem*
10723
10724 LIBNVDIMM: DEVICETREE BINDINGS
10725 M: Oliver O'Halloran <oohall@gmail.com>
10726 L: nvdimm@lists.linux.dev
10727 S: Supported
10728 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10729 F: Documentation/devicetree/bindings/pmem/pmem-region.txt
10730 F: drivers/nvdimm/of_pmem.c
10731
10732 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10733 M: Dan Williams <dan.j.williams@intel.com>
10734 M: Vishal Verma <vishal.l.verma@intel.com>
10735 M: Dave Jiang <dave.jiang@intel.com>
10736 M: Ira Weiny <ira.weiny@intel.com>
10737 L: nvdimm@lists.linux.dev
10738 S: Supported
10739 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10740 P: Documentation/nvdimm/maintainer-entry-profile.rst
10741 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10742 F: drivers/acpi/nfit/*
10743 F: drivers/nvdimm/*
10744 F: include/linux/libnvdimm.h
10745 F: include/linux/nd.h
10746 F: include/uapi/linux/ndctl.h
10747 F: tools/testing/nvdimm/
10748
10749 LICENSES and SPDX stuff
10750 M: Thomas Gleixner <tglx@linutronix.de>
10751 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10752 L: linux-spdx@vger.kernel.org
10753 S: Maintained
10754 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10755 F: COPYING
10756 F: Documentation/process/license-rules.rst
10757 F: LICENSES/
10758 F: scripts/spdxcheck-test.sh
10759 F: scripts/spdxcheck.py
10760
10761 LINEAR RANGES HELPERS
10762 M: Mark Brown <broonie@kernel.org>
10763 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10764 F: lib/linear_ranges.c
10765 F: lib/test_linear_ranges.c
10766 F: include/linux/linear_range.h
10767
10768 LINUX FOR POWER MACINTOSH
10769 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10770 L: linuxppc-dev@lists.ozlabs.org
10771 S: Odd Fixes
10772 F: arch/powerpc/platforms/powermac/
10773 F: drivers/macintosh/
10774
10775 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10776 M: Michael Ellerman <mpe@ellerman.id.au>
10777 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10778 R: Paul Mackerras <paulus@samba.org>
10779 L: linuxppc-dev@lists.ozlabs.org
10780 S: Supported
10781 W: https://github.com/linuxppc/wiki/wiki
10782 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10783 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10784 F: Documentation/ABI/stable/sysfs-firmware-opal-*
10785 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
10786 F: Documentation/devicetree/bindings/powerpc/
10787 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
10788 F: Documentation/powerpc/
10789 F: arch/powerpc/
10790 F: drivers/*/*/*pasemi*
10791 F: drivers/*/*pasemi*
10792 F: drivers/char/tpm/tpm_ibmvtpm*
10793 F: drivers/crypto/nx/
10794 F: drivers/crypto/vmx/
10795 F: drivers/i2c/busses/i2c-opal.c
10796 F: drivers/net/ethernet/ibm/ibmveth.*
10797 F: drivers/net/ethernet/ibm/ibmvnic.*
10798 F: drivers/pci/hotplug/pnv_php.c
10799 F: drivers/pci/hotplug/rpa*
10800 F: drivers/rtc/rtc-opal.c
10801 F: drivers/scsi/ibmvscsi/
10802 F: drivers/tty/hvc/hvc_opal.c
10803 F: drivers/watchdog/wdrtas.c
10804 F: tools/testing/selftests/powerpc
10805 N: /pmac
10806 N: powermac
10807 N: powernv
10808 N: [^a-z0-9]ps3
10809 N: pseries
10810
10811 LINUX FOR POWERPC EMBEDDED MPC5XXX
10812 M: Anatolij Gustschin <agust@denx.de>
10813 L: linuxppc-dev@lists.ozlabs.org
10814 S: Odd Fixes
10815 F: arch/powerpc/platforms/512x/
10816 F: arch/powerpc/platforms/52xx/
10817
10818 LINUX FOR POWERPC EMBEDDED PPC4XX
10819 L: linuxppc-dev@lists.ozlabs.org
10820 S: Orphan
10821 F: arch/powerpc/platforms/40x/
10822 F: arch/powerpc/platforms/44x/
10823
10824 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10825 M: Scott Wood <oss@buserror.net>
10826 L: linuxppc-dev@lists.ozlabs.org
10827 S: Odd fixes
10828 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10829 F: Documentation/devicetree/bindings/powerpc/fsl/
10830 F: arch/powerpc/platforms/83xx/
10831 F: arch/powerpc/platforms/85xx/
10832
10833 LINUX FOR POWERPC EMBEDDED PPC8XX
10834 M: Christophe Leroy <christophe.leroy@csgroup.eu>
10835 L: linuxppc-dev@lists.ozlabs.org
10836 S: Maintained
10837 F: arch/powerpc/platforms/8xx/
10838
10839 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10840 M: Kees Cook <keescook@chromium.org>
10841 S: Maintained
10842 F: drivers/misc/lkdtm/*
10843 F: tools/testing/selftests/lkdtm/*
10844
10845 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10846 M: Alan Stern <stern@rowland.harvard.edu>
10847 M: Andrea Parri <parri.andrea@gmail.com>
10848 M: Will Deacon <will@kernel.org>
10849 M: Peter Zijlstra <peterz@infradead.org>
10850 M: Boqun Feng <boqun.feng@gmail.com>
10851 M: Nicholas Piggin <npiggin@gmail.com>
10852 M: David Howells <dhowells@redhat.com>
10853 M: Jade Alglave <j.alglave@ucl.ac.uk>
10854 M: Luc Maranget <luc.maranget@inria.fr>
10855 M: "Paul E. McKenney" <paulmck@kernel.org>
10856 R: Akira Yokosawa <akiyks@gmail.com>
10857 R: Daniel Lustig <dlustig@nvidia.com>
10858 R: Joel Fernandes <joel@joelfernandes.org>
10859 L: linux-kernel@vger.kernel.org
10860 L: linux-arch@vger.kernel.org
10861 S: Supported
10862 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10863 F: Documentation/atomic_bitops.txt
10864 F: Documentation/atomic_t.txt
10865 F: Documentation/core-api/refcount-vs-atomic.rst
10866 F: Documentation/litmus-tests/
10867 F: Documentation/memory-barriers.txt
10868 F: tools/memory-model/
10869
10870 LIS3LV02D ACCELEROMETER DRIVER
10871 M: Eric Piel <eric.piel@tremplin-utc.net>
10872 S: Maintained
10873 F: Documentation/misc-devices/lis3lv02d.rst
10874 F: drivers/misc/lis3lv02d/
10875 F: drivers/platform/x86/hp_accel.c
10876
10877 LIST KUNIT TEST
10878 M: David Gow <davidgow@google.com>
10879 L: linux-kselftest@vger.kernel.org
10880 L: kunit-dev@googlegroups.com
10881 S: Maintained
10882 F: lib/list-test.c
10883
10884 LITEX PLATFORM
10885 M: Karol Gugala <kgugala@antmicro.com>
10886 M: Mateusz Holenko <mholenko@antmicro.com>
10887 S: Maintained
10888 F: Documentation/devicetree/bindings/*/litex,*.yaml
10889 F: arch/openrisc/boot/dts/or1klitex.dts
10890 F: drivers/soc/litex/litex_soc_ctrl.c
10891 F: drivers/tty/serial/liteuart.c
10892 F: include/linux/litex.h
10893
10894 LIVE PATCHING
10895 M: Josh Poimboeuf <jpoimboe@redhat.com>
10896 M: Jiri Kosina <jikos@kernel.org>
10897 M: Miroslav Benes <mbenes@suse.cz>
10898 M: Petr Mladek <pmladek@suse.com>
10899 R: Joe Lawrence <joe.lawrence@redhat.com>
10900 L: live-patching@vger.kernel.org
10901 S: Maintained
10902 T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10903 F: Documentation/ABI/testing/sysfs-kernel-livepatch
10904 F: Documentation/livepatch/
10905 F: arch/powerpc/include/asm/livepatch.h
10906 F: arch/s390/include/asm/livepatch.h
10907 F: arch/x86/include/asm/livepatch.h
10908 F: include/linux/livepatch.h
10909 F: kernel/livepatch/
10910 F: lib/livepatch/
10911 F: samples/livepatch/
10912 F: tools/testing/selftests/livepatch/
10913
10914 LLC (802.2)
10915 L: netdev@vger.kernel.org
10916 S: Odd fixes
10917 F: include/linux/llc.h
10918 F: include/net/llc*
10919 F: include/uapi/linux/llc.h
10920 F: net/llc/
10921
10922 LM73 HARDWARE MONITOR DRIVER
10923 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
10924 L: linux-hwmon@vger.kernel.org
10925 S: Maintained
10926 F: drivers/hwmon/lm73.c
10927
10928 LM78 HARDWARE MONITOR DRIVER
10929 M: Jean Delvare <jdelvare@suse.com>
10930 L: linux-hwmon@vger.kernel.org
10931 S: Maintained
10932 F: Documentation/hwmon/lm78.rst
10933 F: drivers/hwmon/lm78.c
10934
10935 LM83 HARDWARE MONITOR DRIVER
10936 M: Jean Delvare <jdelvare@suse.com>
10937 L: linux-hwmon@vger.kernel.org
10938 S: Maintained
10939 F: Documentation/hwmon/lm83.rst
10940 F: drivers/hwmon/lm83.c
10941
10942 LM90 HARDWARE MONITOR DRIVER
10943 M: Jean Delvare <jdelvare@suse.com>
10944 L: linux-hwmon@vger.kernel.org
10945 S: Maintained
10946 F: Documentation/devicetree/bindings/hwmon/lm90.txt
10947 F: Documentation/hwmon/lm90.rst
10948 F: drivers/hwmon/lm90.c
10949 F: include/dt-bindings/thermal/lm90.h
10950
10951 LM95234 HARDWARE MONITOR DRIVER
10952 M: Guenter Roeck <linux@roeck-us.net>
10953 L: linux-hwmon@vger.kernel.org
10954 S: Maintained
10955 F: Documentation/hwmon/lm95234.rst
10956 F: drivers/hwmon/lm95234.c
10957
10958 LME2510 MEDIA DRIVER
10959 M: Malcolm Priestley <tvboxspy@gmail.com>
10960 L: linux-media@vger.kernel.org
10961 S: Maintained
10962 W: https://linuxtv.org
10963 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10964 F: drivers/media/usb/dvb-usb-v2/lmedm04*
10965
10966 LOADPIN SECURITY MODULE
10967 M: Kees Cook <keescook@chromium.org>
10968 S: Supported
10969 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10970 F: Documentation/admin-guide/LSM/LoadPin.rst
10971 F: security/loadpin/
10972
10973 LOCKING PRIMITIVES
10974 M: Peter Zijlstra <peterz@infradead.org>
10975 M: Ingo Molnar <mingo@redhat.com>
10976 M: Will Deacon <will@kernel.org>
10977 R: Waiman Long <longman@redhat.com>
10978 R: Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10979 L: linux-kernel@vger.kernel.org
10980 S: Maintained
10981 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10982 F: Documentation/locking/
10983 F: arch/*/include/asm/spinlock*.h
10984 F: include/linux/lockdep.h
10985 F: include/linux/mutex*.h
10986 F: include/linux/rwlock*.h
10987 F: include/linux/rwsem*.h
10988 F: include/linux/seqlock.h
10989 F: include/linux/spinlock*.h
10990 F: kernel/locking/
10991 F: lib/locking*.[ch]
10992 X: kernel/locking/locktorture.c
10993
10994 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10995 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
10996 L: linux-ntfs-dev@lists.sourceforge.net
10997 S: Maintained
10998 W: http://www.linux-ntfs.org/content/view/19/37/
10999 F: Documentation/admin-guide/ldm.rst
11000 F: block/partitions/ldm.*
11001
11002 LOGITECH HID GAMING KEYBOARDS
11003 M: Hans de Goede <hdegoede@redhat.com>
11004 L: linux-input@vger.kernel.org
11005 S: Maintained
11006 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11007 F: drivers/hid/hid-lg-g15.c
11008
11009 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11010 M: Adrien Grassein <adrien.grassein@gmail.com>
11011 S: Maintained
11012 F: Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11013 F: drivers/gpu/drm/bridge/lontium-lt8912b.c
11014
11015 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11016 M: Sathya Prakash <sathya.prakash@broadcom.com>
11017 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11018 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11019 L: MPT-FusionLinux.pdl@broadcom.com
11020 L: linux-scsi@vger.kernel.org
11021 S: Supported
11022 W: http://www.avagotech.com/support/
11023 F: drivers/message/fusion/
11024 F: drivers/scsi/mpt3sas/
11025
11026 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11027 M: Matthew Wilcox <willy@infradead.org>
11028 L: linux-scsi@vger.kernel.org
11029 S: Maintained
11030 F: drivers/scsi/sym53c8xx_2/
11031
11032 LTC1660 DAC DRIVER
11033 M: Marcus Folkesson <marcus.folkesson@gmail.com>
11034 L: linux-iio@vger.kernel.org
11035 S: Maintained
11036 F: Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11037 F: drivers/iio/dac/ltc1660.c
11038
11039 LTC2947 HARDWARE MONITOR DRIVER
11040 M: Nuno Sá <nuno.sa@analog.com>
11041 L: linux-hwmon@vger.kernel.org
11042 S: Supported
11043 W: http://ez.analog.com/community/linux-device-drivers
11044 F: Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11045 F: drivers/hwmon/ltc2947-core.c
11046 F: drivers/hwmon/ltc2947-i2c.c
11047 F: drivers/hwmon/ltc2947-spi.c
11048 F: drivers/hwmon/ltc2947.h
11049
11050 LTC2983 IIO TEMPERATURE DRIVER
11051 M: Nuno Sá <nuno.sa@analog.com>
11052 L: linux-iio@vger.kernel.org
11053 S: Supported
11054 W: http://ez.analog.com/community/linux-device-drivers
11055 F: Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11056 F: drivers/iio/temperature/ltc2983.c
11057
11058 LTC4261 HARDWARE MONITOR DRIVER
11059 M: Guenter Roeck <linux@roeck-us.net>
11060 L: linux-hwmon@vger.kernel.org
11061 S: Maintained
11062 F: Documentation/hwmon/ltc4261.rst
11063 F: drivers/hwmon/ltc4261.c
11064
11065 LTC4306 I2C MULTIPLEXER DRIVER
11066 M: Michael Hennerich <michael.hennerich@analog.com>
11067 L: linux-i2c@vger.kernel.org
11068 S: Supported
11069 W: http://ez.analog.com/community/linux-device-drivers
11070 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11071 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
11072
11073 LTP (Linux Test Project)
11074 M: Mike Frysinger <vapier@gentoo.org>
11075 M: Cyril Hrubis <chrubis@suse.cz>
11076 M: Wanlong Gao <wanlong.gao@gmail.com>
11077 M: Jan Stancek <jstancek@redhat.com>
11078 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11079 M: Alexey Kodanev <alexey.kodanev@oracle.com>
11080 L: ltp@lists.linux.it (subscribers-only)
11081 S: Maintained
11082 W: http://linux-test-project.github.io/
11083 T: git git://github.com/linux-test-project/ltp.git
11084
11085 LYNX PCS MODULE
11086 M: Ioana Ciornei <ioana.ciornei@nxp.com>
11087 L: netdev@vger.kernel.org
11088 S: Supported
11089 F: drivers/net/pcs/pcs-lynx.c
11090 F: include/linux/pcs-lynx.h
11091
11092 M68K ARCHITECTURE
11093 M: Geert Uytterhoeven <geert@linux-m68k.org>
11094 L: linux-m68k@lists.linux-m68k.org
11095 S: Maintained
11096 W: http://www.linux-m68k.org/
11097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11098 F: arch/m68k/
11099 F: drivers/zorro/
11100
11101 M68K ON APPLE MACINTOSH
11102 M: Joshua Thompson <funaho@jurai.org>
11103 L: linux-m68k@lists.linux-m68k.org
11104 S: Maintained
11105 W: http://www.mac.linux-m68k.org/
11106 F: arch/m68k/mac/
11107 F: drivers/macintosh/adb-iop.c
11108 F: drivers/macintosh/via-macii.c
11109
11110 M68K ON HP9000/300
11111 M: Philip Blundell <philb@gnu.org>
11112 S: Maintained
11113 W: http://www.tazenda.demon.co.uk/phil/linux-hp
11114 F: arch/m68k/hp300/
11115
11116 M88DS3103 MEDIA DRIVER
11117 M: Antti Palosaari <crope@iki.fi>
11118 L: linux-media@vger.kernel.org
11119 S: Maintained
11120 W: https://linuxtv.org
11121 W: http://palosaari.fi/linux/
11122 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11123 T: git git://linuxtv.org/anttip/media_tree.git
11124 F: drivers/media/dvb-frontends/m88ds3103*
11125
11126 M88RS2000 MEDIA DRIVER
11127 M: Malcolm Priestley <tvboxspy@gmail.com>
11128 L: linux-media@vger.kernel.org
11129 S: Maintained
11130 W: https://linuxtv.org
11131 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11132 F: drivers/media/dvb-frontends/m88rs2000*
11133
11134 MA901 MASTERKIT USB FM RADIO DRIVER
11135 M: Alexey Klimov <klimov.linux@gmail.com>
11136 L: linux-media@vger.kernel.org
11137 S: Maintained
11138 T: git git://linuxtv.org/media_tree.git
11139 F: drivers/media/radio/radio-ma901.c
11140
11141 MAC80211
11142 M: Johannes Berg <johannes@sipsolutions.net>
11143 L: linux-wireless@vger.kernel.org
11144 S: Maintained
11145 W: https://wireless.wiki.kernel.org/
11146 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11147 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11148 F: Documentation/networking/mac80211-injection.rst
11149 F: Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11150 F: drivers/net/wireless/mac80211_hwsim.[ch]
11151 F: include/net/mac80211.h
11152 F: net/mac80211/
11153
11154 MAILBOX API
11155 M: Jassi Brar <jassisinghbrar@gmail.com>
11156 L: linux-kernel@vger.kernel.org
11157 S: Maintained
11158 F: drivers/mailbox/
11159 F: include/linux/mailbox_client.h
11160 F: include/linux/mailbox_controller.h
11161 F: include/dt-bindings/mailbox/
11162 F: Documentation/devicetree/bindings/mailbox/
11163
11164 MAILBOX ARM MHUv2
11165 M: Viresh Kumar <viresh.kumar@linaro.org>
11166 M: Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11167 L: linux-kernel@vger.kernel.org
11168 S: Maintained
11169 F: drivers/mailbox/arm_mhuv2.c
11170 F: include/linux/mailbox/arm_mhuv2_message.h
11171 F: Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11172
11173 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11174 M: Jeremy Kerr <jk@codeconstruct.com.au>
11175 M: Matt Johnston <matt@codeconstruct.com.au>
11176 L: netdev@vger.kernel.org
11177 S: Maintained
11178 F: Documentation/networking/mctp.rst
11179 F: drivers/net/mctp/
11180 F: include/net/mctp.h
11181 F: include/net/mctpdevice.h
11182 F: include/net/netns/mctp.h
11183 F: net/mctp/
11184
11185 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11186 M: Michael Kerrisk <mtk.manpages@gmail.com>
11187 L: linux-man@vger.kernel.org
11188 S: Maintained
11189 W: http://www.kernel.org/doc/man-pages
11190
11191 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11192 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
11193 L: linux-mips@vger.kernel.org
11194 S: Maintained
11195 F: arch/mips/boot/dts/img/pistachio*
11196
11197 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11198 M: Andrew Lunn <andrew@lunn.ch>
11199 M: Vivien Didelot <vivien.didelot@gmail.com>
11200 L: netdev@vger.kernel.org
11201 S: Maintained
11202 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
11203 F: Documentation/networking/devlink/mv88e6xxx.rst
11204 F: drivers/net/dsa/mv88e6xxx/
11205 F: include/linux/dsa/mv88e6xxx.h
11206 F: include/linux/platform_data/mv88e6xxx.h
11207
11208 MARVELL ARMADA 3700 PHY DRIVERS
11209 M: Miquel Raynal <miquel.raynal@bootlin.com>
11210 S: Maintained
11211 F: Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11212 F: Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11213 F: drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11214 F: drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11215
11216 MARVELL ARMADA DRM SUPPORT
11217 M: Russell King <linux@armlinux.org.uk>
11218 S: Maintained
11219 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11220 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11221 F: Documentation/devicetree/bindings/display/armada/
11222 F: drivers/gpu/drm/armada/
11223 F: include/uapi/drm/armada_drm.h
11224
11225 MARVELL CRYPTO DRIVER
11226 M: Boris Brezillon <bbrezillon@kernel.org>
11227 M: Arnaud Ebalard <arno@natisbad.org>
11228 M: Srujana Challa <schalla@marvell.com>
11229 L: linux-crypto@vger.kernel.org
11230 S: Maintained
11231 F: drivers/crypto/marvell/
11232 F: include/linux/soc/marvell/octeontx2/
11233
11234 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11235 M: Mirko Lindner <mlindner@marvell.com>
11236 M: Stephen Hemminger <stephen@networkplumber.org>
11237 L: netdev@vger.kernel.org
11238 S: Maintained
11239 F: drivers/net/ethernet/marvell/sk*
11240
11241 MARVELL LIBERTAS WIRELESS DRIVER
11242 L: libertas-dev@lists.infradead.org
11243 S: Orphan
11244 F: drivers/net/wireless/marvell/libertas/
11245
11246 MARVELL MACCHIATOBIN SUPPORT
11247 M: Russell King <linux@armlinux.org.uk>
11248 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11249 S: Maintained
11250 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11251
11252 MARVELL MV643XX ETHERNET DRIVER
11253 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11254 L: netdev@vger.kernel.org
11255 S: Maintained
11256 F: drivers/net/ethernet/marvell/mv643xx_eth.*
11257 F: include/linux/mv643xx.h
11258
11259 MARVELL MV88X3310 PHY DRIVER
11260 M: Russell King <linux@armlinux.org.uk>
11261 M: Marek Behún <kabel@kernel.org>
11262 L: netdev@vger.kernel.org
11263 S: Maintained
11264 F: drivers/net/phy/marvell10g.c
11265
11266 MARVELL MVEBU THERMAL DRIVER
11267 M: Miquel Raynal <miquel.raynal@bootlin.com>
11268 S: Maintained
11269 F: drivers/thermal/armada_thermal.c
11270
11271 MARVELL MVNETA ETHERNET DRIVER
11272 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11273 L: netdev@vger.kernel.org
11274 S: Maintained
11275 F: drivers/net/ethernet/marvell/mvneta.*
11276
11277 MARVELL MVPP2 ETHERNET DRIVER
11278 M: Marcin Wojtas <mw@semihalf.com>
11279 M: Russell King <linux@armlinux.org.uk>
11280 L: netdev@vger.kernel.org
11281 S: Maintained
11282 F: Documentation/devicetree/bindings/net/marvell-pp2.txt
11283 F: drivers/net/ethernet/marvell/mvpp2/
11284
11285 MARVELL MWIFIEX WIRELESS DRIVER
11286 M: Amitkumar Karwar <amitkarwar@gmail.com>
11287 M: Ganapathi Bhat <ganapathi017@gmail.com>
11288 M: Sharvari Harisangam <sharvari.harisangam@nxp.com>
11289 M: Xinming Hu <huxinming820@gmail.com>
11290 L: linux-wireless@vger.kernel.org
11291 S: Maintained
11292 F: drivers/net/wireless/marvell/mwifiex/
11293
11294 MARVELL MWL8K WIRELESS DRIVER
11295 M: Lennert Buytenhek <buytenh@wantstofly.org>
11296 L: linux-wireless@vger.kernel.org
11297 S: Odd Fixes
11298 F: drivers/net/wireless/marvell/mwl8k.c
11299
11300 MARVELL NAND CONTROLLER DRIVER
11301 M: Miquel Raynal <miquel.raynal@bootlin.com>
11302 L: linux-mtd@lists.infradead.org
11303 S: Maintained
11304 F: Documentation/devicetree/bindings/mtd/marvell-nand.txt
11305 F: drivers/mtd/nand/raw/marvell_nand.c
11306
11307 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11308 M: Sunil Goutham <sgoutham@marvell.com>
11309 M: Geetha sowjanya <gakula@marvell.com>
11310 M: Subbaraya Sundeep <sbhatta@marvell.com>
11311 M: hariprasad <hkelam@marvell.com>
11312 L: netdev@vger.kernel.org
11313 S: Supported
11314 F: drivers/net/ethernet/marvell/octeontx2/nic/
11315 F: include/linux/soc/marvell/octeontx2/
11316
11317 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11318 M: Sunil Goutham <sgoutham@marvell.com>
11319 M: Linu Cherian <lcherian@marvell.com>
11320 M: Geetha sowjanya <gakula@marvell.com>
11321 M: Jerin Jacob <jerinj@marvell.com>
11322 M: hariprasad <hkelam@marvell.com>
11323 M: Subbaraya Sundeep <sbhatta@marvell.com>
11324 L: netdev@vger.kernel.org
11325 S: Supported
11326 F: Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11327 F: drivers/net/ethernet/marvell/octeontx2/af/
11328
11329 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11330 M: Taras Chornyi <tchornyi@marvell.com>
11331 S: Supported
11332 W: https://github.com/Marvell-switching/switchdev-prestera
11333 F: drivers/net/ethernet/marvell/prestera/
11334
11335 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11336 M: Nicolas Pitre <nico@fluxnic.net>
11337 S: Odd Fixes
11338 F: drivers/mmc/host/mvsdio.*
11339
11340 MARVELL USB MDIO CONTROLLER DRIVER
11341 M: Tobias Waldekranz <tobias@waldekranz.com>
11342 L: netdev@vger.kernel.org
11343 S: Maintained
11344 F: Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11345 F: drivers/net/mdio/mdio-mvusb.c
11346
11347 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11348 M: Hu Ziji <huziji@marvell.com>
11349 L: linux-mmc@vger.kernel.org
11350 S: Supported
11351 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11352 F: drivers/mmc/host/sdhci-xenon*
11353
11354 MATROX FRAMEBUFFER DRIVER
11355 L: linux-fbdev@vger.kernel.org
11356 S: Orphan
11357 F: drivers/video/fbdev/matrox/matroxfb_*
11358 F: include/uapi/linux/matroxfb.h
11359
11360 MAX15301 DRIVER
11361 M: Daniel Nilsson <daniel.nilsson@flex.com>
11362 L: linux-hwmon@vger.kernel.org
11363 S: Maintained
11364 F: Documentation/hwmon/max15301.rst
11365 F: drivers/hwmon/pmbus/max15301.c
11366
11367 MAX16065 HARDWARE MONITOR DRIVER
11368 M: Guenter Roeck <linux@roeck-us.net>
11369 L: linux-hwmon@vger.kernel.org
11370 S: Maintained
11371 F: Documentation/hwmon/max16065.rst
11372 F: drivers/hwmon/max16065.c
11373
11374 MAX2175 SDR TUNER DRIVER
11375 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
11376 L: linux-media@vger.kernel.org
11377 S: Maintained
11378 T: git git://linuxtv.org/media_tree.git
11379 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
11380 F: Documentation/userspace-api/media/drivers/max2175.rst
11381 F: drivers/media/i2c/max2175*
11382 F: include/uapi/linux/max2175.h
11383
11384 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11385 L: linux-hwmon@vger.kernel.org
11386 S: Orphan
11387 F: Documentation/hwmon/max6650.rst
11388 F: drivers/hwmon/max6650.c
11389
11390 MAX6697 HARDWARE MONITOR DRIVER
11391 M: Guenter Roeck <linux@roeck-us.net>
11392 L: linux-hwmon@vger.kernel.org
11393 S: Maintained
11394 F: Documentation/devicetree/bindings/hwmon/max6697.txt
11395 F: Documentation/hwmon/max6697.rst
11396 F: drivers/hwmon/max6697.c
11397 F: include/linux/platform_data/max6697.h
11398
11399 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11400 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
11401 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11402 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11403 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11404 L: linux-media@vger.kernel.org
11405 S: Maintained
11406 F: Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11407 F: drivers/media/i2c/max9286.c
11408
11409 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11410 M: Peter Rosin <peda@axentia.se>
11411 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11412 S: Maintained
11413 F: Documentation/devicetree/bindings/sound/max9860.txt
11414 F: sound/soc/codecs/max9860.*
11415
11416 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11417 M: Andreas Klinger <ak@it-klinger.de>
11418 L: linux-iio@vger.kernel.org
11419 S: Maintained
11420 F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11421 F: drivers/iio/proximity/mb1232.c
11422
11423 MAXIM MAX77650 PMIC MFD DRIVER
11424 M: Bartosz Golaszewski <brgl@bgdev.pl>
11425 L: linux-kernel@vger.kernel.org
11426 S: Maintained
11427 F: Documentation/devicetree/bindings/*/*max77650.yaml
11428 F: Documentation/devicetree/bindings/*/max77650*.yaml
11429 F: drivers/gpio/gpio-max77650.c
11430 F: drivers/input/misc/max77650-onkey.c
11431 F: drivers/leds/leds-max77650.c
11432 F: drivers/mfd/max77650.c
11433 F: drivers/power/supply/max77650-charger.c
11434 F: drivers/regulator/max77650-regulator.c
11435 F: include/linux/mfd/max77650.h
11436
11437 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11438 M: Javier Martinez Canillas <javier@dowhile0.org>
11439 L: linux-kernel@vger.kernel.org
11440 S: Supported
11441 F: Documentation/devicetree/bindings/*/*max77802.txt
11442 F: drivers/regulator/max77802-regulator.c
11443 F: include/dt-bindings/*/*max77802.h
11444
11445 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11446 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11447 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11448 L: linux-pm@vger.kernel.org
11449 S: Supported
11450 F: drivers/power/supply/max14577_charger.c
11451 F: drivers/power/supply/max77693_charger.c
11452
11453 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11454 M: Chanwoo Choi <cw00.choi@samsung.com>
11455 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11456 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11457 L: linux-kernel@vger.kernel.org
11458 S: Supported
11459 F: Documentation/devicetree/bindings/*/max77686.txt
11460 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
11461 F: Documentation/devicetree/bindings/mfd/max14577.txt
11462 F: Documentation/devicetree/bindings/mfd/max77693.txt
11463 F: drivers/*/max14577*.c
11464 F: drivers/*/max77686*.c
11465 F: drivers/*/max77693*.c
11466 F: drivers/clk/clk-max77686.c
11467 F: drivers/extcon/extcon-max14577.c
11468 F: drivers/extcon/extcon-max77693.c
11469 F: drivers/rtc/rtc-max77686.c
11470 F: include/linux/mfd/max14577*.h
11471 F: include/linux/mfd/max77686*.h
11472 F: include/linux/mfd/max77693*.h
11473
11474 MAXIRADIO FM RADIO RECEIVER DRIVER
11475 M: Hans Verkuil <hverkuil@xs4all.nl>
11476 L: linux-media@vger.kernel.org
11477 S: Maintained
11478 W: https://linuxtv.org
11479 T: git git://linuxtv.org/media_tree.git
11480 F: drivers/media/radio/radio-maxiradio*
11481
11482 MAXLINEAR ETHERNET PHY DRIVER
11483 M: Xu Liang <lxu@maxlinear.com>
11484 L: netdev@vger.kernel.org
11485 S: Supported
11486 F: drivers/net/phy/mxl-gpy.c
11487
11488 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11489 R: Yasushi SHOJI <yashi@spacecubics.com>
11490 L: linux-can@vger.kernel.org
11491 S: Maintained
11492 F: drivers/net/can/usb/mcba_usb.c
11493
11494 MCAN MMIO DEVICE DRIVER
11495 M: Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11496 L: linux-can@vger.kernel.org
11497 S: Maintained
11498 F: Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11499 F: drivers/net/can/m_can/m_can.c
11500 F: drivers/net/can/m_can/m_can.h
11501 F: drivers/net/can/m_can/m_can_platform.c
11502
11503 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11504 M: Rishi Gupta <gupt21@gmail.com>
11505 L: linux-i2c@vger.kernel.org
11506 L: linux-input@vger.kernel.org
11507 S: Maintained
11508 F: drivers/hid/hid-mcp2221.c
11509
11510 MCP251XFD SPI-CAN NETWORK DRIVER
11511 M: Marc Kleine-Budde <mkl@pengutronix.de>
11512 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11513 R: Thomas Kopp <thomas.kopp@microchip.com>
11514 L: linux-can@vger.kernel.org
11515 S: Maintained
11516 F: Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11517 F: drivers/net/can/spi/mcp251xfd/
11518
11519 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11520 M: Peter Rosin <peda@axentia.se>
11521 L: linux-iio@vger.kernel.org
11522 S: Maintained
11523 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11524 F: drivers/iio/potentiometer/mcp4018.c
11525 F: drivers/iio/potentiometer/mcp4531.c
11526
11527 MCR20A IEEE-802.15.4 RADIO DRIVER
11528 M: Xue Liu <liuxuenetmail@gmail.com>
11529 L: linux-wpan@vger.kernel.org
11530 S: Maintained
11531 W: https://github.com/xueliu/mcr20a-linux
11532 F: Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11533 F: drivers/net/ieee802154/mcr20a.c
11534 F: drivers/net/ieee802154/mcr20a.h
11535
11536 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11537 M: William Breathitt Gray <vilhelm.gray@gmail.com>
11538 L: linux-iio@vger.kernel.org
11539 S: Maintained
11540 F: drivers/iio/dac/cio-dac.c
11541
11542 MEDIA CONTROLLER FRAMEWORK
11543 M: Sakari Ailus <sakari.ailus@linux.intel.com>
11544 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11545 L: linux-media@vger.kernel.org
11546 S: Supported
11547 W: https://www.linuxtv.org
11548 T: git git://linuxtv.org/media_tree.git
11549 F: drivers/media/mc/
11550 F: include/media/media-*.h
11551 F: include/uapi/linux/media.h
11552
11553 MEDIA DRIVER FOR FREESCALE IMX PXP
11554 M: Philipp Zabel <p.zabel@pengutronix.de>
11555 L: linux-media@vger.kernel.org
11556 S: Maintained
11557 T: git git://linuxtv.org/media_tree.git
11558 F: drivers/media/platform/imx-pxp.[ch]
11559
11560 MEDIA DRIVERS FOR ASCOT2E
11561 M: Sergey Kozlov <serjk@netup.ru>
11562 M: Abylay Ospan <aospan@netup.ru>
11563 L: linux-media@vger.kernel.org
11564 S: Supported
11565 W: https://linuxtv.org
11566 W: http://netup.tv/
11567 T: git git://linuxtv.org/media_tree.git
11568 F: drivers/media/dvb-frontends/ascot2e*
11569
11570 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11571 M: Jasmin Jessich <jasmin@anw.at>
11572 L: linux-media@vger.kernel.org
11573 S: Maintained
11574 W: https://linuxtv.org
11575 T: git git://linuxtv.org/media_tree.git
11576 F: drivers/media/dvb-frontends/cxd2099*
11577
11578 MEDIA DRIVERS FOR CXD2841ER
11579 M: Sergey Kozlov <serjk@netup.ru>
11580 M: Abylay Ospan <aospan@netup.ru>
11581 L: linux-media@vger.kernel.org
11582 S: Supported
11583 W: https://linuxtv.org
11584 W: http://netup.tv/
11585 T: git git://linuxtv.org/media_tree.git
11586 F: drivers/media/dvb-frontends/cxd2841er*
11587
11588 MEDIA DRIVERS FOR CXD2880
11589 M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11590 L: linux-media@vger.kernel.org
11591 S: Supported
11592 W: http://linuxtv.org/
11593 T: git git://linuxtv.org/media_tree.git
11594 F: drivers/media/dvb-frontends/cxd2880/*
11595 F: drivers/media/spi/cxd2880*
11596
11597 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11598 L: linux-media@vger.kernel.org
11599 S: Orphan
11600 W: https://linuxtv.org
11601 T: git git://linuxtv.org/media_tree.git
11602 F: drivers/media/pci/ddbridge/*
11603
11604 MEDIA DRIVERS FOR FREESCALE IMX
11605 M: Steve Longerbeam <slongerbeam@gmail.com>
11606 M: Philipp Zabel <p.zabel@pengutronix.de>
11607 L: linux-media@vger.kernel.org
11608 S: Maintained
11609 T: git git://linuxtv.org/media_tree.git
11610 F: Documentation/admin-guide/media/imx.rst
11611 F: Documentation/devicetree/bindings/media/imx.txt
11612 F: drivers/staging/media/imx/
11613 F: include/linux/imx-media.h
11614 F: include/media/imx.h
11615
11616 MEDIA DRIVERS FOR FREESCALE IMX7
11617 M: Rui Miguel Silva <rmfrfs@gmail.com>
11618 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11619 L: linux-media@vger.kernel.org
11620 S: Maintained
11621 T: git git://linuxtv.org/media_tree.git
11622 F: Documentation/admin-guide/media/imx7.rst
11623 F: Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11624 F: Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11625 F: drivers/staging/media/imx/imx7-media-csi.c
11626 F: drivers/staging/media/imx/imx7-mipi-csis.c
11627
11628 MEDIA DRIVERS FOR HELENE
11629 M: Abylay Ospan <aospan@netup.ru>
11630 L: linux-media@vger.kernel.org
11631 S: Supported
11632 W: https://linuxtv.org
11633 W: http://netup.tv/
11634 T: git git://linuxtv.org/media_tree.git
11635 F: drivers/media/dvb-frontends/helene*
11636
11637 MEDIA DRIVERS FOR HORUS3A
11638 M: Sergey Kozlov <serjk@netup.ru>
11639 M: Abylay Ospan <aospan@netup.ru>
11640 L: linux-media@vger.kernel.org
11641 S: Supported
11642 W: https://linuxtv.org
11643 W: http://netup.tv/
11644 T: git git://linuxtv.org/media_tree.git
11645 F: drivers/media/dvb-frontends/horus3a*
11646
11647 MEDIA DRIVERS FOR LNBH25
11648 M: Sergey Kozlov <serjk@netup.ru>
11649 M: Abylay Ospan <aospan@netup.ru>
11650 L: linux-media@vger.kernel.org
11651 S: Supported
11652 W: https://linuxtv.org
11653 W: http://netup.tv/
11654 T: git git://linuxtv.org/media_tree.git
11655 F: drivers/media/dvb-frontends/lnbh25*
11656
11657 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11658 L: linux-media@vger.kernel.org
11659 S: Orphan
11660 W: https://linuxtv.org
11661 T: git git://linuxtv.org/media_tree.git
11662 F: drivers/media/dvb-frontends/mxl5xx*
11663
11664 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11665 M: Sergey Kozlov <serjk@netup.ru>
11666 M: Abylay Ospan <aospan@netup.ru>
11667 L: linux-media@vger.kernel.org
11668 S: Supported
11669 W: https://linuxtv.org
11670 W: http://netup.tv/
11671 T: git git://linuxtv.org/media_tree.git
11672 F: drivers/media/pci/netup_unidvb/*
11673
11674 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11675 M: Dmitry Osipenko <digetx@gmail.com>
11676 L: linux-media@vger.kernel.org
11677 L: linux-tegra@vger.kernel.org
11678 S: Maintained
11679 T: git git://linuxtv.org/media_tree.git
11680 F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11681 F: drivers/staging/media/tegra-vde/
11682
11683 MEDIA DRIVERS FOR RENESAS - CEU
11684 M: Jacopo Mondi <jacopo@jmondi.org>
11685 L: linux-media@vger.kernel.org
11686 L: linux-renesas-soc@vger.kernel.org
11687 S: Supported
11688 T: git git://linuxtv.org/media_tree.git
11689 F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
11690 F: drivers/media/platform/renesas-ceu.c
11691 F: include/media/drv-intf/renesas-ceu.h
11692
11693 MEDIA DRIVERS FOR RENESAS - DRIF
11694 M: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11695 L: linux-media@vger.kernel.org
11696 L: linux-renesas-soc@vger.kernel.org
11697 S: Supported
11698 T: git git://linuxtv.org/media_tree.git
11699 F: Documentation/devicetree/bindings/media/renesas,drif.yaml
11700 F: drivers/media/platform/rcar_drif.c
11701
11702 MEDIA DRIVERS FOR RENESAS - FCP
11703 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11704 L: linux-media@vger.kernel.org
11705 L: linux-renesas-soc@vger.kernel.org
11706 S: Supported
11707 T: git git://linuxtv.org/media_tree.git
11708 F: Documentation/devicetree/bindings/media/renesas,fcp.yaml
11709 F: drivers/media/platform/rcar-fcp.c
11710 F: include/media/rcar-fcp.h
11711
11712 MEDIA DRIVERS FOR RENESAS - FDP1
11713 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11714 L: linux-media@vger.kernel.org
11715 L: linux-renesas-soc@vger.kernel.org
11716 S: Supported
11717 T: git git://linuxtv.org/media_tree.git
11718 F: Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11719 F: drivers/media/platform/rcar_fdp1.c
11720
11721 MEDIA DRIVERS FOR RENESAS - VIN
11722 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
11723 L: linux-media@vger.kernel.org
11724 L: linux-renesas-soc@vger.kernel.org
11725 S: Supported
11726 T: git git://linuxtv.org/media_tree.git
11727 F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
11728 F: Documentation/devicetree/bindings/media/renesas,isp.yaml
11729 F: Documentation/devicetree/bindings/media/renesas,vin.yaml
11730 F: drivers/media/platform/rcar-vin/
11731
11732 MEDIA DRIVERS FOR RENESAS - VSP1
11733 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11734 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11735 L: linux-media@vger.kernel.org
11736 L: linux-renesas-soc@vger.kernel.org
11737 S: Supported
11738 T: git git://linuxtv.org/media_tree.git
11739 F: Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11740 F: drivers/media/platform/vsp1/
11741
11742 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11743 L: linux-media@vger.kernel.org
11744 S: Orphan
11745 W: https://linuxtv.org
11746 T: git git://linuxtv.org/media_tree.git
11747 F: drivers/media/dvb-frontends/stv0910*
11748
11749 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11750 L: linux-media@vger.kernel.org
11751 S: Orphan
11752 W: https://linuxtv.org
11753 T: git git://linuxtv.org/media_tree.git
11754 F: drivers/media/dvb-frontends/stv6111*
11755
11756 MEDIA DRIVERS FOR STM32 - DCMI
11757 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
11758 L: linux-media@vger.kernel.org
11759 S: Supported
11760 T: git git://linuxtv.org/media_tree.git
11761 F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11762 F: drivers/media/platform/stm32/stm32-dcmi.c
11763
11764 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11765 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11766 L: linux-media@vger.kernel.org
11767 S: Maintained
11768 W: https://linuxtv.org
11769 Q: http://patchwork.kernel.org/project/linux-media/list/
11770 T: git git://linuxtv.org/media_tree.git
11771 F: Documentation/admin-guide/media/
11772 F: Documentation/devicetree/bindings/media/
11773 F: Documentation/driver-api/media/
11774 F: Documentation/userspace-api/media/
11775 F: drivers/media/
11776 F: drivers/staging/media/
11777 F: include/linux/platform_data/media/
11778 F: include/media/
11779 F: include/uapi/linux/dvb/
11780 F: include/uapi/linux/ivtv*
11781 F: include/uapi/linux/media.h
11782 F: include/uapi/linux/meye.h
11783 F: include/uapi/linux/uvcvideo.h
11784 F: include/uapi/linux/v4l2-*
11785 F: include/uapi/linux/videodev2.h
11786
11787 MEDIATEK BLUETOOTH DRIVER
11788 M: Sean Wang <sean.wang@mediatek.com>
11789 L: linux-bluetooth@vger.kernel.org
11790 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11791 S: Maintained
11792 F: Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11793 F: drivers/bluetooth/btmtkuart.c
11794
11795 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11796 M: Sean Wang <sean.wang@mediatek.com>
11797 L: linux-pm@vger.kernel.org
11798 S: Maintained
11799 F: Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11800 F: drivers/power/reset/mt6323-poweroff.c
11801
11802 MEDIATEK CIR DRIVER
11803 M: Sean Wang <sean.wang@mediatek.com>
11804 S: Maintained
11805 F: drivers/media/rc/mtk-cir.c
11806
11807 MEDIATEK DMA DRIVER
11808 M: Sean Wang <sean.wang@mediatek.com>
11809 L: dmaengine@vger.kernel.org
11810 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11811 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11812 S: Maintained
11813 F: Documentation/devicetree/bindings/dma/mtk-*
11814 F: drivers/dma/mediatek/
11815
11816 MEDIATEK ETHERNET DRIVER
11817 M: Felix Fietkau <nbd@nbd.name>
11818 M: John Crispin <john@phrozen.org>
11819 M: Sean Wang <sean.wang@mediatek.com>
11820 M: Mark Lee <Mark-MC.Lee@mediatek.com>
11821 L: netdev@vger.kernel.org
11822 S: Maintained
11823 F: drivers/net/ethernet/mediatek/
11824
11825 MEDIATEK I2C CONTROLLER DRIVER
11826 M: Qii Wang <qii.wang@mediatek.com>
11827 L: linux-i2c@vger.kernel.org
11828 S: Maintained
11829 F: Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11830 F: drivers/i2c/busses/i2c-mt65xx.c
11831
11832 MEDIATEK IOMMU DRIVER
11833 M: Yong Wu <yong.wu@mediatek.com>
11834 L: iommu@lists.linux-foundation.org
11835 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11836 S: Supported
11837 F: Documentation/devicetree/bindings/iommu/mediatek*
11838 F: drivers/iommu/mtk_iommu*
11839 F: include/dt-bindings/memory/mt*-port.h
11840
11841 MEDIATEK JPEG DRIVER
11842 M: Rick Chang <rick.chang@mediatek.com>
11843 M: Bin Liu <bin.liu@mediatek.com>
11844 S: Supported
11845 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11846 F: drivers/media/platform/mtk-jpeg/
11847
11848 MEDIATEK MDP DRIVER
11849 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11850 M: Houlong Wei <houlong.wei@mediatek.com>
11851 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11852 S: Supported
11853 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
11854 F: drivers/media/platform/mtk-mdp/
11855 F: drivers/media/platform/mtk-vpu/
11856
11857 MEDIATEK MEDIA DRIVER
11858 M: Tiffany Lin <tiffany.lin@mediatek.com>
11859 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11860 S: Supported
11861 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11862 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
11863 F: drivers/media/platform/mtk-vcodec/
11864 F: drivers/media/platform/mtk-vpu/
11865
11866 MEDIATEK MMC/SD/SDIO DRIVER
11867 M: Chaotian Jing <chaotian.jing@mediatek.com>
11868 S: Maintained
11869 F: Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11870 F: drivers/mmc/host/mtk-sd.c
11871
11872 MEDIATEK MT76 WIRELESS LAN DRIVER
11873 M: Felix Fietkau <nbd@nbd.name>
11874 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11875 R: Ryder Lee <ryder.lee@mediatek.com>
11876 L: linux-wireless@vger.kernel.org
11877 S: Maintained
11878 F: drivers/net/wireless/mediatek/mt76/
11879
11880 MEDIATEK MT7601U WIRELESS LAN DRIVER
11881 M: Jakub Kicinski <kubakici@wp.pl>
11882 L: linux-wireless@vger.kernel.org
11883 S: Maintained
11884 F: drivers/net/wireless/mediatek/mt7601u/
11885
11886 MEDIATEK MT7621 CLOCK DRIVER
11887 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11888 S: Maintained
11889 F: Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11890 F: drivers/clk/ralink/clk-mt7621.c
11891
11892 MEDIATEK MT7621/28/88 I2C DRIVER
11893 M: Stefan Roese <sr@denx.de>
11894 L: linux-i2c@vger.kernel.org
11895 S: Maintained
11896 F: Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11897 F: drivers/i2c/busses/i2c-mt7621.c
11898
11899 MEDIATEK MT7621 PHY PCI DRIVER
11900 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11901 S: Maintained
11902 F: Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11903 F: drivers/phy/ralink/phy-mt7621-pci.c
11904
11905 MEDIATEK NAND CONTROLLER DRIVER
11906 L: linux-mtd@lists.infradead.org
11907 S: Orphan
11908 F: Documentation/devicetree/bindings/mtd/mtk-nand.txt
11909 F: drivers/mtd/nand/raw/mtk_*
11910
11911 MEDIATEK PMIC LED DRIVER
11912 M: Sean Wang <sean.wang@mediatek.com>
11913 S: Maintained
11914 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
11915 F: drivers/leds/leds-mt6323.c
11916
11917 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11918 M: Sean Wang <sean.wang@mediatek.com>
11919 S: Maintained
11920 F: drivers/char/hw_random/mtk-rng.c
11921
11922 MEDIATEK SWITCH DRIVER
11923 M: Sean Wang <sean.wang@mediatek.com>
11924 M: Landen Chao <Landen.Chao@mediatek.com>
11925 M: DENG Qingfang <dqfext@gmail.com>
11926 L: netdev@vger.kernel.org
11927 S: Maintained
11928 F: drivers/net/dsa/mt7530.*
11929 F: net/dsa/tag_mtk.c
11930
11931 MEDIATEK USB3 DRD IP DRIVER
11932 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
11933 L: linux-usb@vger.kernel.org
11934 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11935 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11936 S: Maintained
11937 F: Documentation/devicetree/bindings/usb/mediatek,*
11938 F: drivers/usb/host/xhci-mtk*
11939 F: drivers/usb/mtu3/
11940
11941 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11942 M: Peter Senna Tschudin <peter.senna@gmail.com>
11943 M: Martin Donnelly <martin.donnelly@ge.com>
11944 M: Martyn Welch <martyn.welch@collabora.co.uk>
11945 S: Maintained
11946 F: Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11947 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11948
11949 MEGARAID SCSI/SAS DRIVERS
11950 M: Kashyap Desai <kashyap.desai@broadcom.com>
11951 M: Sumit Saxena <sumit.saxena@broadcom.com>
11952 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11953 L: megaraidlinux.pdl@broadcom.com
11954 L: linux-scsi@vger.kernel.org
11955 S: Maintained
11956 W: http://www.avagotech.com/support/
11957 F: Documentation/scsi/megaraid.rst
11958 F: drivers/scsi/megaraid.*
11959 F: drivers/scsi/megaraid/
11960
11961 MELEXIS MLX90614 DRIVER
11962 M: Crt Mori <cmo@melexis.com>
11963 L: linux-iio@vger.kernel.org
11964 S: Supported
11965 W: http://www.melexis.com
11966 F: drivers/iio/temperature/mlx90614.c
11967
11968 MELEXIS MLX90632 DRIVER
11969 M: Crt Mori <cmo@melexis.com>
11970 L: linux-iio@vger.kernel.org
11971 S: Supported
11972 W: http://www.melexis.com
11973 F: drivers/iio/temperature/mlx90632.c
11974
11975 MELFAS MIP4 TOUCHSCREEN DRIVER
11976 M: Sangwon Jee <jeesw@melfas.com>
11977 S: Supported
11978 W: http://www.melfas.com
11979 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11980 F: drivers/input/touchscreen/melfas_mip4.c
11981
11982 MELLANOX BLUEFIELD I2C DRIVER
11983 M: Khalil Blaiech <kblaiech@nvidia.com>
11984 L: linux-i2c@vger.kernel.org
11985 S: Supported
11986 F: Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11987 F: drivers/i2c/busses/i2c-mlxbf.c
11988
11989 MELLANOX ETHERNET DRIVER (mlx4_en)
11990 M: Tariq Toukan <tariqt@nvidia.com>
11991 L: netdev@vger.kernel.org
11992 S: Supported
11993 W: http://www.mellanox.com
11994 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11995 F: drivers/net/ethernet/mellanox/mlx4/en_*
11996
11997 MELLANOX ETHERNET DRIVER (mlx5e)
11998 M: Saeed Mahameed <saeedm@nvidia.com>
11999 L: netdev@vger.kernel.org
12000 S: Supported
12001 W: http://www.mellanox.com
12002 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12003 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
12004
12005 MELLANOX ETHERNET INNOVA DRIVERS
12006 R: Boris Pismenny <borisp@nvidia.com>
12007 L: netdev@vger.kernel.org
12008 S: Supported
12009 W: http://www.mellanox.com
12010 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12011 F: drivers/net/ethernet/mellanox/mlx5/core/accel/*
12012 F: drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12013 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12014 F: include/linux/mlx5/mlx5_ifc_fpga.h
12015
12016 MELLANOX ETHERNET SWITCH DRIVERS
12017 M: Jiri Pirko <jiri@nvidia.com>
12018 M: Ido Schimmel <idosch@nvidia.com>
12019 L: netdev@vger.kernel.org
12020 S: Supported
12021 W: http://www.mellanox.com
12022 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12023 F: drivers/net/ethernet/mellanox/mlxsw/
12024 F: tools/testing/selftests/drivers/net/mlxsw/
12025
12026 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12027 M: mlxsw@nvidia.com
12028 L: netdev@vger.kernel.org
12029 S: Supported
12030 W: http://www.mellanox.com
12031 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12032 F: drivers/net/ethernet/mellanox/mlxfw/
12033
12034 MELLANOX HARDWARE PLATFORM SUPPORT
12035 M: Hans de Goede <hdegoede@redhat.com>
12036 M: Mark Gross <mgross@linux.intel.com>
12037 M: Vadim Pasternak <vadimp@nvidia.com>
12038 L: platform-driver-x86@vger.kernel.org
12039 S: Supported
12040 F: Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12041 F: drivers/platform/mellanox/
12042 F: include/linux/platform_data/mlxreg.h
12043
12044 MELLANOX MLX4 core VPI driver
12045 M: Tariq Toukan <tariqt@nvidia.com>
12046 L: netdev@vger.kernel.org
12047 L: linux-rdma@vger.kernel.org
12048 S: Supported
12049 W: http://www.mellanox.com
12050 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12051 F: drivers/net/ethernet/mellanox/mlx4/
12052 F: include/linux/mlx4/
12053
12054 MELLANOX MLX4 IB driver
12055 M: Yishai Hadas <yishaih@nvidia.com>
12056 L: linux-rdma@vger.kernel.org
12057 S: Supported
12058 W: http://www.mellanox.com
12059 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12060 F: drivers/infiniband/hw/mlx4/
12061 F: include/linux/mlx4/
12062 F: include/uapi/rdma/mlx4-abi.h
12063
12064 MELLANOX MLX5 core VPI driver
12065 M: Saeed Mahameed <saeedm@nvidia.com>
12066 M: Leon Romanovsky <leonro@nvidia.com>
12067 L: netdev@vger.kernel.org
12068 L: linux-rdma@vger.kernel.org
12069 S: Supported
12070 W: http://www.mellanox.com
12071 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12072 F: Documentation/networking/device_drivers/ethernet/mellanox/
12073 F: drivers/net/ethernet/mellanox/mlx5/core/
12074 F: include/linux/mlx5/
12075
12076 MELLANOX MLX5 IB driver
12077 M: Leon Romanovsky <leonro@nvidia.com>
12078 L: linux-rdma@vger.kernel.org
12079 S: Supported
12080 W: http://www.mellanox.com
12081 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12082 F: drivers/infiniband/hw/mlx5/
12083 F: include/linux/mlx5/
12084 F: include/uapi/rdma/mlx5-abi.h
12085
12086 MELLANOX MLXCPLD I2C AND MUX DRIVER
12087 M: Vadim Pasternak <vadimp@nvidia.com>
12088 M: Michael Shych <michaelsh@nvidia.com>
12089 L: linux-i2c@vger.kernel.org
12090 S: Supported
12091 F: Documentation/i2c/busses/i2c-mlxcpld.rst
12092 F: drivers/i2c/busses/i2c-mlxcpld.c
12093 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
12094
12095 MELLANOX MLXCPLD LED DRIVER
12096 M: Vadim Pasternak <vadimp@nvidia.com>
12097 L: linux-leds@vger.kernel.org
12098 S: Supported
12099 F: Documentation/leds/leds-mlxcpld.rst
12100 F: drivers/leds/leds-mlxcpld.c
12101 F: drivers/leds/leds-mlxreg.c
12102
12103 MELLANOX PLATFORM DRIVER
12104 M: Vadim Pasternak <vadimp@nvidia.com>
12105 L: platform-driver-x86@vger.kernel.org
12106 S: Supported
12107 F: drivers/platform/x86/mlx-platform.c
12108
12109 MEMBARRIER SUPPORT
12110 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12111 M: "Paul E. McKenney" <paulmck@kernel.org>
12112 L: linux-kernel@vger.kernel.org
12113 S: Supported
12114 F: arch/powerpc/include/asm/membarrier.h
12115 F: include/uapi/linux/membarrier.h
12116 F: kernel/sched/membarrier.c
12117
12118 MEMBLOCK
12119 M: Mike Rapoport <rppt@linux.ibm.com>
12120 L: linux-mm@kvack.org
12121 S: Maintained
12122 F: Documentation/core-api/boot-time-mm.rst
12123 F: include/linux/memblock.h
12124 F: mm/memblock.c
12125
12126 MEMORY CONTROLLER DRIVERS
12127 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12128 L: linux-kernel@vger.kernel.org
12129 S: Maintained
12130 T: git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12131 F: Documentation/devicetree/bindings/memory-controllers/
12132 F: drivers/memory/
12133 F: include/dt-bindings/memory/
12134 F: include/memory/
12135
12136 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12137 M: Dmitry Osipenko <digetx@gmail.com>
12138 L: linux-pm@vger.kernel.org
12139 L: linux-tegra@vger.kernel.org
12140 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12141 S: Maintained
12142 F: drivers/devfreq/tegra30-devfreq.c
12143
12144 MEMORY MANAGEMENT
12145 M: Andrew Morton <akpm@linux-foundation.org>
12146 L: linux-mm@kvack.org
12147 S: Maintained
12148 W: http://www.linux-mm.org
12149 T: quilt https://ozlabs.org/~akpm/mmotm/
12150 T: quilt https://ozlabs.org/~akpm/mmots/
12151 T: git git://github.com/hnaz/linux-mm.git
12152 F: include/linux/gfp.h
12153 F: include/linux/memory_hotplug.h
12154 F: include/linux/mm.h
12155 F: include/linux/mmzone.h
12156 F: include/linux/pagewalk.h
12157 F: include/linux/vmalloc.h
12158 F: mm/
12159 F: tools/testing/selftests/vm/
12160
12161 MEMORY TECHNOLOGY DEVICES (MTD)
12162 M: Miquel Raynal <miquel.raynal@bootlin.com>
12163 M: Richard Weinberger <richard@nod.at>
12164 M: Vignesh Raghavendra <vigneshr@ti.com>
12165 L: linux-mtd@lists.infradead.org
12166 S: Maintained
12167 W: http://www.linux-mtd.infradead.org/
12168 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12169 C: irc://irc.oftc.net/mtd
12170 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12171 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12172 F: Documentation/devicetree/bindings/mtd/
12173 F: drivers/mtd/
12174 F: include/linux/mtd/
12175 F: include/uapi/mtd/
12176
12177 MEN A21 WATCHDOG DRIVER
12178 M: Johannes Thumshirn <morbidrsa@gmail.com>
12179 L: linux-watchdog@vger.kernel.org
12180 S: Maintained
12181 F: drivers/watchdog/mena21_wdt.c
12182
12183 MEN CHAMELEON BUS (mcb)
12184 M: Johannes Thumshirn <morbidrsa@gmail.com>
12185 S: Maintained
12186 F: Documentation/driver-api/men-chameleon-bus.rst
12187 F: drivers/mcb/
12188 F: include/linux/mcb.h
12189
12190 MEN F21BMC (Board Management Controller)
12191 M: Andreas Werner <andreas.werner@men.de>
12192 S: Supported
12193 F: Documentation/hwmon/menf21bmc.rst
12194 F: drivers/hwmon/menf21bmc_hwmon.c
12195 F: drivers/leds/leds-menf21bmc.c
12196 F: drivers/mfd/menf21bmc.c
12197 F: drivers/watchdog/menf21bmc_wdt.c
12198
12199 MEN Z069 WATCHDOG DRIVER
12200 M: Johannes Thumshirn <jth@kernel.org>
12201 L: linux-watchdog@vger.kernel.org
12202 S: Maintained
12203 F: drivers/watchdog/menz69_wdt.c
12204
12205 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12206 M: Neil Armstrong <narmstrong@baylibre.com>
12207 L: linux-media@vger.kernel.org
12208 L: linux-amlogic@lists.infradead.org
12209 S: Supported
12210 W: http://linux-meson.com/
12211 T: git git://linuxtv.org/media_tree.git
12212 F: Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12213 F: drivers/media/cec/platform/meson/ao-cec-g12a.c
12214 F: drivers/media/cec/platform/meson/ao-cec.c
12215
12216 MESON GE2D DRIVER FOR AMLOGIC SOCS
12217 M: Neil Armstrong <narmstrong@baylibre.com>
12218 L: linux-media@vger.kernel.org
12219 L: linux-amlogic@lists.infradead.org
12220 S: Supported
12221 T: git git://linuxtv.org/media_tree.git
12222 F: Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12223 F: drivers/media/platform/meson/ge2d/
12224
12225 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12226 M: Liang Yang <liang.yang@amlogic.com>
12227 L: linux-mtd@lists.infradead.org
12228 S: Maintained
12229 F: Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12230 F: drivers/mtd/nand/raw/meson_*
12231
12232 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12233 M: Neil Armstrong <narmstrong@baylibre.com>
12234 L: linux-media@vger.kernel.org
12235 L: linux-amlogic@lists.infradead.org
12236 S: Supported
12237 T: git git://linuxtv.org/media_tree.git
12238 F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12239 F: drivers/staging/media/meson/vdec/
12240
12241 METHODE UDPU SUPPORT
12242 M: Vladimir Vid <vladimir.vid@sartura.hr>
12243 S: Maintained
12244 F: arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12245
12246 MHI BUS
12247 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12248 M: Hemant Kumar <hemantk@codeaurora.org>
12249 L: linux-arm-msm@vger.kernel.org
12250 S: Maintained
12251 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12252 F: Documentation/ABI/stable/sysfs-bus-mhi
12253 F: Documentation/mhi/
12254 F: drivers/bus/mhi/
12255 F: include/linux/mhi.h
12256
12257 MICROBLAZE ARCHITECTURE
12258 M: Michal Simek <monstr@monstr.eu>
12259 S: Supported
12260 W: http://www.monstr.eu/fdt/
12261 T: git git://git.monstr.eu/linux-2.6-microblaze.git
12262 F: arch/microblaze/
12263
12264 MICROCHIP AT91 DMA DRIVERS
12265 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12266 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12267 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12268 L: dmaengine@vger.kernel.org
12269 S: Supported
12270 F: Documentation/devicetree/bindings/dma/atmel-dma.txt
12271 F: drivers/dma/at_hdmac.c
12272 F: drivers/dma/at_hdmac_regs.h
12273 F: drivers/dma/at_xdmac.c
12274 F: include/dt-bindings/dma/at91.h
12275
12276 MICROCHIP AT91 SERIAL DRIVER
12277 M: Richard Genoud <richard.genoud@gmail.com>
12278 S: Maintained
12279 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12280 F: drivers/tty/serial/atmel_serial.c
12281 F: drivers/tty/serial/atmel_serial.h
12282
12283 MICROCHIP AT91 USART MFD DRIVER
12284 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12285 L: linux-kernel@vger.kernel.org
12286 S: Supported
12287 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12288 F: drivers/mfd/at91-usart.c
12289 F: include/dt-bindings/mfd/at91-usart.h
12290
12291 MICROCHIP AT91 USART SPI DRIVER
12292 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12293 L: linux-spi@vger.kernel.org
12294 S: Supported
12295 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12296 F: drivers/spi/spi-at91-usart.c
12297
12298 MICROCHIP AUDIO ASOC DRIVERS
12299 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12300 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12301 S: Supported
12302 F: sound/soc/atmel
12303
12304 MICROCHIP ECC DRIVER
12305 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12306 L: linux-crypto@vger.kernel.org
12307 S: Maintained
12308 F: drivers/crypto/atmel-ecc.*
12309
12310 MICROCHIP I2C DRIVER
12311 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12312 L: linux-i2c@vger.kernel.org
12313 S: Supported
12314 F: drivers/i2c/busses/i2c-at91-*.c
12315 F: drivers/i2c/busses/i2c-at91.h
12316
12317 MICROCHIP ISC DRIVER
12318 M: Eugen Hristev <eugen.hristev@microchip.com>
12319 L: linux-media@vger.kernel.org
12320 S: Supported
12321 F: Documentation/devicetree/bindings/media/atmel,isc.yaml
12322 F: Documentation/devicetree/bindings/media/microchip,xisc.yaml
12323 F: drivers/media/platform/atmel/atmel-isc-base.c
12324 F: drivers/media/platform/atmel/atmel-isc-regs.h
12325 F: drivers/media/platform/atmel/atmel-isc.h
12326 F: drivers/media/platform/atmel/atmel-sama5d2-isc.c
12327 F: drivers/media/platform/atmel/atmel-sama7g5-isc.c
12328 F: include/linux/atmel-isc-media.h
12329
12330 MICROCHIP ISI DRIVER
12331 M: Eugen Hristev <eugen.hristev@microchip.com>
12332 L: linux-media@vger.kernel.org
12333 S: Supported
12334 F: drivers/media/platform/atmel/atmel-isi.c
12335 F: drivers/media/platform/atmel/atmel-isi.h
12336
12337 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12338 M: Woojung Huh <woojung.huh@microchip.com>
12339 M: UNGLinuxDriver@microchip.com
12340 L: netdev@vger.kernel.org
12341 S: Maintained
12342 F: Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12343 F: drivers/net/dsa/microchip/*
12344 F: include/linux/platform_data/microchip-ksz.h
12345 F: net/dsa/tag_ksz.c
12346
12347 MICROCHIP LAN743X ETHERNET DRIVER
12348 M: Bryan Whitehead <bryan.whitehead@microchip.com>
12349 M: UNGLinuxDriver@microchip.com
12350 L: netdev@vger.kernel.org
12351 S: Maintained
12352 F: drivers/net/ethernet/microchip/lan743x_*
12353
12354 MICROCHIP LCDFB DRIVER
12355 M: Nicolas Ferre <nicolas.ferre@microchip.com>
12356 L: linux-fbdev@vger.kernel.org
12357 S: Maintained
12358 F: drivers/video/fbdev/atmel_lcdfb.c
12359 F: include/video/atmel_lcdc.h
12360
12361 MICROCHIP MCP16502 PMIC DRIVER
12362 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12363 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12364 S: Supported
12365 F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12366 F: drivers/regulator/mcp16502.c
12367
12368 MICROCHIP MCP3911 ADC DRIVER
12369 M: Marcus Folkesson <marcus.folkesson@gmail.com>
12370 M: Kent Gustavsson <kent@minoris.se>
12371 L: linux-iio@vger.kernel.org
12372 S: Supported
12373 F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12374 F: drivers/iio/adc/mcp3911.c
12375
12376 MICROCHIP MMC/SD/SDIO MCI DRIVER
12377 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12378 S: Maintained
12379 F: drivers/mmc/host/atmel-mci.c
12380
12381 MICROCHIP NAND DRIVER
12382 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12383 L: linux-mtd@lists.infradead.org
12384 S: Supported
12385 F: Documentation/devicetree/bindings/mtd/atmel-nand.txt
12386 F: drivers/mtd/nand/raw/atmel/*
12387
12388 MICROCHIP PWM DRIVER
12389 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12390 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12391 L: linux-pwm@vger.kernel.org
12392 S: Supported
12393 F: Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12394 F: drivers/pwm/pwm-atmel.c
12395
12396 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12397 M: Eugen Hristev <eugen.hristev@microchip.com>
12398 L: linux-iio@vger.kernel.org
12399 S: Supported
12400 F: Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12401 F: drivers/iio/adc/at91-sama5d2_adc.c
12402 F: include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12403
12404 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12405 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12406 S: Supported
12407 F: drivers/power/reset/at91-sama5d2_shdwc.c
12408
12409 MICROCHIP SPI DRIVER
12410 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12411 S: Supported
12412 F: drivers/spi/spi-atmel.*
12413
12414 MICROCHIP SSC DRIVER
12415 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12416 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12417 S: Supported
12418 F: drivers/misc/atmel-ssc.c
12419 F: include/linux/atmel-ssc.h
12420
12421 MICROCHIP USB251XB DRIVER
12422 M: Richard Leitner <richard.leitner@skidata.com>
12423 L: linux-usb@vger.kernel.org
12424 S: Maintained
12425 F: Documentation/devicetree/bindings/usb/usb251xb.txt
12426 F: drivers/usb/misc/usb251xb.c
12427
12428 MICROCHIP USBA UDC DRIVER
12429 M: Cristian Birsan <cristian.birsan@microchip.com>
12430 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12431 S: Supported
12432 F: drivers/usb/gadget/udc/atmel_usba_udc.*
12433
12434 MICROCHIP WILC1000 WIFI DRIVER
12435 M: Ajay Singh <ajay.kathat@microchip.com>
12436 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12437 L: linux-wireless@vger.kernel.org
12438 S: Supported
12439 F: drivers/net/wireless/microchip/wilc1000/
12440
12441 MICROSEMI MIPS SOCS
12442 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
12443 M: UNGLinuxDriver@microchip.com
12444 L: linux-mips@vger.kernel.org
12445 S: Supported
12446 F: Documentation/devicetree/bindings/mips/mscc.txt
12447 F: Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12448 F: arch/mips/boot/dts/mscc/
12449 F: arch/mips/configs/generic/board-ocelot.config
12450 F: arch/mips/generic/board-ocelot.c
12451
12452 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12453 M: Don Brace <don.brace@microchip.com>
12454 L: storagedev@microchip.com
12455 L: linux-scsi@vger.kernel.org
12456 S: Supported
12457 F: Documentation/scsi/smartpqi.rst
12458 F: drivers/scsi/smartpqi/Kconfig
12459 F: drivers/scsi/smartpqi/Makefile
12460 F: drivers/scsi/smartpqi/smartpqi*.[ch]
12461 F: include/linux/cciss*.h
12462 F: include/uapi/linux/cciss*.h
12463
12464 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12465 M: Maximilian Luz <luzmaximilian@gmail.com>
12466 L: linux-pm@vger.kernel.org
12467 L: platform-driver-x86@vger.kernel.org
12468 S: Maintained
12469 F: drivers/power/supply/surface_battery.c
12470 F: drivers/power/supply/surface_charger.c
12471
12472 MICROSOFT SURFACE DTX DRIVER
12473 M: Maximilian Luz <luzmaximilian@gmail.com>
12474 L: platform-driver-x86@vger.kernel.org
12475 S: Maintained
12476 F: Documentation/driver-api/surface_aggregator/clients/dtx.rst
12477 F: drivers/platform/surface/surface_dtx.c
12478 F: include/uapi/linux/surface_aggregator/dtx.h
12479
12480 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12481 M: Maximilian Luz <luzmaximilian@gmail.com>
12482 L: platform-driver-x86@vger.kernel.org
12483 S: Maintained
12484 F: drivers/platform/surface/surface_gpe.c
12485
12486 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12487 M: Hans de Goede <hdegoede@redhat.com>
12488 M: Mark Gross <mgross@linux.intel.com>
12489 M: Maximilian Luz <luzmaximilian@gmail.com>
12490 L: platform-driver-x86@vger.kernel.org
12491 S: Maintained
12492 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12493 F: drivers/platform/surface/
12494
12495 MICROSOFT SURFACE HID TRANSPORT DRIVER
12496 M: Maximilian Luz <luzmaximilian@gmail.com>
12497 L: linux-input@vger.kernel.org
12498 L: platform-driver-x86@vger.kernel.org
12499 S: Maintained
12500 F: drivers/hid/surface-hid/
12501
12502 MICROSOFT SURFACE HOT-PLUG DRIVER
12503 M: Maximilian Luz <luzmaximilian@gmail.com>
12504 L: platform-driver-x86@vger.kernel.org
12505 S: Maintained
12506 F: drivers/platform/surface/surface_hotplug.c
12507
12508 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12509 M: Maximilian Luz <luzmaximilian@gmail.com>
12510 L: platform-driver-x86@vger.kernel.org
12511 S: Maintained
12512 F: drivers/platform/surface/surface_platform_profile.c
12513
12514 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12515 M: Chen Yu <yu.c.chen@intel.com>
12516 L: platform-driver-x86@vger.kernel.org
12517 S: Supported
12518 F: drivers/platform/surface/surfacepro3_button.c
12519
12520 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12521 M: Maximilian Luz <luzmaximilian@gmail.com>
12522 L: platform-driver-x86@vger.kernel.org
12523 S: Maintained
12524 W: https://github.com/linux-surface/surface-aggregator-module
12525 C: irc://irc.libera.chat/linux-surface
12526 F: Documentation/driver-api/surface_aggregator/
12527 F: drivers/platform/surface/aggregator/
12528 F: drivers/platform/surface/surface_acpi_notify.c
12529 F: drivers/platform/surface/surface_aggregator_cdev.c
12530 F: drivers/platform/surface/surface_aggregator_registry.c
12531 F: include/linux/surface_acpi_notify.h
12532 F: include/linux/surface_aggregator/
12533 F: include/uapi/linux/surface_aggregator/
12534
12535 MICROTEK X6 SCANNER
12536 M: Oliver Neukum <oliver@neukum.org>
12537 S: Maintained
12538 F: drivers/usb/image/microtek.*
12539
12540 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12541 M: Luka Kovacic <luka.kovacic@sartura.hr>
12542 M: Luka Perkov <luka.perkov@sartura.hr>
12543 S: Maintained
12544 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12545 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12546 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12547 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12548 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12549 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12550
12551 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12552 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12553 L: linux-media@vger.kernel.org
12554 S: Maintained
12555 F: Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12556 F: Documentation/driver-api/media/drivers/ccs/
12557 F: Documentation/userspace-api/media/drivers/ccs.rst
12558 F: drivers/media/i2c/ccs-pll.c
12559 F: drivers/media/i2c/ccs-pll.h
12560 F: drivers/media/i2c/ccs/
12561 F: include/uapi/linux/ccs.h
12562 F: include/uapi/linux/smiapp.h
12563
12564 MIPS
12565 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12566 L: linux-mips@vger.kernel.org
12567 S: Maintained
12568 W: http://www.linux-mips.org/
12569 Q: https://patchwork.kernel.org/project/linux-mips/list/
12570 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12571 F: Documentation/devicetree/bindings/mips/
12572 F: Documentation/mips/
12573 F: arch/mips/
12574 F: drivers/platform/mips/
12575
12576 MIPS BOSTON DEVELOPMENT BOARD
12577 M: Paul Burton <paulburton@kernel.org>
12578 L: linux-mips@vger.kernel.org
12579 S: Maintained
12580 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
12581 F: arch/mips/boot/dts/img/boston.dts
12582 F: arch/mips/configs/generic/board-boston.config
12583 F: drivers/clk/imgtec/clk-boston.c
12584 F: include/dt-bindings/clock/boston-clock.h
12585
12586 MIPS CORE DRIVERS
12587 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12588 M: Serge Semin <fancer.lancer@gmail.com>
12589 L: linux-mips@vger.kernel.org
12590 S: Supported
12591 F: drivers/bus/mips_cdmm.c
12592 F: drivers/clocksource/mips-gic-timer.c
12593 F: drivers/cpuidle/cpuidle-cps.c
12594 F: drivers/irqchip/irq-mips-cpu.c
12595 F: drivers/irqchip/irq-mips-gic.c
12596
12597 MIPS GENERIC PLATFORM
12598 M: Paul Burton <paulburton@kernel.org>
12599 L: linux-mips@vger.kernel.org
12600 S: Supported
12601 F: Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12602 F: arch/mips/generic/
12603 F: arch/mips/tools/generic-board-config.sh
12604
12605 MIPS RINT INSTRUCTION EMULATION
12606 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
12607 L: linux-mips@vger.kernel.org
12608 S: Supported
12609 F: arch/mips/math-emu/dp_rint.c
12610 F: arch/mips/math-emu/sp_rint.c
12611
12612 MIPS/LOONGSON1 ARCHITECTURE
12613 M: Keguang Zhang <keguang.zhang@gmail.com>
12614 L: linux-mips@vger.kernel.org
12615 S: Maintained
12616 F: arch/mips/include/asm/mach-loongson32/
12617 F: arch/mips/loongson32/
12618 F: drivers/*/*/*loongson1*
12619 F: drivers/*/*loongson1*
12620
12621 MIPS/LOONGSON2EF ARCHITECTURE
12622 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12623 L: linux-mips@vger.kernel.org
12624 S: Maintained
12625 F: arch/mips/include/asm/mach-loongson2ef/
12626 F: arch/mips/loongson2ef/
12627 F: drivers/cpufreq/loongson2_cpufreq.c
12628
12629 MIPS/LOONGSON64 ARCHITECTURE
12630 M: Huacai Chen <chenhuacai@kernel.org>
12631 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12632 L: linux-mips@vger.kernel.org
12633 S: Maintained
12634 F: arch/mips/include/asm/mach-loongson64/
12635 F: arch/mips/loongson64/
12636 F: drivers/irqchip/irq-loongson*
12637 F: drivers/platform/mips/cpu_hwmon.c
12638
12639 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12640 M: Hans Verkuil <hverkuil@xs4all.nl>
12641 L: linux-media@vger.kernel.org
12642 S: Odd Fixes
12643 W: https://linuxtv.org
12644 T: git git://linuxtv.org/media_tree.git
12645 F: drivers/media/radio/radio-miropcm20*
12646
12647 MMP SUPPORT
12648 R: Lubomir Rintel <lkundrak@v3.sk>
12649 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12650 S: Odd Fixes
12651 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12652 F: arch/arm/boot/dts/mmp*
12653 F: arch/arm/mach-mmp/
12654 F: include/linux/soc/mmp/
12655
12656 MMP USB PHY DRIVERS
12657 R: Lubomir Rintel <lkundrak@v3.sk>
12658 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12659 S: Maintained
12660 F: drivers/phy/marvell/phy-mmp3-usb.c
12661 F: drivers/phy/marvell/phy-pxa-usb.c
12662
12663 MMU GATHER AND TLB INVALIDATION
12664 M: Will Deacon <will@kernel.org>
12665 M: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12666 M: Andrew Morton <akpm@linux-foundation.org>
12667 M: Nick Piggin <npiggin@gmail.com>
12668 M: Peter Zijlstra <peterz@infradead.org>
12669 L: linux-arch@vger.kernel.org
12670 L: linux-mm@kvack.org
12671 S: Maintained
12672 F: arch/*/include/asm/tlb.h
12673 F: include/asm-generic/tlb.h
12674 F: mm/mmu_gather.c
12675
12676 MN88472 MEDIA DRIVER
12677 M: Antti Palosaari <crope@iki.fi>
12678 L: linux-media@vger.kernel.org
12679 S: Maintained
12680 W: https://linuxtv.org
12681 W: http://palosaari.fi/linux/
12682 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12683 F: drivers/media/dvb-frontends/mn88472*
12684
12685 MN88473 MEDIA DRIVER
12686 M: Antti Palosaari <crope@iki.fi>
12687 L: linux-media@vger.kernel.org
12688 S: Maintained
12689 W: https://linuxtv.org
12690 W: http://palosaari.fi/linux/
12691 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12692 F: drivers/media/dvb-frontends/mn88473*
12693
12694 MODULE SUPPORT
12695 M: Luis Chamberlain <mcgrof@kernel.org>
12696 M: Jessica Yu <jeyu@kernel.org>
12697 S: Maintained
12698 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12699 F: include/linux/module.h
12700 F: kernel/module.c
12701
12702 MONOLITHIC POWER SYSTEM PMIC DRIVER
12703 M: Saravanan Sekar <sravanhome@gmail.com>
12704 S: Maintained
12705 F: Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12706 F: Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12707 F: drivers/iio/adc/mp2629_adc.c
12708 F: drivers/mfd/mp2629.c
12709 F: drivers/power/supply/mp2629_charger.c
12710 F: drivers/regulator/mp5416.c
12711 F: drivers/regulator/mpq7920.c
12712 F: drivers/regulator/mpq7920.h
12713 F: include/linux/mfd/mp2629.h
12714
12715 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12716 S: Orphan
12717 W: http://popies.net/meye/
12718 F: Documentation/userspace-api/media/drivers/meye*
12719 F: drivers/media/pci/meye/
12720 F: include/uapi/linux/meye.h
12721
12722 MOTORCOMM PHY DRIVER
12723 M: Peter Geis <pgwipeout@gmail.com>
12724 L: netdev@vger.kernel.org
12725 S: Maintained
12726 F: drivers/net/phy/motorcomm.c
12727
12728 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12729 M: Jiri Slaby <jirislaby@kernel.org>
12730 S: Maintained
12731 F: Documentation/driver-api/serial/moxa-smartio.rst
12732 F: drivers/tty/mxser.*
12733
12734 MR800 AVERMEDIA USB FM RADIO DRIVER
12735 M: Alexey Klimov <klimov.linux@gmail.com>
12736 L: linux-media@vger.kernel.org
12737 S: Maintained
12738 T: git git://linuxtv.org/media_tree.git
12739 F: drivers/media/radio/radio-mr800.c
12740
12741 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12742 M: Alan Ott <alan@signal11.us>
12743 L: linux-wpan@vger.kernel.org
12744 S: Maintained
12745 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12746 F: drivers/net/ieee802154/mrf24j40.c
12747
12748 MSI LAPTOP SUPPORT
12749 M: "Lee, Chun-Yi" <jlee@suse.com>
12750 L: platform-driver-x86@vger.kernel.org
12751 S: Maintained
12752 F: drivers/platform/x86/msi-laptop.c
12753
12754 MSI WMI SUPPORT
12755 L: platform-driver-x86@vger.kernel.org
12756 S: Orphan
12757 F: drivers/platform/x86/msi-wmi.c
12758
12759 MSI001 MEDIA DRIVER
12760 M: Antti Palosaari <crope@iki.fi>
12761 L: linux-media@vger.kernel.org
12762 S: Maintained
12763 W: https://linuxtv.org
12764 W: http://palosaari.fi/linux/
12765 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12766 T: git git://linuxtv.org/anttip/media_tree.git
12767 F: drivers/media/tuners/msi001*
12768
12769 MSI2500 MEDIA DRIVER
12770 M: Antti Palosaari <crope@iki.fi>
12771 L: linux-media@vger.kernel.org
12772 S: Maintained
12773 W: https://linuxtv.org
12774 W: http://palosaari.fi/linux/
12775 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12776 T: git git://linuxtv.org/anttip/media_tree.git
12777 F: drivers/media/usb/msi2500/
12778
12779 MSTAR INTERRUPT CONTROLLER DRIVER
12780 M: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12781 M: Daniel Palmer <daniel@thingy.jp>
12782 S: Maintained
12783 F: Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12784 F: drivers/irqchip/irq-mst-intc.c
12785
12786 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12787 M: Robert Jarzmik <robert.jarzmik@free.fr>
12788 L: linux-mtd@lists.infradead.org
12789 S: Maintained
12790 F: drivers/mtd/devices/docg3*
12791
12792 MT9M032 APTINA SENSOR DRIVER
12793 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12794 L: linux-media@vger.kernel.org
12795 S: Maintained
12796 T: git git://linuxtv.org/media_tree.git
12797 F: drivers/media/i2c/mt9m032.c
12798 F: include/media/i2c/mt9m032.h
12799
12800 MT9P031 APTINA CAMERA SENSOR
12801 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12802 L: linux-media@vger.kernel.org
12803 S: Maintained
12804 T: git git://linuxtv.org/media_tree.git
12805 F: drivers/media/i2c/mt9p031.c
12806 F: include/media/i2c/mt9p031.h
12807
12808 MT9T001 APTINA CAMERA SENSOR
12809 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12810 L: linux-media@vger.kernel.org
12811 S: Maintained
12812 T: git git://linuxtv.org/media_tree.git
12813 F: drivers/media/i2c/mt9t001.c
12814 F: include/media/i2c/mt9t001.h
12815
12816 MT9T112 APTINA CAMERA SENSOR
12817 M: Jacopo Mondi <jacopo@jmondi.org>
12818 L: linux-media@vger.kernel.org
12819 S: Odd Fixes
12820 T: git git://linuxtv.org/media_tree.git
12821 F: drivers/media/i2c/mt9t112.c
12822 F: include/media/i2c/mt9t112.h
12823
12824 MT9V032 APTINA CAMERA SENSOR
12825 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12826 L: linux-media@vger.kernel.org
12827 S: Maintained
12828 T: git git://linuxtv.org/media_tree.git
12829 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12830 F: drivers/media/i2c/mt9v032.c
12831 F: include/media/i2c/mt9v032.h
12832
12833 MT9V111 APTINA CAMERA SENSOR
12834 M: Jacopo Mondi <jacopo@jmondi.org>
12835 L: linux-media@vger.kernel.org
12836 S: Maintained
12837 T: git git://linuxtv.org/media_tree.git
12838 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12839 F: drivers/media/i2c/mt9v111.c
12840
12841 MULTIFUNCTION DEVICES (MFD)
12842 M: Lee Jones <lee.jones@linaro.org>
12843 S: Supported
12844 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12845 F: Documentation/devicetree/bindings/mfd/
12846 F: drivers/mfd/
12847 F: include/dt-bindings/mfd/
12848 F: include/linux/mfd/
12849
12850 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12851 S: Orphan
12852 F: drivers/mmc/host/mmc_spi.c
12853 F: include/linux/spi/mmc_spi.h
12854
12855 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12856 M: Ulf Hansson <ulf.hansson@linaro.org>
12857 L: linux-mmc@vger.kernel.org
12858 S: Maintained
12859 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12860 F: Documentation/devicetree/bindings/mmc/
12861 F: drivers/mmc/
12862 F: include/linux/mmc/
12863 F: include/uapi/linux/mmc/
12864
12865 MULTIPLEXER SUBSYSTEM
12866 M: Peter Rosin <peda@axentia.se>
12867 S: Maintained
12868 F: Documentation/ABI/testing/sysfs-class-mux*
12869 F: Documentation/devicetree/bindings/mux/
12870 F: drivers/mux/
12871 F: include/dt-bindings/mux/
12872 F: include/linux/mux/
12873
12874 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12875 M: Bin Liu <b-liu@ti.com>
12876 L: linux-usb@vger.kernel.org
12877 S: Maintained
12878 F: drivers/usb/musb/
12879
12880 MXL301RF MEDIA DRIVER
12881 M: Akihiro Tsukada <tskd08@gmail.com>
12882 L: linux-media@vger.kernel.org
12883 S: Odd Fixes
12884 F: drivers/media/tuners/mxl301rf*
12885
12886 MXL5007T MEDIA DRIVER
12887 M: Michael Krufky <mkrufky@linuxtv.org>
12888 L: linux-media@vger.kernel.org
12889 S: Maintained
12890 W: https://linuxtv.org
12891 W: http://github.com/mkrufky
12892 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12893 T: git git://linuxtv.org/mkrufky/tuners.git
12894 F: drivers/media/tuners/mxl5007t.*
12895
12896 MXSFB DRM DRIVER
12897 M: Marek Vasut <marex@denx.de>
12898 M: Stefan Agner <stefan@agner.ch>
12899 L: dri-devel@lists.freedesktop.org
12900 S: Supported
12901 T: git git://anongit.freedesktop.org/drm/drm-misc
12902 F: Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12903 F: drivers/gpu/drm/mxsfb/
12904
12905 MYLEX DAC960 PCI RAID Controller
12906 M: Hannes Reinecke <hare@kernel.org>
12907 L: linux-scsi@vger.kernel.org
12908 S: Supported
12909 F: drivers/scsi/myrb.*
12910 F: drivers/scsi/myrs.*
12911
12912 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12913 M: Chris Lee <christopher.lee@cspi.com>
12914 L: netdev@vger.kernel.org
12915 S: Supported
12916 W: https://www.cspi.com/ethernet-products/support/downloads/
12917 F: drivers/net/ethernet/myricom/myri10ge/
12918
12919 NAND FLASH SUBSYSTEM
12920 M: Miquel Raynal <miquel.raynal@bootlin.com>
12921 R: Richard Weinberger <richard@nod.at>
12922 L: linux-mtd@lists.infradead.org
12923 S: Maintained
12924 W: http://www.linux-mtd.infradead.org/
12925 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12926 C: irc://irc.oftc.net/mtd
12927 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12928 F: drivers/mtd/nand/
12929 F: include/linux/mtd/*nand*.h
12930
12931 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12932 M: Daniel Mack <zonque@gmail.com>
12933 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12934 S: Maintained
12935 W: http://www.native-instruments.com
12936 F: sound/usb/caiaq/
12937
12938 NATSEMI ETHERNET DRIVER (DP8381x)
12939 S: Orphan
12940 F: drivers/net/ethernet/natsemi/natsemi.c
12941
12942 NCR 5380 SCSI DRIVERS
12943 M: Finn Thain <fthain@linux-m68k.org>
12944 M: Michael Schmitz <schmitzmic@gmail.com>
12945 L: linux-scsi@vger.kernel.org
12946 S: Maintained
12947 F: Documentation/scsi/g_NCR5380.rst
12948 F: drivers/scsi/NCR5380.*
12949 F: drivers/scsi/arm/cumana_1.c
12950 F: drivers/scsi/arm/oak.c
12951 F: drivers/scsi/atari_scsi.*
12952 F: drivers/scsi/dmx3191d.c
12953 F: drivers/scsi/g_NCR5380.*
12954 F: drivers/scsi/mac_scsi.*
12955 F: drivers/scsi/sun3_scsi.*
12956 F: drivers/scsi/sun3_scsi_vme.c
12957
12958 NCSI LIBRARY
12959 M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
12960 S: Maintained
12961 F: net/ncsi/
12962
12963 NCT6775 HARDWARE MONITOR DRIVER
12964 M: Guenter Roeck <linux@roeck-us.net>
12965 L: linux-hwmon@vger.kernel.org
12966 S: Maintained
12967 F: Documentation/hwmon/nct6775.rst
12968 F: drivers/hwmon/nct6775.c
12969
12970 NETDEVSIM
12971 M: Jakub Kicinski <kuba@kernel.org>
12972 S: Maintained
12973 F: drivers/net/netdevsim/*
12974
12975 NETEM NETWORK EMULATOR
12976 M: Stephen Hemminger <stephen@networkplumber.org>
12977 L: netdev@vger.kernel.org
12978 S: Maintained
12979 F: net/sched/sch_netem.c
12980
12981 NETERION 10GbE DRIVERS (s2io/vxge)
12982 M: Jon Mason <jdmason@kudzu.us>
12983 L: netdev@vger.kernel.org
12984 S: Supported
12985 F: Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12986 F: Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12987 F: drivers/net/ethernet/neterion/
12988
12989 NETFILTER
12990 M: Pablo Neira Ayuso <pablo@netfilter.org>
12991 M: Jozsef Kadlecsik <kadlec@netfilter.org>
12992 M: Florian Westphal <fw@strlen.de>
12993 L: netfilter-devel@vger.kernel.org
12994 L: coreteam@netfilter.org
12995 S: Maintained
12996 W: http://www.netfilter.org/
12997 W: http://www.iptables.org/
12998 W: http://www.nftables.org/
12999 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
13000 C: irc://irc.libera.chat/netfilter
13001 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13002 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13003 F: include/linux/netfilter*
13004 F: include/linux/netfilter/
13005 F: include/net/netfilter/
13006 F: include/uapi/linux/netfilter*
13007 F: include/uapi/linux/netfilter/
13008 F: net/*/netfilter.c
13009 F: net/*/netfilter/
13010 F: net/bridge/br_netfilter*.c
13011 F: net/netfilter/
13012
13013 NETROM NETWORK LAYER
13014 M: Ralf Baechle <ralf@linux-mips.org>
13015 L: linux-hams@vger.kernel.org
13016 S: Maintained
13017 W: http://www.linux-ax25.org/
13018 F: include/net/netrom.h
13019 F: include/uapi/linux/netrom.h
13020 F: net/netrom/
13021
13022 NETRONIX EMBEDDED CONTROLLER
13023 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13024 S: Maintained
13025 F: Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13026 F: drivers/mfd/ntxec.c
13027 F: drivers/pwm/pwm-ntxec.c
13028 F: drivers/rtc/rtc-ntxec.c
13029 F: include/linux/mfd/ntxec.h
13030
13031 NETRONOME ETHERNET DRIVERS
13032 M: Simon Horman <simon.horman@corigine.com>
13033 R: Jakub Kicinski <kuba@kernel.org>
13034 L: oss-drivers@corigine.com
13035 S: Maintained
13036 F: drivers/net/ethernet/netronome/
13037
13038 NETWORK BLOCK DEVICE (NBD)
13039 M: Josef Bacik <josef@toxicpanda.com>
13040 L: linux-block@vger.kernel.org
13041 L: nbd@other.debian.org
13042 S: Maintained
13043 F: Documentation/admin-guide/blockdev/nbd.rst
13044 F: drivers/block/nbd.c
13045 F: include/trace/events/nbd.h
13046 F: include/uapi/linux/nbd.h
13047
13048 NETWORK DROP MONITOR
13049 M: Neil Horman <nhorman@tuxdriver.com>
13050 L: netdev@vger.kernel.org
13051 S: Maintained
13052 W: https://fedorahosted.org/dropwatch/
13053 F: include/uapi/linux/net_dropmon.h
13054 F: net/core/drop_monitor.c
13055
13056 NETWORKING DRIVERS
13057 M: "David S. Miller" <davem@davemloft.net>
13058 M: Jakub Kicinski <kuba@kernel.org>
13059 L: netdev@vger.kernel.org
13060 S: Maintained
13061 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13062 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13063 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13064 F: Documentation/devicetree/bindings/net/
13065 F: drivers/connector/
13066 F: drivers/net/
13067 F: include/linux/etherdevice.h
13068 F: include/linux/fcdevice.h
13069 F: include/linux/fddidevice.h
13070 F: include/linux/hippidevice.h
13071 F: include/linux/if_*
13072 F: include/linux/inetdevice.h
13073 F: include/linux/netdevice.h
13074 F: include/uapi/linux/if_*
13075 F: include/uapi/linux/netdevice.h
13076
13077 NETWORKING DRIVERS (WIRELESS)
13078 M: Kalle Valo <kvalo@codeaurora.org>
13079 L: linux-wireless@vger.kernel.org
13080 S: Maintained
13081 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13082 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13083 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13084 F: Documentation/devicetree/bindings/net/wireless/
13085 F: drivers/net/wireless/
13086
13087 NETWORKING [DSA]
13088 M: Andrew Lunn <andrew@lunn.ch>
13089 M: Vivien Didelot <vivien.didelot@gmail.com>
13090 M: Florian Fainelli <f.fainelli@gmail.com>
13091 M: Vladimir Oltean <olteanv@gmail.com>
13092 S: Maintained
13093 F: Documentation/devicetree/bindings/net/dsa/
13094 F: drivers/net/dsa/
13095 F: include/linux/dsa/
13096 F: include/linux/platform_data/dsa.h
13097 F: include/net/dsa.h
13098 F: net/dsa/
13099
13100 NETWORKING [GENERAL]
13101 M: "David S. Miller" <davem@davemloft.net>
13102 M: Jakub Kicinski <kuba@kernel.org>
13103 L: netdev@vger.kernel.org
13104 S: Maintained
13105 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13106 B: mailto:netdev@vger.kernel.org
13107 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13108 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13109 F: Documentation/networking/
13110 F: include/linux/in.h
13111 F: include/linux/net.h
13112 F: include/linux/netdevice.h
13113 F: include/net/
13114 F: include/uapi/linux/in.h
13115 F: include/uapi/linux/net.h
13116 F: include/uapi/linux/net_namespace.h
13117 F: include/uapi/linux/netdevice.h
13118 F: lib/net_utils.c
13119 F: lib/random32.c
13120 F: net/
13121 F: tools/testing/selftests/net/
13122
13123 NETWORKING [IPSEC]
13124 M: Steffen Klassert <steffen.klassert@secunet.com>
13125 M: Herbert Xu <herbert@gondor.apana.org.au>
13126 M: "David S. Miller" <davem@davemloft.net>
13127 L: netdev@vger.kernel.org
13128 S: Maintained
13129 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13130 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13131 F: include/net/xfrm.h
13132 F: include/uapi/linux/xfrm.h
13133 F: net/ipv4/ah4.c
13134 F: net/ipv4/esp4*
13135 F: net/ipv4/ip_vti.c
13136 F: net/ipv4/ipcomp.c
13137 F: net/ipv4/xfrm*
13138 F: net/ipv6/ah6.c
13139 F: net/ipv6/esp6*
13140 F: net/ipv6/ip6_vti.c
13141 F: net/ipv6/ipcomp6.c
13142 F: net/ipv6/xfrm*
13143 F: net/key/
13144 F: net/xfrm/
13145 F: tools/testing/selftests/net/ipsec.c
13146
13147 NETWORKING [IPv4/IPv6]
13148 M: "David S. Miller" <davem@davemloft.net>
13149 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13150 M: David Ahern <dsahern@kernel.org>
13151 L: netdev@vger.kernel.org
13152 S: Maintained
13153 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13154 F: arch/x86/net/*
13155 F: include/net/ip*
13156 F: net/ipv4/
13157 F: net/ipv6/
13158
13159 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13160 M: Paul Moore <paul@paul-moore.com>
13161 L: netdev@vger.kernel.org
13162 L: linux-security-module@vger.kernel.org
13163 S: Maintained
13164 W: https://github.com/netlabel
13165 F: Documentation/netlabel/
13166 F: include/net/calipso.h
13167 F: include/net/cipso_ipv4.h
13168 F: include/net/netlabel.h
13169 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
13170 F: include/uapi/linux/netfilter/xt_SECMARK.h
13171 F: net/ipv4/cipso_ipv4.c
13172 F: net/ipv6/calipso.c
13173 F: net/netfilter/xt_CONNSECMARK.c
13174 F: net/netfilter/xt_SECMARK.c
13175 F: net/netlabel/
13176
13177 NETWORKING [MPTCP]
13178 M: Mat Martineau <mathew.j.martineau@linux.intel.com>
13179 M: Matthieu Baerts <matthieu.baerts@tessares.net>
13180 L: netdev@vger.kernel.org
13181 L: mptcp@lists.linux.dev
13182 S: Maintained
13183 W: https://github.com/multipath-tcp/mptcp_net-next/wiki
13184 B: https://github.com/multipath-tcp/mptcp_net-next/issues
13185 F: Documentation/networking/mptcp-sysctl.rst
13186 F: include/net/mptcp.h
13187 F: include/trace/events/mptcp.h
13188 F: include/uapi/linux/mptcp.h
13189 F: net/mptcp/
13190 F: tools/testing/selftests/net/mptcp/
13191
13192 NETWORKING [TCP]
13193 M: Eric Dumazet <edumazet@google.com>
13194 L: netdev@vger.kernel.org
13195 S: Maintained
13196 F: include/linux/tcp.h
13197 F: include/net/tcp.h
13198 F: include/trace/events/tcp.h
13199 F: include/uapi/linux/tcp.h
13200 F: net/ipv4/syncookies.c
13201 F: net/ipv4/tcp*.c
13202 F: net/ipv6/syncookies.c
13203 F: net/ipv6/tcp*.c
13204
13205 NETWORKING [TLS]
13206 M: Boris Pismenny <borisp@nvidia.com>
13207 M: John Fastabend <john.fastabend@gmail.com>
13208 M: Daniel Borkmann <daniel@iogearbox.net>
13209 M: Jakub Kicinski <kuba@kernel.org>
13210 L: netdev@vger.kernel.org
13211 S: Maintained
13212 F: include/net/tls.h
13213 F: include/uapi/linux/tls.h
13214 F: net/tls/*
13215
13216 NETWORKING [WIRELESS]
13217 L: linux-wireless@vger.kernel.org
13218 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13219
13220 NETXEN (1/10) GbE SUPPORT
13221 M: Manish Chopra <manishc@marvell.com>
13222 M: Rahul Verma <rahulv@marvell.com>
13223 M: GR-Linux-NIC-Dev@marvell.com
13224 L: netdev@vger.kernel.org
13225 S: Supported
13226 F: drivers/net/ethernet/qlogic/netxen/
13227
13228 NET_FAILOVER MODULE
13229 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
13230 L: netdev@vger.kernel.org
13231 S: Supported
13232 F: Documentation/networking/net_failover.rst
13233 F: drivers/net/net_failover.c
13234 F: include/net/net_failover.h
13235
13236 NEXTHOP
13237 M: David Ahern <dsahern@kernel.org>
13238 L: netdev@vger.kernel.org
13239 S: Maintained
13240 F: include/net/netns/nexthop.h
13241 F: include/net/nexthop.h
13242 F: include/uapi/linux/nexthop.h
13243 F: net/ipv4/nexthop.c
13244
13245 NFC SUBSYSTEM
13246 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13247 L: linux-nfc@lists.01.org (subscribers-only)
13248 L: netdev@vger.kernel.org
13249 S: Maintained
13250 F: Documentation/devicetree/bindings/net/nfc/
13251 F: drivers/nfc/
13252 F: include/linux/platform_data/nfcmrvl.h
13253 F: include/net/nfc/
13254 F: include/uapi/linux/nfc.h
13255 F: net/nfc/
13256
13257 NFC VIRTUAL NCI DEVICE DRIVER
13258 M: Bongsu Jeon <bongsu.jeon@samsung.com>
13259 L: netdev@vger.kernel.org
13260 L: linux-nfc@lists.01.org (subscribers-only)
13261 S: Supported
13262 F: drivers/nfc/virtual_ncidev.c
13263 F: tools/testing/selftests/nci/
13264
13265 NFS, SUNRPC, AND LOCKD CLIENTS
13266 M: Trond Myklebust <trond.myklebust@hammerspace.com>
13267 M: Anna Schumaker <anna.schumaker@netapp.com>
13268 L: linux-nfs@vger.kernel.org
13269 S: Maintained
13270 W: http://client.linux-nfs.org
13271 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13272 F: fs/lockd/
13273 F: fs/nfs/
13274 F: fs/nfs_common/
13275 F: include/linux/lockd/
13276 F: include/linux/nfs*
13277 F: include/linux/sunrpc/
13278 F: include/uapi/linux/nfs*
13279 F: include/uapi/linux/sunrpc/
13280 F: net/sunrpc/
13281 F: Documentation/filesystems/nfs/
13282
13283 NILFS2 FILESYSTEM
13284 M: Ryusuke Konishi <konishi.ryusuke@gmail.com>
13285 L: linux-nilfs@vger.kernel.org
13286 S: Supported
13287 W: https://nilfs.sourceforge.io/
13288 W: https://nilfs.osdn.jp/
13289 T: git git://github.com/konis/nilfs2.git
13290 F: Documentation/filesystems/nilfs2.rst
13291 F: fs/nilfs2/
13292 F: include/trace/events/nilfs2.h
13293 F: include/uapi/linux/nilfs2_api.h
13294 F: include/uapi/linux/nilfs2_ondisk.h
13295
13296 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13297 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13298 S: Maintained
13299 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13300 F: Documentation/scsi/NinjaSCSI.rst
13301 F: drivers/scsi/pcmcia/nsp_*
13302
13303 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13304 M: GOTO Masanori <gotom@debian.or.jp>
13305 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13306 S: Maintained
13307 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13308 F: Documentation/scsi/NinjaSCSI.rst
13309 F: drivers/scsi/nsp32*
13310
13311 NIOS2 ARCHITECTURE
13312 M: Dinh Nguyen <dinguyen@kernel.org>
13313 S: Maintained
13314 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13315 F: arch/nios2/
13316
13317 NITRO ENCLAVES (NE)
13318 M: Andra Paraschiv <andraprs@amazon.com>
13319 M: Alexandru Vasile <lexnv@amazon.com>
13320 M: Alexandru Ciobotaru <alcioa@amazon.com>
13321 L: linux-kernel@vger.kernel.org
13322 S: Supported
13323 W: https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13324 F: Documentation/virt/ne_overview.rst
13325 F: drivers/virt/nitro_enclaves/
13326 F: include/linux/nitro_enclaves.h
13327 F: include/uapi/linux/nitro_enclaves.h
13328 F: samples/nitro_enclaves/
13329
13330 NOHZ, DYNTICKS SUPPORT
13331 M: Frederic Weisbecker <fweisbec@gmail.com>
13332 M: Thomas Gleixner <tglx@linutronix.de>
13333 M: Ingo Molnar <mingo@kernel.org>
13334 L: linux-kernel@vger.kernel.org
13335 S: Maintained
13336 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13337 F: include/linux/sched/nohz.h
13338 F: include/linux/tick.h
13339 F: kernel/time/tick*.*
13340
13341 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13342 M: Pavel Machek <pavel@ucw.cz>
13343 M: Sakari Ailus <sakari.ailus@iki.fi>
13344 L: linux-media@vger.kernel.org
13345 S: Maintained
13346 F: drivers/media/i2c/ad5820.c
13347 F: drivers/media/i2c/et8ek8
13348
13349 NOKIA N900 POWER SUPPLY DRIVERS
13350 R: Pali Rohár <pali@kernel.org>
13351 F: drivers/power/supply/bq2415x_charger.c
13352 F: drivers/power/supply/bq27xxx_battery.c
13353 F: drivers/power/supply/bq27xxx_battery_i2c.c
13354 F: drivers/power/supply/isp1704_charger.c
13355 F: drivers/power/supply/rx51_battery.c
13356 F: include/linux/power/bq2415x_charger.h
13357 F: include/linux/power/bq27xxx_battery.h
13358
13359 NOLIBC HEADER FILE
13360 M: Willy Tarreau <w@1wt.eu>
13361 S: Maintained
13362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13363 F: tools/include/nolibc/
13364
13365 NSDEPS
13366 M: Matthias Maennich <maennich@google.com>
13367 S: Maintained
13368 F: Documentation/core-api/symbol-namespaces.rst
13369 F: scripts/nsdeps
13370
13371 NTB AMD DRIVER
13372 M: Sanjay R Mehta <sanju.mehta@amd.com>
13373 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13374 L: linux-ntb@googlegroups.com
13375 S: Supported
13376 F: drivers/ntb/hw/amd/
13377
13378 NTB DRIVER CORE
13379 M: Jon Mason <jdmason@kudzu.us>
13380 M: Dave Jiang <dave.jiang@intel.com>
13381 M: Allen Hubbe <allenbh@gmail.com>
13382 L: linux-ntb@googlegroups.com
13383 S: Supported
13384 W: https://github.com/jonmason/ntb/wiki
13385 T: git git://github.com/jonmason/ntb.git
13386 F: drivers/net/ntb_netdev.c
13387 F: drivers/ntb/
13388 F: include/linux/ntb.h
13389 F: include/linux/ntb_transport.h
13390 F: tools/testing/selftests/ntb/
13391
13392 NTB IDT DRIVER
13393 M: Serge Semin <fancer.lancer@gmail.com>
13394 L: linux-ntb@googlegroups.com
13395 S: Supported
13396 F: drivers/ntb/hw/idt/
13397
13398 NTB INTEL DRIVER
13399 M: Dave Jiang <dave.jiang@intel.com>
13400 L: linux-ntb@googlegroups.com
13401 S: Supported
13402 W: https://github.com/davejiang/linux/wiki
13403 T: git https://github.com/davejiang/linux.git
13404 F: drivers/ntb/hw/intel/
13405
13406 NTFS FILESYSTEM
13407 M: Anton Altaparmakov <anton@tuxera.com>
13408 L: linux-ntfs-dev@lists.sourceforge.net
13409 S: Supported
13410 W: http://www.tuxera.com/
13411 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13412 F: Documentation/filesystems/ntfs.rst
13413 F: fs/ntfs/
13414
13415 NTFS3 FILESYSTEM
13416 M: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13417 L: ntfs3@lists.linux.dev
13418 S: Supported
13419 W: http://www.paragon-software.com/
13420 T: git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13421 F: Documentation/filesystems/ntfs3.rst
13422 F: fs/ntfs3/
13423
13424 NUBUS SUBSYSTEM
13425 M: Finn Thain <fthain@linux-m68k.org>
13426 L: linux-m68k@lists.linux-m68k.org
13427 S: Maintained
13428 F: arch/*/include/asm/nubus.h
13429 F: drivers/nubus/
13430 F: include/linux/nubus.h
13431 F: include/uapi/linux/nubus.h
13432
13433 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13434 M: Antonino Daplas <adaplas@gmail.com>
13435 L: linux-fbdev@vger.kernel.org
13436 S: Maintained
13437 F: drivers/video/fbdev/nvidia/
13438 F: drivers/video/fbdev/riva/
13439
13440 NVIDIA WMI EC BACKLIGHT DRIVER
13441 M: Daniel Dadap <ddadap@nvidia.com>
13442 L: platform-driver-x86@vger.kernel.org
13443 S: Supported
13444 F: drivers/platform/x86/nvidia-wmi-ec-backlight.c
13445
13446 NVM EXPRESS DRIVER
13447 M: Keith Busch <kbusch@kernel.org>
13448 M: Jens Axboe <axboe@fb.com>
13449 M: Christoph Hellwig <hch@lst.de>
13450 M: Sagi Grimberg <sagi@grimberg.me>
13451 L: linux-nvme@lists.infradead.org
13452 S: Supported
13453 W: http://git.infradead.org/nvme.git
13454 T: git://git.infradead.org/nvme.git
13455 F: drivers/nvme/host/
13456 F: include/linux/nvme.h
13457 F: include/uapi/linux/nvme_ioctl.h
13458
13459 NVM EXPRESS FC TRANSPORT DRIVERS
13460 M: James Smart <james.smart@broadcom.com>
13461 L: linux-nvme@lists.infradead.org
13462 S: Supported
13463 F: drivers/nvme/host/fc.c
13464 F: drivers/nvme/target/fc.c
13465 F: drivers/nvme/target/fcloop.c
13466 F: include/linux/nvme-fc-driver.h
13467 F: include/linux/nvme-fc.h
13468
13469 NVM EXPRESS TARGET DRIVER
13470 M: Christoph Hellwig <hch@lst.de>
13471 M: Sagi Grimberg <sagi@grimberg.me>
13472 M: Chaitanya Kulkarni <kch@nvidia.com>
13473 L: linux-nvme@lists.infradead.org
13474 S: Supported
13475 W: http://git.infradead.org/nvme.git
13476 T: git://git.infradead.org/nvme.git
13477 F: drivers/nvme/target/
13478
13479 NVMEM FRAMEWORK
13480 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13481 S: Maintained
13482 T: git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13483 F: Documentation/ABI/stable/sysfs-bus-nvmem
13484 F: Documentation/devicetree/bindings/nvmem/
13485 F: drivers/nvmem/
13486 F: include/linux/nvmem-consumer.h
13487 F: include/linux/nvmem-provider.h
13488
13489 NXP C45 TJA11XX PHY DRIVER
13490 M: Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13491 L: netdev@vger.kernel.org
13492 S: Maintained
13493 F: drivers/net/phy/nxp-c45-tja11xx.c
13494
13495 NXP FSPI DRIVER
13496 M: Ashish Kumar <ashish.kumar@nxp.com>
13497 R: Yogesh Gaur <yogeshgaur.83@gmail.com>
13498 L: linux-spi@vger.kernel.org
13499 S: Maintained
13500 F: Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13501 F: drivers/spi/spi-nxp-fspi.c
13502
13503 NXP FXAS21002C DRIVER
13504 M: Rui Miguel Silva <rmfrfs@gmail.com>
13505 L: linux-iio@vger.kernel.org
13506 S: Maintained
13507 F: Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13508 F: drivers/iio/gyro/fxas21002c.h
13509 F: drivers/iio/gyro/fxas21002c_core.c
13510 F: drivers/iio/gyro/fxas21002c_i2c.c
13511 F: drivers/iio/gyro/fxas21002c_spi.c
13512
13513 NXP i.MX CLOCK DRIVERS
13514 M: Abel Vesa <abel.vesa@nxp.com>
13515 L: linux-clk@vger.kernel.org
13516 L: linux-imx@nxp.com
13517 S: Maintained
13518 F: drivers/clk/imx/
13519
13520 NXP i.MX 8MQ DCSS DRIVER
13521 M: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13522 R: Lucas Stach <l.stach@pengutronix.de>
13523 L: dri-devel@lists.freedesktop.org
13524 S: Maintained
13525 F: Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13526 F: drivers/gpu/drm/imx/dcss/
13527
13528 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13529 M: Jagan Teki <jagan@amarulasolutions.com>
13530 S: Maintained
13531 F: Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13532 F: drivers/regulator/pf8x00-regulator.c
13533
13534 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13535 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13536 L: linux-kernel@vger.kernel.org
13537 S: Maintained
13538 F: Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13539 F: drivers/extcon/extcon-ptn5150.c
13540
13541 NXP SGTL5000 DRIVER
13542 M: Fabio Estevam <festevam@gmail.com>
13543 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13544 S: Maintained
13545 F: Documentation/devicetree/bindings/sound/sgtl5000.yaml
13546 F: sound/soc/codecs/sgtl5000*
13547
13548 NXP SJA1105 ETHERNET SWITCH DRIVER
13549 M: Vladimir Oltean <olteanv@gmail.com>
13550 L: linux-kernel@vger.kernel.org
13551 S: Maintained
13552 F: drivers/net/dsa/sja1105
13553 F: drivers/net/pcs/pcs-xpcs-nxp.c
13554
13555 NXP TDA998X DRM DRIVER
13556 M: Russell King <linux@armlinux.org.uk>
13557 S: Maintained
13558 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13559 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13560 F: drivers/gpu/drm/i2c/tda998x_drv.c
13561 F: include/drm/i2c/tda998x.h
13562 F: include/dt-bindings/display/tda998x.h
13563 K: "nxp,tda998x"
13564
13565 NXP TFA9879 DRIVER
13566 M: Peter Rosin <peda@axentia.se>
13567 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13568 S: Maintained
13569 F: Documentation/devicetree/bindings/sound/tfa9879.txt
13570 F: sound/soc/codecs/tfa9879*
13571
13572 NXP/Goodix TFA989X (TFA1) DRIVER
13573 M: Stephan Gerhold <stephan@gerhold.net>
13574 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13575 S: Maintained
13576 F: Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13577 F: sound/soc/codecs/tfa989x.c
13578
13579 NXP-NCI NFC DRIVER
13580 R: Charles Gorand <charles.gorand@effinnov.com>
13581 L: linux-nfc@lists.01.org (subscribers-only)
13582 S: Supported
13583 F: drivers/nfc/nxp-nci
13584
13585 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13586 M: Mirela Rabulea <mirela.rabulea@nxp.com>
13587 R: NXP Linux Team <linux-imx@nxp.com>
13588 L: linux-media@vger.kernel.org
13589 S: Maintained
13590 F: Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13591 F: drivers/media/platform/imx-jpeg
13592
13593 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13594 M: Jonas Malaco <jonas@protocubo.io>
13595 L: linux-hwmon@vger.kernel.org
13596 S: Maintained
13597 F: Documentation/hwmon/nzxt-kraken2.rst
13598 F: drivers/hwmon/nzxt-kraken2.c
13599
13600 OBJAGG
13601 M: Jiri Pirko <jiri@nvidia.com>
13602 L: netdev@vger.kernel.org
13603 S: Supported
13604 F: include/linux/objagg.h
13605 F: lib/objagg.c
13606 F: lib/test_objagg.c
13607
13608 OBJTOOL
13609 M: Josh Poimboeuf <jpoimboe@redhat.com>
13610 M: Peter Zijlstra <peterz@infradead.org>
13611 S: Supported
13612 F: tools/objtool/
13613 F: include/linux/objtool.h
13614
13615 OCELOT ETHERNET SWITCH DRIVER
13616 M: Vladimir Oltean <vladimir.oltean@nxp.com>
13617 M: Claudiu Manoil <claudiu.manoil@nxp.com>
13618 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
13619 M: UNGLinuxDriver@microchip.com
13620 L: netdev@vger.kernel.org
13621 S: Supported
13622 F: drivers/net/dsa/ocelot/*
13623 F: drivers/net/ethernet/mscc/
13624 F: include/soc/mscc/ocelot*
13625 F: net/dsa/tag_ocelot.c
13626 F: net/dsa/tag_ocelot_8021q.c
13627 F: tools/testing/selftests/drivers/net/ocelot/*
13628
13629 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13630 M: Frederic Barrat <fbarrat@linux.ibm.com>
13631 M: Andrew Donnellan <ajd@linux.ibm.com>
13632 L: linuxppc-dev@lists.ozlabs.org
13633 S: Supported
13634 F: Documentation/userspace-api/accelerators/ocxl.rst
13635 F: arch/powerpc/include/asm/pnv-ocxl.h
13636 F: arch/powerpc/platforms/powernv/ocxl.c
13637 F: drivers/misc/ocxl/
13638 F: include/misc/ocxl*
13639 F: include/uapi/misc/ocxl.h
13640
13641 OMAP AUDIO SUPPORT
13642 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
13643 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
13644 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13645 L: linux-omap@vger.kernel.org
13646 S: Maintained
13647 F: sound/soc/ti/n810.c
13648 F: sound/soc/ti/omap*
13649 F: sound/soc/ti/rx51.c
13650 F: sound/soc/ti/sdma-pcm.*
13651
13652 OMAP CLOCK FRAMEWORK SUPPORT
13653 M: Paul Walmsley <paul@pwsan.com>
13654 L: linux-omap@vger.kernel.org
13655 S: Maintained
13656 F: arch/arm/*omap*/*clock*
13657
13658 OMAP DEVICE TREE SUPPORT
13659 M: Benoît Cousson <bcousson@baylibre.com>
13660 M: Tony Lindgren <tony@atomide.com>
13661 L: linux-omap@vger.kernel.org
13662 L: devicetree@vger.kernel.org
13663 S: Maintained
13664 F: arch/arm/boot/dts/*am3*
13665 F: arch/arm/boot/dts/*am4*
13666 F: arch/arm/boot/dts/*am5*
13667 F: arch/arm/boot/dts/*dra7*
13668 F: arch/arm/boot/dts/*omap*
13669 F: arch/arm/boot/dts/logicpd-som-lv*
13670 F: arch/arm/boot/dts/logicpd-torpedo*
13671
13672 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13673 L: linux-omap@vger.kernel.org
13674 L: linux-fbdev@vger.kernel.org
13675 S: Orphan
13676 F: Documentation/arm/omap/dss.rst
13677 F: drivers/video/fbdev/omap2/
13678
13679 OMAP FRAMEBUFFER SUPPORT
13680 L: linux-fbdev@vger.kernel.org
13681 L: linux-omap@vger.kernel.org
13682 S: Orphan
13683 F: drivers/video/fbdev/omap/
13684
13685 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13686 M: Roger Quadros <rogerq@kernel.org>
13687 M: Tony Lindgren <tony@atomide.com>
13688 L: linux-omap@vger.kernel.org
13689 S: Maintained
13690 F: arch/arm/mach-omap2/*gpmc*
13691 F: drivers/memory/omap-gpmc.c
13692
13693 OMAP GPIO DRIVER
13694 M: Grygorii Strashko <grygorii.strashko@ti.com>
13695 M: Santosh Shilimkar <ssantosh@kernel.org>
13696 M: Kevin Hilman <khilman@kernel.org>
13697 L: linux-omap@vger.kernel.org
13698 S: Maintained
13699 F: Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13700 F: drivers/gpio/gpio-omap.c
13701
13702 OMAP HARDWARE SPINLOCK SUPPORT
13703 M: Ohad Ben-Cohen <ohad@wizery.com>
13704 L: linux-omap@vger.kernel.org
13705 S: Maintained
13706 F: drivers/hwspinlock/omap_hwspinlock.c
13707
13708 OMAP HS MMC SUPPORT
13709 L: linux-mmc@vger.kernel.org
13710 L: linux-omap@vger.kernel.org
13711 S: Orphan
13712 F: drivers/mmc/host/omap_hsmmc.c
13713
13714 OMAP HWMOD DATA
13715 M: Paul Walmsley <paul@pwsan.com>
13716 L: linux-omap@vger.kernel.org
13717 S: Maintained
13718 F: arch/arm/mach-omap2/omap_hwmod*data*
13719
13720 OMAP HWMOD SUPPORT
13721 M: Benoît Cousson <bcousson@baylibre.com>
13722 M: Paul Walmsley <paul@pwsan.com>
13723 L: linux-omap@vger.kernel.org
13724 S: Maintained
13725 F: arch/arm/mach-omap2/omap_hwmod.*
13726
13727 OMAP I2C DRIVER
13728 M: Vignesh R <vigneshr@ti.com>
13729 L: linux-omap@vger.kernel.org
13730 L: linux-i2c@vger.kernel.org
13731 S: Maintained
13732 F: Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13733 F: drivers/i2c/busses/i2c-omap.c
13734
13735 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13736 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13737 L: linux-media@vger.kernel.org
13738 S: Maintained
13739 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
13740 F: drivers/media/platform/omap3isp/
13741 F: drivers/staging/media/omap4iss/
13742
13743 OMAP MMC SUPPORT
13744 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13745 L: linux-omap@vger.kernel.org
13746 S: Odd Fixes
13747 F: drivers/mmc/host/omap.c
13748
13749 OMAP POWER MANAGEMENT SUPPORT
13750 M: Kevin Hilman <khilman@kernel.org>
13751 L: linux-omap@vger.kernel.org
13752 S: Maintained
13753 F: arch/arm/*omap*/*pm*
13754 F: drivers/cpufreq/omap-cpufreq.c
13755
13756 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13757 M: Rajendra Nayak <rnayak@codeaurora.org>
13758 M: Paul Walmsley <paul@pwsan.com>
13759 L: linux-omap@vger.kernel.org
13760 S: Maintained
13761 F: arch/arm/mach-omap2/prm*
13762
13763 OMAP RANDOM NUMBER GENERATOR SUPPORT
13764 M: Deepak Saxena <dsaxena@plexity.net>
13765 S: Maintained
13766 F: drivers/char/hw_random/omap-rng.c
13767
13768 OMAP USB SUPPORT
13769 L: linux-usb@vger.kernel.org
13770 L: linux-omap@vger.kernel.org
13771 S: Orphan
13772 F: arch/arm/*omap*/usb*
13773 F: drivers/usb/*/*omap*
13774
13775 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13776 M: Mark Jackson <mpfj@newflow.co.uk>
13777 L: linux-omap@vger.kernel.org
13778 S: Maintained
13779 F: arch/arm/boot/dts/am335x-nano.dts
13780
13781 OMAP1 SUPPORT
13782 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13783 M: Tony Lindgren <tony@atomide.com>
13784 L: linux-omap@vger.kernel.org
13785 S: Maintained
13786 Q: http://patchwork.kernel.org/project/linux-omap/list/
13787 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13788 F: arch/arm/configs/omap1_defconfig
13789 F: arch/arm/mach-omap1/
13790 F: arch/arm/plat-omap/
13791 F: drivers/i2c/busses/i2c-omap.c
13792 F: include/linux/platform_data/ams-delta-fiq.h
13793 F: include/linux/platform_data/i2c-omap.h
13794
13795 OMAP2+ SUPPORT
13796 M: Tony Lindgren <tony@atomide.com>
13797 L: linux-omap@vger.kernel.org
13798 S: Maintained
13799 W: http://www.muru.com/linux/omap/
13800 W: http://linux.omap.com/
13801 Q: http://patchwork.kernel.org/project/linux-omap/list/
13802 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13803 F: arch/arm/configs/omap2plus_defconfig
13804 F: arch/arm/mach-omap2/
13805 F: arch/arm/plat-omap/
13806 F: drivers/bus/ti-sysc.c
13807 F: drivers/i2c/busses/i2c-omap.c
13808 F: drivers/irqchip/irq-omap-intc.c
13809 F: drivers/mfd/*omap*.c
13810 F: drivers/mfd/menelaus.c
13811 F: drivers/mfd/palmas.c
13812 F: drivers/mfd/tps65217.c
13813 F: drivers/mfd/tps65218.c
13814 F: drivers/mfd/tps65910.c
13815 F: drivers/mfd/twl-core.[ch]
13816 F: drivers/mfd/twl4030*.c
13817 F: drivers/mfd/twl6030*.c
13818 F: drivers/mfd/twl6040*.c
13819 F: drivers/regulator/palmas-regulator*.c
13820 F: drivers/regulator/pbias-regulator.c
13821 F: drivers/regulator/tps65217-regulator.c
13822 F: drivers/regulator/tps65218-regulator.c
13823 F: drivers/regulator/tps65910-regulator.c
13824 F: drivers/regulator/twl-regulator.c
13825 F: drivers/regulator/twl6030-regulator.c
13826 F: include/linux/platform_data/i2c-omap.h
13827 F: include/linux/platform_data/ti-sysc.h
13828
13829 OMFS FILESYSTEM
13830 M: Bob Copeland <me@bobcopeland.com>
13831 L: linux-karma-devel@lists.sourceforge.net
13832 S: Maintained
13833 F: Documentation/filesystems/omfs.rst
13834 F: fs/omfs/
13835
13836 OMNIKEY CARDMAN 4000 DRIVER
13837 M: Harald Welte <laforge@gnumonks.org>
13838 S: Maintained
13839 F: drivers/char/pcmcia/cm4000_cs.c
13840 F: include/linux/cm4000_cs.h
13841 F: include/uapi/linux/cm4000_cs.h
13842
13843 OMNIKEY CARDMAN 4040 DRIVER
13844 M: Harald Welte <laforge@gnumonks.org>
13845 S: Maintained
13846 F: drivers/char/pcmcia/cm4040_cs.*
13847
13848 OMNIVISION OV02A10 SENSOR DRIVER
13849 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13850 L: linux-media@vger.kernel.org
13851 S: Maintained
13852 T: git git://linuxtv.org/media_tree.git
13853 F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13854 F: drivers/media/i2c/ov02a10.c
13855
13856 OMNIVISION OV13858 SENSOR DRIVER
13857 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13858 L: linux-media@vger.kernel.org
13859 S: Maintained
13860 T: git git://linuxtv.org/media_tree.git
13861 F: drivers/media/i2c/ov13858.c
13862
13863 OMNIVISION OV2680 SENSOR DRIVER
13864 M: Rui Miguel Silva <rmfrfs@gmail.com>
13865 L: linux-media@vger.kernel.org
13866 S: Maintained
13867 T: git git://linuxtv.org/media_tree.git
13868 F: Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13869 F: drivers/media/i2c/ov2680.c
13870
13871 OMNIVISION OV2685 SENSOR DRIVER
13872 M: Shunqian Zheng <zhengsq@rock-chips.com>
13873 L: linux-media@vger.kernel.org
13874 S: Maintained
13875 T: git git://linuxtv.org/media_tree.git
13876 F: drivers/media/i2c/ov2685.c
13877
13878 OMNIVISION OV2740 SENSOR DRIVER
13879 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13880 R: Shawn Tu <shawnx.tu@intel.com>
13881 R: Bingbu Cao <bingbu.cao@intel.com>
13882 L: linux-media@vger.kernel.org
13883 S: Maintained
13884 T: git git://linuxtv.org/media_tree.git
13885 F: drivers/media/i2c/ov2740.c
13886
13887 OMNIVISION OV5640 SENSOR DRIVER
13888 M: Steve Longerbeam <slongerbeam@gmail.com>
13889 L: linux-media@vger.kernel.org
13890 S: Maintained
13891 T: git git://linuxtv.org/media_tree.git
13892 F: drivers/media/i2c/ov5640.c
13893
13894 OMNIVISION OV5647 SENSOR DRIVER
13895 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
13896 M: Jacopo Mondi <jacopo@jmondi.org>
13897 L: linux-media@vger.kernel.org
13898 S: Maintained
13899 T: git git://linuxtv.org/media_tree.git
13900 F: Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13901 F: drivers/media/i2c/ov5647.c
13902
13903 OMNIVISION OV5670 SENSOR DRIVER
13904 M: Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13905 M: Hyungwoo Yang <hyungwoo.yang@intel.com>
13906 L: linux-media@vger.kernel.org
13907 S: Maintained
13908 T: git git://linuxtv.org/media_tree.git
13909 F: drivers/media/i2c/ov5670.c
13910
13911 OMNIVISION OV5675 SENSOR DRIVER
13912 M: Shawn Tu <shawnx.tu@intel.com>
13913 L: linux-media@vger.kernel.org
13914 S: Maintained
13915 T: git git://linuxtv.org/media_tree.git
13916 F: drivers/media/i2c/ov5675.c
13917
13918 OMNIVISION OV5695 SENSOR DRIVER
13919 M: Shunqian Zheng <zhengsq@rock-chips.com>
13920 L: linux-media@vger.kernel.org
13921 S: Maintained
13922 T: git git://linuxtv.org/media_tree.git
13923 F: drivers/media/i2c/ov5695.c
13924
13925 OMNIVISION OV7670 SENSOR DRIVER
13926 L: linux-media@vger.kernel.org
13927 S: Orphan
13928 T: git git://linuxtv.org/media_tree.git
13929 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
13930 F: drivers/media/i2c/ov7670.c
13931
13932 OMNIVISION OV772x SENSOR DRIVER
13933 M: Jacopo Mondi <jacopo@jmondi.org>
13934 L: linux-media@vger.kernel.org
13935 S: Odd fixes
13936 T: git git://linuxtv.org/media_tree.git
13937 F: Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13938 F: drivers/media/i2c/ov772x.c
13939 F: include/media/i2c/ov772x.h
13940
13941 OMNIVISION OV7740 SENSOR DRIVER
13942 M: Wenyou Yang <wenyou.yang@microchip.com>
13943 L: linux-media@vger.kernel.org
13944 S: Maintained
13945 T: git git://linuxtv.org/media_tree.git
13946 F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
13947 F: drivers/media/i2c/ov7740.c
13948
13949 OMNIVISION OV8856 SENSOR DRIVER
13950 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13951 L: linux-media@vger.kernel.org
13952 S: Maintained
13953 T: git git://linuxtv.org/media_tree.git
13954 F: Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13955 F: drivers/media/i2c/ov8856.c
13956
13957 OMNIVISION OV9282 SENSOR DRIVER
13958 M: Paul J. Murphy <paul.j.murphy@intel.com>
13959 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
13960 L: linux-media@vger.kernel.org
13961 S: Maintained
13962 T: git git://linuxtv.org/media_tree.git
13963 F: Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
13964 F: drivers/media/i2c/ov9282.c
13965
13966 OMNIVISION OV9640 SENSOR DRIVER
13967 M: Petr Cvek <petrcvekcz@gmail.com>
13968 L: linux-media@vger.kernel.org
13969 S: Maintained
13970 F: drivers/media/i2c/ov9640.*
13971
13972 OMNIVISION OV9650 SENSOR DRIVER
13973 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13974 R: Akinobu Mita <akinobu.mita@gmail.com>
13975 R: Sylwester Nawrocki <s.nawrocki@samsung.com>
13976 L: linux-media@vger.kernel.org
13977 S: Maintained
13978 T: git git://linuxtv.org/media_tree.git
13979 F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
13980 F: drivers/media/i2c/ov9650.c
13981
13982 OMNIVISION OV9734 SENSOR DRIVER
13983 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13984 R: Bingbu Cao <bingbu.cao@intel.com>
13985 L: linux-media@vger.kernel.org
13986 S: Maintained
13987 T: git git://linuxtv.org/media_tree.git
13988 F: drivers/media/i2c/ov9734.c
13989
13990 ONENAND FLASH DRIVER
13991 M: Kyungmin Park <kyungmin.park@samsung.com>
13992 L: linux-mtd@lists.infradead.org
13993 S: Maintained
13994 F: drivers/mtd/nand/onenand/
13995 F: include/linux/mtd/onenand*.h
13996
13997 ONION OMEGA2+ BOARD
13998 M: Harvey Hunt <harveyhuntnexus@gmail.com>
13999 L: linux-mips@vger.kernel.org
14000 S: Maintained
14001 F: arch/mips/boot/dts/ralink/omega2p.dts
14002
14003 OP-TEE DRIVER
14004 M: Jens Wiklander <jens.wiklander@linaro.org>
14005 L: op-tee@lists.trustedfirmware.org
14006 S: Maintained
14007 F: Documentation/ABI/testing/sysfs-bus-optee-devices
14008 F: drivers/tee/optee/
14009
14010 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14011 M: Sumit Garg <sumit.garg@linaro.org>
14012 L: op-tee@lists.trustedfirmware.org
14013 S: Maintained
14014 F: drivers/char/hw_random/optee-rng.c
14015
14016 OPA-VNIC DRIVER
14017 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14018 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14019 L: linux-rdma@vger.kernel.org
14020 S: Supported
14021 F: drivers/infiniband/ulp/opa_vnic
14022
14023 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14024 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14025 M: Frank Rowand <frowand.list@gmail.com>
14026 L: devicetree@vger.kernel.org
14027 S: Maintained
14028 F: Documentation/devicetree/dynamic-resolution-notes.rst
14029 F: Documentation/devicetree/overlay-notes.rst
14030 F: drivers/of/overlay.c
14031 F: drivers/of/resolver.c
14032 K: of_overlay_notifier_
14033
14034 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14035 M: Rob Herring <robh+dt@kernel.org>
14036 M: Frank Rowand <frowand.list@gmail.com>
14037 L: devicetree@vger.kernel.org
14038 S: Maintained
14039 W: http://www.devicetree.org/
14040 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14041 F: Documentation/ABI/testing/sysfs-firmware-ofw
14042 F: drivers/of/
14043 F: include/linux/of*.h
14044 F: scripts/dtc/
14045
14046 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14047 M: Rob Herring <robh+dt@kernel.org>
14048 L: devicetree@vger.kernel.org
14049 S: Maintained
14050 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14051 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14052 F: Documentation/devicetree/
14053 F: arch/*/boot/dts/
14054 F: include/dt-bindings/
14055
14056 OPENCOMPUTE PTP CLOCK DRIVER
14057 M: Jonathan Lemon <jonathan.lemon@gmail.com>
14058 L: netdev@vger.kernel.org
14059 S: Maintained
14060 F: drivers/ptp/ptp_ocp.c
14061
14062 OPENCORES I2C BUS DRIVER
14063 M: Peter Korsgaard <peter@korsgaard.com>
14064 M: Andrew Lunn <andrew@lunn.ch>
14065 L: linux-i2c@vger.kernel.org
14066 S: Maintained
14067 F: Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14068 F: Documentation/i2c/busses/i2c-ocores.rst
14069 F: drivers/i2c/busses/i2c-ocores.c
14070 F: include/linux/platform_data/i2c-ocores.h
14071
14072 OPENRISC ARCHITECTURE
14073 M: Jonas Bonn <jonas@southpole.se>
14074 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14075 M: Stafford Horne <shorne@gmail.com>
14076 L: openrisc@lists.librecores.org
14077 S: Maintained
14078 W: http://openrisc.io
14079 T: git git://github.com/openrisc/linux.git
14080 F: Documentation/devicetree/bindings/openrisc/
14081 F: Documentation/openrisc/
14082 F: arch/openrisc/
14083 F: drivers/irqchip/irq-ompic.c
14084 F: drivers/irqchip/irq-or1k-*
14085
14086 OPENVSWITCH
14087 M: Pravin B Shelar <pshelar@ovn.org>
14088 L: netdev@vger.kernel.org
14089 L: dev@openvswitch.org
14090 S: Maintained
14091 W: http://openvswitch.org
14092 F: include/uapi/linux/openvswitch.h
14093 F: net/openvswitch/
14094
14095 OPERATING PERFORMANCE POINTS (OPP)
14096 M: Viresh Kumar <vireshk@kernel.org>
14097 M: Nishanth Menon <nm@ti.com>
14098 M: Stephen Boyd <sboyd@kernel.org>
14099 L: linux-pm@vger.kernel.org
14100 S: Maintained
14101 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14102 F: Documentation/devicetree/bindings/opp/
14103 F: Documentation/power/opp.rst
14104 F: drivers/opp/
14105 F: include/linux/pm_opp.h
14106
14107 OPL4 DRIVER
14108 M: Clemens Ladisch <clemens@ladisch.de>
14109 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14110 S: Maintained
14111 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14112 F: sound/drivers/opl4/
14113
14114 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14115 M: Mark Fasheh <mark@fasheh.com>
14116 M: Joel Becker <jlbec@evilplan.org>
14117 M: Joseph Qi <joseph.qi@linux.alibaba.com>
14118 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14119 S: Supported
14120 W: http://ocfs2.wiki.kernel.org
14121 F: Documentation/filesystems/dlmfs.rst
14122 F: Documentation/filesystems/ocfs2.rst
14123 F: fs/ocfs2/
14124
14125 ORANGEFS FILESYSTEM
14126 M: Mike Marshall <hubcap@omnibond.com>
14127 R: Martin Brandenburg <martin@omnibond.com>
14128 L: devel@lists.orangefs.org
14129 S: Supported
14130 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14131 F: Documentation/filesystems/orangefs.rst
14132 F: fs/orangefs/
14133
14134 ORINOCO DRIVER
14135 L: linux-wireless@vger.kernel.org
14136 S: Orphan
14137 W: https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14138 W: http://www.nongnu.org/orinoco/
14139 F: drivers/net/wireless/intersil/orinoco/
14140
14141 OV2659 OMNIVISION SENSOR DRIVER
14142 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14143 L: linux-media@vger.kernel.org
14144 S: Maintained
14145 W: https://linuxtv.org
14146 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14147 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14148 F: drivers/media/i2c/ov2659.c
14149 F: include/media/i2c/ov2659.h
14150
14151 OVERLAY FILESYSTEM
14152 M: Miklos Szeredi <miklos@szeredi.hu>
14153 L: linux-unionfs@vger.kernel.org
14154 S: Supported
14155 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14156 F: Documentation/filesystems/overlayfs.rst
14157 F: fs/overlayfs/
14158
14159 P54 WIRELESS DRIVER
14160 M: Christian Lamparter <chunkeey@googlemail.com>
14161 L: linux-wireless@vger.kernel.org
14162 S: Maintained
14163 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
14164 F: drivers/net/wireless/intersil/p54/
14165
14166 PACKING
14167 M: Vladimir Oltean <olteanv@gmail.com>
14168 L: netdev@vger.kernel.org
14169 S: Supported
14170 F: Documentation/core-api/packing.rst
14171 F: include/linux/packing.h
14172 F: lib/packing.c
14173
14174 PADATA PARALLEL EXECUTION MECHANISM
14175 M: Steffen Klassert <steffen.klassert@secunet.com>
14176 M: Daniel Jordan <daniel.m.jordan@oracle.com>
14177 L: linux-crypto@vger.kernel.org
14178 L: linux-kernel@vger.kernel.org
14179 S: Maintained
14180 F: Documentation/core-api/padata.rst
14181 F: include/linux/padata.h
14182 F: kernel/padata.c
14183
14184 PAGE POOL
14185 M: Jesper Dangaard Brouer <hawk@kernel.org>
14186 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
14187 L: netdev@vger.kernel.org
14188 S: Supported
14189 F: Documentation/networking/page_pool.rst
14190 F: include/net/page_pool.h
14191 F: include/trace/events/page_pool.h
14192 F: net/core/page_pool.c
14193
14194 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14195 M: Kenneth Chan <kenneth.t.chan@gmail.com>
14196 L: platform-driver-x86@vger.kernel.org
14197 S: Maintained
14198 F: drivers/platform/x86/panasonic-laptop.c
14199
14200 PARALLAX PING IIO SENSOR DRIVER
14201 M: Andreas Klinger <ak@it-klinger.de>
14202 L: linux-iio@vger.kernel.org
14203 S: Maintained
14204 F: Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14205 F: drivers/iio/proximity/ping.c
14206
14207 PARALLEL LCD/KEYPAD PANEL DRIVER
14208 M: Willy Tarreau <willy@haproxy.com>
14209 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14210 S: Odd Fixes
14211 F: Documentation/admin-guide/lcd-panel-cgram.rst
14212 F: drivers/auxdisplay/panel.c
14213
14214 PARALLEL PORT SUBSYSTEM
14215 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14216 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14217 L: linux-parport@lists.infradead.org (subscribers-only)
14218 S: Maintained
14219 F: Documentation/driver-api/parport*.rst
14220 F: drivers/char/ppdev.c
14221 F: drivers/parport/
14222 F: include/linux/parport*.h
14223 F: include/uapi/linux/ppdev.h
14224
14225 PARAVIRT_OPS INTERFACE
14226 M: Juergen Gross <jgross@suse.com>
14227 M: Deep Shah <sdeep@vmware.com>
14228 M: "VMware, Inc." <pv-drivers@vmware.com>
14229 L: virtualization@lists.linux-foundation.org
14230 S: Supported
14231 F: Documentation/virt/paravirt_ops.rst
14232 F: arch/*/include/asm/paravirt*.h
14233 F: arch/*/kernel/paravirt*
14234 F: include/linux/hypervisor.h
14235
14236 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14237 M: Tim Waugh <tim@cyberelk.net>
14238 L: linux-parport@lists.infradead.org (subscribers-only)
14239 S: Maintained
14240 F: Documentation/admin-guide/blockdev/paride.rst
14241 F: drivers/block/paride/
14242
14243 PARISC ARCHITECTURE
14244 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14245 M: Helge Deller <deller@gmx.de>
14246 L: linux-parisc@vger.kernel.org
14247 S: Maintained
14248 W: https://parisc.wiki.kernel.org
14249 Q: http://patchwork.kernel.org/project/linux-parisc/list/
14250 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14251 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14252 F: Documentation/parisc/
14253 F: arch/parisc/
14254 F: drivers/char/agp/parisc-agp.c
14255 F: drivers/input/misc/hp_sdc_rtc.c
14256 F: drivers/input/serio/gscps2.c
14257 F: drivers/input/serio/hp_sdc*
14258 F: drivers/parisc/
14259 F: drivers/parport/parport_gsc.*
14260 F: drivers/tty/serial/8250/8250_gsc.c
14261 F: drivers/video/console/sti*
14262 F: drivers/video/fbdev/sti*
14263 F: drivers/video/logo/logo_parisc*
14264 F: include/linux/hp_sdc.h
14265
14266 PARMAN
14267 M: Jiri Pirko <jiri@nvidia.com>
14268 L: netdev@vger.kernel.org
14269 S: Supported
14270 F: include/linux/parman.h
14271 F: lib/parman.c
14272 F: lib/test_parman.c
14273
14274 PC ENGINES APU BOARD DRIVER
14275 M: Enrico Weigelt, metux IT consult <info@metux.net>
14276 S: Maintained
14277 F: drivers/platform/x86/pcengines-apuv2.c
14278
14279 PC87360 HARDWARE MONITORING DRIVER
14280 M: Jim Cromie <jim.cromie@gmail.com>
14281 L: linux-hwmon@vger.kernel.org
14282 S: Maintained
14283 F: Documentation/hwmon/pc87360.rst
14284 F: drivers/hwmon/pc87360.c
14285
14286 PC8736x GPIO DRIVER
14287 M: Jim Cromie <jim.cromie@gmail.com>
14288 S: Maintained
14289 F: drivers/char/pc8736x_gpio.c
14290
14291 PC87427 HARDWARE MONITORING DRIVER
14292 M: Jean Delvare <jdelvare@suse.com>
14293 L: linux-hwmon@vger.kernel.org
14294 S: Maintained
14295 F: Documentation/hwmon/pc87427.rst
14296 F: drivers/hwmon/pc87427.c
14297
14298 PCA9532 LED DRIVER
14299 M: Riku Voipio <riku.voipio@iki.fi>
14300 S: Maintained
14301 F: drivers/leds/leds-pca9532.c
14302 F: include/linux/leds-pca9532.h
14303
14304 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14305 M: Guenter Roeck <linux@roeck-us.net>
14306 L: linux-i2c@vger.kernel.org
14307 S: Maintained
14308 F: drivers/i2c/muxes/i2c-mux-pca9541.c
14309
14310 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14311 M: Khalid Aziz <khalid@gonehiking.org>
14312 S: Maintained
14313 F: drivers/firmware/pcdp.*
14314
14315 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14316 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14317 M: Pali Rohár <pali@kernel.org>
14318 L: linux-pci@vger.kernel.org
14319 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14320 S: Maintained
14321 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
14322 F: drivers/pci/controller/pci-aardvark.c
14323
14324 PCI DRIVER FOR ALTERA PCIE IP
14325 M: Joyce Ooi <joyce.ooi@intel.com>
14326 L: linux-pci@vger.kernel.org
14327 S: Supported
14328 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
14329 F: drivers/pci/controller/pcie-altera.c
14330
14331 PCI DRIVER FOR APPLIEDMICRO XGENE
14332 M: Toan Le <toan@os.amperecomputing.com>
14333 L: linux-pci@vger.kernel.org
14334 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14335 S: Maintained
14336 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
14337 F: drivers/pci/controller/pci-xgene.c
14338
14339 PCI DRIVER FOR ARM VERSATILE PLATFORM
14340 M: Rob Herring <robh@kernel.org>
14341 L: linux-pci@vger.kernel.org
14342 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14343 S: Maintained
14344 F: Documentation/devicetree/bindings/pci/versatile.yaml
14345 F: drivers/pci/controller/pci-versatile.c
14346
14347 PCI DRIVER FOR ARMADA 8K
14348 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14349 L: linux-pci@vger.kernel.org
14350 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14351 S: Maintained
14352 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
14353 F: drivers/pci/controller/dwc/pcie-armada8k.c
14354
14355 PCI DRIVER FOR CADENCE PCIE IP
14356 M: Tom Joseph <tjoseph@cadence.com>
14357 L: linux-pci@vger.kernel.org
14358 S: Maintained
14359 F: Documentation/devicetree/bindings/pci/cdns,*
14360 F: drivers/pci/controller/cadence/
14361
14362 PCI DRIVER FOR FREESCALE LAYERSCAPE
14363 M: Minghuan Lian <minghuan.Lian@nxp.com>
14364 M: Mingkai Hu <mingkai.hu@nxp.com>
14365 M: Roy Zang <roy.zang@nxp.com>
14366 L: linuxppc-dev@lists.ozlabs.org
14367 L: linux-pci@vger.kernel.org
14368 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14369 S: Maintained
14370 F: drivers/pci/controller/dwc/*layerscape*
14371
14372 PCI DRIVER FOR GENERIC OF HOSTS
14373 M: Will Deacon <will@kernel.org>
14374 L: linux-pci@vger.kernel.org
14375 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14376 S: Maintained
14377 F: Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14378 F: drivers/pci/controller/pci-host-common.c
14379 F: drivers/pci/controller/pci-host-generic.c
14380
14381 PCI DRIVER FOR IMX6
14382 M: Richard Zhu <hongxing.zhu@nxp.com>
14383 M: Lucas Stach <l.stach@pengutronix.de>
14384 L: linux-pci@vger.kernel.org
14385 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14386 S: Maintained
14387 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14388 F: drivers/pci/controller/dwc/*imx6*
14389
14390 PCI DRIVER FOR FU740
14391 M: Paul Walmsley <paul.walmsley@sifive.com>
14392 M: Greentime Hu <greentime.hu@sifive.com>
14393 L: linux-pci@vger.kernel.org
14394 S: Maintained
14395 F: Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14396 F: drivers/pci/controller/dwc/pcie-fu740.c
14397
14398 PCI DRIVER FOR INTEL IXP4XX
14399 M: Linus Walleij <linus.walleij@linaro.org>
14400 S: Maintained
14401 F: Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14402 F: drivers/pci/controller/pci-ixp4xx.c
14403
14404 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14405 M: Nirmal Patel <nirmal.patel@linux.intel.com>
14406 R: Jonathan Derrick <jonathan.derrick@linux.dev>
14407 L: linux-pci@vger.kernel.org
14408 S: Supported
14409 F: drivers/pci/controller/vmd.c
14410
14411 PCI DRIVER FOR MICROSEMI SWITCHTEC
14412 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14413 M: Logan Gunthorpe <logang@deltatee.com>
14414 L: linux-pci@vger.kernel.org
14415 S: Maintained
14416 F: Documentation/ABI/testing/sysfs-class-switchtec
14417 F: Documentation/driver-api/switchtec.rst
14418 F: drivers/ntb/hw/mscc/
14419 F: drivers/pci/switch/switchtec*
14420 F: include/linux/switchtec.h
14421 F: include/uapi/linux/switchtec_ioctl.h
14422
14423 PCI DRIVER FOR MOBIVEIL PCIE IP
14424 M: Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14425 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14426 L: linux-pci@vger.kernel.org
14427 S: Supported
14428 F: Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14429 F: drivers/pci/controller/mobiveil/pcie-mobiveil*
14430
14431 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14432 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14433 L: linux-pci@vger.kernel.org
14434 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14435 S: Maintained
14436 F: drivers/pci/controller/*mvebu*
14437
14438 PCI DRIVER FOR NVIDIA TEGRA
14439 M: Thierry Reding <thierry.reding@gmail.com>
14440 L: linux-tegra@vger.kernel.org
14441 L: linux-pci@vger.kernel.org
14442 S: Supported
14443 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14444 F: drivers/pci/controller/pci-tegra.c
14445
14446 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14447 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14448 L: linux-pci@vger.kernel.org
14449 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14450 S: Maintained
14451 F: Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14452 F: drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14453
14454 PCI DRIVER FOR RENESAS R-CAR
14455 M: Marek Vasut <marek.vasut+renesas@gmail.com>
14456 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14457 L: linux-pci@vger.kernel.org
14458 L: linux-renesas-soc@vger.kernel.org
14459 S: Maintained
14460 F: Documentation/devicetree/bindings/pci/*rcar*
14461 F: drivers/pci/controller/*rcar*
14462
14463 PCI DRIVER FOR SAMSUNG EXYNOS
14464 M: Jingoo Han <jingoohan1@gmail.com>
14465 L: linux-pci@vger.kernel.org
14466 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14467 L: linux-samsung-soc@vger.kernel.org
14468 S: Maintained
14469 F: drivers/pci/controller/dwc/pci-exynos.c
14470
14471 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14472 M: Jingoo Han <jingoohan1@gmail.com>
14473 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14474 L: linux-pci@vger.kernel.org
14475 S: Maintained
14476 F: Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14477 F: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14478 F: drivers/pci/controller/dwc/*designware*
14479
14480 PCI DRIVER FOR TI DRA7XX/J721E
14481 M: Kishon Vijay Abraham I <kishon@ti.com>
14482 L: linux-omap@vger.kernel.org
14483 L: linux-pci@vger.kernel.org
14484 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14485 S: Supported
14486 F: Documentation/devicetree/bindings/pci/ti-pci.txt
14487 F: drivers/pci/controller/cadence/pci-j721e.c
14488 F: drivers/pci/controller/dwc/pci-dra7xx.c
14489
14490 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14491 M: Linus Walleij <linus.walleij@linaro.org>
14492 L: linux-pci@vger.kernel.org
14493 S: Maintained
14494 F: Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14495 F: drivers/pci/controller/pci-v3-semi.c
14496
14497 PCI ENDPOINT SUBSYSTEM
14498 M: Kishon Vijay Abraham I <kishon@ti.com>
14499 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14500 R: Krzysztof Wilczyński <kw@linux.com>
14501 L: linux-pci@vger.kernel.org
14502 S: Supported
14503 F: Documentation/PCI/endpoint/*
14504 F: Documentation/misc-devices/pci-endpoint-test.rst
14505 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14506 F: drivers/misc/pci_endpoint_test.c
14507 F: drivers/pci/endpoint/
14508 F: tools/pci/
14509
14510 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14511 M: Russell Currey <ruscur@russell.cc>
14512 M: Oliver O'Halloran <oohall@gmail.com>
14513 L: linuxppc-dev@lists.ozlabs.org
14514 S: Supported
14515 F: Documentation/PCI/pci-error-recovery.rst
14516 F: Documentation/powerpc/eeh-pci-error-recovery.rst
14517 F: arch/powerpc/include/*/eeh*.h
14518 F: arch/powerpc/kernel/eeh*.c
14519 F: arch/powerpc/platforms/*/eeh*.c
14520 F: drivers/pci/pcie/aer.c
14521 F: drivers/pci/pcie/dpc.c
14522 F: drivers/pci/pcie/err.c
14523
14524 PCI ERROR RECOVERY
14525 M: Linas Vepstas <linasvepstas@gmail.com>
14526 L: linux-pci@vger.kernel.org
14527 S: Supported
14528 F: Documentation/PCI/pci-error-recovery.rst
14529
14530 PCI MSI DRIVER FOR ALTERA MSI IP
14531 M: Joyce Ooi <joyce.ooi@intel.com>
14532 L: linux-pci@vger.kernel.org
14533 S: Supported
14534 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14535 F: drivers/pci/controller/pcie-altera-msi.c
14536
14537 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14538 M: Toan Le <toan@os.amperecomputing.com>
14539 L: linux-pci@vger.kernel.org
14540 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14541 S: Maintained
14542 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14543 F: drivers/pci/controller/pci-xgene-msi.c
14544
14545 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14546 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14547 R: Rob Herring <robh@kernel.org>
14548 R: Krzysztof Wilczyński <kw@linux.com>
14549 L: linux-pci@vger.kernel.org
14550 S: Supported
14551 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14552 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14553 F: drivers/pci/controller/
14554
14555 PCI SUBSYSTEM
14556 M: Bjorn Helgaas <bhelgaas@google.com>
14557 L: linux-pci@vger.kernel.org
14558 S: Supported
14559 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14560 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14561 F: Documentation/PCI/
14562 F: Documentation/devicetree/bindings/pci/
14563 F: arch/x86/kernel/early-quirks.c
14564 F: arch/x86/kernel/quirks.c
14565 F: arch/x86/pci/
14566 F: drivers/acpi/pci*
14567 F: drivers/pci/
14568 F: include/asm-generic/pci*
14569 F: include/linux/of_pci.h
14570 F: include/linux/pci*
14571 F: include/uapi/linux/pci*
14572 F: lib/pci*
14573
14574 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14575 M: Jonathan Chocron <jonnyc@amazon.com>
14576 L: linux-pci@vger.kernel.org
14577 S: Maintained
14578 F: Documentation/devicetree/bindings/pci/pcie-al.txt
14579 F: drivers/pci/controller/dwc/pcie-al.c
14580
14581 PCIE DRIVER FOR AMLOGIC MESON
14582 M: Yue Wang <yue.wang@Amlogic.com>
14583 L: linux-pci@vger.kernel.org
14584 L: linux-amlogic@lists.infradead.org
14585 S: Maintained
14586 F: drivers/pci/controller/dwc/pci-meson.c
14587
14588 PCIE DRIVER FOR AXIS ARTPEC
14589 M: Jesper Nilsson <jesper.nilsson@axis.com>
14590 L: linux-arm-kernel@axis.com
14591 L: linux-pci@vger.kernel.org
14592 S: Maintained
14593 F: Documentation/devicetree/bindings/pci/axis,artpec*
14594 F: drivers/pci/controller/dwc/*artpec*
14595
14596 PCIE DRIVER FOR CAVIUM THUNDERX
14597 M: Robert Richter <rric@kernel.org>
14598 L: linux-pci@vger.kernel.org
14599 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14600 S: Odd Fixes
14601 F: drivers/pci/controller/pci-thunder-*
14602
14603 PCIE DRIVER FOR HISILICON
14604 M: Zhou Wang <wangzhou1@hisilicon.com>
14605 L: linux-pci@vger.kernel.org
14606 S: Maintained
14607 F: drivers/pci/controller/dwc/pcie-hisi.c
14608
14609 PCIE DRIVER FOR HISILICON KIRIN
14610 M: Xiaowei Song <songxiaowei@hisilicon.com>
14611 M: Binghui Wang <wangbinghui@hisilicon.com>
14612 L: linux-pci@vger.kernel.org
14613 S: Maintained
14614 F: Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14615 F: drivers/pci/controller/dwc/pcie-kirin.c
14616
14617 PCIE DRIVER FOR HISILICON STB
14618 M: Shawn Guo <shawn.guo@linaro.org>
14619 L: linux-pci@vger.kernel.org
14620 S: Maintained
14621 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14622 F: drivers/pci/controller/dwc/pcie-histb.c
14623
14624 PCIE DRIVER FOR INTEL KEEM BAY
14625 M: Srikanth Thokala <srikanth.thokala@intel.com>
14626 L: linux-pci@vger.kernel.org
14627 S: Supported
14628 F: Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14629 F: drivers/pci/controller/dwc/pcie-keembay.c
14630
14631 PCIE DRIVER FOR INTEL LGM GW SOC
14632 M: Rahul Tanwar <rtanwar@maxlinear.com>
14633 L: linux-pci@vger.kernel.org
14634 S: Maintained
14635 F: Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14636 F: drivers/pci/controller/dwc/pcie-intel-gw.c
14637
14638 PCIE DRIVER FOR MEDIATEK
14639 M: Ryder Lee <ryder.lee@mediatek.com>
14640 M: Jianjun Wang <jianjun.wang@mediatek.com>
14641 L: linux-pci@vger.kernel.org
14642 L: linux-mediatek@lists.infradead.org
14643 S: Supported
14644 F: Documentation/devicetree/bindings/pci/mediatek*
14645 F: drivers/pci/controller/*mediatek*
14646
14647 PCIE DRIVER FOR MICROCHIP
14648 M: Daire McNamara <daire.mcnamara@microchip.com>
14649 L: linux-pci@vger.kernel.org
14650 S: Supported
14651 F: Documentation/devicetree/bindings/pci/microchip*
14652 F: drivers/pci/controller/*microchip*
14653
14654 PCIE DRIVER FOR QUALCOMM MSM
14655 M: Stanimir Varbanov <svarbanov@mm-sol.com>
14656 L: linux-pci@vger.kernel.org
14657 L: linux-arm-msm@vger.kernel.org
14658 S: Maintained
14659 F: drivers/pci/controller/dwc/*qcom*
14660
14661 PCIE DRIVER FOR ROCKCHIP
14662 M: Shawn Lin <shawn.lin@rock-chips.com>
14663 L: linux-pci@vger.kernel.org
14664 L: linux-rockchip@lists.infradead.org
14665 S: Maintained
14666 F: Documentation/devicetree/bindings/pci/rockchip-pcie*
14667 F: drivers/pci/controller/pcie-rockchip*
14668
14669 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14670 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14671 L: linux-pci@vger.kernel.org
14672 S: Maintained
14673 F: Documentation/devicetree/bindings/pci/uniphier-pcie*
14674 F: drivers/pci/controller/dwc/pcie-uniphier*
14675
14676 PCIE DRIVER FOR ST SPEAR13XX
14677 M: Pratyush Anand <pratyush.anand@gmail.com>
14678 L: linux-pci@vger.kernel.org
14679 S: Maintained
14680 F: drivers/pci/controller/dwc/*spear*
14681
14682 PCMCIA SUBSYSTEM
14683 M: Dominik Brodowski <linux@dominikbrodowski.net>
14684 S: Odd Fixes
14685 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14686 F: Documentation/pcmcia/
14687 F: drivers/pcmcia/
14688 F: include/pcmcia/
14689 F: tools/pcmcia/
14690
14691 PCNET32 NETWORK DRIVER
14692 M: Don Fry <pcnet32@frontier.com>
14693 L: netdev@vger.kernel.org
14694 S: Maintained
14695 F: drivers/net/ethernet/amd/pcnet32.c
14696
14697 PCRYPT PARALLEL CRYPTO ENGINE
14698 M: Steffen Klassert <steffen.klassert@secunet.com>
14699 L: linux-crypto@vger.kernel.org
14700 S: Maintained
14701 F: crypto/pcrypt.c
14702 F: include/crypto/pcrypt.h
14703
14704 PEAQ WMI HOTKEYS DRIVER
14705 M: Hans de Goede <hdegoede@redhat.com>
14706 L: platform-driver-x86@vger.kernel.org
14707 S: Maintained
14708 F: drivers/platform/x86/peaq-wmi.c
14709
14710 PENSANDO ETHERNET DRIVERS
14711 M: Shannon Nelson <snelson@pensando.io>
14712 M: drivers@pensando.io
14713 L: netdev@vger.kernel.org
14714 S: Supported
14715 F: Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14716 F: drivers/net/ethernet/pensando/
14717
14718 PER-CPU MEMORY ALLOCATOR
14719 M: Dennis Zhou <dennis@kernel.org>
14720 M: Tejun Heo <tj@kernel.org>
14721 M: Christoph Lameter <cl@linux.com>
14722 L: linux-mm@kvack.org
14723 S: Maintained
14724 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14725 F: arch/*/include/asm/percpu.h
14726 F: include/linux/percpu*.h
14727 F: lib/percpu*.c
14728 F: mm/percpu*.c
14729
14730 PER-TASK DELAY ACCOUNTING
14731 M: Balbir Singh <bsingharora@gmail.com>
14732 S: Maintained
14733 F: include/linux/delayacct.h
14734 F: kernel/delayacct.c
14735
14736 PERFORMANCE EVENTS SUBSYSTEM
14737 M: Peter Zijlstra <peterz@infradead.org>
14738 M: Ingo Molnar <mingo@redhat.com>
14739 M: Arnaldo Carvalho de Melo <acme@kernel.org>
14740 R: Mark Rutland <mark.rutland@arm.com>
14741 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
14742 R: Jiri Olsa <jolsa@redhat.com>
14743 R: Namhyung Kim <namhyung@kernel.org>
14744 L: linux-perf-users@vger.kernel.org
14745 L: linux-kernel@vger.kernel.org
14746 S: Supported
14747 W: https://perf.wiki.kernel.org/
14748 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14749 F: arch/*/events/*
14750 F: arch/*/events/*/*
14751 F: arch/*/include/asm/perf_event.h
14752 F: arch/*/kernel/*/*/perf_event*.c
14753 F: arch/*/kernel/*/perf_event*.c
14754 F: arch/*/kernel/perf_callchain.c
14755 F: arch/*/kernel/perf_event*.c
14756 F: include/linux/perf_event.h
14757 F: include/uapi/linux/perf_event.h
14758 F: kernel/events/*
14759 F: tools/lib/perf/
14760 F: tools/perf/
14761
14762 PERFORMANCE EVENTS TOOLING ARM64
14763 R: John Garry <john.garry@huawei.com>
14764 R: Will Deacon <will@kernel.org>
14765 R: Mathieu Poirier <mathieu.poirier@linaro.org>
14766 R: Leo Yan <leo.yan@linaro.org>
14767 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14768 S: Supported
14769 F: tools/build/feature/test-libopencsd.c
14770 F: tools/perf/arch/arm*/
14771 F: tools/perf/pmu-events/arch/arm64/
14772 F: tools/perf/util/arm-spe*
14773 F: tools/perf/util/cs-etm*
14774
14775 PERSONALITY HANDLING
14776 M: Christoph Hellwig <hch@infradead.org>
14777 L: linux-abi-devel@lists.sourceforge.net
14778 S: Maintained
14779 F: include/linux/personality.h
14780 F: include/uapi/linux/personality.h
14781
14782 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14783 M: Marcus Folkesson <marcus.folkesson@gmail.com>
14784 L: linux-input@vger.kernel.org
14785 S: Maintained
14786 F: Documentation/input/devices/pxrc.rst
14787 F: drivers/input/joystick/pxrc.c
14788
14789 PHONET PROTOCOL
14790 M: Remi Denis-Courmont <courmisch@gmail.com>
14791 S: Supported
14792 F: Documentation/networking/phonet.rst
14793 F: include/linux/phonet.h
14794 F: include/net/phonet/
14795 F: include/uapi/linux/phonet.h
14796 F: net/phonet/
14797
14798 PHRAM MTD DRIVER
14799 M: Joern Engel <joern@lazybastard.org>
14800 L: linux-mtd@lists.infradead.org
14801 S: Maintained
14802 F: drivers/mtd/devices/phram.c
14803
14804 PICOLCD HID DRIVER
14805 M: Bruno Prémont <bonbons@linux-vserver.org>
14806 L: linux-input@vger.kernel.org
14807 S: Maintained
14808 F: drivers/hid/hid-picolcd*
14809
14810 PIDFD API
14811 M: Christian Brauner <christian@brauner.io>
14812 L: linux-kernel@vger.kernel.org
14813 S: Maintained
14814 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14815 F: samples/pidfd/
14816 F: tools/testing/selftests/clone3/
14817 F: tools/testing/selftests/pid_namespace/
14818 F: tools/testing/selftests/pidfd/
14819 K: (?i)pidfd
14820 K: (?i)clone3
14821 K: \b(clone_args|kernel_clone_args)\b
14822
14823 PIN CONTROL SUBSYSTEM
14824 M: Linus Walleij <linus.walleij@linaro.org>
14825 L: linux-gpio@vger.kernel.org
14826 S: Maintained
14827 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14828 F: Documentation/devicetree/bindings/pinctrl/
14829 F: Documentation/driver-api/pin-control.rst
14830 F: drivers/pinctrl/
14831 F: include/linux/pinctrl/
14832
14833 PIN CONTROLLER - AMD
14834 M: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14835 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14836 S: Maintained
14837 F: drivers/pinctrl/pinctrl-amd.c
14838
14839 PIN CONTROLLER - FREESCALE
14840 M: Dong Aisheng <aisheng.dong@nxp.com>
14841 M: Fabio Estevam <festevam@gmail.com>
14842 M: Shawn Guo <shawnguo@kernel.org>
14843 M: Stefan Agner <stefan@agner.ch>
14844 R: Pengutronix Kernel Team <kernel@pengutronix.de>
14845 L: linux-gpio@vger.kernel.org
14846 S: Maintained
14847 F: Documentation/devicetree/bindings/pinctrl/fsl,*
14848 F: drivers/pinctrl/freescale/
14849
14850 PIN CONTROLLER - INTEL
14851 M: Mika Westerberg <mika.westerberg@linux.intel.com>
14852 M: Andy Shevchenko <andy@kernel.org>
14853 S: Maintained
14854 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14855 F: drivers/pinctrl/intel/
14856
14857 PIN CONTROLLER - KEEMBAY
14858 M: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14859 S: Supported
14860 F: drivers/pinctrl/pinctrl-keembay*
14861
14862 PIN CONTROLLER - MEDIATEK
14863 M: Sean Wang <sean.wang@kernel.org>
14864 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14865 S: Maintained
14866 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14867 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14868 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14869 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14870 F: drivers/pinctrl/mediatek/
14871
14872 PIN CONTROLLER - MICROCHIP AT91
14873 M: Ludovic Desroches <ludovic.desroches@microchip.com>
14874 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14875 L: linux-gpio@vger.kernel.org
14876 S: Supported
14877 F: drivers/gpio/gpio-sama5d2-piobu.c
14878 F: drivers/pinctrl/pinctrl-at91*
14879
14880 PIN CONTROLLER - QUALCOMM
14881 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14882 L: linux-arm-msm@vger.kernel.org
14883 S: Maintained
14884 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14885 F: drivers/pinctrl/qcom/
14886
14887 PIN CONTROLLER - RENESAS
14888 M: Geert Uytterhoeven <geert+renesas@glider.be>
14889 L: linux-renesas-soc@vger.kernel.org
14890 S: Supported
14891 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14892 F: Documentation/devicetree/bindings/pinctrl/renesas,*
14893 F: drivers/pinctrl/renesas/
14894
14895 PIN CONTROLLER - SAMSUNG
14896 M: Tomasz Figa <tomasz.figa@gmail.com>
14897 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14898 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14899 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14900 L: linux-samsung-soc@vger.kernel.org
14901 S: Maintained
14902 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
14903 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14904 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14905 F: drivers/pinctrl/samsung/
14906 F: include/dt-bindings/pinctrl/samsung.h
14907
14908 PIN CONTROLLER - SINGLE
14909 M: Tony Lindgren <tony@atomide.com>
14910 M: Haojian Zhuang <haojian.zhuang@linaro.org>
14911 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14912 L: linux-omap@vger.kernel.org
14913 S: Maintained
14914 F: drivers/pinctrl/pinctrl-single.c
14915
14916 PIN CONTROLLER - ST SPEAR
14917 M: Viresh Kumar <vireshk@kernel.org>
14918 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14919 S: Maintained
14920 W: http://www.st.com/spear
14921 F: drivers/pinctrl/spear/
14922
14923 PKTCDVD DRIVER
14924 M: linux-block@vger.kernel.org
14925 S: Orphan
14926 F: drivers/block/pktcdvd.c
14927 F: include/linux/pktcdvd.h
14928 F: include/uapi/linux/pktcdvd.h
14929
14930 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14931 M: Tomasz Duszynski <tduszyns@gmail.com>
14932 S: Maintained
14933 F: Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14934 F: drivers/iio/chemical/pms7003.c
14935
14936 PLDMFW LIBRARY
14937 M: Jacob Keller <jacob.e.keller@intel.com>
14938 S: Maintained
14939 F: Documentation/driver-api/pldmfw/
14940 F: include/linux/pldmfw.h
14941 F: lib/pldmfw/
14942
14943 PLX DMA DRIVER
14944 M: Logan Gunthorpe <logang@deltatee.com>
14945 S: Maintained
14946 F: drivers/dma/plx_dma.c
14947
14948 PM6764TR DRIVER
14949 M: Charles Hsu <hsu.yungteng@gmail.com>
14950 L: linux-hwmon@vger.kernel.org
14951 S: Maintained
14952 F: Documentation/hwmon/pm6764tr.rst
14953 F: drivers/hwmon/pmbus/pm6764tr.c
14954
14955 PM-GRAPH UTILITY
14956 M: "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14957 L: linux-pm@vger.kernel.org
14958 S: Supported
14959 W: https://01.org/pm-graph
14960 B: https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14961 T: git git://github.com/intel/pm-graph
14962 F: tools/power/pm-graph
14963
14964 PMBUS HARDWARE MONITORING DRIVERS
14965 M: Guenter Roeck <linux@roeck-us.net>
14966 L: linux-hwmon@vger.kernel.org
14967 S: Maintained
14968 W: http://hwmon.wiki.kernel.org/
14969 W: http://www.roeck-us.net/linux/drivers/
14970 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14971 F: Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14972 F: Documentation/devicetree/bindings/hwmon/ltc2978.txt
14973 F: Documentation/devicetree/bindings/hwmon/max31785.txt
14974 F: Documentation/hwmon/adm1275.rst
14975 F: Documentation/hwmon/ibm-cffps.rst
14976 F: Documentation/hwmon/ir35221.rst
14977 F: Documentation/hwmon/lm25066.rst
14978 F: Documentation/hwmon/ltc2978.rst
14979 F: Documentation/hwmon/ltc3815.rst
14980 F: Documentation/hwmon/max16064.rst
14981 F: Documentation/hwmon/max20751.rst
14982 F: Documentation/hwmon/max31785.rst
14983 F: Documentation/hwmon/max34440.rst
14984 F: Documentation/hwmon/max8688.rst
14985 F: Documentation/hwmon/pmbus-core.rst
14986 F: Documentation/hwmon/pmbus.rst
14987 F: Documentation/hwmon/tps40422.rst
14988 F: Documentation/hwmon/ucd9000.rst
14989 F: Documentation/hwmon/ucd9200.rst
14990 F: Documentation/hwmon/zl6100.rst
14991 F: drivers/hwmon/pmbus/
14992 F: include/linux/pmbus.h
14993
14994 PMC SIERRA MaxRAID DRIVER
14995 L: linux-scsi@vger.kernel.org
14996 S: Orphan
14997 W: http://www.pmc-sierra.com/
14998 F: drivers/scsi/pmcraid.*
14999
15000 PMC SIERRA PM8001 DRIVER
15001 M: Jack Wang <jinpu.wang@cloud.ionos.com>
15002 L: linux-scsi@vger.kernel.org
15003 S: Supported
15004 F: drivers/scsi/pm8001/
15005
15006 PNI RM3100 IIO DRIVER
15007 M: Song Qiang <songqiang1304521@gmail.com>
15008 L: linux-iio@vger.kernel.org
15009 S: Maintained
15010 F: Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15011 F: drivers/iio/magnetometer/rm3100*
15012
15013 PNP SUPPORT
15014 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15015 L: linux-acpi@vger.kernel.org
15016 S: Maintained
15017 F: drivers/pnp/
15018 F: include/linux/pnp.h
15019
15020 POSIX CLOCKS and TIMERS
15021 M: Thomas Gleixner <tglx@linutronix.de>
15022 L: linux-kernel@vger.kernel.org
15023 S: Maintained
15024 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15025 F: fs/timerfd.c
15026 F: include/linux/time_namespace.h
15027 F: include/linux/timer*
15028 F: kernel/time/*timer*
15029 F: kernel/time/namespace.c
15030
15031 POWER MANAGEMENT CORE
15032 M: "Rafael J. Wysocki" <rafael@kernel.org>
15033 L: linux-pm@vger.kernel.org
15034 S: Supported
15035 B: https://bugzilla.kernel.org
15036 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15037 F: drivers/base/power/
15038 F: drivers/powercap/
15039 F: include/linux/intel_rapl.h
15040 F: include/linux/pm.h
15041 F: include/linux/pm_*
15042 F: include/linux/powercap.h
15043 F: kernel/configs/nopm.config
15044
15045 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15046 M: Daniel Lezcano <daniel.lezcano@kernel.org>
15047 L: linux-pm@vger.kernel.org
15048 S: Supported
15049 B: https://bugzilla.kernel.org
15050 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15051 F: drivers/powercap/dtpm*
15052 F: include/linux/dtpm.h
15053
15054 POWER STATE COORDINATION INTERFACE (PSCI)
15055 M: Mark Rutland <mark.rutland@arm.com>
15056 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15057 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15058 S: Maintained
15059 F: drivers/firmware/psci/
15060 F: include/linux/psci.h
15061 F: include/uapi/linux/psci.h
15062
15063 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15064 M: Sebastian Reichel <sre@kernel.org>
15065 L: linux-pm@vger.kernel.org
15066 S: Maintained
15067 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15068 F: Documentation/ABI/testing/sysfs-class-power
15069 F: Documentation/devicetree/bindings/power/supply/
15070 F: drivers/power/supply/
15071 F: include/linux/power/
15072 F: include/linux/power_supply.h
15073
15074 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15075 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15076 L: linuxppc-dev@lists.ozlabs.org
15077 S: Maintained
15078 F: drivers/char/powernv-op-panel.c
15079
15080 PPP OVER ATM (RFC 2364)
15081 M: Mitchell Blank Jr <mitch@sfgoth.com>
15082 S: Maintained
15083 F: include/uapi/linux/atmppp.h
15084 F: net/atm/pppoatm.c
15085
15086 PPP OVER ETHERNET
15087 M: Michal Ostrowski <mostrows@earthlink.net>
15088 S: Maintained
15089 F: drivers/net/ppp/pppoe.c
15090 F: drivers/net/ppp/pppox.c
15091
15092 PPP OVER L2TP
15093 M: James Chapman <jchapman@katalix.com>
15094 S: Maintained
15095 F: include/linux/if_pppol2tp.h
15096 F: include/uapi/linux/if_pppol2tp.h
15097 F: net/l2tp/l2tp_ppp.c
15098
15099 PPP PROTOCOL DRIVERS AND COMPRESSORS
15100 M: Paul Mackerras <paulus@samba.org>
15101 L: linux-ppp@vger.kernel.org
15102 S: Maintained
15103 F: drivers/net/ppp/ppp_*
15104
15105 PPS SUPPORT
15106 M: Rodolfo Giometti <giometti@enneenne.com>
15107 L: linuxpps@ml.enneenne.com (subscribers-only)
15108 S: Maintained
15109 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
15110 F: Documentation/ABI/testing/sysfs-pps
15111 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
15112 F: Documentation/driver-api/pps.rst
15113 F: drivers/pps/
15114 F: include/linux/pps*.h
15115 F: include/uapi/linux/pps.h
15116
15117 PPTP DRIVER
15118 M: Dmitry Kozlov <xeb@mail.ru>
15119 L: netdev@vger.kernel.org
15120 S: Maintained
15121 W: http://sourceforge.net/projects/accel-pptp
15122 F: drivers/net/ppp/pptp.c
15123
15124 PRESSURE STALL INFORMATION (PSI)
15125 M: Johannes Weiner <hannes@cmpxchg.org>
15126 S: Maintained
15127 F: include/linux/psi*
15128 F: kernel/sched/psi.c
15129
15130 PRINTK
15131 M: Petr Mladek <pmladek@suse.com>
15132 M: Sergey Senozhatsky <senozhatsky@chromium.org>
15133 R: Steven Rostedt <rostedt@goodmis.org>
15134 R: John Ogness <john.ogness@linutronix.de>
15135 S: Maintained
15136 F: include/linux/printk.h
15137 F: kernel/printk/
15138
15139 PRINTK INDEXING
15140 R: Chris Down <chris@chrisdown.name>
15141 S: Maintained
15142 F: kernel/printk/index.c
15143
15144 PROC FILESYSTEM
15145 L: linux-kernel@vger.kernel.org
15146 L: linux-fsdevel@vger.kernel.org
15147 S: Maintained
15148 F: Documentation/filesystems/proc.rst
15149 F: fs/proc/
15150 F: include/linux/proc_fs.h
15151 F: tools/testing/selftests/proc/
15152
15153 PROC SYSCTL
15154 M: Luis Chamberlain <mcgrof@kernel.org>
15155 M: Kees Cook <keescook@chromium.org>
15156 M: Iurii Zaikin <yzaikin@google.com>
15157 L: linux-kernel@vger.kernel.org
15158 L: linux-fsdevel@vger.kernel.org
15159 S: Maintained
15160 F: fs/proc/proc_sysctl.c
15161 F: include/linux/sysctl.h
15162 F: kernel/sysctl-test.c
15163 F: kernel/sysctl.c
15164 F: tools/testing/selftests/sysctl/
15165
15166 PS3 NETWORK SUPPORT
15167 M: Geoff Levand <geoff@infradead.org>
15168 L: netdev@vger.kernel.org
15169 L: linuxppc-dev@lists.ozlabs.org
15170 S: Maintained
15171 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
15172
15173 PS3 PLATFORM SUPPORT
15174 M: Geoff Levand <geoff@infradead.org>
15175 L: linuxppc-dev@lists.ozlabs.org
15176 S: Maintained
15177 F: arch/powerpc/boot/ps3*
15178 F: arch/powerpc/include/asm/lv1call.h
15179 F: arch/powerpc/include/asm/ps3*.h
15180 F: arch/powerpc/platforms/ps3/
15181 F: drivers/*/ps3*
15182 F: drivers/ps3/
15183 F: drivers/rtc/rtc-ps3.c
15184 F: drivers/usb/host/*ps3.c
15185 F: sound/ppc/snd_ps3*
15186
15187 PS3VRAM DRIVER
15188 M: Jim Paris <jim@jtan.com>
15189 M: Geoff Levand <geoff@infradead.org>
15190 L: linuxppc-dev@lists.ozlabs.org
15191 S: Maintained
15192 F: drivers/block/ps3vram.c
15193
15194 PSAMPLE PACKET SAMPLING SUPPORT
15195 M: Yotam Gigi <yotam.gi@gmail.com>
15196 S: Maintained
15197 F: include/net/psample.h
15198 F: include/uapi/linux/psample.h
15199 F: net/psample
15200
15201 PSTORE FILESYSTEM
15202 M: Kees Cook <keescook@chromium.org>
15203 M: Anton Vorontsov <anton@enomsg.org>
15204 M: Colin Cross <ccross@android.com>
15205 M: Tony Luck <tony.luck@intel.com>
15206 S: Maintained
15207 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15208 F: Documentation/admin-guide/ramoops.rst
15209 F: Documentation/admin-guide/pstore-blk.rst
15210 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15211 F: drivers/acpi/apei/erst.c
15212 F: drivers/firmware/efi/efi-pstore.c
15213 F: fs/pstore/
15214 F: include/linux/pstore*
15215 K: \b(pstore|ramoops)
15216
15217 PTP HARDWARE CLOCK SUPPORT
15218 M: Richard Cochran <richardcochran@gmail.com>
15219 L: netdev@vger.kernel.org
15220 S: Maintained
15221 W: http://linuxptp.sourceforge.net/
15222 F: Documentation/ABI/testing/sysfs-ptp
15223 F: Documentation/driver-api/ptp.rst
15224 F: drivers/net/phy/dp83640*
15225 F: drivers/ptp/*
15226 F: include/linux/ptp_cl*
15227
15228 PTP VIRTUAL CLOCK SUPPORT
15229 M: Yangbo Lu <yangbo.lu@nxp.com>
15230 L: netdev@vger.kernel.org
15231 S: Maintained
15232 F: drivers/ptp/ptp_vclock.c
15233 F: net/ethtool/phc_vclocks.c
15234
15235 PTRACE SUPPORT
15236 M: Oleg Nesterov <oleg@redhat.com>
15237 S: Maintained
15238 F: arch/*/*/ptrace*.c
15239 F: arch/*/include/asm/ptrace*.h
15240 F: arch/*/ptrace*.c
15241 F: include/asm-generic/syscall.h
15242 F: include/linux/ptrace.h
15243 F: include/linux/regset.h
15244 F: include/linux/tracehook.h
15245 F: include/uapi/linux/ptrace.h
15246 F: include/uapi/linux/ptrace.h
15247 F: kernel/ptrace.c
15248
15249 PULSE8-CEC DRIVER
15250 M: Hans Verkuil <hverkuil@xs4all.nl>
15251 L: linux-media@vger.kernel.org
15252 S: Maintained
15253 T: git git://linuxtv.org/media_tree.git
15254 F: Documentation/admin-guide/media/pulse8-cec.rst
15255 F: drivers/media/cec/usb/pulse8/
15256
15257 PVRUSB2 VIDEO4LINUX DRIVER
15258 M: Mike Isely <isely@pobox.com>
15259 L: pvrusb2@isely.net (subscribers-only)
15260 L: linux-media@vger.kernel.org
15261 S: Maintained
15262 W: http://www.isely.net/pvrusb2/
15263 T: git git://linuxtv.org/media_tree.git
15264 F: Documentation/driver-api/media/drivers/pvrusb2*
15265 F: drivers/media/usb/pvrusb2/
15266
15267 PWC WEBCAM DRIVER
15268 M: Hans Verkuil <hverkuil@xs4all.nl>
15269 L: linux-media@vger.kernel.org
15270 S: Odd Fixes
15271 T: git git://linuxtv.org/media_tree.git
15272 F: drivers/media/usb/pwc/*
15273 F: include/trace/events/pwc.h
15274
15275 PWM FAN DRIVER
15276 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15277 L: linux-hwmon@vger.kernel.org
15278 S: Supported
15279 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15280 F: Documentation/hwmon/pwm-fan.rst
15281 F: drivers/hwmon/pwm-fan.c
15282
15283 PWM IR Transmitter
15284 M: Sean Young <sean@mess.org>
15285 L: linux-media@vger.kernel.org
15286 S: Maintained
15287 F: drivers/media/rc/pwm-ir-tx.c
15288
15289 PWM SUBSYSTEM
15290 M: Thierry Reding <thierry.reding@gmail.com>
15291 R: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15292 M: Lee Jones <lee.jones@linaro.org>
15293 L: linux-pwm@vger.kernel.org
15294 S: Maintained
15295 Q: https://patchwork.ozlabs.org/project/linux-pwm/list/
15296 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15297 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15298 F: Documentation/devicetree/bindings/pwm/
15299 F: Documentation/driver-api/pwm.rst
15300 F: drivers/gpio/gpio-mvebu.c
15301 F: drivers/pwm/
15302 F: drivers/video/backlight/pwm_bl.c
15303 F: include/linux/pwm.h
15304 F: include/linux/pwm_backlight.h
15305 K: pwm_(config|apply_state|ops)
15306
15307 PXA GPIO DRIVER
15308 M: Robert Jarzmik <robert.jarzmik@free.fr>
15309 L: linux-gpio@vger.kernel.org
15310 S: Maintained
15311 F: drivers/gpio/gpio-pxa.c
15312
15313 PXA MMCI DRIVER
15314 S: Orphan
15315
15316 PXA RTC DRIVER
15317 M: Robert Jarzmik <robert.jarzmik@free.fr>
15318 L: linux-rtc@vger.kernel.org
15319 S: Maintained
15320
15321 PXA2xx/PXA3xx SUPPORT
15322 M: Daniel Mack <daniel@zonque.org>
15323 M: Haojian Zhuang <haojian.zhuang@gmail.com>
15324 M: Robert Jarzmik <robert.jarzmik@free.fr>
15325 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15326 S: Maintained
15327 T: git git://github.com/hzhuang1/linux.git
15328 T: git git://github.com/rjarzmik/linux.git
15329 F: arch/arm/boot/dts/pxa*
15330 F: arch/arm/mach-pxa/
15331 F: drivers/dma/pxa*
15332 F: drivers/pcmcia/pxa2xx*
15333 F: drivers/pinctrl/pxa/
15334 F: drivers/spi/spi-pxa2xx*
15335 F: drivers/usb/gadget/udc/pxa2*
15336 F: include/sound/pxa2xx-lib.h
15337 F: sound/arm/pxa*
15338 F: sound/soc/pxa/
15339
15340 QAT DRIVER
15341 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15342 L: qat-linux@intel.com
15343 S: Supported
15344 F: drivers/crypto/qat/
15345
15346 QCOM AUDIO (ASoC) DRIVERS
15347 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15348 M: Banajit Goswami <bgoswami@codeaurora.org>
15349 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15350 S: Supported
15351 F: sound/soc/codecs/lpass-va-macro.c
15352 F: sound/soc/codecs/lpass-wsa-macro.*
15353 F: sound/soc/codecs/msm8916-wcd-analog.c
15354 F: sound/soc/codecs/msm8916-wcd-digital.c
15355 F: sound/soc/codecs/wcd9335.*
15356 F: sound/soc/codecs/wcd934x.c
15357 F: sound/soc/codecs/wcd-clsh-v2.*
15358 F: sound/soc/codecs/wsa881x.c
15359 F: sound/soc/qcom/
15360
15361 QCOM IPA DRIVER
15362 M: Alex Elder <elder@kernel.org>
15363 L: netdev@vger.kernel.org
15364 S: Supported
15365 F: drivers/net/ipa/
15366
15367 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15368 M: Gabriel Somlo <somlo@cmu.edu>
15369 M: "Michael S. Tsirkin" <mst@redhat.com>
15370 L: qemu-devel@nongnu.org
15371 S: Maintained
15372 F: drivers/firmware/qemu_fw_cfg.c
15373 F: include/uapi/linux/qemu_fw_cfg.h
15374
15375 QIB DRIVER
15376 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15377 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15378 L: linux-rdma@vger.kernel.org
15379 S: Supported
15380 F: drivers/infiniband/hw/qib/
15381
15382 QLOGIC QL41xxx FCOE DRIVER
15383 M: Saurav Kashyap <skashyap@marvell.com>
15384 M: Javed Hasan <jhasan@marvell.com>
15385 M: GR-QLogic-Storage-Upstream@marvell.com
15386 L: linux-scsi@vger.kernel.org
15387 S: Supported
15388 F: drivers/scsi/qedf/
15389
15390 QLOGIC QL41xxx ISCSI DRIVER
15391 M: Nilesh Javali <njavali@marvell.com>
15392 M: Manish Rangankar <mrangankar@marvell.com>
15393 M: GR-QLogic-Storage-Upstream@marvell.com
15394 L: linux-scsi@vger.kernel.org
15395 S: Supported
15396 F: drivers/scsi/qedi/
15397
15398 QLOGIC QL4xxx ETHERNET DRIVER
15399 M: Ariel Elior <aelior@marvell.com>
15400 M: GR-everest-linux-l2@marvell.com
15401 L: netdev@vger.kernel.org
15402 S: Supported
15403 F: drivers/net/ethernet/qlogic/qed/
15404 F: drivers/net/ethernet/qlogic/qede/
15405 F: include/linux/qed/
15406
15407 QLOGIC QL4xxx RDMA DRIVER
15408 M: Michal Kalderon <mkalderon@marvell.com>
15409 M: Ariel Elior <aelior@marvell.com>
15410 L: linux-rdma@vger.kernel.org
15411 S: Supported
15412 F: drivers/infiniband/hw/qedr/
15413 F: include/uapi/rdma/qedr-abi.h
15414
15415 QLOGIC QLA1280 SCSI DRIVER
15416 M: Michael Reed <mdr@sgi.com>
15417 L: linux-scsi@vger.kernel.org
15418 S: Maintained
15419 F: drivers/scsi/qla1280.[ch]
15420
15421 QLOGIC QLA2XXX FC-SCSI DRIVER
15422 M: Nilesh Javali <njavali@marvell.com>
15423 M: GR-QLogic-Storage-Upstream@marvell.com
15424 L: linux-scsi@vger.kernel.org
15425 S: Supported
15426 F: drivers/scsi/qla2xxx/
15427
15428 QLOGIC QLA3XXX NETWORK DRIVER
15429 M: GR-Linux-NIC-Dev@marvell.com
15430 L: netdev@vger.kernel.org
15431 S: Supported
15432 F: drivers/net/ethernet/qlogic/qla3xxx.*
15433
15434 QLOGIC QLA4XXX iSCSI DRIVER
15435 M: Nilesh Javali <njavali@marvell.com>
15436 M: Manish Rangankar <mrangankar@marvell.com>
15437 M: GR-QLogic-Storage-Upstream@marvell.com
15438 L: linux-scsi@vger.kernel.org
15439 S: Supported
15440 F: drivers/scsi/qla4xxx/
15441
15442 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15443 M: Shahed Shaikh <shshaikh@marvell.com>
15444 M: Manish Chopra <manishc@marvell.com>
15445 M: GR-Linux-NIC-Dev@marvell.com
15446 L: netdev@vger.kernel.org
15447 S: Supported
15448 F: drivers/net/ethernet/qlogic/qlcnic/
15449
15450 QLOGIC QLGE 10Gb ETHERNET DRIVER
15451 M: Manish Chopra <manishc@marvell.com>
15452 M: GR-Linux-NIC-Dev@marvell.com
15453 M: Coiby Xu <coiby.xu@gmail.com>
15454 L: netdev@vger.kernel.org
15455 S: Supported
15456 F: Documentation/networking/device_drivers/qlogic/qlge.rst
15457 F: drivers/staging/qlge/
15458
15459 QM1D1B0004 MEDIA DRIVER
15460 M: Akihiro Tsukada <tskd08@gmail.com>
15461 L: linux-media@vger.kernel.org
15462 S: Odd Fixes
15463 F: drivers/media/tuners/qm1d1b0004*
15464
15465 QM1D1C0042 MEDIA DRIVER
15466 M: Akihiro Tsukada <tskd08@gmail.com>
15467 L: linux-media@vger.kernel.org
15468 S: Odd Fixes
15469 F: drivers/media/tuners/qm1d1c0042*
15470
15471 QNX4 FILESYSTEM
15472 M: Anders Larsen <al@alarsen.net>
15473 S: Maintained
15474 W: http://www.alarsen.net/linux/qnx4fs/
15475 F: fs/qnx4/
15476 F: include/uapi/linux/qnx4_fs.h
15477 F: include/uapi/linux/qnxtypes.h
15478
15479 QORIQ DPAA2 FSL-MC BUS DRIVER
15480 M: Stuart Yoder <stuyoder@gmail.com>
15481 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
15482 L: linux-kernel@vger.kernel.org
15483 S: Maintained
15484 F: Documentation/ABI/stable/sysfs-bus-fsl-mc
15485 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15486 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15487 F: drivers/bus/fsl-mc/
15488 F: include/uapi/linux/fsl_mc.h
15489
15490 QT1010 MEDIA DRIVER
15491 M: Antti Palosaari <crope@iki.fi>
15492 L: linux-media@vger.kernel.org
15493 S: Maintained
15494 W: https://linuxtv.org
15495 W: http://palosaari.fi/linux/
15496 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15497 T: git git://linuxtv.org/anttip/media_tree.git
15498 F: drivers/media/tuners/qt1010*
15499
15500 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15501 M: Kalle Valo <kvalo@codeaurora.org>
15502 L: ath10k@lists.infradead.org
15503 S: Supported
15504 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15505 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15506 F: drivers/net/wireless/ath/ath10k/
15507
15508 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15509 M: Kalle Valo <kvalo@codeaurora.org>
15510 L: ath11k@lists.infradead.org
15511 S: Supported
15512 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15513 F: drivers/net/wireless/ath/ath11k/
15514
15515 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15516 M: ath9k-devel@qca.qualcomm.com
15517 L: linux-wireless@vger.kernel.org
15518 S: Supported
15519 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15520 F: drivers/net/wireless/ath/ath9k/
15521
15522 QUALCOMM CAMERA SUBSYSTEM DRIVER
15523 M: Robert Foss <robert.foss@linaro.org>
15524 M: Todor Tomov <todor.too@gmail.com>
15525 L: linux-media@vger.kernel.org
15526 S: Maintained
15527 F: Documentation/admin-guide/media/qcom_camss.rst
15528 F: Documentation/devicetree/bindings/media/*camss*
15529 F: drivers/media/platform/qcom/camss/
15530
15531 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15532 M: Niklas Cassel <nks@flawful.org>
15533 L: linux-pm@vger.kernel.org
15534 L: linux-arm-msm@vger.kernel.org
15535 S: Maintained
15536 F: Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15537 F: drivers/soc/qcom/cpr.c
15538
15539 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15540 M: Ilia Lin <ilia.lin@kernel.org>
15541 L: linux-pm@vger.kernel.org
15542 S: Maintained
15543 F: Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15544 F: drivers/cpufreq/qcom-cpufreq-nvmem.c
15545
15546 QUALCOMM CRYPTO DRIVERS
15547 M: Thara Gopinath <thara.gopinath@linaro.org>
15548 L: linux-crypto@vger.kernel.org
15549 L: linux-arm-msm@vger.kernel.org
15550 S: Maintained
15551 F: drivers/crypto/qce/
15552
15553 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15554 M: Timur Tabi <timur@kernel.org>
15555 L: netdev@vger.kernel.org
15556 S: Maintained
15557 F: drivers/net/ethernet/qualcomm/emac/
15558
15559 QUALCOMM ETHQOS ETHERNET DRIVER
15560 M: Vinod Koul <vkoul@kernel.org>
15561 L: netdev@vger.kernel.org
15562 S: Maintained
15563 F: Documentation/devicetree/bindings/net/qcom,ethqos.txt
15564 F: drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15565
15566 QUALCOMM GENERIC INTERFACE I2C DRIVER
15567 M: Akash Asthana <akashast@codeaurora.org>
15568 M: Mukesh Savaliya <msavaliy@codeaurora.org>
15569 L: linux-i2c@vger.kernel.org
15570 L: linux-arm-msm@vger.kernel.org
15571 S: Supported
15572 F: drivers/i2c/busses/i2c-qcom-geni.c
15573
15574 QUALCOMM HEXAGON ARCHITECTURE
15575 M: Brian Cain <bcain@codeaurora.org>
15576 L: linux-hexagon@vger.kernel.org
15577 S: Supported
15578 F: arch/hexagon/
15579
15580 QUALCOMM HIDMA DRIVER
15581 M: Sinan Kaya <okaya@kernel.org>
15582 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15583 L: linux-arm-msm@vger.kernel.org
15584 L: dmaengine@vger.kernel.org
15585 S: Supported
15586 F: drivers/dma/qcom/hidma*
15587
15588 QUALCOMM I2C CCI DRIVER
15589 M: Loic Poulain <loic.poulain@linaro.org>
15590 M: Robert Foss <robert.foss@linaro.org>
15591 L: linux-i2c@vger.kernel.org
15592 L: linux-arm-msm@vger.kernel.org
15593 S: Maintained
15594 F: Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15595 F: drivers/i2c/busses/i2c-qcom-cci.c
15596
15597 QUALCOMM IOMMU
15598 M: Rob Clark <robdclark@gmail.com>
15599 L: iommu@lists.linux-foundation.org
15600 L: linux-arm-msm@vger.kernel.org
15601 S: Maintained
15602 F: drivers/iommu/arm/arm-smmu/qcom_iommu.c
15603
15604 QUALCOMM IPC ROUTER (QRTR) DRIVER
15605 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15606 L: linux-arm-msm@vger.kernel.org
15607 S: Maintained
15608 F: include/trace/events/qrtr.h
15609 F: include/uapi/linux/qrtr.h
15610 F: net/qrtr/
15611
15612 QUALCOMM IPCC MAILBOX DRIVER
15613 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15614 L: linux-arm-msm@vger.kernel.org
15615 S: Supported
15616 F: Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15617 F: drivers/mailbox/qcom-ipcc.c
15618 F: include/dt-bindings/mailbox/qcom-ipcc.h
15619
15620 QUALCOMM IPQ4019 USB PHY DRIVER
15621 M: Robert Marko <robert.marko@sartura.hr>
15622 M: Luka Perkov <luka.perkov@sartura.hr>
15623 L: linux-arm-msm@vger.kernel.org
15624 S: Maintained
15625 F: Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15626 F: drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15627
15628 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15629 M: Robert Marko <robert.marko@sartura.hr>
15630 M: Luka Perkov <luka.perkov@sartura.hr>
15631 L: linux-arm-msm@vger.kernel.org
15632 S: Maintained
15633 F: Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15634 F: drivers/regulator/vqmmc-ipq4019-regulator.c
15635
15636 QUALCOMM RMNET DRIVER
15637 M: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15638 M: Sean Tranchetti <stranche@codeaurora.org>
15639 L: netdev@vger.kernel.org
15640 S: Maintained
15641 F: Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15642 F: drivers/net/ethernet/qualcomm/rmnet/
15643 F: include/linux/if_rmnet.h
15644
15645 QUALCOMM TSENS THERMAL DRIVER
15646 M: Amit Kucheria <amitk@kernel.org>
15647 M: Thara Gopinath <thara.gopinath@linaro.org>
15648 L: linux-pm@vger.kernel.org
15649 L: linux-arm-msm@vger.kernel.org
15650 S: Maintained
15651 F: Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15652 F: drivers/thermal/qcom/
15653
15654 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15655 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
15656 L: linux-media@vger.kernel.org
15657 L: linux-arm-msm@vger.kernel.org
15658 S: Maintained
15659 T: git git://linuxtv.org/media_tree.git
15660 F: Documentation/devicetree/bindings/media/*venus*
15661 F: drivers/media/platform/qcom/venus/
15662
15663 QUALCOMM WCN36XX WIRELESS DRIVER
15664 M: Kalle Valo <kvalo@codeaurora.org>
15665 L: wcn36xx@lists.infradead.org
15666 S: Supported
15667 W: https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15668 T: git git://github.com/KrasnikovEugene/wcn36xx.git
15669 F: drivers/net/wireless/ath/wcn36xx/
15670
15671 QUANTENNA QTNFMAC WIRELESS DRIVER
15672 M: Igor Mitsyanko <imitsyanko@quantenna.com>
15673 R: Sergey Matyukevich <geomatsi@gmail.com>
15674 L: linux-wireless@vger.kernel.org
15675 S: Maintained
15676 F: drivers/net/wireless/quantenna
15677
15678 RADEON and AMDGPU DRM DRIVERS
15679 M: Alex Deucher <alexander.deucher@amd.com>
15680 M: Christian König <christian.koenig@amd.com>
15681 M: Pan, Xinhui <Xinhui.Pan@amd.com>
15682 L: amd-gfx@lists.freedesktop.org
15683 S: Supported
15684 T: git https://gitlab.freedesktop.org/agd5f/linux.git
15685 B: https://gitlab.freedesktop.org/drm/amd/-/issues
15686 C: irc://irc.oftc.net/radeon
15687 F: drivers/gpu/drm/amd/
15688 F: drivers/gpu/drm/radeon/
15689 F: include/uapi/drm/amdgpu_drm.h
15690 F: include/uapi/drm/radeon_drm.h
15691
15692 RADEON FRAMEBUFFER DISPLAY DRIVER
15693 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
15694 L: linux-fbdev@vger.kernel.org
15695 S: Maintained
15696 F: drivers/video/fbdev/aty/radeon*
15697 F: include/uapi/linux/radeonfb.h
15698
15699 RADIOSHARK RADIO DRIVER
15700 M: Hans Verkuil <hverkuil@xs4all.nl>
15701 L: linux-media@vger.kernel.org
15702 S: Maintained
15703 T: git git://linuxtv.org/media_tree.git
15704 F: drivers/media/radio/radio-shark.c
15705
15706 RADIOSHARK2 RADIO DRIVER
15707 M: Hans Verkuil <hverkuil@xs4all.nl>
15708 L: linux-media@vger.kernel.org
15709 S: Maintained
15710 T: git git://linuxtv.org/media_tree.git
15711 F: drivers/media/radio/radio-shark2.c
15712 F: drivers/media/radio/radio-tea5777.c
15713
15714 RADOS BLOCK DEVICE (RBD)
15715 M: Ilya Dryomov <idryomov@gmail.com>
15716 R: Dongsheng Yang <dongsheng.yang@easystack.cn>
15717 L: ceph-devel@vger.kernel.org
15718 S: Supported
15719 W: http://ceph.com/
15720 T: git git://github.com/ceph/ceph-client.git
15721 F: Documentation/ABI/testing/sysfs-bus-rbd
15722 F: drivers/block/rbd.c
15723 F: drivers/block/rbd_types.h
15724
15725 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15726 M: Paul Mackerras <paulus@samba.org>
15727 L: linux-fbdev@vger.kernel.org
15728 S: Maintained
15729 F: drivers/video/fbdev/aty/aty128fb.c
15730
15731 RAINSHADOW-CEC DRIVER
15732 M: Hans Verkuil <hverkuil@xs4all.nl>
15733 L: linux-media@vger.kernel.org
15734 S: Maintained
15735 T: git git://linuxtv.org/media_tree.git
15736 F: drivers/media/cec/usb/rainshadow/
15737
15738 RALINK MIPS ARCHITECTURE
15739 M: John Crispin <john@phrozen.org>
15740 L: linux-mips@vger.kernel.org
15741 S: Maintained
15742 F: arch/mips/ralink
15743
15744 RALINK RT2X00 WIRELESS LAN DRIVER
15745 M: Stanislaw Gruszka <stf_xl@wp.pl>
15746 M: Helmut Schaa <helmut.schaa@googlemail.com>
15747 L: linux-wireless@vger.kernel.org
15748 S: Maintained
15749 F: drivers/net/wireless/ralink/rt2x00/
15750
15751 RAMDISK RAM BLOCK DEVICE DRIVER
15752 M: Jens Axboe <axboe@kernel.dk>
15753 S: Maintained
15754 F: Documentation/admin-guide/blockdev/ramdisk.rst
15755 F: drivers/block/brd.c
15756
15757 RANCHU VIRTUAL BOARD FOR MIPS
15758 M: Miodrag Dinic <miodrag.dinic@mips.com>
15759 L: linux-mips@vger.kernel.org
15760 S: Supported
15761 F: arch/mips/configs/generic/board-ranchu.config
15762 F: arch/mips/generic/board-ranchu.c
15763
15764 RANDOM NUMBER DRIVER
15765 M: "Theodore Ts'o" <tytso@mit.edu>
15766 S: Maintained
15767 F: drivers/char/random.c
15768
15769 RAPIDIO SUBSYSTEM
15770 M: Matt Porter <mporter@kernel.crashing.org>
15771 M: Alexandre Bounine <alex.bou9@gmail.com>
15772 S: Maintained
15773 F: drivers/rapidio/
15774
15775 RAS INFRASTRUCTURE
15776 M: Tony Luck <tony.luck@intel.com>
15777 M: Borislav Petkov <bp@alien8.de>
15778 L: linux-edac@vger.kernel.org
15779 S: Maintained
15780 F: Documentation/admin-guide/ras.rst
15781 F: drivers/ras/
15782 F: include/linux/ras.h
15783 F: include/ras/ras_event.h
15784
15785 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15786 L: linux-wireless@vger.kernel.org
15787 S: Orphan
15788 F: drivers/net/wireless/ray*
15789
15790 RC-CORE / LIRC FRAMEWORK
15791 M: Sean Young <sean@mess.org>
15792 L: linux-media@vger.kernel.org
15793 S: Maintained
15794 W: http://linuxtv.org
15795 T: git git://linuxtv.org/media_tree.git
15796 F: Documentation/driver-api/media/rc-core.rst
15797 F: Documentation/userspace-api/media/rc/
15798 F: drivers/media/rc/
15799 F: include/media/rc-map.h
15800 F: include/media/rc-core.h
15801 F: include/uapi/linux/lirc.h
15802
15803 RCMM REMOTE CONTROLS DECODER
15804 M: Patrick Lerda <patrick9876@free.fr>
15805 S: Maintained
15806 F: drivers/media/rc/ir-rcmm-decoder.c
15807
15808 RCUTORTURE TEST FRAMEWORK
15809 M: "Paul E. McKenney" <paulmck@kernel.org>
15810 M: Josh Triplett <josh@joshtriplett.org>
15811 R: Steven Rostedt <rostedt@goodmis.org>
15812 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15813 R: Lai Jiangshan <jiangshanlai@gmail.com>
15814 L: rcu@vger.kernel.org
15815 S: Supported
15816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15817 F: tools/testing/selftests/rcutorture
15818
15819 RDACM20 Camera Sensor
15820 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15821 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15822 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15823 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15824 L: linux-media@vger.kernel.org
15825 S: Maintained
15826 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15827 F: drivers/media/i2c/max9271.c
15828 F: drivers/media/i2c/max9271.h
15829 F: drivers/media/i2c/rdacm20.c
15830
15831 RDACM21 Camera Sensor
15832 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15833 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15834 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15835 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15836 L: linux-media@vger.kernel.org
15837 S: Maintained
15838 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15839 F: drivers/media/i2c/max9271.c
15840 F: drivers/media/i2c/max9271.h
15841 F: drivers/media/i2c/rdacm21.c
15842
15843 RDC R-321X SoC
15844 M: Florian Fainelli <florian@openwrt.org>
15845 S: Maintained
15846
15847 RDC R6040 FAST ETHERNET DRIVER
15848 M: Florian Fainelli <f.fainelli@gmail.com>
15849 L: netdev@vger.kernel.org
15850 S: Maintained
15851 F: drivers/net/ethernet/rdc/r6040.c
15852
15853 RDMAVT - RDMA verbs software
15854 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15855 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15856 L: linux-rdma@vger.kernel.org
15857 S: Supported
15858 F: drivers/infiniband/sw/rdmavt
15859
15860 RDS - RELIABLE DATAGRAM SOCKETS
15861 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
15862 L: netdev@vger.kernel.org
15863 L: linux-rdma@vger.kernel.org
15864 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
15865 S: Supported
15866 W: https://oss.oracle.com/projects/rds/
15867 F: Documentation/networking/rds.rst
15868 F: net/rds/
15869
15870 RDT - RESOURCE ALLOCATION
15871 M: Fenghua Yu <fenghua.yu@intel.com>
15872 M: Reinette Chatre <reinette.chatre@intel.com>
15873 L: linux-kernel@vger.kernel.org
15874 S: Supported
15875 F: Documentation/x86/resctrl*
15876 F: arch/x86/include/asm/resctrl.h
15877 F: arch/x86/kernel/cpu/resctrl/
15878 F: tools/testing/selftests/resctrl/
15879
15880 READ-COPY UPDATE (RCU)
15881 M: "Paul E. McKenney" <paulmck@kernel.org>
15882 M: Josh Triplett <josh@joshtriplett.org>
15883 R: Steven Rostedt <rostedt@goodmis.org>
15884 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15885 R: Lai Jiangshan <jiangshanlai@gmail.com>
15886 R: Joel Fernandes <joel@joelfernandes.org>
15887 L: rcu@vger.kernel.org
15888 S: Supported
15889 W: http://www.rdrop.com/users/paulmck/RCU/
15890 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15891 F: Documentation/RCU/
15892 F: include/linux/rcu*
15893 F: kernel/rcu/
15894 X: Documentation/RCU/torture.rst
15895 X: include/linux/srcu*.h
15896 X: kernel/rcu/srcu*.c
15897
15898 REAL TIME CLOCK (RTC) SUBSYSTEM
15899 M: Alessandro Zummo <a.zummo@towertech.it>
15900 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
15901 L: linux-rtc@vger.kernel.org
15902 S: Maintained
15903 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
15904 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15905 F: Documentation/admin-guide/rtc.rst
15906 F: Documentation/devicetree/bindings/rtc/
15907 F: drivers/rtc/
15908 F: include/linux/platform_data/rtc-*
15909 F: include/linux/rtc.h
15910 F: include/linux/rtc/
15911 F: include/uapi/linux/rtc.h
15912 F: tools/testing/selftests/rtc/
15913
15914 REALTEK AUDIO CODECS
15915 M: Oder Chiou <oder_chiou@realtek.com>
15916 S: Maintained
15917 F: include/sound/rt*.h
15918 F: sound/soc/codecs/rt*
15919
15920 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15921 M: Linus Walleij <linus.walleij@linaro.org>
15922 S: Maintained
15923 F: Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15924 F: drivers/net/dsa/realtek-smi*
15925 F: drivers/net/dsa/rtl83*
15926
15927 REALTEK WIRELESS DRIVER (rtlwifi family)
15928 M: Ping-Ke Shih <pkshih@realtek.com>
15929 L: linux-wireless@vger.kernel.org
15930 S: Maintained
15931 W: https://wireless.wiki.kernel.org/
15932 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15933 F: drivers/net/wireless/realtek/rtlwifi/
15934
15935 REALTEK WIRELESS DRIVER (rtw88)
15936 M: Yan-Hsuan Chuang <tony0620emma@gmail.com>
15937 L: linux-wireless@vger.kernel.org
15938 S: Maintained
15939 F: drivers/net/wireless/realtek/rtw88/
15940
15941 REDPINE WIRELESS DRIVER
15942 M: Amitkumar Karwar <amitkarwar@gmail.com>
15943 M: Siva Rebbagondla <siva8118@gmail.com>
15944 L: linux-wireless@vger.kernel.org
15945 S: Maintained
15946 F: drivers/net/wireless/rsi/
15947
15948 REGISTER MAP ABSTRACTION
15949 M: Mark Brown <broonie@kernel.org>
15950 L: linux-kernel@vger.kernel.org
15951 S: Supported
15952 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15953 F: Documentation/devicetree/bindings/regmap/
15954 F: drivers/base/regmap/
15955 F: include/linux/regmap.h
15956
15957 REISERFS FILE SYSTEM
15958 L: reiserfs-devel@vger.kernel.org
15959 S: Supported
15960 F: fs/reiserfs/
15961
15962 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15963 M: Ohad Ben-Cohen <ohad@wizery.com>
15964 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15965 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15966 L: linux-remoteproc@vger.kernel.org
15967 S: Maintained
15968 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15969 F: Documentation/ABI/testing/sysfs-class-remoteproc
15970 F: Documentation/devicetree/bindings/remoteproc/
15971 F: Documentation/staging/remoteproc.rst
15972 F: drivers/remoteproc/
15973 F: include/linux/remoteproc.h
15974 F: include/linux/remoteproc/
15975
15976 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15977 M: Ohad Ben-Cohen <ohad@wizery.com>
15978 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15979 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15980 L: linux-remoteproc@vger.kernel.org
15981 S: Maintained
15982 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15983 F: Documentation/ABI/testing/sysfs-bus-rpmsg
15984 F: Documentation/staging/rpmsg.rst
15985 F: drivers/rpmsg/
15986 F: include/linux/rpmsg.h
15987 F: include/linux/rpmsg/
15988 F: include/uapi/linux/rpmsg.h
15989 F: samples/rpmsg/
15990
15991 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15992 M: Stephan Gerhold <stephan@gerhold.net>
15993 L: netdev@vger.kernel.org
15994 L: linux-remoteproc@vger.kernel.org
15995 S: Maintained
15996 F: drivers/net/wwan/rpmsg_wwan_ctrl.c
15997
15998 RENESAS CLOCK DRIVERS
15999 M: Geert Uytterhoeven <geert+renesas@glider.be>
16000 L: linux-renesas-soc@vger.kernel.org
16001 S: Supported
16002 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16003 F: Documentation/devicetree/bindings/clock/renesas,*
16004 F: drivers/clk/renesas/
16005
16006 RENESAS EMEV2 I2C DRIVER
16007 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
16008 L: linux-renesas-soc@vger.kernel.org
16009 S: Supported
16010 F: Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16011 F: drivers/i2c/busses/i2c-emev2.c
16012
16013 RENESAS ETHERNET DRIVERS
16014 R: Sergey Shtylyov <s.shtylyov@omp.ru>
16015 L: netdev@vger.kernel.org
16016 L: linux-renesas-soc@vger.kernel.org
16017 F: Documentation/devicetree/bindings/net/renesas,*.yaml
16018 F: drivers/net/ethernet/renesas/
16019 F: include/linux/sh_eth.h
16020
16021 RENESAS R-CAR GYROADC DRIVER
16022 M: Marek Vasut <marek.vasut@gmail.com>
16023 L: linux-iio@vger.kernel.org
16024 S: Supported
16025 F: Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16026 F: drivers/iio/adc/rcar-gyroadc.c
16027
16028 RENESAS R-CAR I2C DRIVERS
16029 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
16030 L: linux-renesas-soc@vger.kernel.org
16031 S: Supported
16032 F: Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16033 F: Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16034 F: drivers/i2c/busses/i2c-rcar.c
16035 F: drivers/i2c/busses/i2c-sh_mobile.c
16036
16037 RENESAS R-CAR THERMAL DRIVERS
16038 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
16039 L: linux-renesas-soc@vger.kernel.org
16040 S: Supported
16041 F: Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16042 F: Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16043 F: drivers/thermal/rcar_gen3_thermal.c
16044 F: drivers/thermal/rcar_thermal.c
16045
16046 RENESAS RIIC DRIVER
16047 M: Chris Brandt <chris.brandt@renesas.com>
16048 L: linux-renesas-soc@vger.kernel.org
16049 S: Supported
16050 F: Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16051 F: drivers/i2c/busses/i2c-riic.c
16052
16053 RENESAS USB PHY DRIVER
16054 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16055 L: linux-renesas-soc@vger.kernel.org
16056 S: Maintained
16057 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
16058
16059 RENESAS RZ/G2L A/D DRIVER
16060 M: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16061 L: linux-iio@vger.kernel.org
16062 L: linux-renesas-soc@vger.kernel.org
16063 S: Supported
16064 F: Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16065 F: drivers/iio/adc/rzg2l_adc.c
16066
16067 RESET CONTROLLER FRAMEWORK
16068 M: Philipp Zabel <p.zabel@pengutronix.de>
16069 S: Maintained
16070 T: git git://git.pengutronix.de/git/pza/linux
16071 F: Documentation/devicetree/bindings/reset/
16072 F: Documentation/driver-api/reset.rst
16073 F: drivers/reset/
16074 F: include/dt-bindings/reset/
16075 F: include/linux/reset-controller.h
16076 F: include/linux/reset.h
16077 F: include/linux/reset/
16078 K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16079
16080 RESTARTABLE SEQUENCES SUPPORT
16081 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16082 M: Peter Zijlstra <peterz@infradead.org>
16083 M: "Paul E. McKenney" <paulmck@kernel.org>
16084 M: Boqun Feng <boqun.feng@gmail.com>
16085 L: linux-kernel@vger.kernel.org
16086 S: Supported
16087 F: include/trace/events/rseq.h
16088 F: include/uapi/linux/rseq.h
16089 F: kernel/rseq.c
16090 F: tools/testing/selftests/rseq/
16091
16092 RFKILL
16093 M: Johannes Berg <johannes@sipsolutions.net>
16094 L: linux-wireless@vger.kernel.org
16095 S: Maintained
16096 W: https://wireless.wiki.kernel.org/
16097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16098 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16099 F: Documentation/ABI/stable/sysfs-class-rfkill
16100 F: Documentation/driver-api/rfkill.rst
16101 F: include/linux/rfkill.h
16102 F: include/uapi/linux/rfkill.h
16103 F: net/rfkill/
16104
16105 RHASHTABLE
16106 M: Thomas Graf <tgraf@suug.ch>
16107 M: Herbert Xu <herbert@gondor.apana.org.au>
16108 L: netdev@vger.kernel.org
16109 S: Maintained
16110 F: include/linux/rhashtable-types.h
16111 F: include/linux/rhashtable.h
16112 F: lib/rhashtable.c
16113 F: lib/test_rhashtable.c
16114
16115 RICOH R5C592 MEMORYSTICK DRIVER
16116 M: Maxim Levitsky <maximlevitsky@gmail.com>
16117 S: Maintained
16118 F: drivers/memstick/host/r592.*
16119
16120 RICOH SMARTMEDIA/XD DRIVER
16121 M: Maxim Levitsky <maximlevitsky@gmail.com>
16122 S: Maintained
16123 F: drivers/mtd/nand/raw/r852.c
16124 F: drivers/mtd/nand/raw/r852.h
16125
16126 RISC-V ARCHITECTURE
16127 M: Paul Walmsley <paul.walmsley@sifive.com>
16128 M: Palmer Dabbelt <palmer@dabbelt.com>
16129 M: Albert Ou <aou@eecs.berkeley.edu>
16130 L: linux-riscv@lists.infradead.org
16131 S: Supported
16132 P: Documentation/riscv/patch-acceptance.rst
16133 T: git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16134 F: arch/riscv/
16135 N: riscv
16136 K: riscv
16137
16138 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16139 M: Lewis Hanly <lewis.hanly@microchip.com>
16140 L: linux-riscv@lists.infradead.org
16141 S: Supported
16142 F: drivers/mailbox/mailbox-mpfs.c
16143 F: drivers/soc/microchip/
16144 F: include/soc/microchip/mpfs.h
16145
16146 RNBD BLOCK DRIVERS
16147 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16148 M: Jack Wang <jinpu.wang@ionos.com>
16149 L: linux-block@vger.kernel.org
16150 S: Maintained
16151 F: drivers/block/rnbd/
16152
16153 ROCCAT DRIVERS
16154 M: Stefan Achatz <erazor_de@users.sourceforge.net>
16155 S: Maintained
16156 W: http://sourceforge.net/projects/roccat/
16157 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
16158 F: drivers/hid/hid-roccat*
16159 F: include/linux/hid-roccat*
16160
16161 ROCKCHIP ISP V1 DRIVER
16162 M: Helen Koike <helen.koike@collabora.com>
16163 M: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16164 L: linux-media@vger.kernel.org
16165 L: linux-rockchip@lists.infradead.org
16166 S: Maintained
16167 F: Documentation/admin-guide/media/rkisp1.rst
16168 F: Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16169 F: Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16170 F: drivers/media/platform/rockchip/rkisp1
16171 F: include/uapi/linux/rkisp1-config.h
16172
16173 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16174 M: Jacob Chen <jacob-chen@iotwrt.com>
16175 M: Ezequiel Garcia <ezequiel@collabora.com>
16176 L: linux-media@vger.kernel.org
16177 L: linux-rockchip@lists.infradead.org
16178 S: Maintained
16179 F: Documentation/devicetree/bindings/media/rockchip-rga.yaml
16180 F: drivers/media/platform/rockchip/rga/
16181
16182 ROCKCHIP VIDEO DECODER DRIVER
16183 M: Ezequiel Garcia <ezequiel@collabora.com>
16184 L: linux-media@vger.kernel.org
16185 L: linux-rockchip@lists.infradead.org
16186 S: Maintained
16187 F: Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16188 F: drivers/staging/media/rkvdec/
16189
16190 ROCKER DRIVER
16191 M: Jiri Pirko <jiri@resnulli.us>
16192 L: netdev@vger.kernel.org
16193 S: Supported
16194 F: drivers/net/ethernet/rocker/
16195
16196 ROCKETPORT EXPRESS/INFINITY DRIVER
16197 M: Kevin Cernekee <cernekee@gmail.com>
16198 L: linux-serial@vger.kernel.org
16199 S: Odd Fixes
16200 F: drivers/tty/serial/rp2.*
16201
16202 ROHM BD99954 CHARGER IC
16203 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16204 L: linux-power@fi.rohmeurope.com
16205 S: Supported
16206 F: drivers/power/supply/bd99954-charger.c
16207 F: drivers/power/supply/bd99954-charger.h
16208
16209 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16210 M: Tomasz Duszynski <tduszyns@gmail.com>
16211 S: Maintained
16212 F: Documentation/devicetree/bindings/iio/light/bh1750.yaml
16213 F: drivers/iio/light/bh1750.c
16214
16215 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16216 M: Marek Vasut <marek.vasut+renesas@gmail.com>
16217 L: linux-kernel@vger.kernel.org
16218 L: linux-renesas-soc@vger.kernel.org
16219 S: Supported
16220 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16221 F: drivers/gpio/gpio-bd9571mwv.c
16222 F: drivers/mfd/bd9571mwv.c
16223 F: drivers/regulator/bd9571mwv-regulator.c
16224 F: include/linux/mfd/bd9571mwv.h
16225
16226 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16227 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16228 L: linux-power@fi.rohmeurope.com
16229 S: Supported
16230 F: Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16231 F: Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16232 F: drivers/clk/clk-bd718x7.c
16233 F: drivers/gpio/gpio-bd70528.c
16234 F: drivers/gpio/gpio-bd71815.c
16235 F: drivers/gpio/gpio-bd71828.c
16236 F: drivers/mfd/rohm-bd70528.c
16237 F: drivers/mfd/rohm-bd71828.c
16238 F: drivers/mfd/rohm-bd718x7.c
16239 F: drivers/mfd/rohm-bd9576.c
16240 F: drivers/power/supply/bd70528-charger.c
16241 F: drivers/regulator/bd70528-regulator.c
16242 F: drivers/regulator/bd71815-regulator.c
16243 F: drivers/regulator/bd71828-regulator.c
16244 F: drivers/regulator/bd718x7-regulator.c
16245 F: drivers/regulator/bd9576-regulator.c
16246 F: drivers/regulator/rohm-regulator.c
16247 F: drivers/rtc/rtc-bd70528.c
16248 F: drivers/watchdog/bd70528_wdt.c
16249 F: drivers/watchdog/bd9576_wdt.c
16250 F: include/linux/mfd/rohm-bd70528.h
16251 F: include/linux/mfd/rohm-bd71815.h
16252 F: include/linux/mfd/rohm-bd71828.h
16253 F: include/linux/mfd/rohm-bd718x7.h
16254 F: include/linux/mfd/rohm-bd957x.h
16255 F: include/linux/mfd/rohm-generic.h
16256 F: include/linux/mfd/rohm-shared.h
16257
16258 ROSE NETWORK LAYER
16259 M: Ralf Baechle <ralf@linux-mips.org>
16260 L: linux-hams@vger.kernel.org
16261 S: Maintained
16262 W: http://www.linux-ax25.org/
16263 F: include/net/rose.h
16264 F: include/uapi/linux/rose.h
16265 F: net/rose/
16266
16267 ROTATION DRIVER FOR ALLWINNER A83T
16268 M: Jernej Skrabec <jernej.skrabec@gmail.com>
16269 L: linux-media@vger.kernel.org
16270 S: Maintained
16271 T: git git://linuxtv.org/media_tree.git
16272 F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16273 F: drivers/media/platform/sunxi/sun8i-rotate/
16274
16275 RTL2830 MEDIA DRIVER
16276 M: Antti Palosaari <crope@iki.fi>
16277 L: linux-media@vger.kernel.org
16278 S: Maintained
16279 W: https://linuxtv.org
16280 W: http://palosaari.fi/linux/
16281 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16282 T: git git://linuxtv.org/anttip/media_tree.git
16283 F: drivers/media/dvb-frontends/rtl2830*
16284
16285 RTL2832 MEDIA DRIVER
16286 M: Antti Palosaari <crope@iki.fi>
16287 L: linux-media@vger.kernel.org
16288 S: Maintained
16289 W: https://linuxtv.org
16290 W: http://palosaari.fi/linux/
16291 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16292 T: git git://linuxtv.org/anttip/media_tree.git
16293 F: drivers/media/dvb-frontends/rtl2832*
16294
16295 RTL2832_SDR MEDIA DRIVER
16296 M: Antti Palosaari <crope@iki.fi>
16297 L: linux-media@vger.kernel.org
16298 S: Maintained
16299 W: https://linuxtv.org
16300 W: http://palosaari.fi/linux/
16301 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16302 T: git git://linuxtv.org/anttip/media_tree.git
16303 F: drivers/media/dvb-frontends/rtl2832_sdr*
16304
16305 RTL8180 WIRELESS DRIVER
16306 L: linux-wireless@vger.kernel.org
16307 S: Orphan
16308 W: https://wireless.wiki.kernel.org/
16309 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16310 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
16311
16312 RTL8187 WIRELESS DRIVER
16313 M: Herton Ronaldo Krzesinski <herton@canonical.com>
16314 M: Hin-Tak Leung <htl10@users.sourceforge.net>
16315 M: Larry Finger <Larry.Finger@lwfinger.net>
16316 L: linux-wireless@vger.kernel.org
16317 S: Maintained
16318 W: https://wireless.wiki.kernel.org/
16319 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16320 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
16321
16322 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16323 M: Jes Sorensen <Jes.Sorensen@gmail.com>
16324 L: linux-wireless@vger.kernel.org
16325 S: Maintained
16326 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16327 F: drivers/net/wireless/realtek/rtl8xxxu/
16328
16329 RTRS TRANSPORT DRIVERS
16330 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16331 M: Jack Wang <jinpu.wang@ionos.com>
16332 L: linux-rdma@vger.kernel.org
16333 S: Maintained
16334 F: drivers/infiniband/ulp/rtrs/
16335
16336 RXRPC SOCKETS (AF_RXRPC)
16337 M: David Howells <dhowells@redhat.com>
16338 M: Marc Dionne <marc.dionne@auristor.com>
16339 L: linux-afs@lists.infradead.org
16340 S: Supported
16341 W: https://www.infradead.org/~dhowells/kafs/
16342 F: Documentation/networking/rxrpc.rst
16343 F: include/keys/rxrpc-type.h
16344 F: include/net/af_rxrpc.h
16345 F: include/trace/events/rxrpc.h
16346 F: include/uapi/linux/rxrpc.h
16347 F: net/rxrpc/
16348
16349 S3 SAVAGE FRAMEBUFFER DRIVER
16350 M: Antonino Daplas <adaplas@gmail.com>
16351 L: linux-fbdev@vger.kernel.org
16352 S: Maintained
16353 F: drivers/video/fbdev/savage/
16354
16355 S390
16356 M: Heiko Carstens <hca@linux.ibm.com>
16357 M: Vasily Gorbik <gor@linux.ibm.com>
16358 M: Christian Borntraeger <borntraeger@de.ibm.com>
16359 R: Alexander Gordeev <agordeev@linux.ibm.com>
16360 L: linux-s390@vger.kernel.org
16361 S: Supported
16362 W: http://www.ibm.com/developerworks/linux/linux390/
16363 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16364 F: Documentation/driver-api/s390-drivers.rst
16365 F: Documentation/s390/
16366 F: arch/s390/
16367 F: drivers/s390/
16368
16369 S390 COMMON I/O LAYER
16370 M: Vineeth Vijayan <vneethv@linux.ibm.com>
16371 M: Peter Oberparleiter <oberpar@linux.ibm.com>
16372 L: linux-s390@vger.kernel.org
16373 S: Supported
16374 W: http://www.ibm.com/developerworks/linux/linux390/
16375 F: drivers/s390/cio/
16376
16377 S390 DASD DRIVER
16378 M: Stefan Haberland <sth@linux.ibm.com>
16379 M: Jan Hoeppner <hoeppner@linux.ibm.com>
16380 L: linux-s390@vger.kernel.org
16381 S: Supported
16382 W: http://www.ibm.com/developerworks/linux/linux390/
16383 F: block/partitions/ibm.c
16384 F: drivers/s390/block/dasd*
16385 F: include/linux/dasd_mod.h
16386
16387 S390 IOMMU (PCI)
16388 M: Matthew Rosato <mjrosato@linux.ibm.com>
16389 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16390 L: linux-s390@vger.kernel.org
16391 S: Supported
16392 W: http://www.ibm.com/developerworks/linux/linux390/
16393 F: drivers/iommu/s390-iommu.c
16394
16395 S390 IUCV NETWORK LAYER
16396 M: Julian Wiedmann <jwi@linux.ibm.com>
16397 M: Karsten Graul <kgraul@linux.ibm.com>
16398 L: linux-s390@vger.kernel.org
16399 L: netdev@vger.kernel.org
16400 S: Supported
16401 W: http://www.ibm.com/developerworks/linux/linux390/
16402 F: drivers/s390/net/*iucv*
16403 F: include/net/iucv/
16404 F: net/iucv/
16405
16406 S390 NETWORK DRIVERS
16407 M: Julian Wiedmann <jwi@linux.ibm.com>
16408 M: Karsten Graul <kgraul@linux.ibm.com>
16409 L: linux-s390@vger.kernel.org
16410 L: netdev@vger.kernel.org
16411 S: Supported
16412 W: http://www.ibm.com/developerworks/linux/linux390/
16413 F: drivers/s390/net/
16414
16415 S390 PCI SUBSYSTEM
16416 M: Niklas Schnelle <schnelle@linux.ibm.com>
16417 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16418 L: linux-s390@vger.kernel.org
16419 S: Supported
16420 W: http://www.ibm.com/developerworks/linux/linux390/
16421 F: arch/s390/pci/
16422 F: drivers/pci/hotplug/s390_pci_hpc.c
16423 F: Documentation/s390/pci.rst
16424
16425 S390 VFIO AP DRIVER
16426 M: Tony Krowiak <akrowiak@linux.ibm.com>
16427 M: Halil Pasic <pasic@linux.ibm.com>
16428 M: Jason Herne <jjherne@linux.ibm.com>
16429 L: linux-s390@vger.kernel.org
16430 S: Supported
16431 W: http://www.ibm.com/developerworks/linux/linux390/
16432 F: Documentation/s390/vfio-ap.rst
16433 F: drivers/s390/crypto/vfio_ap_drv.c
16434 F: drivers/s390/crypto/vfio_ap_ops.c
16435 F: drivers/s390/crypto/vfio_ap_private.h
16436
16437 S390 VFIO-CCW DRIVER
16438 M: Eric Farman <farman@linux.ibm.com>
16439 M: Matthew Rosato <mjrosato@linux.ibm.com>
16440 R: Halil Pasic <pasic@linux.ibm.com>
16441 L: linux-s390@vger.kernel.org
16442 L: kvm@vger.kernel.org
16443 S: Supported
16444 F: Documentation/s390/vfio-ccw.rst
16445 F: drivers/s390/cio/vfio_ccw*
16446 F: include/uapi/linux/vfio_ccw.h
16447
16448 S390 VFIO-PCI DRIVER
16449 M: Matthew Rosato <mjrosato@linux.ibm.com>
16450 M: Eric Farman <farman@linux.ibm.com>
16451 L: linux-s390@vger.kernel.org
16452 L: kvm@vger.kernel.org
16453 S: Supported
16454 F: drivers/vfio/pci/vfio_pci_zdev.c
16455 F: include/uapi/linux/vfio_zdev.h
16456
16457 S390 ZCRYPT DRIVER
16458 M: Harald Freudenberger <freude@linux.ibm.com>
16459 L: linux-s390@vger.kernel.org
16460 S: Supported
16461 W: http://www.ibm.com/developerworks/linux/linux390/
16462 F: drivers/s390/crypto/
16463
16464 S390 ZFCP DRIVER
16465 M: Steffen Maier <maier@linux.ibm.com>
16466 M: Benjamin Block <bblock@linux.ibm.com>
16467 L: linux-s390@vger.kernel.org
16468 S: Supported
16469 W: http://www.ibm.com/developerworks/linux/linux390/
16470 F: drivers/s390/scsi/zfcp_*
16471
16472 S3C ADC BATTERY DRIVER
16473 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16474 L: linux-samsung-soc@vger.kernel.org
16475 S: Odd Fixes
16476 F: drivers/power/supply/s3c_adc_battery.c
16477 F: include/linux/s3c_adc_battery.h
16478
16479 S3C24XX SD/MMC Driver
16480 M: Ben Dooks <ben-linux@fluff.org>
16481 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16482 S: Supported
16483 F: drivers/mmc/host/s3cmci.*
16484
16485 SAA6588 RDS RECEIVER DRIVER
16486 M: Hans Verkuil <hverkuil@xs4all.nl>
16487 L: linux-media@vger.kernel.org
16488 S: Odd Fixes
16489 W: https://linuxtv.org
16490 T: git git://linuxtv.org/media_tree.git
16491 F: drivers/media/i2c/saa6588*
16492
16493 SAA7134 VIDEO4LINUX DRIVER
16494 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16495 L: linux-media@vger.kernel.org
16496 S: Odd fixes
16497 W: https://linuxtv.org
16498 T: git git://linuxtv.org/media_tree.git
16499 F: Documentation/driver-api/media/drivers/saa7134*
16500 F: drivers/media/pci/saa7134/
16501
16502 SAA7146 VIDEO4LINUX-2 DRIVER
16503 M: Hans Verkuil <hverkuil@xs4all.nl>
16504 L: linux-media@vger.kernel.org
16505 S: Maintained
16506 T: git git://linuxtv.org/media_tree.git
16507 F: drivers/media/common/saa7146/
16508 F: drivers/media/pci/saa7146/
16509 F: include/media/drv-intf/saa7146*
16510
16511 SAFESETID SECURITY MODULE
16512 M: Micah Morton <mortonm@chromium.org>
16513 S: Supported
16514 F: Documentation/admin-guide/LSM/SafeSetID.rst
16515 F: security/safesetid/
16516
16517 SAMSUNG AUDIO (ASoC) DRIVERS
16518 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16519 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16520 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16521 S: Supported
16522 F: Documentation/devicetree/bindings/sound/samsung*
16523 F: sound/soc/samsung/
16524
16525 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16526 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16527 L: linux-crypto@vger.kernel.org
16528 L: linux-samsung-soc@vger.kernel.org
16529 S: Maintained
16530 F: Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16531 F: drivers/crypto/exynos-rng.c
16532
16533 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16534 M: Łukasz Stelmach <l.stelmach@samsung.com>
16535 L: linux-samsung-soc@vger.kernel.org
16536 S: Maintained
16537 F: Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16538 F: drivers/char/hw_random/exynos-trng.c
16539
16540 SAMSUNG FRAMEBUFFER DRIVER
16541 M: Jingoo Han <jingoohan1@gmail.com>
16542 L: linux-fbdev@vger.kernel.org
16543 S: Maintained
16544 F: drivers/video/fbdev/s3c-fb.c
16545
16546 SAMSUNG INTERCONNECT DRIVERS
16547 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16548 M: Artur Świgoń <a.swigon@samsung.com>
16549 L: linux-pm@vger.kernel.org
16550 L: linux-samsung-soc@vger.kernel.org
16551 S: Supported
16552 F: drivers/interconnect/samsung/
16553
16554 SAMSUNG LAPTOP DRIVER
16555 M: Corentin Chary <corentin.chary@gmail.com>
16556 L: platform-driver-x86@vger.kernel.org
16557 S: Maintained
16558 F: drivers/platform/x86/samsung-laptop.c
16559
16560 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16561 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16562 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16563 L: linux-kernel@vger.kernel.org
16564 L: linux-samsung-soc@vger.kernel.org
16565 S: Supported
16566 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16567 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16568 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16569 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16570 F: drivers/clk/clk-s2mps11.c
16571 F: drivers/mfd/sec*.c
16572 F: drivers/regulator/s2m*.c
16573 F: drivers/regulator/s5m*.c
16574 F: drivers/rtc/rtc-s5m.c
16575 F: include/linux/mfd/samsung/
16576
16577 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16578 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16579 L: linux-media@vger.kernel.org
16580 L: linux-samsung-soc@vger.kernel.org
16581 S: Maintained
16582 F: drivers/media/platform/s3c-camif/
16583 F: include/media/drv-intf/s3c_camif.h
16584
16585 SAMSUNG S3FWRN5 NFC DRIVER
16586 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16587 M: Krzysztof Opasiak <k.opasiak@samsung.com>
16588 L: linux-nfc@lists.01.org (subscribers-only)
16589 S: Maintained
16590 F: Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16591 F: drivers/nfc/s3fwrn5
16592
16593 SAMSUNG S5C73M3 CAMERA DRIVER
16594 M: Andrzej Hajda <a.hajda@samsung.com>
16595 L: linux-media@vger.kernel.org
16596 S: Supported
16597 F: drivers/media/i2c/s5c73m3/*
16598
16599 SAMSUNG S5K5BAF CAMERA DRIVER
16600 M: Andrzej Hajda <a.hajda@samsung.com>
16601 L: linux-media@vger.kernel.org
16602 S: Supported
16603 F: drivers/media/i2c/s5k5baf.c
16604
16605 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16606 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16607 M: Vladimir Zapolskiy <vz@mleia.com>
16608 L: linux-crypto@vger.kernel.org
16609 L: linux-samsung-soc@vger.kernel.org
16610 S: Maintained
16611 F: Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16612 F: Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16613 F: drivers/crypto/s5p-sss.c
16614
16615 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16616 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16617 L: linux-media@vger.kernel.org
16618 S: Supported
16619 Q: https://patchwork.linuxtv.org/project/linux-media/list/
16620 F: drivers/media/platform/exynos4-is/
16621
16622 SAMSUNG SOC CLOCK DRIVERS
16623 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16624 M: Tomasz Figa <tomasz.figa@gmail.com>
16625 M: Chanwoo Choi <cw00.choi@samsung.com>
16626 L: linux-samsung-soc@vger.kernel.org
16627 S: Supported
16628 T: git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16629 F: Documentation/devicetree/bindings/clock/exynos*.txt
16630 F: Documentation/devicetree/bindings/clock/samsung,*.yaml
16631 F: Documentation/devicetree/bindings/clock/samsung,s3c*
16632 F: Documentation/devicetree/bindings/clock/samsung,s5p*
16633 F: drivers/clk/samsung/
16634 F: include/dt-bindings/clock/exynos*.h
16635 F: include/dt-bindings/clock/s3c*.h
16636 F: include/dt-bindings/clock/s5p*.h
16637 F: include/dt-bindings/clock/samsung,*.h
16638 F: include/linux/clk/samsung.h
16639 F: include/linux/platform_data/clk-s3c2410.h
16640
16641 SAMSUNG SPI DRIVERS
16642 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16643 M: Andi Shyti <andi@etezian.org>
16644 L: linux-spi@vger.kernel.org
16645 L: linux-samsung-soc@vger.kernel.org
16646 S: Maintained
16647 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
16648 F: drivers/spi/spi-s3c*
16649 F: include/linux/platform_data/spi-s3c64xx.h
16650 F: include/linux/spi/s3c24xx-fiq.h
16651
16652 SAMSUNG SXGBE DRIVERS
16653 M: Byungho An <bh74.an@samsung.com>
16654 L: netdev@vger.kernel.org
16655 S: Supported
16656 F: drivers/net/ethernet/samsung/sxgbe/
16657
16658 SAMSUNG THERMAL DRIVER
16659 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16660 L: linux-pm@vger.kernel.org
16661 L: linux-samsung-soc@vger.kernel.org
16662 S: Supported
16663 T: git https://github.com/lmajewski/linux-samsung-thermal.git
16664 F: drivers/thermal/samsung/
16665
16666 SAMSUNG USB2 PHY DRIVER
16667 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16668 L: linux-kernel@vger.kernel.org
16669 S: Supported
16670 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
16671 F: Documentation/driver-api/phy/samsung-usb2.rst
16672 F: drivers/phy/samsung/phy-exynos4210-usb2.c
16673 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
16674 F: drivers/phy/samsung/phy-exynos5250-usb2.c
16675 F: drivers/phy/samsung/phy-s5pv210-usb2.c
16676 F: drivers/phy/samsung/phy-samsung-usb2.c
16677 F: drivers/phy/samsung/phy-samsung-usb2.h
16678
16679 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16680 M: Paul Barker <paul.barker@sancloud.com>
16681 R: Marc Murphy <marc.murphy@sancloud.com>
16682 S: Supported
16683 F: arch/arm/boot/dts/am335x-sancloud*
16684
16685 SC1200 WDT DRIVER
16686 M: Zwane Mwaikambo <zwanem@gmail.com>
16687 S: Maintained
16688 F: drivers/watchdog/sc1200wdt.c
16689
16690 SCHEDULER
16691 M: Ingo Molnar <mingo@redhat.com>
16692 M: Peter Zijlstra <peterz@infradead.org>
16693 M: Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16694 M: Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16695 R: Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16696 R: Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16697 R: Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16698 R: Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16699 R: Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16700 L: linux-kernel@vger.kernel.org
16701 S: Maintained
16702 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16703 F: include/linux/preempt.h
16704 F: include/linux/sched.h
16705 F: include/linux/wait.h
16706 F: include/uapi/linux/sched.h
16707 F: kernel/sched/
16708
16709 SCR24X CHIP CARD INTERFACE DRIVER
16710 M: Lubomir Rintel <lkundrak@v3.sk>
16711 S: Supported
16712 F: drivers/char/pcmcia/scr24x_cs.c
16713
16714 SCSI RDMA PROTOCOL (SRP) INITIATOR
16715 M: Bart Van Assche <bvanassche@acm.org>
16716 L: linux-rdma@vger.kernel.org
16717 S: Supported
16718 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16719 F: drivers/infiniband/ulp/srp/
16720 F: include/scsi/srp.h
16721
16722 SCSI RDMA PROTOCOL (SRP) TARGET
16723 M: Bart Van Assche <bvanassche@acm.org>
16724 L: linux-rdma@vger.kernel.org
16725 L: target-devel@vger.kernel.org
16726 S: Supported
16727 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16728 F: drivers/infiniband/ulp/srpt/
16729
16730 SCSI SG DRIVER
16731 M: Doug Gilbert <dgilbert@interlog.com>
16732 L: linux-scsi@vger.kernel.org
16733 S: Maintained
16734 W: http://sg.danny.cz/sg
16735 F: Documentation/scsi/scsi-generic.rst
16736 F: drivers/scsi/sg.c
16737 F: include/scsi/sg.h
16738
16739 SCSI SUBSYSTEM
16740 M: "James E.J. Bottomley" <jejb@linux.ibm.com>
16741 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16742 L: linux-scsi@vger.kernel.org
16743 S: Maintained
16744 Q: https://patchwork.kernel.org/project/linux-scsi/list/
16745 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16746 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16747 F: Documentation/devicetree/bindings/scsi/
16748 F: drivers/scsi/
16749 F: include/scsi/
16750
16751 SCSI TAPE DRIVER
16752 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16753 L: linux-scsi@vger.kernel.org
16754 S: Maintained
16755 F: Documentation/scsi/st.rst
16756 F: drivers/scsi/st.*
16757 F: drivers/scsi/st_*.h
16758
16759 SCSI TARGET CORE USER DRIVER
16760 M: Bodo Stroesser <bostroesser@gmail.com>
16761 L: linux-scsi@vger.kernel.org
16762 L: target-devel@vger.kernel.org
16763 S: Supported
16764 F: Documentation/target/tcmu-design.rst
16765 F: drivers/target/target_core_user.c
16766 F: include/uapi/linux/target_core_user.h
16767
16768 SCSI TARGET SUBSYSTEM
16769 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16770 L: linux-scsi@vger.kernel.org
16771 L: target-devel@vger.kernel.org
16772 S: Supported
16773 W: http://www.linux-iscsi.org
16774 Q: https://patchwork.kernel.org/project/target-devel/list/
16775 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16776 F: Documentation/target/
16777 F: drivers/target/
16778 F: include/target/
16779
16780 SCTP PROTOCOL
16781 M: Vlad Yasevich <vyasevich@gmail.com>
16782 M: Neil Horman <nhorman@tuxdriver.com>
16783 M: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16784 L: linux-sctp@vger.kernel.org
16785 S: Maintained
16786 W: http://lksctp.sourceforge.net
16787 F: Documentation/networking/sctp.rst
16788 F: include/linux/sctp.h
16789 F: include/net/sctp/
16790 F: include/uapi/linux/sctp.h
16791 F: net/sctp/
16792
16793 SCx200 CPU SUPPORT
16794 M: Jim Cromie <jim.cromie@gmail.com>
16795 S: Odd Fixes
16796 F: Documentation/i2c/busses/scx200_acb.rst
16797 F: arch/x86/platform/scx200/
16798 F: drivers/i2c/busses/scx200*
16799 F: drivers/mtd/maps/scx200_docflash.c
16800 F: drivers/watchdog/scx200_wdt.c
16801 F: include/linux/scx200.h
16802
16803 SCx200 GPIO DRIVER
16804 M: Jim Cromie <jim.cromie@gmail.com>
16805 S: Maintained
16806 F: drivers/char/scx200_gpio.c
16807 F: include/linux/scx200_gpio.h
16808
16809 SCx200 HRT CLOCKSOURCE DRIVER
16810 M: Jim Cromie <jim.cromie@gmail.com>
16811 S: Maintained
16812 F: drivers/clocksource/scx200_hrt.c
16813
16814 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16815 M: Sascha Sommer <saschasommer@freenet.de>
16816 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16817 S: Maintained
16818 F: drivers/mmc/host/sdricoh_cs.c
16819
16820 SECO BOARDS CEC DRIVER
16821 M: Ettore Chimenti <ek5.chimenti@gmail.com>
16822 S: Maintained
16823 F: drivers/media/cec/platform/seco/seco-cec.c
16824 F: drivers/media/cec/platform/seco/seco-cec.h
16825
16826 SECURE COMPUTING
16827 M: Kees Cook <keescook@chromium.org>
16828 R: Andy Lutomirski <luto@amacapital.net>
16829 R: Will Drewry <wad@chromium.org>
16830 S: Supported
16831 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16832 F: Documentation/userspace-api/seccomp_filter.rst
16833 F: include/linux/seccomp.h
16834 F: include/uapi/linux/seccomp.h
16835 F: kernel/seccomp.c
16836 F: tools/testing/selftests/kselftest_harness.h
16837 F: tools/testing/selftests/seccomp/*
16838 K: \bsecure_computing
16839 K: \bTIF_SECCOMP\b
16840
16841 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16842 M: Al Cooper <alcooperx@gmail.com>
16843 L: linux-mmc@vger.kernel.org
16844 L: bcm-kernel-feedback-list@broadcom.com
16845 S: Maintained
16846 F: drivers/mmc/host/sdhci-brcmstb*
16847
16848 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16849 M: Adrian Hunter <adrian.hunter@intel.com>
16850 L: linux-mmc@vger.kernel.org
16851 S: Maintained
16852 F: drivers/mmc/host/sdhci*
16853 F: include/linux/mmc/sdhci*
16854
16855 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16856 M: Eugen Hristev <eugen.hristev@microchip.com>
16857 L: linux-mmc@vger.kernel.org
16858 S: Supported
16859 F: drivers/mmc/host/sdhci-of-at91.c
16860
16861 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16862 M: Ben Dooks <ben-linux@fluff.org>
16863 M: Jaehoon Chung <jh80.chung@samsung.com>
16864 L: linux-mmc@vger.kernel.org
16865 S: Maintained
16866 F: drivers/mmc/host/sdhci-s3c*
16867
16868 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16869 M: Viresh Kumar <vireshk@kernel.org>
16870 L: linux-mmc@vger.kernel.org
16871 S: Maintained
16872 F: drivers/mmc/host/sdhci-spear.c
16873
16874 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16875 M: Kishon Vijay Abraham I <kishon@ti.com>
16876 L: linux-mmc@vger.kernel.org
16877 S: Maintained
16878 F: drivers/mmc/host/sdhci-omap.c
16879
16880 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16881 M: Jonathan Derrick <jonathan.derrick@intel.com>
16882 M: Revanth Rajashekar <revanth.rajashekar@intel.com>
16883 L: linux-block@vger.kernel.org
16884 S: Supported
16885 F: block/opal_proto.h
16886 F: block/sed*
16887 F: include/linux/sed*
16888 F: include/uapi/linux/sed*
16889
16890 SECURITY CONTACT
16891 M: Security Officers <security@kernel.org>
16892 S: Supported
16893 F: Documentation/admin-guide/security-bugs.rst
16894
16895 SECURITY SUBSYSTEM
16896 M: James Morris <jmorris@namei.org>
16897 M: "Serge E. Hallyn" <serge@hallyn.com>
16898 L: linux-security-module@vger.kernel.org (suggested Cc:)
16899 S: Supported
16900 W: http://kernsec.org/
16901 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16902 F: security/
16903 X: security/selinux/
16904
16905 SELINUX SECURITY MODULE
16906 M: Paul Moore <paul@paul-moore.com>
16907 M: Stephen Smalley <stephen.smalley.work@gmail.com>
16908 M: Eric Paris <eparis@parisplace.org>
16909 L: selinux@vger.kernel.org
16910 S: Supported
16911 W: https://selinuxproject.org
16912 W: https://github.com/SELinuxProject
16913 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16914 F: Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16915 F: Documentation/ABI/obsolete/sysfs-selinux-disable
16916 F: Documentation/admin-guide/LSM/SELinux.rst
16917 F: include/trace/events/avc.h
16918 F: include/uapi/linux/selinux_netlink.h
16919 F: scripts/selinux/
16920 F: security/selinux/
16921
16922 SENSABLE PHANTOM
16923 M: Jiri Slaby <jirislaby@kernel.org>
16924 S: Maintained
16925 F: drivers/misc/phantom.c
16926 F: include/uapi/linux/phantom.h
16927
16928 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16929 M: Tomasz Duszynski <tomasz.duszynski@octakon.com>
16930 S: Maintained
16931 F: Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16932 F: drivers/iio/chemical/scd30.h
16933 F: drivers/iio/chemical/scd30_core.c
16934 F: drivers/iio/chemical/scd30_i2c.c
16935 F: drivers/iio/chemical/scd30_serial.c
16936
16937 SENSIRION SGP40 GAS SENSOR DRIVER
16938 M: Andreas Klinger <ak@it-klinger.de>
16939 S: Maintained
16940 F: Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16941 F: drivers/iio/chemical/sgp40.c
16942
16943 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16944 M: Tomasz Duszynski <tduszyns@gmail.com>
16945 S: Maintained
16946 F: Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16947 F: drivers/iio/chemical/sps30.c
16948 F: drivers/iio/chemical/sps30_i2c.c
16949 F: drivers/iio/chemical/sps30_serial.c
16950
16951 SERIAL DEVICE BUS
16952 M: Rob Herring <robh@kernel.org>
16953 L: linux-serial@vger.kernel.org
16954 S: Maintained
16955 F: Documentation/devicetree/bindings/serial/serial.yaml
16956 F: drivers/tty/serdev/
16957 F: include/linux/serdev.h
16958
16959 SERIAL DRIVERS
16960 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16961 L: linux-serial@vger.kernel.org
16962 S: Maintained
16963 F: Documentation/devicetree/bindings/serial/
16964 F: drivers/tty/serial/
16965
16966 SERIAL IR RECEIVER
16967 M: Sean Young <sean@mess.org>
16968 L: linux-media@vger.kernel.org
16969 S: Maintained
16970 F: drivers/media/rc/serial_ir.c
16971
16972 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16973 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16974 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16975 S: Maintained
16976 F: Documentation/devicetree/bindings/slimbus/
16977 F: drivers/slimbus/
16978 F: include/linux/slimbus.h
16979
16980 SFC NETWORK DRIVER
16981 M: Edward Cree <ecree.xilinx@gmail.com>
16982 M: Martin Habets <habetsm.xilinx@gmail.com>
16983 L: netdev@vger.kernel.org
16984 S: Supported
16985 F: drivers/net/ethernet/sfc/
16986
16987 SFF/SFP/SFP+ MODULE SUPPORT
16988 M: Russell King <linux@armlinux.org.uk>
16989 L: netdev@vger.kernel.org
16990 S: Maintained
16991 F: drivers/net/phy/phylink.c
16992 F: drivers/net/phy/sfp*
16993 F: include/linux/mdio/mdio-i2c.h
16994 F: include/linux/phylink.h
16995 F: include/linux/sfp.h
16996 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)
16997
16998 SGI GRU DRIVER
16999 M: Dimitri Sivanich <dimitri.sivanich@hpe.com>
17000 S: Maintained
17001 F: drivers/misc/sgi-gru/
17002
17003 SGI XP/XPC/XPNET DRIVER
17004 M: Robin Holt <robinmholt@gmail.com>
17005 M: Steve Wahl <steve.wahl@hpe.com>
17006 R: Mike Travis <mike.travis@hpe.com>
17007 S: Maintained
17008 F: drivers/misc/sgi-xp/
17009
17010 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17011 M: Karsten Graul <kgraul@linux.ibm.com>
17012 L: linux-s390@vger.kernel.org
17013 S: Supported
17014 W: http://www.ibm.com/developerworks/linux/linux390/
17015 F: net/smc/
17016
17017 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17018 M: Linus Walleij <linus.walleij@linaro.org>
17019 L: linux-iio@vger.kernel.org
17020 S: Maintained
17021 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17022 F: Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17023 F: drivers/iio/light/gp2ap002.c
17024
17025 SHARP RJ54N1CB0C SENSOR DRIVER
17026 M: Jacopo Mondi <jacopo@jmondi.org>
17027 L: linux-media@vger.kernel.org
17028 S: Odd fixes
17029 T: git git://linuxtv.org/media_tree.git
17030 F: drivers/media/i2c/rj54n1cb0c.c
17031 F: include/media/i2c/rj54n1cb0c.h
17032
17033 SH_VOU V4L2 OUTPUT DRIVER
17034 L: linux-media@vger.kernel.org
17035 S: Orphan
17036 F: drivers/media/platform/sh_vou.c
17037 F: include/media/drv-intf/sh_vou.h
17038
17039 SI2157 MEDIA DRIVER
17040 M: Antti Palosaari <crope@iki.fi>
17041 L: linux-media@vger.kernel.org
17042 S: Maintained
17043 W: https://linuxtv.org
17044 W: http://palosaari.fi/linux/
17045 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17046 T: git git://linuxtv.org/anttip/media_tree.git
17047 F: drivers/media/tuners/si2157*
17048
17049 SI2165 MEDIA DRIVER
17050 M: Matthias Schwarzott <zzam@gentoo.org>
17051 L: linux-media@vger.kernel.org
17052 S: Maintained
17053 W: https://linuxtv.org
17054 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17055 F: drivers/media/dvb-frontends/si2165*
17056
17057 SI2168 MEDIA DRIVER
17058 M: Antti Palosaari <crope@iki.fi>
17059 L: linux-media@vger.kernel.org
17060 S: Maintained
17061 W: https://linuxtv.org
17062 W: http://palosaari.fi/linux/
17063 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17064 T: git git://linuxtv.org/anttip/media_tree.git
17065 F: drivers/media/dvb-frontends/si2168*
17066
17067 SI470X FM RADIO RECEIVER I2C DRIVER
17068 M: Hans Verkuil <hverkuil@xs4all.nl>
17069 L: linux-media@vger.kernel.org
17070 S: Odd Fixes
17071 W: https://linuxtv.org
17072 T: git git://linuxtv.org/media_tree.git
17073 F: drivers/media/radio/si470x/radio-si470x-i2c.c
17074
17075 SI470X FM RADIO RECEIVER USB DRIVER
17076 M: Hans Verkuil <hverkuil@xs4all.nl>
17077 L: linux-media@vger.kernel.org
17078 S: Maintained
17079 W: https://linuxtv.org
17080 T: git git://linuxtv.org/media_tree.git
17081 F: drivers/media/radio/si470x/radio-si470x-common.c
17082 F: drivers/media/radio/si470x/radio-si470x-usb.c
17083 F: drivers/media/radio/si470x/radio-si470x.h
17084
17085 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17086 M: Eduardo Valentin <edubezval@gmail.com>
17087 L: linux-media@vger.kernel.org
17088 S: Odd Fixes
17089 W: https://linuxtv.org
17090 T: git git://linuxtv.org/media_tree.git
17091 F: drivers/media/radio/si4713/si4713.?
17092
17093 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17094 M: Eduardo Valentin <edubezval@gmail.com>
17095 L: linux-media@vger.kernel.org
17096 S: Odd Fixes
17097 W: https://linuxtv.org
17098 T: git git://linuxtv.org/media_tree.git
17099 F: drivers/media/radio/si4713/radio-platform-si4713.c
17100
17101 SI4713 FM RADIO TRANSMITTER USB DRIVER
17102 M: Hans Verkuil <hverkuil@xs4all.nl>
17103 L: linux-media@vger.kernel.org
17104 S: Maintained
17105 W: https://linuxtv.org
17106 T: git git://linuxtv.org/media_tree.git
17107 F: drivers/media/radio/si4713/radio-usb-si4713.c
17108
17109 SIANO DVB DRIVER
17110 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17111 L: linux-media@vger.kernel.org
17112 S: Odd fixes
17113 W: https://linuxtv.org
17114 T: git git://linuxtv.org/media_tree.git
17115 F: drivers/media/common/siano/
17116 F: drivers/media/mmc/siano/
17117 F: drivers/media/usb/siano/
17118 F: drivers/media/usb/siano/
17119
17120 SIFIVE DRIVERS
17121 M: Palmer Dabbelt <palmer@dabbelt.com>
17122 M: Paul Walmsley <paul.walmsley@sifive.com>
17123 L: linux-riscv@lists.infradead.org
17124 S: Supported
17125 T: git git://github.com/sifive/riscv-linux.git
17126 N: sifive
17127 K: [^@]sifive
17128
17129 SIFIVE FU540 SYSTEM-ON-CHIP
17130 M: Paul Walmsley <paul.walmsley@sifive.com>
17131 M: Palmer Dabbelt <palmer@dabbelt.com>
17132 L: linux-riscv@lists.infradead.org
17133 S: Supported
17134 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17135 N: fu540
17136 K: fu540
17137
17138 SIFIVE PDMA DRIVER
17139 M: Green Wan <green.wan@sifive.com>
17140 S: Maintained
17141 F: Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17142 F: drivers/dma/sf-pdma/
17143
17144 SILEAD TOUCHSCREEN DRIVER
17145 M: Hans de Goede <hdegoede@redhat.com>
17146 L: linux-input@vger.kernel.org
17147 L: platform-driver-x86@vger.kernel.org
17148 S: Maintained
17149 F: drivers/input/touchscreen/silead.c
17150 F: drivers/platform/x86/touchscreen_dmi.c
17151
17152 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17153 M: Jérôme Pouiller <jerome.pouiller@silabs.com>
17154 S: Supported
17155 F: drivers/staging/wfx/
17156
17157 SILICON MOTION SM712 FRAME BUFFER DRIVER
17158 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17159 M: Teddy Wang <teddy.wang@siliconmotion.com>
17160 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17161 L: linux-fbdev@vger.kernel.org
17162 S: Maintained
17163 F: Documentation/fb/sm712fb.rst
17164 F: drivers/video/fbdev/sm712*
17165
17166 SILVACO I3C DUAL-ROLE MASTER
17167 M: Miquel Raynal <miquel.raynal@bootlin.com>
17168 M: Conor Culhane <conor.culhane@silvaco.com>
17169 L: linux-i3c@lists.infradead.org
17170 S: Maintained
17171 F: Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17172 F: drivers/i3c/master/svc-i3c-master.c
17173
17174 SIMPLEFB FB DRIVER
17175 M: Hans de Goede <hdegoede@redhat.com>
17176 L: linux-fbdev@vger.kernel.org
17177 S: Maintained
17178 F: Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17179 F: drivers/video/fbdev/simplefb.c
17180 F: include/linux/platform_data/simplefb.h
17181
17182 SIMTEC EB110ATX (Chalice CATS)
17183 M: Simtec Linux Team <linux@simtec.co.uk>
17184 S: Supported
17185 W: http://www.simtec.co.uk/products/EB110ATX/
17186
17187 SIMTEC EB2410ITX (BAST)
17188 M: Simtec Linux Team <linux@simtec.co.uk>
17189 S: Supported
17190 W: http://www.simtec.co.uk/products/EB2410ITX/
17191 F: arch/arm/mach-s3c/bast-ide.c
17192 F: arch/arm/mach-s3c/bast-irq.c
17193 F: arch/arm/mach-s3c/mach-bast.c
17194
17195 SIOX
17196 M: Thorsten Scherer <t.scherer@eckelmann.de>
17197 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17198 R: Pengutronix Kernel Team <kernel@pengutronix.de>
17199 S: Supported
17200 F: drivers/gpio/gpio-siox.c
17201 F: drivers/siox/*
17202 F: include/trace/events/siox.h
17203
17204 SIPHASH PRF ROUTINES
17205 M: Jason A. Donenfeld <Jason@zx2c4.com>
17206 S: Maintained
17207 F: include/linux/siphash.h
17208 F: lib/siphash.c
17209 F: lib/test_siphash.c
17210
17211 SIS 190 ETHERNET DRIVER
17212 M: Francois Romieu <romieu@fr.zoreil.com>
17213 L: netdev@vger.kernel.org
17214 S: Maintained
17215 F: drivers/net/ethernet/sis/sis190.c
17216
17217 SIS 900/7016 FAST ETHERNET DRIVER
17218 M: Daniele Venzano <venza@brownhat.org>
17219 L: netdev@vger.kernel.org
17220 S: Maintained
17221 W: http://www.brownhat.org/sis900.html
17222 F: drivers/net/ethernet/sis/sis900.*
17223
17224 SIS FRAMEBUFFER DRIVER
17225 M: Thomas Winischhofer <thomas@winischhofer.net>
17226 S: Maintained
17227 W: http://www.winischhofer.net/linuxsisvga.shtml
17228 F: Documentation/fb/sisfb.rst
17229 F: drivers/video/fbdev/sis/
17230 F: include/video/sisfb.h
17231
17232 SIS I2C TOUCHSCREEN DRIVER
17233 M: Mika Penttilä <mika.penttila@nextfour.com>
17234 L: linux-input@vger.kernel.org
17235 S: Maintained
17236 F: Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17237 F: drivers/input/touchscreen/sis_i2c.c
17238
17239 SIS USB2VGA DRIVER
17240 M: Thomas Winischhofer <thomas@winischhofer.net>
17241 S: Maintained
17242 W: http://www.winischhofer.at/linuxsisusbvga.shtml
17243 F: drivers/usb/misc/sisusbvga/
17244
17245 SLAB ALLOCATOR
17246 M: Christoph Lameter <cl@linux.com>
17247 M: Pekka Enberg <penberg@kernel.org>
17248 M: David Rientjes <rientjes@google.com>
17249 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
17250 M: Andrew Morton <akpm@linux-foundation.org>
17251 M: Vlastimil Babka <vbabka@suse.cz>
17252 L: linux-mm@kvack.org
17253 S: Maintained
17254 F: include/linux/sl?b*.h
17255 F: mm/sl?b*
17256
17257 SLEEPABLE READ-COPY UPDATE (SRCU)
17258 M: Lai Jiangshan <jiangshanlai@gmail.com>
17259 M: "Paul E. McKenney" <paulmck@kernel.org>
17260 M: Josh Triplett <josh@joshtriplett.org>
17261 R: Steven Rostedt <rostedt@goodmis.org>
17262 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17263 L: rcu@vger.kernel.org
17264 S: Supported
17265 W: http://www.rdrop.com/users/paulmck/RCU/
17266 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17267 F: include/linux/srcu*.h
17268 F: kernel/rcu/srcu*.c
17269
17270 SMACK SECURITY MODULE
17271 M: Casey Schaufler <casey@schaufler-ca.com>
17272 L: linux-security-module@vger.kernel.org
17273 S: Maintained
17274 W: http://schaufler-ca.com
17275 T: git git://github.com/cschaufler/smack-next
17276 F: Documentation/admin-guide/LSM/Smack.rst
17277 F: security/smack/
17278
17279 SMC91x ETHERNET DRIVER
17280 M: Nicolas Pitre <nico@fluxnic.net>
17281 S: Odd Fixes
17282 F: drivers/net/ethernet/smsc/smc91x.*
17283
17284 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17285 M: Mark Rutland <mark.rutland@arm.com>
17286 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17287 M: Sudeep Holla <sudeep.holla@arm.com>
17288 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17289 S: Maintained
17290 F: drivers/firmware/smccc/
17291 F: include/linux/arm-smccc.h
17292
17293 SMM665 HARDWARE MONITOR DRIVER
17294 M: Guenter Roeck <linux@roeck-us.net>
17295 L: linux-hwmon@vger.kernel.org
17296 S: Maintained
17297 F: Documentation/hwmon/smm665.rst
17298 F: drivers/hwmon/smm665.c
17299
17300 SMSC EMC2103 HARDWARE MONITOR DRIVER
17301 M: Steve Glendinning <steve.glendinning@shawell.net>
17302 L: linux-hwmon@vger.kernel.org
17303 S: Maintained
17304 F: Documentation/hwmon/emc2103.rst
17305 F: drivers/hwmon/emc2103.c
17306
17307 SMSC SCH5627 HARDWARE MONITOR DRIVER
17308 M: Hans de Goede <hdegoede@redhat.com>
17309 L: linux-hwmon@vger.kernel.org
17310 S: Supported
17311 F: Documentation/hwmon/sch5627.rst
17312 F: drivers/hwmon/sch5627.c
17313
17314 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17315 M: Steve Glendinning <steve.glendinning@shawell.net>
17316 L: linux-fbdev@vger.kernel.org
17317 S: Maintained
17318 F: drivers/video/fbdev/smscufx.c
17319
17320 SMSC47B397 HARDWARE MONITOR DRIVER
17321 M: Jean Delvare <jdelvare@suse.com>
17322 L: linux-hwmon@vger.kernel.org
17323 S: Maintained
17324 F: Documentation/hwmon/smsc47b397.rst
17325 F: drivers/hwmon/smsc47b397.c
17326
17327 SMSC911x ETHERNET DRIVER
17328 M: Steve Glendinning <steve.glendinning@shawell.net>
17329 L: netdev@vger.kernel.org
17330 S: Maintained
17331 F: drivers/net/ethernet/smsc/smsc911x.*
17332 F: include/linux/smsc911x.h
17333
17334 SMSC9420 PCI ETHERNET DRIVER
17335 M: Steve Glendinning <steve.glendinning@shawell.net>
17336 L: netdev@vger.kernel.org
17337 S: Maintained
17338 F: drivers/net/ethernet/smsc/smsc9420.*
17339
17340 SOCIONEXT (SNI) AVE NETWORK DRIVER
17341 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17342 L: netdev@vger.kernel.org
17343 S: Maintained
17344 F: Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17345 F: drivers/net/ethernet/socionext/sni_ave.c
17346
17347 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17348 M: Jassi Brar <jaswinder.singh@linaro.org>
17349 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
17350 L: netdev@vger.kernel.org
17351 S: Maintained
17352 F: Documentation/devicetree/bindings/net/socionext-netsec.txt
17353 F: drivers/net/ethernet/socionext/netsec.c
17354
17355 SOCIONEXT (SNI) Synquacer SPI DRIVER
17356 M: Masahisa Kojima <masahisa.kojima@linaro.org>
17357 M: Jassi Brar <jaswinder.singh@linaro.org>
17358 L: linux-spi@vger.kernel.org
17359 S: Maintained
17360 F: Documentation/devicetree/bindings/spi/spi-synquacer.txt
17361 F: drivers/spi/spi-synquacer.c
17362
17363 SOCIONEXT SYNQUACER I2C DRIVER
17364 M: Ard Biesheuvel <ardb@kernel.org>
17365 L: linux-i2c@vger.kernel.org
17366 S: Maintained
17367 F: Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17368 F: drivers/i2c/busses/i2c-synquacer.c
17369
17370 SOCIONEXT UNIPHIER SOUND DRIVER
17371 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17372 S: Orphan
17373 F: sound/soc/uniphier/
17374
17375 SOEKRIS NET48XX LED SUPPORT
17376 M: Chris Boot <bootc@bootc.net>
17377 S: Maintained
17378 F: drivers/leds/leds-net48xx.c
17379
17380 SOFT-IWARP DRIVER (siw)
17381 M: Bernard Metzler <bmt@zurich.ibm.com>
17382 L: linux-rdma@vger.kernel.org
17383 S: Supported
17384 F: drivers/infiniband/sw/siw/
17385 F: include/uapi/rdma/siw-abi.h
17386
17387 SOFT-ROCE DRIVER (rxe)
17388 M: Zhu Yanjun <zyjzyj2000@gmail.com>
17389 L: linux-rdma@vger.kernel.org
17390 S: Supported
17391 F: drivers/infiniband/sw/rxe/
17392 F: include/uapi/rdma/rdma_user_rxe.h
17393
17394 SOFTLOGIC 6x10 MPEG CODEC
17395 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17396 M: Anton Sviridenko <anton@corp.bluecherry.net>
17397 M: Andrey Utkin <andrey_utkin@fastmail.com>
17398 M: Ismael Luceno <ismael@iodev.co.uk>
17399 L: linux-media@vger.kernel.org
17400 S: Supported
17401 F: drivers/media/pci/solo6x10/
17402
17403 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17404 M: James Morse <james.morse@arm.com>
17405 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17406 S: Maintained
17407 F: Documentation/devicetree/bindings/arm/firmware/sdei.txt
17408 F: drivers/firmware/arm_sdei.c
17409 F: include/linux/arm_sdei.h
17410 F: include/uapi/linux/arm_sdei.h
17411
17412 SOFTWARE NODES
17413 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17414 R: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17415 L: linux-acpi@vger.kernel.org
17416 S: Maintained
17417 F: drivers/base/swnode.c
17418
17419 SOFTWARE RAID (Multiple Disks) SUPPORT
17420 M: Song Liu <song@kernel.org>
17421 L: linux-raid@vger.kernel.org
17422 S: Supported
17423 T: git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17424 F: drivers/md/Kconfig
17425 F: drivers/md/Makefile
17426 F: drivers/md/md*
17427 F: drivers/md/raid*
17428 F: include/linux/raid/
17429 F: include/uapi/linux/raid/
17430
17431 SOLIDRUN CLEARFOG SUPPORT
17432 M: Russell King <linux@armlinux.org.uk>
17433 S: Maintained
17434 F: arch/arm/boot/dts/armada-388-clearfog*
17435 F: arch/arm/boot/dts/armada-38x-solidrun-*
17436
17437 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17438 M: Russell King <linux@armlinux.org.uk>
17439 S: Maintained
17440 F: arch/arm/boot/dts/imx6*-cubox-i*
17441 F: arch/arm/boot/dts/imx6*-hummingboard*
17442 F: arch/arm/boot/dts/imx6*-sr-*
17443
17444 SONIC NETWORK DRIVER
17445 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17446 L: netdev@vger.kernel.org
17447 S: Maintained
17448 F: drivers/net/ethernet/natsemi/sonic.*
17449
17450 SONICS SILICON BACKPLANE DRIVER (SSB)
17451 M: Michael Buesch <m@bues.ch>
17452 L: linux-wireless@vger.kernel.org
17453 S: Maintained
17454 F: drivers/ssb/
17455 F: include/linux/ssb/
17456
17457 SONY IMX208 SENSOR DRIVER
17458 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17459 L: linux-media@vger.kernel.org
17460 S: Maintained
17461 T: git git://linuxtv.org/media_tree.git
17462 F: drivers/media/i2c/imx208.c
17463
17464 SONY IMX214 SENSOR DRIVER
17465 M: Ricardo Ribalda <ribalda@kernel.org>
17466 L: linux-media@vger.kernel.org
17467 S: Maintained
17468 T: git git://linuxtv.org/media_tree.git
17469 F: Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17470 F: drivers/media/i2c/imx214.c
17471
17472 SONY IMX219 SENSOR DRIVER
17473 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
17474 L: linux-media@vger.kernel.org
17475 S: Maintained
17476 T: git git://linuxtv.org/media_tree.git
17477 F: Documentation/devicetree/bindings/media/i2c/imx219.yaml
17478 F: drivers/media/i2c/imx219.c
17479
17480 SONY IMX258 SENSOR DRIVER
17481 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17482 L: linux-media@vger.kernel.org
17483 S: Maintained
17484 T: git git://linuxtv.org/media_tree.git
17485 F: Documentation/devicetree/bindings/media/i2c/imx258.yaml
17486 F: drivers/media/i2c/imx258.c
17487
17488 SONY IMX274 SENSOR DRIVER
17489 M: Leon Luo <leonl@leopardimaging.com>
17490 L: linux-media@vger.kernel.org
17491 S: Maintained
17492 T: git git://linuxtv.org/media_tree.git
17493 F: Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17494 F: drivers/media/i2c/imx274.c
17495
17496 SONY IMX290 SENSOR DRIVER
17497 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17498 L: linux-media@vger.kernel.org
17499 S: Maintained
17500 T: git git://linuxtv.org/media_tree.git
17501 F: Documentation/devicetree/bindings/media/i2c/imx290.txt
17502 F: drivers/media/i2c/imx290.c
17503
17504 SONY IMX319 SENSOR DRIVER
17505 M: Bingbu Cao <bingbu.cao@intel.com>
17506 L: linux-media@vger.kernel.org
17507 S: Maintained
17508 T: git git://linuxtv.org/media_tree.git
17509 F: drivers/media/i2c/imx319.c
17510
17511 SONY IMX334 SENSOR DRIVER
17512 M: Paul J. Murphy <paul.j.murphy@intel.com>
17513 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17514 L: linux-media@vger.kernel.org
17515 S: Maintained
17516 T: git git://linuxtv.org/media_tree.git
17517 F: Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17518 F: drivers/media/i2c/imx334.c
17519
17520 SONY IMX335 SENSOR DRIVER
17521 M: Paul J. Murphy <paul.j.murphy@intel.com>
17522 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17523 L: linux-media@vger.kernel.org
17524 S: Maintained
17525 T: git git://linuxtv.org/media_tree.git
17526 F: Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17527 F: drivers/media/i2c/imx335.c
17528
17529 SONY IMX355 SENSOR DRIVER
17530 M: Tianshu Qiu <tian.shu.qiu@intel.com>
17531 L: linux-media@vger.kernel.org
17532 S: Maintained
17533 T: git git://linuxtv.org/media_tree.git
17534 F: drivers/media/i2c/imx355.c
17535
17536 SONY IMX412 SENSOR DRIVER
17537 M: Paul J. Murphy <paul.j.murphy@intel.com>
17538 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17539 L: linux-media@vger.kernel.org
17540 S: Maintained
17541 T: git git://linuxtv.org/media_tree.git
17542 F: Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17543 F: drivers/media/i2c/imx412.c
17544
17545 SONY MEMORYSTICK SUBSYSTEM
17546 M: Maxim Levitsky <maximlevitsky@gmail.com>
17547 M: Alex Dubov <oakad@yahoo.com>
17548 M: Ulf Hansson <ulf.hansson@linaro.org>
17549 L: linux-mmc@vger.kernel.org
17550 S: Maintained
17551 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17552 F: drivers/memstick/
17553 F: include/linux/memstick.h
17554
17555 SONY VAIO CONTROL DEVICE DRIVER
17556 M: Mattia Dongili <malattia@linux.it>
17557 L: platform-driver-x86@vger.kernel.org
17558 S: Maintained
17559 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17560 F: Documentation/admin-guide/laptops/sony-laptop.rst
17561 F: drivers/char/sonypi.c
17562 F: drivers/platform/x86/sony-laptop.c
17563 F: include/linux/sony-laptop.h
17564
17565 SOUND
17566 M: Jaroslav Kysela <perex@perex.cz>
17567 M: Takashi Iwai <tiwai@suse.com>
17568 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17569 S: Maintained
17570 W: http://www.alsa-project.org/
17571 Q: http://patchwork.kernel.org/project/alsa-devel/list/
17572 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17573 F: Documentation/sound/
17574 F: include/sound/
17575 F: include/uapi/sound/
17576 F: sound/
17577
17578 SOUND - COMPRESSED AUDIO
17579 M: Vinod Koul <vkoul@kernel.org>
17580 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17581 S: Supported
17582 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17583 F: Documentation/sound/designs/compress-offload.rst
17584 F: include/sound/compress_driver.h
17585 F: include/uapi/sound/compress_*
17586 F: sound/core/compress_offload.c
17587 F: sound/soc/soc-compress.c
17588
17589 SOUND - DMAENGINE HELPERS
17590 M: Lars-Peter Clausen <lars@metafoo.de>
17591 S: Supported
17592 F: include/sound/dmaengine_pcm.h
17593 F: sound/core/pcm_dmaengine.c
17594 F: sound/soc/soc-generic-dmaengine-pcm.c
17595
17596 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17597 M: Liam Girdwood <lgirdwood@gmail.com>
17598 M: Mark Brown <broonie@kernel.org>
17599 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17600 S: Supported
17601 W: http://alsa-project.org/main/index.php/ASoC
17602 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17603 F: Documentation/devicetree/bindings/sound/
17604 F: Documentation/sound/soc/
17605 F: include/dt-bindings/sound/
17606 F: include/sound/soc*
17607 F: sound/soc/
17608
17609 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17610 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17611 M: Liam Girdwood <lgirdwood@gmail.com>
17612 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17613 M: Kai Vehmanen <kai.vehmanen@linux.intel.com>
17614 M: Daniel Baluta <daniel.baluta@nxp.com>
17615 L: sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17616 S: Supported
17617 W: https://github.com/thesofproject/linux/
17618 F: sound/soc/sof/
17619
17620 SOUNDWIRE SUBSYSTEM
17621 M: Vinod Koul <vkoul@kernel.org>
17622 M: Bard Liao <yung-chuan.liao@linux.intel.com>
17623 R: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17624 R: Sanyog Kale <sanyog.r.kale@intel.com>
17625 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17626 S: Supported
17627 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17628 F: Documentation/driver-api/soundwire/
17629 F: drivers/soundwire/
17630 F: include/linux/soundwire/
17631
17632 SP2 MEDIA DRIVER
17633 M: Olli Salonen <olli.salonen@iki.fi>
17634 L: linux-media@vger.kernel.org
17635 S: Maintained
17636 W: https://linuxtv.org
17637 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17638 F: drivers/media/dvb-frontends/sp2*
17639
17640 SPARC + UltraSPARC (sparc/sparc64)
17641 M: "David S. Miller" <davem@davemloft.net>
17642 L: sparclinux@vger.kernel.org
17643 S: Maintained
17644 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
17645 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17646 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17647 F: arch/sparc/
17648 F: drivers/sbus/
17649
17650 SPARC SERIAL DRIVERS
17651 M: "David S. Miller" <davem@davemloft.net>
17652 L: sparclinux@vger.kernel.org
17653 S: Maintained
17654 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17655 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17656 F: drivers/tty/serial/suncore.c
17657 F: drivers/tty/serial/sunhv.c
17658 F: drivers/tty/serial/sunsab.c
17659 F: drivers/tty/serial/sunsab.h
17660 F: drivers/tty/serial/sunsu.c
17661 F: drivers/tty/serial/sunzilog.c
17662 F: drivers/tty/serial/sunzilog.h
17663 F: drivers/tty/vcc.c
17664 F: include/linux/sunserialcore.h
17665
17666 SPARSE CHECKER
17667 M: "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17668 L: linux-sparse@vger.kernel.org
17669 S: Maintained
17670 W: https://sparse.docs.kernel.org/
17671 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17672 Q: https://patchwork.kernel.org/project/linux-sparse/list/
17673 B: https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17674 F: include/linux/compiler.h
17675
17676 SPEAKUP CONSOLE SPEECH DRIVER
17677 M: William Hubbs <w.d.hubbs@gmail.com>
17678 M: Chris Brannon <chris@the-brannons.com>
17679 M: Kirk Reiser <kirk@reisers.ca>
17680 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
17681 L: speakup@linux-speakup.org
17682 S: Odd Fixes
17683 W: http://www.linux-speakup.org/
17684 W: https://github.com/linux-speakup/speakup
17685 B: https://github.com/linux-speakup/speakup/issues
17686 F: drivers/accessibility/speakup/
17687
17688 SPEAR CLOCK FRAMEWORK SUPPORT
17689 M: Viresh Kumar <vireshk@kernel.org>
17690 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17691 S: Maintained
17692 W: http://www.st.com/spear
17693 F: drivers/clk/spear/
17694
17695 SPEAR PLATFORM SUPPORT
17696 M: Viresh Kumar <vireshk@kernel.org>
17697 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17698 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17699 S: Maintained
17700 W: http://www.st.com/spear
17701 F: arch/arm/boot/dts/spear*
17702 F: arch/arm/mach-spear/
17703
17704 SPI NOR SUBSYSTEM
17705 M: Tudor Ambarus <tudor.ambarus@microchip.com>
17706 R: Michael Walle <michael@walle.cc>
17707 R: Pratyush Yadav <p.yadav@ti.com>
17708 L: linux-mtd@lists.infradead.org
17709 S: Maintained
17710 W: http://www.linux-mtd.infradead.org/
17711 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
17712 C: irc://irc.oftc.net/mtd
17713 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17714 F: drivers/mtd/spi-nor/
17715 F: include/linux/mtd/spi-nor.h
17716
17717 SPI SUBSYSTEM
17718 M: Mark Brown <broonie@kernel.org>
17719 L: linux-spi@vger.kernel.org
17720 S: Maintained
17721 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
17722 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17723 F: Documentation/devicetree/bindings/spi/
17724 F: Documentation/spi/
17725 F: drivers/spi/
17726 F: include/linux/spi/
17727 F: include/uapi/linux/spi/
17728 F: tools/spi/
17729
17730 SPIDERNET NETWORK DRIVER for CELL
17731 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17732 M: Geoff Levand <geoff@infradead.org>
17733 L: netdev@vger.kernel.org
17734 L: linuxppc-dev@lists.ozlabs.org
17735 S: Maintained
17736 F: Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17737 F: drivers/net/ethernet/toshiba/spider_net*
17738
17739 SPMI SUBSYSTEM
17740 M: Stephen Boyd <sboyd@kernel.org>
17741 L: linux-kernel@vger.kernel.org
17742 S: Maintained
17743 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17744 F: Documentation/devicetree/bindings/spmi/
17745 F: drivers/spmi/
17746 F: include/dt-bindings/spmi/spmi.h
17747 F: include/linux/spmi.h
17748 F: include/trace/events/spmi.h
17749
17750 SPU FILE SYSTEM
17751 M: Jeremy Kerr <jk@ozlabs.org>
17752 L: linuxppc-dev@lists.ozlabs.org
17753 S: Supported
17754 W: http://www.ibm.com/developerworks/power/cell/
17755 F: Documentation/filesystems/spufs/spufs.rst
17756 F: arch/powerpc/platforms/cell/spufs/
17757
17758 SQUASHFS FILE SYSTEM
17759 M: Phillip Lougher <phillip@squashfs.org.uk>
17760 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
17761 S: Maintained
17762 W: http://squashfs.org.uk
17763 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17764 F: Documentation/filesystems/squashfs.rst
17765 F: fs/squashfs/
17766
17767 SRM (Alpha) environment access
17768 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
17769 S: Maintained
17770 F: arch/alpha/kernel/srm_env.c
17771
17772 ST LSM6DSx IMU IIO DRIVER
17773 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17774 L: linux-iio@vger.kernel.org
17775 S: Maintained
17776 W: http://www.st.com/
17777 F: Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17778 F: drivers/iio/imu/st_lsm6dsx/
17779
17780 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17781 M: Mickael Guene <mickael.guene@st.com>
17782 L: linux-media@vger.kernel.org
17783 S: Maintained
17784 T: git git://linuxtv.org/media_tree.git
17785 F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17786 F: drivers/media/i2c/st-mipid02.c
17787
17788 ST STM32 I2C/SMBUS DRIVER
17789 M: Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17790 M: Alain Volmat <alain.volmat@foss.st.com>
17791 L: linux-i2c@vger.kernel.org
17792 S: Maintained
17793 F: drivers/i2c/busses/i2c-stm32*
17794
17795 ST STM32 SPI DRIVER
17796 M: Alain Volmat <alain.volmat@foss.st.com>
17797 L: linux-spi@vger.kernel.org
17798 S: Maintained
17799 F: drivers/spi/spi-stm32.c
17800
17801 ST STPDDC60 DRIVER
17802 M: Daniel Nilsson <daniel.nilsson@flex.com>
17803 L: linux-hwmon@vger.kernel.org
17804 S: Maintained
17805 F: Documentation/hwmon/stpddc60.rst
17806 F: drivers/hwmon/pmbus/stpddc60.c
17807
17808 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17809 M: Song Qiang <songqiang1304521@gmail.com>
17810 L: linux-iio@vger.kernel.org
17811 S: Maintained
17812 F: Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17813 F: drivers/iio/proximity/vl53l0x-i2c.c
17814
17815 STABLE BRANCH
17816 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17817 M: Sasha Levin <sashal@kernel.org>
17818 L: stable@vger.kernel.org
17819 S: Supported
17820 F: Documentation/process/stable-kernel-rules.rst
17821
17822 STAGING - ATOMISP DRIVER
17823 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17824 R: Sakari Ailus <sakari.ailus@linux.intel.com>
17825 L: linux-media@vger.kernel.org
17826 S: Maintained
17827 F: drivers/staging/media/atomisp/
17828
17829 STAGING - FIELDBUS SUBSYSTEM
17830 M: Sven Van Asbroeck <TheSven73@gmail.com>
17831 S: Maintained
17832 F: drivers/staging/fieldbus/*
17833 F: drivers/staging/fieldbus/Documentation/
17834
17835 STAGING - HMS ANYBUS-S BUS
17836 M: Sven Van Asbroeck <TheSven73@gmail.com>
17837 S: Maintained
17838 F: drivers/staging/fieldbus/anybuss/
17839
17840 STAGING - INDUSTRIAL IO
17841 M: Jonathan Cameron <jic23@kernel.org>
17842 L: linux-iio@vger.kernel.org
17843 S: Odd Fixes
17844 F: Documentation/devicetree/bindings/staging/iio/
17845 F: drivers/staging/iio/
17846
17847 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17848 M: Marc Dietrich <marvin24@gmx.de>
17849 L: ac100@lists.launchpad.net (moderated for non-subscribers)
17850 L: linux-tegra@vger.kernel.org
17851 S: Maintained
17852 F: drivers/staging/nvec/
17853
17854 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17855 M: Jens Frederich <jfrederich@gmail.com>
17856 M: Jon Nettleton <jon.nettleton@gmail.com>
17857 S: Maintained
17858 W: http://wiki.laptop.org/go/DCON
17859 F: drivers/staging/olpc_dcon/
17860
17861 STAGING - REALTEK RTL8188EU DRIVERS
17862 M: Larry Finger <Larry.Finger@lwfinger.net>
17863 M: Phillip Potter <phil@philpotter.co.uk>
17864 S: Supported
17865 F: drivers/staging/r8188eu/
17866
17867 STAGING - REALTEK RTL8712U DRIVERS
17868 M: Larry Finger <Larry.Finger@lwfinger.net>
17869 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17870 S: Odd Fixes
17871 F: drivers/staging/rtl8712/
17872
17873 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17874 M: Michael Hennerich <michael.hennerich@analog.com>
17875 L: linux-fbdev@vger.kernel.org
17876 S: Supported
17877 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17878 F: drivers/staging/fbtft/fb_seps525.c
17879
17880 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17881 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17882 M: Teddy Wang <teddy.wang@siliconmotion.com>
17883 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17884 L: linux-fbdev@vger.kernel.org
17885 S: Maintained
17886 F: drivers/staging/sm750fb/
17887
17888 STAGING - VIA VT665X DRIVERS
17889 M: Forest Bond <forest@alittletooquiet.net>
17890 S: Odd Fixes
17891 F: drivers/staging/vt665?/
17892
17893 STAGING SUBSYSTEM
17894 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17895 L: linux-staging@lists.linux.dev
17896 S: Supported
17897 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17898 F: drivers/staging/
17899
17900 STARFIRE/DURALAN NETWORK DRIVER
17901 M: Ion Badulescu <ionut@badula.org>
17902 S: Odd Fixes
17903 F: drivers/net/ethernet/adaptec/starfire*
17904
17905 STATIC BRANCH/CALL
17906 M: Peter Zijlstra <peterz@infradead.org>
17907 M: Josh Poimboeuf <jpoimboe@redhat.com>
17908 M: Jason Baron <jbaron@akamai.com>
17909 R: Steven Rostedt <rostedt@goodmis.org>
17910 R: Ard Biesheuvel <ardb@kernel.org>
17911 S: Supported
17912 F: arch/*/include/asm/jump_label*.h
17913 F: arch/*/include/asm/static_call*.h
17914 F: arch/*/kernel/jump_label.c
17915 F: arch/*/kernel/static_call.c
17916 F: include/linux/jump_label*.h
17917 F: include/linux/static_call*.h
17918 F: kernel/jump_label.c
17919 F: kernel/static_call.c
17920
17921 STI AUDIO (ASoC) DRIVERS
17922 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17923 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17924 S: Maintained
17925 F: Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17926 F: sound/soc/sti/
17927
17928 STI CEC DRIVER
17929 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
17930 S: Maintained
17931 F: Documentation/devicetree/bindings/media/stih-cec.txt
17932 F: drivers/media/cec/platform/sti/
17933
17934 STK1160 USB VIDEO CAPTURE DRIVER
17935 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17936 L: linux-media@vger.kernel.org
17937 S: Maintained
17938 T: git git://linuxtv.org/media_tree.git
17939 F: drivers/media/usb/stk1160/
17940
17941 STM32 AUDIO (ASoC) DRIVERS
17942 M: Olivier Moysan <olivier.moysan@foss.st.com>
17943 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17944 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17945 S: Maintained
17946 F: Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17947 F: Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17948 F: sound/soc/stm/
17949
17950 STM32 TIMER/LPTIMER DRIVERS
17951 M: Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17952 S: Maintained
17953 F: Documentation/ABI/testing/*timer-stm32
17954 F: Documentation/devicetree/bindings/*/*stm32-*timer*
17955 F: drivers/*/stm32-*timer*
17956 F: drivers/pwm/pwm-stm32*
17957 F: include/linux/*/stm32-*tim*
17958
17959 STMMAC ETHERNET DRIVER
17960 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
17961 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
17962 M: Jose Abreu <joabreu@synopsys.com>
17963 L: netdev@vger.kernel.org
17964 S: Supported
17965 W: http://www.stlinux.com
17966 F: Documentation/networking/device_drivers/ethernet/stmicro/
17967 F: drivers/net/ethernet/stmicro/stmmac/
17968
17969 SUN3/3X
17970 M: Sam Creasey <sammy@sammy.net>
17971 S: Maintained
17972 W: http://sammy.net/sun3/
17973 F: arch/m68k/include/asm/sun3*
17974 F: arch/m68k/kernel/*sun3*
17975 F: arch/m68k/sun3*/
17976 F: drivers/net/ethernet/i825xx/sun3*
17977
17978 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17979 M: Hans de Goede <hdegoede@redhat.com>
17980 L: linux-input@vger.kernel.org
17981 S: Maintained
17982 F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17983 F: drivers/input/keyboard/sun4i-lradc-keys.c
17984
17985 SUNDANCE NETWORK DRIVER
17986 M: Denis Kirjanov <kda@linux-powerpc.org>
17987 L: netdev@vger.kernel.org
17988 S: Maintained
17989 F: drivers/net/ethernet/dlink/sundance.c
17990
17991 SUPERH
17992 M: Yoshinori Sato <ysato@users.sourceforge.jp>
17993 M: Rich Felker <dalias@libc.org>
17994 L: linux-sh@vger.kernel.org
17995 S: Maintained
17996 Q: http://patchwork.kernel.org/project/linux-sh/list/
17997 F: Documentation/sh/
17998 F: arch/sh/
17999 F: drivers/sh/
18000
18001 SUSPEND TO RAM
18002 M: "Rafael J. Wysocki" <rafael@kernel.org>
18003 M: Len Brown <len.brown@intel.com>
18004 M: Pavel Machek <pavel@ucw.cz>
18005 L: linux-pm@vger.kernel.org
18006 S: Supported
18007 B: https://bugzilla.kernel.org
18008 F: Documentation/power/
18009 F: arch/x86/kernel/acpi/
18010 F: drivers/base/power/
18011 F: include/linux/freezer.h
18012 F: include/linux/pm.h
18013 F: include/linux/suspend.h
18014 F: kernel/power/
18015
18016 SVGA HANDLING
18017 M: Martin Mares <mj@ucw.cz>
18018 L: linux-video@atrey.karlin.mff.cuni.cz
18019 S: Maintained
18020 F: Documentation/admin-guide/svga.rst
18021 F: arch/x86/boot/video*
18022
18023 SWIOTLB SUBSYSTEM
18024 M: Christoph Hellwig <hch@infradead.org>
18025 L: iommu@lists.linux-foundation.org
18026 S: Supported
18027 W: http://git.infradead.org/users/hch/dma-mapping.git
18028 T: git git://git.infradead.org/users/hch/dma-mapping.git
18029 F: arch/*/kernel/pci-swiotlb.c
18030 F: include/linux/swiotlb.h
18031 F: kernel/dma/swiotlb.c
18032
18033 SWITCHDEV
18034 M: Jiri Pirko <jiri@resnulli.us>
18035 M: Ivan Vecera <ivecera@redhat.com>
18036 L: netdev@vger.kernel.org
18037 S: Supported
18038 F: include/net/switchdev.h
18039 F: net/switchdev/
18040
18041 SY8106A REGULATOR DRIVER
18042 M: Icenowy Zheng <icenowy@aosc.io>
18043 S: Maintained
18044 F: Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18045 F: drivers/regulator/sy8106a-regulator.c
18046
18047 SYNC FILE FRAMEWORK
18048 M: Sumit Semwal <sumit.semwal@linaro.org>
18049 R: Gustavo Padovan <gustavo@padovan.org>
18050 L: linux-media@vger.kernel.org
18051 L: dri-devel@lists.freedesktop.org
18052 S: Maintained
18053 T: git git://anongit.freedesktop.org/drm/drm-misc
18054 F: Documentation/driver-api/sync_file.rst
18055 F: drivers/dma-buf/dma-fence*
18056 F: drivers/dma-buf/sw_sync.c
18057 F: drivers/dma-buf/sync_*
18058 F: include/linux/sync_file.h
18059 F: include/uapi/linux/sync_file.h
18060
18061 SYNOPSYS ARC ARCHITECTURE
18062 M: Vineet Gupta <vgupta@kernel.org>
18063 L: linux-snps-arc@lists.infradead.org
18064 S: Supported
18065 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18066 F: Documentation/devicetree/bindings/arc/*
18067 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18068 F: arch/arc/
18069 F: drivers/clocksource/arc_timer.c
18070 F: drivers/tty/serial/arc_uart.c
18071
18072 SYNOPSYS ARC HSDK SDP pll clock driver
18073 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18074 S: Supported
18075 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18076 F: drivers/clk/clk-hsdk-pll.c
18077
18078 SYNOPSYS ARC SDP clock driver
18079 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18080 S: Supported
18081 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18082 F: drivers/clk/axs10x/*
18083
18084 SYNOPSYS ARC SDP platform support
18085 M: Alexey Brodkin <abrodkin@synopsys.com>
18086 S: Supported
18087 F: Documentation/devicetree/bindings/arc/axs10*
18088 F: arch/arc/boot/dts/ax*
18089 F: arch/arc/plat-axs10x
18090
18091 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18092 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18093 S: Supported
18094 F: Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18095 F: drivers/reset/reset-axs10x.c
18096
18097 SYNOPSYS CREG GPIO DRIVER
18098 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18099 S: Maintained
18100 F: Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18101 F: drivers/gpio/gpio-creg-snps.c
18102
18103 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18104 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18105 S: Maintained
18106 F: drivers/tty/serial/8250/8250_dw.c
18107 F: drivers/tty/serial/8250/8250_dwlib.*
18108 F: drivers/tty/serial/8250/8250_lpss.c
18109
18110 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18111 M: Hoan Tran <hoan@os.amperecomputing.com>
18112 M: Serge Semin <fancer.lancer@gmail.com>
18113 L: linux-gpio@vger.kernel.org
18114 S: Maintained
18115 F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18116 F: drivers/gpio/gpio-dwapb.c
18117
18118 SYNOPSYS DESIGNWARE APB SSI DRIVER
18119 M: Serge Semin <fancer.lancer@gmail.com>
18120 L: linux-spi@vger.kernel.org
18121 S: Supported
18122 F: Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18123 F: drivers/spi/spi-dw*
18124
18125 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18126 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18127 S: Maintained
18128 F: Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18129 F: drivers/dma/dw-axi-dmac/
18130
18131 SYNOPSYS DESIGNWARE DMAC DRIVER
18132 M: Viresh Kumar <vireshk@kernel.org>
18133 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18134 S: Maintained
18135 F: Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18136 F: drivers/dma/dw/
18137 F: include/dt-bindings/dma/dw-dmac.h
18138 F: include/linux/dma/dw.h
18139 F: include/linux/platform_data/dma-dw.h
18140
18141 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18142 M: Jose Abreu <Jose.Abreu@synopsys.com>
18143 L: netdev@vger.kernel.org
18144 S: Supported
18145 F: drivers/net/ethernet/synopsys/
18146
18147 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18148 M: Jose Abreu <Jose.Abreu@synopsys.com>
18149 L: netdev@vger.kernel.org
18150 S: Supported
18151 F: drivers/net/pcs/pcs-xpcs.c
18152 F: drivers/net/pcs/pcs-xpcs.h
18153 F: include/linux/pcs/pcs-xpcs.h
18154
18155 SYNOPSYS DESIGNWARE I2C DRIVER
18156 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
18157 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18158 R: Mika Westerberg <mika.westerberg@linux.intel.com>
18159 L: linux-i2c@vger.kernel.org
18160 S: Maintained
18161 F: drivers/i2c/busses/i2c-designware-*
18162
18163 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18164 M: Jaehoon Chung <jh80.chung@samsung.com>
18165 L: linux-mmc@vger.kernel.org
18166 S: Maintained
18167 F: drivers/mmc/host/dw_mmc*
18168
18169 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18170 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18171 S: Supported
18172 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18173 F: drivers/reset/reset-hsdk.c
18174 F: include/dt-bindings/reset/snps,hsdk-reset.h
18175
18176 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18177 M: Prabu Thangamuthu <prabu.t@synopsys.com>
18178 M: Manjunath M B <manjumb@synopsys.com>
18179 L: linux-mmc@vger.kernel.org
18180 S: Maintained
18181 F: drivers/mmc/host/sdhci-pci-dwc-mshc.c
18182
18183 SYSTEM CONFIGURATION (SYSCON)
18184 M: Lee Jones <lee.jones@linaro.org>
18185 M: Arnd Bergmann <arnd@arndb.de>
18186 S: Supported
18187 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18188 F: drivers/mfd/syscon.c
18189
18190 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18191 M: Sudeep Holla <sudeep.holla@arm.com>
18192 R: Cristian Marussi <cristian.marussi@arm.com>
18193 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18194 S: Maintained
18195 F: Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18196 F: drivers/clk/clk-sc[mp]i.c
18197 F: drivers/cpufreq/sc[mp]i-cpufreq.c
18198 F: drivers/firmware/arm_scmi/
18199 F: drivers/firmware/arm_scpi.c
18200 F: drivers/regulator/scmi-regulator.c
18201 F: drivers/reset/reset-scmi.c
18202 F: include/linux/sc[mp]i_protocol.h
18203 F: include/trace/events/scmi.h
18204 F: include/uapi/linux/virtio_scmi.h
18205
18206 SYSTEM RESET/SHUTDOWN DRIVERS
18207 M: Sebastian Reichel <sre@kernel.org>
18208 L: linux-pm@vger.kernel.org
18209 S: Maintained
18210 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18211 F: Documentation/devicetree/bindings/power/reset/
18212 F: drivers/power/reset/
18213
18214 SYSTEM TRACE MODULE CLASS
18215 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
18216 S: Maintained
18217 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18218 F: Documentation/trace/stm.rst
18219 F: drivers/hwtracing/stm/
18220 F: include/linux/stm.h
18221 F: include/uapi/linux/stm.h
18222
18223 SYSTEM76 ACPI DRIVER
18224 M: Jeremy Soller <jeremy@system76.com>
18225 M: System76 Product Development <productdev@system76.com>
18226 L: platform-driver-x86@vger.kernel.org
18227 S: Maintained
18228 F: drivers/platform/x86/system76_acpi.c
18229
18230 SYSV FILESYSTEM
18231 M: Christoph Hellwig <hch@infradead.org>
18232 S: Maintained
18233 F: Documentation/filesystems/sysv-fs.rst
18234 F: fs/sysv/
18235 F: include/linux/sysv_fs.h
18236
18237 TASKSTATS STATISTICS INTERFACE
18238 M: Balbir Singh <bsingharora@gmail.com>
18239 S: Maintained
18240 F: Documentation/accounting/taskstats*
18241 F: include/linux/taskstats*
18242 F: kernel/taskstats.c
18243
18244 TC subsystem
18245 M: Jamal Hadi Salim <jhs@mojatatu.com>
18246 M: Cong Wang <xiyou.wangcong@gmail.com>
18247 M: Jiri Pirko <jiri@resnulli.us>
18248 L: netdev@vger.kernel.org
18249 S: Maintained
18250 F: include/net/pkt_cls.h
18251 F: include/net/pkt_sched.h
18252 F: include/net/tc_act/
18253 F: include/uapi/linux/pkt_cls.h
18254 F: include/uapi/linux/pkt_sched.h
18255 F: include/uapi/linux/tc_act/
18256 F: include/uapi/linux/tc_ematch/
18257 F: net/sched/
18258
18259 TC90522 MEDIA DRIVER
18260 M: Akihiro Tsukada <tskd08@gmail.com>
18261 L: linux-media@vger.kernel.org
18262 S: Odd Fixes
18263 F: drivers/media/dvb-frontends/tc90522*
18264
18265 TCP LOW PRIORITY MODULE
18266 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18267 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18268 S: Maintained
18269 W: http://tcp-lp-mod.sourceforge.net/
18270 F: net/ipv4/tcp_lp.c
18271
18272 TDA10071 MEDIA DRIVER
18273 M: Antti Palosaari <crope@iki.fi>
18274 L: linux-media@vger.kernel.org
18275 S: Maintained
18276 W: https://linuxtv.org
18277 W: http://palosaari.fi/linux/
18278 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18279 T: git git://linuxtv.org/anttip/media_tree.git
18280 F: drivers/media/dvb-frontends/tda10071*
18281
18282 TDA18212 MEDIA DRIVER
18283 M: Antti Palosaari <crope@iki.fi>
18284 L: linux-media@vger.kernel.org
18285 S: Maintained
18286 W: https://linuxtv.org
18287 W: http://palosaari.fi/linux/
18288 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18289 T: git git://linuxtv.org/anttip/media_tree.git
18290 F: drivers/media/tuners/tda18212*
18291
18292 TDA18218 MEDIA DRIVER
18293 M: Antti Palosaari <crope@iki.fi>
18294 L: linux-media@vger.kernel.org
18295 S: Maintained
18296 W: https://linuxtv.org
18297 W: http://palosaari.fi/linux/
18298 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18299 T: git git://linuxtv.org/anttip/media_tree.git
18300 F: drivers/media/tuners/tda18218*
18301
18302 TDA18250 MEDIA DRIVER
18303 M: Olli Salonen <olli.salonen@iki.fi>
18304 L: linux-media@vger.kernel.org
18305 S: Maintained
18306 W: https://linuxtv.org
18307 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18308 T: git git://linuxtv.org/media_tree.git
18309 F: drivers/media/tuners/tda18250*
18310
18311 TDA18271 MEDIA DRIVER
18312 M: Michael Krufky <mkrufky@linuxtv.org>
18313 L: linux-media@vger.kernel.org
18314 S: Maintained
18315 W: https://linuxtv.org
18316 W: http://github.com/mkrufky
18317 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18318 T: git git://linuxtv.org/mkrufky/tuners.git
18319 F: drivers/media/tuners/tda18271*
18320
18321 TDA1997x MEDIA DRIVER
18322 M: Tim Harvey <tharvey@gateworks.com>
18323 L: linux-media@vger.kernel.org
18324 S: Maintained
18325 W: https://linuxtv.org
18326 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18327 F: drivers/media/i2c/tda1997x.*
18328
18329 TDA827x MEDIA DRIVER
18330 M: Michael Krufky <mkrufky@linuxtv.org>
18331 L: linux-media@vger.kernel.org
18332 S: Maintained
18333 W: https://linuxtv.org
18334 W: http://github.com/mkrufky
18335 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18336 T: git git://linuxtv.org/mkrufky/tuners.git
18337 F: drivers/media/tuners/tda8290.*
18338
18339 TDA8290 MEDIA DRIVER
18340 M: Michael Krufky <mkrufky@linuxtv.org>
18341 L: linux-media@vger.kernel.org
18342 S: Maintained
18343 W: https://linuxtv.org
18344 W: http://github.com/mkrufky
18345 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18346 T: git git://linuxtv.org/mkrufky/tuners.git
18347 F: drivers/media/tuners/tda8290.*
18348
18349 TDA9840 MEDIA DRIVER
18350 M: Hans Verkuil <hverkuil@xs4all.nl>
18351 L: linux-media@vger.kernel.org
18352 S: Maintained
18353 W: https://linuxtv.org
18354 T: git git://linuxtv.org/media_tree.git
18355 F: drivers/media/i2c/tda9840*
18356
18357 TEA5761 TUNER DRIVER
18358 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18359 L: linux-media@vger.kernel.org
18360 S: Odd fixes
18361 W: https://linuxtv.org
18362 T: git git://linuxtv.org/media_tree.git
18363 F: drivers/media/tuners/tea5761.*
18364
18365 TEA5767 TUNER DRIVER
18366 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18367 L: linux-media@vger.kernel.org
18368 S: Maintained
18369 W: https://linuxtv.org
18370 T: git git://linuxtv.org/media_tree.git
18371 F: drivers/media/tuners/tea5767.*
18372
18373 TEA6415C MEDIA DRIVER
18374 M: Hans Verkuil <hverkuil@xs4all.nl>
18375 L: linux-media@vger.kernel.org
18376 S: Maintained
18377 W: https://linuxtv.org
18378 T: git git://linuxtv.org/media_tree.git
18379 F: drivers/media/i2c/tea6415c*
18380
18381 TEA6420 MEDIA DRIVER
18382 M: Hans Verkuil <hverkuil@xs4all.nl>
18383 L: linux-media@vger.kernel.org
18384 S: Maintained
18385 W: https://linuxtv.org
18386 T: git git://linuxtv.org/media_tree.git
18387 F: drivers/media/i2c/tea6420*
18388
18389 TEAM DRIVER
18390 M: Jiri Pirko <jiri@resnulli.us>
18391 L: netdev@vger.kernel.org
18392 S: Supported
18393 F: drivers/net/team/
18394 F: include/linux/if_team.h
18395 F: include/uapi/linux/if_team.h
18396
18397 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18398 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18399 S: Maintained
18400 F: arch/x86/platform/ts5500/
18401
18402 TECHNOTREND USB IR RECEIVER
18403 M: Sean Young <sean@mess.org>
18404 L: linux-media@vger.kernel.org
18405 S: Maintained
18406 F: drivers/media/rc/ttusbir.c
18407
18408 TECHWELL TW9910 VIDEO DECODER
18409 L: linux-media@vger.kernel.org
18410 S: Orphan
18411 F: drivers/media/i2c/tw9910.c
18412 F: include/media/i2c/tw9910.h
18413
18414 TEE SUBSYSTEM
18415 M: Jens Wiklander <jens.wiklander@linaro.org>
18416 R: Sumit Garg <sumit.garg@linaro.org>
18417 L: op-tee@lists.trustedfirmware.org
18418 S: Maintained
18419 F: Documentation/staging/tee.rst
18420 F: drivers/tee/
18421 F: include/linux/tee_drv.h
18422 F: include/uapi/linux/tee.h
18423
18424 TEGRA ARCHITECTURE SUPPORT
18425 M: Thierry Reding <thierry.reding@gmail.com>
18426 M: Jonathan Hunter <jonathanh@nvidia.com>
18427 L: linux-tegra@vger.kernel.org
18428 S: Supported
18429 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
18430 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18431 N: [^a-z]tegra
18432
18433 TEGRA CLOCK DRIVER
18434 M: Peter De Schrijver <pdeschrijver@nvidia.com>
18435 M: Prashant Gaikwad <pgaikwad@nvidia.com>
18436 S: Supported
18437 F: drivers/clk/tegra/
18438
18439 TEGRA DMA DRIVERS
18440 M: Laxman Dewangan <ldewangan@nvidia.com>
18441 M: Jon Hunter <jonathanh@nvidia.com>
18442 S: Supported
18443 F: drivers/dma/tegra*
18444
18445 TEGRA I2C DRIVER
18446 M: Laxman Dewangan <ldewangan@nvidia.com>
18447 R: Dmitry Osipenko <digetx@gmail.com>
18448 S: Supported
18449 F: drivers/i2c/busses/i2c-tegra.c
18450
18451 TEGRA IOMMU DRIVERS
18452 M: Thierry Reding <thierry.reding@gmail.com>
18453 R: Krishna Reddy <vdumpa@nvidia.com>
18454 L: linux-tegra@vger.kernel.org
18455 S: Supported
18456 F: drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18457 F: drivers/iommu/tegra*
18458
18459 TEGRA KBC DRIVER
18460 M: Laxman Dewangan <ldewangan@nvidia.com>
18461 S: Supported
18462 F: drivers/input/keyboard/tegra-kbc.c
18463
18464 TEGRA NAND DRIVER
18465 M: Stefan Agner <stefan@agner.ch>
18466 M: Lucas Stach <dev@lynxeye.de>
18467 S: Maintained
18468 F: Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18469 F: drivers/mtd/nand/raw/tegra_nand.c
18470
18471 TEGRA PWM DRIVER
18472 M: Thierry Reding <thierry.reding@gmail.com>
18473 S: Supported
18474 F: drivers/pwm/pwm-tegra.c
18475
18476 TEGRA SERIAL DRIVER
18477 M: Laxman Dewangan <ldewangan@nvidia.com>
18478 S: Supported
18479 F: drivers/tty/serial/serial-tegra.c
18480
18481 TEGRA SPI DRIVER
18482 M: Laxman Dewangan <ldewangan@nvidia.com>
18483 S: Supported
18484 F: drivers/spi/spi-tegra*
18485
18486 TEGRA QUAD SPI DRIVER
18487 M: Thierry Reding <thierry.reding@gmail.com>
18488 M: Jonathan Hunter <jonathanh@nvidia.com>
18489 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18490 L: linux-tegra@vger.kernel.org
18491 S: Maintained
18492 F: drivers/spi/spi-tegra210-quad.c
18493
18494 TEGRA VIDEO DRIVER
18495 M: Thierry Reding <thierry.reding@gmail.com>
18496 M: Jonathan Hunter <jonathanh@nvidia.com>
18497 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18498 L: linux-media@vger.kernel.org
18499 L: linux-tegra@vger.kernel.org
18500 S: Maintained
18501 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18502 F: drivers/staging/media/tegra-video/
18503
18504 TEGRA XUSB PADCTL DRIVER
18505 M: JC Kuo <jckuo@nvidia.com>
18506 S: Supported
18507 F: drivers/phy/tegra/xusb*
18508
18509 TEHUTI ETHERNET DRIVER
18510 M: Andy Gospodarek <andy@greyhouse.net>
18511 L: netdev@vger.kernel.org
18512 S: Supported
18513 F: drivers/net/ethernet/tehuti/*
18514
18515 TELECOM CLOCK DRIVER FOR MCPL0010
18516 M: Mark Gross <mark.gross@intel.com>
18517 S: Supported
18518 F: drivers/char/tlclk.c
18519
18520 TEMPO SEMICONDUCTOR DRIVERS
18521 M: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18522 S: Maintained
18523 F: Documentation/devicetree/bindings/sound/tscs*.txt
18524 F: sound/soc/codecs/tscs*.c
18525 F: sound/soc/codecs/tscs*.h
18526
18527 TENSILICA XTENSA PORT (xtensa)
18528 M: Chris Zankel <chris@zankel.net>
18529 M: Max Filippov <jcmvbkbc@gmail.com>
18530 L: linux-xtensa@linux-xtensa.org
18531 S: Maintained
18532 T: git git://github.com/czankel/xtensa-linux.git
18533 F: arch/xtensa/
18534 F: drivers/irqchip/irq-xtensa-*
18535
18536 TEXAS INSTRUMENTS ASoC DRIVERS
18537 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18538 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18539 S: Maintained
18540 F: sound/soc/ti/
18541
18542 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18543 M: Ricardo Ribalda <ribalda@kernel.org>
18544 L: linux-iio@vger.kernel.org
18545 S: Supported
18546 F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18547 F: drivers/iio/dac/ti-dac7612.c
18548
18549 TEXAS INSTRUMENTS DMA DRIVERS
18550 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18551 L: dmaengine@vger.kernel.org
18552 S: Maintained
18553 F: Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18554 F: Documentation/devicetree/bindings/dma/ti-edma.txt
18555 F: Documentation/devicetree/bindings/dma/ti/
18556 F: drivers/dma/ti/
18557 X: drivers/dma/ti/cppi41.c
18558 F: include/linux/dma/k3-udma-glue.h
18559 F: include/linux/dma/ti-cppi5.h
18560 F: include/linux/dma/k3-psil.h
18561
18562 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18563 M: Nishanth Menon <nm@ti.com>
18564 M: Tero Kristo <kristo@kernel.org>
18565 M: Santosh Shilimkar <ssantosh@kernel.org>
18566 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18567 S: Maintained
18568 F: Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18569 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18570 F: Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18571 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18572 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18573 F: Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18574 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18575 F: drivers/clk/keystone/sci-clk.c
18576 F: drivers/firmware/ti_sci*
18577 F: drivers/irqchip/irq-ti-sci-inta.c
18578 F: drivers/irqchip/irq-ti-sci-intr.c
18579 F: drivers/reset/reset-ti-sci.c
18580 F: drivers/soc/ti/ti_sci_inta_msi.c
18581 F: drivers/soc/ti/ti_sci_pm_domains.c
18582 F: include/dt-bindings/soc/ti,sci_pm_domain.h
18583 F: include/linux/soc/ti/ti_sci_inta_msi.h
18584 F: include/linux/soc/ti/ti_sci_protocol.h
18585
18586 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18587 M: Robert Marko <robert.marko@sartura.hr>
18588 M: Luka Perkov <luka.perkov@sartura.hr>
18589 L: linux-hwmon@vger.kernel.org
18590 S: Maintained
18591 F: Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18592 F: Documentation/hwmon/tps23861.rst
18593 F: drivers/hwmon/tps23861.c
18594
18595 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18596 M: Puranjay Mohan <puranjay12@gmail.com>
18597 L: linux-iio@vger.kernel.org
18598 S: Supported
18599 F: Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18600 F: drivers/iio/temperature/tmp117.c
18601
18602 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18603 M: Hans Verkuil <hverkuil@xs4all.nl>
18604 L: linux-media@vger.kernel.org
18605 S: Maintained
18606 W: https://linuxtv.org
18607 T: git git://linuxtv.org/media_tree.git
18608 F: drivers/media/radio/radio-raremono.c
18609
18610 THERMAL
18611 M: Rafael J. Wysocki <rafael@kernel.org>
18612 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18613 R: Amit Kucheria <amitk@kernel.org>
18614 R: Zhang Rui <rui.zhang@intel.com>
18615 L: linux-pm@vger.kernel.org
18616 S: Supported
18617 Q: https://patchwork.kernel.org/project/linux-pm/list/
18618 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18619 F: Documentation/devicetree/bindings/thermal/
18620 F: drivers/thermal/
18621 F: include/linux/cpu_cooling.h
18622 F: include/linux/thermal.h
18623 F: include/uapi/linux/thermal.h
18624 F: tools/thermal/
18625
18626 THERMAL DRIVER FOR AMLOGIC SOCS
18627 M: Guillaume La Roque <glaroque@baylibre.com>
18628 L: linux-pm@vger.kernel.org
18629 L: linux-amlogic@lists.infradead.org
18630 S: Supported
18631 W: http://linux-meson.com/
18632 F: Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18633 F: drivers/thermal/amlogic_thermal.c
18634
18635 THERMAL/CPU_COOLING
18636 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
18637 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18638 M: Viresh Kumar <viresh.kumar@linaro.org>
18639 R: Lukasz Luba <lukasz.luba@arm.com>
18640 L: linux-pm@vger.kernel.org
18641 S: Supported
18642 F: Documentation/driver-api/thermal/cpu-cooling-api.rst
18643 F: Documentation/driver-api/thermal/cpu-idle-cooling.rst
18644 F: drivers/thermal/cpufreq_cooling.c
18645 F: drivers/thermal/cpuidle_cooling.c
18646 F: include/linux/cpu_cooling.h
18647
18648 THERMAL/POWER_ALLOCATOR
18649 M: Lukasz Luba <lukasz.luba@arm.com>
18650 L: linux-pm@vger.kernel.org
18651 S: Maintained
18652 F: Documentation/driver-api/thermal/power_allocator.rst
18653 F: drivers/thermal/gov_power_allocator.c
18654 F: include/trace/events/thermal_power_allocator.h
18655
18656 THINKPAD ACPI EXTRAS DRIVER
18657 M: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18658 L: ibm-acpi-devel@lists.sourceforge.net
18659 L: platform-driver-x86@vger.kernel.org
18660 S: Maintained
18661 W: http://ibm-acpi.sourceforge.net
18662 W: http://thinkwiki.org/wiki/Ibm-acpi
18663 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18664 F: drivers/platform/x86/thinkpad_acpi.c
18665
18666 THINKPAD LMI DRIVER
18667 M: Mark Pearson <markpearson@lenovo.com>
18668 L: platform-driver-x86@vger.kernel.org
18669 S: Maintained
18670 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
18671 F: drivers/platform/x86/think-lmi.?
18672
18673 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18674 M: Isaac Hazan <isaac.hazan@intel.com>
18675 L: linux-usb@vger.kernel.org
18676 S: Maintained
18677 F: drivers/thunderbolt/dma_test.c
18678
18679 THUNDERBOLT DRIVER
18680 M: Andreas Noever <andreas.noever@gmail.com>
18681 M: Michael Jamet <michael.jamet@intel.com>
18682 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18683 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18684 L: linux-usb@vger.kernel.org
18685 S: Maintained
18686 T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18687 F: Documentation/admin-guide/thunderbolt.rst
18688 F: drivers/thunderbolt/
18689 F: include/linux/thunderbolt.h
18690
18691 THUNDERBOLT NETWORK DRIVER
18692 M: Michael Jamet <michael.jamet@intel.com>
18693 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18694 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18695 L: netdev@vger.kernel.org
18696 S: Maintained
18697 F: drivers/net/thunderbolt.c
18698
18699 THUNDERX GPIO DRIVER
18700 M: Robert Richter <rric@kernel.org>
18701 S: Odd Fixes
18702 F: drivers/gpio/gpio-thunderx.c
18703
18704 TI ADS131E0X ADC SERIES DRIVER
18705 M: Tomislav Denis <tomislav.denis@avl.com>
18706 L: linux-iio@vger.kernel.org
18707 S: Maintained
18708 F: Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18709 F: drivers/iio/adc/ti-ads131e08.c
18710
18711 TI AM437X VPFE DRIVER
18712 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18713 L: linux-media@vger.kernel.org
18714 S: Maintained
18715 W: https://linuxtv.org
18716 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18717 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18718 F: drivers/media/platform/am437x/
18719
18720 TI BANDGAP AND THERMAL DRIVER
18721 M: Eduardo Valentin <edubezval@gmail.com>
18722 M: Keerthy <j-keerthy@ti.com>
18723 L: linux-pm@vger.kernel.org
18724 L: linux-omap@vger.kernel.org
18725 S: Maintained
18726 F: drivers/thermal/ti-soc-thermal/
18727
18728 TI BQ27XXX POWER SUPPLY DRIVER
18729 F: drivers/power/supply/bq27xxx_battery.c
18730 F: drivers/power/supply/bq27xxx_battery_i2c.c
18731 F: include/linux/power/bq27xxx_battery.h
18732
18733 TI CDCE706 CLOCK DRIVER
18734 M: Max Filippov <jcmvbkbc@gmail.com>
18735 S: Maintained
18736 F: drivers/clk/clk-cdce706.c
18737
18738 TI CLOCK DRIVER
18739 M: Tero Kristo <kristo@kernel.org>
18740 L: linux-omap@vger.kernel.org
18741 S: Odd Fixes
18742 F: drivers/clk/ti/
18743 F: include/linux/clk/ti.h
18744
18745 TI DAVINCI MACHINE SUPPORT
18746 M: Sekhar Nori <nsekhar@ti.com>
18747 R: Bartosz Golaszewski <brgl@bgdev.pl>
18748 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18749 S: Supported
18750 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18751 F: Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18752 F: arch/arm/boot/dts/da850*
18753 F: arch/arm/mach-davinci/
18754 F: drivers/i2c/busses/i2c-davinci.c
18755
18756 TI DAVINCI SERIES CLOCK DRIVER
18757 M: David Lechner <david@lechnology.com>
18758 R: Sekhar Nori <nsekhar@ti.com>
18759 S: Maintained
18760 F: Documentation/devicetree/bindings/clock/ti/davinci/
18761 F: drivers/clk/davinci/
18762
18763 TI DAVINCI SERIES GPIO DRIVER
18764 M: Keerthy <j-keerthy@ti.com>
18765 L: linux-gpio@vger.kernel.org
18766 S: Maintained
18767 F: Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18768 F: drivers/gpio/gpio-davinci.c
18769
18770 TI DAVINCI SERIES MEDIA DRIVER
18771 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18772 L: linux-media@vger.kernel.org
18773 S: Maintained
18774 W: https://linuxtv.org
18775 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18776 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18777 F: drivers/media/platform/davinci/
18778 F: include/media/davinci/
18779
18780 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18781 R: David Lechner <david@lechnology.com>
18782 L: linux-iio@vger.kernel.org
18783 F: Documentation/devicetree/bindings/counter/ti-eqep.yaml
18784 F: drivers/counter/ti-eqep.c
18785
18786 TI ETHERNET SWITCH DRIVER (CPSW)
18787 R: Grygorii Strashko <grygorii.strashko@ti.com>
18788 L: linux-omap@vger.kernel.org
18789 L: netdev@vger.kernel.org
18790 S: Maintained
18791 F: drivers/net/ethernet/ti/cpsw*
18792 F: drivers/net/ethernet/ti/davinci*
18793
18794 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18795 M: Alex Dubov <oakad@yahoo.com>
18796 S: Maintained
18797 W: http://tifmxx.berlios.de/
18798 F: drivers/memstick/host/tifm_ms.c
18799 F: drivers/misc/tifm*
18800 F: drivers/mmc/host/tifm_sd.c
18801 F: include/linux/tifm.h
18802
18803 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18804 M: Santosh Shilimkar <ssantosh@kernel.org>
18805 L: linux-kernel@vger.kernel.org
18806 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18807 S: Maintained
18808 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18809 F: drivers/soc/ti/*
18810
18811 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18812 M: M R Swami Reddy <mr.swami.reddy@ti.com>
18813 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18814 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18815 S: Maintained
18816 F: sound/soc/codecs/isabelle*
18817 F: sound/soc/codecs/lm49453*
18818
18819 TI PCM3060 ASoC CODEC DRIVER
18820 M: Kirill Marinushkin <kmarinushkin@birdec.com>
18821 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18822 S: Maintained
18823 F: Documentation/devicetree/bindings/sound/pcm3060.txt
18824 F: sound/soc/codecs/pcm3060*
18825
18826 TI TAS571X FAMILY ASoC CODEC DRIVER
18827 M: Kevin Cernekee <cernekee@chromium.org>
18828 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18829 S: Odd Fixes
18830 F: sound/soc/codecs/tas571x*
18831
18832 TI TRF7970A NFC DRIVER
18833 M: Mark Greer <mgreer@animalcreek.com>
18834 L: linux-wireless@vger.kernel.org
18835 L: linux-nfc@lists.01.org (subscribers-only)
18836 S: Supported
18837 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18838 F: drivers/nfc/trf7970a.c
18839
18840 TI TSC2046 ADC DRIVER
18841 M: Oleksij Rempel <o.rempel@pengutronix.de>
18842 R: kernel@pengutronix.de
18843 L: linux-iio@vger.kernel.org
18844 S: Maintained
18845 F: Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18846 F: drivers/iio/adc/ti-tsc2046.c
18847
18848 TI TWL4030 SERIES SOC CODEC DRIVER
18849 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18850 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18851 S: Maintained
18852 F: sound/soc/codecs/twl4030*
18853
18854 TI VPE/CAL DRIVERS
18855 M: Benoit Parrot <bparrot@ti.com>
18856 L: linux-media@vger.kernel.org
18857 S: Maintained
18858 W: http://linuxtv.org/
18859 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18860 F: Documentation/devicetree/bindings/media/ti,cal.yaml
18861 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
18862 F: drivers/media/platform/ti-vpe/
18863
18864 TI WILINK WIRELESS DRIVERS
18865 L: linux-wireless@vger.kernel.org
18866 S: Orphan
18867 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18868 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18869 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18870 F: drivers/net/wireless/ti/
18871 F: include/linux/wl12xx.h
18872
18873 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18874 M: John Stultz <john.stultz@linaro.org>
18875 M: Thomas Gleixner <tglx@linutronix.de>
18876 R: Stephen Boyd <sboyd@kernel.org>
18877 L: linux-kernel@vger.kernel.org
18878 S: Supported
18879 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18880 F: include/linux/clocksource.h
18881 F: include/linux/time.h
18882 F: include/linux/timex.h
18883 F: include/uapi/linux/time.h
18884 F: include/uapi/linux/timex.h
18885 F: kernel/time/alarmtimer.c
18886 F: kernel/time/clocksource.c
18887 F: kernel/time/ntp.c
18888 F: kernel/time/time*.c
18889 F: tools/testing/selftests/timers/
18890
18891 TIPC NETWORK LAYER
18892 M: Jon Maloy <jmaloy@redhat.com>
18893 M: Ying Xue <ying.xue@windriver.com>
18894 L: netdev@vger.kernel.org (core kernel code)
18895 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18896 S: Maintained
18897 W: http://tipc.sourceforge.net/
18898 F: include/uapi/linux/tipc*.h
18899 F: net/tipc/
18900
18901 TLAN NETWORK DRIVER
18902 M: Samuel Chessman <chessman@tux.org>
18903 L: tlan-devel@lists.sourceforge.net (subscribers-only)
18904 S: Maintained
18905 W: http://sourceforge.net/projects/tlan/
18906 F: Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18907 F: drivers/net/ethernet/ti/tlan.*
18908
18909 TM6000 VIDEO4LINUX DRIVER
18910 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18911 L: linux-media@vger.kernel.org
18912 S: Odd fixes
18913 W: https://linuxtv.org
18914 T: git git://linuxtv.org/media_tree.git
18915 F: Documentation/admin-guide/media/tm6000*
18916 F: drivers/media/usb/tm6000/
18917
18918 TMIO/SDHI MMC DRIVER
18919 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
18920 L: linux-mmc@vger.kernel.org
18921 S: Supported
18922 F: drivers/mmc/host/renesas_sdhi*
18923 F: drivers/mmc/host/tmio_mmc*
18924 F: include/linux/mfd/tmio.h
18925
18926 TMP401 HARDWARE MONITOR DRIVER
18927 M: Guenter Roeck <linux@roeck-us.net>
18928 L: linux-hwmon@vger.kernel.org
18929 S: Maintained
18930 F: Documentation/hwmon/tmp401.rst
18931 F: drivers/hwmon/tmp401.c
18932
18933 TMP513 HARDWARE MONITOR DRIVER
18934 M: Eric Tremblay <etremblay@distech-controls.com>
18935 L: linux-hwmon@vger.kernel.org
18936 S: Maintained
18937 F: Documentation/hwmon/tmp513.rst
18938 F: drivers/hwmon/tmp513.c
18939
18940 TMPFS (SHMEM FILESYSTEM)
18941 M: Hugh Dickins <hughd@google.com>
18942 L: linux-mm@kvack.org
18943 S: Maintained
18944 F: include/linux/shmem_fs.h
18945 F: mm/shmem.c
18946
18947 TOMOYO SECURITY MODULE
18948 M: Kentaro Takeda <takedakn@nttdata.co.jp>
18949 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18950 L: tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18951 L: tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18952 L: tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18953 L: tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18954 S: Maintained
18955 W: https://tomoyo.osdn.jp/
18956 F: security/tomoyo/
18957
18958 TOPSTAR LAPTOP EXTRAS DRIVER
18959 M: Herton Ronaldo Krzesinski <herton@canonical.com>
18960 L: platform-driver-x86@vger.kernel.org
18961 S: Maintained
18962 F: drivers/platform/x86/topstar-laptop.c
18963
18964 TORTURE-TEST MODULES
18965 M: Davidlohr Bueso <dave@stgolabs.net>
18966 M: "Paul E. McKenney" <paulmck@kernel.org>
18967 M: Josh Triplett <josh@joshtriplett.org>
18968 L: linux-kernel@vger.kernel.org
18969 S: Supported
18970 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18971 F: Documentation/RCU/torture.rst
18972 F: kernel/locking/locktorture.c
18973 F: kernel/rcu/rcuscale.c
18974 F: kernel/rcu/rcutorture.c
18975 F: kernel/rcu/refscale.c
18976 F: kernel/torture.c
18977
18978 TOSHIBA ACPI EXTRAS DRIVER
18979 M: Azael Avalos <coproscefalo@gmail.com>
18980 L: platform-driver-x86@vger.kernel.org
18981 S: Maintained
18982 F: drivers/platform/x86/toshiba_acpi.c
18983
18984 TOSHIBA BLUETOOTH DRIVER
18985 M: Azael Avalos <coproscefalo@gmail.com>
18986 L: platform-driver-x86@vger.kernel.org
18987 S: Maintained
18988 F: drivers/platform/x86/toshiba_bluetooth.c
18989
18990 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18991 M: Azael Avalos <coproscefalo@gmail.com>
18992 L: platform-driver-x86@vger.kernel.org
18993 S: Maintained
18994 F: drivers/platform/x86/toshiba_haps.c
18995
18996 TOSHIBA SMM DRIVER
18997 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
18998 S: Maintained
18999 W: http://www.buzzard.org.uk/toshiba/
19000 F: drivers/char/toshiba.c
19001 F: include/linux/toshiba.h
19002 F: include/uapi/linux/toshiba.h
19003
19004 TOSHIBA TC358743 DRIVER
19005 M: Mats Randgaard <matrandg@cisco.com>
19006 L: linux-media@vger.kernel.org
19007 S: Maintained
19008 F: drivers/media/i2c/tc358743*
19009 F: include/media/i2c/tc358743.h
19010
19011 TOSHIBA WMI HOTKEYS DRIVER
19012 M: Azael Avalos <coproscefalo@gmail.com>
19013 L: platform-driver-x86@vger.kernel.org
19014 S: Maintained
19015 F: drivers/platform/x86/toshiba-wmi.c
19016
19017 TPM DEVICE DRIVER
19018 M: Peter Huewe <peterhuewe@gmx.de>
19019 M: Jarkko Sakkinen <jarkko@kernel.org>
19020 R: Jason Gunthorpe <jgg@ziepe.ca>
19021 L: linux-integrity@vger.kernel.org
19022 S: Maintained
19023 W: https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19024 Q: https://patchwork.kernel.org/project/linux-integrity/list/
19025 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19026 F: drivers/char/tpm/
19027
19028 TRACING
19029 M: Steven Rostedt <rostedt@goodmis.org>
19030 M: Ingo Molnar <mingo@redhat.com>
19031 S: Maintained
19032 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
19033 F: Documentation/trace/ftrace.rst
19034 F: arch/*/*/*/ftrace.h
19035 F: arch/*/kernel/ftrace.c
19036 F: fs/tracefs/
19037 F: include/*/ftrace.h
19038 F: include/linux/trace*.h
19039 F: include/trace/
19040 F: kernel/trace/
19041 F: tools/testing/selftests/ftrace/
19042
19043 TRACING MMIO ACCESSES (MMIOTRACE)
19044 M: Steven Rostedt <rostedt@goodmis.org>
19045 M: Ingo Molnar <mingo@kernel.org>
19046 R: Karol Herbst <karolherbst@gmail.com>
19047 R: Pekka Paalanen <ppaalanen@gmail.com>
19048 L: linux-kernel@vger.kernel.org
19049 L: nouveau@lists.freedesktop.org
19050 S: Maintained
19051 F: arch/x86/mm/kmmio.c
19052 F: arch/x86/mm/mmio-mod.c
19053 F: arch/x86/mm/testmmiotrace.c
19054 F: include/linux/mmiotrace.h
19055 F: kernel/trace/trace_mmiotrace.c
19056
19057 TRACING OS NOISE / LATENCY TRACERS
19058 M: Steven Rostedt <rostedt@goodmis.org>
19059 M: Daniel Bristot de Oliveira <bristot@kernel.org>
19060 S: Maintained
19061 F: kernel/trace/trace_osnoise.c
19062 F: include/trace/events/osnoise.h
19063 F: kernel/trace/trace_hwlat.c
19064 F: kernel/trace/trace_irqsoff.c
19065 F: kernel/trace/trace_sched_wakeup.c
19066 F: Documentation/trace/osnoise-tracer.rst
19067 F: Documentation/trace/timerlat-tracer.rst
19068 F: Documentation/trace/hwlat_detector.rst
19069 F: arch/*/kernel/trace.c
19070
19071 TRADITIONAL CHINESE DOCUMENTATION
19072 M: Hu Haowen <src.res@email.cn>
19073 L: linux-doc-tw-discuss@lists.sourceforge.net
19074 S: Maintained
19075 W: https://github.com/srcres258/linux-doc
19076 T: git git://github.com/srcres258/linux-doc.git doc-zh-tw
19077 F: Documentation/translations/zh_TW/
19078
19079 TRIVIAL PATCHES
19080 M: Jiri Kosina <trivial@kernel.org>
19081 S: Maintained
19082 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19083 K: ^Subject:.*(?i)trivial
19084
19085 TTY LAYER
19086 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19087 M: Jiri Slaby <jirislaby@kernel.org>
19088 S: Supported
19089 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19090 F: Documentation/driver-api/serial/
19091 F: drivers/tty/
19092 F: drivers/tty/serial/serial_core.c
19093 F: include/linux/selection.h
19094 F: include/linux/serial.h
19095 F: include/linux/serial_core.h
19096 F: include/linux/sysrq.h
19097 F: include/linux/tty*.h
19098 F: include/linux/vt.h
19099 F: include/linux/vt_*.h
19100 F: include/uapi/linux/serial.h
19101 F: include/uapi/linux/serial_core.h
19102 F: include/uapi/linux/tty.h
19103
19104 TUA9001 MEDIA DRIVER
19105 M: Antti Palosaari <crope@iki.fi>
19106 L: linux-media@vger.kernel.org
19107 S: Maintained
19108 W: https://linuxtv.org
19109 W: http://palosaari.fi/linux/
19110 Q: http://patchwork.linuxtv.org/project/linux-media/list/
19111 T: git git://linuxtv.org/anttip/media_tree.git
19112 F: drivers/media/tuners/tua9001*
19113
19114 TULIP NETWORK DRIVERS
19115 L: netdev@vger.kernel.org
19116 L: linux-parisc@vger.kernel.org
19117 S: Orphan
19118 F: drivers/net/ethernet/dec/tulip/
19119
19120 TUN/TAP driver
19121 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
19122 S: Maintained
19123 W: http://vtun.sourceforge.net/tun
19124 F: Documentation/networking/tuntap.rst
19125 F: arch/um/os-Linux/drivers/
19126
19127 TURBOCHANNEL SUBSYSTEM
19128 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
19129 M: Ralf Baechle <ralf@linux-mips.org>
19130 L: linux-mips@vger.kernel.org
19131 S: Maintained
19132 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
19133 F: drivers/tc/
19134 F: include/linux/tc.h
19135
19136 TURBOSTAT UTILITY
19137 M: "Len Brown" <lenb@kernel.org>
19138 L: linux-pm@vger.kernel.org
19139 S: Supported
19140 Q: https://patchwork.kernel.org/project/linux-pm/list/
19141 B: https://bugzilla.kernel.org
19142 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19143 F: tools/power/x86/turbostat/
19144
19145 TW5864 VIDEO4LINUX DRIVER
19146 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19147 M: Anton Sviridenko <anton@corp.bluecherry.net>
19148 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19149 M: Andrey Utkin <andrey_utkin@fastmail.com>
19150 L: linux-media@vger.kernel.org
19151 S: Supported
19152 F: drivers/media/pci/tw5864/
19153
19154 TW68 VIDEO4LINUX DRIVER
19155 M: Hans Verkuil <hverkuil@xs4all.nl>
19156 L: linux-media@vger.kernel.org
19157 S: Odd Fixes
19158 W: https://linuxtv.org
19159 T: git git://linuxtv.org/media_tree.git
19160 F: drivers/media/pci/tw68/
19161
19162 TW686X VIDEO4LINUX DRIVER
19163 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19164 L: linux-media@vger.kernel.org
19165 S: Maintained
19166 W: http://linuxtv.org
19167 T: git git://linuxtv.org/media_tree.git
19168 F: drivers/media/pci/tw686x/
19169
19170 UACCE ACCELERATOR FRAMEWORK
19171 M: Zhangfei Gao <zhangfei.gao@linaro.org>
19172 M: Zhou Wang <wangzhou1@hisilicon.com>
19173 L: linux-accelerators@lists.ozlabs.org
19174 L: linux-kernel@vger.kernel.org
19175 S: Maintained
19176 F: Documentation/ABI/testing/sysfs-driver-uacce
19177 F: Documentation/misc-devices/uacce.rst
19178 F: drivers/misc/uacce/
19179 F: include/linux/uacce.h
19180 F: include/uapi/misc/uacce/
19181
19182 UBI FILE SYSTEM (UBIFS)
19183 M: Richard Weinberger <richard@nod.at>
19184 L: linux-mtd@lists.infradead.org
19185 S: Supported
19186 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
19187 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19188 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19189 F: Documentation/filesystems/ubifs-authentication.rst
19190 F: Documentation/filesystems/ubifs.rst
19191 F: fs/ubifs/
19192
19193 UCLINUX (M68KNOMMU AND COLDFIRE)
19194 M: Greg Ungerer <gerg@linux-m68k.org>
19195 L: linux-m68k@lists.linux-m68k.org
19196 L: uclinux-dev@uclinux.org (subscribers-only)
19197 S: Maintained
19198 W: http://www.linux-m68k.org/
19199 W: http://www.uclinux.org/
19200 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19201 F: arch/m68k/*/*_no.*
19202 F: arch/m68k/68*/
19203 F: arch/m68k/coldfire/
19204 F: arch/m68k/include/asm/*_no.*
19205
19206 UDF FILESYSTEM
19207 M: Jan Kara <jack@suse.com>
19208 S: Maintained
19209 F: Documentation/filesystems/udf.rst
19210 F: fs/udf/
19211
19212 UDRAW TABLET
19213 M: Bastien Nocera <hadess@hadess.net>
19214 L: linux-input@vger.kernel.org
19215 S: Maintained
19216 F: drivers/hid/hid-udraw-ps3.c
19217
19218 UFS FILESYSTEM
19219 M: Evgeniy Dushistov <dushistov@mail.ru>
19220 S: Maintained
19221 F: Documentation/admin-guide/ufs.rst
19222 F: fs/ufs/
19223
19224 UHID USERSPACE HID IO DRIVER
19225 M: David Rheinsberg <david.rheinsberg@gmail.com>
19226 L: linux-input@vger.kernel.org
19227 S: Maintained
19228 F: drivers/hid/uhid.c
19229 F: include/uapi/linux/uhid.h
19230
19231 ULPI BUS
19232 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19233 L: linux-usb@vger.kernel.org
19234 S: Maintained
19235 F: drivers/usb/common/ulpi.c
19236 F: include/linux/ulpi/
19237
19238 UNICODE SUBSYSTEM
19239 M: Gabriel Krisman Bertazi <krisman@collabora.com>
19240 L: linux-fsdevel@vger.kernel.org
19241 S: Supported
19242 F: fs/unicode/
19243
19244 UNIFDEF
19245 M: Tony Finch <dot@dotat.at>
19246 S: Maintained
19247 W: http://dotat.at/prog/unifdef
19248 F: scripts/unifdef.c
19249
19250 UNIFORM CDROM DRIVER
19251 M: Phillip Potter <phil@philpotter.co.uk>
19252 S: Maintained
19253 F: Documentation/cdrom/
19254 F: drivers/cdrom/cdrom.c
19255 F: include/linux/cdrom.h
19256 F: include/uapi/linux/cdrom.h
19257
19258 UNISYS S-PAR DRIVERS
19259 M: David Kershner <david.kershner@unisys.com>
19260 L: sparmaintainer@unisys.com (Unisys internal)
19261 S: Supported
19262 F: drivers/staging/unisys/
19263 F: drivers/visorbus/
19264 F: include/linux/visorbus.h
19265
19266 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19267 R: Alim Akhtar <alim.akhtar@samsung.com>
19268 R: Avri Altman <avri.altman@wdc.com>
19269 L: linux-scsi@vger.kernel.org
19270 S: Supported
19271 F: Documentation/scsi/ufs.rst
19272 F: drivers/scsi/ufs/
19273
19274 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19275 M: Pedro Sousa <pedrom.sousa@synopsys.com>
19276 L: linux-scsi@vger.kernel.org
19277 S: Supported
19278 F: drivers/scsi/ufs/*dwc*
19279
19280 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19281 M: Stanley Chu <stanley.chu@mediatek.com>
19282 L: linux-scsi@vger.kernel.org
19283 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19284 S: Maintained
19285 F: drivers/scsi/ufs/ufs-mediatek*
19286
19287 UNSORTED BLOCK IMAGES (UBI)
19288 M: Richard Weinberger <richard@nod.at>
19289 L: linux-mtd@lists.infradead.org
19290 S: Supported
19291 W: http://www.linux-mtd.infradead.org/
19292 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19293 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19294 F: drivers/mtd/ubi/
19295 F: include/linux/mtd/ubi.h
19296 F: include/uapi/mtd/ubi-user.h
19297
19298 USB "USBNET" DRIVER FRAMEWORK
19299 M: Oliver Neukum <oneukum@suse.com>
19300 L: netdev@vger.kernel.org
19301 S: Maintained
19302 W: http://www.linux-usb.org/usbnet
19303 F: drivers/net/usb/usbnet.c
19304 F: include/linux/usb/usbnet.h
19305
19306 USB ACM DRIVER
19307 M: Oliver Neukum <oneukum@suse.com>
19308 L: linux-usb@vger.kernel.org
19309 S: Maintained
19310 F: Documentation/usb/acm.rst
19311 F: drivers/usb/class/cdc-acm.*
19312
19313 USB APPLE MFI FASTCHARGE DRIVER
19314 M: Bastien Nocera <hadess@hadess.net>
19315 L: linux-usb@vger.kernel.org
19316 S: Maintained
19317 F: drivers/usb/misc/apple-mfi-fastcharge.c
19318
19319 USB AR5523 WIRELESS DRIVER
19320 M: Pontus Fuchs <pontus.fuchs@gmail.com>
19321 L: linux-wireless@vger.kernel.org
19322 S: Maintained
19323 F: drivers/net/wireless/ath/ar5523/
19324
19325 USB ATTACHED SCSI
19326 M: Oliver Neukum <oneukum@suse.com>
19327 L: linux-usb@vger.kernel.org
19328 L: linux-scsi@vger.kernel.org
19329 S: Maintained
19330 F: drivers/usb/storage/uas.c
19331
19332 USB CDC ETHERNET DRIVER
19333 M: Oliver Neukum <oliver@neukum.org>
19334 L: linux-usb@vger.kernel.org
19335 S: Maintained
19336 F: drivers/net/usb/cdc_*.c
19337 F: include/uapi/linux/usb/cdc.h
19338
19339 USB CHAOSKEY DRIVER
19340 M: Keith Packard <keithp@keithp.com>
19341 L: linux-usb@vger.kernel.org
19342 S: Maintained
19343 F: drivers/usb/misc/chaoskey.c
19344
19345 USB CYPRESS C67X00 DRIVER
19346 L: linux-usb@vger.kernel.org
19347 S: Orphan
19348 F: drivers/usb/c67x00/
19349
19350 USB DAVICOM DM9601 DRIVER
19351 M: Peter Korsgaard <peter@korsgaard.com>
19352 L: netdev@vger.kernel.org
19353 S: Maintained
19354 W: http://www.linux-usb.org/usbnet
19355 F: drivers/net/usb/dm9601.c
19356
19357 USB EHCI DRIVER
19358 M: Alan Stern <stern@rowland.harvard.edu>
19359 L: linux-usb@vger.kernel.org
19360 S: Maintained
19361 F: Documentation/usb/ehci.rst
19362 F: drivers/usb/host/ehci*
19363
19364 USB GADGET/PERIPHERAL SUBSYSTEM
19365 M: Felipe Balbi <balbi@kernel.org>
19366 L: linux-usb@vger.kernel.org
19367 S: Maintained
19368 W: http://www.linux-usb.org/gadget
19369 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19370 F: drivers/usb/gadget/
19371 F: include/linux/usb/gadget*
19372
19373 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19374 M: Jiri Kosina <jikos@kernel.org>
19375 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
19376 L: linux-usb@vger.kernel.org
19377 S: Maintained
19378 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19379 F: Documentation/hid/hiddev.rst
19380 F: drivers/hid/usbhid/
19381
19382 USB INTEL XHCI ROLE MUX DRIVER
19383 M: Hans de Goede <hdegoede@redhat.com>
19384 L: linux-usb@vger.kernel.org
19385 S: Maintained
19386 F: drivers/usb/roles/intel-xhci-usb-role-switch.c
19387
19388 USB IP DRIVER FOR HISILICON KIRIN 960
19389 M: Yu Chen <chenyu56@huawei.com>
19390 M: Binghui Wang <wangbinghui@hisilicon.com>
19391 L: linux-usb@vger.kernel.org
19392 S: Maintained
19393 F: Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19394 F: drivers/phy/hisilicon/phy-hi3660-usb3.c
19395
19396 USB IP DRIVER FOR HISILICON KIRIN 970
19397 M: Mauro Carvalho Chehab <mchehab@kernel.org>
19398 L: linux-usb@vger.kernel.org
19399 S: Maintained
19400 F: Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19401 F: drivers/phy/hisilicon/phy-hi3670-usb3.c
19402
19403 USB ISP116X DRIVER
19404 M: Olav Kongas <ok@artecdesign.ee>
19405 L: linux-usb@vger.kernel.org
19406 S: Maintained
19407 F: drivers/usb/host/isp116x*
19408 F: include/linux/usb/isp116x.h
19409
19410 USB ISP1760 DRIVER
19411 M: Rui Miguel Silva <rui.silva@linaro.org>
19412 L: linux-usb@vger.kernel.org
19413 S: Maintained
19414 F: drivers/usb/isp1760/*
19415 F: Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19416
19417 USB LAN78XX ETHERNET DRIVER
19418 M: Woojung Huh <woojung.huh@microchip.com>
19419 M: UNGLinuxDriver@microchip.com
19420 L: netdev@vger.kernel.org
19421 S: Maintained
19422 F: Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19423 F: drivers/net/usb/lan78xx.*
19424 F: include/dt-bindings/net/microchip-lan78xx.h
19425
19426 USB MASS STORAGE DRIVER
19427 M: Alan Stern <stern@rowland.harvard.edu>
19428 L: linux-usb@vger.kernel.org
19429 L: usb-storage@lists.one-eyed-alien.net
19430 S: Maintained
19431 F: drivers/usb/storage/
19432
19433 USB MIDI DRIVER
19434 M: Clemens Ladisch <clemens@ladisch.de>
19435 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19436 S: Maintained
19437 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19438 F: sound/usb/midi.*
19439
19440 USB NETWORKING DRIVERS
19441 L: linux-usb@vger.kernel.org
19442 S: Odd Fixes
19443 F: drivers/net/usb/
19444
19445 USB OHCI DRIVER
19446 M: Alan Stern <stern@rowland.harvard.edu>
19447 L: linux-usb@vger.kernel.org
19448 S: Maintained
19449 F: Documentation/usb/ohci.rst
19450 F: drivers/usb/host/ohci*
19451
19452 USB OTG FSM (Finite State Machine)
19453 M: Peter Chen <peter.chen@kernel.org>
19454 L: linux-usb@vger.kernel.org
19455 S: Maintained
19456 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19457 F: drivers/usb/common/usb-otg-fsm.c
19458
19459 USB OVER IP DRIVER
19460 M: Valentina Manea <valentina.manea.m@gmail.com>
19461 M: Shuah Khan <shuah@kernel.org>
19462 M: Shuah Khan <skhan@linuxfoundation.org>
19463 L: linux-usb@vger.kernel.org
19464 S: Maintained
19465 F: Documentation/usb/usbip_protocol.rst
19466 F: drivers/usb/usbip/
19467 F: tools/testing/selftests/drivers/usb/usbip/
19468 F: tools/usb/usbip/
19469
19470 USB PEGASUS DRIVER
19471 M: Petko Manolov <petkan@nucleusys.com>
19472 L: linux-usb@vger.kernel.org
19473 L: netdev@vger.kernel.org
19474 S: Maintained
19475 W: https://github.com/petkan/pegasus
19476 T: git git://github.com/petkan/pegasus.git
19477 F: drivers/net/usb/pegasus.*
19478
19479 USB PHY LAYER
19480 M: Felipe Balbi <balbi@kernel.org>
19481 L: linux-usb@vger.kernel.org
19482 S: Maintained
19483 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19484 F: drivers/usb/phy/
19485
19486 USB PRINTER DRIVER (usblp)
19487 M: Pete Zaitcev <zaitcev@redhat.com>
19488 L: linux-usb@vger.kernel.org
19489 S: Supported
19490 F: drivers/usb/class/usblp.c
19491
19492 USB RAW GADGET DRIVER
19493 R: Andrey Konovalov <andreyknvl@gmail.com>
19494 L: linux-usb@vger.kernel.org
19495 S: Maintained
19496 F: Documentation/usb/raw-gadget.rst
19497 F: drivers/usb/gadget/legacy/raw_gadget.c
19498 F: include/uapi/linux/usb/raw_gadget.h
19499
19500 USB QMI WWAN NETWORK DRIVER
19501 M: Bjørn Mork <bjorn@mork.no>
19502 L: netdev@vger.kernel.org
19503 S: Maintained
19504 F: Documentation/ABI/testing/sysfs-class-net-qmi
19505 F: drivers/net/usb/qmi_wwan.c
19506
19507 USB RTL8150 DRIVER
19508 M: Petko Manolov <petkan@nucleusys.com>
19509 L: linux-usb@vger.kernel.org
19510 L: netdev@vger.kernel.org
19511 S: Maintained
19512 W: https://github.com/petkan/rtl8150
19513 T: git git://github.com/petkan/rtl8150.git
19514 F: drivers/net/usb/rtl8150.c
19515
19516 USB SERIAL SUBSYSTEM
19517 M: Johan Hovold <johan@kernel.org>
19518 L: linux-usb@vger.kernel.org
19519 S: Maintained
19520 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19521 F: Documentation/usb/usb-serial.rst
19522 F: drivers/usb/serial/
19523 F: include/linux/usb/serial.h
19524
19525 USB SMSC75XX ETHERNET DRIVER
19526 M: Steve Glendinning <steve.glendinning@shawell.net>
19527 L: netdev@vger.kernel.org
19528 S: Maintained
19529 F: drivers/net/usb/smsc75xx.*
19530
19531 USB SMSC95XX ETHERNET DRIVER
19532 M: Steve Glendinning <steve.glendinning@shawell.net>
19533 M: UNGLinuxDriver@microchip.com
19534 L: netdev@vger.kernel.org
19535 S: Maintained
19536 F: drivers/net/usb/smsc95xx.*
19537
19538 USB SUBSYSTEM
19539 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19540 L: linux-usb@vger.kernel.org
19541 S: Supported
19542 W: http://www.linux-usb.org
19543 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19544 F: Documentation/devicetree/bindings/usb/
19545 F: Documentation/usb/
19546 F: drivers/usb/
19547 F: include/linux/usb.h
19548 F: include/linux/usb/
19549
19550 USB TYPEC BUS FOR ALTERNATE MODES
19551 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19552 L: linux-usb@vger.kernel.org
19553 S: Maintained
19554 F: Documentation/ABI/testing/sysfs-bus-typec
19555 F: Documentation/driver-api/usb/typec_bus.rst
19556 F: drivers/usb/typec/altmodes/
19557 F: include/linux/usb/typec_altmode.h
19558
19559 USB TYPEC CLASS
19560 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19561 L: linux-usb@vger.kernel.org
19562 S: Maintained
19563 F: Documentation/ABI/testing/sysfs-class-typec
19564 F: Documentation/driver-api/usb/typec.rst
19565 F: drivers/usb/typec/
19566 F: include/linux/usb/typec.h
19567
19568 USB TYPEC INTEL PMC MUX DRIVER
19569 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19570 L: linux-usb@vger.kernel.org
19571 S: Maintained
19572 F: Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19573 F: drivers/usb/typec/mux/intel_pmc_mux.c
19574
19575 USB TYPEC PI3USB30532 MUX DRIVER
19576 M: Hans de Goede <hdegoede@redhat.com>
19577 L: linux-usb@vger.kernel.org
19578 S: Maintained
19579 F: drivers/usb/typec/mux/pi3usb30532.c
19580
19581 USB TYPEC PORT CONTROLLER DRIVERS
19582 M: Guenter Roeck <linux@roeck-us.net>
19583 L: linux-usb@vger.kernel.org
19584 S: Maintained
19585 F: drivers/usb/typec/tcpm/
19586
19587 USB UHCI DRIVER
19588 M: Alan Stern <stern@rowland.harvard.edu>
19589 L: linux-usb@vger.kernel.org
19590 S: Maintained
19591 F: drivers/usb/host/uhci*
19592
19593 USB VIDEO CLASS
19594 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19595 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19596 L: linux-media@vger.kernel.org
19597 S: Maintained
19598 W: http://www.ideasonboard.org/uvc/
19599 T: git git://linuxtv.org/media_tree.git
19600 F: drivers/media/usb/uvc/
19601 F: include/uapi/linux/uvcvideo.h
19602
19603 USB WEBCAM GADGET
19604 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19605 L: linux-usb@vger.kernel.org
19606 S: Maintained
19607 F: drivers/usb/gadget/function/*uvc*
19608 F: drivers/usb/gadget/legacy/webcam.c
19609 F: include/uapi/linux/usb/g_uvc.h
19610
19611 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19612 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
19613 L: linux-wireless@vger.kernel.org
19614 S: Maintained
19615 F: drivers/net/wireless/rndis_wlan.c
19616
19617 USB XHCI DRIVER
19618 M: Mathias Nyman <mathias.nyman@intel.com>
19619 L: linux-usb@vger.kernel.org
19620 S: Supported
19621 F: drivers/usb/host/pci-quirks*
19622 F: drivers/usb/host/xhci*
19623
19624 USB ZD1201 DRIVER
19625 L: linux-wireless@vger.kernel.org
19626 S: Orphan
19627 W: http://linux-lc100020.sourceforge.net
19628 F: drivers/net/wireless/zydas/zd1201.*
19629
19630 USB ZR364XX DRIVER
19631 M: Antoine Jacquet <royale@zerezo.com>
19632 L: linux-usb@vger.kernel.org
19633 L: linux-media@vger.kernel.org
19634 S: Maintained
19635 W: http://royale.zerezo.com/zr364xx/
19636 T: git git://linuxtv.org/media_tree.git
19637 F: Documentation/admin-guide/media/zr364xx*
19638 F: drivers/media/usb/zr364xx/
19639
19640 USER-MODE LINUX (UML)
19641 M: Jeff Dike <jdike@addtoit.com>
19642 M: Richard Weinberger <richard@nod.at>
19643 M: Anton Ivanov <anton.ivanov@cambridgegreys.com>
19644 L: linux-um@lists.infradead.org
19645 S: Maintained
19646 W: http://user-mode-linux.sourceforge.net
19647 Q: https://patchwork.ozlabs.org/project/linux-um/list/
19648 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19649 F: Documentation/virt/uml/
19650 F: arch/um/
19651 F: arch/x86/um/
19652 F: fs/hostfs/
19653
19654 USERSPACE COPYIN/COPYOUT (UIOVEC)
19655 M: Alexander Viro <viro@zeniv.linux.org.uk>
19656 S: Maintained
19657 F: include/linux/uio.h
19658 F: lib/iov_iter.c
19659
19660 USERSPACE DMA BUFFER DRIVER
19661 M: Gerd Hoffmann <kraxel@redhat.com>
19662 L: dri-devel@lists.freedesktop.org
19663 S: Maintained
19664 T: git git://anongit.freedesktop.org/drm/drm-misc
19665 F: drivers/dma-buf/udmabuf.c
19666 F: include/uapi/linux/udmabuf.h
19667
19668 USERSPACE I/O (UIO)
19669 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19670 S: Maintained
19671 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19672 F: Documentation/driver-api/uio-howto.rst
19673 F: drivers/uio/
19674 F: include/linux/uio_driver.h
19675
19676 UTIL-LINUX PACKAGE
19677 M: Karel Zak <kzak@redhat.com>
19678 L: util-linux@vger.kernel.org
19679 S: Maintained
19680 W: http://en.wikipedia.org/wiki/Util-linux
19681 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19682
19683 UUID HELPERS
19684 M: Christoph Hellwig <hch@lst.de>
19685 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19686 L: linux-kernel@vger.kernel.org
19687 S: Maintained
19688 T: git git://git.infradead.org/users/hch/uuid.git
19689 F: include/linux/uuid.h
19690 F: include/uapi/linux/uuid.h
19691 F: lib/test_uuid.c
19692 F: lib/uuid.c
19693
19694 UV SYSFS DRIVER
19695 M: Justin Ernst <justin.ernst@hpe.com>
19696 L: platform-driver-x86@vger.kernel.org
19697 S: Maintained
19698 F: drivers/platform/x86/uv_sysfs.c
19699
19700 UVESAFB DRIVER
19701 M: Michal Januszewski <spock@gentoo.org>
19702 L: linux-fbdev@vger.kernel.org
19703 S: Maintained
19704 W: https://github.com/mjanusz/v86d
19705 F: Documentation/fb/uvesafb.rst
19706 F: drivers/video/fbdev/uvesafb.*
19707
19708 Ux500 CLOCK DRIVERS
19709 M: Ulf Hansson <ulf.hansson@linaro.org>
19710 L: linux-clk@vger.kernel.org
19711 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19712 S: Maintained
19713 F: drivers/clk/ux500/
19714
19715 VF610 NAND DRIVER
19716 M: Stefan Agner <stefan@agner.ch>
19717 L: linux-mtd@lists.infradead.org
19718 S: Supported
19719 F: drivers/mtd/nand/raw/vf610_nfc.c
19720
19721 VFAT/FAT/MSDOS FILESYSTEM
19722 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19723 S: Maintained
19724 F: Documentation/filesystems/vfat.rst
19725 F: fs/fat/
19726
19727 VFIO DRIVER
19728 M: Alex Williamson <alex.williamson@redhat.com>
19729 R: Cornelia Huck <cohuck@redhat.com>
19730 L: kvm@vger.kernel.org
19731 S: Maintained
19732 T: git git://github.com/awilliam/linux-vfio.git
19733 F: Documentation/driver-api/vfio.rst
19734 F: drivers/vfio/
19735 F: include/linux/vfio.h
19736 F: include/linux/vfio_pci_core.h
19737 F: include/uapi/linux/vfio.h
19738
19739 VFIO FSL-MC DRIVER
19740 M: Diana Craciun <diana.craciun@oss.nxp.com>
19741 L: kvm@vger.kernel.org
19742 S: Maintained
19743 F: drivers/vfio/fsl-mc/
19744
19745 VFIO MEDIATED DEVICE DRIVERS
19746 M: Kirti Wankhede <kwankhede@nvidia.com>
19747 L: kvm@vger.kernel.org
19748 S: Maintained
19749 F: Documentation/driver-api/vfio-mediated-device.rst
19750 F: drivers/vfio/mdev/
19751 F: include/linux/mdev.h
19752 F: samples/vfio-mdev/
19753
19754 VFIO PLATFORM DRIVER
19755 M: Eric Auger <eric.auger@redhat.com>
19756 L: kvm@vger.kernel.org
19757 S: Maintained
19758 F: drivers/vfio/platform/
19759
19760 VGA_SWITCHEROO
19761 R: Lukas Wunner <lukas@wunner.de>
19762 S: Maintained
19763 T: git git://anongit.freedesktop.org/drm/drm-misc
19764 F: Documentation/gpu/vga-switcheroo.rst
19765 F: drivers/gpu/vga/vga_switcheroo.c
19766 F: include/linux/vga_switcheroo.h
19767
19768 VIA RHINE NETWORK DRIVER
19769 S: Maintained
19770 M: Kevin Brace <kevinbrace@bracecomputerlab.com>
19771 F: drivers/net/ethernet/via/via-rhine.c
19772
19773 VIA SD/MMC CARD CONTROLLER DRIVER
19774 M: Bruce Chang <brucechang@via.com.tw>
19775 M: Harald Welte <HaraldWelte@viatech.com>
19776 S: Maintained
19777 F: drivers/mmc/host/via-sdmmc.c
19778
19779 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19780 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19781 L: linux-fbdev@vger.kernel.org
19782 S: Maintained
19783 F: drivers/video/fbdev/via/
19784 F: include/linux/via-core.h
19785 F: include/linux/via-gpio.h
19786 F: include/linux/via_i2c.h
19787
19788 VIA VELOCITY NETWORK DRIVER
19789 M: Francois Romieu <romieu@fr.zoreil.com>
19790 L: netdev@vger.kernel.org
19791 S: Maintained
19792 F: drivers/net/ethernet/via/via-velocity.*
19793
19794 VICODEC VIRTUAL CODEC DRIVER
19795 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
19796 L: linux-media@vger.kernel.org
19797 S: Maintained
19798 W: https://linuxtv.org
19799 T: git git://linuxtv.org/media_tree.git
19800 F: drivers/media/test-drivers/vicodec/*
19801
19802 VIDEO I2C POLLING DRIVER
19803 M: Matt Ranostay <matt.ranostay@konsulko.com>
19804 L: linux-media@vger.kernel.org
19805 S: Maintained
19806 F: drivers/media/i2c/video-i2c.c
19807
19808 VIDEO MULTIPLEXER DRIVER
19809 M: Philipp Zabel <p.zabel@pengutronix.de>
19810 L: linux-media@vger.kernel.org
19811 S: Maintained
19812 F: drivers/media/platform/video-mux.c
19813
19814 VIDEOBUF2 FRAMEWORK
19815 M: Tomasz Figa <tfiga@chromium.org>
19816 M: Marek Szyprowski <m.szyprowski@samsung.com>
19817 L: linux-media@vger.kernel.org
19818 S: Maintained
19819 F: drivers/media/common/videobuf2/*
19820 F: include/media/videobuf2-*
19821
19822 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19823 M: Helen Koike <helen.koike@collabora.com>
19824 R: Shuah Khan <skhan@linuxfoundation.org>
19825 L: linux-media@vger.kernel.org
19826 S: Maintained
19827 W: https://linuxtv.org
19828 T: git git://linuxtv.org/media_tree.git
19829 F: drivers/media/test-drivers/vimc/*
19830
19831 VIRT LIB
19832 M: Alex Williamson <alex.williamson@redhat.com>
19833 M: Paolo Bonzini <pbonzini@redhat.com>
19834 L: kvm@vger.kernel.org
19835 S: Supported
19836 F: virt/lib/
19837
19838 VIRTIO AND VHOST VSOCK DRIVER
19839 M: Stefan Hajnoczi <stefanha@redhat.com>
19840 M: Stefano Garzarella <sgarzare@redhat.com>
19841 L: kvm@vger.kernel.org
19842 L: virtualization@lists.linux-foundation.org
19843 L: netdev@vger.kernel.org
19844 S: Maintained
19845 F: drivers/vhost/vsock.c
19846 F: include/linux/virtio_vsock.h
19847 F: include/uapi/linux/virtio_vsock.h
19848 F: net/vmw_vsock/virtio_transport.c
19849 F: net/vmw_vsock/virtio_transport_common.c
19850
19851 VIRTIO BLOCK AND SCSI DRIVERS
19852 M: "Michael S. Tsirkin" <mst@redhat.com>
19853 M: Jason Wang <jasowang@redhat.com>
19854 R: Paolo Bonzini <pbonzini@redhat.com>
19855 R: Stefan Hajnoczi <stefanha@redhat.com>
19856 L: virtualization@lists.linux-foundation.org
19857 S: Maintained
19858 F: drivers/block/virtio_blk.c
19859 F: drivers/scsi/virtio_scsi.c
19860 F: drivers/vhost/scsi.c
19861 F: include/uapi/linux/virtio_blk.h
19862 F: include/uapi/linux/virtio_scsi.h
19863
19864 VIRTIO CONSOLE DRIVER
19865 M: Amit Shah <amit@kernel.org>
19866 L: virtualization@lists.linux-foundation.org
19867 S: Maintained
19868 F: drivers/char/virtio_console.c
19869 F: include/linux/virtio_console.h
19870 F: include/uapi/linux/virtio_console.h
19871
19872 VIRTIO CORE AND NET DRIVERS
19873 M: "Michael S. Tsirkin" <mst@redhat.com>
19874 M: Jason Wang <jasowang@redhat.com>
19875 L: virtualization@lists.linux-foundation.org
19876 S: Maintained
19877 F: Documentation/devicetree/bindings/virtio/
19878 F: drivers/block/virtio_blk.c
19879 F: drivers/crypto/virtio/
19880 F: drivers/net/virtio_net.c
19881 F: drivers/vdpa/
19882 F: drivers/virtio/
19883 F: include/linux/vdpa.h
19884 F: include/linux/virtio*.h
19885 F: include/uapi/linux/virtio_*.h
19886 F: tools/virtio/
19887
19888 VIRTIO BALLOON
19889 M: "Michael S. Tsirkin" <mst@redhat.com>
19890 M: David Hildenbrand <david@redhat.com>
19891 L: virtualization@lists.linux-foundation.org
19892 S: Maintained
19893 F: drivers/virtio/virtio_balloon.c
19894 F: include/uapi/linux/virtio_balloon.h
19895 F: include/linux/balloon_compaction.h
19896 F: mm/balloon_compaction.c
19897
19898 VIRTIO CRYPTO DRIVER
19899 M: Gonglei <arei.gonglei@huawei.com>
19900 L: virtualization@lists.linux-foundation.org
19901 L: linux-crypto@vger.kernel.org
19902 S: Maintained
19903 F: drivers/crypto/virtio/
19904 F: include/uapi/linux/virtio_crypto.h
19905
19906 VIRTIO DRIVERS FOR S390
19907 M: Cornelia Huck <cohuck@redhat.com>
19908 M: Halil Pasic <pasic@linux.ibm.com>
19909 L: linux-s390@vger.kernel.org
19910 L: virtualization@lists.linux-foundation.org
19911 L: kvm@vger.kernel.org
19912 S: Supported
19913 F: arch/s390/include/uapi/asm/virtio-ccw.h
19914 F: drivers/s390/virtio/
19915
19916 VIRTIO FILE SYSTEM
19917 M: Vivek Goyal <vgoyal@redhat.com>
19918 M: Stefan Hajnoczi <stefanha@redhat.com>
19919 M: Miklos Szeredi <miklos@szeredi.hu>
19920 L: virtualization@lists.linux-foundation.org
19921 L: linux-fsdevel@vger.kernel.org
19922 S: Supported
19923 W: https://virtio-fs.gitlab.io/
19924 F: Documentation/filesystems/virtiofs.rst
19925 F: fs/fuse/virtio_fs.c
19926 F: include/uapi/linux/virtio_fs.h
19927
19928 VIRTIO GPIO DRIVER
19929 M: Enrico Weigelt, metux IT consult <info@metux.net>
19930 M: Viresh Kumar <vireshk@kernel.org>
19931 L: linux-gpio@vger.kernel.org
19932 L: virtualization@lists.linux-foundation.org
19933 S: Maintained
19934 F: drivers/gpio/gpio-virtio.c
19935 F: include/uapi/linux/virtio_gpio.h
19936
19937 VIRTIO GPU DRIVER
19938 M: David Airlie <airlied@linux.ie>
19939 M: Gerd Hoffmann <kraxel@redhat.com>
19940 L: dri-devel@lists.freedesktop.org
19941 L: virtualization@lists.linux-foundation.org
19942 S: Maintained
19943 T: git git://anongit.freedesktop.org/drm/drm-misc
19944 F: drivers/gpu/drm/virtio/
19945 F: include/uapi/linux/virtio_gpu.h
19946
19947 VIRTIO HOST (VHOST)
19948 M: "Michael S. Tsirkin" <mst@redhat.com>
19949 M: Jason Wang <jasowang@redhat.com>
19950 L: kvm@vger.kernel.org
19951 L: virtualization@lists.linux-foundation.org
19952 L: netdev@vger.kernel.org
19953 S: Maintained
19954 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19955 F: drivers/vhost/
19956 F: include/linux/vhost_iotlb.h
19957 F: include/uapi/linux/vhost.h
19958
19959 VIRTIO INPUT DRIVER
19960 M: Gerd Hoffmann <kraxel@redhat.com>
19961 S: Maintained
19962 F: drivers/virtio/virtio_input.c
19963 F: include/uapi/linux/virtio_input.h
19964
19965 VIRTIO IOMMU DRIVER
19966 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
19967 L: virtualization@lists.linux-foundation.org
19968 S: Maintained
19969 F: drivers/iommu/virtio-iommu.c
19970 F: include/uapi/linux/virtio_iommu.h
19971
19972 VIRTIO MEM DRIVER
19973 M: David Hildenbrand <david@redhat.com>
19974 L: virtualization@lists.linux-foundation.org
19975 S: Maintained
19976 W: https://virtio-mem.gitlab.io/
19977 F: drivers/virtio/virtio_mem.c
19978 F: include/uapi/linux/virtio_mem.h
19979
19980 VIRTIO SOUND DRIVER
19981 M: Anton Yakovlev <anton.yakovlev@opensynergy.com>
19982 M: "Michael S. Tsirkin" <mst@redhat.com>
19983 L: virtualization@lists.linux-foundation.org
19984 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19985 S: Maintained
19986 F: include/uapi/linux/virtio_snd.h
19987 F: sound/virtio/*
19988
19989 VIRTIO I2C DRIVER
19990 M: Jie Deng <jie.deng@intel.com>
19991 M: Viresh Kumar <viresh.kumar@linaro.org>
19992 L: linux-i2c@vger.kernel.org
19993 L: virtualization@lists.linux-foundation.org
19994 S: Maintained
19995 F: drivers/i2c/busses/i2c-virtio.c
19996 F: include/uapi/linux/virtio_i2c.h
19997
19998 VIRTUAL BOX GUEST DEVICE DRIVER
19999 M: Hans de Goede <hdegoede@redhat.com>
20000 M: Arnd Bergmann <arnd@arndb.de>
20001 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20002 S: Maintained
20003 F: drivers/virt/vboxguest/
20004 F: include/linux/vbox_utils.h
20005 F: include/uapi/linux/vbox*.h
20006
20007 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20008 M: Hans de Goede <hdegoede@redhat.com>
20009 L: linux-fsdevel@vger.kernel.org
20010 S: Maintained
20011 F: fs/vboxsf/*
20012
20013 VIRTUAL SERIO DEVICE DRIVER
20014 M: Stephen Chandler Paul <thatslyude@gmail.com>
20015 S: Maintained
20016 F: drivers/input/serio/userio.c
20017 F: include/uapi/linux/userio.h
20018
20019 VIVID VIRTUAL VIDEO DRIVER
20020 M: Hans Verkuil <hverkuil@xs4all.nl>
20021 L: linux-media@vger.kernel.org
20022 S: Maintained
20023 W: https://linuxtv.org
20024 T: git git://linuxtv.org/media_tree.git
20025 F: drivers/media/test-drivers/vivid/*
20026
20027 VIDTV VIRTUAL DIGITAL TV DRIVER
20028 M: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20029 L: linux-media@vger.kernel.org
20030 S: Maintained
20031 W: https://linuxtv.org
20032 T: git git://linuxtv.org/media_tree.git
20033 F: drivers/media/test-drivers/vidtv/*
20034
20035 VLYNQ BUS
20036 M: Florian Fainelli <f.fainelli@gmail.com>
20037 L: openwrt-devel@lists.openwrt.org (subscribers-only)
20038 S: Maintained
20039 F: drivers/vlynq/vlynq.c
20040 F: include/linux/vlynq.h
20041
20042 VME SUBSYSTEM
20043 M: Martyn Welch <martyn@welchs.me.uk>
20044 M: Manohar Vanga <manohar.vanga@gmail.com>
20045 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20046 L: linux-kernel@vger.kernel.org
20047 S: Maintained
20048 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20049 F: Documentation/driver-api/vme.rst
20050 F: drivers/staging/vme/
20051 F: drivers/vme/
20052 F: include/linux/vme*
20053
20054 VM SOCKETS (AF_VSOCK)
20055 M: Stefano Garzarella <sgarzare@redhat.com>
20056 L: virtualization@lists.linux-foundation.org
20057 L: netdev@vger.kernel.org
20058 S: Maintained
20059 F: drivers/net/vsockmon.c
20060 F: include/net/af_vsock.h
20061 F: include/uapi/linux/vm_sockets.h
20062 F: include/uapi/linux/vm_sockets_diag.h
20063 F: include/uapi/linux/vsockmon.h
20064 F: net/vmw_vsock/
20065 F: tools/testing/vsock/
20066
20067 VMWARE BALLOON DRIVER
20068 M: Nadav Amit <namit@vmware.com>
20069 M: "VMware, Inc." <pv-drivers@vmware.com>
20070 L: linux-kernel@vger.kernel.org
20071 S: Maintained
20072 F: drivers/misc/vmw_balloon.c
20073
20074 VMWARE HYPERVISOR INTERFACE
20075 M: Deep Shah <sdeep@vmware.com>
20076 M: "VMware, Inc." <pv-drivers@vmware.com>
20077 L: virtualization@lists.linux-foundation.org
20078 S: Supported
20079 F: arch/x86/include/asm/vmware.h
20080 F: arch/x86/kernel/cpu/vmware.c
20081
20082 VMWARE PVRDMA DRIVER
20083 M: Adit Ranadive <aditr@vmware.com>
20084 M: VMware PV-Drivers <pv-drivers@vmware.com>
20085 L: linux-rdma@vger.kernel.org
20086 S: Maintained
20087 F: drivers/infiniband/hw/vmw_pvrdma/
20088
20089 VMware PVSCSI driver
20090 M: Vishal Bhakta <vbhakta@vmware.com>
20091 M: VMware PV-Drivers <pv-drivers@vmware.com>
20092 L: linux-scsi@vger.kernel.org
20093 S: Maintained
20094 F: drivers/scsi/vmw_pvscsi.c
20095 F: drivers/scsi/vmw_pvscsi.h
20096
20097 VMWARE VIRTUAL PTP CLOCK DRIVER
20098 M: Vivek Thampi <vithampi@vmware.com>
20099 M: "VMware, Inc." <pv-drivers@vmware.com>
20100 L: netdev@vger.kernel.org
20101 S: Supported
20102 F: drivers/ptp/ptp_vmw.c
20103
20104 VMWARE VMCI DRIVER
20105 M: Jorgen Hansen <jhansen@vmware.com>
20106 M: Vishnu Dasa <vdasa@vmware.com>
20107 L: linux-kernel@vger.kernel.org
20108 L: pv-drivers@vmware.com (private)
20109 S: Maintained
20110 F: drivers/misc/vmw_vmci/
20111
20112 VMWARE VMMOUSE SUBDRIVER
20113 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20114 M: "VMware, Inc." <pv-drivers@vmware.com>
20115 L: linux-input@vger.kernel.org
20116 S: Maintained
20117 F: drivers/input/mouse/vmmouse.c
20118 F: drivers/input/mouse/vmmouse.h
20119
20120 VMWARE VMXNET3 ETHERNET DRIVER
20121 M: Ronak Doshi <doshir@vmware.com>
20122 M: pv-drivers@vmware.com
20123 L: netdev@vger.kernel.org
20124 S: Maintained
20125 F: drivers/net/vmxnet3/
20126
20127 VOCORE VOCORE2 BOARD
20128 M: Harvey Hunt <harveyhuntnexus@gmail.com>
20129 L: linux-mips@vger.kernel.org
20130 S: Maintained
20131 F: arch/mips/boot/dts/ralink/vocore2.dts
20132
20133 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20134 M: Liam Girdwood <lgirdwood@gmail.com>
20135 M: Mark Brown <broonie@kernel.org>
20136 L: linux-kernel@vger.kernel.org
20137 S: Supported
20138 W: http://www.slimlogic.co.uk/?p=48
20139 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20140 F: Documentation/devicetree/bindings/regulator/
20141 F: Documentation/power/regulator/
20142 F: drivers/regulator/
20143 F: include/dt-bindings/regulator/
20144 F: include/linux/regulator/
20145 K: regulator_get_optional
20146
20147 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20148 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20149 F: drivers/regulator/irq_helpers.c
20150
20151 VRF
20152 M: David Ahern <dsahern@kernel.org>
20153 L: netdev@vger.kernel.org
20154 S: Maintained
20155 F: Documentation/networking/vrf.rst
20156 F: drivers/net/vrf.c
20157
20158 VSPRINTF
20159 M: Petr Mladek <pmladek@suse.com>
20160 M: Steven Rostedt <rostedt@goodmis.org>
20161 M: Sergey Senozhatsky <senozhatsky@chromium.org>
20162 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20163 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
20164 S: Maintained
20165 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20166 F: Documentation/core-api/printk-formats.rst
20167 F: lib/test_printf.c
20168 F: lib/test_scanf.c
20169 F: lib/vsprintf.c
20170
20171 VT1211 HARDWARE MONITOR DRIVER
20172 M: Juerg Haefliger <juergh@gmail.com>
20173 L: linux-hwmon@vger.kernel.org
20174 S: Maintained
20175 F: Documentation/hwmon/vt1211.rst
20176 F: drivers/hwmon/vt1211.c
20177
20178 VT8231 HARDWARE MONITOR DRIVER
20179 M: Roger Lucas <vt8231@hiddenengine.co.uk>
20180 L: linux-hwmon@vger.kernel.org
20181 S: Maintained
20182 F: drivers/hwmon/vt8231.c
20183
20184 VUB300 USB to SDIO/SD/MMC bridge chip
20185 L: linux-mmc@vger.kernel.org
20186 S: Orphan
20187 F: drivers/mmc/host/vub300.c
20188
20189 W1 DALLAS'S 1-WIRE BUS
20190 M: Evgeniy Polyakov <zbr@ioremap.net>
20191 S: Maintained
20192 F: Documentation/devicetree/bindings/w1/
20193 F: Documentation/w1/
20194 F: drivers/w1/
20195 F: include/linux/w1.h
20196
20197 W83791D HARDWARE MONITORING DRIVER
20198 M: Marc Hulsman <m.hulsman@tudelft.nl>
20199 L: linux-hwmon@vger.kernel.org
20200 S: Maintained
20201 F: Documentation/hwmon/w83791d.rst
20202 F: drivers/hwmon/w83791d.c
20203
20204 W83793 HARDWARE MONITORING DRIVER
20205 M: Rudolf Marek <r.marek@assembler.cz>
20206 L: linux-hwmon@vger.kernel.org
20207 S: Maintained
20208 F: Documentation/hwmon/w83793.rst
20209 F: drivers/hwmon/w83793.c
20210
20211 W83795 HARDWARE MONITORING DRIVER
20212 M: Jean Delvare <jdelvare@suse.com>
20213 L: linux-hwmon@vger.kernel.org
20214 S: Maintained
20215 F: drivers/hwmon/w83795.c
20216
20217 W83L51xD SD/MMC CARD INTERFACE DRIVER
20218 M: Pierre Ossman <pierre@ossman.eu>
20219 S: Maintained
20220 F: drivers/mmc/host/wbsd.*
20221
20222 WACOM PROTOCOL 4 SERIAL TABLETS
20223 M: Julian Squires <julian@cipht.net>
20224 M: Hans de Goede <hdegoede@redhat.com>
20225 L: linux-input@vger.kernel.org
20226 S: Maintained
20227 F: drivers/input/tablet/wacom_serial4.c
20228
20229 WATCHDOG DEVICE DRIVERS
20230 M: Wim Van Sebroeck <wim@linux-watchdog.org>
20231 M: Guenter Roeck <linux@roeck-us.net>
20232 L: linux-watchdog@vger.kernel.org
20233 S: Maintained
20234 W: http://www.linux-watchdog.org/
20235 T: git git://www.linux-watchdog.org/linux-watchdog.git
20236 F: Documentation/devicetree/bindings/watchdog/
20237 F: Documentation/watchdog/
20238 F: drivers/watchdog/
20239 F: include/linux/watchdog.h
20240 F: include/uapi/linux/watchdog.h
20241
20242 WHISKEYCOVE PMIC GPIO DRIVER
20243 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20244 L: linux-gpio@vger.kernel.org
20245 S: Maintained
20246 F: drivers/gpio/gpio-wcove.c
20247
20248 WHWAVE RTC DRIVER
20249 M: Dianlong Li <long17.cool@163.com>
20250 L: linux-rtc@vger.kernel.org
20251 S: Maintained
20252 F: drivers/rtc/rtc-sd3078.c
20253
20254 WIIMOTE HID DRIVER
20255 M: David Rheinsberg <david.rheinsberg@gmail.com>
20256 L: linux-input@vger.kernel.org
20257 S: Maintained
20258 F: drivers/hid/hid-wiimote*
20259
20260 WILOCITY WIL6210 WIRELESS DRIVER
20261 M: Maya Erez <merez@codeaurora.org>
20262 L: linux-wireless@vger.kernel.org
20263 L: wil6210@qti.qualcomm.com
20264 S: Supported
20265 W: https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20266 F: drivers/net/wireless/ath/wil6210/
20267
20268 WINBOND CIR DRIVER
20269 M: David Härdeman <david@hardeman.nu>
20270 S: Maintained
20271 F: drivers/media/rc/winbond-cir.c
20272
20273 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20274 M: William Breathitt Gray <vilhelm.gray@gmail.com>
20275 L: linux-watchdog@vger.kernel.org
20276 S: Maintained
20277 F: drivers/watchdog/ebc-c384_wdt.c
20278
20279 WINSYSTEMS WS16C48 GPIO DRIVER
20280 M: William Breathitt Gray <vilhelm.gray@gmail.com>
20281 L: linux-gpio@vger.kernel.org
20282 S: Maintained
20283 F: drivers/gpio/gpio-ws16c48.c
20284
20285 WIREGUARD SECURE NETWORK TUNNEL
20286 M: Jason A. Donenfeld <Jason@zx2c4.com>
20287 L: wireguard@lists.zx2c4.com
20288 L: netdev@vger.kernel.org
20289 S: Maintained
20290 F: drivers/net/wireguard/
20291 F: tools/testing/selftests/wireguard/
20292
20293 WISTRON LAPTOP BUTTON DRIVER
20294 M: Miloslav Trmac <mitr@volny.cz>
20295 S: Maintained
20296 F: drivers/input/misc/wistron_btns.c
20297
20298 WL3501 WIRELESS PCMCIA CARD DRIVER
20299 L: linux-wireless@vger.kernel.org
20300 S: Odd fixes
20301 F: drivers/net/wireless/wl3501*
20302
20303 WOLFSON MICROELECTRONICS DRIVERS
20304 L: patches@opensource.cirrus.com
20305 S: Supported
20306 W: https://github.com/CirrusLogic/linux-drivers/wiki
20307 T: git https://github.com/CirrusLogic/linux-drivers.git
20308 F: Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20309 F: Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20310 F: Documentation/devicetree/bindings/mfd/wm831x.txt
20311 F: Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20312 F: Documentation/devicetree/bindings/sound/wlf,*.yaml
20313 F: Documentation/devicetree/bindings/sound/wm*
20314 F: Documentation/hwmon/wm83??.rst
20315 F: arch/arm/mach-s3c/mach-crag6410*
20316 F: drivers/clk/clk-wm83*.c
20317 F: drivers/gpio/gpio-*wm*.c
20318 F: drivers/gpio/gpio-arizona.c
20319 F: drivers/hwmon/wm83??-hwmon.c
20320 F: drivers/input/misc/wm831x-on.c
20321 F: drivers/input/touchscreen/wm831x-ts.c
20322 F: drivers/input/touchscreen/wm97*.c
20323 F: drivers/leds/leds-wm83*.c
20324 F: drivers/mfd/arizona*
20325 F: drivers/mfd/cs47l24*
20326 F: drivers/mfd/wm*.c
20327 F: drivers/power/supply/wm83*.c
20328 F: drivers/regulator/arizona*
20329 F: drivers/regulator/wm8*.c
20330 F: drivers/rtc/rtc-wm83*.c
20331 F: drivers/video/backlight/wm83*_bl.c
20332 F: drivers/watchdog/wm83*_wdt.c
20333 F: include/linux/mfd/arizona/
20334 F: include/linux/mfd/wm831x/
20335 F: include/linux/mfd/wm8350/
20336 F: include/linux/mfd/wm8400*
20337 F: include/linux/regulator/arizona*
20338 F: include/linux/wm97xx.h
20339 F: include/sound/wm????.h
20340 F: sound/soc/codecs/arizona*
20341 F: sound/soc/codecs/cs47l24*
20342 F: sound/soc/codecs/wm*
20343
20344 WORKQUEUE
20345 M: Tejun Heo <tj@kernel.org>
20346 R: Lai Jiangshan <jiangshanlai@gmail.com>
20347 S: Maintained
20348 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20349 F: Documentation/core-api/workqueue.rst
20350 F: include/linux/workqueue.h
20351 F: kernel/workqueue.c
20352
20353 WWAN DRIVERS
20354 M: Loic Poulain <loic.poulain@linaro.org>
20355 M: Sergey Ryazanov <ryazanov.s.a@gmail.com>
20356 R: Johannes Berg <johannes@sipsolutions.net>
20357 L: netdev@vger.kernel.org
20358 S: Maintained
20359 F: drivers/net/wwan/
20360 F: include/linux/wwan.h
20361 F: include/uapi/linux/wwan.h
20362
20363 X-POWERS AXP288 PMIC DRIVERS
20364 M: Hans de Goede <hdegoede@redhat.com>
20365 S: Maintained
20366 F: drivers/acpi/pmic/intel_pmic_xpower.c
20367 N: axp288
20368
20369 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20370 M: Chen-Yu Tsai <wens@csie.org>
20371 L: linux-kernel@vger.kernel.org
20372 S: Maintained
20373 N: axp[128]
20374
20375 X.25 STACK
20376 M: Martin Schiller <ms@dev.tdt.de>
20377 L: linux-x25@vger.kernel.org
20378 S: Maintained
20379 F: Documentation/networking/lapb-module.rst
20380 F: Documentation/networking/x25*
20381 F: drivers/net/wan/hdlc_x25.c
20382 F: drivers/net/wan/lapbether.c
20383 F: include/*/lapb.h
20384 F: include/net/x25*
20385 F: include/uapi/linux/x25.h
20386 F: net/lapb/
20387 F: net/x25/
20388
20389 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20390 M: Thomas Gleixner <tglx@linutronix.de>
20391 M: Ingo Molnar <mingo@redhat.com>
20392 M: Borislav Petkov <bp@alien8.de>
20393 M: Dave Hansen <dave.hansen@linux.intel.com>
20394 M: x86@kernel.org
20395 R: "H. Peter Anvin" <hpa@zytor.com>
20396 L: linux-kernel@vger.kernel.org
20397 S: Maintained
20398 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20399 F: Documentation/devicetree/bindings/x86/
20400 F: Documentation/x86/
20401 F: arch/x86/
20402
20403 X86 ENTRY CODE
20404 M: Andy Lutomirski <luto@kernel.org>
20405 L: linux-kernel@vger.kernel.org
20406 S: Maintained
20407 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20408 F: arch/x86/entry/
20409
20410 X86 MCE INFRASTRUCTURE
20411 M: Tony Luck <tony.luck@intel.com>
20412 M: Borislav Petkov <bp@alien8.de>
20413 L: linux-edac@vger.kernel.org
20414 S: Maintained
20415 F: arch/x86/kernel/cpu/mce/*
20416
20417 X86 MICROCODE UPDATE SUPPORT
20418 M: Borislav Petkov <bp@alien8.de>
20419 S: Maintained
20420 F: arch/x86/kernel/cpu/microcode/*
20421
20422 X86 MM
20423 M: Dave Hansen <dave.hansen@linux.intel.com>
20424 M: Andy Lutomirski <luto@kernel.org>
20425 M: Peter Zijlstra <peterz@infradead.org>
20426 L: linux-kernel@vger.kernel.org
20427 S: Maintained
20428 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20429 F: arch/x86/mm/
20430
20431 X86 PLATFORM DRIVERS
20432 M: Hans de Goede <hdegoede@redhat.com>
20433 M: Mark Gross <mgross@linux.intel.com>
20434 L: platform-driver-x86@vger.kernel.org
20435 S: Maintained
20436 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20437 F: drivers/platform/olpc/
20438 F: drivers/platform/x86/
20439
20440 X86 PLATFORM DRIVERS - ARCH
20441 R: Darren Hart <dvhart@infradead.org>
20442 R: Andy Shevchenko <andy@infradead.org>
20443 L: platform-driver-x86@vger.kernel.org
20444 L: x86@kernel.org
20445 S: Maintained
20446 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20447 F: arch/x86/platform
20448
20449 X86 PLATFORM UV HPE SUPERDOME FLEX
20450 M: Steve Wahl <steve.wahl@hpe.com>
20451 R: Mike Travis <mike.travis@hpe.com>
20452 R: Dimitri Sivanich <dimitri.sivanich@hpe.com>
20453 R: Russ Anderson <russ.anderson@hpe.com>
20454 S: Supported
20455 F: arch/x86/include/asm/uv/
20456 F: arch/x86/kernel/apic/x2apic_uv_x.c
20457 F: arch/x86/platform/uv/
20458
20459 X86 VDSO
20460 M: Andy Lutomirski <luto@kernel.org>
20461 L: linux-kernel@vger.kernel.org
20462 S: Maintained
20463 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20464 F: arch/x86/entry/vdso/
20465
20466 XARRAY
20467 M: Matthew Wilcox <willy@infradead.org>
20468 L: linux-fsdevel@vger.kernel.org
20469 S: Supported
20470 F: Documentation/core-api/xarray.rst
20471 F: include/linux/idr.h
20472 F: include/linux/xarray.h
20473 F: lib/idr.c
20474 F: lib/xarray.c
20475 F: tools/testing/radix-tree
20476
20477 XBOX DVD IR REMOTE
20478 M: Benjamin Valentin <benpicco@googlemail.com>
20479 S: Maintained
20480 F: drivers/media/rc/keymaps/rc-xbox-dvd.c
20481 F: drivers/media/rc/xbox_remote.c
20482
20483 XC2028/3028 TUNER DRIVER
20484 M: Mauro Carvalho Chehab <mchehab@kernel.org>
20485 L: linux-media@vger.kernel.org
20486 S: Maintained
20487 W: https://linuxtv.org
20488 T: git git://linuxtv.org/media_tree.git
20489 F: drivers/media/tuners/tuner-xc2028.*
20490
20491 XDP (eXpress Data Path)
20492 M: Alexei Starovoitov <ast@kernel.org>
20493 M: Daniel Borkmann <daniel@iogearbox.net>
20494 M: David S. Miller <davem@davemloft.net>
20495 M: Jakub Kicinski <kuba@kernel.org>
20496 M: Jesper Dangaard Brouer <hawk@kernel.org>
20497 M: John Fastabend <john.fastabend@gmail.com>
20498 L: netdev@vger.kernel.org
20499 L: bpf@vger.kernel.org
20500 S: Supported
20501 F: include/net/xdp.h
20502 F: include/net/xdp_priv.h
20503 F: include/trace/events/xdp.h
20504 F: kernel/bpf/cpumap.c
20505 F: kernel/bpf/devmap.c
20506 F: net/core/xdp.c
20507 F: samples/bpf/xdp*
20508 F: tools/testing/selftests/bpf/*xdp*
20509 F: tools/testing/selftests/bpf/*/*xdp*
20510 F: drivers/net/ethernet/*/*/*/*/*xdp*
20511 F: drivers/net/ethernet/*/*/*xdp*
20512 K: (?:\b|_)xdp(?:\b|_)
20513
20514 XDP SOCKETS (AF_XDP)
20515 M: Björn Töpel <bjorn@kernel.org>
20516 M: Magnus Karlsson <magnus.karlsson@intel.com>
20517 R: Jonathan Lemon <jonathan.lemon@gmail.com>
20518 L: netdev@vger.kernel.org
20519 L: bpf@vger.kernel.org
20520 S: Maintained
20521 F: Documentation/networking/af_xdp.rst
20522 F: include/net/xdp_sock*
20523 F: include/net/xsk_buff_pool.h
20524 F: include/uapi/linux/if_xdp.h
20525 F: include/uapi/linux/xdp_diag.h
20526 F: include/net/netns/xdp.h
20527 F: net/xdp/
20528 F: samples/bpf/xdpsock*
20529 F: tools/lib/bpf/xsk*
20530
20531 XEN BLOCK SUBSYSTEM
20532 M: Roger Pau Monné <roger.pau@citrix.com>
20533 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20534 S: Supported
20535 F: drivers/block/xen*
20536 F: drivers/block/xen-blkback/*
20537
20538 XEN HYPERVISOR ARM
20539 M: Stefano Stabellini <sstabellini@kernel.org>
20540 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20541 S: Maintained
20542 F: arch/arm/include/asm/xen/
20543 F: arch/arm/xen/
20544
20545 XEN HYPERVISOR ARM64
20546 M: Stefano Stabellini <sstabellini@kernel.org>
20547 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20548 S: Maintained
20549 F: arch/arm64/include/asm/xen/
20550 F: arch/arm64/xen/
20551
20552 XEN HYPERVISOR INTERFACE
20553 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
20554 M: Juergen Gross <jgross@suse.com>
20555 R: Stefano Stabellini <sstabellini@kernel.org>
20556 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20557 S: Supported
20558 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20559 F: Documentation/ABI/stable/sysfs-hypervisor-xen
20560 F: Documentation/ABI/testing/sysfs-hypervisor-xen
20561 F: arch/x86/include/asm/pvclock-abi.h
20562 F: arch/x86/include/asm/xen/
20563 F: arch/x86/platform/pvh/
20564 F: arch/x86/xen/
20565 F: drivers/*/xen-*front.c
20566 F: drivers/xen/
20567 F: include/uapi/xen/
20568 F: include/xen/
20569
20570 XEN NETWORK BACKEND DRIVER
20571 M: Wei Liu <wei.liu@kernel.org>
20572 M: Paul Durrant <paul@xen.org>
20573 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20574 L: netdev@vger.kernel.org
20575 S: Supported
20576 F: drivers/net/xen-netback/*
20577
20578 XEN PCI SUBSYSTEM
20579 M: Juergen Gross <jgross@suse.com>
20580 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20581 S: Supported
20582 F: arch/x86/pci/*xen*
20583 F: drivers/pci/*xen*
20584
20585 XEN PVSCSI DRIVERS
20586 M: Juergen Gross <jgross@suse.com>
20587 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20588 L: linux-scsi@vger.kernel.org
20589 S: Supported
20590 F: drivers/scsi/xen-scsifront.c
20591 F: drivers/xen/xen-scsiback.c
20592 F: include/xen/interface/io/vscsiif.h
20593
20594 XEN SOUND FRONTEND DRIVER
20595 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20596 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20597 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20598 S: Supported
20599 F: sound/xen/*
20600
20601 XEN SWIOTLB SUBSYSTEM
20602 M: Juergen Gross <jgross@suse.com>
20603 M: Stefano Stabellini <sstabellini@kernel.org>
20604 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20605 L: iommu@lists.linux-foundation.org
20606 S: Supported
20607 F: arch/x86/xen/*swiotlb*
20608 F: drivers/xen/*swiotlb*
20609
20610 XFS FILESYSTEM
20611 C: irc://irc.oftc.net/xfs
20612 M: Darrick J. Wong <djwong@kernel.org>
20613 M: linux-xfs@vger.kernel.org
20614 L: linux-xfs@vger.kernel.org
20615 S: Supported
20616 W: http://xfs.org/
20617 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20618 F: Documentation/ABI/testing/sysfs-fs-xfs
20619 F: Documentation/admin-guide/xfs.rst
20620 F: Documentation/filesystems/xfs-delayed-logging-design.rst
20621 F: Documentation/filesystems/xfs-self-describing-metadata.rst
20622 F: fs/xfs/
20623 F: include/uapi/linux/dqblk_xfs.h
20624 F: include/uapi/linux/fsmap.h
20625
20626 XILINX AXI ETHERNET DRIVER
20627 M: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20628 S: Maintained
20629 F: drivers/net/ethernet/xilinx/xilinx_axienet*
20630
20631 XILINX CAN DRIVER
20632 M: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20633 R: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20634 L: linux-can@vger.kernel.org
20635 S: Maintained
20636 F: Documentation/devicetree/bindings/net/can/xilinx_can.txt
20637 F: drivers/net/can/xilinx_can.c
20638
20639 XILINX GPIO DRIVER
20640 M: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20641 R: Srinivas Neeli <srinivas.neeli@xilinx.com>
20642 R: Michal Simek <michal.simek@xilinx.com>
20643 S: Maintained
20644 F: Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20645 F: Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20646 F: drivers/gpio/gpio-xilinx.c
20647 F: drivers/gpio/gpio-zynq.c
20648
20649 XILINX SD-FEC IP CORES
20650 M: Derek Kiernan <derek.kiernan@xilinx.com>
20651 M: Dragan Cvetic <dragan.cvetic@xilinx.com>
20652 S: Maintained
20653 F: Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20654 F: Documentation/misc-devices/xilinx_sdfec.rst
20655 F: drivers/misc/Kconfig
20656 F: drivers/misc/Makefile
20657 F: drivers/misc/xilinx_sdfec.c
20658 F: include/uapi/misc/xilinx_sdfec.h
20659
20660 XILINX UARTLITE SERIAL DRIVER
20661 M: Peter Korsgaard <jacmet@sunsite.dk>
20662 L: linux-serial@vger.kernel.org
20663 S: Maintained
20664 F: drivers/tty/serial/uartlite.c
20665
20666 XILINX VIDEO IP CORES
20667 M: Hyun Kwon <hyun.kwon@xilinx.com>
20668 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20669 L: linux-media@vger.kernel.org
20670 S: Supported
20671 T: git git://linuxtv.org/media_tree.git
20672 F: Documentation/devicetree/bindings/media/xilinx/
20673 F: drivers/media/platform/xilinx/
20674 F: include/uapi/linux/xilinx-v4l2-controls.h
20675
20676 XILINX ZYNQMP DPDMA DRIVER
20677 M: Hyun Kwon <hyun.kwon@xilinx.com>
20678 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20679 L: dmaengine@vger.kernel.org
20680 S: Supported
20681 F: Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20682 F: drivers/dma/xilinx/xilinx_dpdma.c
20683 F: include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20684
20685 XILINX ZYNQMP PSGTR PHY DRIVER
20686 M: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20687 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20688 L: linux-kernel@vger.kernel.org
20689 S: Supported
20690 T: git https://github.com/Xilinx/linux-xlnx.git
20691 F: Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20692 F: drivers/phy/xilinx/phy-zynqmp.c
20693
20694 XILLYBUS DRIVER
20695 M: Eli Billauer <eli.billauer@gmail.com>
20696 L: linux-kernel@vger.kernel.org
20697 S: Supported
20698 F: drivers/char/xillybus/
20699
20700 XLP9XX I2C DRIVER
20701 M: George Cherian <gcherian@marvell.com>
20702 L: linux-i2c@vger.kernel.org
20703 S: Supported
20704 W: http://www.marvell.com
20705 F: Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20706 F: drivers/i2c/busses/i2c-xlp9xx.c
20707
20708 XRA1403 GPIO EXPANDER
20709 M: Nandor Han <nandor.han@ge.com>
20710 M: Semi Malinen <semi.malinen@ge.com>
20711 L: linux-gpio@vger.kernel.org
20712 S: Maintained
20713 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20714 F: drivers/gpio/gpio-xra1403.c
20715
20716 XTENSA XTFPGA PLATFORM SUPPORT
20717 M: Max Filippov <jcmvbkbc@gmail.com>
20718 L: linux-xtensa@linux-xtensa.org
20719 S: Maintained
20720 F: drivers/spi/spi-xtensa-xtfpga.c
20721 F: sound/soc/xtensa/xtfpga-i2s.c
20722
20723 YAM DRIVER FOR AX.25
20724 M: Jean-Paul Roubelat <jpr@f6fbb.org>
20725 L: linux-hams@vger.kernel.org
20726 S: Maintained
20727 F: drivers/net/hamradio/yam*
20728 F: include/linux/yam.h
20729
20730 YAMA SECURITY MODULE
20731 M: Kees Cook <keescook@chromium.org>
20732 S: Supported
20733 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20734 F: Documentation/admin-guide/LSM/Yama.rst
20735 F: security/yama/
20736
20737 YEALINK PHONE DRIVER
20738 M: Henk Vergonet <Henk.Vergonet@gmail.com>
20739 L: usbb2k-api-dev@nongnu.org
20740 S: Maintained
20741 F: Documentation/input/devices/yealink.rst
20742 F: drivers/input/misc/yealink.*
20743
20744 Z8530 DRIVER FOR AX.25
20745 M: Joerg Reuter <jreuter@yaina.de>
20746 L: linux-hams@vger.kernel.org
20747 S: Maintained
20748 W: http://yaina.de/jreuter/
20749 W: http://www.qsl.net/dl1bke/
20750 F: Documentation/networking/device_drivers/hamradio/z8530drv.rst
20751 F: drivers/net/hamradio/*scc.c
20752 F: drivers/net/hamradio/z8530.h
20753
20754 ZBUD COMPRESSED PAGE ALLOCATOR
20755 M: Seth Jennings <sjenning@redhat.com>
20756 M: Dan Streetman <ddstreet@ieee.org>
20757 L: linux-mm@kvack.org
20758 S: Maintained
20759 F: mm/zbud.c
20760
20761 ZD1211RW WIRELESS DRIVER
20762 M: Ulrich Kunitz <kune@deine-taler.de>
20763 L: linux-wireless@vger.kernel.org
20764 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
20765 S: Maintained
20766 W: http://zd1211.ath.cx/wiki/DriverRewrite
20767 F: drivers/net/wireless/zydas/zd1211rw/
20768
20769 ZD1301 MEDIA DRIVER
20770 M: Antti Palosaari <crope@iki.fi>
20771 L: linux-media@vger.kernel.org
20772 S: Maintained
20773 W: https://linuxtv.org/
20774 W: http://palosaari.fi/linux/
20775 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20776 F: drivers/media/usb/dvb-usb-v2/zd1301*
20777
20778 ZD1301_DEMOD MEDIA DRIVER
20779 M: Antti Palosaari <crope@iki.fi>
20780 L: linux-media@vger.kernel.org
20781 S: Maintained
20782 W: https://linuxtv.org/
20783 W: http://palosaari.fi/linux/
20784 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20785 F: drivers/media/dvb-frontends/zd1301_demod*
20786
20787 ZHAOXIN PROCESSOR SUPPORT
20788 M: Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20789 L: linux-kernel@vger.kernel.org
20790 S: Maintained
20791 F: arch/x86/kernel/cpu/zhaoxin.c
20792
20793 ZONEFS FILESYSTEM
20794 M: Damien Le Moal <damien.lemoal@wdc.com>
20795 M: Naohiro Aota <naohiro.aota@wdc.com>
20796 R: Johannes Thumshirn <jth@kernel.org>
20797 L: linux-fsdevel@vger.kernel.org
20798 S: Maintained
20799 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20800 F: Documentation/filesystems/zonefs.rst
20801 F: fs/zonefs/
20802
20803 ZPOOL COMPRESSED PAGE STORAGE API
20804 M: Dan Streetman <ddstreet@ieee.org>
20805 L: linux-mm@kvack.org
20806 S: Maintained
20807 F: include/linux/zpool.h
20808 F: mm/zpool.c
20809
20810 ZR36067 VIDEO FOR LINUX DRIVER
20811 M: Corentin Labbe <clabbe@baylibre.com>
20812 L: mjpeg-users@lists.sourceforge.net
20813 L: linux-media@vger.kernel.org
20814 S: Maintained
20815 W: http://mjpeg.sourceforge.net/driver-zoran/
20816 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20817 F: Documentation/driver-api/media/drivers/zoran.rst
20818 F: drivers/staging/media/zoran/
20819
20820 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20821 M: Minchan Kim <minchan@kernel.org>
20822 M: Nitin Gupta <ngupta@vflare.org>
20823 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20824 L: linux-kernel@vger.kernel.org
20825 S: Maintained
20826 F: Documentation/admin-guide/blockdev/zram.rst
20827 F: drivers/block/zram/
20828
20829 ZS DECSTATION Z85C30 SERIAL DRIVER
20830 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
20831 S: Maintained
20832 F: drivers/tty/serial/zs.*
20833
20834 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20835 M: Minchan Kim <minchan@kernel.org>
20836 M: Nitin Gupta <ngupta@vflare.org>
20837 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20838 L: linux-mm@kvack.org
20839 S: Maintained
20840 F: Documentation/vm/zsmalloc.rst
20841 F: include/linux/zsmalloc.h
20842 F: mm/zsmalloc.c
20843
20844 ZSWAP COMPRESSED SWAP CACHING
20845 M: Seth Jennings <sjenning@redhat.com>
20846 M: Dan Streetman <ddstreet@ieee.org>
20847 M: Vitaly Wool <vitaly.wool@konsulko.com>
20848 L: linux-mm@kvack.org
20849 S: Maintained
20850 F: mm/zswap.c
20851
20852 THE REST
20853 M: Linus Torvalds <torvalds@linux-foundation.org>
20854 L: linux-kernel@vger.kernel.org
20855 S: Buried alive in reporters
20856 Q: http://patchwork.kernel.org/project/LKML/list/
20857 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20858 F: *
20859 F: */