]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - MAINTAINERS
arm64: dts: agilex: use the compatible "intel,socfpga-agilex-hsotg"
[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 I2C 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/i2c-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 SEATTLE DEVICE TREE SUPPORT
1007 M: Brijesh Singh <brijeshkumar.singh@amd.com>
1008 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1009 M: Tom Lendacky <thomas.lendacky@amd.com>
1010 S: Supported
1011 F: arch/arm64/boot/dts/amd/
1012
1013 AMD XGBE DRIVER
1014 M: Tom Lendacky <thomas.lendacky@amd.com>
1015 L: netdev@vger.kernel.org
1016 S: Supported
1017 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1018 F: drivers/net/ethernet/amd/xgbe/
1019
1020 AMD SENSOR FUSION HUB DRIVER
1021 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
1022 M: Basavaraj Natikar <basavaraj.natikar@amd.com>
1023 L: linux-input@vger.kernel.org
1024 S: Maintained
1025 F: Documentation/hid/amd-sfh*
1026 F: drivers/hid/amd-sfh-hid/
1027
1028 AMS AS73211 DRIVER
1029 M: Christian Eggers <ceggers@arri.de>
1030 L: linux-iio@vger.kernel.org
1031 S: Maintained
1032 F: Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1033 F: drivers/iio/light/as73211.c
1034
1035 ANALOG DEVICES INC AD7192 DRIVER
1036 M: Alexandru Tachici <alexandru.tachici@analog.com>
1037 L: linux-iio@vger.kernel.org
1038 S: Supported
1039 W: http://ez.analog.com/community/linux-device-drivers
1040 F: Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1041 F: drivers/iio/adc/ad7192.c
1042
1043 ANALOG DEVICES INC AD7292 DRIVER
1044 M: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1045 L: linux-iio@vger.kernel.org
1046 S: Supported
1047 W: http://ez.analog.com/community/linux-device-drivers
1048 F: Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1049 F: drivers/iio/adc/ad7292.c
1050
1051 ANALOG DEVICES INC AD7768-1 DRIVER
1052 M: Michael Hennerich <Michael.Hennerich@analog.com>
1053 L: linux-iio@vger.kernel.org
1054 S: Supported
1055 W: http://ez.analog.com/community/linux-device-drivers
1056 F: Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1057 F: drivers/iio/adc/ad7768-1.c
1058
1059 ANALOG DEVICES INC AD7780 DRIVER
1060 M: Michael Hennerich <Michael.Hennerich@analog.com>
1061 M: Renato Lui Geh <renatogeh@gmail.com>
1062 L: linux-iio@vger.kernel.org
1063 S: Supported
1064 W: http://ez.analog.com/community/linux-device-drivers
1065 F: Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1066 F: drivers/iio/adc/ad7780.c
1067
1068 ANALOG DEVICES INC AD9389B DRIVER
1069 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1070 L: linux-media@vger.kernel.org
1071 S: Maintained
1072 F: drivers/media/i2c/ad9389b*
1073
1074 ANALOG DEVICES INC ADGS1408 DRIVER
1075 M: Mircea Caprioru <mircea.caprioru@analog.com>
1076 S: Supported
1077 F: Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1078 F: drivers/mux/adgs1408.c
1079
1080 ANALOG DEVICES INC ADIN DRIVER
1081 M: Michael Hennerich <michael.hennerich@analog.com>
1082 L: netdev@vger.kernel.org
1083 S: Supported
1084 W: http://ez.analog.com/community/linux-device-drivers
1085 F: Documentation/devicetree/bindings/net/adi,adin.yaml
1086 F: drivers/net/phy/adin.c
1087
1088 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1089 M: Nuno Sa <nuno.sa@analog.com>
1090 L: linux-iio@vger.kernel.org
1091 S: Supported
1092 F: drivers/iio/imu/adis.c
1093 F: include/linux/iio/imu/adis.h
1094
1095 ANALOG DEVICES INC ADIS16460 DRIVER
1096 M: Dragos Bogdan <dragos.bogdan@analog.com>
1097 L: linux-iio@vger.kernel.org
1098 S: Supported
1099 W: http://ez.analog.com/community/linux-device-drivers
1100 F: Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1101 F: drivers/iio/imu/adis16460.c
1102
1103 ANALOG DEVICES INC ADIS16475 DRIVER
1104 M: Nuno Sa <nuno.sa@analog.com>
1105 L: linux-iio@vger.kernel.org
1106 W: http://ez.analog.com/community/linux-device-drivers
1107 S: Supported
1108 F: drivers/iio/imu/adis16475.c
1109 F: Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1110
1111 ANALOG DEVICES INC ADM1177 DRIVER
1112 M: Michael Hennerich <Michael.Hennerich@analog.com>
1113 L: linux-hwmon@vger.kernel.org
1114 S: Supported
1115 W: http://ez.analog.com/community/linux-device-drivers
1116 F: Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1117 F: drivers/hwmon/adm1177.c
1118
1119 ANALOG DEVICES INC ADP5061 DRIVER
1120 M: Michael Hennerich <Michael.Hennerich@analog.com>
1121 L: linux-pm@vger.kernel.org
1122 S: Supported
1123 W: http://ez.analog.com/community/linux-device-drivers
1124 F: drivers/power/supply/adp5061.c
1125
1126 ANALOG DEVICES INC ADV7180 DRIVER
1127 M: Lars-Peter Clausen <lars@metafoo.de>
1128 L: linux-media@vger.kernel.org
1129 S: Supported
1130 W: http://ez.analog.com/community/linux-device-drivers
1131 F: drivers/media/i2c/adv7180.c
1132 F: Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1133
1134 ANALOG DEVICES INC ADV748X DRIVER
1135 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
1136 L: linux-media@vger.kernel.org
1137 S: Maintained
1138 F: drivers/media/i2c/adv748x/*
1139
1140 ANALOG DEVICES INC ADV7511 DRIVER
1141 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1142 L: linux-media@vger.kernel.org
1143 S: Maintained
1144 F: drivers/media/i2c/adv7511*
1145
1146 ANALOG DEVICES INC ADV7604 DRIVER
1147 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1148 L: linux-media@vger.kernel.org
1149 S: Maintained
1150 F: drivers/media/i2c/adv7604*
1151 F: Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1152
1153 ANALOG DEVICES INC ADV7842 DRIVER
1154 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1155 L: linux-media@vger.kernel.org
1156 S: Maintained
1157 F: drivers/media/i2c/adv7842*
1158
1159 ANALOG DEVICES INC ADXRS290 DRIVER
1160 M: Nishant Malpani <nish.malpani25@gmail.com>
1161 L: linux-iio@vger.kernel.org
1162 S: Supported
1163 F: drivers/iio/gyro/adxrs290.c
1164 F: Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1165
1166 ANALOG DEVICES INC ASOC CODEC DRIVERS
1167 M: Lars-Peter Clausen <lars@metafoo.de>
1168 M: Nuno Sá <nuno.sa@analog.com>
1169 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1170 S: Supported
1171 W: http://wiki.analog.com/
1172 W: http://ez.analog.com/community/linux-device-drivers
1173 F: sound/soc/codecs/ad1*
1174 F: sound/soc/codecs/ad7*
1175 F: sound/soc/codecs/adau*
1176 F: sound/soc/codecs/adav*
1177 F: sound/soc/codecs/sigmadsp.*
1178 F: sound/soc/codecs/ssm*
1179
1180 ANALOG DEVICES INC DMA DRIVERS
1181 M: Lars-Peter Clausen <lars@metafoo.de>
1182 S: Supported
1183 W: http://ez.analog.com/community/linux-device-drivers
1184 F: drivers/dma/dma-axi-dmac.c
1185
1186 ANALOG DEVICES INC IIO DRIVERS
1187 M: Lars-Peter Clausen <lars@metafoo.de>
1188 M: Michael Hennerich <Michael.Hennerich@analog.com>
1189 S: Supported
1190 W: http://wiki.analog.com/
1191 W: http://ez.analog.com/community/linux-device-drivers
1192 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1193 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1194 F: Documentation/devicetree/bindings/iio/*/adi,*
1195 F: Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1196 F: drivers/iio/*/ad*
1197 F: drivers/iio/adc/ltc249*
1198 F: drivers/iio/amplifiers/hmc425a.c
1199 F: drivers/staging/iio/*/ad*
1200 X: drivers/iio/*/adjd*
1201
1202 ANALOGBITS PLL LIBRARIES
1203 M: Paul Walmsley <paul.walmsley@sifive.com>
1204 S: Supported
1205 F: drivers/clk/analogbits/*
1206 F: include/linux/clk/analogbits*
1207
1208 ANDES ARCHITECTURE
1209 M: Nick Hu <nickhu@andestech.com>
1210 M: Greentime Hu <green.hu@gmail.com>
1211 M: Vincent Chen <deanbo422@gmail.com>
1212 S: Supported
1213 T: git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1214 F: Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1215 F: Documentation/devicetree/bindings/nds32/
1216 F: arch/nds32/
1217 N: nds32
1218 K: nds32
1219
1220 ANDROID CONFIG FRAGMENTS
1221 M: Rob Herring <robh@kernel.org>
1222 S: Supported
1223 F: kernel/configs/android*
1224
1225 ANDROID DRIVERS
1226 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1227 M: Arve Hjønnevåg <arve@android.com>
1228 M: Todd Kjos <tkjos@android.com>
1229 M: Martijn Coenen <maco@android.com>
1230 M: Joel Fernandes <joel@joelfernandes.org>
1231 M: Christian Brauner <christian@brauner.io>
1232 M: Hridya Valsaraju <hridya@google.com>
1233 M: Suren Baghdasaryan <surenb@google.com>
1234 L: linux-kernel@vger.kernel.org
1235 S: Supported
1236 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1237 F: drivers/android/
1238 F: drivers/staging/android/
1239
1240 ANDROID GOLDFISH PIC DRIVER
1241 M: Miodrag Dinic <miodrag.dinic@mips.com>
1242 S: Supported
1243 F: Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1244 F: drivers/irqchip/irq-goldfish-pic.c
1245
1246 ANDROID GOLDFISH RTC DRIVER
1247 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
1248 S: Supported
1249 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1250 F: drivers/rtc/rtc-goldfish.c
1251
1252 AOA (Apple Onboard Audio) ALSA DRIVER
1253 M: Johannes Berg <johannes@sipsolutions.net>
1254 L: linuxppc-dev@lists.ozlabs.org
1255 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1256 S: Maintained
1257 F: sound/aoa/
1258
1259 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1260 M: William Breathitt Gray <vilhelm.gray@gmail.com>
1261 L: linux-iio@vger.kernel.org
1262 S: Maintained
1263 F: drivers/iio/adc/stx104.c
1264
1265 APM DRIVER
1266 M: Jiri Kosina <jikos@kernel.org>
1267 S: Odd fixes
1268 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1269 F: arch/x86/kernel/apm_32.c
1270 F: drivers/char/apm-emulation.c
1271 F: include/linux/apm_bios.h
1272 F: include/uapi/linux/apm_bios.h
1273
1274 APPARMOR SECURITY MODULE
1275 M: John Johansen <john.johansen@canonical.com>
1276 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1277 S: Supported
1278 W: wiki.apparmor.net
1279 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1280 F: Documentation/admin-guide/LSM/apparmor.rst
1281 F: security/apparmor/
1282
1283 APPLE BCM5974 MULTITOUCH DRIVER
1284 M: Henrik Rydberg <rydberg@bitmath.org>
1285 L: linux-input@vger.kernel.org
1286 S: Odd fixes
1287 F: drivers/input/mouse/bcm5974.c
1288
1289 APPLE DART IOMMU DRIVER
1290 M: Sven Peter <sven@svenpeter.dev>
1291 R: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1292 L: iommu@lists.linux-foundation.org
1293 S: Maintained
1294 F: Documentation/devicetree/bindings/iommu/apple,dart.yaml
1295 F: drivers/iommu/apple-dart.c
1296
1297 APPLE SMC DRIVER
1298 M: Henrik Rydberg <rydberg@bitmath.org>
1299 L: linux-hwmon@vger.kernel.org
1300 S: Odd fixes
1301 F: drivers/hwmon/applesmc.c
1302
1303 APPLETALK NETWORK LAYER
1304 L: netdev@vger.kernel.org
1305 S: Odd fixes
1306 F: drivers/net/appletalk/
1307 F: include/linux/atalk.h
1308 F: include/uapi/linux/atalk.h
1309 F: net/appletalk/
1310
1311 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1312 M: Khuong Dinh <khuong@os.amperecomputing.com>
1313 S: Supported
1314 F: arch/arm64/boot/dts/apm/
1315
1316 APPLIED MICRO (APM) X-GENE SOC EDAC
1317 M: Khuong Dinh <khuong@os.amperecomputing.com>
1318 S: Supported
1319 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1320 F: drivers/edac/xgene_edac.c
1321
1322 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1323 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1324 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1325 S: Supported
1326 F: drivers/net/ethernet/apm/xgene-v2/
1327
1328 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1329 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1330 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1331 M: Quan Nguyen <quan@os.amperecomputing.com>
1332 S: Supported
1333 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1334 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1335 F: drivers/net/ethernet/apm/xgene/
1336 F: drivers/net/mdio/mdio-xgene.c
1337
1338 APPLIED MICRO (APM) X-GENE SOC PMU
1339 M: Khuong Dinh <khuong@os.amperecomputing.com>
1340 S: Supported
1341 F: Documentation/admin-guide/perf/xgene-pmu.rst
1342 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1343 F: drivers/perf/xgene_pmu.c
1344
1345 APTINA CAMERA SENSOR PLL
1346 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1347 L: linux-media@vger.kernel.org
1348 S: Maintained
1349 F: drivers/media/i2c/aptina-pll.*
1350
1351 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1352 M: Aleksa Savic <savicaleksa83@gmail.com>
1353 L: linux-hwmon@vger.kernel.org
1354 S: Maintained
1355 F: Documentation/hwmon/aquacomputer_d5next.rst
1356 F: drivers/hwmon/aquacomputer_d5next.c
1357
1358 AQUANTIA ETHERNET DRIVER (atlantic)
1359 M: Igor Russkikh <irusskikh@marvell.com>
1360 L: netdev@vger.kernel.org
1361 S: Supported
1362 W: https://www.marvell.com/
1363 Q: https://patchwork.kernel.org/project/netdevbpf/list/
1364 F: Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1365 F: drivers/net/ethernet/aquantia/atlantic/
1366
1367 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1368 M: Egor Pomozov <epomozov@marvell.com>
1369 L: netdev@vger.kernel.org
1370 S: Supported
1371 W: http://www.aquantia.com
1372 F: drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1373
1374 ARASAN NAND CONTROLLER DRIVER
1375 M: Miquel Raynal <miquel.raynal@bootlin.com>
1376 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1377 L: linux-mtd@lists.infradead.org
1378 S: Maintained
1379 F: Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1380 F: drivers/mtd/nand/raw/arasan-nand-controller.c
1381
1382 ARC FRAMEBUFFER DRIVER
1383 M: Jaya Kumar <jayalk@intworks.biz>
1384 S: Maintained
1385 F: drivers/video/fbdev/arcfb.c
1386 F: drivers/video/fbdev/core/fb_defio.c
1387
1388 ARC PGU DRM DRIVER
1389 M: Alexey Brodkin <abrodkin@synopsys.com>
1390 S: Supported
1391 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
1392 F: drivers/gpu/drm/tiny/arcpgu.c
1393
1394 ARCNET NETWORK LAYER
1395 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
1396 L: netdev@vger.kernel.org
1397 S: Maintained
1398 F: drivers/net/arcnet/
1399 F: include/uapi/linux/if_arcnet.h
1400
1401 ARM ARCHITECTED TIMER DRIVER
1402 M: Mark Rutland <mark.rutland@arm.com>
1403 M: Marc Zyngier <maz@kernel.org>
1404 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1405 S: Maintained
1406 F: arch/arm/include/asm/arch_timer.h
1407 F: arch/arm64/include/asm/arch_timer.h
1408 F: drivers/clocksource/arm_arch_timer.c
1409
1410 ARM HDLCD DRM DRIVER
1411 M: Liviu Dudau <liviu.dudau@arm.com>
1412 S: Supported
1413 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
1414 F: drivers/gpu/drm/arm/hdlcd_*
1415
1416 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1417 M: Linus Walleij <linus.walleij@linaro.org>
1418 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1419 S: Maintained
1420 F: Documentation/devicetree/bindings/arm/arm,integrator.yaml
1421 F: Documentation/devicetree/bindings/arm/arm,realview.yaml
1422 F: Documentation/devicetree/bindings/arm/arm,versatile.yaml
1423 F: Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1424 F: Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1425 F: Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1426 F: Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1427 F: Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1428 F: Documentation/devicetree/bindings/mtd/arm-versatile.txt
1429 F: arch/arm/boot/dts/arm-realview-*
1430 F: arch/arm/boot/dts/integrator*
1431 F: arch/arm/boot/dts/versatile*
1432 F: arch/arm/mach-integrator/
1433 F: arch/arm/mach-realview/
1434 F: arch/arm/mach-versatile/
1435 F: arch/arm/plat-versatile/
1436 F: drivers/bus/arm-integrator-lm.c
1437 F: drivers/clk/versatile/
1438 F: drivers/i2c/busses/i2c-versatile.c
1439 F: drivers/irqchip/irq-versatile-fpga.c
1440 F: drivers/mtd/maps/physmap-versatile.*
1441 F: drivers/power/reset/arm-versatile-reboot.c
1442 F: drivers/soc/versatile/
1443
1444 ARM KOMEDA DRM-KMS DRIVER
1445 M: James (Qian) Wang <james.qian.wang@arm.com>
1446 M: Liviu Dudau <liviu.dudau@arm.com>
1447 M: Mihail Atanassov <mihail.atanassov@arm.com>
1448 L: Mali DP Maintainers <malidp@foss.arm.com>
1449 S: Supported
1450 T: git git://anongit.freedesktop.org/drm/drm-misc
1451 F: Documentation/devicetree/bindings/display/arm,komeda.txt
1452 F: Documentation/gpu/komeda-kms.rst
1453 F: drivers/gpu/drm/arm/display/include/
1454 F: drivers/gpu/drm/arm/display/komeda/
1455
1456 ARM MALI PANFROST DRM DRIVER
1457 M: Rob Herring <robh@kernel.org>
1458 M: Tomeu Vizoso <tomeu.vizoso@collabora.com>
1459 R: Steven Price <steven.price@arm.com>
1460 R: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1461 L: dri-devel@lists.freedesktop.org
1462 S: Supported
1463 T: git git://anongit.freedesktop.org/drm/drm-misc
1464 F: drivers/gpu/drm/panfrost/
1465 F: include/uapi/drm/panfrost_drm.h
1466
1467 ARM MALI-DP DRM DRIVER
1468 M: Liviu Dudau <liviu.dudau@arm.com>
1469 M: Brian Starkey <brian.starkey@arm.com>
1470 L: Mali DP Maintainers <malidp@foss.arm.com>
1471 S: Supported
1472 T: git git://anongit.freedesktop.org/drm/drm-misc
1473 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1474 F: Documentation/gpu/afbc.rst
1475 F: drivers/gpu/drm/arm/
1476
1477 ARM MFM AND FLOPPY DRIVERS
1478 M: Ian Molton <spyro@f2s.com>
1479 S: Maintained
1480 F: arch/arm/include/asm/floppy.h
1481 F: arch/arm/mach-rpc/floppydma.S
1482
1483 ARM PMU PROFILING AND DEBUGGING
1484 M: Will Deacon <will@kernel.org>
1485 M: Mark Rutland <mark.rutland@arm.com>
1486 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 S: Maintained
1488 F: Documentation/devicetree/bindings/arm/pmu.yaml
1489 F: Documentation/devicetree/bindings/perf/
1490 F: arch/arm*/include/asm/hw_breakpoint.h
1491 F: arch/arm*/include/asm/perf_event.h
1492 F: arch/arm*/kernel/hw_breakpoint.c
1493 F: arch/arm*/kernel/perf_*
1494 F: drivers/perf/
1495 F: include/linux/perf/arm_pmu.h
1496
1497 ARM PORT
1498 M: Russell King <linux@armlinux.org.uk>
1499 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 S: Odd Fixes
1501 W: http://www.armlinux.org.uk/
1502 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1503 F: arch/arm/
1504 X: arch/arm/boot/dts/
1505
1506 ARM PRIMECELL AACI PL041 DRIVER
1507 M: Russell King <linux@armlinux.org.uk>
1508 S: Odd Fixes
1509 F: sound/arm/aaci.*
1510
1511 ARM PRIMECELL BUS SUPPORT
1512 M: Russell King <linux@armlinux.org.uk>
1513 S: Odd Fixes
1514 F: drivers/amba/
1515 F: include/linux/amba/bus.h
1516
1517 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1518 M: Miquel Raynal <miquel.raynal@bootlin.com>
1519 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1520 L: linux-mtd@lists.infradead.org
1521 S: Maintained
1522 F: Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1523 F: drivers/mtd/nand/raw/pl35x-nand-controller.c
1524
1525 ARM PRIMECELL PL35X SMC DRIVER
1526 M: Miquel Raynal <miquel.raynal@bootlin.com>
1527 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1528 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1529 S: Maintained
1530 F: Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1531 F: drivers/memory/pl353-smc.c
1532
1533 ARM PRIMECELL CLCD PL110 DRIVER
1534 M: Russell King <linux@armlinux.org.uk>
1535 S: Odd Fixes
1536 F: drivers/video/fbdev/amba-clcd.*
1537
1538 ARM PRIMECELL KMI PL050 DRIVER
1539 M: Russell King <linux@armlinux.org.uk>
1540 S: Odd Fixes
1541 F: drivers/input/serio/ambakmi.*
1542 F: include/linux/amba/kmi.h
1543
1544 ARM PRIMECELL MMCI PL180/1 DRIVER
1545 M: Russell King <linux@armlinux.org.uk>
1546 S: Odd Fixes
1547 F: drivers/mmc/host/mmci.*
1548 F: include/linux/amba/mmci.h
1549
1550 ARM PRIMECELL SSP PL022 SPI DRIVER
1551 M: Linus Walleij <linus.walleij@linaro.org>
1552 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S: Maintained
1554 F: Documentation/devicetree/bindings/spi/spi-pl022.yaml
1555 F: drivers/spi/spi-pl022.c
1556
1557 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1558 M: Russell King <linux@armlinux.org.uk>
1559 S: Odd Fixes
1560 F: drivers/tty/serial/amba-pl01*.c
1561 F: include/linux/amba/serial.h
1562
1563 ARM PRIMECELL VIC PL190/PL192 DRIVER
1564 M: Linus Walleij <linus.walleij@linaro.org>
1565 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S: Maintained
1567 F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1568 F: drivers/irqchip/irq-vic.c
1569
1570 ARM SMC WATCHDOG DRIVER
1571 M: Julius Werner <jwerner@chromium.org>
1572 R: Evan Benn <evanbenn@chromium.org>
1573 S: Maintained
1574 F: Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1575 F: drivers/watchdog/arm_smc_wdt.c
1576
1577 ARM SMMU DRIVERS
1578 M: Will Deacon <will@kernel.org>
1579 R: Robin Murphy <robin.murphy@arm.com>
1580 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S: Maintained
1582 F: Documentation/devicetree/bindings/iommu/arm,smmu*
1583 F: drivers/iommu/arm/
1584 F: drivers/iommu/io-pgtable-arm*
1585
1586 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1587 M: Arnd Bergmann <arnd@arndb.de>
1588 M: Olof Johansson <olof@lixom.net>
1589 M: soc@kernel.org
1590 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 S: Maintained
1592 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1593 F: arch/arm/boot/dts/Makefile
1594 F: arch/arm64/boot/dts/Makefile
1595
1596 ARM SUB-ARCHITECTURES
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/mach-*/
1601 F: arch/arm/plat-*/
1602
1603 ARM/ACTIONS SEMI ARCHITECTURE
1604 M: Andreas Färber <afaerber@suse.de>
1605 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1606 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 L: linux-actions@lists.infradead.org (moderated for non-subscribers)
1608 S: Maintained
1609 F: Documentation/devicetree/bindings/arm/actions.yaml
1610 F: Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1611 F: Documentation/devicetree/bindings/dma/owl-dma.yaml
1612 F: Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1613 F: Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1614 F: Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1615 F: Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1616 F: Documentation/devicetree/bindings/pinctrl/actions,*
1617 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1618 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1619 F: arch/arm/boot/dts/owl-*
1620 F: arch/arm/mach-actions/
1621 F: arch/arm64/boot/dts/actions/
1622 F: drivers/clk/actions/
1623 F: drivers/clocksource/timer-owl*
1624 F: drivers/dma/owl-dma.c
1625 F: drivers/i2c/busses/i2c-owl.c
1626 F: drivers/irqchip/irq-owl-sirq.c
1627 F: drivers/mmc/host/owl-mmc.c
1628 F: drivers/net/ethernet/actions/
1629 F: drivers/pinctrl/actions/*
1630 F: drivers/soc/actions/
1631 F: include/dt-bindings/power/owl-*
1632 F: include/dt-bindings/reset/actions,*
1633 F: include/linux/soc/actions/
1634 N: owl
1635
1636 ARM/ADS SPHERE MACHINE SUPPORT
1637 M: Lennert Buytenhek <kernel@wantstofly.org>
1638 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 S: Maintained
1640
1641 ARM/AFEB9260 MACHINE SUPPORT
1642 M: Sergey Lapin <slapin@ossfans.org>
1643 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1644 S: Maintained
1645
1646 ARM/AJECO 1ARM MACHINE SUPPORT
1647 M: Lennert Buytenhek <kernel@wantstofly.org>
1648 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 S: Maintained
1650
1651 ARM/Allwinner SoC Clock Support
1652 M: Emilio López <emilio@elopez.com.ar>
1653 S: Maintained
1654 F: drivers/clk/sunxi/
1655
1656 ARM/Allwinner sunXi SoC support
1657 M: Maxime Ripard <mripard@kernel.org>
1658 M: Chen-Yu Tsai <wens@csie.org>
1659 R: Jernej Skrabec <jernej.skrabec@gmail.com>
1660 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1661 S: Maintained
1662 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1663 L: linux-sunxi@lists.linux.dev
1664 F: arch/arm/mach-sunxi/
1665 F: arch/arm64/boot/dts/allwinner/
1666 F: drivers/clk/sunxi-ng/
1667 F: drivers/pinctrl/sunxi/
1668 F: drivers/soc/sunxi/
1669 N: allwinner
1670 N: sun[x456789]i
1671 N: sun50i
1672
1673 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1674 M: Neil Armstrong <narmstrong@baylibre.com>
1675 M: Jerome Brunet <jbrunet@baylibre.com>
1676 L: linux-amlogic@lists.infradead.org
1677 S: Maintained
1678 F: Documentation/devicetree/bindings/clock/amlogic*
1679 F: drivers/clk/meson/
1680 F: include/dt-bindings/clock/gxbb*
1681 F: include/dt-bindings/clock/meson*
1682
1683 ARM/Amlogic Meson SoC Crypto Drivers
1684 M: Corentin Labbe <clabbe@baylibre.com>
1685 L: linux-crypto@vger.kernel.org
1686 L: linux-amlogic@lists.infradead.org
1687 S: Maintained
1688 F: Documentation/devicetree/bindings/crypto/amlogic*
1689 F: drivers/crypto/amlogic/
1690
1691 ARM/Amlogic Meson SoC Sound Drivers
1692 M: Jerome Brunet <jbrunet@baylibre.com>
1693 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1694 S: Maintained
1695 F: Documentation/devicetree/bindings/sound/amlogic*
1696 F: sound/soc/meson/
1697
1698 ARM/Amlogic Meson SoC support
1699 M: Neil Armstrong <narmstrong@baylibre.com>
1700 M: Kevin Hilman <khilman@baylibre.com>
1701 R: Jerome Brunet <jbrunet@baylibre.com>
1702 R: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1703 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 L: linux-amlogic@lists.infradead.org
1705 S: Maintained
1706 W: http://linux-meson.com/
1707 F: arch/arm/boot/dts/meson*
1708 F: arch/arm/mach-meson/
1709 F: arch/arm64/boot/dts/amlogic/
1710 F: drivers/mmc/host/meson*
1711 F: drivers/pinctrl/meson/
1712 F: drivers/rtc/rtc-meson*
1713 F: drivers/soc/amlogic/
1714 N: meson
1715
1716 ARM/Annapurna Labs ALPINE ARCHITECTURE
1717 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1718 M: Antoine Tenart <atenart@kernel.org>
1719 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1720 S: Maintained
1721 F: arch/arm/boot/dts/alpine*
1722 F: arch/arm/mach-alpine/
1723 F: arch/arm64/boot/dts/amazon/
1724 F: drivers/*/*alpine*
1725
1726 ARM/APPLE MACHINE SUPPORT
1727 M: Hector Martin <marcan@marcan.st>
1728 M: Sven Peter <sven@svenpeter.dev>
1729 R: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1730 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 S: Maintained
1732 W: https://asahilinux.org
1733 B: https://github.com/AsahiLinux/linux/issues
1734 C: irc://irc.oftc.net/asahi-dev
1735 T: git https://github.com/AsahiLinux/linux.git
1736 F: Documentation/devicetree/bindings/arm/apple.yaml
1737 F: Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1738 F: Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1739 F: arch/arm64/boot/dts/apple/
1740 F: drivers/irqchip/irq-apple-aic.c
1741 F: include/dt-bindings/interrupt-controller/apple-aic.h
1742 F: include/dt-bindings/pinctrl/apple.h
1743
1744 ARM/ARTPEC MACHINE SUPPORT
1745 M: Jesper Nilsson <jesper.nilsson@axis.com>
1746 M: Lars Persson <lars.persson@axis.com>
1747 L: linux-arm-kernel@axis.com
1748 S: Maintained
1749 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1750 F: arch/arm/boot/dts/artpec6*
1751 F: arch/arm/mach-artpec
1752 F: drivers/clk/axis
1753 F: drivers/crypto/axis
1754 F: drivers/mmc/host/usdhi6rol0.c
1755 F: drivers/pinctrl/pinctrl-artpec*
1756
1757 ARM/ASPEED I2C DRIVER
1758 M: Brendan Higgins <brendanhiggins@google.com>
1759 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1760 R: Joel Stanley <joel@jms.id.au>
1761 L: linux-i2c@vger.kernel.org
1762 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1763 S: Maintained
1764 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1765 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1766 F: drivers/i2c/busses/i2c-aspeed.c
1767 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1768
1769 ARM/ASPEED MACHINE SUPPORT
1770 M: Joel Stanley <joel@jms.id.au>
1771 R: Andrew Jeffery <andrew@aj.id.au>
1772 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1773 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1774 S: Supported
1775 Q: https://patchwork.ozlabs.org/project/linux-aspeed/list/
1776 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1777 F: arch/arm/boot/dts/aspeed-*
1778 F: arch/arm/mach-aspeed/
1779 N: aspeed
1780
1781 ARM/BITMAIN ARCHITECTURE
1782 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1783 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1784 S: Maintained
1785 F: Documentation/devicetree/bindings/arm/bitmain.yaml
1786 F: Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1787 F: Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1788 F: arch/arm64/boot/dts/bitmain/
1789 F: drivers/clk/clk-bm1880.c
1790 F: drivers/pinctrl/pinctrl-bm1880.c
1791
1792 ARM/CALXEDA HIGHBANK ARCHITECTURE
1793 M: Andre Przywara <andre.przywara@arm.com>
1794 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1795 S: Maintained
1796 F: arch/arm/boot/dts/ecx-*.dts*
1797 F: arch/arm/boot/dts/highbank.dts
1798 F: arch/arm/mach-highbank/
1799
1800 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1801 M: Krzysztof Halasa <khalasa@piap.pl>
1802 S: Maintained
1803 F: arch/arm/mach-cns3xxx/
1804
1805 ARM/CAVIUM THUNDER NETWORK DRIVER
1806 M: Sunil Goutham <sgoutham@marvell.com>
1807 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1808 S: Supported
1809 F: drivers/net/ethernet/cavium/thunder/
1810
1811 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1812 M: Lukasz Majewski <lukma@denx.de>
1813 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S: Maintained
1815 F: arch/arm/mach-ep93xx/ts72xx.c
1816
1817 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1818 M: Alexander Shiyan <shc_work@mail.ru>
1819 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S: Odd Fixes
1821 N: clps711x
1822
1823 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1824 M: Lennert Buytenhek <kernel@wantstofly.org>
1825 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S: Maintained
1827
1828 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1829 M: Hartley Sweeten <hsweeten@visionengravers.com>
1830 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1831 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 S: Maintained
1833 F: arch/arm/mach-ep93xx/
1834 F: arch/arm/mach-ep93xx/include/mach/
1835
1836 ARM/CLKDEV SUPPORT
1837 M: Russell King <linux@armlinux.org.uk>
1838 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1839 S: Maintained
1840 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1841 F: drivers/clk/clkdev.c
1842
1843 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1844 M: Baruch Siach <baruch@tkos.co.il>
1845 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1846 S: Maintained
1847 F: arch/arm/boot/dts/cx92755*
1848 N: digicolor
1849
1850 ARM/CONTEC MICRO9 MACHINE SUPPORT
1851 M: Hubert Feurstein <hubert.feurstein@contec.at>
1852 S: Maintained
1853 F: arch/arm/mach-ep93xx/micro9.c
1854
1855 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1856 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1857 M: Suzuki K Poulose <suzuki.poulose@arm.com>
1858 R: Mike Leach <mike.leach@linaro.org>
1859 R: Leo Yan <leo.yan@linaro.org>
1860 L: coresight@lists.linaro.org (moderated for non-subscribers)
1861 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1862 S: Maintained
1863 T: git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1864 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1865 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1866 F: Documentation/devicetree/bindings/arm/coresight-cti.yaml
1867 F: Documentation/devicetree/bindings/arm/coresight.txt
1868 F: Documentation/devicetree/bindings/arm/ete.yaml
1869 F: Documentation/devicetree/bindings/arm/trbe.yaml
1870 F: Documentation/trace/coresight/*
1871 F: drivers/hwtracing/coresight/*
1872 F: include/dt-bindings/arm/coresight-cti-dt.h
1873 F: include/linux/coresight*
1874 F: tools/perf/arch/arm/util/auxtrace.c
1875 F: tools/perf/arch/arm/util/cs-etm.c
1876 F: tools/perf/arch/arm/util/cs-etm.h
1877 F: tools/perf/arch/arm/util/pmu.c
1878 F: tools/perf/util/cs-etm-decoder/*
1879 F: tools/perf/util/cs-etm.*
1880
1881 ARM/CORGI MACHINE SUPPORT
1882 M: Richard Purdie <rpurdie@rpsys.net>
1883 S: Maintained
1884
1885 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1886 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1887 M: Linus Walleij <linus.walleij@linaro.org>
1888 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1889 S: Maintained
1890 T: git git://github.com/ulli-kroll/linux.git
1891 F: Documentation/devicetree/bindings/arm/gemini.txt
1892 F: Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1893 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1894 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1895 F: arch/arm/boot/dts/gemini*
1896 F: arch/arm/mach-gemini/
1897 F: drivers/crypto/gemini/
1898 F: drivers/net/ethernet/cortina/
1899 F: drivers/pinctrl/pinctrl-gemini.c
1900 F: drivers/rtc/rtc-ftrtc010.c
1901
1902 ARM/CZ.NIC TURRIS SUPPORT
1903 M: Marek Behún <kabel@kernel.org>
1904 S: Maintained
1905 W: https://www.turris.cz/
1906 F: Documentation/ABI/testing/debugfs-moxtet
1907 F: Documentation/ABI/testing/sysfs-bus-moxtet-devices
1908 F: Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1909 F: Documentation/devicetree/bindings/bus/moxtet.txt
1910 F: Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1911 F: Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1912 F: Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1913 F: Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1914 F: drivers/bus/moxtet.c
1915 F: drivers/firmware/turris-mox-rwtm.c
1916 F: drivers/leds/leds-turris-omnia.c
1917 F: drivers/mailbox/armada-37xx-rwtm-mailbox.c
1918 F: drivers/gpio/gpio-moxtet.c
1919 F: drivers/watchdog/armada_37xx_wdt.c
1920 F: include/dt-bindings/bus/moxtet.h
1921 F: include/linux/armada-37xx-rwtm-mailbox.h
1922 F: include/linux/moxtet.h
1923
1924 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1925 M: Robert Jarzmik <robert.jarzmik@free.fr>
1926 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1927 S: Maintained
1928 F: arch/arm/mach-pxa/ezx.c
1929
1930 ARM/FARADAY FA526 PORT
1931 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1932 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S: Maintained
1934 T: git git://git.berlios.de/gemini-board
1935 F: arch/arm/mm/*-fa*
1936
1937 ARM/FOOTBRIDGE ARCHITECTURE
1938 M: Russell King <linux@armlinux.org.uk>
1939 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S: Maintained
1941 W: http://www.armlinux.org.uk/
1942 F: arch/arm/include/asm/hardware/dec21285.h
1943 F: arch/arm/mach-footbridge/
1944
1945 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1946 M: Shawn Guo <shawnguo@kernel.org>
1947 M: Sascha Hauer <s.hauer@pengutronix.de>
1948 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1949 R: Fabio Estevam <festevam@gmail.com>
1950 R: NXP Linux Team <linux-imx@nxp.com>
1951 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1952 S: Maintained
1953 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1954 X: drivers/media/i2c/
1955 N: imx
1956 N: mxs
1957
1958 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1959 M: Shawn Guo <shawnguo@kernel.org>
1960 M: Li Yang <leoyang.li@nxp.com>
1961 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1962 S: Maintained
1963 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1964 F: arch/arm/boot/dts/ls1021a*
1965 F: arch/arm64/boot/dts/freescale/fsl-*
1966 F: arch/arm64/boot/dts/freescale/qoriq-*
1967
1968 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1969 M: Shawn Guo <shawnguo@kernel.org>
1970 M: Sascha Hauer <s.hauer@pengutronix.de>
1971 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1972 R: Stefan Agner <stefan@agner.ch>
1973 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1974 S: Maintained
1975 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1976 F: arch/arm/boot/dts/vf*
1977 F: arch/arm/mach-imx/*vf610*
1978
1979 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1980 M: Lennert Buytenhek <kernel@wantstofly.org>
1981 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 S: Maintained
1983
1984 ARM/GUMSTIX MACHINE SUPPORT
1985 M: Steve Sakoman <sakoman@gmail.com>
1986 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1987 S: Maintained
1988
1989 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1990 M: Philipp Zabel <philipp.zabel@gmail.com>
1991 M: Paul Parsons <lost.distance@yahoo.com>
1992 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1993 S: Maintained
1994 F: arch/arm/mach-pxa/hx4700.c
1995 F: arch/arm/mach-pxa/include/mach/hx4700.h
1996 F: sound/soc/pxa/hx4700.c
1997
1998 ARM/HISILICON SOC SUPPORT
1999 M: Wei Xu <xuwei5@hisilicon.com>
2000 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2001 S: Supported
2002 W: http://www.hisilicon.com
2003 T: git git://github.com/hisilicon/linux-hisi.git
2004 F: arch/arm/boot/dts/hi3*
2005 F: arch/arm/boot/dts/hip*
2006 F: arch/arm/boot/dts/hisi*
2007 F: arch/arm/mach-hisi/
2008 F: arch/arm64/boot/dts/hisilicon/
2009
2010 ARM/HP JORNADA 7XX MACHINE SUPPORT
2011 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
2012 S: Maintained
2013 W: www.jlime.com
2014 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2015 F: arch/arm/mach-sa1100/include/mach/jornada720.h
2016 F: arch/arm/mach-sa1100/jornada720.c
2017
2018 ARM/IGEP MACHINE SUPPORT
2019 M: Enric Balletbo i Serra <eballetbo@gmail.com>
2020 M: Javier Martinez Canillas <javier@dowhile0.org>
2021 L: linux-omap@vger.kernel.org
2022 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2023 S: Maintained
2024 F: arch/arm/boot/dts/omap3-igep*
2025
2026 ARM/INCOME PXA270 SUPPORT
2027 M: Marek Vasut <marek.vasut@gmail.com>
2028 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2029 S: Maintained
2030 F: arch/arm/mach-pxa/colibri-pxa270-income.c
2031
2032 ARM/INTEL IOP32X ARM ARCHITECTURE
2033 M: Lennert Buytenhek <kernel@wantstofly.org>
2034 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S: Maintained
2036
2037 ARM/INTEL IQ81342EX MACHINE SUPPORT
2038 M: Lennert Buytenhek <kernel@wantstofly.org>
2039 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2040 S: Maintained
2041
2042 ARM/INTEL IXDP2850 MACHINE SUPPORT
2043 M: Lennert Buytenhek <kernel@wantstofly.org>
2044 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2045 S: Maintained
2046
2047 ARM/INTEL IXP4XX ARM ARCHITECTURE
2048 M: Linus Walleij <linusw@kernel.org>
2049 M: Imre Kaloz <kaloz@openwrt.org>
2050 M: Krzysztof Halasa <khalasa@piap.pl>
2051 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2052 S: Maintained
2053 F: Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2054 F: Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2055 F: Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2056 F: Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2057 F: Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2058 F: arch/arm/mach-ixp4xx/
2059 F: drivers/bus/intel-ixp4xx-eb.c
2060 F: drivers/clocksource/timer-ixp4xx.c
2061 F: drivers/crypto/ixp4xx_crypto.c
2062 F: drivers/gpio/gpio-ixp4xx.c
2063 F: drivers/irqchip/irq-ixp4xx.c
2064 F: include/linux/irqchip/irq-ixp4xx.h
2065 F: include/linux/platform_data/timer-ixp4xx.h
2066
2067 ARM/INTEL KEEMBAY ARCHITECTURE
2068 M: Paul J. Murphy <paul.j.murphy@intel.com>
2069 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2070 S: Maintained
2071 F: Documentation/devicetree/bindings/arm/intel,keembay.yaml
2072 F: arch/arm64/boot/dts/intel/keembay-evm.dts
2073 F: arch/arm64/boot/dts/intel/keembay-soc.dtsi
2074
2075 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2076 M: Jonathan Cameron <jic23@cam.ac.uk>
2077 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2078 S: Maintained
2079 F: arch/arm/mach-pxa/stargate2.c
2080 F: drivers/pcmcia/pxa2xx_stargate2.c
2081
2082 ARM/INTEL XSC3 (MANZANO) ARM CORE
2083 M: Lennert Buytenhek <kernel@wantstofly.org>
2084 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S: Maintained
2086
2087 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2088 M: Lennert Buytenhek <kernel@wantstofly.org>
2089 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S: Maintained
2091
2092 ARM/LG1K ARCHITECTURE
2093 M: Chanho Min <chanho.min@lge.com>
2094 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2095 S: Maintained
2096 F: arch/arm64/boot/dts/lg/
2097
2098 ARM/LOGICPD PXA270 MACHINE SUPPORT
2099 M: Lennert Buytenhek <kernel@wantstofly.org>
2100 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S: Maintained
2102
2103 ARM/LPC18XX ARCHITECTURE
2104 M: Vladimir Zapolskiy <vz@mleia.com>
2105 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2106 S: Maintained
2107 F: Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2108 F: arch/arm/boot/dts/lpc43*
2109 F: drivers/i2c/busses/i2c-lpc2k.c
2110 F: drivers/memory/pl172.c
2111 F: drivers/mtd/spi-nor/controllers/nxp-spifi.c
2112 F: drivers/rtc/rtc-lpc24xx.c
2113 N: lpc18xx
2114
2115 ARM/LPC32XX SOC SUPPORT
2116 M: Vladimir Zapolskiy <vz@mleia.com>
2117 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2118 S: Maintained
2119 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
2120 F: Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2121 F: arch/arm/boot/dts/lpc32*
2122 F: arch/arm/mach-lpc32xx/
2123 F: drivers/i2c/busses/i2c-pnx.c
2124 F: drivers/net/ethernet/nxp/lpc_eth.c
2125 F: drivers/usb/host/ohci-nxp.c
2126 F: drivers/watchdog/pnx4008_wdt.c
2127 N: lpc32xx
2128
2129 ARM/MAGICIAN MACHINE SUPPORT
2130 M: Philipp Zabel <philipp.zabel@gmail.com>
2131 S: Maintained
2132
2133 ARM/Marvell Dove/MV78xx0/Orion SOC support
2134 M: Andrew Lunn <andrew@lunn.ch>
2135 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2136 M: Gregory Clement <gregory.clement@bootlin.com>
2137 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138 S: Maintained
2139 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2140 F: Documentation/devicetree/bindings/soc/dove/
2141 F: arch/arm/boot/dts/dove*
2142 F: arch/arm/boot/dts/orion5x*
2143 F: arch/arm/mach-dove/
2144 F: arch/arm/mach-mv78xx0/
2145 F: arch/arm/mach-orion5x/
2146 F: arch/arm/plat-orion/
2147 F: drivers/soc/dove/
2148
2149 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2150 M: Andrew Lunn <andrew@lunn.ch>
2151 M: Gregory Clement <gregory.clement@bootlin.com>
2152 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2153 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2154 S: Maintained
2155 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2156 F: arch/arm/boot/dts/armada*
2157 F: arch/arm/boot/dts/kirkwood*
2158 F: arch/arm/configs/mvebu_*_defconfig
2159 F: arch/arm/mach-mvebu/
2160 F: arch/arm64/boot/dts/marvell/armada*
2161 F: arch/arm64/boot/dts/marvell/cn913*
2162 F: drivers/cpufreq/armada-37xx-cpufreq.c
2163 F: drivers/cpufreq/armada-8k-cpufreq.c
2164 F: drivers/cpufreq/mvebu-cpufreq.c
2165 F: drivers/irqchip/irq-armada-370-xp.c
2166 F: drivers/irqchip/irq-mvebu-*
2167 F: drivers/pinctrl/mvebu/
2168 F: drivers/rtc/rtc-armada38x.c
2169
2170 ARM/Mediatek RTC DRIVER
2171 M: Eddie Huang <eddie.huang@mediatek.com>
2172 M: Sean Wang <sean.wang@mediatek.com>
2173 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2174 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2175 S: Maintained
2176 F: Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2177 F: Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2178 F: drivers/rtc/rtc-mt2712.c
2179 F: drivers/rtc/rtc-mt6397.c
2180 F: drivers/rtc/rtc-mt7622.c
2181
2182 ARM/Mediatek SoC support
2183 M: Matthias Brugger <matthias.bgg@gmail.com>
2184 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2185 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2186 S: Maintained
2187 W: https://mtk.wiki.kernel.org/
2188 C: irc://chat.freenode.net/linux-mediatek
2189 F: arch/arm/boot/dts/mt6*
2190 F: arch/arm/boot/dts/mt7*
2191 F: arch/arm/boot/dts/mt8*
2192 F: arch/arm/mach-mediatek/
2193 F: arch/arm64/boot/dts/mediatek/
2194 F: drivers/soc/mediatek/
2195 N: mtk
2196 N: mt[678]
2197 K: mediatek
2198
2199 ARM/Mediatek USB3 PHY DRIVER
2200 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
2201 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2202 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2203 S: Maintained
2204 F: Documentation/devicetree/bindings/phy/mediatek,*
2205 F: drivers/phy/mediatek/
2206
2207 ARM/Microchip (AT91) SoC support
2208 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2209 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
2210 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2211 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2212 S: Supported
2213 W: http://www.linux4sam.org
2214 T: git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2215 F: arch/arm/boot/dts/at91*.dts
2216 F: arch/arm/boot/dts/at91*.dtsi
2217 F: arch/arm/boot/dts/sama*.dts
2218 F: arch/arm/boot/dts/sama*.dtsi
2219 F: arch/arm/include/debug/at91.S
2220 F: arch/arm/mach-at91/
2221 F: drivers/memory/atmel*
2222 F: drivers/watchdog/sama5d4_wdt.c
2223 F: include/soc/at91/
2224 X: drivers/input/touchscreen/atmel_mxt_ts.c
2225 X: drivers/net/wireless/atmel/
2226 N: at91
2227 N: atmel
2228
2229 ARM/Microchip Sparx5 SoC support
2230 M: Lars Povlsen <lars.povlsen@microchip.com>
2231 M: Steen Hegelund <Steen.Hegelund@microchip.com>
2232 M: UNGLinuxDriver@microchip.com
2233 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2234 S: Supported
2235 T: git git://github.com/microchip-ung/linux-upstream.git
2236 F: arch/arm64/boot/dts/microchip/
2237 F: drivers/pinctrl/pinctrl-microchip-sgpio.c
2238 N: sparx5
2239
2240 Microchip Timer Counter Block (TCB) Capture Driver
2241 M: Kamel Bouhara <kamel.bouhara@bootlin.com>
2242 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2243 L: linux-iio@vger.kernel.org
2244 S: Maintained
2245 F: drivers/counter/microchip-tcb-capture.c
2246
2247 ARM/MIOA701 MACHINE SUPPORT
2248 M: Robert Jarzmik <robert.jarzmik@free.fr>
2249 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2250 S: Maintained
2251 F: arch/arm/mach-pxa/mioa701.c
2252
2253 ARM/MStar/Sigmastar Armv7 SoC support
2254 M: Daniel Palmer <daniel@thingy.jp>
2255 M: Romain Perier <romain.perier@gmail.com>
2256 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2257 S: Maintained
2258 W: http://linux-chenxing.org/
2259 T: git git://github.com/linux-chenxing/linux.git
2260 F: Documentation/devicetree/bindings/arm/mstar/*
2261 F: Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2262 F: Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2263 F: arch/arm/boot/dts/mstar-*
2264 F: arch/arm/mach-mstar/
2265 F: drivers/clk/mstar/
2266 F: drivers/gpio/gpio-msc313.c
2267 F: drivers/watchdog/msc313e_wdt.c
2268 F: include/dt-bindings/clock/mstar-*
2269 F: include/dt-bindings/gpio/msc313-gpio.h
2270
2271 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2272 M: Michael Petchkovsky <mkpetch@internode.on.net>
2273 S: Maintained
2274
2275 ARM/NOMADIK/Ux500 ARCHITECTURES
2276 M: Linus Walleij <linus.walleij@linaro.org>
2277 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2278 S: Maintained
2279 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2280 F: Documentation/devicetree/bindings/arm/ste-*
2281 F: Documentation/devicetree/bindings/arm/ux500.yaml
2282 F: Documentation/devicetree/bindings/arm/ux500/
2283 F: Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2284 F: arch/arm/boot/dts/ste-*
2285 F: arch/arm/mach-nomadik/
2286 F: arch/arm/mach-ux500/
2287 F: drivers/clk/clk-nomadik.c
2288 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2289 F: drivers/dma/ste_dma40*
2290 F: drivers/hwspinlock/u8500_hsem.c
2291 F: drivers/i2c/busses/i2c-nomadik.c
2292 F: drivers/iio/adc/ab8500-gpadc.c
2293 F: drivers/mfd/ab8500*
2294 F: drivers/mfd/abx500*
2295 F: drivers/mfd/db8500*
2296 F: drivers/pinctrl/nomadik/
2297 F: drivers/rtc/rtc-ab8500.c
2298 F: drivers/rtc/rtc-pl031.c
2299 F: drivers/soc/ux500/
2300
2301 ARM/NUVOTON NPCM ARCHITECTURE
2302 M: Avi Fishman <avifishman70@gmail.com>
2303 M: Tomer Maimon <tmaimon77@gmail.com>
2304 M: Tali Perry <tali.perry1@gmail.com>
2305 R: Patrick Venture <venture@google.com>
2306 R: Nancy Yuen <yuenn@google.com>
2307 R: Benjamin Fair <benjaminfair@google.com>
2308 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2309 S: Supported
2310 F: Documentation/devicetree/bindings/*/*/*npcm*
2311 F: Documentation/devicetree/bindings/*/*npcm*
2312 F: arch/arm/boot/dts/nuvoton-npcm*
2313 F: arch/arm/mach-npcm/
2314 F: drivers/*/*npcm*
2315 F: drivers/*/*/*npcm*
2316 F: include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2317
2318 ARM/NUVOTON WPCM450 ARCHITECTURE
2319 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2320 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2321 S: Maintained
2322 F: Documentation/devicetree/bindings/*/*wpcm*
2323 F: arch/arm/boot/dts/nuvoton-wpcm450*
2324 F: arch/arm/mach-npcm/wpcm450.c
2325 F: drivers/*/*wpcm*
2326
2327 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2328 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
2329 S: Orphan
2330 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
2331 F: arch/arm/mach-s3c/gta02.h
2332 F: arch/arm/mach-s3c/mach-gta02.c
2333
2334 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2335 M: Alexander Clouter <alex@digriz.org.uk>
2336 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2337 S: Maintained
2338 W: http://www.digriz.org.uk/ts78xx/kernel
2339 F: arch/arm/mach-orion5x/ts78xx-*
2340
2341 ARM/OXNAS platform support
2342 M: Neil Armstrong <narmstrong@baylibre.com>
2343 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2344 L: linux-oxnas@groups.io (moderated for non-subscribers)
2345 S: Maintained
2346 F: arch/arm/boot/dts/ox8*.dts*
2347 F: arch/arm/mach-oxnas/
2348 F: drivers/power/reset/oxnas-restart.c
2349 N: oxnas
2350
2351 ARM/PALM TREO SUPPORT
2352 M: Tomas Cech <sleep_walker@suse.com>
2353 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2354 S: Maintained
2355 W: http://hackndev.com
2356 F: arch/arm/mach-pxa/palmtreo.*
2357
2358 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2359 M: Marek Vasut <marek.vasut@gmail.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/include/mach/palmld.h
2364 F: arch/arm/mach-pxa/include/mach/palmtc.h
2365 F: arch/arm/mach-pxa/include/mach/palmtx.h
2366 F: arch/arm/mach-pxa/palmld.c
2367 F: arch/arm/mach-pxa/palmt5.*
2368 F: arch/arm/mach-pxa/palmtc.c
2369 F: arch/arm/mach-pxa/palmte2.*
2370 F: arch/arm/mach-pxa/palmtx.c
2371
2372 ARM/PALMZ72 SUPPORT
2373 M: Sergey Lapin <slapin@ossfans.org>
2374 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2375 S: Maintained
2376 W: http://hackndev.com
2377 F: arch/arm/mach-pxa/palmz72.*
2378
2379 ARM/PLEB SUPPORT
2380 M: Peter Chubb <pleb@gelato.unsw.edu.au>
2381 S: Maintained
2382 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2383
2384 ARM/PT DIGITAL BOARD PORT
2385 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2386 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 S: Maintained
2388 W: http://www.armlinux.org.uk/
2389
2390 ARM/QUALCOMM SUPPORT
2391 M: Andy Gross <agross@kernel.org>
2392 M: Bjorn Andersson <bjorn.andersson@linaro.org>
2393 L: linux-arm-msm@vger.kernel.org
2394 S: Maintained
2395 T: git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2396 F: Documentation/devicetree/bindings/*/qcom*
2397 F: Documentation/devicetree/bindings/soc/qcom/
2398 F: arch/arm/boot/dts/qcom-*.dts
2399 F: arch/arm/boot/dts/qcom-*.dtsi
2400 F: arch/arm/mach-qcom/
2401 F: arch/arm64/boot/dts/qcom/
2402 F: drivers/*/*/qcom*
2403 F: drivers/*/*/qcom/
2404 F: drivers/*/pm8???-*
2405 F: drivers/*/qcom*
2406 F: drivers/*/qcom/
2407 F: drivers/bluetooth/btqcomsmd.c
2408 F: drivers/clocksource/timer-qcom.c
2409 F: drivers/cpuidle/cpuidle-qcom-spm.c
2410 F: drivers/extcon/extcon-qcom*
2411 F: drivers/i2c/busses/i2c-qcom-geni.c
2412 F: drivers/i2c/busses/i2c-qup.c
2413 F: drivers/iommu/msm*
2414 F: drivers/mfd/ssbi.c
2415 F: drivers/mmc/host/mmci_qcom*
2416 F: drivers/mmc/host/sdhci-msm.c
2417 F: drivers/pci/controller/dwc/pcie-qcom.c
2418 F: drivers/phy/qualcomm/
2419 F: drivers/power/*/msm*
2420 F: drivers/reset/reset-qcom-*
2421 F: drivers/scsi/ufs/ufs-qcom*
2422 F: drivers/spi/spi-geni-qcom.c
2423 F: drivers/spi/spi-qcom-qspi.c
2424 F: drivers/spi/spi-qup.c
2425 F: drivers/tty/serial/msm_serial.c
2426 F: drivers/usb/dwc3/dwc3-qcom.c
2427 F: include/dt-bindings/*/qcom*
2428 F: include/linux/*/qcom*
2429 F: include/linux/soc/qcom/
2430
2431 ARM/RADISYS ENP2611 MACHINE SUPPORT
2432 M: Lennert Buytenhek <kernel@wantstofly.org>
2433 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2434 S: Maintained
2435
2436 ARM/RDA MICRO ARCHITECTURE
2437 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2438 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2439 L: linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2440 S: Maintained
2441 F: Documentation/devicetree/bindings/arm/rda.yaml
2442 F: Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2443 F: Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2444 F: Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2445 F: Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2446 F: arch/arm/boot/dts/rda8810pl-*
2447 F: drivers/clocksource/timer-rda.c
2448 F: drivers/gpio/gpio-rda.c
2449 F: drivers/irqchip/irq-rda-intc.c
2450 F: drivers/tty/serial/rda-uart.c
2451
2452 ARM/REALTEK ARCHITECTURE
2453 M: Andreas Färber <afaerber@suse.de>
2454 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2455 L: linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2456 S: Maintained
2457 F: Documentation/devicetree/bindings/arm/realtek.yaml
2458 F: arch/arm/boot/dts/rtd*
2459 F: arch/arm/mach-realtek/
2460 F: arch/arm64/boot/dts/realtek/
2461
2462 ARM/RENESAS ARM64 ARCHITECTURE
2463 M: Geert Uytterhoeven <geert+renesas@glider.be>
2464 M: Magnus Damm <magnus.damm@gmail.com>
2465 L: linux-renesas-soc@vger.kernel.org
2466 S: Supported
2467 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2468 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2469 F: Documentation/devicetree/bindings/arm/renesas.yaml
2470 F: arch/arm64/boot/dts/renesas/
2471 F: drivers/soc/renesas/
2472 F: include/linux/soc/renesas/
2473
2474 ARM/RISCPC ARCHITECTURE
2475 M: Russell King <linux@armlinux.org.uk>
2476 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2477 S: Maintained
2478 W: http://www.armlinux.org.uk/
2479 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
2480 F: arch/arm/include/asm/hardware/ioc.h
2481 F: arch/arm/include/asm/hardware/iomd.h
2482 F: arch/arm/include/asm/hardware/memc.h
2483 F: arch/arm/mach-rpc/
2484 F: drivers/net/ethernet/8390/etherh.c
2485 F: drivers/net/ethernet/i825xx/ether1*
2486 F: drivers/net/ethernet/seeq/ether3*
2487 F: drivers/scsi/arm/
2488
2489 ARM/Rockchip SoC support
2490 M: Heiko Stuebner <heiko@sntech.de>
2491 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2492 L: linux-rockchip@lists.infradead.org
2493 S: Maintained
2494 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2495 F: Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2496 F: Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2497 F: Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2498 F: arch/arm/boot/dts/rk3*
2499 F: arch/arm/boot/dts/rv1108*
2500 F: arch/arm/mach-rockchip/
2501 F: drivers/*/*/*rockchip*
2502 F: drivers/*/*rockchip*
2503 F: drivers/clk/rockchip/
2504 F: drivers/i2c/busses/i2c-rk3x.c
2505 F: sound/soc/rockchip/
2506 N: rockchip
2507
2508 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2509 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2510 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2511 L: linux-samsung-soc@vger.kernel.org
2512 S: Maintained
2513 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
2514 F: Documentation/arm/samsung/
2515 F: Documentation/devicetree/bindings/arm/samsung/
2516 F: Documentation/devicetree/bindings/power/pd-samsung.yaml
2517 F: arch/arm/boot/dts/exynos*
2518 F: arch/arm/boot/dts/s3c*
2519 F: arch/arm/boot/dts/s5p*
2520 F: arch/arm/mach-exynos*/
2521 F: arch/arm/mach-s3c/
2522 F: arch/arm/mach-s5p*/
2523 F: arch/arm64/boot/dts/exynos/
2524 F: drivers/*/*/*s3c24*
2525 F: drivers/*/*s3c24*
2526 F: drivers/*/*s3c64xx*
2527 F: drivers/*/*s5pv210*
2528 F: drivers/clocksource/samsung_pwm_timer.c
2529 F: drivers/memory/samsung/
2530 F: drivers/pwm/pwm-samsung.c
2531 F: drivers/soc/samsung/
2532 F: drivers/tty/serial/samsung*
2533 F: include/clocksource/samsung_pwm.h
2534 F: include/linux/platform_data/*s3c*
2535 F: include/linux/serial_s3c.h
2536 F: include/linux/soc/samsung/
2537 N: exynos
2538 N: s3c2410
2539 N: s3c64xx
2540 N: s5pv210
2541
2542 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2543 M: Andrzej Hajda <a.hajda@samsung.com>
2544 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2545 L: linux-media@vger.kernel.org
2546 S: Maintained
2547 F: drivers/media/platform/s5p-g2d/
2548
2549 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2550 M: Marek Szyprowski <m.szyprowski@samsung.com>
2551 L: linux-samsung-soc@vger.kernel.org
2552 L: linux-media@vger.kernel.org
2553 S: Maintained
2554 F: Documentation/devicetree/bindings/media/s5p-cec.txt
2555 F: drivers/media/cec/platform/s5p/
2556
2557 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2558 M: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2559 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
2560 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
2561 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2562 L: linux-media@vger.kernel.org
2563 S: Maintained
2564 F: drivers/media/platform/s5p-jpeg/
2565
2566 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2567 M: Andrzej Hajda <a.hajda@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-mfc/
2572
2573 ARM/SHMOBILE ARM ARCHITECTURE
2574 M: Geert Uytterhoeven <geert+renesas@glider.be>
2575 M: Magnus Damm <magnus.damm@gmail.com>
2576 L: linux-renesas-soc@vger.kernel.org
2577 S: Supported
2578 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2579 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2580 F: Documentation/devicetree/bindings/arm/renesas.yaml
2581 F: arch/arm/boot/dts/emev2*
2582 F: arch/arm/boot/dts/gr-peach*
2583 F: arch/arm/boot/dts/iwg20d-q7*
2584 F: arch/arm/boot/dts/r7s*
2585 F: arch/arm/boot/dts/r8a*
2586 F: arch/arm/boot/dts/r9a*
2587 F: arch/arm/boot/dts/sh*
2588 F: arch/arm/configs/shmobile_defconfig
2589 F: arch/arm/include/debug/renesas-scif.S
2590 F: arch/arm/mach-shmobile/
2591 F: drivers/soc/renesas/
2592 F: include/linux/soc/renesas/
2593
2594 ARM/SOCFPGA ARCHITECTURE
2595 M: Dinh Nguyen <dinguyen@kernel.org>
2596 S: Maintained
2597 W: http://www.rocketboards.org
2598 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2599 F: arch/arm/boot/dts/socfpga*
2600 F: arch/arm/configs/socfpga_defconfig
2601 F: arch/arm/mach-socfpga/
2602 F: arch/arm64/boot/dts/altera/
2603 F: arch/arm64/boot/dts/intel/
2604
2605 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2606 M: Dinh Nguyen <dinguyen@kernel.org>
2607 S: Maintained
2608 F: drivers/clk/socfpga/
2609
2610 ARM/SOCFPGA EDAC SUPPORT
2611 M: Dinh Nguyen <dinguyen@kernel.org>
2612 S: Maintained
2613 F: drivers/edac/altera_edac.[ch]
2614
2615 ARM/SPREADTRUM SoC SUPPORT
2616 M: Orson Zhai <orsonzhai@gmail.com>
2617 M: Baolin Wang <baolin.wang7@gmail.com>
2618 M: Chunyan Zhang <zhang.lyra@gmail.com>
2619 S: Maintained
2620 F: arch/arm64/boot/dts/sprd
2621 N: sprd
2622 N: sc27xx
2623 N: sc2731
2624
2625 ARM/STI ARCHITECTURE
2626 M: Patrice Chotard <patrice.chotard@foss.st.com>
2627 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2628 S: Maintained
2629 W: http://www.stlinux.com
2630 F: Documentation/devicetree/bindings/i2c/i2c-st.txt
2631 F: arch/arm/boot/dts/sti*
2632 F: arch/arm/mach-sti/
2633 F: drivers/ata/ahci_st.c
2634 F: drivers/char/hw_random/st-rng.c
2635 F: drivers/clocksource/arm_global_timer.c
2636 F: drivers/clocksource/clksrc_st_lpc.c
2637 F: drivers/cpufreq/sti-cpufreq.c
2638 F: drivers/dma/st_fdma*
2639 F: drivers/i2c/busses/i2c-st.c
2640 F: drivers/media/platform/sti/c8sectpfe/
2641 F: drivers/media/rc/st_rc.c
2642 F: drivers/mmc/host/sdhci-st.c
2643 F: drivers/phy/st/phy-miphy28lp.c
2644 F: drivers/phy/st/phy-stih407-usb.c
2645 F: drivers/pinctrl/pinctrl-st.c
2646 F: drivers/remoteproc/st_remoteproc.c
2647 F: drivers/remoteproc/st_slim_rproc.c
2648 F: drivers/reset/sti/
2649 F: drivers/rtc/rtc-st-lpc.c
2650 F: drivers/tty/serial/st-asc.c
2651 F: drivers/usb/dwc3/dwc3-st.c
2652 F: drivers/usb/host/ehci-st.c
2653 F: drivers/usb/host/ohci-st.c
2654 F: drivers/watchdog/st_lpc_wdt.c
2655 F: include/linux/remoteproc/st_slim_rproc.h
2656
2657 ARM/STM32 ARCHITECTURE
2658 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
2659 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
2660 L: linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2661 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2662 S: Maintained
2663 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2664 F: arch/arm/boot/dts/stm32*
2665 F: arch/arm/mach-stm32/
2666 F: drivers/clocksource/armv7m_systick.c
2667 N: stm32
2668 N: stm
2669
2670 ARM/Synaptics SoC support
2671 M: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2672 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2673 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2674 S: Maintained
2675 F: arch/arm/boot/dts/berlin*
2676 F: arch/arm/mach-berlin/
2677 F: arch/arm64/boot/dts/synaptics/
2678
2679 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2680 M: Lennert Buytenhek <kernel@wantstofly.org>
2681 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2682 S: Maintained
2683
2684 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2685 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
2686 L: linux-tegra@vger.kernel.org
2687 L: linux-media@vger.kernel.org
2688 S: Maintained
2689 F: Documentation/devicetree/bindings/media/tegra-cec.txt
2690 F: drivers/media/cec/platform/tegra/
2691
2692 ARM/TETON BGA MACHINE SUPPORT
2693 M: "Mark F. Brown" <mark.brown314@gmail.com>
2694 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2695 S: Maintained
2696
2697 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2698 M: Santosh Shilimkar <ssantosh@kernel.org>
2699 L: linux-kernel@vger.kernel.org
2700 S: Maintained
2701 F: drivers/memory/*emif*
2702
2703 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2704 M: Santosh Shilimkar <ssantosh@kernel.org>
2705 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2706 S: Maintained
2707 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2708 F: arch/arm/boot/dts/keystone-*
2709 F: arch/arm/mach-keystone/
2710
2711 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2712 M: Santosh Shilimkar <ssantosh@kernel.org>
2713 L: linux-kernel@vger.kernel.org
2714 S: Maintained
2715 F: drivers/clk/keystone/
2716
2717 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2718 M: Santosh Shilimkar <ssantosh@kernel.org>
2719 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2720 L: linux-kernel@vger.kernel.org
2721 S: Maintained
2722 F: drivers/clocksource/timer-keystone.c
2723
2724 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2725 M: Santosh Shilimkar <ssantosh@kernel.org>
2726 L: linux-kernel@vger.kernel.org
2727 S: Maintained
2728 F: drivers/power/reset/keystone-reset.c
2729
2730 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2731 M: Nishanth Menon <nm@ti.com>
2732 M: Vignesh Raghavendra <vigneshr@ti.com>
2733 M: Tero Kristo <kristo@kernel.org>
2734 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2735 S: Supported
2736 F: Documentation/devicetree/bindings/arm/ti/k3.yaml
2737 F: arch/arm64/boot/dts/ti/Makefile
2738 F: arch/arm64/boot/dts/ti/k3-*
2739 F: include/dt-bindings/pinctrl/k3.h
2740
2741 ARM/THECUS N2100 MACHINE SUPPORT
2742 M: Lennert Buytenhek <kernel@wantstofly.org>
2743 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2744 S: Maintained
2745
2746 ARM/TOSA MACHINE SUPPORT
2747 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2748 M: Dirk Opfer <dirk@opfer-online.de>
2749 S: Maintained
2750
2751 ARM/TOSHIBA VISCONTI ARCHITECTURE
2752 M: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2753 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2754 S: Supported
2755 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2756 F: Documentation/devicetree/bindings/arm/toshiba.yaml
2757 F: Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2758 F: Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2759 F: Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2760 F: Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2761 F: Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2762 F: arch/arm64/boot/dts/toshiba/
2763 F: drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2764 F: drivers/gpio/gpio-visconti.c
2765 F: drivers/pci/controller/dwc/pcie-visconti.c
2766 F: drivers/pinctrl/visconti/
2767 F: drivers/watchdog/visconti_wdt.c
2768 N: visconti
2769
2770 ARM/UNIPHIER ARCHITECTURE
2771 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2772 M: Masami Hiramatsu <mhiramat@kernel.org>
2773 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2774 S: Maintained
2775 F: Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2776 F: Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2777 F: Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2778 F: arch/arm/boot/dts/uniphier*
2779 F: arch/arm/include/asm/hardware/cache-uniphier.h
2780 F: arch/arm/mach-uniphier/
2781 F: arch/arm/mm/cache-uniphier.c
2782 F: arch/arm64/boot/dts/socionext/uniphier*
2783 F: drivers/bus/uniphier-system-bus.c
2784 F: drivers/clk/uniphier/
2785 F: drivers/dma/uniphier-mdmac.c
2786 F: drivers/gpio/gpio-uniphier.c
2787 F: drivers/i2c/busses/i2c-uniphier*
2788 F: drivers/irqchip/irq-uniphier-aidet.c
2789 F: drivers/mmc/host/uniphier-sd.c
2790 F: drivers/pinctrl/uniphier/
2791 F: drivers/reset/reset-uniphier.c
2792 F: drivers/tty/serial/8250/8250_uniphier.c
2793 N: uniphier
2794
2795 ARM/VERSATILE EXPRESS PLATFORM
2796 M: Liviu Dudau <liviu.dudau@arm.com>
2797 M: Sudeep Holla <sudeep.holla@arm.com>
2798 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2799 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2800 S: Maintained
2801 F: */*/*/vexpress*
2802 F: */*/vexpress*
2803 F: arch/arm/boot/dts/vexpress*
2804 F: arch/arm/mach-vexpress/
2805 F: arch/arm64/boot/dts/arm/
2806 F: drivers/clk/versatile/clk-vexpress-osc.c
2807 F: drivers/clocksource/timer-versatile.c
2808 N: mps2
2809
2810 ARM/VFP SUPPORT
2811 M: Russell King <linux@armlinux.org.uk>
2812 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2813 S: Maintained
2814 W: http://www.armlinux.org.uk/
2815 F: arch/arm/vfp/
2816
2817 ARM/VOIPAC PXA270 SUPPORT
2818 M: Marek Vasut <marek.vasut@gmail.com>
2819 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2820 S: Maintained
2821 F: arch/arm/mach-pxa/include/mach/vpac270.h
2822 F: arch/arm/mach-pxa/vpac270.c
2823
2824 ARM/VT8500 ARM ARCHITECTURE
2825 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2826 S: Orphan
2827 F: Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2828 F: arch/arm/mach-vt8500/
2829 F: drivers/clocksource/timer-vt8500.c
2830 F: drivers/i2c/busses/i2c-wmt.c
2831 F: drivers/mmc/host/wmt-sdmmc.c
2832 F: drivers/pwm/pwm-vt8500.c
2833 F: drivers/rtc/rtc-vt8500.c
2834 F: drivers/tty/serial/vt8500_serial.c
2835 F: drivers/usb/host/ehci-platform.c
2836 F: drivers/usb/host/uhci-platform.c
2837 F: drivers/video/fbdev/vt8500lcdfb.*
2838 F: drivers/video/fbdev/wm8505fb*
2839 F: drivers/video/fbdev/wmt_ge_rops.*
2840
2841 ARM/ZIPIT Z2 SUPPORT
2842 M: Marek Vasut <marek.vasut@gmail.com>
2843 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2844 S: Maintained
2845 F: arch/arm/mach-pxa/include/mach/z2.h
2846 F: arch/arm/mach-pxa/z2.c
2847
2848 ARM/ZYNQ ARCHITECTURE
2849 M: Michal Simek <michal.simek@xilinx.com>
2850 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2851 S: Supported
2852 W: http://wiki.xilinx.com
2853 T: git https://github.com/Xilinx/linux-xlnx.git
2854 F: Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2855 F: Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2856 F: Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2857 F: arch/arm/mach-zynq/
2858 F: drivers/clocksource/timer-cadence-ttc.c
2859 F: drivers/cpuidle/cpuidle-zynq.c
2860 F: drivers/edac/synopsys_edac.c
2861 F: drivers/i2c/busses/i2c-cadence.c
2862 F: drivers/i2c/busses/i2c-xiic.c
2863 F: drivers/mmc/host/sdhci-of-arasan.c
2864 N: zynq
2865 N: xilinx
2866
2867 ARM64 PORT (AARCH64 ARCHITECTURE)
2868 M: Catalin Marinas <catalin.marinas@arm.com>
2869 M: Will Deacon <will@kernel.org>
2870 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2871 S: Maintained
2872 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2873 F: Documentation/arm64/
2874 F: arch/arm64/
2875 F: tools/testing/selftests/arm64/
2876 X: arch/arm64/boot/dts/
2877
2878 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2879 M: George McCollister <george.mccollister@gmail.com>
2880 L: netdev@vger.kernel.org
2881 S: Maintained
2882 F: Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2883 F: drivers/net/dsa/xrs700x/*
2884 F: net/dsa/tag_xrs700x.c
2885
2886 AS3645A LED FLASH CONTROLLER DRIVER
2887 M: Sakari Ailus <sakari.ailus@iki.fi>
2888 L: linux-leds@vger.kernel.org
2889 S: Maintained
2890 F: drivers/leds/flash/leds-as3645a.c
2891
2892 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2893 M: Tianshu Qiu <tian.shu.qiu@intel.com>
2894 L: linux-media@vger.kernel.org
2895 S: Maintained
2896 T: git git://linuxtv.org/media_tree.git
2897 F: Documentation/devicetree/bindings/media/i2c/ak7375.txt
2898 F: drivers/media/i2c/ak7375.c
2899
2900 ASAHI KASEI AK8974 DRIVER
2901 M: Linus Walleij <linus.walleij@linaro.org>
2902 L: linux-iio@vger.kernel.org
2903 S: Supported
2904 W: http://www.akm.com/
2905 F: drivers/iio/magnetometer/ak8974.c
2906
2907 ASC7621 HARDWARE MONITOR DRIVER
2908 M: George Joseph <george.joseph@fairview5.com>
2909 L: linux-hwmon@vger.kernel.org
2910 S: Maintained
2911 F: Documentation/hwmon/asc7621.rst
2912 F: drivers/hwmon/asc7621.c
2913
2914 ASPEED PINCTRL DRIVERS
2915 M: Andrew Jeffery <andrew@aj.id.au>
2916 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2917 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2918 L: linux-gpio@vger.kernel.org
2919 S: Maintained
2920 F: Documentation/devicetree/bindings/pinctrl/aspeed,*
2921 F: drivers/pinctrl/aspeed/
2922
2923 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2924 M: Eddie James <eajames@linux.ibm.com>
2925 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2926 S: Maintained
2927 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2928 F: drivers/irqchip/irq-aspeed-scu-ic.c
2929 F: include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2930
2931 ASPEED SD/MMC DRIVER
2932 M: Andrew Jeffery <andrew@aj.id.au>
2933 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2934 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2935 L: linux-mmc@vger.kernel.org
2936 S: Maintained
2937 F: Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2938 F: drivers/mmc/host/sdhci-of-aspeed*
2939
2940 ASPEED VIDEO ENGINE DRIVER
2941 M: Eddie James <eajames@linux.ibm.com>
2942 L: linux-media@vger.kernel.org
2943 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2944 S: Maintained
2945 F: Documentation/devicetree/bindings/media/aspeed-video.txt
2946 F: drivers/media/platform/aspeed-video.c
2947
2948 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2949 M: Corentin Chary <corentin.chary@gmail.com>
2950 L: acpi4asus-user@lists.sourceforge.net
2951 L: platform-driver-x86@vger.kernel.org
2952 S: Maintained
2953 W: http://acpi4asus.sf.net
2954 F: drivers/platform/x86/asus*.c
2955 F: drivers/platform/x86/eeepc*.c
2956
2957 ASUS WIRELESS RADIO CONTROL DRIVER
2958 M: João Paulo Rechi Vita <jprvita@gmail.com>
2959 L: platform-driver-x86@vger.kernel.org
2960 S: Maintained
2961 F: drivers/platform/x86/asus-wireless.c
2962
2963 ASYMMETRIC KEYS
2964 M: David Howells <dhowells@redhat.com>
2965 L: keyrings@vger.kernel.org
2966 S: Maintained
2967 F: Documentation/crypto/asymmetric-keys.rst
2968 F: crypto/asymmetric_keys/
2969 F: include/crypto/pkcs7.h
2970 F: include/crypto/public_key.h
2971 F: include/linux/verification.h
2972
2973 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2974 R: Dan Williams <dan.j.williams@intel.com>
2975 S: Odd fixes
2976 W: http://sourceforge.net/projects/xscaleiop
2977 F: Documentation/crypto/async-tx-api.rst
2978 F: crypto/async_tx/
2979 F: include/linux/async_tx.h
2980
2981 AT24 EEPROM DRIVER
2982 M: Bartosz Golaszewski <brgl@bgdev.pl>
2983 L: linux-i2c@vger.kernel.org
2984 S: Maintained
2985 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2986 F: Documentation/devicetree/bindings/eeprom/at24.yaml
2987 F: drivers/misc/eeprom/at24.c
2988
2989 ATA OVER ETHERNET (AOE) DRIVER
2990 M: "Justin Sanders" <justin@coraid.com>
2991 S: Supported
2992 W: http://www.openaoe.org/
2993 F: Documentation/admin-guide/aoe/
2994 F: drivers/block/aoe/
2995
2996 ATC260X PMIC MFD DRIVER
2997 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2998 M: Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2999 L: linux-actions@lists.infradead.org
3000 S: Maintained
3001 F: Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3002 F: drivers/input/misc/atc260x-onkey.c
3003 F: drivers/mfd/atc260*
3004 F: drivers/power/reset/atc260x-poweroff.c
3005 F: drivers/regulator/atc260x-regulator.c
3006 F: include/linux/mfd/atc260x/*
3007
3008 ATHEROS 71XX/9XXX GPIO DRIVER
3009 M: Alban Bedel <albeu@free.fr>
3010 S: Maintained
3011 W: https://github.com/AlbanBedel/linux
3012 T: git git://github.com/AlbanBedel/linux
3013 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3014 F: drivers/gpio/gpio-ath79.c
3015
3016 ATHEROS 71XX/9XXX USB PHY DRIVER
3017 M: Alban Bedel <albeu@free.fr>
3018 S: Maintained
3019 W: https://github.com/AlbanBedel/linux
3020 T: git git://github.com/AlbanBedel/linux
3021 F: Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3022 F: drivers/phy/qualcomm/phy-ath79-usb.c
3023
3024 ATHEROS ATH GENERIC UTILITIES
3025 M: Kalle Valo <kvalo@codeaurora.org>
3026 L: linux-wireless@vger.kernel.org
3027 S: Supported
3028 F: drivers/net/wireless/ath/*
3029
3030 ATHEROS ATH5K WIRELESS DRIVER
3031 M: Jiri Slaby <jirislaby@kernel.org>
3032 M: Nick Kossifidis <mickflemm@gmail.com>
3033 M: Luis Chamberlain <mcgrof@kernel.org>
3034 L: linux-wireless@vger.kernel.org
3035 S: Maintained
3036 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3037 F: drivers/net/wireless/ath/ath5k/
3038
3039 ATHEROS ATH6KL WIRELESS DRIVER
3040 M: Kalle Valo <kvalo@codeaurora.org>
3041 L: linux-wireless@vger.kernel.org
3042 S: Supported
3043 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3044 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3045 F: drivers/net/wireless/ath/ath6kl/
3046
3047 ATI_REMOTE2 DRIVER
3048 M: Ville Syrjala <syrjala@sci.fi>
3049 S: Maintained
3050 F: drivers/input/misc/ati_remote2.c
3051
3052 ATK0110 HWMON DRIVER
3053 M: Luca Tettamanti <kronos.it@gmail.com>
3054 L: linux-hwmon@vger.kernel.org
3055 S: Maintained
3056 F: drivers/hwmon/asus_atk0110.c
3057
3058 ATLX ETHERNET DRIVERS
3059 M: Chris Snook <chris.snook@gmail.com>
3060 L: netdev@vger.kernel.org
3061 S: Maintained
3062 W: http://sourceforge.net/projects/atl1
3063 W: http://atl1.sourceforge.net
3064 F: drivers/net/ethernet/atheros/
3065
3066 ATM
3067 M: Chas Williams <3chas3@gmail.com>
3068 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3069 L: netdev@vger.kernel.org
3070 S: Maintained
3071 W: http://linux-atm.sourceforge.net
3072 F: drivers/atm/
3073 F: include/linux/atm*
3074 F: include/uapi/linux/atm*
3075
3076 ATMEL MACB ETHERNET DRIVER
3077 M: Nicolas Ferre <nicolas.ferre@microchip.com>
3078 M: Claudiu Beznea <claudiu.beznea@microchip.com>
3079 S: Supported
3080 F: drivers/net/ethernet/cadence/
3081
3082 ATMEL MAXTOUCH DRIVER
3083 M: Nick Dyer <nick@shmanahar.org>
3084 S: Maintained
3085 T: git git://github.com/ndyer/linux.git
3086 F: Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3087 F: drivers/input/touchscreen/atmel_mxt_ts.c
3088
3089 ATMEL WIRELESS DRIVER
3090 M: Simon Kelley <simon@thekelleys.org.uk>
3091 L: linux-wireless@vger.kernel.org
3092 S: Maintained
3093 W: http://www.thekelleys.org.uk/atmel
3094 W: http://atmelwlandriver.sourceforge.net/
3095 F: drivers/net/wireless/atmel/atmel*
3096
3097 ATOMIC INFRASTRUCTURE
3098 M: Will Deacon <will@kernel.org>
3099 M: Peter Zijlstra <peterz@infradead.org>
3100 R: Boqun Feng <boqun.feng@gmail.com>
3101 L: linux-kernel@vger.kernel.org
3102 S: Maintained
3103 F: arch/*/include/asm/atomic*.h
3104 F: include/*/atomic*.h
3105 F: include/linux/refcount.h
3106 F: Documentation/atomic_*.txt
3107 F: scripts/atomic/
3108
3109 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3110 M: Bradley Grove <linuxdrivers@attotech.com>
3111 L: linux-scsi@vger.kernel.org
3112 S: Supported
3113 W: http://www.attotech.com
3114 F: drivers/scsi/esas2r
3115
3116 ATUSB IEEE 802.15.4 RADIO DRIVER
3117 M: Stefan Schmidt <stefan@datenfreihafen.org>
3118 L: linux-wpan@vger.kernel.org
3119 S: Maintained
3120 F: drivers/net/ieee802154/at86rf230.h
3121 F: drivers/net/ieee802154/atusb.c
3122 F: drivers/net/ieee802154/atusb.h
3123
3124 AUDIT SUBSYSTEM
3125 M: Paul Moore <paul@paul-moore.com>
3126 M: Eric Paris <eparis@redhat.com>
3127 L: linux-audit@redhat.com (moderated for non-subscribers)
3128 S: Supported
3129 W: https://github.com/linux-audit
3130 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3131 F: include/asm-generic/audit_*.h
3132 F: include/linux/audit.h
3133 F: include/uapi/linux/audit.h
3134 F: kernel/audit*
3135 F: lib/*audit.c
3136
3137 AUFS (advanced multi layered unification filesystem) FILESYSTEM
3138 M: "J. R. Okajima" <hooanon05g@gmail.com>
3139 L: aufs-users@lists.sourceforge.net (members only)
3140 L: linux-unionfs@vger.kernel.org
3141 S: Supported
3142 W: http://aufs.sourceforge.net
3143 T: git://github.com/sfjro/aufs4-linux.git
3144 F: Documentation/ABI/testing/debugfs-aufs
3145 F: Documentation/ABI/testing/sysfs-aufs
3146 F: Documentation/filesystems/aufs/
3147 F: fs/aufs/
3148 F: include/uapi/linux/aufs_type.h
3149
3150 AUXILIARY DISPLAY DRIVERS
3151 M: Miguel Ojeda <ojeda@kernel.org>
3152 S: Maintained
3153 F: drivers/auxdisplay/
3154 F: include/linux/cfag12864b.h
3155
3156 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3157 M: Andreas Klinger <ak@it-klinger.de>
3158 L: linux-iio@vger.kernel.org
3159 S: Maintained
3160 F: Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3161 F: drivers/iio/adc/hx711.c
3162
3163 AX.25 NETWORK LAYER
3164 M: Ralf Baechle <ralf@linux-mips.org>
3165 L: linux-hams@vger.kernel.org
3166 S: Maintained
3167 W: http://www.linux-ax25.org/
3168 F: include/net/ax25.h
3169 F: include/uapi/linux/ax25.h
3170 F: net/ax25/
3171
3172 AXENTIA ARM DEVICES
3173 M: Peter Rosin <peda@axentia.se>
3174 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3175 S: Maintained
3176 F: arch/arm/boot/dts/at91-linea.dtsi
3177 F: arch/arm/boot/dts/at91-natte.dtsi
3178 F: arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3179 F: arch/arm/boot/dts/at91-tse850-3.dts
3180
3181 AXENTIA ASOC DRIVERS
3182 M: Peter Rosin <peda@axentia.se>
3183 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3184 S: Maintained
3185 F: Documentation/devicetree/bindings/sound/axentia,*
3186 F: sound/soc/atmel/tse850-pcm5142.c
3187
3188 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3189 M: Nuno Sá <nuno.sa@analog.com>
3190 L: linux-hwmon@vger.kernel.org
3191 S: Supported
3192 W: http://ez.analog.com/community/linux-device-drivers
3193 F: Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3194 F: drivers/hwmon/axi-fan-control.c
3195
3196 AXXIA I2C CONTROLLER
3197 M: Krzysztof Adamski <krzysztof.adamski@nokia.com>
3198 L: linux-i2c@vger.kernel.org
3199 S: Maintained
3200 F: Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3201 F: drivers/i2c/busses/i2c-axxia.c
3202
3203 AZ6007 DVB DRIVER
3204 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3205 L: linux-media@vger.kernel.org
3206 S: Maintained
3207 W: https://linuxtv.org
3208 T: git git://linuxtv.org/media_tree.git
3209 F: drivers/media/usb/dvb-usb-v2/az6007.c
3210
3211 AZTECH FM RADIO RECEIVER DRIVER
3212 M: Hans Verkuil <hverkuil@xs4all.nl>
3213 L: linux-media@vger.kernel.org
3214 S: Maintained
3215 W: https://linuxtv.org
3216 T: git git://linuxtv.org/media_tree.git
3217 F: drivers/media/radio/radio-aztech*
3218
3219 B43 WIRELESS DRIVER
3220 L: linux-wireless@vger.kernel.org
3221 L: b43-dev@lists.infradead.org
3222 S: Odd Fixes
3223 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3224 F: drivers/net/wireless/broadcom/b43/
3225
3226 B43LEGACY WIRELESS DRIVER
3227 M: Larry Finger <Larry.Finger@lwfinger.net>
3228 L: linux-wireless@vger.kernel.org
3229 L: b43-dev@lists.infradead.org
3230 S: Maintained
3231 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3232 F: drivers/net/wireless/broadcom/b43legacy/
3233
3234 BACKLIGHT CLASS/SUBSYSTEM
3235 M: Lee Jones <lee.jones@linaro.org>
3236 M: Daniel Thompson <daniel.thompson@linaro.org>
3237 M: Jingoo Han <jingoohan1@gmail.com>
3238 L: dri-devel@lists.freedesktop.org
3239 S: Maintained
3240 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3241 F: Documentation/ABI/stable/sysfs-class-backlight
3242 F: Documentation/ABI/testing/sysfs-class-backlight
3243 F: Documentation/devicetree/bindings/leds/backlight
3244 F: drivers/video/backlight/
3245 F: include/linux/backlight.h
3246 F: include/linux/pwm_backlight.h
3247
3248 BATMAN ADVANCED
3249 M: Marek Lindner <mareklindner@neomailbox.ch>
3250 M: Simon Wunderlich <sw@simonwunderlich.de>
3251 M: Antonio Quartulli <a@unstable.cc>
3252 M: Sven Eckelmann <sven@narfation.org>
3253 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3254 S: Maintained
3255 W: https://www.open-mesh.org/
3256 Q: https://patchwork.open-mesh.org/project/batman/list/
3257 B: https://www.open-mesh.org/projects/batman-adv/issues
3258 C: ircs://irc.hackint.org/batadv
3259 T: git https://git.open-mesh.org/linux-merge.git
3260 F: Documentation/networking/batman-adv.rst
3261 F: include/uapi/linux/batadv_packet.h
3262 F: include/uapi/linux/batman_adv.h
3263 F: net/batman-adv/
3264
3265 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3266 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
3267 L: linux-hams@vger.kernel.org
3268 S: Maintained
3269 W: http://www.baycom.org/~tom/ham/ham.html
3270 F: drivers/net/hamradio/baycom*
3271
3272 BCACHE (BLOCK LAYER CACHE)
3273 M: Coly Li <colyli@suse.de>
3274 M: Kent Overstreet <kent.overstreet@gmail.com>
3275 L: linux-bcache@vger.kernel.org
3276 S: Maintained
3277 W: http://bcache.evilpiepirate.org
3278 C: irc://irc.oftc.net/bcache
3279 F: drivers/md/bcache/
3280
3281 BDISP ST MEDIA DRIVER
3282 M: Fabien Dessenne <fabien.dessenne@foss.st.com>
3283 L: linux-media@vger.kernel.org
3284 S: Supported
3285 W: https://linuxtv.org
3286 T: git git://linuxtv.org/media_tree.git
3287 F: drivers/media/platform/sti/bdisp
3288
3289 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3290 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
3291 L: netdev@vger.kernel.org
3292 S: Maintained
3293 F: drivers/net/ethernet/ec_bhf.c
3294
3295 BEFS FILE SYSTEM
3296 M: Luis de Bethencourt <luisbg@kernel.org>
3297 M: Salah Triki <salah.triki@gmail.com>
3298 S: Maintained
3299 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3300 F: Documentation/filesystems/befs.rst
3301 F: fs/befs/
3302
3303 BFQ I/O SCHEDULER
3304 M: Paolo Valente <paolo.valente@linaro.org>
3305 M: Jens Axboe <axboe@kernel.dk>
3306 L: linux-block@vger.kernel.org
3307 S: Maintained
3308 F: Documentation/block/bfq-iosched.rst
3309 F: block/bfq-*
3310
3311 BFS FILE SYSTEM
3312 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3313 S: Maintained
3314 F: Documentation/filesystems/bfs.rst
3315 F: fs/bfs/
3316 F: include/uapi/linux/bfs_fs.h
3317
3318 BITMAP API
3319 M: Yury Norov <yury.norov@gmail.com>
3320 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3321 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
3322 S: Maintained
3323 F: include/asm-generic/bitops/find.h
3324 F: include/linux/bitmap.h
3325 F: lib/bitmap.c
3326 F: lib/find_bit.c
3327 F: lib/find_bit_benchmark.c
3328 F: lib/test_bitmap.c
3329 F: tools/include/asm-generic/bitops/find.h
3330 F: tools/include/linux/bitmap.h
3331 F: tools/lib/bitmap.c
3332 F: tools/lib/find_bit.c
3333
3334 BLINKM RGB LED DRIVER
3335 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
3336 S: Maintained
3337 F: drivers/leds/leds-blinkm.c
3338
3339 BLOCK LAYER
3340 M: Jens Axboe <axboe@kernel.dk>
3341 L: linux-block@vger.kernel.org
3342 S: Maintained
3343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3344 F: block/
3345 F: drivers/block/
3346 F: include/linux/blk*
3347 F: kernel/trace/blktrace.c
3348 F: lib/sbitmap.c
3349
3350 BLOCK2MTD DRIVER
3351 M: Joern Engel <joern@lazybastard.org>
3352 L: linux-mtd@lists.infradead.org
3353 S: Maintained
3354 F: drivers/mtd/devices/block2mtd.c
3355
3356 BLUETOOTH DRIVERS
3357 M: Marcel Holtmann <marcel@holtmann.org>
3358 M: Johan Hedberg <johan.hedberg@gmail.com>
3359 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3360 L: linux-bluetooth@vger.kernel.org
3361 S: Supported
3362 W: http://www.bluez.org/
3363 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3364 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3365 F: drivers/bluetooth/
3366
3367 BLUETOOTH SUBSYSTEM
3368 M: Marcel Holtmann <marcel@holtmann.org>
3369 M: Johan Hedberg <johan.hedberg@gmail.com>
3370 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3371 L: linux-bluetooth@vger.kernel.org
3372 S: Supported
3373 W: http://www.bluez.org/
3374 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3375 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3376 F: include/net/bluetooth/
3377 F: net/bluetooth/
3378
3379 BONDING DRIVER
3380 M: Jay Vosburgh <j.vosburgh@gmail.com>
3381 M: Veaceslav Falico <vfalico@gmail.com>
3382 M: Andy Gospodarek <andy@greyhouse.net>
3383 L: netdev@vger.kernel.org
3384 S: Supported
3385 W: http://sourceforge.net/projects/bonding/
3386 F: drivers/net/bonding/
3387 F: include/net/bonding.h
3388 F: include/uapi/linux/if_bonding.h
3389
3390 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3391 M: Dan Robertson <dan@dlrobertson.com>
3392 L: linux-iio@vger.kernel.org
3393 S: Maintained
3394 F: Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3395 F: drivers/iio/accel/bma400*
3396
3397 BPF (Safe dynamic programs and tools)
3398 M: Alexei Starovoitov <ast@kernel.org>
3399 M: Daniel Borkmann <daniel@iogearbox.net>
3400 M: Andrii Nakryiko <andrii@kernel.org>
3401 R: Martin KaFai Lau <kafai@fb.com>
3402 R: Song Liu <songliubraving@fb.com>
3403 R: Yonghong Song <yhs@fb.com>
3404 R: John Fastabend <john.fastabend@gmail.com>
3405 R: KP Singh <kpsingh@kernel.org>
3406 L: netdev@vger.kernel.org
3407 L: bpf@vger.kernel.org
3408 S: Supported
3409 W: https://bpf.io/
3410 Q: https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3411 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3412 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3413 F: Documentation/bpf/
3414 F: Documentation/networking/filter.rst
3415 F: Documentation/userspace-api/ebpf/
3416 F: arch/*/net/*
3417 F: include/linux/bpf*
3418 F: include/linux/btf*
3419 F: include/linux/filter.h
3420 F: include/trace/events/xdp.h
3421 F: include/uapi/linux/bpf*
3422 F: include/uapi/linux/btf*
3423 F: include/uapi/linux/filter.h
3424 F: kernel/bpf/
3425 F: kernel/trace/bpf_trace.c
3426 F: lib/test_bpf.c
3427 F: net/bpf/
3428 F: net/core/filter.c
3429 F: net/sched/act_bpf.c
3430 F: net/sched/cls_bpf.c
3431 F: samples/bpf/
3432 F: scripts/bpf_doc.py
3433 F: scripts/pahole-flags.sh
3434 F: scripts/pahole-version.sh
3435 F: tools/bpf/
3436 F: tools/lib/bpf/
3437 F: tools/testing/selftests/bpf/
3438 N: bpf
3439 K: bpf
3440
3441 BPF JIT for ARM
3442 M: Shubham Bansal <illusionist.neo@gmail.com>
3443 L: netdev@vger.kernel.org
3444 L: bpf@vger.kernel.org
3445 S: Maintained
3446 F: arch/arm/net/
3447
3448 BPF JIT for ARM64
3449 M: Daniel Borkmann <daniel@iogearbox.net>
3450 M: Alexei Starovoitov <ast@kernel.org>
3451 M: Zi Shen Lim <zlim.lnx@gmail.com>
3452 L: netdev@vger.kernel.org
3453 L: bpf@vger.kernel.org
3454 S: Supported
3455 F: arch/arm64/net/
3456
3457 BPF JIT for MIPS (32-BIT AND 64-BIT)
3458 M: Paul Burton <paulburton@kernel.org>
3459 L: netdev@vger.kernel.org
3460 L: bpf@vger.kernel.org
3461 S: Maintained
3462 F: arch/mips/net/
3463
3464 BPF JIT for NFP NICs
3465 M: Jakub Kicinski <kuba@kernel.org>
3466 L: netdev@vger.kernel.org
3467 L: bpf@vger.kernel.org
3468 S: Supported
3469 F: drivers/net/ethernet/netronome/nfp/bpf/
3470
3471 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3472 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3473 L: netdev@vger.kernel.org
3474 L: bpf@vger.kernel.org
3475 S: Maintained
3476 F: arch/powerpc/net/
3477
3478 BPF JIT for RISC-V (32-bit)
3479 M: Luke Nelson <luke.r.nels@gmail.com>
3480 M: Xi Wang <xi.wang@gmail.com>
3481 L: netdev@vger.kernel.org
3482 L: bpf@vger.kernel.org
3483 S: Maintained
3484 F: arch/riscv/net/
3485 X: arch/riscv/net/bpf_jit_comp64.c
3486
3487 BPF JIT for RISC-V (64-bit)
3488 M: Björn Töpel <bjorn@kernel.org>
3489 L: netdev@vger.kernel.org
3490 L: bpf@vger.kernel.org
3491 S: Maintained
3492 F: arch/riscv/net/
3493 X: arch/riscv/net/bpf_jit_comp32.c
3494
3495 BPF JIT for S390
3496 M: Ilya Leoshkevich <iii@linux.ibm.com>
3497 M: Heiko Carstens <hca@linux.ibm.com>
3498 M: Vasily Gorbik <gor@linux.ibm.com>
3499 L: netdev@vger.kernel.org
3500 L: bpf@vger.kernel.org
3501 S: Maintained
3502 F: arch/s390/net/
3503 X: arch/s390/net/pnet.c
3504
3505 BPF JIT for SPARC (32-BIT AND 64-BIT)
3506 M: David S. Miller <davem@davemloft.net>
3507 L: netdev@vger.kernel.org
3508 L: bpf@vger.kernel.org
3509 S: Maintained
3510 F: arch/sparc/net/
3511
3512 BPF JIT for X86 32-BIT
3513 M: Wang YanQing <udknight@gmail.com>
3514 L: netdev@vger.kernel.org
3515 L: bpf@vger.kernel.org
3516 S: Maintained
3517 F: arch/x86/net/bpf_jit_comp32.c
3518
3519 BPF JIT for X86 64-BIT
3520 M: Alexei Starovoitov <ast@kernel.org>
3521 M: Daniel Borkmann <daniel@iogearbox.net>
3522 L: netdev@vger.kernel.org
3523 L: bpf@vger.kernel.org
3524 S: Supported
3525 F: arch/x86/net/
3526 X: arch/x86/net/bpf_jit_comp32.c
3527
3528 BPF LSM (Security Audit and Enforcement using BPF)
3529 M: KP Singh <kpsingh@kernel.org>
3530 R: Florent Revest <revest@chromium.org>
3531 R: Brendan Jackman <jackmanb@chromium.org>
3532 L: bpf@vger.kernel.org
3533 S: Maintained
3534 F: Documentation/bpf/bpf_lsm.rst
3535 F: include/linux/bpf_lsm.h
3536 F: kernel/bpf/bpf_lsm.c
3537 F: security/bpf/
3538
3539 BROADCOM B44 10/100 ETHERNET DRIVER
3540 M: Michael Chan <michael.chan@broadcom.com>
3541 L: netdev@vger.kernel.org
3542 S: Supported
3543 F: drivers/net/ethernet/broadcom/b44.*
3544
3545 BROADCOM B53 ETHERNET SWITCH DRIVER
3546 M: Florian Fainelli <f.fainelli@gmail.com>
3547 L: netdev@vger.kernel.org
3548 L: openwrt-devel@lists.openwrt.org (subscribers-only)
3549 S: Supported
3550 F: Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3551 F: drivers/net/dsa/b53/*
3552 F: include/linux/dsa/brcm.h
3553 F: include/linux/platform_data/b53.h
3554
3555 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3556 M: Nicolas Saenz Julienne <nsaenz@kernel.org>
3557 L: bcm-kernel-feedback-list@broadcom.com
3558 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3559 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3560 S: Maintained
3561 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3562 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3563 F: drivers/pci/controller/pcie-brcmstb.c
3564 F: drivers/staging/vc04_services
3565 N: bcm2711
3566 N: bcm283*
3567
3568 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3569 M: Florian Fainelli <f.fainelli@gmail.com>
3570 M: Ray Jui <rjui@broadcom.com>
3571 M: Scott Branden <sbranden@broadcom.com>
3572 M: bcm-kernel-feedback-list@broadcom.com
3573 S: Maintained
3574 T: git git://github.com/broadcom/mach-bcm
3575 F: arch/arm/mach-bcm/
3576 N: bcm281*
3577 N: bcm113*
3578 N: bcm216*
3579 N: kona
3580
3581 BROADCOM BCM47XX MIPS ARCHITECTURE
3582 M: Hauke Mehrtens <hauke@hauke-m.de>
3583 M: Rafał Miłecki <zajec5@gmail.com>
3584 L: linux-mips@vger.kernel.org
3585 S: Maintained
3586 F: Documentation/devicetree/bindings/mips/brcm/
3587 F: arch/mips/bcm47xx/*
3588 F: arch/mips/include/asm/mach-bcm47xx/*
3589
3590 BROADCOM BCM4908 ETHERNET DRIVER
3591 M: Rafał Miłecki <rafal@milecki.pl>
3592 M: bcm-kernel-feedback-list@broadcom.com
3593 L: netdev@vger.kernel.org
3594 S: Maintained
3595 F: Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3596 F: drivers/net/ethernet/broadcom/bcm4908_enet.*
3597 F: drivers/net/ethernet/broadcom/unimac.h
3598
3599 BROADCOM BCM5301X ARM ARCHITECTURE
3600 M: Hauke Mehrtens <hauke@hauke-m.de>
3601 M: Rafał Miłecki <zajec5@gmail.com>
3602 M: bcm-kernel-feedback-list@broadcom.com
3603 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3604 S: Maintained
3605 F: arch/arm/boot/dts/bcm470*
3606 F: arch/arm/boot/dts/bcm5301*
3607 F: arch/arm/boot/dts/bcm953012*
3608 F: arch/arm/mach-bcm/bcm_5301x.c
3609
3610 BROADCOM BCM53573 ARM ARCHITECTURE
3611 M: Rafał Miłecki <rafal@milecki.pl>
3612 L: bcm-kernel-feedback-list@broadcom.com
3613 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3614 S: Maintained
3615 F: arch/arm/boot/dts/bcm47189*
3616 F: arch/arm/boot/dts/bcm53573*
3617
3618 BROADCOM BCM63XX ARM ARCHITECTURE
3619 M: Florian Fainelli <f.fainelli@gmail.com>
3620 M: bcm-kernel-feedback-list@broadcom.com
3621 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3622 S: Maintained
3623 T: git git://github.com/broadcom/stblinux.git
3624 N: bcm63xx
3625
3626 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3627 M: Kevin Cernekee <cernekee@gmail.com>
3628 L: linux-usb@vger.kernel.org
3629 S: Maintained
3630 F: drivers/usb/gadget/udc/bcm63xx_udc.*
3631
3632 BROADCOM BCM7XXX ARM ARCHITECTURE
3633 M: Florian Fainelli <f.fainelli@gmail.com>
3634 M: bcm-kernel-feedback-list@broadcom.com
3635 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3636 S: Maintained
3637 T: git git://github.com/broadcom/stblinux.git
3638 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3639 F: arch/arm/boot/dts/bcm7*.dts*
3640 F: arch/arm/include/asm/hardware/cache-b15-rac.h
3641 F: arch/arm/mach-bcm/*brcmstb*
3642 F: arch/arm/mm/cache-b15-rac.c
3643 F: drivers/bus/brcmstb_gisb.c
3644 F: drivers/pci/controller/pcie-brcmstb.c
3645 N: brcmstb
3646
3647 BROADCOM BDC DRIVER
3648 M: Al Cooper <alcooperx@gmail.com>
3649 L: linux-usb@vger.kernel.org
3650 L: bcm-kernel-feedback-list@broadcom.com
3651 S: Maintained
3652 F: Documentation/devicetree/bindings/usb/brcm,bdc.txt
3653 F: drivers/usb/gadget/udc/bdc/
3654
3655 BROADCOM BMIPS CPUFREQ DRIVER
3656 M: Markus Mayer <mmayer@broadcom.com>
3657 M: bcm-kernel-feedback-list@broadcom.com
3658 L: linux-pm@vger.kernel.org
3659 S: Maintained
3660 F: drivers/cpufreq/bmips-cpufreq.c
3661
3662 BROADCOM BMIPS MIPS ARCHITECTURE
3663 M: Florian Fainelli <f.fainelli@gmail.com>
3664 L: bcm-kernel-feedback-list@broadcom.com
3665 L: linux-mips@vger.kernel.org
3666 S: Maintained
3667 T: git git://github.com/broadcom/stblinux.git
3668 F: arch/mips/bmips/*
3669 F: arch/mips/boot/dts/brcm/bcm*.dts*
3670 F: arch/mips/include/asm/mach-bmips/*
3671 F: arch/mips/kernel/*bmips*
3672 F: drivers/soc/bcm/bcm63xx
3673 F: drivers/irqchip/irq-bcm63*
3674 F: drivers/irqchip/irq-bcm7*
3675 F: drivers/irqchip/irq-brcmstb*
3676 F: include/linux/bcm963xx_nvram.h
3677 F: include/linux/bcm963xx_tag.h
3678
3679 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3680 M: Rasesh Mody <rmody@marvell.com>
3681 M: GR-Linux-NIC-Dev@marvell.com
3682 L: netdev@vger.kernel.org
3683 S: Supported
3684 F: drivers/net/ethernet/broadcom/bnx2.*
3685 F: drivers/net/ethernet/broadcom/bnx2_*
3686
3687 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3688 M: Saurav Kashyap <skashyap@marvell.com>
3689 M: Javed Hasan <jhasan@marvell.com>
3690 M: GR-QLogic-Storage-Upstream@marvell.com
3691 L: linux-scsi@vger.kernel.org
3692 S: Supported
3693 F: drivers/scsi/bnx2fc/
3694
3695 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3696 M: Nilesh Javali <njavali@marvell.com>
3697 M: Manish Rangankar <mrangankar@marvell.com>
3698 M: GR-QLogic-Storage-Upstream@marvell.com
3699 L: linux-scsi@vger.kernel.org
3700 S: Supported
3701 F: drivers/scsi/bnx2i/
3702
3703 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3704 M: Ariel Elior <aelior@marvell.com>
3705 M: Sudarsana Kalluru <skalluru@marvell.com>
3706 M: GR-everest-linux-l2@marvell.com
3707 L: netdev@vger.kernel.org
3708 S: Supported
3709 F: drivers/net/ethernet/broadcom/bnx2x/
3710
3711 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3712 M: Michael Chan <michael.chan@broadcom.com>
3713 L: netdev@vger.kernel.org
3714 S: Supported
3715 F: drivers/net/ethernet/broadcom/bnxt/
3716
3717 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3718 M: Arend van Spriel <aspriel@gmail.com>
3719 M: Franky Lin <franky.lin@broadcom.com>
3720 M: Hante Meuleman <hante.meuleman@broadcom.com>
3721 M: Chi-hsien Lin <chi-hsien.lin@infineon.com>
3722 M: Wright Feng <wright.feng@infineon.com>
3723 M: Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3724 L: linux-wireless@vger.kernel.org
3725 L: brcm80211-dev-list.pdl@broadcom.com
3726 L: SHA-cyfmac-dev-list@infineon.com
3727 S: Supported
3728 F: drivers/net/wireless/broadcom/brcm80211/
3729
3730 BROADCOM BRCMSTB GPIO DRIVER
3731 M: Gregory Fong <gregory.0xf0@gmail.com>
3732 L: bcm-kernel-feedback-list@broadcom.com
3733 S: Supported
3734 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3735 F: drivers/gpio/gpio-brcmstb.c
3736
3737 BROADCOM BRCMSTB I2C DRIVER
3738 M: Kamal Dasu <kdasu.kdev@gmail.com>
3739 L: linux-i2c@vger.kernel.org
3740 L: bcm-kernel-feedback-list@broadcom.com
3741 S: Supported
3742 F: Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3743 F: drivers/i2c/busses/i2c-brcmstb.c
3744
3745 BROADCOM BRCMSTB UART DRIVER
3746 M: Al Cooper <alcooperx@gmail.com>
3747 L: linux-serial@vger.kernel.org
3748 L: bcm-kernel-feedback-list@broadcom.com
3749 S: Maintained
3750 F: Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3751 F: drivers/tty/serial/8250/8250_bcm7271.c
3752
3753 BROADCOM BRCMSTB USB EHCI DRIVER
3754 M: Al Cooper <alcooperx@gmail.com>
3755 L: linux-usb@vger.kernel.org
3756 L: bcm-kernel-feedback-list@broadcom.com
3757 S: Maintained
3758 F: Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3759 F: drivers/usb/host/ehci-brcm.*
3760
3761 BROADCOM BRCMSTB USB PIN MAP DRIVER
3762 M: Al Cooper <alcooperx@gmail.com>
3763 L: linux-usb@vger.kernel.org
3764 L: bcm-kernel-feedback-list@broadcom.com
3765 S: Maintained
3766 F: Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3767 F: drivers/usb/misc/brcmstb-usb-pinmap.c
3768
3769 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3770 M: Al Cooper <alcooperx@gmail.com>
3771 L: linux-kernel@vger.kernel.org
3772 L: bcm-kernel-feedback-list@broadcom.com
3773 S: Maintained
3774 F: drivers/phy/broadcom/phy-brcm-usb*
3775
3776 BROADCOM ETHERNET PHY DRIVERS
3777 M: Florian Fainelli <f.fainelli@gmail.com>
3778 L: bcm-kernel-feedback-list@broadcom.com
3779 L: netdev@vger.kernel.org
3780 S: Supported
3781 F: Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3782 F: drivers/net/phy/bcm*.[ch]
3783 F: drivers/net/phy/broadcom.c
3784 F: include/linux/brcmphy.h
3785
3786 BROADCOM GENET ETHERNET DRIVER
3787 M: Doug Berger <opendmb@gmail.com>
3788 M: Florian Fainelli <f.fainelli@gmail.com>
3789 L: bcm-kernel-feedback-list@broadcom.com
3790 L: netdev@vger.kernel.org
3791 S: Supported
3792 F: Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3793 F: Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3794 F: drivers/net/ethernet/broadcom/genet/
3795 F: drivers/net/ethernet/broadcom/unimac.h
3796 F: drivers/net/mdio/mdio-bcm-unimac.c
3797 F: include/linux/platform_data/bcmgenet.h
3798 F: include/linux/platform_data/mdio-bcm-unimac.h
3799
3800 BROADCOM IPROC ARM ARCHITECTURE
3801 M: Ray Jui <rjui@broadcom.com>
3802 M: Scott Branden <sbranden@broadcom.com>
3803 M: bcm-kernel-feedback-list@broadcom.com
3804 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3805 S: Maintained
3806 T: git git://github.com/broadcom/cygnus-linux.git
3807 F: arch/arm64/boot/dts/broadcom/northstar2/*
3808 F: arch/arm64/boot/dts/broadcom/stingray/*
3809 F: drivers/clk/bcm/clk-ns*
3810 F: drivers/clk/bcm/clk-sr*
3811 F: drivers/pinctrl/bcm/pinctrl-ns*
3812 F: include/dt-bindings/clock/bcm-sr*
3813 N: iproc
3814 N: cygnus
3815 N: bcm[-_]nsp
3816 N: bcm9113*
3817 N: bcm9583*
3818 N: bcm9585*
3819 N: bcm9586*
3820 N: bcm988312
3821 N: bcm113*
3822 N: bcm583*
3823 N: bcm585*
3824 N: bcm586*
3825 N: bcm88312
3826 N: hr2
3827 N: stingray
3828
3829 BROADCOM IPROC GBIT ETHERNET DRIVER
3830 M: Rafał Miłecki <rafal@milecki.pl>
3831 M: bcm-kernel-feedback-list@broadcom.com
3832 L: netdev@vger.kernel.org
3833 S: Maintained
3834 F: Documentation/devicetree/bindings/net/brcm,amac.txt
3835 F: drivers/net/ethernet/broadcom/bgmac*
3836 F: drivers/net/ethernet/broadcom/unimac.h
3837
3838 BROADCOM KONA GPIO DRIVER
3839 M: Ray Jui <rjui@broadcom.com>
3840 L: bcm-kernel-feedback-list@broadcom.com
3841 S: Supported
3842 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3843 F: drivers/gpio/gpio-bcm-kona.c
3844
3845 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3846 M: Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3847 M: Kashyap Desai <kashyap.desai@broadcom.com>
3848 M: Sumit Saxena <sumit.saxena@broadcom.com>
3849 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3850 L: mpi3mr-linuxdrv.pdl@broadcom.com
3851 L: linux-scsi@vger.kernel.org
3852 S: Supported
3853 W: https://www.broadcom.com/support/storage
3854 F: drivers/scsi/mpi3mr/
3855
3856 BROADCOM NETXTREME-E ROCE DRIVER
3857 M: Selvin Xavier <selvin.xavier@broadcom.com>
3858 L: linux-rdma@vger.kernel.org
3859 S: Supported
3860 W: http://www.broadcom.com
3861 F: drivers/infiniband/hw/bnxt_re/
3862 F: include/uapi/rdma/bnxt_re-abi.h
3863
3864 BROADCOM NVRAM DRIVER
3865 M: Rafał Miłecki <zajec5@gmail.com>
3866 L: linux-mips@vger.kernel.org
3867 S: Maintained
3868 F: drivers/firmware/broadcom/*
3869
3870 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3871 M: Rafał Miłecki <rafal@milecki.pl>
3872 M: Florian Fainelli <f.fainelli@gmail.com>
3873 M: bcm-kernel-feedback-list@broadcom.com
3874 L: linux-pm@vger.kernel.org
3875 S: Maintained
3876 T: git git://github.com/broadcom/stblinux.git
3877 F: drivers/soc/bcm/bcm63xx/bcm-pmb.c
3878 F: include/dt-bindings/soc/bcm-pmb.h
3879
3880 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3881 M: Rafał Miłecki <zajec5@gmail.com>
3882 L: linux-wireless@vger.kernel.org
3883 S: Maintained
3884 F: drivers/bcma/
3885 F: include/linux/bcma/
3886
3887 BROADCOM SPI DRIVER
3888 M: Kamal Dasu <kdasu.kdev@gmail.com>
3889 M: bcm-kernel-feedback-list@broadcom.com
3890 S: Maintained
3891 F: Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3892 F: drivers/spi/spi-bcm-qspi.*
3893 F: drivers/spi/spi-brcmstb-qspi.c
3894 F: drivers/spi/spi-iproc-qspi.c
3895
3896 BROADCOM STB AVS CPUFREQ DRIVER
3897 M: Markus Mayer <mmayer@broadcom.com>
3898 M: bcm-kernel-feedback-list@broadcom.com
3899 L: linux-pm@vger.kernel.org
3900 S: Maintained
3901 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3902 F: drivers/cpufreq/brcmstb*
3903
3904 BROADCOM STB AVS TMON DRIVER
3905 M: Markus Mayer <mmayer@broadcom.com>
3906 M: bcm-kernel-feedback-list@broadcom.com
3907 L: linux-pm@vger.kernel.org
3908 S: Maintained
3909 F: Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3910 F: drivers/thermal/broadcom/brcmstb*
3911
3912 BROADCOM STB DPFE DRIVER
3913 M: Markus Mayer <mmayer@broadcom.com>
3914 M: bcm-kernel-feedback-list@broadcom.com
3915 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3916 S: Maintained
3917 F: Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3918 F: drivers/memory/brcmstb_dpfe.c
3919
3920 BROADCOM STB NAND FLASH DRIVER
3921 M: Brian Norris <computersforpeace@gmail.com>
3922 M: Kamal Dasu <kdasu.kdev@gmail.com>
3923 L: linux-mtd@lists.infradead.org
3924 L: bcm-kernel-feedback-list@broadcom.com
3925 S: Maintained
3926 F: drivers/mtd/nand/raw/brcmnand/
3927
3928 BROADCOM STB PCIE DRIVER
3929 M: Jim Quinlan <jim2101024@gmail.com>
3930 M: Nicolas Saenz Julienne <nsaenz@kernel.org>
3931 M: Florian Fainelli <f.fainelli@gmail.com>
3932 M: bcm-kernel-feedback-list@broadcom.com
3933 L: linux-pci@vger.kernel.org
3934 S: Maintained
3935 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3936 F: drivers/pci/controller/pcie-brcmstb.c
3937
3938 BROADCOM SYSTEMPORT ETHERNET DRIVER
3939 M: Florian Fainelli <f.fainelli@gmail.com>
3940 L: bcm-kernel-feedback-list@broadcom.com
3941 L: netdev@vger.kernel.org
3942 S: Supported
3943 F: drivers/net/ethernet/broadcom/bcmsysport.*
3944 F: drivers/net/ethernet/broadcom/unimac.h
3945
3946 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3947 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
3948 M: Prashant Sreedharan <prashant@broadcom.com>
3949 M: Michael Chan <mchan@broadcom.com>
3950 L: netdev@vger.kernel.org
3951 S: Supported
3952 F: drivers/net/ethernet/broadcom/tg3.*
3953
3954 BROADCOM VK DRIVER
3955 M: Scott Branden <scott.branden@broadcom.com>
3956 L: bcm-kernel-feedback-list@broadcom.com
3957 S: Supported
3958 F: drivers/misc/bcm-vk/
3959 F: include/uapi/linux/misc/bcm_vk.h
3960
3961 BROCADE BFA FC SCSI DRIVER
3962 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3963 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3964 L: linux-scsi@vger.kernel.org
3965 S: Supported
3966 F: drivers/scsi/bfa/
3967
3968 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3969 M: Rasesh Mody <rmody@marvell.com>
3970 M: Sudarsana Kalluru <skalluru@marvell.com>
3971 M: GR-Linux-NIC-Dev@marvell.com
3972 L: netdev@vger.kernel.org
3973 S: Supported
3974 F: drivers/net/ethernet/brocade/bna/
3975
3976 BSG (block layer generic sg v4 driver)
3977 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3978 L: linux-scsi@vger.kernel.org
3979 S: Supported
3980 F: block/bsg.c
3981 F: include/linux/bsg.h
3982 F: include/uapi/linux/bsg.h
3983
3984 BT87X AUDIO DRIVER
3985 M: Clemens Ladisch <clemens@ladisch.de>
3986 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3987 S: Maintained
3988 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3989 F: Documentation/sound/cards/bt87x.rst
3990 F: sound/pci/bt87x.c
3991
3992 BT8XXGPIO DRIVER
3993 M: Michael Buesch <m@bues.ch>
3994 S: Maintained
3995 W: http://bu3sch.de/btgpio.php
3996 F: drivers/gpio/gpio-bt8xx.c
3997
3998 BTRFS FILE SYSTEM
3999 M: Chris Mason <clm@fb.com>
4000 M: Josef Bacik <josef@toxicpanda.com>
4001 M: David Sterba <dsterba@suse.com>
4002 L: linux-btrfs@vger.kernel.org
4003 S: Maintained
4004 W: http://btrfs.wiki.kernel.org/
4005 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
4006 C: irc://irc.libera.chat/btrfs
4007 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4008 F: Documentation/filesystems/btrfs.rst
4009 F: fs/btrfs/
4010 F: include/linux/btrfs*
4011 F: include/uapi/linux/btrfs*
4012
4013 BTTV VIDEO4LINUX DRIVER
4014 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4015 L: linux-media@vger.kernel.org
4016 S: Odd fixes
4017 W: https://linuxtv.org
4018 T: git git://linuxtv.org/media_tree.git
4019 F: Documentation/driver-api/media/drivers/bttv*
4020 F: drivers/media/pci/bt8xx/bttv*
4021
4022 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4023 M: Chanwoo Choi <cw00.choi@samsung.com>
4024 L: linux-pm@vger.kernel.org
4025 L: linux-samsung-soc@vger.kernel.org
4026 S: Maintained
4027 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4028 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4029 F: drivers/devfreq/exynos-bus.c
4030
4031 BUSLOGIC SCSI DRIVER
4032 M: Khalid Aziz <khalid@gonehiking.org>
4033 L: linux-scsi@vger.kernel.org
4034 S: Maintained
4035 F: drivers/scsi/BusLogic.*
4036 F: drivers/scsi/FlashPoint.*
4037
4038 C-MEDIA CMI8788 DRIVER
4039 M: Clemens Ladisch <clemens@ladisch.de>
4040 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4041 S: Maintained
4042 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4043 F: sound/pci/oxygen/
4044
4045 C-SKY ARCHITECTURE
4046 M: Guo Ren <guoren@kernel.org>
4047 L: linux-csky@vger.kernel.org
4048 S: Supported
4049 T: git https://github.com/c-sky/csky-linux.git
4050 F: Documentation/devicetree/bindings/csky/
4051 F: Documentation/devicetree/bindings/interrupt-controller/csky,*
4052 F: Documentation/devicetree/bindings/timer/csky,*
4053 F: arch/csky/
4054 F: drivers/clocksource/timer-gx6605s.c
4055 F: drivers/clocksource/timer-mp-csky.c
4056 F: drivers/irqchip/irq-csky-*
4057 N: csky
4058 K: csky
4059
4060 CA8210 IEEE-802.15.4 RADIO DRIVER
4061 M: Harry Morris <h.morris@cascoda.com>
4062 L: linux-wpan@vger.kernel.org
4063 S: Maintained
4064 W: https://github.com/Cascoda/ca8210-linux.git
4065 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4066 F: drivers/net/ieee802154/ca8210.c
4067
4068 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4069 M: Damien Le Moal <damien.lemoal@wdc.com>
4070 L: linux-riscv@lists.infradead.org
4071 L: linux-gpio@vger.kernel.org (pinctrl driver)
4072 F: Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4073 F: drivers/pinctrl/pinctrl-k210.c
4074
4075 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4076 M: Damien Le Moal <damien.lemoal@wdc.com>
4077 L: linux-kernel@vger.kernel.org
4078 L: linux-riscv@lists.infradead.org
4079 S: Maintained
4080 F: Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4081 F: drivers/reset/reset-k210.c
4082
4083 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4084 M: Damien Le Moal <damien.lemoal@wdc.com>
4085 L: linux-riscv@lists.infradead.org
4086 S: Maintained
4087 F: Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4088 F: drivers/soc/canaan/
4089 F: include/soc/canaan/
4090
4091 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4092 M: David Howells <dhowells@redhat.com>
4093 L: linux-cachefs@redhat.com (moderated for non-subscribers)
4094 S: Supported
4095 F: Documentation/filesystems/caching/cachefiles.rst
4096 F: fs/cachefiles/
4097
4098 CADENCE MIPI-CSI2 BRIDGES
4099 M: Maxime Ripard <mripard@kernel.org>
4100 L: linux-media@vger.kernel.org
4101 S: Maintained
4102 F: Documentation/devicetree/bindings/media/cdns,*.txt
4103 F: drivers/media/platform/cadence/cdns-csi2*
4104
4105 CADENCE NAND DRIVER
4106 L: linux-mtd@lists.infradead.org
4107 S: Orphan
4108 F: Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4109 F: drivers/mtd/nand/raw/cadence-nand-controller.c
4110
4111 CADENCE USB3 DRD IP DRIVER
4112 M: Peter Chen <peter.chen@kernel.org>
4113 M: Pawel Laszczak <pawell@cadence.com>
4114 R: Roger Quadros <rogerq@kernel.org>
4115 R: Aswath Govindraju <a-govindraju@ti.com>
4116 L: linux-usb@vger.kernel.org
4117 S: Maintained
4118 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4119 F: Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4120 F: drivers/usb/cdns3/
4121 X: drivers/usb/cdns3/cdnsp*
4122
4123 CADENCE USBSSP DRD IP DRIVER
4124 M: Pawel Laszczak <pawell@cadence.com>
4125 L: linux-usb@vger.kernel.org
4126 S: Maintained
4127 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4128 F: drivers/usb/cdns3/
4129 X: drivers/usb/cdns3/cdns3*
4130
4131 CADET FM/AM RADIO RECEIVER DRIVER
4132 M: Hans Verkuil <hverkuil@xs4all.nl>
4133 L: linux-media@vger.kernel.org
4134 S: Maintained
4135 W: https://linuxtv.org
4136 T: git git://linuxtv.org/media_tree.git
4137 F: drivers/media/radio/radio-cadet*
4138
4139 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4140 L: linux-media@vger.kernel.org
4141 S: Orphan
4142 T: git git://linuxtv.org/media_tree.git
4143 F: Documentation/admin-guide/media/cafe_ccic*
4144 F: drivers/media/platform/marvell-ccic/
4145
4146 CAIF NETWORK LAYER
4147 L: netdev@vger.kernel.org
4148 S: Orphan
4149 F: Documentation/networking/caif/
4150 F: drivers/net/caif/
4151 F: include/net/caif/
4152 F: include/uapi/linux/caif/
4153 F: net/caif/
4154
4155 CAKE QDISC
4156 M: Toke Høiland-Jørgensen <toke@toke.dk>
4157 L: cake@lists.bufferbloat.net (moderated for non-subscribers)
4158 S: Maintained
4159 F: net/sched/sch_cake.c
4160
4161 CAN NETWORK DRIVERS
4162 M: Wolfgang Grandegger <wg@grandegger.com>
4163 M: Marc Kleine-Budde <mkl@pengutronix.de>
4164 L: linux-can@vger.kernel.org
4165 S: Maintained
4166 W: https://github.com/linux-can
4167 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4168 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4169 F: Documentation/devicetree/bindings/net/can/
4170 F: Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4171 F: drivers/net/can/
4172 F: drivers/phy/phy-can-transceiver.c
4173 F: include/linux/can/bittiming.h
4174 F: include/linux/can/dev.h
4175 F: include/linux/can/led.h
4176 F: include/linux/can/length.h
4177 F: include/linux/can/platform/
4178 F: include/linux/can/rx-offload.h
4179 F: include/uapi/linux/can/error.h
4180 F: include/uapi/linux/can/netlink.h
4181 F: include/uapi/linux/can/vxcan.h
4182
4183 CAN NETWORK LAYER
4184 M: Oliver Hartkopp <socketcan@hartkopp.net>
4185 M: Marc Kleine-Budde <mkl@pengutronix.de>
4186 L: linux-can@vger.kernel.org
4187 S: Maintained
4188 W: https://github.com/linux-can
4189 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4190 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4191 F: Documentation/networking/can.rst
4192 F: include/linux/can/can-ml.h
4193 F: include/linux/can/core.h
4194 F: include/linux/can/skb.h
4195 F: include/net/netns/can.h
4196 F: include/uapi/linux/can.h
4197 F: include/uapi/linux/can/bcm.h
4198 F: include/uapi/linux/can/gw.h
4199 F: include/uapi/linux/can/isotp.h
4200 F: include/uapi/linux/can/raw.h
4201 F: net/can/
4202
4203 CAN-J1939 NETWORK LAYER
4204 M: Robin van der Gracht <robin@protonic.nl>
4205 M: Oleksij Rempel <o.rempel@pengutronix.de>
4206 R: kernel@pengutronix.de
4207 L: linux-can@vger.kernel.org
4208 S: Maintained
4209 F: Documentation/networking/j1939.rst
4210 F: include/uapi/linux/can/j1939.h
4211 F: net/can/j1939/
4212
4213 CAPABILITIES
4214 M: Serge Hallyn <serge@hallyn.com>
4215 L: linux-security-module@vger.kernel.org
4216 S: Supported
4217 F: include/linux/capability.h
4218 F: include/uapi/linux/capability.h
4219 F: kernel/capability.c
4220 F: security/commoncap.c
4221
4222 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4223 M: Kevin Tsai <ktsai@capellamicro.com>
4224 S: Maintained
4225 F: drivers/iio/light/cm*
4226
4227 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4228 M: Christian Lamparter <chunkeey@googlemail.com>
4229 L: linux-wireless@vger.kernel.org
4230 S: Maintained
4231 W: https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4232 F: drivers/net/wireless/ath/carl9170/
4233
4234 CAVIUM I2C DRIVER
4235 M: Robert Richter <rric@kernel.org>
4236 S: Odd Fixes
4237 W: http://www.marvell.com
4238 F: drivers/i2c/busses/i2c-octeon*
4239 F: drivers/i2c/busses/i2c-thunderx*
4240
4241 CAVIUM LIQUIDIO NETWORK DRIVER
4242 M: Derek Chickles <dchickles@marvell.com>
4243 M: Satanand Burla <sburla@marvell.com>
4244 M: Felix Manlunas <fmanlunas@marvell.com>
4245 L: netdev@vger.kernel.org
4246 S: Supported
4247 W: http://www.marvell.com
4248 F: drivers/net/ethernet/cavium/liquidio/
4249
4250 CAVIUM MMC DRIVER
4251 M: Robert Richter <rric@kernel.org>
4252 S: Odd Fixes
4253 W: http://www.marvell.com
4254 F: drivers/mmc/host/cavium*
4255
4256 CAVIUM OCTEON-TX CRYPTO DRIVER
4257 M: George Cherian <gcherian@marvell.com>
4258 L: linux-crypto@vger.kernel.org
4259 S: Supported
4260 W: http://www.marvell.com
4261 F: drivers/crypto/cavium/cpt/
4262
4263 CAVIUM THUNDERX2 ARM64 SOC
4264 M: Robert Richter <rric@kernel.org>
4265 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4266 S: Odd Fixes
4267 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4268 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
4269
4270 CBS/ETF/TAPRIO QDISCS
4271 M: Vinicius Costa Gomes <vinicius.gomes@intel.com>
4272 S: Maintained
4273 L: netdev@vger.kernel.org
4274 F: net/sched/sch_cbs.c
4275 F: net/sched/sch_etf.c
4276 F: net/sched/sch_taprio.c
4277
4278 CC2520 IEEE-802.15.4 RADIO DRIVER
4279 M: Varka Bhadram <varkabhadram@gmail.com>
4280 L: linux-wpan@vger.kernel.org
4281 S: Maintained
4282 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4283 F: drivers/net/ieee802154/cc2520.c
4284 F: include/linux/spi/cc2520.h
4285
4286 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4287 M: Gilad Ben-Yossef <gilad@benyossef.com>
4288 L: linux-crypto@vger.kernel.org
4289 S: Supported
4290 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4291 F: drivers/crypto/ccree/
4292
4293 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4294 M: Hadar Gat <hadar.gat@arm.com>
4295 L: linux-crypto@vger.kernel.org
4296 S: Supported
4297 F: drivers/char/hw_random/cctrng.c
4298 F: drivers/char/hw_random/cctrng.h
4299 F: Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4300 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4301
4302 CEC FRAMEWORK
4303 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4304 L: linux-media@vger.kernel.org
4305 S: Supported
4306 W: http://linuxtv.org
4307 T: git git://linuxtv.org/media_tree.git
4308 F: Documentation/ABI/testing/debugfs-cec-error-inj
4309 F: Documentation/devicetree/bindings/media/cec.txt
4310 F: Documentation/driver-api/media/cec-core.rst
4311 F: Documentation/userspace-api/media/cec
4312 F: drivers/media/cec/
4313 F: drivers/media/rc/keymaps/rc-cec.c
4314 F: include/media/cec-notifier.h
4315 F: include/media/cec.h
4316 F: include/uapi/linux/cec-funcs.h
4317 F: include/uapi/linux/cec.h
4318
4319 CEC GPIO DRIVER
4320 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4321 L: linux-media@vger.kernel.org
4322 S: Supported
4323 W: http://linuxtv.org
4324 T: git git://linuxtv.org/media_tree.git
4325 F: Documentation/devicetree/bindings/media/cec-gpio.txt
4326 F: drivers/media/cec/platform/cec-gpio/
4327
4328 CELL BROADBAND ENGINE ARCHITECTURE
4329 M: Arnd Bergmann <arnd@arndb.de>
4330 L: linuxppc-dev@lists.ozlabs.org
4331 S: Supported
4332 W: http://www.ibm.com/developerworks/power/cell/
4333 F: arch/powerpc/include/asm/cell*.h
4334 F: arch/powerpc/include/asm/spu*.h
4335 F: arch/powerpc/include/uapi/asm/spu*.h
4336 F: arch/powerpc/platforms/cell/
4337
4338 CELLWISE CW2015 BATTERY DRIVER
4339 M: Tobias Schrammm <t.schramm@manjaro.org>
4340 S: Maintained
4341 F: Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4342 F: drivers/power/supply/cw2015_battery.c
4343
4344 CEPH COMMON CODE (LIBCEPH)
4345 M: Ilya Dryomov <idryomov@gmail.com>
4346 M: Jeff Layton <jlayton@kernel.org>
4347 L: ceph-devel@vger.kernel.org
4348 S: Supported
4349 W: http://ceph.com/
4350 T: git git://github.com/ceph/ceph-client.git
4351 F: include/linux/ceph/
4352 F: include/linux/crush/
4353 F: net/ceph/
4354
4355 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4356 M: Jeff Layton <jlayton@kernel.org>
4357 M: Ilya Dryomov <idryomov@gmail.com>
4358 L: ceph-devel@vger.kernel.org
4359 S: Supported
4360 W: http://ceph.com/
4361 T: git git://github.com/ceph/ceph-client.git
4362 F: Documentation/filesystems/ceph.rst
4363 F: fs/ceph/
4364
4365 CERTIFICATE HANDLING
4366 M: David Howells <dhowells@redhat.com>
4367 M: David Woodhouse <dwmw2@infradead.org>
4368 L: keyrings@vger.kernel.org
4369 S: Maintained
4370 F: Documentation/admin-guide/module-signing.rst
4371 F: certs/
4372 F: scripts/extract-cert.c
4373 F: scripts/sign-file.c
4374
4375 CFAG12864B LCD DRIVER
4376 M: Miguel Ojeda <ojeda@kernel.org>
4377 S: Maintained
4378 F: drivers/auxdisplay/cfag12864b.c
4379 F: include/linux/cfag12864b.h
4380
4381 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4382 M: Miguel Ojeda <ojeda@kernel.org>
4383 S: Maintained
4384 F: drivers/auxdisplay/cfag12864bfb.c
4385 F: include/linux/cfag12864b.h
4386
4387 CHAR and MISC DRIVERS
4388 M: Arnd Bergmann <arnd@arndb.de>
4389 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4390 S: Supported
4391 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4392 F: drivers/char/
4393 F: drivers/misc/
4394 F: include/linux/miscdevice.h
4395 X: drivers/char/agp/
4396 X: drivers/char/hw_random/
4397 X: drivers/char/ipmi/
4398 X: drivers/char/random.c
4399 X: drivers/char/tpm/
4400
4401 CHECKPATCH
4402 M: Andy Whitcroft <apw@canonical.com>
4403 M: Joe Perches <joe@perches.com>
4404 R: Dwaipayan Ray <dwaipayanray1@gmail.com>
4405 R: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4406 S: Maintained
4407 F: scripts/checkpatch.pl
4408
4409 CHECKPATCH DOCUMENTATION
4410 M: Dwaipayan Ray <dwaipayanray1@gmail.com>
4411 M: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4412 R: Joe Perches <joe@perches.com>
4413 S: Maintained
4414 F: Documentation/dev-tools/checkpatch.rst
4415
4416 CHINESE DOCUMENTATION
4417 M: Alex Shi <alexs@kernel.org>
4418 S: Maintained
4419 F: Documentation/translations/zh_CN/
4420
4421 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4422 M: Peter Chen <peter.chen@kernel.org>
4423 L: linux-usb@vger.kernel.org
4424 S: Maintained
4425 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4426 F: drivers/usb/chipidea/
4427
4428 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4429 M: Hans de Goede <hdegoede@redhat.com>
4430 L: linux-input@vger.kernel.org
4431 S: Maintained
4432 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4433 F: drivers/input/touchscreen/chipone_icn8318.c
4434
4435 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4436 M: Hans de Goede <hdegoede@redhat.com>
4437 L: linux-input@vger.kernel.org
4438 S: Maintained
4439 F: drivers/input/touchscreen/chipone_icn8505.c
4440
4441 CHROME HARDWARE PLATFORM SUPPORT
4442 M: Benson Leung <bleung@chromium.org>
4443 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4444 S: Maintained
4445 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4446 F: drivers/platform/chrome/
4447
4448 CHROMEOS EC CODEC DRIVER
4449 M: Cheng-Yi Chiang <cychiang@chromium.org>
4450 R: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4451 R: Guenter Roeck <groeck@chromium.org>
4452 S: Maintained
4453 F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4454 F: sound/soc/codecs/cros_ec_codec.*
4455
4456 CHROMEOS EC SUBDRIVERS
4457 M: Benson Leung <bleung@chromium.org>
4458 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4459 R: Guenter Roeck <groeck@chromium.org>
4460 S: Maintained
4461 F: drivers/power/supply/cros_usbpd-charger.c
4462 N: cros_ec
4463 N: cros-ec
4464
4465 CHRONTEL CH7322 CEC DRIVER
4466 M: Jeff Chase <jnchase@google.com>
4467 L: linux-media@vger.kernel.org
4468 S: Maintained
4469 T: git git://linuxtv.org/media_tree.git
4470 F: Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4471 F: drivers/media/cec/i2c/ch7322.c
4472
4473 CIRRUS LOGIC AUDIO CODEC DRIVERS
4474 M: James Schulman <james.schulman@cirrus.com>
4475 M: David Rhodes <david.rhodes@cirrus.com>
4476 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4477 L: patches@opensource.cirrus.com
4478 S: Maintained
4479 F: sound/soc/codecs/cs*
4480
4481 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4482 M: Hartley Sweeten <hsweeten@visionengravers.com>
4483 L: netdev@vger.kernel.org
4484 S: Maintained
4485 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
4486
4487 CIRRUS LOGIC LOCHNAGAR DRIVER
4488 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4489 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4490 L: patches@opensource.cirrus.com
4491 S: Supported
4492 F: Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4493 F: Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4494 F: Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4495 F: Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4496 F: Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4497 F: Documentation/hwmon/lochnagar.rst
4498 F: drivers/clk/clk-lochnagar.c
4499 F: drivers/hwmon/lochnagar-hwmon.c
4500 F: drivers/mfd/lochnagar-i2c.c
4501 F: drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4502 F: drivers/regulator/lochnagar-regulator.c
4503 F: include/dt-bindings/clk/lochnagar.h
4504 F: include/dt-bindings/pinctrl/lochnagar.h
4505 F: include/linux/mfd/lochnagar*
4506 F: sound/soc/codecs/lochnagar-sc.c
4507
4508 CIRRUS LOGIC MADERA CODEC DRIVERS
4509 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4510 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4511 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4512 L: patches@opensource.cirrus.com
4513 S: Supported
4514 W: https://github.com/CirrusLogic/linux-drivers/wiki
4515 T: git https://github.com/CirrusLogic/linux-drivers.git
4516 F: Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4517 F: Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4518 F: Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4519 F: drivers/gpio/gpio-madera*
4520 F: drivers/irqchip/irq-madera*
4521 F: drivers/mfd/cs47l*
4522 F: drivers/mfd/madera*
4523 F: drivers/pinctrl/cirrus/*
4524 F: include/dt-bindings/sound/madera*
4525 F: include/linux/irqchip/irq-madera*
4526 F: include/linux/mfd/madera/*
4527 F: include/sound/madera*
4528 F: sound/soc/codecs/cs47l*
4529 F: sound/soc/codecs/madera*
4530
4531 CISCO FCOE HBA DRIVER
4532 M: Satish Kharat <satishkh@cisco.com>
4533 M: Sesidhar Baddela <sebaddel@cisco.com>
4534 M: Karan Tilak Kumar <kartilak@cisco.com>
4535 L: linux-scsi@vger.kernel.org
4536 S: Supported
4537 F: drivers/scsi/fnic/
4538
4539 CISCO SCSI HBA DRIVER
4540 M: Karan Tilak Kumar <kartilak@cisco.com>
4541 M: Sesidhar Baddela <sebaddel@cisco.com>
4542 L: linux-scsi@vger.kernel.org
4543 S: Supported
4544 F: drivers/scsi/snic/
4545
4546 CISCO VIC ETHERNET NIC DRIVER
4547 M: Christian Benvenuti <benve@cisco.com>
4548 M: Govindarajulu Varadarajan <_govind@gmx.com>
4549 S: Supported
4550 F: drivers/net/ethernet/cisco/enic/
4551
4552 CISCO VIC LOW LATENCY NIC DRIVER
4553 M: Christian Benvenuti <benve@cisco.com>
4554 M: Nelson Escobar <neescoba@cisco.com>
4555 S: Supported
4556 F: drivers/infiniband/hw/usnic/
4557
4558 CLANG-FORMAT FILE
4559 M: Miguel Ojeda <ojeda@kernel.org>
4560 S: Maintained
4561 F: .clang-format
4562
4563 CLANG/LLVM BUILD SUPPORT
4564 M: Nathan Chancellor <nathan@kernel.org>
4565 M: Nick Desaulniers <ndesaulniers@google.com>
4566 L: llvm@lists.linux.dev
4567 S: Supported
4568 W: https://clangbuiltlinux.github.io/
4569 B: https://github.com/ClangBuiltLinux/linux/issues
4570 C: irc://irc.libera.chat/clangbuiltlinux
4571 F: Documentation/kbuild/llvm.rst
4572 F: include/linux/compiler-clang.h
4573 F: scripts/Makefile.clang
4574 F: scripts/clang-tools/
4575 K: \b(?i:clang|llvm)\b
4576
4577 CLANG CONTROL FLOW INTEGRITY SUPPORT
4578 M: Sami Tolvanen <samitolvanen@google.com>
4579 M: Kees Cook <keescook@chromium.org>
4580 R: Nathan Chancellor <nathan@kernel.org>
4581 R: Nick Desaulniers <ndesaulniers@google.com>
4582 L: llvm@lists.linux.dev
4583 S: Supported
4584 B: https://github.com/ClangBuiltLinux/linux/issues
4585 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4586 F: include/linux/cfi.h
4587 F: kernel/cfi.c
4588
4589 CLEANCACHE API
4590 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4591 L: linux-kernel@vger.kernel.org
4592 S: Maintained
4593 F: include/linux/cleancache.h
4594 F: mm/cleancache.c
4595
4596 CLK API
4597 M: Russell King <linux@armlinux.org.uk>
4598 L: linux-clk@vger.kernel.org
4599 S: Maintained
4600 F: include/linux/clk.h
4601
4602 CLOCKSOURCE, CLOCKEVENT DRIVERS
4603 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4604 M: Thomas Gleixner <tglx@linutronix.de>
4605 L: linux-kernel@vger.kernel.org
4606 S: Supported
4607 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4608 F: Documentation/devicetree/bindings/timer/
4609 F: drivers/clocksource/
4610
4611 CMPC ACPI DRIVER
4612 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4613 M: Daniel Oliveira Nascimento <don@syst.com.br>
4614 L: platform-driver-x86@vger.kernel.org
4615 S: Supported
4616 F: drivers/platform/x86/classmate-laptop.c
4617
4618 COBALT MEDIA DRIVER
4619 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4620 L: linux-media@vger.kernel.org
4621 S: Supported
4622 W: https://linuxtv.org
4623 T: git git://linuxtv.org/media_tree.git
4624 F: drivers/media/pci/cobalt/
4625
4626 COCCINELLE/Semantic Patches (SmPL)
4627 M: Julia Lawall <Julia.Lawall@inria.fr>
4628 M: Gilles Muller <Gilles.Muller@inria.fr>
4629 M: Nicolas Palix <nicolas.palix@imag.fr>
4630 M: Michal Marek <michal.lkml@markovi.net>
4631 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
4632 S: Supported
4633 W: http://coccinelle.lip6.fr/
4634 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4635 F: Documentation/dev-tools/coccinelle.rst
4636 F: scripts/coccicheck
4637 F: scripts/coccinelle/
4638
4639 CODA FILE SYSTEM
4640 M: Jan Harkes <jaharkes@cs.cmu.edu>
4641 M: coda@cs.cmu.edu
4642 L: codalist@coda.cs.cmu.edu
4643 S: Maintained
4644 W: http://www.coda.cs.cmu.edu/
4645 F: Documentation/filesystems/coda.rst
4646 F: fs/coda/
4647 F: include/linux/coda*.h
4648 F: include/uapi/linux/coda*.h
4649
4650 CODA V4L2 MEM2MEM DRIVER
4651 M: Philipp Zabel <p.zabel@pengutronix.de>
4652 L: linux-media@vger.kernel.org
4653 S: Maintained
4654 F: Documentation/devicetree/bindings/media/coda.yaml
4655 F: drivers/media/platform/coda/
4656
4657 CODE OF CONDUCT
4658 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4659 S: Supported
4660 F: Documentation/process/code-of-conduct-interpretation.rst
4661 F: Documentation/process/code-of-conduct.rst
4662
4663 COMEDI DRIVERS
4664 M: Ian Abbott <abbotti@mev.co.uk>
4665 M: H Hartley Sweeten <hsweeten@visionengravers.com>
4666 S: Odd Fixes
4667 F: drivers/comedi/
4668
4669 COMMON CLK FRAMEWORK
4670 M: Michael Turquette <mturquette@baylibre.com>
4671 M: Stephen Boyd <sboyd@kernel.org>
4672 L: linux-clk@vger.kernel.org
4673 S: Maintained
4674 Q: http://patchwork.kernel.org/project/linux-clk/list/
4675 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4676 F: Documentation/devicetree/bindings/clock/
4677 F: drivers/clk/
4678 F: include/linux/clk-pr*
4679 F: include/linux/clk/
4680 F: include/linux/of_clk.h
4681 X: drivers/clk/clkdev.c
4682
4683 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4684 M: Steve French <sfrench@samba.org>
4685 L: linux-cifs@vger.kernel.org
4686 L: samba-technical@lists.samba.org (moderated for non-subscribers)
4687 S: Supported
4688 W: http://linux-cifs.samba.org/
4689 T: git git://git.samba.org/sfrench/cifs-2.6.git
4690 F: Documentation/admin-guide/cifs/
4691 F: fs/cifs/
4692 F: fs/smbfs_common/
4693
4694 COMPACTPCI HOTPLUG CORE
4695 M: Scott Murray <scott@spiteful.org>
4696 L: linux-pci@vger.kernel.org
4697 S: Maintained
4698 F: drivers/pci/hotplug/cpci_hotplug*
4699
4700 COMPACTPCI HOTPLUG GENERIC DRIVER
4701 M: Scott Murray <scott@spiteful.org>
4702 L: linux-pci@vger.kernel.org
4703 S: Maintained
4704 F: drivers/pci/hotplug/cpcihp_generic.c
4705
4706 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4707 M: Scott Murray <scott@spiteful.org>
4708 L: linux-pci@vger.kernel.org
4709 S: Maintained
4710 F: drivers/pci/hotplug/cpcihp_zt5550.*
4711
4712 COMPAL LAPTOP SUPPORT
4713 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4714 L: platform-driver-x86@vger.kernel.org
4715 S: Maintained
4716 F: drivers/platform/x86/compal-laptop.c
4717
4718 COMPILER ATTRIBUTES
4719 M: Miguel Ojeda <ojeda@kernel.org>
4720 R: Nick Desaulniers <ndesaulniers@google.com>
4721 S: Maintained
4722 F: include/linux/compiler_attributes.h
4723
4724 COMPUTE EXPRESS LINK (CXL)
4725 M: Alison Schofield <alison.schofield@intel.com>
4726 M: Vishal Verma <vishal.l.verma@intel.com>
4727 M: Ira Weiny <ira.weiny@intel.com>
4728 M: Ben Widawsky <ben.widawsky@intel.com>
4729 M: Dan Williams <dan.j.williams@intel.com>
4730 L: linux-cxl@vger.kernel.org
4731 S: Maintained
4732 F: drivers/cxl/
4733 F: include/uapi/linux/cxl_mem.h
4734
4735 CONEXANT ACCESSRUNNER USB DRIVER
4736 L: accessrunner-general@lists.sourceforge.net
4737 S: Orphan
4738 W: http://accessrunner.sourceforge.net/
4739 F: drivers/usb/atm/cxacru.c
4740
4741 CONFIGFS
4742 M: Joel Becker <jlbec@evilplan.org>
4743 M: Christoph Hellwig <hch@lst.de>
4744 S: Supported
4745 T: git git://git.infradead.org/users/hch/configfs.git
4746 F: fs/configfs/
4747 F: include/linux/configfs.h
4748 F: samples/configfs/
4749
4750 CONSOLE SUBSYSTEM
4751 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4752 S: Supported
4753 F: drivers/video/console/
4754 F: include/linux/console*
4755
4756 CONTEXT TRACKING
4757 M: Frederic Weisbecker <frederic@kernel.org>
4758 S: Maintained
4759 F: kernel/context_tracking.c
4760 F: include/linux/context_tracking*
4761
4762 CONTROL GROUP (CGROUP)
4763 M: Tejun Heo <tj@kernel.org>
4764 M: Zefan Li <lizefan.x@bytedance.com>
4765 M: Johannes Weiner <hannes@cmpxchg.org>
4766 L: cgroups@vger.kernel.org
4767 S: Maintained
4768 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4769 F: Documentation/admin-guide/cgroup-v1/
4770 F: Documentation/admin-guide/cgroup-v2.rst
4771 F: include/linux/cgroup*
4772 F: kernel/cgroup/
4773
4774 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4775 M: Tejun Heo <tj@kernel.org>
4776 M: Jens Axboe <axboe@kernel.dk>
4777 L: cgroups@vger.kernel.org
4778 L: linux-block@vger.kernel.org
4779 T: git git://git.kernel.dk/linux-block
4780 F: Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4781 F: block/bfq-cgroup.c
4782 F: block/blk-cgroup.c
4783 F: block/blk-iolatency.c
4784 F: block/blk-throttle.c
4785 F: include/linux/blk-cgroup.h
4786
4787 CONTROL GROUP - CPUSET
4788 M: Zefan Li <lizefan.x@bytedance.com>
4789 L: cgroups@vger.kernel.org
4790 S: Maintained
4791 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4792 F: Documentation/admin-guide/cgroup-v1/cpusets.rst
4793 F: include/linux/cpuset.h
4794 F: kernel/cgroup/cpuset.c
4795
4796 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4797 M: Johannes Weiner <hannes@cmpxchg.org>
4798 M: Michal Hocko <mhocko@kernel.org>
4799 M: Vladimir Davydov <vdavydov.dev@gmail.com>
4800 L: cgroups@vger.kernel.org
4801 L: linux-mm@kvack.org
4802 S: Maintained
4803 F: mm/memcontrol.c
4804 F: mm/swap_cgroup.c
4805
4806 CORETEMP HARDWARE MONITORING DRIVER
4807 M: Fenghua Yu <fenghua.yu@intel.com>
4808 L: linux-hwmon@vger.kernel.org
4809 S: Maintained
4810 F: Documentation/hwmon/coretemp.rst
4811 F: drivers/hwmon/coretemp.c
4812
4813 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4814 M: Marius Zachmann <mail@mariuszachmann.de>
4815 L: linux-hwmon@vger.kernel.org
4816 S: Maintained
4817 F: drivers/hwmon/corsair-cpro.c
4818
4819 CORSAIR-PSU HARDWARE MONITOR DRIVER
4820 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
4821 L: linux-hwmon@vger.kernel.org
4822 S: Maintained
4823 F: Documentation/hwmon/corsair-psu.rst
4824 F: drivers/hwmon/corsair-psu.c
4825
4826 COSA/SRP SYNC SERIAL DRIVER
4827 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4828 S: Maintained
4829 W: http://www.fi.muni.cz/~kas/cosa/
4830 F: drivers/net/wan/cosa*
4831
4832 COUNTER SUBSYSTEM
4833 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4834 L: linux-iio@vger.kernel.org
4835 S: Maintained
4836 F: Documentation/ABI/testing/sysfs-bus-counter
4837 F: Documentation/driver-api/generic-counter.rst
4838 F: drivers/counter/
4839 F: include/linux/counter.h
4840 F: include/linux/counter_enum.h
4841
4842 CP2615 I2C DRIVER
4843 M: Bence Csókás <bence98@sch.bme.hu>
4844 S: Maintained
4845 F: drivers/i2c/busses/i2c-cp2615.c
4846
4847 CPMAC ETHERNET DRIVER
4848 M: Florian Fainelli <f.fainelli@gmail.com>
4849 L: netdev@vger.kernel.org
4850 S: Maintained
4851 F: drivers/net/ethernet/ti/cpmac.c
4852
4853 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4854 M: Viresh Kumar <viresh.kumar@linaro.org>
4855 M: Sudeep Holla <sudeep.holla@arm.com>
4856 L: linux-pm@vger.kernel.org
4857 S: Maintained
4858 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4859 F: drivers/cpufreq/vexpress-spc-cpufreq.c
4860
4861 CPU FREQUENCY SCALING FRAMEWORK
4862 M: "Rafael J. Wysocki" <rafael@kernel.org>
4863 M: Viresh Kumar <viresh.kumar@linaro.org>
4864 L: linux-pm@vger.kernel.org
4865 S: Maintained
4866 B: https://bugzilla.kernel.org
4867 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4868 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4869 F: Documentation/admin-guide/pm/cpufreq.rst
4870 F: Documentation/admin-guide/pm/intel_pstate.rst
4871 F: Documentation/cpu-freq/
4872 F: Documentation/devicetree/bindings/cpufreq/
4873 F: drivers/cpufreq/
4874 F: include/linux/cpufreq.h
4875 F: include/linux/sched/cpufreq.h
4876 F: kernel/sched/cpufreq*.c
4877 F: tools/testing/selftests/cpufreq/
4878
4879 CPU IDLE TIME MANAGEMENT FRAMEWORK
4880 M: "Rafael J. Wysocki" <rafael@kernel.org>
4881 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4882 L: linux-pm@vger.kernel.org
4883 S: Maintained
4884 B: https://bugzilla.kernel.org
4885 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4886 F: Documentation/admin-guide/pm/cpuidle.rst
4887 F: Documentation/driver-api/pm/cpuidle.rst
4888 F: drivers/cpuidle/
4889 F: include/linux/cpuidle.h
4890
4891 CPU POWER MONITORING SUBSYSTEM
4892 M: Thomas Renninger <trenn@suse.com>
4893 M: Shuah Khan <shuah@kernel.org>
4894 M: Shuah Khan <skhan@linuxfoundation.org>
4895 L: linux-pm@vger.kernel.org
4896 S: Maintained
4897 F: tools/power/cpupower/
4898
4899 CPUID/MSR DRIVER
4900 M: "H. Peter Anvin" <hpa@zytor.com>
4901 S: Maintained
4902 F: arch/x86/kernel/cpuid.c
4903 F: arch/x86/kernel/msr.c
4904
4905 CPUIDLE DRIVER - ARM BIG LITTLE
4906 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4907 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4908 L: linux-pm@vger.kernel.org
4909 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4910 S: Maintained
4911 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4912 F: drivers/cpuidle/cpuidle-big_little.c
4913
4914 CPUIDLE DRIVER - ARM EXYNOS
4915 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4916 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4917 M: Kukjin Kim <kgene@kernel.org>
4918 L: linux-pm@vger.kernel.org
4919 L: linux-samsung-soc@vger.kernel.org
4920 S: Supported
4921 F: arch/arm/mach-exynos/pm.c
4922 F: drivers/cpuidle/cpuidle-exynos.c
4923 F: include/linux/platform_data/cpuidle-exynos.h
4924
4925 CPUIDLE DRIVER - ARM PSCI
4926 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4927 M: Sudeep Holla <sudeep.holla@arm.com>
4928 L: linux-pm@vger.kernel.org
4929 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4930 S: Supported
4931 F: drivers/cpuidle/cpuidle-psci.c
4932
4933 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4934 M: Ulf Hansson <ulf.hansson@linaro.org>
4935 L: linux-pm@vger.kernel.org
4936 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4937 S: Supported
4938 F: drivers/cpuidle/cpuidle-psci.h
4939 F: drivers/cpuidle/cpuidle-psci-domain.c
4940
4941 CRAMFS FILESYSTEM
4942 M: Nicolas Pitre <nico@fluxnic.net>
4943 S: Maintained
4944 F: Documentation/filesystems/cramfs.rst
4945 F: fs/cramfs/
4946
4947 CREATIVE SB0540
4948 M: Bastien Nocera <hadess@hadess.net>
4949 L: linux-input@vger.kernel.org
4950 S: Maintained
4951 F: drivers/hid/hid-creative-sb0540.c
4952
4953 CRYPTO API
4954 M: Herbert Xu <herbert@gondor.apana.org.au>
4955 M: "David S. Miller" <davem@davemloft.net>
4956 L: linux-crypto@vger.kernel.org
4957 S: Maintained
4958 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4959 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4960 F: Documentation/crypto/
4961 F: Documentation/devicetree/bindings/crypto/
4962 F: arch/*/crypto/
4963 F: crypto/
4964 F: drivers/crypto/
4965 F: include/crypto/
4966 F: include/linux/crypto*
4967 F: lib/crypto/
4968
4969 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4970 M: Neil Horman <nhorman@tuxdriver.com>
4971 L: linux-crypto@vger.kernel.org
4972 S: Maintained
4973 F: crypto/ansi_cprng.c
4974 F: crypto/rng.c
4975
4976 CS3308 MEDIA DRIVER
4977 M: Hans Verkuil <hverkuil@xs4all.nl>
4978 L: linux-media@vger.kernel.org
4979 S: Odd Fixes
4980 W: http://linuxtv.org
4981 T: git git://linuxtv.org/media_tree.git
4982 F: drivers/media/i2c/cs3308.c
4983
4984 CS5535 Audio ALSA driver
4985 M: Jaya Kumar <jayakumar.alsa@gmail.com>
4986 S: Maintained
4987 F: sound/pci/cs5535audio/
4988
4989 CSI DRIVERS FOR ALLWINNER V3s
4990 M: Yong Deng <yong.deng@magewell.com>
4991 L: linux-media@vger.kernel.org
4992 S: Maintained
4993 T: git git://linuxtv.org/media_tree.git
4994 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4995 F: drivers/media/platform/sunxi/sun6i-csi/
4996
4997 CW1200 WLAN driver
4998 M: Solomon Peachy <pizza@shaftnet.org>
4999 S: Maintained
5000 F: drivers/net/wireless/st/cw1200/
5001
5002 CX18 VIDEO4LINUX DRIVER
5003 M: Andy Walls <awalls@md.metrocast.net>
5004 L: linux-media@vger.kernel.org
5005 S: Maintained
5006 W: https://linuxtv.org
5007 T: git git://linuxtv.org/media_tree.git
5008 F: drivers/media/pci/cx18/
5009 F: include/uapi/linux/ivtv*
5010
5011 CX2341X MPEG ENCODER HELPER MODULE
5012 M: Hans Verkuil <hverkuil@xs4all.nl>
5013 L: linux-media@vger.kernel.org
5014 S: Maintained
5015 W: https://linuxtv.org
5016 T: git git://linuxtv.org/media_tree.git
5017 F: drivers/media/common/cx2341x*
5018 F: include/media/drv-intf/cx2341x.h
5019
5020 CX24120 MEDIA DRIVER
5021 M: Jemma Denson <jdenson@gmail.com>
5022 M: Patrick Boettcher <patrick.boettcher@posteo.de>
5023 L: linux-media@vger.kernel.org
5024 S: Maintained
5025 W: https://linuxtv.org
5026 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5027 F: drivers/media/dvb-frontends/cx24120*
5028
5029 CX88 VIDEO4LINUX DRIVER
5030 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5031 L: linux-media@vger.kernel.org
5032 S: Odd fixes
5033 W: https://linuxtv.org
5034 T: git git://linuxtv.org/media_tree.git
5035 F: Documentation/driver-api/media/drivers/cx88*
5036 F: drivers/media/pci/cx88/
5037
5038 CXD2820R MEDIA DRIVER
5039 M: Antti Palosaari <crope@iki.fi>
5040 L: linux-media@vger.kernel.org
5041 S: Maintained
5042 W: https://linuxtv.org
5043 W: http://palosaari.fi/linux/
5044 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5045 T: git git://linuxtv.org/anttip/media_tree.git
5046 F: drivers/media/dvb-frontends/cxd2820r*
5047
5048 CXGB3 ETHERNET DRIVER (CXGB3)
5049 M: Raju Rangoju <rajur@chelsio.com>
5050 L: netdev@vger.kernel.org
5051 S: Supported
5052 W: http://www.chelsio.com
5053 F: drivers/net/ethernet/chelsio/cxgb3/
5054
5055 CXGB3 ISCSI DRIVER (CXGB3I)
5056 M: Karen Xie <kxie@chelsio.com>
5057 L: linux-scsi@vger.kernel.org
5058 S: Supported
5059 W: http://www.chelsio.com
5060 F: drivers/scsi/cxgbi/cxgb3i
5061
5062 CXGB4 CRYPTO DRIVER (chcr)
5063 M: Ayush Sawal <ayush.sawal@chelsio.com>
5064 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5065 M: Rohit Maheshwari <rohitm@chelsio.com>
5066 L: linux-crypto@vger.kernel.org
5067 S: Supported
5068 W: http://www.chelsio.com
5069 F: drivers/crypto/chelsio
5070
5071 CXGB4 INLINE CRYPTO DRIVER
5072 M: Ayush Sawal <ayush.sawal@chelsio.com>
5073 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5074 M: Rohit Maheshwari <rohitm@chelsio.com>
5075 L: netdev@vger.kernel.org
5076 S: Supported
5077 W: http://www.chelsio.com
5078 F: drivers/net/ethernet/chelsio/inline_crypto/
5079
5080 CXGB4 ETHERNET DRIVER (CXGB4)
5081 M: Raju Rangoju <rajur@chelsio.com>
5082 L: netdev@vger.kernel.org
5083 S: Supported
5084 W: http://www.chelsio.com
5085 F: drivers/net/ethernet/chelsio/cxgb4/
5086
5087 CXGB4 ISCSI DRIVER (CXGB4I)
5088 M: Karen Xie <kxie@chelsio.com>
5089 L: linux-scsi@vger.kernel.org
5090 S: Supported
5091 W: http://www.chelsio.com
5092 F: drivers/scsi/cxgbi/cxgb4i
5093
5094 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5095 M: Potnuri Bharat Teja <bharat@chelsio.com>
5096 L: linux-rdma@vger.kernel.org
5097 S: Supported
5098 W: http://www.openfabrics.org
5099 F: drivers/infiniband/hw/cxgb4/
5100 F: include/uapi/rdma/cxgb4-abi.h
5101
5102 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5103 M: Raju Rangoju <rajur@chelsio.com>
5104 L: netdev@vger.kernel.org
5105 S: Supported
5106 W: http://www.chelsio.com
5107 F: drivers/net/ethernet/chelsio/cxgb4vf/
5108
5109 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5110 M: Frederic Barrat <fbarrat@linux.ibm.com>
5111 M: Andrew Donnellan <ajd@linux.ibm.com>
5112 L: linuxppc-dev@lists.ozlabs.org
5113 S: Supported
5114 F: Documentation/ABI/testing/sysfs-class-cxl
5115 F: Documentation/powerpc/cxl.rst
5116 F: arch/powerpc/platforms/powernv/pci-cxl.c
5117 F: drivers/misc/cxl/
5118 F: include/misc/cxl*
5119 F: include/uapi/misc/cxl.h
5120
5121 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5122 M: Manoj N. Kumar <manoj@linux.ibm.com>
5123 M: Matthew R. Ochs <mrochs@linux.ibm.com>
5124 M: Uma Krishnan <ukrishn@linux.ibm.com>
5125 L: linux-scsi@vger.kernel.org
5126 S: Supported
5127 F: Documentation/powerpc/cxlflash.rst
5128 F: drivers/scsi/cxlflash/
5129 F: include/uapi/scsi/cxlflash_ioctl.h
5130
5131 CYBERPRO FB DRIVER
5132 M: Russell King <linux@armlinux.org.uk>
5133 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5134 S: Maintained
5135 W: http://www.armlinux.org.uk/
5136 F: drivers/video/fbdev/cyber2000fb.*
5137
5138 CYCLADES PC300 DRIVER
5139 S: Orphan
5140 F: drivers/net/wan/pc300*
5141
5142 CYPRESS_FIRMWARE MEDIA DRIVER
5143 M: Antti Palosaari <crope@iki.fi>
5144 L: linux-media@vger.kernel.org
5145 S: Maintained
5146 W: https://linuxtv.org
5147 W: http://palosaari.fi/linux/
5148 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5149 T: git git://linuxtv.org/anttip/media_tree.git
5150 F: drivers/media/common/cypress_firmware*
5151
5152 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5153 M: Linus Walleij <linus.walleij@linaro.org>
5154 L: linux-input@vger.kernel.org
5155 S: Maintained
5156 F: drivers/input/touchscreen/cy8ctma140.c
5157
5158 CYTTSP TOUCHSCREEN DRIVER
5159 M: Linus Walleij <linus.walleij@linaro.org>
5160 L: linux-input@vger.kernel.org
5161 S: Maintained
5162 F: drivers/input/touchscreen/cyttsp*
5163
5164 D-LINK DIR-685 TOUCHKEYS DRIVER
5165 M: Linus Walleij <linus.walleij@linaro.org>
5166 L: linux-input@vger.kernel.org
5167 S: Supported
5168 F: drivers/input/keyboard/dlink-dir685-touchkeys.c
5169
5170 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5171 M: Joshua Kinard <kumba@gentoo.org>
5172 S: Maintained
5173 F: drivers/rtc/rtc-ds1685.c
5174 F: include/linux/rtc/ds1685.h
5175
5176 DAMA SLAVE for AX.25
5177 M: Joerg Reuter <jreuter@yaina.de>
5178 L: linux-hams@vger.kernel.org
5179 S: Maintained
5180 W: http://yaina.de/jreuter/
5181 W: http://www.qsl.net/dl1bke/
5182 F: net/ax25/af_ax25.c
5183 F: net/ax25/ax25_dev.c
5184 F: net/ax25/ax25_ds_*
5185 F: net/ax25/ax25_in.c
5186 F: net/ax25/ax25_out.c
5187 F: net/ax25/ax25_timer.c
5188 F: net/ax25/sysctl_net_ax25.c
5189
5190 DATA ACCESS MONITOR
5191 M: SeongJae Park <sjpark@amazon.de>
5192 L: linux-mm@kvack.org
5193 S: Maintained
5194 F: Documentation/admin-guide/mm/damon/
5195 F: Documentation/vm/damon/
5196 F: include/linux/damon.h
5197 F: include/trace/events/damon.h
5198 F: mm/damon/
5199 F: tools/testing/selftests/damon/
5200
5201 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5202 L: netdev@vger.kernel.org
5203 S: Orphan
5204 F: Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5205 F: drivers/net/ethernet/dec/tulip/dmfe.c
5206
5207 DC390/AM53C974 SCSI driver
5208 M: Hannes Reinecke <hare@suse.com>
5209 L: linux-scsi@vger.kernel.org
5210 S: Maintained
5211 F: drivers/scsi/am53c974.c
5212
5213 DC395x SCSI driver
5214 M: Oliver Neukum <oliver@neukum.org>
5215 M: Ali Akcaagac <aliakc@web.de>
5216 M: Jamie Lenehan <lenehan@twibble.org>
5217 L: dc395x@twibble.org
5218 S: Maintained
5219 W: http://twibble.org/dist/dc395x/
5220 W: http://lists.twibble.org/mailman/listinfo/dc395x/
5221 F: Documentation/scsi/dc395x.rst
5222 F: drivers/scsi/dc395x.*
5223
5224 DCCP PROTOCOL
5225 L: dccp@vger.kernel.org
5226 S: Orphan
5227 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5228 F: include/linux/dccp.h
5229 F: include/linux/tfrc.h
5230 F: include/uapi/linux/dccp.h
5231 F: net/dccp/
5232
5233 DECnet NETWORK LAYER
5234 L: linux-decnet-user@lists.sourceforge.net
5235 S: Orphan
5236 W: http://linux-decnet.sourceforge.net
5237 F: Documentation/networking/decnet.rst
5238 F: net/decnet/
5239
5240 DECSTATION PLATFORM SUPPORT
5241 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5242 L: linux-mips@vger.kernel.org
5243 S: Maintained
5244 W: http://www.linux-mips.org/wiki/DECstation
5245 F: arch/mips/dec/
5246 F: arch/mips/include/asm/dec/
5247 F: arch/mips/include/asm/mach-dec/
5248
5249 DEFXX FDDI NETWORK DRIVER
5250 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5251 S: Maintained
5252 F: drivers/net/fddi/defxx.*
5253
5254 DEFZA FDDI NETWORK DRIVER
5255 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5256 S: Maintained
5257 F: drivers/net/fddi/defza.*
5258
5259 DEINTERLACE DRIVERS FOR ALLWINNER H3
5260 M: Jernej Skrabec <jernej.skrabec@gmail.com>
5261 L: linux-media@vger.kernel.org
5262 S: Maintained
5263 T: git git://linuxtv.org/media_tree.git
5264 F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5265 F: drivers/media/platform/sunxi/sun8i-di/
5266
5267 DELL LAPTOP DRIVER
5268 M: Matthew Garrett <mjg59@srcf.ucam.org>
5269 M: Pali Rohár <pali@kernel.org>
5270 L: platform-driver-x86@vger.kernel.org
5271 S: Maintained
5272 F: drivers/platform/x86/dell/dell-laptop.c
5273
5274 DELL LAPTOP FREEFALL DRIVER
5275 M: Pali Rohár <pali@kernel.org>
5276 S: Maintained
5277 F: drivers/platform/x86/dell/dell-smo8800.c
5278
5279 DELL LAPTOP RBTN DRIVER
5280 M: Pali Rohár <pali@kernel.org>
5281 S: Maintained
5282 F: drivers/platform/x86/dell/dell-rbtn.*
5283
5284 DELL LAPTOP SMM DRIVER
5285 M: Pali Rohár <pali@kernel.org>
5286 S: Maintained
5287 F: drivers/hwmon/dell-smm-hwmon.c
5288 F: include/uapi/linux/i8k.h
5289
5290 DELL REMOTE BIOS UPDATE DRIVER
5291 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5292 L: platform-driver-x86@vger.kernel.org
5293 S: Maintained
5294 F: drivers/platform/x86/dell/dell_rbu.c
5295
5296 DELL SMBIOS DRIVER
5297 M: Pali Rohár <pali@kernel.org>
5298 L: Dell.Client.Kernel@dell.com
5299 L: platform-driver-x86@vger.kernel.org
5300 S: Maintained
5301 F: drivers/platform/x86/dell/dell-smbios.*
5302
5303 DELL SMBIOS SMM DRIVER
5304 L: Dell.Client.Kernel@dell.com
5305 L: platform-driver-x86@vger.kernel.org
5306 S: Maintained
5307 F: drivers/platform/x86/dell/dell-smbios-smm.c
5308
5309 DELL SMBIOS WMI DRIVER
5310 L: Dell.Client.Kernel@dell.com
5311 L: platform-driver-x86@vger.kernel.org
5312 S: Maintained
5313 F: drivers/platform/x86/dell/dell-smbios-wmi.c
5314 F: tools/wmi/dell-smbios-example.c
5315
5316 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5317 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5318 L: platform-driver-x86@vger.kernel.org
5319 S: Maintained
5320 F: Documentation/driver-api/dcdbas.rst
5321 F: drivers/platform/x86/dell/dcdbas.*
5322
5323 DELL WMI DESCRIPTOR DRIVER
5324 L: Dell.Client.Kernel@dell.com
5325 S: Maintained
5326 F: drivers/platform/x86/dell/dell-wmi-descriptor.c
5327
5328 DELL WMI SYSMAN DRIVER
5329 M: Divya Bharathi <divya.bharathi@dell.com>
5330 M: Prasanth Ksr <prasanth.ksr@dell.com>
5331 L: Dell.Client.Kernel@dell.com
5332 L: platform-driver-x86@vger.kernel.org
5333 S: Maintained
5334 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
5335 F: drivers/platform/x86/dell/dell-wmi-sysman/
5336
5337 DELL WMI NOTIFICATIONS DRIVER
5338 M: Matthew Garrett <mjg59@srcf.ucam.org>
5339 M: Pali Rohár <pali@kernel.org>
5340 S: Maintained
5341 F: drivers/platform/x86/dell/dell-wmi-base.c
5342
5343 DELL WMI HARDWARE PRIVACY SUPPORT
5344 M: Perry Yuan <Perry.Yuan@dell.com>
5345 L: Dell.Client.Kernel@dell.com
5346 L: platform-driver-x86@vger.kernel.org
5347 S: Maintained
5348 F: drivers/platform/x86/dell/dell-wmi-privacy.c
5349
5350 DELTA ST MEDIA DRIVER
5351 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
5352 L: linux-media@vger.kernel.org
5353 S: Supported
5354 W: https://linuxtv.org
5355 T: git git://linuxtv.org/media_tree.git
5356 F: drivers/media/platform/sti/delta
5357
5358 DELTA DPS920AB PSU DRIVER
5359 M: Robert Marko <robert.marko@sartura.hr>
5360 L: linux-hwmon@vger.kernel.org
5361 S: Maintained
5362 F: Documentation/hwmon/dps920ab.rst
5363 F: drivers/hwmon/pmbus/dps920ab.c
5364
5365 DENALI NAND DRIVER
5366 L: linux-mtd@lists.infradead.org
5367 S: Orphan
5368 F: drivers/mtd/nand/raw/denali*
5369
5370 DESIGNWARE EDMA CORE IP DRIVER
5371 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5372 L: dmaengine@vger.kernel.org
5373 S: Maintained
5374 F: drivers/dma/dw-edma/
5375 F: include/linux/dma/edma.h
5376
5377 DESIGNWARE XDATA IP DRIVER
5378 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5379 L: linux-pci@vger.kernel.org
5380 S: Maintained
5381 F: Documentation/misc-devices/dw-xdata-pcie.rst
5382 F: drivers/misc/dw-xdata-pcie.c
5383
5384 DESIGNWARE USB2 DRD IP DRIVER
5385 M: Minas Harutyunyan <hminas@synopsys.com>
5386 L: linux-usb@vger.kernel.org
5387 S: Maintained
5388 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5389 F: drivers/usb/dwc2/
5390
5391 DESIGNWARE USB3 DRD IP DRIVER
5392 M: Felipe Balbi <balbi@kernel.org>
5393 L: linux-usb@vger.kernel.org
5394 S: Maintained
5395 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5396 F: drivers/usb/dwc3/
5397
5398 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5399 M: Andreas Klinger <ak@it-klinger.de>
5400 L: linux-iio@vger.kernel.org
5401 S: Maintained
5402 F: Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5403 F: drivers/iio/proximity/srf*.c
5404
5405 DEVICE COREDUMP (DEV_COREDUMP)
5406 M: Johannes Berg <johannes@sipsolutions.net>
5407 L: linux-kernel@vger.kernel.org
5408 S: Maintained
5409 F: drivers/base/devcoredump.c
5410 F: include/linux/devcoredump.h
5411
5412 DEVICE DEPENDENCY HELPER SCRIPT
5413 M: Saravana Kannan <saravanak@google.com>
5414 L: linux-kernel@vger.kernel.org
5415 S: Maintained
5416 F: scripts/dev-needs.sh
5417
5418 DEVICE DIRECT ACCESS (DAX)
5419 M: Dan Williams <dan.j.williams@intel.com>
5420 M: Vishal Verma <vishal.l.verma@intel.com>
5421 M: Dave Jiang <dave.jiang@intel.com>
5422 L: nvdimm@lists.linux.dev
5423 S: Supported
5424 F: drivers/dax/
5425
5426 DEVICE FREQUENCY (DEVFREQ)
5427 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5428 M: Kyungmin Park <kyungmin.park@samsung.com>
5429 M: Chanwoo Choi <cw00.choi@samsung.com>
5430 L: linux-pm@vger.kernel.org
5431 S: Maintained
5432 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5433 F: Documentation/devicetree/bindings/devfreq/
5434 F: drivers/devfreq/
5435 F: include/linux/devfreq.h
5436 F: include/trace/events/devfreq.h
5437
5438 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5439 M: Chanwoo Choi <cw00.choi@samsung.com>
5440 L: linux-pm@vger.kernel.org
5441 S: Supported
5442 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5443 F: Documentation/devicetree/bindings/devfreq/event/
5444 F: drivers/devfreq/devfreq-event.c
5445 F: drivers/devfreq/event/
5446 F: include/dt-bindings/pmu/exynos_ppmu.h
5447 F: include/linux/devfreq-event.h
5448
5449 DEVICE NUMBER REGISTRY
5450 M: Torben Mathiasen <device@lanana.org>
5451 S: Maintained
5452 W: http://lanana.org/docs/device-list/index.html
5453
5454 DEVICE RESOURCE MANAGEMENT HELPERS
5455 M: Hans de Goede <hdegoede@redhat.com>
5456 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5457 S: Maintained
5458 F: include/linux/devm-helpers.h
5459
5460 DEVICE-MAPPER (LVM)
5461 M: Alasdair Kergon <agk@redhat.com>
5462 M: Mike Snitzer <snitzer@redhat.com>
5463 M: dm-devel@redhat.com
5464 L: dm-devel@redhat.com
5465 S: Maintained
5466 W: http://sources.redhat.com/dm
5467 Q: http://patchwork.kernel.org/project/dm-devel/list/
5468 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5469 T: quilt http://people.redhat.com/agk/patches/linux/editing/
5470 F: Documentation/admin-guide/device-mapper/
5471 F: drivers/md/Kconfig
5472 F: drivers/md/Makefile
5473 F: drivers/md/dm*
5474 F: drivers/md/persistent-data/
5475 F: include/linux/device-mapper.h
5476 F: include/linux/dm-*.h
5477 F: include/uapi/linux/dm-*.h
5478
5479 DEVLINK
5480 M: Jiri Pirko <jiri@nvidia.com>
5481 L: netdev@vger.kernel.org
5482 S: Supported
5483 F: Documentation/networking/devlink
5484 F: include/net/devlink.h
5485 F: include/uapi/linux/devlink.h
5486 F: net/core/devlink.c
5487
5488 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5489 M: Christoph Niedermaier <cniedermaier@dh-electronics.com>
5490 L: kernel@dh-electronics.com
5491 S: Maintained
5492 F: arch/arm/boot/dts/imx6*-dhcom-*
5493
5494 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5495 M: Marek Vasut <marex@denx.de>
5496 L: kernel@dh-electronics.com
5497 S: Maintained
5498 F: arch/arm/boot/dts/stm32mp1*-dhcom-*
5499 F: arch/arm/boot/dts/stm32mp1*-dhcor-*
5500
5501 DIALOG SEMICONDUCTOR DRIVERS
5502 M: Support Opensource <support.opensource@diasemi.com>
5503 S: Supported
5504 W: http://www.dialog-semiconductor.com/products
5505 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
5506 F: Documentation/devicetree/bindings/input/dlg,da72??.txt
5507 F: Documentation/devicetree/bindings/mfd/da90*.txt
5508 F: Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5509 F: Documentation/devicetree/bindings/regulator/da92*.txt
5510 F: Documentation/devicetree/bindings/regulator/slg51000.txt
5511 F: Documentation/devicetree/bindings/sound/da[79]*.txt
5512 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5513 F: Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5514 F: Documentation/hwmon/da90??.rst
5515 F: drivers/gpio/gpio-da90??.c
5516 F: drivers/hwmon/da90??-hwmon.c
5517 F: drivers/iio/adc/da91??-*.c
5518 F: drivers/input/misc/da72??.[ch]
5519 F: drivers/input/misc/da90??_onkey.c
5520 F: drivers/input/touchscreen/da9052_tsi.c
5521 F: drivers/leds/leds-da90??.c
5522 F: drivers/mfd/da903x.c
5523 F: drivers/mfd/da90??-*.c
5524 F: drivers/mfd/da91??-*.c
5525 F: drivers/pinctrl/pinctrl-da90??.c
5526 F: drivers/power/supply/da9052-battery.c
5527 F: drivers/power/supply/da91??-*.c
5528 F: drivers/regulator/da9???-regulator.[ch]
5529 F: drivers/regulator/slg51000-regulator.[ch]
5530 F: drivers/rtc/rtc-da90??.c
5531 F: drivers/thermal/da90??-thermal.c
5532 F: drivers/video/backlight/da90??_bl.c
5533 F: drivers/watchdog/da90??_wdt.c
5534 F: include/dt-bindings/regulator/dlg,da9*-regulator.h
5535 F: include/linux/mfd/da903x.h
5536 F: include/linux/mfd/da9052/
5537 F: include/linux/mfd/da9055/
5538 F: include/linux/mfd/da9062/
5539 F: include/linux/mfd/da9063/
5540 F: include/linux/mfd/da9150/
5541 F: include/linux/regulator/da9211.h
5542 F: include/sound/da[79]*.h
5543 F: sound/soc/codecs/da[79]*.[ch]
5544
5545 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5546 M: William Breathitt Gray <vilhelm.gray@gmail.com>
5547 L: linux-gpio@vger.kernel.org
5548 S: Maintained
5549 F: drivers/gpio/gpio-gpio-mm.c
5550
5551 DIOLAN U2C-12 I2C DRIVER
5552 M: Guenter Roeck <linux@roeck-us.net>
5553 L: linux-i2c@vger.kernel.org
5554 S: Maintained
5555 F: drivers/i2c/busses/i2c-diolan-u2c.c
5556
5557 DIRECTORY NOTIFICATION (DNOTIFY)
5558 M: Jan Kara <jack@suse.cz>
5559 R: Amir Goldstein <amir73il@gmail.com>
5560 L: linux-fsdevel@vger.kernel.org
5561 S: Maintained
5562 F: Documentation/filesystems/dnotify.rst
5563 F: fs/notify/dnotify/
5564 F: include/linux/dnotify.h
5565
5566 DISK GEOMETRY AND PARTITION HANDLING
5567 M: Andries Brouwer <aeb@cwi.nl>
5568 S: Maintained
5569 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5570 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5571 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5572
5573 DISKQUOTA
5574 M: Jan Kara <jack@suse.com>
5575 S: Maintained
5576 F: Documentation/filesystems/quota.rst
5577 F: fs/quota/
5578 F: include/linux/quota*.h
5579 F: include/uapi/linux/quota*.h
5580
5581 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5582 M: Bernie Thompson <bernie@plugable.com>
5583 L: linux-fbdev@vger.kernel.org
5584 S: Maintained
5585 W: http://plugable.com/category/projects/udlfb/
5586 F: Documentation/fb/udlfb.rst
5587 F: drivers/video/fbdev/udlfb.c
5588 F: include/video/udlfb.h
5589
5590 DISTRIBUTED LOCK MANAGER (DLM)
5591 M: Christine Caulfield <ccaulfie@redhat.com>
5592 M: David Teigland <teigland@redhat.com>
5593 L: cluster-devel@redhat.com
5594 S: Supported
5595 W: http://sources.redhat.com/cluster/
5596 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5597 F: fs/dlm/
5598
5599 DMA BUFFER SHARING FRAMEWORK
5600 M: Sumit Semwal <sumit.semwal@linaro.org>
5601 M: Christian König <christian.koenig@amd.com>
5602 L: linux-media@vger.kernel.org
5603 L: dri-devel@lists.freedesktop.org
5604 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5605 S: Maintained
5606 T: git git://anongit.freedesktop.org/drm/drm-misc
5607 F: Documentation/driver-api/dma-buf.rst
5608 F: drivers/dma-buf/
5609 F: include/linux/*fence.h
5610 F: include/linux/dma-buf*
5611 F: include/linux/dma-resv.h
5612 K: \bdma_(?:buf|fence|resv)\b
5613
5614 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5615 M: Vinod Koul <vkoul@kernel.org>
5616 L: dmaengine@vger.kernel.org
5617 S: Maintained
5618 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5619 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5620 F: Documentation/devicetree/bindings/dma/
5621 F: Documentation/driver-api/dmaengine/
5622 F: drivers/dma/
5623 F: include/linux/dma/
5624 F: include/linux/dmaengine.h
5625 F: include/linux/of_dma.h
5626
5627 DMA MAPPING HELPERS
5628 M: Christoph Hellwig <hch@lst.de>
5629 M: Marek Szyprowski <m.szyprowski@samsung.com>
5630 R: Robin Murphy <robin.murphy@arm.com>
5631 L: iommu@lists.linux-foundation.org
5632 S: Supported
5633 W: http://git.infradead.org/users/hch/dma-mapping.git
5634 T: git git://git.infradead.org/users/hch/dma-mapping.git
5635 F: include/asm-generic/dma-mapping.h
5636 F: include/linux/dma-direct.h
5637 F: include/linux/dma-mapping.h
5638 F: include/linux/dma-map-ops.h
5639 F: kernel/dma/
5640
5641 DMA MAPPING BENCHMARK
5642 M: Barry Song <song.bao.hua@hisilicon.com>
5643 L: iommu@lists.linux-foundation.org
5644 F: kernel/dma/map_benchmark.c
5645 F: tools/testing/selftests/dma/
5646
5647 DMA-BUF HEAPS FRAMEWORK
5648 M: Sumit Semwal <sumit.semwal@linaro.org>
5649 R: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5650 R: Liam Mark <lmark@codeaurora.org>
5651 R: Laura Abbott <labbott@redhat.com>
5652 R: Brian Starkey <Brian.Starkey@arm.com>
5653 R: John Stultz <john.stultz@linaro.org>
5654 L: linux-media@vger.kernel.org
5655 L: dri-devel@lists.freedesktop.org
5656 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5657 S: Maintained
5658 T: git git://anongit.freedesktop.org/drm/drm-misc
5659 F: drivers/dma-buf/dma-heap.c
5660 F: drivers/dma-buf/heaps/*
5661 F: include/linux/dma-heap.h
5662 F: include/uapi/linux/dma-heap.h
5663
5664 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5665 M: Lukasz Luba <lukasz.luba@arm.com>
5666 L: linux-pm@vger.kernel.org
5667 L: linux-samsung-soc@vger.kernel.org
5668 S: Maintained
5669 F: Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5670 F: drivers/memory/samsung/exynos5422-dmc.c
5671
5672 DME1737 HARDWARE MONITOR DRIVER
5673 M: Juerg Haefliger <juergh@gmail.com>
5674 L: linux-hwmon@vger.kernel.org
5675 S: Maintained
5676 F: Documentation/hwmon/dme1737.rst
5677 F: drivers/hwmon/dme1737.c
5678
5679 DMI/SMBIOS SUPPORT
5680 M: Jean Delvare <jdelvare@suse.com>
5681 S: Maintained
5682 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5683 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
5684 F: drivers/firmware/dmi-id.c
5685 F: drivers/firmware/dmi_scan.c
5686 F: include/linux/dmi.h
5687
5688 DOCUMENTATION
5689 M: Jonathan Corbet <corbet@lwn.net>
5690 L: linux-doc@vger.kernel.org
5691 S: Maintained
5692 P: Documentation/doc-guide/maintainer-profile.rst
5693 T: git git://git.lwn.net/linux.git docs-next
5694 F: Documentation/
5695 F: scripts/documentation-file-ref-check
5696 F: scripts/kernel-doc
5697 F: scripts/sphinx-pre-install
5698 X: Documentation/ABI/
5699 X: Documentation/admin-guide/media/
5700 X: Documentation/devicetree/
5701 X: Documentation/driver-api/media/
5702 X: Documentation/firmware-guide/acpi/
5703 X: Documentation/i2c/
5704 X: Documentation/power/
5705 X: Documentation/spi/
5706 X: Documentation/userspace-api/media/
5707
5708 DOCUMENTATION REPORTING ISSUES
5709 M: Thorsten Leemhuis <linux@leemhuis.info>
5710 L: linux-doc@vger.kernel.org
5711 S: Maintained
5712 F: Documentation/admin-guide/reporting-issues.rst
5713
5714 DOCUMENTATION SCRIPTS
5715 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5716 L: linux-doc@vger.kernel.org
5717 S: Maintained
5718 F: Documentation/sphinx/parse-headers.pl
5719 F: scripts/documentation-file-ref-check
5720 F: scripts/sphinx-pre-install
5721
5722 DOCUMENTATION/ITALIAN
5723 M: Federico Vaga <federico.vaga@vaga.pv.it>
5724 L: linux-doc@vger.kernel.org
5725 S: Maintained
5726 F: Documentation/translations/it_IT
5727
5728 DONGWOON DW9714 LENS VOICE COIL DRIVER
5729 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5730 L: linux-media@vger.kernel.org
5731 S: Maintained
5732 T: git git://linuxtv.org/media_tree.git
5733 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5734 F: drivers/media/i2c/dw9714.c
5735
5736 DONGWOON DW9768 LENS VOICE COIL DRIVER
5737 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
5738 L: linux-media@vger.kernel.org
5739 S: Maintained
5740 T: git git://linuxtv.org/media_tree.git
5741 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5742 F: drivers/media/i2c/dw9768.c
5743
5744 DONGWOON DW9807 LENS VOICE COIL DRIVER
5745 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5746 L: linux-media@vger.kernel.org
5747 S: Maintained
5748 T: git git://linuxtv.org/media_tree.git
5749 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5750 F: drivers/media/i2c/dw9807-vcm.c
5751
5752 DOUBLETALK DRIVER
5753 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
5754 L: blinux-list@redhat.com
5755 S: Maintained
5756 F: drivers/char/dtlk.c
5757 F: include/linux/dtlk.h
5758
5759 DPAA2 DATAPATH I/O (DPIO) DRIVER
5760 M: Roy Pledge <Roy.Pledge@nxp.com>
5761 L: linux-kernel@vger.kernel.org
5762 S: Maintained
5763 F: drivers/soc/fsl/dpio
5764
5765 DPAA2 ETHERNET DRIVER
5766 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5767 L: netdev@vger.kernel.org
5768 S: Maintained
5769 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5770 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5771 F: drivers/net/ethernet/freescale/dpaa2/Kconfig
5772 F: drivers/net/ethernet/freescale/dpaa2/Makefile
5773 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5774 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5775 F: drivers/net/ethernet/freescale/dpaa2/dpkg.h
5776 F: drivers/net/ethernet/freescale/dpaa2/dpmac*
5777 F: drivers/net/ethernet/freescale/dpaa2/dpni*
5778
5779 DPAA2 ETHERNET SWITCH DRIVER
5780 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5781 L: netdev@vger.kernel.org
5782 S: Maintained
5783 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5784 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5785 F: drivers/net/ethernet/freescale/dpaa2/dpsw*
5786
5787 DPT_I2O SCSI RAID DRIVER
5788 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5789 L: linux-scsi@vger.kernel.org
5790 S: Maintained
5791 W: http://www.adaptec.com/
5792 F: drivers/scsi/dpt*
5793 F: drivers/scsi/dpt/
5794
5795 DRBD DRIVER
5796 M: Philipp Reisner <philipp.reisner@linbit.com>
5797 M: Lars Ellenberg <lars.ellenberg@linbit.com>
5798 L: drbd-dev@lists.linbit.com
5799 S: Supported
5800 W: http://www.drbd.org
5801 T: git git://git.linbit.com/linux-drbd.git
5802 T: git git://git.linbit.com/drbd-8.4.git
5803 F: Documentation/admin-guide/blockdev/
5804 F: drivers/block/drbd/
5805 F: lib/lru_cache.c
5806
5807 DRIVER COMPONENT FRAMEWORK
5808 L: dri-devel@lists.freedesktop.org
5809 F: drivers/base/component.c
5810 F: include/linux/component.h
5811
5812 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5813 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5814 R: "Rafael J. Wysocki" <rafael@kernel.org>
5815 S: Supported
5816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5817 F: Documentation/core-api/kobject.rst
5818 F: drivers/base/
5819 F: fs/debugfs/
5820 F: fs/sysfs/
5821 F: include/linux/debugfs.h
5822 F: include/linux/kobj*
5823 F: lib/kobj*
5824
5825 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5826 M: Nishanth Menon <nm@ti.com>
5827 L: linux-pm@vger.kernel.org
5828 S: Maintained
5829 F: drivers/soc/ti/smartreflex.c
5830 F: include/linux/power/smartreflex.h
5831
5832 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5833 M: Maxime Ripard <mripard@kernel.org>
5834 M: Chen-Yu Tsai <wens@csie.org>
5835 R: Jernej Skrabec <jernej.skrabec@gmail.com>
5836 L: dri-devel@lists.freedesktop.org
5837 S: Supported
5838 T: git git://anongit.freedesktop.org/drm/drm-misc
5839 F: drivers/gpu/drm/sun4i/sun8i*
5840
5841 DRM DRIVER FOR ARM PL111 CLCD
5842 M: Emma Anholt <emma@anholt.net>
5843 S: Supported
5844 T: git git://anongit.freedesktop.org/drm/drm-misc
5845 F: drivers/gpu/drm/pl111/
5846
5847 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5848 M: Linus Walleij <linus.walleij@linaro.org>
5849 S: Maintained
5850 T: git git://anongit.freedesktop.org/drm/drm-misc
5851 F: Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5852 F: drivers/gpu/drm/panel/panel-arm-versatile.c
5853
5854 DRM DRIVER FOR ASPEED BMC GFX
5855 M: Joel Stanley <joel@jms.id.au>
5856 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5857 S: Supported
5858 T: git git://anongit.freedesktop.org/drm/drm-misc
5859 F: Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5860 F: drivers/gpu/drm/aspeed/
5861
5862 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5863 M: Dave Airlie <airlied@redhat.com>
5864 R: Thomas Zimmermann <tzimmermann@suse.de>
5865 L: dri-devel@lists.freedesktop.org
5866 S: Supported
5867 T: git git://anongit.freedesktop.org/drm/drm-misc
5868 F: drivers/gpu/drm/ast/
5869
5870 DRM DRIVER FOR BOCHS VIRTUAL GPU
5871 M: Gerd Hoffmann <kraxel@redhat.com>
5872 L: virtualization@lists.linux-foundation.org
5873 S: Maintained
5874 T: git git://anongit.freedesktop.org/drm/drm-misc
5875 F: drivers/gpu/drm/tiny/bochs.c
5876
5877 DRM DRIVER FOR BOE HIMAX8279D PANELS
5878 M: Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5879 S: Maintained
5880 F: Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5881 F: drivers/gpu/drm/panel/panel-boe-himax8279d.c
5882
5883 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5884 M: Jagan Teki <jagan@amarulasolutions.com>
5885 S: Maintained
5886 F: Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5887 F: drivers/gpu/drm/bridge/chipone-icn6211.c
5888
5889 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5890 M: Linus Walleij <linus.walleij@linaro.org>
5891 S: Maintained
5892 T: git git://anongit.freedesktop.org/drm/drm-misc
5893 F: drivers/gpu/drm/tve200/
5894
5895 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5896 M: Icenowy Zheng <icenowy@aosc.io>
5897 S: Maintained
5898 F: Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5899 F: drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5900
5901 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5902 M: Jagan Teki <jagan@amarulasolutions.com>
5903 S: Maintained
5904 F: Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5905 F: drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5906
5907 DRM DRIVER FOR GENERIC USB DISPLAY
5908 M: Noralf Trønnes <noralf@tronnes.org>
5909 S: Maintained
5910 W: https://github.com/notro/gud/wiki
5911 T: git git://anongit.freedesktop.org/drm/drm-misc
5912 F: drivers/gpu/drm/gud/
5913 F: include/drm/gud.h
5914
5915 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5916 M: Hans de Goede <hdegoede@redhat.com>
5917 S: Maintained
5918 T: git git://anongit.freedesktop.org/drm/drm-misc
5919 F: drivers/gpu/drm/tiny/gm12u320.c
5920
5921 DRM DRIVER FOR HX8357D PANELS
5922 M: Emma Anholt <emma@anholt.net>
5923 S: Maintained
5924 T: git git://anongit.freedesktop.org/drm/drm-misc
5925 F: Documentation/devicetree/bindings/display/himax,hx8357d.txt
5926 F: drivers/gpu/drm/tiny/hx8357d.c
5927
5928 DRM DRIVER FOR ILITEK ILI9225 PANELS
5929 M: David Lechner <david@lechnology.com>
5930 S: Maintained
5931 T: git git://anongit.freedesktop.org/drm/drm-misc
5932 F: Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5933 F: drivers/gpu/drm/tiny/ili9225.c
5934
5935 DRM DRIVER FOR ILITEK ILI9486 PANELS
5936 M: Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5937 S: Maintained
5938 T: git git://anongit.freedesktop.org/drm/drm-misc
5939 F: Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5940 F: drivers/gpu/drm/tiny/ili9486.c
5941
5942 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5943 S: Orphan / Obsolete
5944 F: drivers/gpu/drm/i810/
5945 F: include/uapi/drm/i810_drm.h
5946
5947 DRM DRIVER FOR LVDS PANELS
5948 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5949 L: dri-devel@lists.freedesktop.org
5950 T: git git://anongit.freedesktop.org/drm/drm-misc
5951 S: Maintained
5952 F: drivers/gpu/drm/panel/panel-lvds.c
5953 F: Documentation/devicetree/bindings/display/panel/lvds.yaml
5954
5955 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5956 M: Guido Günther <agx@sigxcpu.org>
5957 R: Purism Kernel Team <kernel@puri.sm>
5958 S: Maintained
5959 F: Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5960 F: drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5961
5962 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5963 S: Orphan / Obsolete
5964 F: drivers/gpu/drm/mga/
5965 F: include/uapi/drm/mga_drm.h
5966
5967 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5968 M: Dave Airlie <airlied@redhat.com>
5969 R: Thomas Zimmermann <tzimmermann@suse.de>
5970 L: dri-devel@lists.freedesktop.org
5971 S: Supported
5972 T: git git://anongit.freedesktop.org/drm/drm-misc
5973 F: drivers/gpu/drm/mgag200/
5974
5975 DRM DRIVER FOR MI0283QT
5976 M: Noralf Trønnes <noralf@tronnes.org>
5977 S: Maintained
5978 T: git git://anongit.freedesktop.org/drm/drm-misc
5979 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5980 F: drivers/gpu/drm/tiny/mi0283qt.c
5981
5982 DRM DRIVER FOR MSM ADRENO GPU
5983 M: Rob Clark <robdclark@gmail.com>
5984 M: Sean Paul <sean@poorly.run>
5985 L: linux-arm-msm@vger.kernel.org
5986 L: dri-devel@lists.freedesktop.org
5987 L: freedreno@lists.freedesktop.org
5988 S: Maintained
5989 T: git https://gitlab.freedesktop.org/drm/msm.git
5990 F: Documentation/devicetree/bindings/display/msm/
5991 F: drivers/gpu/drm/msm/
5992 F: include/uapi/drm/msm_drm.h
5993
5994 DRM DRIVER FOR NOVATEK NT35510 PANELS
5995 M: Linus Walleij <linus.walleij@linaro.org>
5996 S: Maintained
5997 T: git git://anongit.freedesktop.org/drm/drm-misc
5998 F: Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5999 F: drivers/gpu/drm/panel/panel-novatek-nt35510.c
6000
6001 DRM DRIVER FOR NOVATEK NT36672A PANELS
6002 M: Sumit Semwal <sumit.semwal@linaro.org>
6003 S: Maintained
6004 T: git git://anongit.freedesktop.org/drm/drm-misc
6005 F: Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6006 F: drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6007
6008 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6009 M: Ben Skeggs <bskeggs@redhat.com>
6010 L: dri-devel@lists.freedesktop.org
6011 L: nouveau@lists.freedesktop.org
6012 S: Supported
6013 T: git git://github.com/skeggsb/linux
6014 F: drivers/gpu/drm/nouveau/
6015 F: include/uapi/drm/nouveau_drm.h
6016
6017 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6018 M: Stefan Mavrodiev <stefan@olimex.com>
6019 S: Maintained
6020 F: Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6021 F: drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6022
6023 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6024 M: Noralf Trønnes <noralf@tronnes.org>
6025 S: Maintained
6026 T: git git://anongit.freedesktop.org/drm/drm-misc
6027 F: Documentation/devicetree/bindings/display/repaper.txt
6028 F: drivers/gpu/drm/tiny/repaper.c
6029
6030 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6031 M: Dave Airlie <airlied@redhat.com>
6032 M: Gerd Hoffmann <kraxel@redhat.com>
6033 L: virtualization@lists.linux-foundation.org
6034 S: Obsolete
6035 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6036 T: git git://anongit.freedesktop.org/drm/drm-misc
6037 F: drivers/gpu/drm/tiny/cirrus.c
6038
6039 DRM DRIVER FOR QXL VIRTUAL GPU
6040 M: Dave Airlie <airlied@redhat.com>
6041 M: Gerd Hoffmann <kraxel@redhat.com>
6042 L: virtualization@lists.linux-foundation.org
6043 L: spice-devel@lists.freedesktop.org
6044 S: Maintained
6045 T: git git://anongit.freedesktop.org/drm/drm-misc
6046 F: drivers/gpu/drm/qxl/
6047 F: include/uapi/drm/qxl_drm.h
6048
6049 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6050 S: Orphan / Obsolete
6051 F: drivers/gpu/drm/r128/
6052 F: include/uapi/drm/r128_drm.h
6053
6054 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6055 M: Robert Chiras <robert.chiras@nxp.com>
6056 S: Maintained
6057 F: Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6058 F: drivers/gpu/drm/panel/panel-raydium-rm67191.c
6059
6060 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6061 M: Linus Walleij <linus.walleij@linaro.org>
6062 S: Maintained
6063 T: git git://anongit.freedesktop.org/drm/drm-misc
6064 F: Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6065 F: drivers/gpu/drm/panel/panel-samsung-db7430.c
6066
6067 DRM DRIVER FOR SITRONIX ST7703 PANELS
6068 M: Guido Günther <agx@sigxcpu.org>
6069 R: Purism Kernel Team <kernel@puri.sm>
6070 R: Ondrej Jirman <megous@megous.com>
6071 S: Maintained
6072 F: Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6073 F: drivers/gpu/drm/panel/panel-sitronix-st7703.c
6074
6075 DRM DRIVER FOR SAVAGE VIDEO CARDS
6076 S: Orphan / Obsolete
6077 F: drivers/gpu/drm/savage/
6078 F: include/uapi/drm/savage_drm.h
6079
6080 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6081 M: Thomas Zimmermann <tzimmermann@suse.de>
6082 L: dri-devel@lists.freedesktop.org
6083 S: Maintained
6084 T: git git://anongit.freedesktop.org/drm/drm-misc
6085 F: drivers/gpu/drm/tiny/simpledrm.c
6086
6087 DRM DRIVER FOR SIS VIDEO CARDS
6088 S: Orphan / Obsolete
6089 F: drivers/gpu/drm/sis/
6090 F: include/uapi/drm/sis_drm.h
6091
6092 DRM DRIVER FOR SITRONIX ST7586 PANELS
6093 M: David Lechner <david@lechnology.com>
6094 S: Maintained
6095 T: git git://anongit.freedesktop.org/drm/drm-misc
6096 F: Documentation/devicetree/bindings/display/sitronix,st7586.txt
6097 F: drivers/gpu/drm/tiny/st7586.c
6098
6099 DRM DRIVER FOR SITRONIX ST7701 PANELS
6100 M: Jagan Teki <jagan@amarulasolutions.com>
6101 S: Maintained
6102 F: Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6103 F: drivers/gpu/drm/panel/panel-sitronix-st7701.c
6104
6105 DRM DRIVER FOR SITRONIX ST7735R PANELS
6106 M: David Lechner <david@lechnology.com>
6107 S: Maintained
6108 T: git git://anongit.freedesktop.org/drm/drm-misc
6109 F: Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6110 F: drivers/gpu/drm/tiny/st7735r.c
6111
6112 DRM DRIVER FOR SONY ACX424AKP PANELS
6113 M: Linus Walleij <linus.walleij@linaro.org>
6114 S: Maintained
6115 T: git git://anongit.freedesktop.org/drm/drm-misc
6116 F: drivers/gpu/drm/panel/panel-sony-acx424akp.c
6117
6118 DRM DRIVER FOR ST-ERICSSON MCDE
6119 M: Linus Walleij <linus.walleij@linaro.org>
6120 S: Maintained
6121 T: git git://anongit.freedesktop.org/drm/drm-misc
6122 F: Documentation/devicetree/bindings/display/ste,mcde.yaml
6123 F: drivers/gpu/drm/mcde/
6124
6125 DRM DRIVER FOR TDFX VIDEO CARDS
6126 S: Orphan / Obsolete
6127 F: drivers/gpu/drm/tdfx/
6128
6129 DRM DRIVER FOR TPO TPG110 PANELS
6130 M: Linus Walleij <linus.walleij@linaro.org>
6131 S: Maintained
6132 T: git git://anongit.freedesktop.org/drm/drm-misc
6133 F: Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6134 F: drivers/gpu/drm/panel/panel-tpo-tpg110.c
6135
6136 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6137 M: Dave Airlie <airlied@redhat.com>
6138 R: Sean Paul <sean@poorly.run>
6139 R: Thomas Zimmermann <tzimmermann@suse.de>
6140 L: dri-devel@lists.freedesktop.org
6141 S: Supported
6142 T: git git://anongit.freedesktop.org/drm/drm-misc
6143 F: drivers/gpu/drm/udl/
6144
6145 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6146 M: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6147 M: Melissa Wen <melissa.srw@gmail.com>
6148 R: Haneen Mohammed <hamohammed.sa@gmail.com>
6149 R: Daniel Vetter <daniel@ffwll.ch>
6150 L: dri-devel@lists.freedesktop.org
6151 S: Maintained
6152 T: git git://anongit.freedesktop.org/drm/drm-misc
6153 F: Documentation/gpu/vkms.rst
6154 F: drivers/gpu/drm/vkms/
6155
6156 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6157 M: Hans de Goede <hdegoede@redhat.com>
6158 L: dri-devel@lists.freedesktop.org
6159 S: Maintained
6160 T: git git://anongit.freedesktop.org/drm/drm-misc
6161 F: drivers/gpu/drm/vboxvideo/
6162
6163 DRM DRIVER FOR VMWARE VIRTUAL GPU
6164 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6165 M: Zack Rusin <zackr@vmware.com>
6166 L: dri-devel@lists.freedesktop.org
6167 S: Supported
6168 T: git git://anongit.freedesktop.org/drm/drm-misc
6169 F: drivers/gpu/drm/vmwgfx/
6170 F: include/uapi/drm/vmwgfx_drm.h
6171
6172 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6173 M: Linus Walleij <linus.walleij@linaro.org>
6174 S: Maintained
6175 T: git git://anongit.freedesktop.org/drm/drm-misc
6176 F: Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6177 F: drivers/gpu/drm/panel/panel-widechips-ws2401.c
6178
6179 DRM DRIVERS
6180 M: David Airlie <airlied@linux.ie>
6181 M: Daniel Vetter <daniel@ffwll.ch>
6182 L: dri-devel@lists.freedesktop.org
6183 S: Maintained
6184 B: https://gitlab.freedesktop.org/drm
6185 C: irc://irc.oftc.net/dri-devel
6186 T: git git://anongit.freedesktop.org/drm/drm
6187 F: Documentation/devicetree/bindings/display/
6188 F: Documentation/devicetree/bindings/gpu/
6189 F: Documentation/gpu/
6190 F: drivers/gpu/
6191 F: include/drm/
6192 F: include/linux/vga*
6193 F: include/uapi/drm/
6194
6195 DRM DRIVERS AND MISC GPU PATCHES
6196 M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6197 M: Maxime Ripard <mripard@kernel.org>
6198 M: Thomas Zimmermann <tzimmermann@suse.de>
6199 S: Maintained
6200 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6201 T: git git://anongit.freedesktop.org/drm/drm-misc
6202 F: Documentation/gpu/
6203 F: drivers/gpu/drm/*
6204 F: drivers/gpu/vga/
6205 F: include/drm/drm*
6206 F: include/linux/vga*
6207 F: include/uapi/drm/drm*
6208
6209 DRM DRIVERS FOR ALLWINNER A10
6210 M: Maxime Ripard <mripard@kernel.org>
6211 M: Chen-Yu Tsai <wens@csie.org>
6212 L: dri-devel@lists.freedesktop.org
6213 S: Supported
6214 T: git git://anongit.freedesktop.org/drm/drm-misc
6215 F: Documentation/devicetree/bindings/display/allwinner*
6216 F: drivers/gpu/drm/sun4i/
6217
6218 DRM DRIVERS FOR AMLOGIC SOCS
6219 M: Neil Armstrong <narmstrong@baylibre.com>
6220 L: dri-devel@lists.freedesktop.org
6221 L: linux-amlogic@lists.infradead.org
6222 S: Supported
6223 W: http://linux-meson.com/
6224 T: git git://anongit.freedesktop.org/drm/drm-misc
6225 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6226 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6227 F: Documentation/gpu/meson.rst
6228 F: drivers/gpu/drm/meson/
6229
6230 DRM DRIVERS FOR ATMEL HLCDC
6231 M: Sam Ravnborg <sam@ravnborg.org>
6232 M: Boris Brezillon <bbrezillon@kernel.org>
6233 L: dri-devel@lists.freedesktop.org
6234 S: Supported
6235 T: git git://anongit.freedesktop.org/drm/drm-misc
6236 F: Documentation/devicetree/bindings/display/atmel/
6237 F: drivers/gpu/drm/atmel-hlcdc/
6238
6239 DRM DRIVERS FOR BRIDGE CHIPS
6240 M: Andrzej Hajda <a.hajda@samsung.com>
6241 M: Neil Armstrong <narmstrong@baylibre.com>
6242 M: Robert Foss <robert.foss@linaro.org>
6243 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6244 R: Jonas Karlman <jonas@kwiboo.se>
6245 R: Jernej Skrabec <jernej.skrabec@gmail.com>
6246 S: Maintained
6247 T: git git://anongit.freedesktop.org/drm/drm-misc
6248 F: drivers/gpu/drm/bridge/
6249
6250 DRM DRIVERS FOR EXYNOS
6251 M: Inki Dae <inki.dae@samsung.com>
6252 M: Joonyoung Shim <jy0922.shim@samsung.com>
6253 M: Seung-Woo Kim <sw0312.kim@samsung.com>
6254 M: Kyungmin Park <kyungmin.park@samsung.com>
6255 L: dri-devel@lists.freedesktop.org
6256 S: Supported
6257 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6258 F: Documentation/devicetree/bindings/display/exynos/
6259 F: drivers/gpu/drm/exynos/
6260 F: include/uapi/drm/exynos_drm.h
6261
6262 DRM DRIVERS FOR FREESCALE DCU
6263 M: Stefan Agner <stefan@agner.ch>
6264 M: Alison Wang <alison.wang@nxp.com>
6265 L: dri-devel@lists.freedesktop.org
6266 S: Supported
6267 T: git git://anongit.freedesktop.org/drm/drm-misc
6268 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
6269 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
6270 F: drivers/gpu/drm/fsl-dcu/
6271
6272 DRM DRIVERS FOR FREESCALE IMX
6273 M: Philipp Zabel <p.zabel@pengutronix.de>
6274 L: dri-devel@lists.freedesktop.org
6275 S: Maintained
6276 F: Documentation/devicetree/bindings/display/imx/
6277 F: drivers/gpu/drm/imx/
6278 F: drivers/gpu/ipu-v3/
6279
6280 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6281 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6282 L: dri-devel@lists.freedesktop.org
6283 S: Maintained
6284 T: git git://github.com/patjak/drm-gma500
6285 F: drivers/gpu/drm/gma500/
6286
6287 DRM DRIVERS FOR HISILICON
6288 M: Xinliang Liu <xinliang.liu@linaro.org>
6289 M: Tian Tao <tiantao6@hisilicon.com>
6290 R: John Stultz <john.stultz@linaro.org>
6291 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
6292 R: Chen Feng <puck.chen@hisilicon.com>
6293 L: dri-devel@lists.freedesktop.org
6294 S: Maintained
6295 T: git git://anongit.freedesktop.org/drm/drm-misc
6296 F: Documentation/devicetree/bindings/display/hisilicon/
6297 F: drivers/gpu/drm/hisilicon/
6298
6299 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6300 M: Deepak Rawat <drawat.floss@gmail.com>
6301 L: linux-hyperv@vger.kernel.org
6302 L: dri-devel@lists.freedesktop.org
6303 S: Maintained
6304 T: git git://anongit.freedesktop.org/drm/drm-misc
6305 F: drivers/gpu/drm/hyperv
6306
6307 DRM DRIVERS FOR LIMA
6308 M: Qiang Yu <yuq825@gmail.com>
6309 L: dri-devel@lists.freedesktop.org
6310 L: lima@lists.freedesktop.org (moderated for non-subscribers)
6311 S: Maintained
6312 T: git git://anongit.freedesktop.org/drm/drm-misc
6313 F: drivers/gpu/drm/lima/
6314 F: include/uapi/drm/lima_drm.h
6315
6316 DRM DRIVERS FOR MEDIATEK
6317 M: Chun-Kuang Hu <chunkuang.hu@kernel.org>
6318 M: Philipp Zabel <p.zabel@pengutronix.de>
6319 L: dri-devel@lists.freedesktop.org
6320 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6321 S: Supported
6322 F: Documentation/devicetree/bindings/display/mediatek/
6323 F: drivers/gpu/drm/mediatek/
6324 F: drivers/phy/mediatek/phy-mtk-hdmi*
6325 F: drivers/phy/mediatek/phy-mtk-mipi*
6326
6327 DRM DRIVERS FOR NVIDIA TEGRA
6328 M: Thierry Reding <thierry.reding@gmail.com>
6329 L: dri-devel@lists.freedesktop.org
6330 L: linux-tegra@vger.kernel.org
6331 S: Supported
6332 T: git git://anongit.freedesktop.org/tegra/linux.git
6333 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6334 F: drivers/gpu/drm/tegra/
6335 F: drivers/gpu/host1x/
6336 F: include/linux/host1x.h
6337 F: include/uapi/drm/tegra_drm.h
6338
6339 DRM DRIVERS FOR RENESAS
6340 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6341 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6342 L: dri-devel@lists.freedesktop.org
6343 L: linux-renesas-soc@vger.kernel.org
6344 S: Supported
6345 T: git git://linuxtv.org/pinchartl/media drm/du/next
6346 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6347 F: Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6348 F: Documentation/devicetree/bindings/display/renesas,du.yaml
6349 F: drivers/gpu/drm/rcar-du/
6350 F: drivers/gpu/drm/shmobile/
6351 F: include/linux/platform_data/shmob_drm.h
6352
6353 DRM DRIVERS FOR ROCKCHIP
6354 M: Sandy Huang <hjc@rock-chips.com>
6355 M: Heiko Stübner <heiko@sntech.de>
6356 L: dri-devel@lists.freedesktop.org
6357 S: Maintained
6358 T: git git://anongit.freedesktop.org/drm/drm-misc
6359 F: Documentation/devicetree/bindings/display/rockchip/
6360 F: drivers/gpu/drm/rockchip/
6361
6362 DRM DRIVERS FOR STI
6363 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
6364 L: dri-devel@lists.freedesktop.org
6365 S: Maintained
6366 T: git git://anongit.freedesktop.org/drm/drm-misc
6367 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
6368 F: drivers/gpu/drm/sti
6369
6370 DRM DRIVERS FOR STM
6371 M: Yannick Fertre <yannick.fertre@foss.st.com>
6372 M: Philippe Cornu <philippe.cornu@foss.st.com>
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,stm32-ltdc.yaml
6378 F: drivers/gpu/drm/stm
6379
6380 DRM DRIVERS FOR TI KEYSTONE
6381 M: Jyri Sarha <jyri.sarha@iki.fi>
6382 M: Tomi Valkeinen <tomba@kernel.org>
6383 L: dri-devel@lists.freedesktop.org
6384 S: Maintained
6385 T: git git://anongit.freedesktop.org/drm/drm-misc
6386 F: Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6387 F: Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6388 F: Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6389 F: drivers/gpu/drm/tidss/
6390
6391 DRM DRIVERS FOR TI LCDC
6392 M: Jyri Sarha <jyri.sarha@iki.fi>
6393 R: Tomi Valkeinen <tomba@kernel.org>
6394 L: dri-devel@lists.freedesktop.org
6395 S: Maintained
6396 F: Documentation/devicetree/bindings/display/tilcdc/
6397 F: drivers/gpu/drm/tilcdc/
6398
6399 DRM DRIVERS FOR TI OMAP
6400 M: Tomi Valkeinen <tomba@kernel.org>
6401 L: dri-devel@lists.freedesktop.org
6402 S: Maintained
6403 F: Documentation/devicetree/bindings/display/ti/
6404 F: drivers/gpu/drm/omapdrm/
6405
6406 DRM DRIVERS FOR V3D
6407 M: Emma Anholt <emma@anholt.net>
6408 S: Supported
6409 T: git git://anongit.freedesktop.org/drm/drm-misc
6410 F: Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6411 F: drivers/gpu/drm/v3d/
6412 F: include/uapi/drm/v3d_drm.h
6413
6414 DRM DRIVERS FOR VC4
6415 M: Emma Anholt <emma@anholt.net>
6416 M: Maxime Ripard <mripard@kernel.org>
6417 S: Supported
6418 T: git git://github.com/anholt/linux
6419 T: git git://anongit.freedesktop.org/drm/drm-misc
6420 F: Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6421 F: drivers/gpu/drm/vc4/
6422 F: include/uapi/drm/vc4_drm.h
6423
6424 DRM DRIVERS FOR VIVANTE GPU IP
6425 M: Lucas Stach <l.stach@pengutronix.de>
6426 R: Russell King <linux+etnaviv@armlinux.org.uk>
6427 R: Christian Gmeiner <christian.gmeiner@gmail.com>
6428 L: etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6429 L: dri-devel@lists.freedesktop.org
6430 S: Maintained
6431 F: Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6432 F: drivers/gpu/drm/etnaviv/
6433 F: include/uapi/drm/etnaviv_drm.h
6434
6435 DRM DRIVERS FOR XEN
6436 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6437 L: dri-devel@lists.freedesktop.org
6438 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
6439 S: Supported
6440 T: git git://anongit.freedesktop.org/drm/drm-misc
6441 F: Documentation/gpu/xen-front.rst
6442 F: drivers/gpu/drm/xen/
6443
6444 DRM DRIVERS FOR XILINX
6445 M: Hyun Kwon <hyun.kwon@xilinx.com>
6446 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6447 L: dri-devel@lists.freedesktop.org
6448 S: Maintained
6449 T: git git://anongit.freedesktop.org/drm/drm-misc
6450 F: Documentation/devicetree/bindings/display/xlnx/
6451 F: drivers/gpu/drm/xlnx/
6452
6453 DRM PANEL DRIVERS
6454 M: Thierry Reding <thierry.reding@gmail.com>
6455 R: Sam Ravnborg <sam@ravnborg.org>
6456 L: dri-devel@lists.freedesktop.org
6457 S: Maintained
6458 T: git git://anongit.freedesktop.org/drm/drm-misc
6459 F: Documentation/devicetree/bindings/display/panel/
6460 F: drivers/gpu/drm/drm_panel.c
6461 F: drivers/gpu/drm/panel/
6462 F: include/drm/drm_panel.h
6463
6464 DRM TTM SUBSYSTEM
6465 M: Christian Koenig <christian.koenig@amd.com>
6466 M: Huang Rui <ray.huang@amd.com>
6467 L: dri-devel@lists.freedesktop.org
6468 S: Maintained
6469 T: git git://anongit.freedesktop.org/drm/drm-misc
6470 F: drivers/gpu/drm/ttm/
6471 F: include/drm/ttm/
6472
6473 DSBR100 USB FM RADIO DRIVER
6474 M: Alexey Klimov <klimov.linux@gmail.com>
6475 L: linux-media@vger.kernel.org
6476 S: Maintained
6477 T: git git://linuxtv.org/media_tree.git
6478 F: drivers/media/radio/dsbr100.c
6479
6480 DT3155 MEDIA DRIVER
6481 M: Hans Verkuil <hverkuil@xs4all.nl>
6482 L: linux-media@vger.kernel.org
6483 S: Odd Fixes
6484 W: https://linuxtv.org
6485 T: git git://linuxtv.org/media_tree.git
6486 F: drivers/media/pci/dt3155/
6487
6488 DVB_USB_AF9015 MEDIA DRIVER
6489 M: Antti Palosaari <crope@iki.fi>
6490 L: linux-media@vger.kernel.org
6491 S: Maintained
6492 W: https://linuxtv.org
6493 W: http://palosaari.fi/linux/
6494 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6495 T: git git://linuxtv.org/anttip/media_tree.git
6496 F: drivers/media/usb/dvb-usb-v2/af9015*
6497
6498 DVB_USB_AF9035 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/af9035*
6507
6508 DVB_USB_ANYSEE 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/anysee*
6517
6518 DVB_USB_AU6610 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/au6610*
6527
6528 DVB_USB_CE6230 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/ce6230*
6537
6538 DVB_USB_CXUSB MEDIA DRIVER
6539 M: Michael Krufky <mkrufky@linuxtv.org>
6540 L: linux-media@vger.kernel.org
6541 S: Maintained
6542 W: https://linuxtv.org
6543 W: http://github.com/mkrufky
6544 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6545 T: git git://linuxtv.org/media_tree.git
6546 F: drivers/media/usb/dvb-usb/cxusb*
6547
6548 DVB_USB_EC168 MEDIA DRIVER
6549 M: Antti Palosaari <crope@iki.fi>
6550 L: linux-media@vger.kernel.org
6551 S: Maintained
6552 W: https://linuxtv.org
6553 W: http://palosaari.fi/linux/
6554 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6555 T: git git://linuxtv.org/anttip/media_tree.git
6556 F: drivers/media/usb/dvb-usb-v2/ec168*
6557
6558 DVB_USB_GL861 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 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6564 T: git git://linuxtv.org/anttip/media_tree.git
6565 F: drivers/media/usb/dvb-usb-v2/gl861*
6566
6567 DVB_USB_MXL111SF MEDIA DRIVER
6568 M: Michael Krufky <mkrufky@linuxtv.org>
6569 L: linux-media@vger.kernel.org
6570 S: Maintained
6571 W: https://linuxtv.org
6572 W: http://github.com/mkrufky
6573 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6574 T: git git://linuxtv.org/mkrufky/mxl111sf.git
6575 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
6576
6577 DVB_USB_RTL28XXU MEDIA DRIVER
6578 M: Antti Palosaari <crope@iki.fi>
6579 L: linux-media@vger.kernel.org
6580 S: Maintained
6581 W: https://linuxtv.org
6582 W: http://palosaari.fi/linux/
6583 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6584 T: git git://linuxtv.org/anttip/media_tree.git
6585 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
6586
6587 DVB_USB_V2 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/dvb_usb*
6596 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
6597
6598 DYNAMIC DEBUG
6599 M: Jason Baron <jbaron@akamai.com>
6600 S: Maintained
6601 F: include/linux/dynamic_debug.h
6602 F: lib/dynamic_debug.c
6603
6604 DYNAMIC INTERRUPT MODERATION
6605 M: Tal Gilboa <talgi@nvidia.com>
6606 S: Maintained
6607 F: Documentation/networking/net_dim.rst
6608 F: include/linux/dim.h
6609 F: lib/dim/
6610
6611 DZ DECSTATION DZ11 SERIAL DRIVER
6612 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
6613 S: Maintained
6614 F: drivers/tty/serial/dz.*
6615
6616 E3X0 POWER BUTTON DRIVER
6617 M: Moritz Fischer <moritz.fischer@ettus.com>
6618 L: usrp-users@lists.ettus.com
6619 S: Supported
6620 W: http://www.ettus.com
6621 F: Documentation/devicetree/bindings/input/e3x0-button.txt
6622 F: drivers/input/misc/e3x0-button.c
6623
6624 E4000 MEDIA DRIVER
6625 M: Antti Palosaari <crope@iki.fi>
6626 L: linux-media@vger.kernel.org
6627 S: Maintained
6628 W: https://linuxtv.org
6629 W: http://palosaari.fi/linux/
6630 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6631 T: git git://linuxtv.org/anttip/media_tree.git
6632 F: drivers/media/tuners/e4000*
6633
6634 EARTH_PT1 MEDIA DRIVER
6635 M: Akihiro Tsukada <tskd08@gmail.com>
6636 L: linux-media@vger.kernel.org
6637 S: Odd Fixes
6638 F: drivers/media/pci/pt1/
6639
6640 EARTH_PT3 MEDIA DRIVER
6641 M: Akihiro Tsukada <tskd08@gmail.com>
6642 L: linux-media@vger.kernel.org
6643 S: Odd Fixes
6644 F: drivers/media/pci/pt3/
6645
6646 EC100 MEDIA DRIVER
6647 M: Antti Palosaari <crope@iki.fi>
6648 L: linux-media@vger.kernel.org
6649 S: Maintained
6650 W: https://linuxtv.org
6651 W: http://palosaari.fi/linux/
6652 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6653 T: git git://linuxtv.org/anttip/media_tree.git
6654 F: drivers/media/dvb-frontends/ec100*
6655
6656 ECRYPT FILE SYSTEM
6657 M: Tyler Hicks <code@tyhicks.com>
6658 L: ecryptfs@vger.kernel.org
6659 S: Odd Fixes
6660 W: http://ecryptfs.org
6661 W: https://launchpad.net/ecryptfs
6662 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6663 F: Documentation/filesystems/ecryptfs.rst
6664 F: fs/ecryptfs/
6665
6666 EDAC-AMD64
6667 M: Yazen Ghannam <yazen.ghannam@amd.com>
6668 L: linux-edac@vger.kernel.org
6669 S: Supported
6670 F: drivers/edac/amd64_edac*
6671 F: drivers/edac/mce_amd*
6672
6673 EDAC-ARMADA
6674 M: Jan Luebbe <jlu@pengutronix.de>
6675 L: linux-edac@vger.kernel.org
6676 S: Maintained
6677 F: Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6678 F: drivers/edac/armada_xp_*
6679
6680 EDAC-AST2500
6681 M: Stefan Schaeckeler <sschaeck@cisco.com>
6682 S: Supported
6683 F: Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6684 F: drivers/edac/aspeed_edac.c
6685
6686 EDAC-BLUEFIELD
6687 M: Shravan Kumar Ramani <shravankr@nvidia.com>
6688 S: Supported
6689 F: drivers/edac/bluefield_edac.c
6690
6691 EDAC-CALXEDA
6692 M: Andre Przywara <andre.przywara@arm.com>
6693 L: linux-edac@vger.kernel.org
6694 S: Maintained
6695 F: drivers/edac/highbank*
6696
6697 EDAC-CAVIUM OCTEON
6698 M: Ralf Baechle <ralf@linux-mips.org>
6699 L: linux-edac@vger.kernel.org
6700 L: linux-mips@vger.kernel.org
6701 S: Supported
6702 F: drivers/edac/octeon_edac*
6703
6704 EDAC-CAVIUM THUNDERX
6705 M: Robert Richter <rric@kernel.org>
6706 L: linux-edac@vger.kernel.org
6707 S: Odd Fixes
6708 F: drivers/edac/thunderx_edac*
6709
6710 EDAC-CORE
6711 M: Borislav Petkov <bp@alien8.de>
6712 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6713 M: Tony Luck <tony.luck@intel.com>
6714 R: James Morse <james.morse@arm.com>
6715 R: Robert Richter <rric@kernel.org>
6716 L: linux-edac@vger.kernel.org
6717 S: Supported
6718 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6719 F: Documentation/admin-guide/ras.rst
6720 F: Documentation/driver-api/edac.rst
6721 F: drivers/edac/
6722 F: include/linux/edac.h
6723
6724 EDAC-DMC520
6725 M: Lei Wang <lewan@microsoft.com>
6726 L: linux-edac@vger.kernel.org
6727 S: Supported
6728 F: drivers/edac/dmc520_edac.c
6729
6730 EDAC-E752X
6731 M: Mark Gross <mark.gross@intel.com>
6732 L: linux-edac@vger.kernel.org
6733 S: Maintained
6734 F: drivers/edac/e752x_edac.c
6735
6736 EDAC-E7XXX
6737 L: linux-edac@vger.kernel.org
6738 S: Maintained
6739 F: drivers/edac/e7xxx_edac.c
6740
6741 EDAC-FSL_DDR
6742 M: York Sun <york.sun@nxp.com>
6743 L: linux-edac@vger.kernel.org
6744 S: Maintained
6745 F: drivers/edac/fsl_ddr_edac.*
6746
6747 EDAC-GHES
6748 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6749 L: linux-edac@vger.kernel.org
6750 S: Maintained
6751 F: drivers/edac/ghes_edac.c
6752
6753 EDAC-I10NM
6754 M: Tony Luck <tony.luck@intel.com>
6755 L: linux-edac@vger.kernel.org
6756 S: Maintained
6757 F: drivers/edac/i10nm_base.c
6758
6759 EDAC-I3000
6760 L: linux-edac@vger.kernel.org
6761 S: Orphan
6762 F: drivers/edac/i3000_edac.c
6763
6764 EDAC-I5000
6765 L: linux-edac@vger.kernel.org
6766 S: Maintained
6767 F: drivers/edac/i5000_edac.c
6768
6769 EDAC-I5400
6770 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6771 L: linux-edac@vger.kernel.org
6772 S: Maintained
6773 F: drivers/edac/i5400_edac.c
6774
6775 EDAC-I7300
6776 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6777 L: linux-edac@vger.kernel.org
6778 S: Maintained
6779 F: drivers/edac/i7300_edac.c
6780
6781 EDAC-I7CORE
6782 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6783 L: linux-edac@vger.kernel.org
6784 S: Maintained
6785 F: drivers/edac/i7core_edac.c
6786
6787 EDAC-I82443BXGX
6788 M: Tim Small <tim@buttersideup.com>
6789 L: linux-edac@vger.kernel.org
6790 S: Maintained
6791 F: drivers/edac/i82443bxgx_edac.c
6792
6793 EDAC-I82975X
6794 M: "Arvind R." <arvino55@gmail.com>
6795 L: linux-edac@vger.kernel.org
6796 S: Maintained
6797 F: drivers/edac/i82975x_edac.c
6798
6799 EDAC-IE31200
6800 M: Jason Baron <jbaron@akamai.com>
6801 L: linux-edac@vger.kernel.org
6802 S: Maintained
6803 F: drivers/edac/ie31200_edac.c
6804
6805 EDAC-IGEN6
6806 M: Tony Luck <tony.luck@intel.com>
6807 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6808 L: linux-edac@vger.kernel.org
6809 S: Maintained
6810 F: drivers/edac/igen6_edac.c
6811
6812 EDAC-MPC85XX
6813 M: Johannes Thumshirn <morbidrsa@gmail.com>
6814 L: linux-edac@vger.kernel.org
6815 S: Maintained
6816 F: drivers/edac/mpc85xx_edac.[ch]
6817
6818 EDAC-PASEMI
6819 M: Egor Martovetsky <egor@pasemi.com>
6820 L: linux-edac@vger.kernel.org
6821 S: Maintained
6822 F: drivers/edac/pasemi_edac.c
6823
6824 EDAC-PND2
6825 M: Tony Luck <tony.luck@intel.com>
6826 L: linux-edac@vger.kernel.org
6827 S: Maintained
6828 F: drivers/edac/pnd2_edac.[ch]
6829
6830 EDAC-QCOM
6831 M: Channagoud Kadabi <ckadabi@codeaurora.org>
6832 M: Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6833 L: linux-arm-msm@vger.kernel.org
6834 L: linux-edac@vger.kernel.org
6835 S: Maintained
6836 F: drivers/edac/qcom_edac.c
6837
6838 EDAC-R82600
6839 M: Tim Small <tim@buttersideup.com>
6840 L: linux-edac@vger.kernel.org
6841 S: Maintained
6842 F: drivers/edac/r82600_edac.c
6843
6844 EDAC-SBRIDGE
6845 M: Tony Luck <tony.luck@intel.com>
6846 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6847 L: linux-edac@vger.kernel.org
6848 S: Maintained
6849 F: drivers/edac/sb_edac.c
6850
6851 EDAC-SIFIVE
6852 M: Yash Shah <yash.shah@sifive.com>
6853 L: linux-edac@vger.kernel.org
6854 S: Supported
6855 F: drivers/edac/sifive_edac.c
6856
6857 EDAC-SKYLAKE
6858 M: Tony Luck <tony.luck@intel.com>
6859 L: linux-edac@vger.kernel.org
6860 S: Maintained
6861 F: drivers/edac/skx_*.[ch]
6862
6863 EDAC-TI
6864 M: Tero Kristo <kristo@kernel.org>
6865 L: linux-edac@vger.kernel.org
6866 S: Odd Fixes
6867 F: drivers/edac/ti_edac.c
6868
6869 EDIROL UA-101/UA-1000 DRIVER
6870 M: Clemens Ladisch <clemens@ladisch.de>
6871 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6872 S: Maintained
6873 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6874 F: sound/usb/misc/ua101.c
6875
6876 EFI TEST DRIVER
6877 M: Ivan Hu <ivan.hu@canonical.com>
6878 M: Ard Biesheuvel <ardb@kernel.org>
6879 L: linux-efi@vger.kernel.org
6880 S: Maintained
6881 F: drivers/firmware/efi/test/
6882
6883 EFI VARIABLE FILESYSTEM
6884 M: Matthew Garrett <matthew.garrett@nebula.com>
6885 M: Jeremy Kerr <jk@ozlabs.org>
6886 M: Ard Biesheuvel <ardb@kernel.org>
6887 L: linux-efi@vger.kernel.org
6888 S: Maintained
6889 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6890 F: fs/efivarfs/
6891
6892 EFIFB FRAMEBUFFER DRIVER
6893 M: Peter Jones <pjones@redhat.com>
6894 L: linux-fbdev@vger.kernel.org
6895 S: Maintained
6896 F: drivers/video/fbdev/efifb.c
6897
6898 EFS FILESYSTEM
6899 S: Orphan
6900 W: http://aeschi.ch.eu.org/efs/
6901 F: fs/efs/
6902
6903 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6904 M: Douglas Miller <dougmill@linux.ibm.com>
6905 L: netdev@vger.kernel.org
6906 S: Maintained
6907 F: drivers/net/ethernet/ibm/ehea/
6908
6909 EM28XX VIDEO4LINUX DRIVER
6910 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6911 L: linux-media@vger.kernel.org
6912 S: Maintained
6913 W: https://linuxtv.org
6914 T: git git://linuxtv.org/media_tree.git
6915 F: Documentation/admin-guide/media/em28xx*
6916 F: drivers/media/usb/em28xx/
6917
6918 EMBEDDED LINUX
6919 M: Matt Mackall <mpm@selenic.com>
6920 M: David Woodhouse <dwmw2@infradead.org>
6921 L: linux-embedded@vger.kernel.org
6922 S: Maintained
6923
6924 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6925 M: Adrian Hunter <adrian.hunter@intel.com>
6926 M: Ritesh Harjani <riteshh@codeaurora.org>
6927 M: Asutosh Das <asutoshd@codeaurora.org>
6928 L: linux-mmc@vger.kernel.org
6929 S: Maintained
6930 F: drivers/mmc/host/cqhci*
6931
6932 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6933 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6934 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
6935 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6936 L: linux-scsi@vger.kernel.org
6937 S: Supported
6938 W: http://www.broadcom.com
6939 F: drivers/scsi/be2iscsi/
6940
6941 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6942 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
6943 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6944 M: Somnath Kotur <somnath.kotur@broadcom.com>
6945 L: netdev@vger.kernel.org
6946 S: Supported
6947 W: http://www.emulex.com
6948 F: drivers/net/ethernet/emulex/benet/
6949
6950 EMULEX ONECONNECT ROCE DRIVER
6951 M: Selvin Xavier <selvin.xavier@broadcom.com>
6952 L: linux-rdma@vger.kernel.org
6953 S: Odd Fixes
6954 W: http://www.broadcom.com
6955 F: drivers/infiniband/hw/ocrdma/
6956 F: include/uapi/rdma/ocrdma-abi.h
6957
6958 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6959 M: James Smart <james.smart@broadcom.com>
6960 M: Dick Kennedy <dick.kennedy@broadcom.com>
6961 L: linux-scsi@vger.kernel.org
6962 S: Supported
6963 W: http://www.broadcom.com
6964 F: drivers/scsi/lpfc/
6965
6966 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6967 M: James Smart <james.smart@broadcom.com>
6968 M: Ram Vegesna <ram.vegesna@broadcom.com>
6969 L: linux-scsi@vger.kernel.org
6970 L: target-devel@vger.kernel.org
6971 S: Supported
6972 W: http://www.broadcom.com
6973 F: drivers/scsi/elx/
6974
6975 ENE CB710 FLASH CARD READER DRIVER
6976 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
6977 S: Maintained
6978 F: drivers/misc/cb710/
6979 F: drivers/mmc/host/cb710-mmc.*
6980 F: include/linux/cb710.h
6981
6982 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6983 M: Maxim Levitsky <maximlevitsky@gmail.com>
6984 S: Maintained
6985 F: drivers/media/rc/ene_ir.*
6986
6987 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6988 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
6989 L: linuxppc-dev@lists.ozlabs.org
6990 S: Maintained
6991 F: drivers/tty/ehv_bytechan.c
6992
6993 EPSON S1D13XXX FRAMEBUFFER DRIVER
6994 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
6995 S: Maintained
6996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6997 F: drivers/video/fbdev/s1d13xxxfb.c
6998 F: include/video/s1d13xxxfb.h
6999
7000 EROFS FILE SYSTEM
7001 M: Gao Xiang <xiang@kernel.org>
7002 M: Chao Yu <chao@kernel.org>
7003 L: linux-erofs@lists.ozlabs.org
7004 S: Maintained
7005 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7006 F: Documentation/filesystems/erofs.rst
7007 F: fs/erofs/
7008 F: include/trace/events/erofs.h
7009
7010 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7011 M: Jeff Layton <jlayton@kernel.org>
7012 S: Maintained
7013 F: include/linux/errseq.h
7014 F: lib/errseq.c
7015
7016 ET131X NETWORK DRIVER
7017 M: Mark Einon <mark.einon@gmail.com>
7018 S: Odd Fixes
7019 F: drivers/net/ethernet/agere/
7020
7021 ETAS ES58X CAN/USB DRIVER
7022 M: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7023 L: linux-can@vger.kernel.org
7024 S: Maintained
7025 F: drivers/net/can/usb/etas_es58x/
7026
7027 ETHERNET BRIDGE
7028 M: Roopa Prabhu <roopa@nvidia.com>
7029 M: Nikolay Aleksandrov <nikolay@nvidia.com>
7030 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
7031 L: netdev@vger.kernel.org
7032 S: Maintained
7033 W: http://www.linuxfoundation.org/en/Net:Bridge
7034 F: include/linux/netfilter_bridge/
7035 F: net/bridge/
7036
7037 ETHERNET PHY LIBRARY
7038 M: Andrew Lunn <andrew@lunn.ch>
7039 M: Heiner Kallweit <hkallweit1@gmail.com>
7040 R: Russell King <linux@armlinux.org.uk>
7041 L: netdev@vger.kernel.org
7042 S: Maintained
7043 F: Documentation/ABI/testing/sysfs-class-net-phydev
7044 F: Documentation/devicetree/bindings/net/ethernet-phy.yaml
7045 F: Documentation/devicetree/bindings/net/mdio*
7046 F: Documentation/devicetree/bindings/net/qca,ar803x.yaml
7047 F: Documentation/networking/phy.rst
7048 F: drivers/net/mdio/
7049 F: drivers/net/mdio/acpi_mdio.c
7050 F: drivers/net/mdio/fwnode_mdio.c
7051 F: drivers/net/mdio/of_mdio.c
7052 F: drivers/net/pcs/
7053 F: drivers/net/phy/
7054 F: include/dt-bindings/net/qca-ar803x.h
7055 F: include/linux/*mdio*.h
7056 F: include/linux/mdio/*.h
7057 F: include/linux/of_net.h
7058 F: include/linux/phy.h
7059 F: include/linux/phy_fixed.h
7060 F: include/linux/platform_data/mdio-bcm-unimac.h
7061 F: include/linux/platform_data/mdio-gpio.h
7062 F: include/trace/events/mdio.h
7063 F: include/uapi/linux/mdio.h
7064 F: include/uapi/linux/mii.h
7065 F: net/core/of_net.c
7066
7067 EXFAT FILE SYSTEM
7068 M: Namjae Jeon <linkinjeon@kernel.org>
7069 M: Sungjong Seo <sj1557.seo@samsung.com>
7070 L: linux-fsdevel@vger.kernel.org
7071 S: Maintained
7072 F: fs/exfat/
7073
7074 EXT2 FILE SYSTEM
7075 M: Jan Kara <jack@suse.com>
7076 L: linux-ext4@vger.kernel.org
7077 S: Maintained
7078 F: Documentation/filesystems/ext2.rst
7079 F: fs/ext2/
7080 F: include/linux/ext2*
7081
7082 EXT4 FILE SYSTEM
7083 M: "Theodore Ts'o" <tytso@mit.edu>
7084 M: Andreas Dilger <adilger.kernel@dilger.ca>
7085 L: linux-ext4@vger.kernel.org
7086 S: Maintained
7087 W: http://ext4.wiki.kernel.org
7088 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
7089 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7090 F: Documentation/filesystems/ext4/
7091 F: fs/ext4/
7092 F: include/trace/events/ext4.h
7093
7094 Extended Verification Module (EVM)
7095 M: Mimi Zohar <zohar@linux.ibm.com>
7096 L: linux-integrity@vger.kernel.org
7097 S: Supported
7098 F: security/integrity/evm/
7099
7100 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7101 M: Ard Biesheuvel <ardb@kernel.org>
7102 L: linux-efi@vger.kernel.org
7103 S: Maintained
7104 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7105 F: Documentation/admin-guide/efi-stub.rst
7106 F: arch/*/include/asm/efi.h
7107 F: arch/*/kernel/efi.c
7108 F: arch/arm/boot/compressed/efi-header.S
7109 F: arch/arm64/kernel/efi-entry.S
7110 F: arch/x86/platform/efi/
7111 F: drivers/firmware/efi/
7112 F: include/linux/efi*.h
7113
7114 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7115 M: MyungJoo Ham <myungjoo.ham@samsung.com>
7116 M: Chanwoo Choi <cw00.choi@samsung.com>
7117 L: linux-kernel@vger.kernel.org
7118 S: Maintained
7119 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7120 F: Documentation/devicetree/bindings/extcon/
7121 F: Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7122 F: drivers/extcon/
7123 F: include/linux/extcon.h
7124 F: include/linux/extcon/
7125
7126 EXTRA BOOT CONFIG
7127 M: Masami Hiramatsu <mhiramat@kernel.org>
7128 S: Maintained
7129 F: Documentation/admin-guide/bootconfig.rst
7130 F: fs/proc/bootconfig.c
7131 F: include/linux/bootconfig.h
7132 F: lib/bootconfig.c
7133 F: tools/bootconfig/*
7134 F: tools/bootconfig/scripts/*
7135
7136 EXYNOS DP DRIVER
7137 M: Jingoo Han <jingoohan1@gmail.com>
7138 L: dri-devel@lists.freedesktop.org
7139 S: Maintained
7140 F: drivers/gpu/drm/exynos/exynos_dp*
7141
7142 EXYNOS SYSMMU (IOMMU) driver
7143 M: Marek Szyprowski <m.szyprowski@samsung.com>
7144 L: iommu@lists.linux-foundation.org
7145 S: Maintained
7146 F: drivers/iommu/exynos-iommu.c
7147
7148 F2FS FILE SYSTEM
7149 M: Jaegeuk Kim <jaegeuk@kernel.org>
7150 M: Chao Yu <chao@kernel.org>
7151 L: linux-f2fs-devel@lists.sourceforge.net
7152 S: Maintained
7153 W: https://f2fs.wiki.kernel.org/
7154 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7155 F: Documentation/ABI/testing/sysfs-fs-f2fs
7156 F: Documentation/filesystems/f2fs.rst
7157 F: fs/f2fs/
7158 F: include/linux/f2fs_fs.h
7159 F: include/trace/events/f2fs.h
7160 F: include/uapi/linux/f2fs.h
7161
7162 F71805F HARDWARE MONITORING DRIVER
7163 M: Jean Delvare <jdelvare@suse.com>
7164 L: linux-hwmon@vger.kernel.org
7165 S: Maintained
7166 F: Documentation/hwmon/f71805f.rst
7167 F: drivers/hwmon/f71805f.c
7168
7169 FADDR2LINE
7170 M: Josh Poimboeuf <jpoimboe@redhat.com>
7171 S: Maintained
7172 F: scripts/faddr2line
7173
7174 FAILOVER MODULE
7175 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
7176 L: netdev@vger.kernel.org
7177 S: Supported
7178 F: Documentation/networking/failover.rst
7179 F: include/net/failover.h
7180 F: net/core/failover.c
7181
7182 FANOTIFY
7183 M: Jan Kara <jack@suse.cz>
7184 R: Amir Goldstein <amir73il@gmail.com>
7185 R: Matthew Bobrowski <repnop@google.com>
7186 L: linux-fsdevel@vger.kernel.org
7187 S: Maintained
7188 F: fs/notify/fanotify/
7189 F: include/linux/fanotify.h
7190 F: include/uapi/linux/fanotify.h
7191
7192 FARSYNC SYNCHRONOUS DRIVER
7193 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
7194 S: Supported
7195 W: http://www.farsite.co.uk/
7196 F: drivers/net/wan/farsync.*
7197
7198 FAULT INJECTION SUPPORT
7199 M: Akinobu Mita <akinobu.mita@gmail.com>
7200 S: Supported
7201 F: Documentation/fault-injection/
7202 F: lib/fault-inject.c
7203
7204 FBTFT Framebuffer drivers
7205 L: dri-devel@lists.freedesktop.org
7206 L: linux-fbdev@vger.kernel.org
7207 S: Orphan
7208 F: drivers/staging/fbtft/
7209
7210 FC0011 TUNER DRIVER
7211 M: Michael Buesch <m@bues.ch>
7212 L: linux-media@vger.kernel.org
7213 S: Maintained
7214 F: drivers/media/tuners/fc0011.c
7215 F: drivers/media/tuners/fc0011.h
7216
7217 FC2580 MEDIA DRIVER
7218 M: Antti Palosaari <crope@iki.fi>
7219 L: linux-media@vger.kernel.org
7220 S: Maintained
7221 W: https://linuxtv.org
7222 W: http://palosaari.fi/linux/
7223 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7224 T: git git://linuxtv.org/anttip/media_tree.git
7225 F: drivers/media/tuners/fc2580*
7226
7227 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7228 M: Hannes Reinecke <hare@suse.de>
7229 L: linux-scsi@vger.kernel.org
7230 S: Supported
7231 W: www.Open-FCoE.org
7232 F: drivers/scsi/fcoe/
7233 F: drivers/scsi/libfc/
7234 F: include/scsi/fc/
7235 F: include/scsi/libfc.h
7236 F: include/scsi/libfcoe.h
7237 F: include/uapi/scsi/fc/
7238
7239 FILE LOCKING (flock() and fcntl()/lockf())
7240 M: Jeff Layton <jlayton@kernel.org>
7241 M: "J. Bruce Fields" <bfields@fieldses.org>
7242 L: linux-fsdevel@vger.kernel.org
7243 S: Maintained
7244 F: fs/fcntl.c
7245 F: fs/locks.c
7246 F: include/linux/fcntl.h
7247 F: include/uapi/linux/fcntl.h
7248
7249 FILESYSTEM DIRECT ACCESS (DAX)
7250 M: Dan Williams <dan.j.williams@intel.com>
7251 R: Matthew Wilcox <willy@infradead.org>
7252 R: Jan Kara <jack@suse.cz>
7253 L: linux-fsdevel@vger.kernel.org
7254 L: nvdimm@lists.linux.dev
7255 S: Supported
7256 F: fs/dax.c
7257 F: include/linux/dax.h
7258 F: include/trace/events/fs_dax.h
7259
7260 FILESYSTEMS (VFS and infrastructure)
7261 M: Alexander Viro <viro@zeniv.linux.org.uk>
7262 L: linux-fsdevel@vger.kernel.org
7263 S: Maintained
7264 F: fs/*
7265 F: include/linux/fs.h
7266 F: include/linux/fs_types.h
7267 F: include/uapi/linux/fs.h
7268 F: include/uapi/linux/openat2.h
7269 X: fs/io-wq.c
7270 X: fs/io-wq.h
7271 X: fs/io_uring.c
7272
7273 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7274 M: Riku Voipio <riku.voipio@iki.fi>
7275 L: linux-hwmon@vger.kernel.org
7276 S: Maintained
7277 F: drivers/hwmon/f75375s.c
7278 F: include/linux/f75375s.h
7279
7280 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7281 M: Clemens Ladisch <clemens@ladisch.de>
7282 M: Takashi Sakamoto <o-takashi@sakamocchi.jp>
7283 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7284 S: Maintained
7285 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7286 F: include/uapi/sound/firewire.h
7287 F: sound/firewire/
7288
7289 FIREWIRE MEDIA DRIVERS (firedtv)
7290 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7291 L: linux-media@vger.kernel.org
7292 L: linux1394-devel@lists.sourceforge.net
7293 S: Maintained
7294 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7295 F: drivers/media/firewire/
7296
7297 FIREWIRE SBP-2 TARGET
7298 M: Chris Boot <bootc@bootc.net>
7299 L: linux-scsi@vger.kernel.org
7300 L: target-devel@vger.kernel.org
7301 L: linux1394-devel@lists.sourceforge.net
7302 S: Maintained
7303 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7304 F: drivers/target/sbp/
7305
7306 FIREWIRE SUBSYSTEM
7307 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7308 L: linux1394-devel@lists.sourceforge.net
7309 S: Maintained
7310 W: http://ieee1394.wiki.kernel.org/
7311 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7312 F: drivers/firewire/
7313 F: include/linux/firewire.h
7314 F: include/uapi/linux/firewire*.h
7315 F: tools/firewire/
7316
7317 FIRMWARE FRAMEWORK FOR ARMV8-A
7318 M: Sudeep Holla <sudeep.holla@arm.com>
7319 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7320 S: Maintained
7321 F: drivers/firmware/arm_ffa/
7322 F: include/linux/arm_ffa.h
7323
7324 FIRMWARE LOADER (request_firmware)
7325 M: Luis Chamberlain <mcgrof@kernel.org>
7326 L: linux-kernel@vger.kernel.org
7327 S: Maintained
7328 F: Documentation/firmware_class/
7329 F: drivers/base/firmware_loader/
7330 F: include/linux/firmware.h
7331
7332 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7333 M: Joshua Morris <josh.h.morris@us.ibm.com>
7334 M: Philip Kelleher <pjk1939@linux.ibm.com>
7335 S: Maintained
7336 F: drivers/block/rsxx/
7337
7338 FLEXTIMER FTM-QUADDEC DRIVER
7339 M: Patrick Havelange <patrick.havelange@essensium.com>
7340 L: linux-iio@vger.kernel.org
7341 S: Maintained
7342 F: Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7343 F: drivers/counter/ftm-quaddec.c
7344
7345 FLOPPY DRIVER
7346 M: Denis Efremov <efremov@linux.com>
7347 L: linux-block@vger.kernel.org
7348 S: Odd Fixes
7349 F: drivers/block/floppy.c
7350
7351 FLYSKY FSIA6B RC RECEIVER
7352 M: Markus Koch <markus@notsyncing.net>
7353 L: linux-input@vger.kernel.org
7354 S: Maintained
7355 F: drivers/input/joystick/fsia6b.c
7356
7357 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7358 M: Geoffrey D. Bennett <g@b4.vu>
7359 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7360 S: Maintained
7361 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7362 F: sound/usb/mixer_scarlett_gen2.c
7363
7364 FORCEDETH GIGABIT ETHERNET DRIVER
7365 M: Rain River <rain.1986.08.12@gmail.com>
7366 M: Zhu Yanjun <zyjzyj2000@gmail.com>
7367 L: netdev@vger.kernel.org
7368 S: Maintained
7369 F: drivers/net/ethernet/nvidia/*
7370
7371 FPGA DFL DRIVERS
7372 M: Wu Hao <hao.wu@intel.com>
7373 R: Tom Rix <trix@redhat.com>
7374 L: linux-fpga@vger.kernel.org
7375 S: Maintained
7376 F: Documentation/ABI/testing/sysfs-bus-dfl*
7377 F: Documentation/fpga/dfl.rst
7378 F: drivers/fpga/dfl*
7379 F: drivers/uio/uio_dfl.c
7380 F: include/linux/dfl.h
7381 F: include/uapi/linux/fpga-dfl.h
7382
7383 FPGA MANAGER FRAMEWORK
7384 M: Moritz Fischer <mdf@kernel.org>
7385 M: Wu Hao <hao.wu@intel.com>
7386 M: Xu Yilun <yilun.xu@intel.com>
7387 R: Tom Rix <trix@redhat.com>
7388 L: linux-fpga@vger.kernel.org
7389 S: Maintained
7390 Q: http://patchwork.kernel.org/project/linux-fpga/list/
7391 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7392 F: Documentation/devicetree/bindings/fpga/
7393 F: Documentation/driver-api/fpga/
7394 F: Documentation/fpga/
7395 F: drivers/fpga/
7396 F: include/linux/fpga/
7397
7398 FPU EMULATOR
7399 M: Bill Metzenthen <billm@melbpc.org.au>
7400 S: Maintained
7401 W: http://floatingpoint.sourceforge.net/emulator/index.html
7402 F: arch/x86/math-emu/
7403
7404 FRAMEBUFFER LAYER
7405 L: dri-devel@lists.freedesktop.org
7406 L: linux-fbdev@vger.kernel.org
7407 S: Orphan
7408 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
7409 T: git git://anongit.freedesktop.org/drm/drm-misc
7410 F: Documentation/fb/
7411 F: drivers/video/
7412 F: include/linux/fb.h
7413 F: include/uapi/linux/fb.h
7414 F: include/uapi/video/
7415 F: include/video/
7416
7417 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7418 M: Horia Geantă <horia.geanta@nxp.com>
7419 M: Pankaj Gupta <pankaj.gupta@nxp.com>
7420 L: linux-crypto@vger.kernel.org
7421 S: Maintained
7422 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7423 F: drivers/crypto/caam/
7424
7425 FREESCALE COLDFIRE M5441X MMC DRIVER
7426 M: Angelo Dureghello <angelo.dureghello@timesys.com>
7427 L: linux-mmc@vger.kernel.org
7428 S: Maintained
7429 F: drivers/mmc/host/sdhci-esdhc-mcf.c
7430 F: include/linux/platform_data/mmc-esdhc-mcf.h
7431
7432 FREESCALE DIU FRAMEBUFFER DRIVER
7433 M: Timur Tabi <timur@kernel.org>
7434 L: linux-fbdev@vger.kernel.org
7435 S: Maintained
7436 F: drivers/video/fbdev/fsl-diu-fb.*
7437
7438 FREESCALE DMA DRIVER
7439 M: Li Yang <leoyang.li@nxp.com>
7440 M: Zhang Wei <zw@zh-kernel.org>
7441 L: linuxppc-dev@lists.ozlabs.org
7442 S: Maintained
7443 F: drivers/dma/fsldma.*
7444
7445 FREESCALE DSPI DRIVER
7446 M: Vladimir Oltean <olteanv@gmail.com>
7447 L: linux-spi@vger.kernel.org
7448 S: Maintained
7449 F: Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7450 F: drivers/spi/spi-fsl-dspi.c
7451 F: include/linux/spi/spi-fsl-dspi.h
7452
7453 FREESCALE ENETC ETHERNET DRIVERS
7454 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7455 L: netdev@vger.kernel.org
7456 S: Maintained
7457 F: drivers/net/ethernet/freescale/enetc/
7458
7459 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7460 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7461 L: netdev@vger.kernel.org
7462 S: Maintained
7463 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7464 F: drivers/net/ethernet/freescale/gianfar*
7465
7466 FREESCALE GPMI NAND DRIVER
7467 M: Han Xu <han.xu@nxp.com>
7468 L: linux-mtd@lists.infradead.org
7469 S: Maintained
7470 F: drivers/mtd/nand/raw/gpmi-nand/*
7471
7472 FREESCALE I2C CPM DRIVER
7473 M: Jochen Friedrich <jochen@scram.de>
7474 L: linuxppc-dev@lists.ozlabs.org
7475 L: linux-i2c@vger.kernel.org
7476 S: Maintained
7477 F: drivers/i2c/busses/i2c-cpm.c
7478
7479 FREESCALE IMX / MXC FEC DRIVER
7480 M: Joakim Zhang <qiangqing.zhang@nxp.com>
7481 L: netdev@vger.kernel.org
7482 S: Maintained
7483 F: Documentation/devicetree/bindings/net/fsl,fec.yaml
7484 F: drivers/net/ethernet/freescale/fec.h
7485 F: drivers/net/ethernet/freescale/fec_main.c
7486 F: drivers/net/ethernet/freescale/fec_ptp.c
7487
7488 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7489 M: Sascha Hauer <s.hauer@pengutronix.de>
7490 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7491 L: linux-fbdev@vger.kernel.org
7492 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7493 S: Maintained
7494 F: drivers/video/fbdev/imxfb.c
7495 F: include/linux/platform_data/video-imxfb.h
7496
7497 FREESCALE IMX DDR PMU DRIVER
7498 M: Frank Li <Frank.li@nxp.com>
7499 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7500 S: Maintained
7501 F: Documentation/admin-guide/perf/imx-ddr.rst
7502 F: Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7503 F: drivers/perf/fsl_imx8_ddr_perf.c
7504
7505 FREESCALE IMX I2C DRIVER
7506 M: Oleksij Rempel <o.rempel@pengutronix.de>
7507 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7508 L: linux-i2c@vger.kernel.org
7509 S: Maintained
7510 F: Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7511 F: drivers/i2c/busses/i2c-imx.c
7512
7513 FREESCALE IMX LPI2C DRIVER
7514 M: Dong Aisheng <aisheng.dong@nxp.com>
7515 L: linux-i2c@vger.kernel.org
7516 L: linux-imx@nxp.com
7517 S: Maintained
7518 F: Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7519 F: drivers/i2c/busses/i2c-imx-lpi2c.c
7520
7521 FREESCALE MPC I2C DRIVER
7522 M: Chris Packham <chris.packham@alliedtelesis.co.nz>
7523 L: linux-i2c@vger.kernel.org
7524 S: Maintained
7525 F: Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7526 F: drivers/i2c/busses/i2c-mpc.c
7527
7528 FREESCALE QORIQ DPAA ETHERNET DRIVER
7529 M: Madalin Bucur <madalin.bucur@nxp.com>
7530 L: netdev@vger.kernel.org
7531 S: Maintained
7532 F: drivers/net/ethernet/freescale/dpaa
7533
7534 FREESCALE QORIQ DPAA FMAN DRIVER
7535 M: Madalin Bucur <madalin.bucur@nxp.com>
7536 L: netdev@vger.kernel.org
7537 S: Maintained
7538 F: Documentation/devicetree/bindings/net/fsl-fman.txt
7539 F: drivers/net/ethernet/freescale/fman
7540
7541 FREESCALE QORIQ PTP CLOCK DRIVER
7542 M: Yangbo Lu <yangbo.lu@nxp.com>
7543 L: netdev@vger.kernel.org
7544 S: Maintained
7545 F: Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7546 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7547 F: drivers/net/ethernet/freescale/dpaa2/dprtc*
7548 F: drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7549 F: drivers/ptp/ptp_qoriq.c
7550 F: drivers/ptp/ptp_qoriq_debugfs.c
7551 F: include/linux/fsl/ptp_qoriq.h
7552
7553 FREESCALE QUAD SPI DRIVER
7554 M: Han Xu <han.xu@nxp.com>
7555 L: linux-spi@vger.kernel.org
7556 S: Maintained
7557 F: Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7558 F: drivers/spi/spi-fsl-qspi.c
7559
7560 FREESCALE QUICC ENGINE LIBRARY
7561 M: Qiang Zhao <qiang.zhao@nxp.com>
7562 L: linuxppc-dev@lists.ozlabs.org
7563 S: Maintained
7564 F: drivers/soc/fsl/qe/
7565 F: include/soc/fsl/*qe*.h
7566 F: include/soc/fsl/*ucc*.h
7567
7568 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7569 M: Li Yang <leoyang.li@nxp.com>
7570 L: netdev@vger.kernel.org
7571 L: linuxppc-dev@lists.ozlabs.org
7572 S: Maintained
7573 F: drivers/net/ethernet/freescale/ucc_geth*
7574
7575 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7576 M: Zhao Qiang <qiang.zhao@nxp.com>
7577 L: netdev@vger.kernel.org
7578 L: linuxppc-dev@lists.ozlabs.org
7579 S: Maintained
7580 F: drivers/net/wan/fsl_ucc_hdlc*
7581
7582 FREESCALE QUICC ENGINE UCC UART DRIVER
7583 M: Timur Tabi <timur@kernel.org>
7584 L: linuxppc-dev@lists.ozlabs.org
7585 S: Maintained
7586 F: drivers/tty/serial/ucc_uart.c
7587
7588 FREESCALE SOC DRIVERS
7589 M: Li Yang <leoyang.li@nxp.com>
7590 L: linuxppc-dev@lists.ozlabs.org
7591 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7592 S: Maintained
7593 F: Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7594 F: Documentation/devicetree/bindings/soc/fsl/
7595 F: drivers/soc/fsl/
7596 F: include/linux/fsl/
7597
7598 FREESCALE SOC FS_ENET DRIVER
7599 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
7600 L: linuxppc-dev@lists.ozlabs.org
7601 L: netdev@vger.kernel.org
7602 S: Maintained
7603 F: drivers/net/ethernet/freescale/fs_enet/
7604 F: include/linux/fs_enet_pd.h
7605
7606 FREESCALE SOC SOUND DRIVERS
7607 M: Nicolin Chen <nicoleotsuka@gmail.com>
7608 M: Xiubo Li <Xiubo.Lee@gmail.com>
7609 R: Fabio Estevam <festevam@gmail.com>
7610 R: Shengjiu Wang <shengjiu.wang@gmail.com>
7611 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7612 L: linuxppc-dev@lists.ozlabs.org
7613 S: Maintained
7614 F: sound/soc/fsl/fsl*
7615 F: sound/soc/fsl/imx*
7616 F: sound/soc/fsl/mpc8610_hpcd.c
7617
7618 FREESCALE USB PERIPHERAL DRIVERS
7619 M: Li Yang <leoyang.li@nxp.com>
7620 L: linux-usb@vger.kernel.org
7621 L: linuxppc-dev@lists.ozlabs.org
7622 S: Maintained
7623 F: drivers/usb/gadget/udc/fsl*
7624
7625 FREESCALE USB PHY DRIVER
7626 M: Ran Wang <ran.wang_1@nxp.com>
7627 L: linux-usb@vger.kernel.org
7628 L: linuxppc-dev@lists.ozlabs.org
7629 S: Maintained
7630 F: drivers/usb/phy/phy-fsl-usb*
7631
7632 FREEVXFS FILESYSTEM
7633 M: Christoph Hellwig <hch@infradead.org>
7634 S: Maintained
7635 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
7636 F: fs/freevxfs/
7637
7638 FREEZER
7639 M: "Rafael J. Wysocki" <rafael@kernel.org>
7640 M: Pavel Machek <pavel@ucw.cz>
7641 L: linux-pm@vger.kernel.org
7642 S: Supported
7643 F: Documentation/power/freezing-of-tasks.rst
7644 F: include/linux/freezer.h
7645 F: kernel/freezer.c
7646
7647 FRONTSWAP API
7648 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7649 L: linux-kernel@vger.kernel.org
7650 S: Maintained
7651 F: include/linux/frontswap.h
7652 F: mm/frontswap.c
7653
7654 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7655 M: David Howells <dhowells@redhat.com>
7656 L: linux-cachefs@redhat.com (moderated for non-subscribers)
7657 S: Supported
7658 F: Documentation/filesystems/caching/
7659 F: fs/fscache/
7660 F: include/linux/fscache*.h
7661
7662 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7663 M: Theodore Y. Ts'o <tytso@mit.edu>
7664 M: Jaegeuk Kim <jaegeuk@kernel.org>
7665 M: Eric Biggers <ebiggers@kernel.org>
7666 L: linux-fscrypt@vger.kernel.org
7667 S: Supported
7668 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7669 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7670 F: Documentation/filesystems/fscrypt.rst
7671 F: fs/crypto/
7672 F: include/linux/fscrypt*.h
7673 F: include/uapi/linux/fscrypt.h
7674
7675 FSI SUBSYSTEM
7676 M: Jeremy Kerr <jk@ozlabs.org>
7677 M: Joel Stanley <joel@jms.id.au>
7678 R: Alistar Popple <alistair@popple.id.au>
7679 R: Eddie James <eajames@linux.ibm.com>
7680 L: linux-fsi@lists.ozlabs.org
7681 S: Supported
7682 Q: http://patchwork.ozlabs.org/project/linux-fsi/list/
7683 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7684 F: drivers/fsi/
7685 F: include/linux/fsi*.h
7686 F: include/trace/events/fsi*.h
7687
7688 FSI-ATTACHED I2C DRIVER
7689 M: Eddie James <eajames@linux.ibm.com>
7690 L: linux-i2c@vger.kernel.org
7691 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
7692 S: Maintained
7693 F: Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7694 F: drivers/i2c/busses/i2c-fsi.c
7695
7696 FSI-ATTACHED SPI DRIVER
7697 M: Eddie James <eajames@linux.ibm.com>
7698 L: linux-spi@vger.kernel.org
7699 S: Maintained
7700 F: Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7701 F: drivers/spi/spi-fsi.c
7702
7703 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7704 M: Jan Kara <jack@suse.cz>
7705 R: Amir Goldstein <amir73il@gmail.com>
7706 L: linux-fsdevel@vger.kernel.org
7707 S: Maintained
7708 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7709 F: fs/notify/
7710 F: include/linux/fsnotify*.h
7711
7712 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7713 M: Eric Biggers <ebiggers@kernel.org>
7714 M: Theodore Y. Ts'o <tytso@mit.edu>
7715 L: linux-fscrypt@vger.kernel.org
7716 S: Supported
7717 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7718 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7719 F: Documentation/filesystems/fsverity.rst
7720 F: fs/verity/
7721 F: include/linux/fsverity.h
7722 F: include/uapi/linux/fsverity.h
7723
7724 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7725 M: Michael Zaidman <michael.zaidman@gmail.com>
7726 L: linux-i2c@vger.kernel.org
7727 L: linux-input@vger.kernel.org
7728 S: Maintained
7729 F: drivers/hid/hid-ft260.c
7730
7731 FUJITSU LAPTOP EXTRAS
7732 M: Jonathan Woithe <jwoithe@just42.net>
7733 L: platform-driver-x86@vger.kernel.org
7734 S: Maintained
7735 F: drivers/platform/x86/fujitsu-laptop.c
7736
7737 FUJITSU M-5MO LS CAMERA ISP DRIVER
7738 M: Kyungmin Park <kyungmin.park@samsung.com>
7739 M: Heungjun Kim <riverful.kim@samsung.com>
7740 L: linux-media@vger.kernel.org
7741 S: Maintained
7742 F: drivers/media/i2c/m5mols/
7743 F: include/media/i2c/m5mols.h
7744
7745 FUJITSU TABLET EXTRAS
7746 M: Robert Gerlach <khnz@gmx.de>
7747 L: platform-driver-x86@vger.kernel.org
7748 S: Maintained
7749 F: drivers/platform/x86/fujitsu-tablet.c
7750
7751 FUSE: FILESYSTEM IN USERSPACE
7752 M: Miklos Szeredi <miklos@szeredi.hu>
7753 L: linux-fsdevel@vger.kernel.org
7754 S: Maintained
7755 W: https://github.com/libfuse/
7756 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7757 F: Documentation/filesystems/fuse.rst
7758 F: fs/fuse/
7759 F: include/uapi/linux/fuse.h
7760
7761 FUTEX SUBSYSTEM
7762 M: Thomas Gleixner <tglx@linutronix.de>
7763 M: Ingo Molnar <mingo@redhat.com>
7764 R: Peter Zijlstra <peterz@infradead.org>
7765 R: Darren Hart <dvhart@infradead.org>
7766 R: Davidlohr Bueso <dave@stgolabs.net>
7767 L: linux-kernel@vger.kernel.org
7768 S: Maintained
7769 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7770 F: Documentation/locking/*futex*
7771 F: include/asm-generic/futex.h
7772 F: include/linux/futex.h
7773 F: include/uapi/linux/futex.h
7774 F: kernel/futex.c
7775 F: tools/perf/bench/futex*
7776 F: tools/testing/selftests/futex/
7777
7778 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7779 M: Tim Harvey <tharvey@gateworks.com>
7780 M: Robert Jones <rjones@gateworks.com>
7781 S: Maintained
7782 F: Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7783 F: drivers/mfd/gateworks-gsc.c
7784 F: include/linux/mfd/gsc.h
7785 F: Documentation/hwmon/gsc-hwmon.rst
7786 F: drivers/hwmon/gsc-hwmon.c
7787 F: include/linux/platform_data/gsc_hwmon.h
7788
7789 GCC PLUGINS
7790 M: Kees Cook <keescook@chromium.org>
7791 L: linux-hardening@vger.kernel.org
7792 S: Maintained
7793 F: Documentation/kbuild/gcc-plugins.rst
7794 F: scripts/Makefile.gcc-plugins
7795 F: scripts/gcc-plugins/
7796
7797 GCOV BASED KERNEL PROFILING
7798 M: Peter Oberparleiter <oberpar@linux.ibm.com>
7799 S: Maintained
7800 F: Documentation/dev-tools/gcov.rst
7801 F: kernel/gcov/
7802
7803 GDB KERNEL DEBUGGING HELPER SCRIPTS
7804 M: Jan Kiszka <jan.kiszka@siemens.com>
7805 M: Kieran Bingham <kbingham@kernel.org>
7806 S: Supported
7807 F: scripts/gdb/
7808
7809 GEMINI CRYPTO DRIVER
7810 M: Corentin Labbe <clabbe@baylibre.com>
7811 L: linux-crypto@vger.kernel.org
7812 S: Maintained
7813 F: drivers/crypto/gemini/
7814
7815 GEMTEK FM RADIO RECEIVER DRIVER
7816 M: Hans Verkuil <hverkuil@xs4all.nl>
7817 L: linux-media@vger.kernel.org
7818 S: Maintained
7819 W: https://linuxtv.org
7820 T: git git://linuxtv.org/media_tree.git
7821 F: drivers/media/radio/radio-gemtek*
7822
7823 GENERIC ARCHITECTURE TOPOLOGY
7824 M: Sudeep Holla <sudeep.holla@arm.com>
7825 L: linux-kernel@vger.kernel.org
7826 S: Maintained
7827 F: drivers/base/arch_topology.c
7828 F: include/linux/arch_topology.h
7829
7830 GENERIC ENTRY CODE
7831 M: Thomas Gleixner <tglx@linutronix.de>
7832 M: Peter Zijlstra <peterz@infradead.org>
7833 M: Andy Lutomirski <luto@kernel.org>
7834 L: linux-kernel@vger.kernel.org
7835 S: Maintained
7836 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7837 F: include/linux/entry-common.h
7838 F: include/linux/entry-kvm.h
7839 F: kernel/entry/
7840
7841 GENERIC GPIO I2C DRIVER
7842 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7843 S: Supported
7844 F: drivers/i2c/busses/i2c-gpio.c
7845 F: include/linux/platform_data/i2c-gpio.h
7846
7847 GENERIC GPIO I2C MULTIPLEXER DRIVER
7848 M: Peter Korsgaard <peter.korsgaard@barco.com>
7849 L: linux-i2c@vger.kernel.org
7850 S: Supported
7851 F: Documentation/i2c/muxes/i2c-mux-gpio.rst
7852 F: drivers/i2c/muxes/i2c-mux-gpio.c
7853 F: include/linux/platform_data/i2c-mux-gpio.h
7854
7855 GENERIC HDLC (WAN) DRIVERS
7856 M: Krzysztof Halasa <khc@pm.waw.pl>
7857 S: Maintained
7858 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
7859 F: drivers/net/wan/c101.c
7860 F: drivers/net/wan/hd6457*
7861 F: drivers/net/wan/hdlc*
7862 F: drivers/net/wan/n2.c
7863 F: drivers/net/wan/pc300too.c
7864 F: drivers/net/wan/pci200syn.c
7865 F: drivers/net/wan/wanxl*
7866
7867 GENERIC INCLUDE/ASM HEADER FILES
7868 M: Arnd Bergmann <arnd@arndb.de>
7869 L: linux-arch@vger.kernel.org
7870 S: Maintained
7871 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7872 F: include/asm-generic/
7873 F: include/uapi/asm-generic/
7874
7875 GENERIC PHY FRAMEWORK
7876 M: Kishon Vijay Abraham I <kishon@ti.com>
7877 M: Vinod Koul <vkoul@kernel.org>
7878 L: linux-phy@lists.infradead.org
7879 S: Supported
7880 Q: https://patchwork.kernel.org/project/linux-phy/list/
7881 T: git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7882 F: Documentation/devicetree/bindings/phy/
7883 F: drivers/phy/
7884 F: include/linux/phy/
7885
7886 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7887 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7888 S: Supported
7889 F: drivers/i2c/muxes/i2c-demux-pinctrl.c
7890
7891 GENERIC PM DOMAINS
7892 M: "Rafael J. Wysocki" <rafael@kernel.org>
7893 M: Kevin Hilman <khilman@kernel.org>
7894 M: Ulf Hansson <ulf.hansson@linaro.org>
7895 L: linux-pm@vger.kernel.org
7896 S: Supported
7897 F: Documentation/devicetree/bindings/power/power?domain*
7898 F: drivers/base/power/domain*.c
7899 F: include/linux/pm_domain.h
7900
7901 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7902 M: Eugen Hristev <eugen.hristev@microchip.com>
7903 L: linux-input@vger.kernel.org
7904 S: Maintained
7905 F: drivers/input/touchscreen/resistive-adc-touch.c
7906
7907 GENERIC STRING LIBRARY
7908 R: Andy Shevchenko <andy@kernel.org>
7909 S: Maintained
7910 F: lib/string.c
7911 F: lib/string_helpers.c
7912 F: lib/test_string.c
7913 F: lib/test-string_helpers.c
7914
7915 GENERIC UIO DRIVER FOR PCI DEVICES
7916 M: "Michael S. Tsirkin" <mst@redhat.com>
7917 L: kvm@vger.kernel.org
7918 S: Supported
7919 F: drivers/uio/uio_pci_generic.c
7920
7921 GENERIC VDSO LIBRARY
7922 M: Andy Lutomirski <luto@kernel.org>
7923 M: Thomas Gleixner <tglx@linutronix.de>
7924 M: Vincenzo Frascino <vincenzo.frascino@arm.com>
7925 L: linux-kernel@vger.kernel.org
7926 S: Maintained
7927 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7928 F: include/asm-generic/vdso/vsyscall.h
7929 F: include/vdso/
7930 F: kernel/time/vsyscall.c
7931 F: lib/vdso/
7932
7933 GENWQE (IBM Generic Workqueue Card)
7934 M: Frank Haverkamp <haver@linux.ibm.com>
7935 S: Supported
7936 F: drivers/misc/genwqe/
7937
7938 GET_MAINTAINER SCRIPT
7939 M: Joe Perches <joe@perches.com>
7940 S: Maintained
7941 F: scripts/get_maintainer.pl
7942
7943 GFS2 FILE SYSTEM
7944 M: Bob Peterson <rpeterso@redhat.com>
7945 M: Andreas Gruenbacher <agruenba@redhat.com>
7946 L: cluster-devel@redhat.com
7947 S: Supported
7948 B: https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7949 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7950 F: Documentation/filesystems/gfs2*
7951 F: fs/gfs2/
7952 F: include/uapi/linux/gfs2_ondisk.h
7953
7954 GIGABYTE WMI DRIVER
7955 M: Thomas Weißschuh <thomas@weissschuh.net>
7956 L: platform-driver-x86@vger.kernel.org
7957 S: Maintained
7958 F: drivers/platform/x86/gigabyte-wmi.c
7959
7960 GNSS SUBSYSTEM
7961 M: Johan Hovold <johan@kernel.org>
7962 S: Maintained
7963 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7964 F: Documentation/ABI/testing/sysfs-class-gnss
7965 F: Documentation/devicetree/bindings/gnss/
7966 F: drivers/gnss/
7967 F: include/linux/gnss.h
7968
7969 GO7007 MPEG CODEC
7970 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
7971 L: linux-media@vger.kernel.org
7972 S: Maintained
7973 F: drivers/media/usb/go7007/
7974
7975 GOODIX TOUCHSCREEN
7976 M: Bastien Nocera <hadess@hadess.net>
7977 L: linux-input@vger.kernel.org
7978 S: Maintained
7979 F: drivers/input/touchscreen/goodix.c
7980
7981 GOOGLE ETHERNET DRIVERS
7982 M: Jeroen de Borst <jeroendb@google.com>
7983 R: Catherine Sullivan <csully@google.com>
7984 R: David Awogbemila <awogbemila@google.com>
7985 L: netdev@vger.kernel.org
7986 S: Supported
7987 F: Documentation/networking/device_drivers/ethernet/google/gve.rst
7988 F: drivers/net/ethernet/google
7989
7990 GPD POCKET FAN DRIVER
7991 M: Hans de Goede <hdegoede@redhat.com>
7992 L: platform-driver-x86@vger.kernel.org
7993 S: Maintained
7994 F: drivers/platform/x86/gpd-pocket-fan.c
7995
7996 GPIO ACPI SUPPORT
7997 M: Mika Westerberg <mika.westerberg@linux.intel.com>
7998 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7999 L: linux-gpio@vger.kernel.org
8000 L: linux-acpi@vger.kernel.org
8001 S: Maintained
8002 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8003 F: Documentation/firmware-guide/acpi/gpio-properties.rst
8004 F: drivers/gpio/gpiolib-acpi.c
8005 F: drivers/gpio/gpiolib-acpi.h
8006
8007 GPIO AGGREGATOR
8008 M: Geert Uytterhoeven <geert+renesas@glider.be>
8009 L: linux-gpio@vger.kernel.org
8010 S: Supported
8011 F: Documentation/admin-guide/gpio/gpio-aggregator.rst
8012 F: drivers/gpio/gpio-aggregator.c
8013
8014 GPIO IR Transmitter
8015 M: Sean Young <sean@mess.org>
8016 L: linux-media@vger.kernel.org
8017 S: Maintained
8018 F: drivers/media/rc/gpio-ir-tx.c
8019
8020 GPIO MOCKUP DRIVER
8021 M: Bamvor Jian Zhang <bamv2005@gmail.com>
8022 L: linux-gpio@vger.kernel.org
8023 S: Maintained
8024 F: drivers/gpio/gpio-mockup.c
8025 F: tools/testing/selftests/gpio/
8026
8027 GPIO REGMAP
8028 R: Michael Walle <michael@walle.cc>
8029 S: Maintained
8030 F: drivers/gpio/gpio-regmap.c
8031 F: include/linux/gpio/regmap.h
8032
8033 GPIO SUBSYSTEM
8034 M: Linus Walleij <linus.walleij@linaro.org>
8035 M: Bartosz Golaszewski <brgl@bgdev.pl>
8036 L: linux-gpio@vger.kernel.org
8037 S: Maintained
8038 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8039 F: Documentation/ABI/obsolete/sysfs-gpio
8040 F: Documentation/ABI/testing/gpio-cdev
8041 F: Documentation/admin-guide/gpio/
8042 F: Documentation/devicetree/bindings/gpio/
8043 F: Documentation/driver-api/gpio/
8044 F: drivers/gpio/
8045 F: include/asm-generic/gpio.h
8046 F: include/linux/gpio.h
8047 F: include/linux/gpio/
8048 F: include/linux/of_gpio.h
8049 F: include/uapi/linux/gpio.h
8050 F: tools/gpio/
8051
8052 GRE DEMULTIPLEXER DRIVER
8053 M: Dmitry Kozlov <xeb@mail.ru>
8054 L: netdev@vger.kernel.org
8055 S: Maintained
8056 F: include/net/gre.h
8057 F: net/ipv4/gre_demux.c
8058 F: net/ipv4/gre_offload.c
8059
8060 GRETH 10/100/1G Ethernet MAC device driver
8061 M: Andreas Larsson <andreas@gaisler.com>
8062 L: netdev@vger.kernel.org
8063 S: Maintained
8064 F: drivers/net/ethernet/aeroflex/
8065
8066 GREYBUS AUDIO PROTOCOLS DRIVERS
8067 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
8068 M: Mark Greer <mgreer@animalcreek.com>
8069 S: Maintained
8070 F: drivers/staging/greybus/audio_apbridgea.c
8071 F: drivers/staging/greybus/audio_apbridgea.h
8072 F: drivers/staging/greybus/audio_codec.c
8073 F: drivers/staging/greybus/audio_codec.h
8074 F: drivers/staging/greybus/audio_gb.c
8075 F: drivers/staging/greybus/audio_manager.c
8076 F: drivers/staging/greybus/audio_manager.h
8077 F: drivers/staging/greybus/audio_manager_module.c
8078 F: drivers/staging/greybus/audio_manager_private.h
8079 F: drivers/staging/greybus/audio_manager_sysfs.c
8080 F: drivers/staging/greybus/audio_module.c
8081 F: drivers/staging/greybus/audio_topology.c
8082
8083 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8084 M: Viresh Kumar <vireshk@kernel.org>
8085 S: Maintained
8086 F: drivers/staging/greybus/authentication.c
8087 F: drivers/staging/greybus/bootrom.c
8088 F: drivers/staging/greybus/firmware.h
8089 F: drivers/staging/greybus/fw-core.c
8090 F: drivers/staging/greybus/fw-download.c
8091 F: drivers/staging/greybus/fw-management.c
8092 F: drivers/staging/greybus/greybus_authentication.h
8093 F: drivers/staging/greybus/greybus_firmware.h
8094 F: drivers/staging/greybus/hid.c
8095 F: drivers/staging/greybus/i2c.c
8096 F: drivers/staging/greybus/spi.c
8097 F: drivers/staging/greybus/spilib.c
8098 F: drivers/staging/greybus/spilib.h
8099
8100 GREYBUS LOOPBACK DRIVER
8101 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
8102 S: Maintained
8103 F: drivers/staging/greybus/loopback.c
8104
8105 GREYBUS PLATFORM DRIVERS
8106 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8107 S: Maintained
8108 F: drivers/staging/greybus/arche-apb-ctrl.c
8109 F: drivers/staging/greybus/arche-platform.c
8110 F: drivers/staging/greybus/arche_platform.h
8111
8112 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8113 M: Rui Miguel Silva <rmfrfs@gmail.com>
8114 S: Maintained
8115 F: drivers/staging/greybus/gpio.c
8116 F: drivers/staging/greybus/light.c
8117 F: drivers/staging/greybus/power_supply.c
8118 F: drivers/staging/greybus/sdio.c
8119 F: drivers/staging/greybus/spi.c
8120 F: drivers/staging/greybus/spilib.c
8121
8122 GREYBUS SUBSYSTEM
8123 M: Johan Hovold <johan@kernel.org>
8124 M: Alex Elder <elder@kernel.org>
8125 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8126 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
8127 S: Maintained
8128 F: drivers/greybus/
8129 F: drivers/staging/greybus/
8130 F: include/linux/greybus.h
8131 F: include/linux/greybus/
8132
8133 GREYBUS UART PROTOCOLS DRIVERS
8134 M: David Lin <dtwlin@gmail.com>
8135 S: Maintained
8136 F: drivers/staging/greybus/log.c
8137 F: drivers/staging/greybus/uart.c
8138
8139 GS1662 VIDEO SERIALIZER
8140 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8141 L: linux-media@vger.kernel.org
8142 S: Maintained
8143 T: git git://linuxtv.org/media_tree.git
8144 F: drivers/media/spi/gs1662.c
8145
8146 GSPCA FINEPIX SUBDRIVER
8147 M: Frank Zago <frank@zago.net>
8148 L: linux-media@vger.kernel.org
8149 S: Maintained
8150 T: git git://linuxtv.org/media_tree.git
8151 F: drivers/media/usb/gspca/finepix.c
8152
8153 GSPCA GL860 SUBDRIVER
8154 M: Olivier Lorin <o.lorin@laposte.net>
8155 L: linux-media@vger.kernel.org
8156 S: Maintained
8157 T: git git://linuxtv.org/media_tree.git
8158 F: drivers/media/usb/gspca/gl860/
8159
8160 GSPCA M5602 SUBDRIVER
8161 M: Erik Andren <erik.andren@gmail.com>
8162 L: linux-media@vger.kernel.org
8163 S: Maintained
8164 T: git git://linuxtv.org/media_tree.git
8165 F: drivers/media/usb/gspca/m5602/
8166
8167 GSPCA PAC207 SONIXB SUBDRIVER
8168 M: Hans Verkuil <hverkuil@xs4all.nl>
8169 L: linux-media@vger.kernel.org
8170 S: Odd Fixes
8171 T: git git://linuxtv.org/media_tree.git
8172 F: drivers/media/usb/gspca/pac207.c
8173
8174 GSPCA SN9C20X SUBDRIVER
8175 M: Brian Johnson <brijohn@gmail.com>
8176 L: linux-media@vger.kernel.org
8177 S: Maintained
8178 T: git git://linuxtv.org/media_tree.git
8179 F: drivers/media/usb/gspca/sn9c20x.c
8180
8181 GSPCA T613 SUBDRIVER
8182 M: Leandro Costantino <lcostantino@gmail.com>
8183 L: linux-media@vger.kernel.org
8184 S: Maintained
8185 T: git git://linuxtv.org/media_tree.git
8186 F: drivers/media/usb/gspca/t613.c
8187
8188 GSPCA USB WEBCAM DRIVER
8189 M: Hans Verkuil <hverkuil@xs4all.nl>
8190 L: linux-media@vger.kernel.org
8191 S: Odd Fixes
8192 T: git git://linuxtv.org/media_tree.git
8193 F: drivers/media/usb/gspca/
8194
8195 GTP (GPRS Tunneling Protocol)
8196 M: Pablo Neira Ayuso <pablo@netfilter.org>
8197 M: Harald Welte <laforge@gnumonks.org>
8198 L: osmocom-net-gprs@lists.osmocom.org
8199 S: Maintained
8200 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8201 F: drivers/net/gtp.c
8202
8203 GUID PARTITION TABLE (GPT)
8204 M: Davidlohr Bueso <dave@stgolabs.net>
8205 L: linux-efi@vger.kernel.org
8206 S: Maintained
8207 F: block/partitions/efi.*
8208
8209 H8/300 ARCHITECTURE
8210 M: Yoshinori Sato <ysato@users.sourceforge.jp>
8211 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8212 S: Maintained
8213 W: http://uclinux-h8.sourceforge.jp
8214 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8215 F: arch/h8300/
8216 F: drivers/clk/h8300/
8217 F: drivers/clocksource/h8300_*.c
8218 F: drivers/irqchip/irq-renesas-h8*.c
8219
8220 HABANALABS PCI DRIVER
8221 M: Oded Gabbay <ogabbay@kernel.org>
8222 S: Supported
8223 T: git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8224 F: Documentation/ABI/testing/debugfs-driver-habanalabs
8225 F: Documentation/ABI/testing/sysfs-driver-habanalabs
8226 F: drivers/misc/habanalabs/
8227 F: include/uapi/misc/habanalabs.h
8228
8229 HACKRF MEDIA DRIVER
8230 M: Antti Palosaari <crope@iki.fi>
8231 L: linux-media@vger.kernel.org
8232 S: Maintained
8233 W: https://linuxtv.org
8234 W: http://palosaari.fi/linux/
8235 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8236 T: git git://linuxtv.org/anttip/media_tree.git
8237 F: drivers/media/usb/hackrf/
8238
8239 HANTRO VPU CODEC DRIVER
8240 M: Ezequiel Garcia <ezequiel@collabora.com>
8241 M: Philipp Zabel <p.zabel@pengutronix.de>
8242 L: linux-media@vger.kernel.org
8243 L: linux-rockchip@lists.infradead.org
8244 S: Maintained
8245 F: Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8246 F: Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8247 F: drivers/staging/media/hantro/
8248
8249 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8250 M: Frank Seidel <frank@f-seidel.de>
8251 L: platform-driver-x86@vger.kernel.org
8252 S: Maintained
8253 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8254 F: drivers/platform/x86/hdaps.c
8255
8256 HARDWARE MONITORING
8257 M: Jean Delvare <jdelvare@suse.com>
8258 M: Guenter Roeck <linux@roeck-us.net>
8259 L: linux-hwmon@vger.kernel.org
8260 S: Maintained
8261 W: http://hwmon.wiki.kernel.org/
8262 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8263 F: Documentation/devicetree/bindings/hwmon/
8264 F: Documentation/hwmon/
8265 F: drivers/hwmon/
8266 F: include/linux/hwmon*.h
8267 F: include/trace/events/hwmon*.h
8268 K: (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8269
8270 HARDWARE RANDOM NUMBER GENERATOR CORE
8271 M: Matt Mackall <mpm@selenic.com>
8272 M: Herbert Xu <herbert@gondor.apana.org.au>
8273 L: linux-crypto@vger.kernel.org
8274 S: Odd fixes
8275 F: Documentation/admin-guide/hw_random.rst
8276 F: Documentation/devicetree/bindings/rng/
8277 F: drivers/char/hw_random/
8278 F: include/linux/hw_random.h
8279
8280 HARDWARE SPINLOCK CORE
8281 M: Ohad Ben-Cohen <ohad@wizery.com>
8282 M: Bjorn Andersson <bjorn.andersson@linaro.org>
8283 R: Baolin Wang <baolin.wang7@gmail.com>
8284 L: linux-remoteproc@vger.kernel.org
8285 S: Maintained
8286 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8287 F: Documentation/devicetree/bindings/hwlock/
8288 F: Documentation/locking/hwspinlock.rst
8289 F: drivers/hwspinlock/
8290 F: include/linux/hwspinlock.h
8291
8292 HARDWARE TRACING FACILITIES
8293 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
8294 S: Maintained
8295 F: drivers/hwtracing/
8296
8297 HARMONY SOUND DRIVER
8298 L: linux-parisc@vger.kernel.org
8299 S: Maintained
8300 F: sound/parisc/harmony.*
8301
8302 HDPVR USB VIDEO ENCODER DRIVER
8303 M: Hans Verkuil <hverkuil@xs4all.nl>
8304 L: linux-media@vger.kernel.org
8305 S: Odd Fixes
8306 W: https://linuxtv.org
8307 T: git git://linuxtv.org/media_tree.git
8308 F: drivers/media/usb/hdpvr/
8309
8310 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8311 M: Matt Hsiao <matt.hsiao@hpe.com>
8312 S: Supported
8313 F: drivers/misc/hpilo.[ch]
8314
8315 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8316 M: Jerry Hoemann <jerry.hoemann@hpe.com>
8317 S: Supported
8318 F: Documentation/watchdog/hpwdt.rst
8319 F: drivers/watchdog/hpwdt.c
8320
8321 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8322 M: Don Brace <don.brace@microchip.com>
8323 L: storagedev@microchip.com
8324 L: linux-scsi@vger.kernel.org
8325 S: Supported
8326 F: Documentation/scsi/hpsa.rst
8327 F: drivers/scsi/hpsa*.[ch]
8328 F: include/linux/cciss*.h
8329 F: include/uapi/linux/cciss*.h
8330
8331 HFI1 DRIVER
8332 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8333 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8334 L: linux-rdma@vger.kernel.org
8335 S: Supported
8336 F: drivers/infiniband/hw/hfi1
8337
8338 HFS FILESYSTEM
8339 L: linux-fsdevel@vger.kernel.org
8340 S: Orphan
8341 F: Documentation/filesystems/hfs.rst
8342 F: fs/hfs/
8343
8344 HFSPLUS FILESYSTEM
8345 L: linux-fsdevel@vger.kernel.org
8346 S: Orphan
8347 F: Documentation/filesystems/hfsplus.rst
8348 F: fs/hfsplus/
8349
8350 HGA FRAMEBUFFER DRIVER
8351 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8352 L: linux-nvidia@lists.surfsouth.com
8353 S: Maintained
8354 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8355 F: drivers/video/fbdev/hgafb.c
8356
8357 HIBERNATION (aka Software Suspend, aka swsusp)
8358 M: "Rafael J. Wysocki" <rafael@kernel.org>
8359 M: Pavel Machek <pavel@ucw.cz>
8360 L: linux-pm@vger.kernel.org
8361 S: Supported
8362 B: https://bugzilla.kernel.org
8363 F: arch/*/include/asm/suspend*.h
8364 F: arch/x86/power/
8365 F: drivers/base/power/
8366 F: include/linux/freezer.h
8367 F: include/linux/pm.h
8368 F: include/linux/suspend.h
8369 F: kernel/power/
8370
8371 HID CORE LAYER
8372 M: Jiri Kosina <jikos@kernel.org>
8373 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
8374 L: linux-input@vger.kernel.org
8375 S: Maintained
8376 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8377 F: drivers/hid/
8378 F: include/linux/hid*
8379 F: include/uapi/linux/hid*
8380
8381 HID PLAYSTATION DRIVER
8382 M: Roderick Colenbrander <roderick.colenbrander@sony.com>
8383 L: linux-input@vger.kernel.org
8384 S: Supported
8385 F: drivers/hid/hid-playstation.c
8386
8387 HID SENSOR HUB DRIVERS
8388 M: Jiri Kosina <jikos@kernel.org>
8389 M: Jonathan Cameron <jic23@kernel.org>
8390 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8391 L: linux-input@vger.kernel.org
8392 L: linux-iio@vger.kernel.org
8393 S: Maintained
8394 F: Documentation/hid/hid-sensor*
8395 F: drivers/hid/hid-sensor-*
8396 F: drivers/iio/*/hid-*
8397 F: include/linux/hid-sensor-*
8398
8399 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8400 M: Thomas Gleixner <tglx@linutronix.de>
8401 L: linux-kernel@vger.kernel.org
8402 S: Maintained
8403 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8404 F: Documentation/timers/
8405 F: include/linux/clockchips.h
8406 F: include/linux/hrtimer.h
8407 F: kernel/time/clockevents.c
8408 F: kernel/time/hrtimer.c
8409 F: kernel/time/timer_*.c
8410
8411 HIGH-SPEED SCC DRIVER FOR AX.25
8412 L: linux-hams@vger.kernel.org
8413 S: Orphan
8414 F: drivers/net/hamradio/dmascc.c
8415 F: drivers/net/hamradio/scc.c
8416
8417 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8418 M: HighPoint Linux Team <linux@highpoint-tech.com>
8419 S: Supported
8420 W: http://www.highpoint-tech.com
8421 F: Documentation/scsi/hptiop.rst
8422 F: drivers/scsi/hptiop.c
8423
8424 HIPPI
8425 M: Jes Sorensen <jes@trained-monkey.org>
8426 L: linux-hippi@sunsite.dk
8427 S: Maintained
8428 F: drivers/net/hippi/
8429 F: include/linux/hippidevice.h
8430 F: include/uapi/linux/if_hippi.h
8431 F: net/802/hippi.c
8432
8433 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8434 M: Kurt Kanzenbach <kurt@linutronix.de>
8435 L: netdev@vger.kernel.org
8436 S: Maintained
8437 F: Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8438 F: drivers/net/dsa/hirschmann/*
8439 F: include/linux/platform_data/hirschmann-hellcreek.h
8440 F: net/dsa/tag_hellcreek.c
8441
8442 HISILICON DMA DRIVER
8443 M: Zhou Wang <wangzhou1@hisilicon.com>
8444 L: dmaengine@vger.kernel.org
8445 S: Maintained
8446 F: drivers/dma/hisi_dma.c
8447
8448 HISILICON GPIO DRIVER
8449 M: Luo Jiaxing <luojiaxing@huawei.com>
8450 L: linux-gpio@vger.kernel.org
8451 S: Maintained
8452 F: drivers/gpio/gpio-hisi.c
8453
8454 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8455 M: Zaibo Xu <xuzaibo@huawei.com>
8456 L: linux-crypto@vger.kernel.org
8457 S: Maintained
8458 F: Documentation/ABI/testing/debugfs-hisi-hpre
8459 F: drivers/crypto/hisilicon/hpre/hpre.h
8460 F: drivers/crypto/hisilicon/hpre/hpre_crypto.c
8461 F: drivers/crypto/hisilicon/hpre/hpre_main.c
8462
8463 HISILICON I2C CONTROLLER DRIVER
8464 M: Yicong Yang <yangyicong@hisilicon.com>
8465 L: linux-i2c@vger.kernel.org
8466 S: Maintained
8467 W: https://www.hisilicon.com
8468 F: drivers/i2c/busses/i2c-hisi.c
8469
8470 HISILICON LPC BUS DRIVER
8471 M: john.garry@huawei.com
8472 S: Maintained
8473 W: http://www.hisilicon.com
8474 F: Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8475 F: drivers/bus/hisi_lpc.c
8476
8477 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8478 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8479 M: Salil Mehta <salil.mehta@huawei.com>
8480 L: netdev@vger.kernel.org
8481 S: Maintained
8482 W: http://www.hisilicon.com
8483 F: drivers/net/ethernet/hisilicon/hns3/
8484
8485 HISILICON NETWORK SUBSYSTEM DRIVER
8486 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8487 M: Salil Mehta <salil.mehta@huawei.com>
8488 L: netdev@vger.kernel.org
8489 S: Maintained
8490 W: http://www.hisilicon.com
8491 F: Documentation/devicetree/bindings/net/hisilicon*.txt
8492 F: drivers/net/ethernet/hisilicon/
8493
8494 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8495 M: John Stultz <john.stultz@linaro.org>
8496 L: linux-kernel@vger.kernel.org
8497 S: Maintained
8498 F: drivers/misc/hisi_hikey_usb.c
8499 F: Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8500
8501 HISILICON PMU DRIVER
8502 M: Shaokun Zhang <zhangshaokun@hisilicon.com>
8503 S: Supported
8504 W: http://www.hisilicon.com
8505 F: Documentation/admin-guide/perf/hisi-pmu.rst
8506 F: drivers/perf/hisilicon
8507
8508 HISILICON QM AND ZIP Controller DRIVER
8509 M: Zhou Wang <wangzhou1@hisilicon.com>
8510 L: linux-crypto@vger.kernel.org
8511 S: Maintained
8512 F: Documentation/ABI/testing/debugfs-hisi-zip
8513 F: drivers/crypto/hisilicon/qm.c
8514 F: drivers/crypto/hisilicon/qm.h
8515 F: drivers/crypto/hisilicon/sgl.c
8516 F: drivers/crypto/hisilicon/zip/
8517
8518 HISILICON ROCE DRIVER
8519 M: Wenpeng Liang <liangwenpeng@huawei.com>
8520 M: Weihang Li <liweihang@huawei.com>
8521 L: linux-rdma@vger.kernel.org
8522 S: Maintained
8523 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8524 F: drivers/infiniband/hw/hns/
8525
8526 HISILICON SAS Controller
8527 M: John Garry <john.garry@huawei.com>
8528 S: Supported
8529 W: http://www.hisilicon.com
8530 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8531 F: drivers/scsi/hisi_sas/
8532
8533 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8534 M: Zaibo Xu <xuzaibo@huawei.com>
8535 L: linux-crypto@vger.kernel.org
8536 S: Maintained
8537 F: Documentation/ABI/testing/debugfs-hisi-sec
8538 F: drivers/crypto/hisilicon/sec2/sec.h
8539 F: drivers/crypto/hisilicon/sec2/sec_crypto.c
8540 F: drivers/crypto/hisilicon/sec2/sec_crypto.h
8541 F: drivers/crypto/hisilicon/sec2/sec_main.c
8542
8543 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8544 M: Jay Fang <f.fangjian@huawei.com>
8545 L: linux-spi@vger.kernel.org
8546 S: Maintained
8547 W: http://www.hisilicon.com
8548 F: drivers/spi/spi-hisi-kunpeng.c
8549
8550 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8551 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8552 L: linux-kernel@vger.kernel.org
8553 S: Maintained
8554 F: Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8555 F: drivers/spmi/hisi-spmi-controller.c
8556
8557 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8558 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8559 L: linux-kernel@vger.kernel.org
8560 S: Maintained
8561 F: Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8562 F: drivers/mfd/hi6421-spmi-pmic.c
8563
8564 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8565 M: Zaibo Xu <xuzaibo@huawei.com>
8566 S: Maintained
8567 F: drivers/crypto/hisilicon/trng/trng.c
8568
8569 HISILICON V3XX SPI NOR FLASH Controller Driver
8570 M: John Garry <john.garry@huawei.com>
8571 S: Maintained
8572 W: http://www.hisilicon.com
8573 F: drivers/spi/spi-hisi-sfc-v3xx.c
8574
8575 HMM - Heterogeneous Memory Management
8576 M: Jérôme Glisse <jglisse@redhat.com>
8577 L: linux-mm@kvack.org
8578 S: Maintained
8579 F: Documentation/vm/hmm.rst
8580 F: include/linux/hmm*
8581 F: lib/test_hmm*
8582 F: mm/hmm*
8583 F: tools/testing/selftests/vm/*hmm*
8584
8585 HOST AP DRIVER
8586 M: Jouni Malinen <j@w1.fi>
8587 L: linux-wireless@vger.kernel.org
8588 S: Obsolete
8589 W: http://w1.fi/hostap-driver.html
8590 F: drivers/net/wireless/intersil/hostap/
8591
8592 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8593 L: platform-driver-x86@vger.kernel.org
8594 S: Orphan
8595 F: drivers/platform/x86/tc1100-wmi.c
8596
8597 HPET: High Precision Event Timers driver
8598 M: Clemens Ladisch <clemens@ladisch.de>
8599 S: Maintained
8600 F: Documentation/timers/hpet.rst
8601 F: drivers/char/hpet.c
8602 F: include/linux/hpet.h
8603 F: include/uapi/linux/hpet.h
8604
8605 HPET: x86
8606 S: Orphan
8607 F: arch/x86/include/asm/hpet.h
8608 F: arch/x86/kernel/hpet.c
8609
8610 HPFS FILESYSTEM
8611 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8612 S: Maintained
8613 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8614 F: fs/hpfs/
8615
8616 HSI SUBSYSTEM
8617 M: Sebastian Reichel <sre@kernel.org>
8618 S: Maintained
8619 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8620 F: Documentation/ABI/testing/sysfs-bus-hsi
8621 F: Documentation/driver-api/hsi.rst
8622 F: drivers/hsi/
8623 F: include/linux/hsi/
8624 F: include/uapi/linux/hsi/
8625
8626 HSO 3G MODEM DRIVER
8627 L: linux-usb@vger.kernel.org
8628 S: Orphan
8629 F: drivers/net/usb/hso.c
8630
8631 HSR NETWORK PROTOCOL
8632 L: netdev@vger.kernel.org
8633 S: Orphan
8634 F: net/hsr/
8635
8636 HT16K33 LED CONTROLLER DRIVER
8637 M: Robin van der Gracht <robin@protonic.nl>
8638 S: Maintained
8639 F: Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8640 F: drivers/auxdisplay/ht16k33.c
8641
8642 HTCPEN TOUCHSCREEN DRIVER
8643 M: Pau Oliva Fora <pof@eslack.org>
8644 L: linux-input@vger.kernel.org
8645 S: Maintained
8646 F: drivers/input/touchscreen/htcpen.c
8647
8648 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8649 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8650 L: linux-iio@vger.kernel.org
8651 S: Maintained
8652 W: http://www.st.com/
8653 F: Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8654 F: drivers/iio/humidity/hts221*
8655
8656 HUAWEI ETHERNET DRIVER
8657 L: netdev@vger.kernel.org
8658 S: Orphan
8659 F: Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8660 F: drivers/net/ethernet/huawei/hinic/
8661
8662 HUGETLB FILESYSTEM
8663 M: Mike Kravetz <mike.kravetz@oracle.com>
8664 L: linux-mm@kvack.org
8665 S: Maintained
8666 F: Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8667 F: Documentation/admin-guide/mm/hugetlbpage.rst
8668 F: Documentation/vm/hugetlbfs_reserv.rst
8669 F: fs/hugetlbfs/
8670 F: include/linux/hugetlb.h
8671 F: mm/hugetlb.c
8672
8673 HVA ST MEDIA DRIVER
8674 M: Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8675 L: linux-media@vger.kernel.org
8676 S: Supported
8677 W: https://linuxtv.org
8678 T: git git://linuxtv.org/media_tree.git
8679 F: drivers/media/platform/sti/hva
8680
8681 HWPOISON MEMORY FAILURE HANDLING
8682 M: Naoya Horiguchi <naoya.horiguchi@nec.com>
8683 L: linux-mm@kvack.org
8684 S: Maintained
8685 F: mm/hwpoison-inject.c
8686 F: mm/memory-failure.c
8687
8688 HYCON HY46XX TOUCHSCREEN SUPPORT
8689 M: Giulio Benetti <giulio.benetti@benettiengineering.com>
8690 L: linux-input@vger.kernel.org
8691 S: Maintained
8692 F: Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8693 F: drivers/input/touchscreen/hycon-hy46xx.c
8694
8695 HYGON PROCESSOR SUPPORT
8696 M: Pu Wen <puwen@hygon.cn>
8697 L: linux-kernel@vger.kernel.org
8698 S: Maintained
8699 F: arch/x86/kernel/cpu/hygon.c
8700
8701 HYNIX HI556 SENSOR DRIVER
8702 M: Shawn Tu <shawnx.tu@intel.com>
8703 L: linux-media@vger.kernel.org
8704 S: Maintained
8705 T: git git://linuxtv.org/media_tree.git
8706 F: drivers/media/i2c/hi556.c
8707
8708 Hyper-V/Azure CORE AND DRIVERS
8709 M: "K. Y. Srinivasan" <kys@microsoft.com>
8710 M: Haiyang Zhang <haiyangz@microsoft.com>
8711 M: Stephen Hemminger <sthemmin@microsoft.com>
8712 M: Wei Liu <wei.liu@kernel.org>
8713 M: Dexuan Cui <decui@microsoft.com>
8714 L: linux-hyperv@vger.kernel.org
8715 S: Supported
8716 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8717 F: Documentation/ABI/stable/sysfs-bus-vmbus
8718 F: Documentation/ABI/testing/debugfs-hyperv
8719 F: Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8720 F: arch/arm64/hyperv
8721 F: arch/arm64/include/asm/hyperv-tlfs.h
8722 F: arch/arm64/include/asm/mshyperv.h
8723 F: arch/x86/hyperv
8724 F: arch/x86/include/asm/hyperv-tlfs.h
8725 F: arch/x86/include/asm/mshyperv.h
8726 F: arch/x86/include/asm/trace/hyperv.h
8727 F: arch/x86/kernel/cpu/mshyperv.c
8728 F: drivers/clocksource/hyperv_timer.c
8729 F: drivers/hid/hid-hyperv.c
8730 F: drivers/hv/
8731 F: drivers/input/serio/hyperv-keyboard.c
8732 F: drivers/iommu/hyperv-iommu.c
8733 F: drivers/net/ethernet/microsoft/
8734 F: drivers/net/hyperv/
8735 F: drivers/pci/controller/pci-hyperv-intf.c
8736 F: drivers/pci/controller/pci-hyperv.c
8737 F: drivers/scsi/storvsc_drv.c
8738 F: drivers/uio/uio_hv_generic.c
8739 F: drivers/video/fbdev/hyperv_fb.c
8740 F: include/asm-generic/hyperv-tlfs.h
8741 F: include/asm-generic/mshyperv.h
8742 F: include/clocksource/hyperv_timer.h
8743 F: include/linux/hyperv.h
8744 F: include/uapi/linux/hyperv.h
8745 F: net/vmw_vsock/hyperv_transport.c
8746 F: tools/hv/
8747
8748 HYPERBUS SUPPORT
8749 M: Vignesh Raghavendra <vigneshr@ti.com>
8750 L: linux-mtd@lists.infradead.org
8751 S: Supported
8752 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8753 C: irc://irc.oftc.net/mtd
8754 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8755 F: Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8756 F: Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8757 F: drivers/mtd/hyperbus/
8758 F: include/linux/mtd/hyperbus.h
8759
8760 HYPERVISOR VIRTUAL CONSOLE DRIVER
8761 L: linuxppc-dev@lists.ozlabs.org
8762 S: Odd Fixes
8763 F: drivers/tty/hvc/
8764
8765 I2C ACPI SUPPORT
8766 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8767 L: linux-i2c@vger.kernel.org
8768 L: linux-acpi@vger.kernel.org
8769 S: Maintained
8770 F: drivers/i2c/i2c-core-acpi.c
8771
8772 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8773 M: Ajay Gupta <ajayg@nvidia.com>
8774 L: linux-i2c@vger.kernel.org
8775 S: Maintained
8776 F: Documentation/i2c/busses/i2c-nvidia-gpu.rst
8777 F: drivers/i2c/busses/i2c-nvidia-gpu.c
8778
8779 I2C MUXES
8780 M: Peter Rosin <peda@axentia.se>
8781 L: linux-i2c@vger.kernel.org
8782 S: Maintained
8783 F: Documentation/devicetree/bindings/i2c/i2c-arb*
8784 F: Documentation/devicetree/bindings/i2c/i2c-gate*
8785 F: Documentation/devicetree/bindings/i2c/i2c-mux*
8786 F: Documentation/i2c/i2c-topology.rst
8787 F: Documentation/i2c/muxes/
8788 F: drivers/i2c/i2c-mux.c
8789 F: drivers/i2c/muxes/
8790 F: include/linux/i2c-mux.h
8791
8792 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8793 M: Gregory CLEMENT <gregory.clement@bootlin.com>
8794 L: linux-i2c@vger.kernel.org
8795 S: Maintained
8796 F: Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8797 F: drivers/i2c/busses/i2c-mv64xxx.c
8798
8799 I2C OVER PARALLEL PORT
8800 M: Jean Delvare <jdelvare@suse.com>
8801 L: linux-i2c@vger.kernel.org
8802 S: Maintained
8803 F: Documentation/i2c/busses/i2c-parport.rst
8804 F: drivers/i2c/busses/i2c-parport.c
8805
8806 I2C SUBSYSTEM
8807 M: Wolfram Sang <wsa@kernel.org>
8808 L: linux-i2c@vger.kernel.org
8809 S: Maintained
8810 W: https://i2c.wiki.kernel.org/
8811 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8812 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8813 F: Documentation/devicetree/bindings/i2c/i2c.txt
8814 F: Documentation/i2c/
8815 F: drivers/i2c/*
8816 F: include/linux/i2c-dev.h
8817 F: include/linux/i2c-smbus.h
8818 F: include/linux/i2c.h
8819 F: include/uapi/linux/i2c-*.h
8820 F: include/uapi/linux/i2c.h
8821
8822 I2C SUBSYSTEM HOST DRIVERS
8823 L: linux-i2c@vger.kernel.org
8824 S: Odd Fixes
8825 W: https://i2c.wiki.kernel.org/
8826 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8827 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8828 F: Documentation/devicetree/bindings/i2c/
8829 F: drivers/i2c/algos/
8830 F: drivers/i2c/busses/
8831
8832 I2C-TAOS-EVM DRIVER
8833 M: Jean Delvare <jdelvare@suse.com>
8834 L: linux-i2c@vger.kernel.org
8835 S: Maintained
8836 F: Documentation/i2c/busses/i2c-taos-evm.rst
8837 F: drivers/i2c/busses/i2c-taos-evm.c
8838
8839 I2C-TINY-USB DRIVER
8840 M: Till Harbaum <till@harbaum.org>
8841 L: linux-i2c@vger.kernel.org
8842 S: Maintained
8843 W: http://www.harbaum.org/till/i2c_tiny_usb
8844 F: drivers/i2c/busses/i2c-tiny-usb.c
8845
8846 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8847 M: Jean Delvare <jdelvare@suse.com>
8848 L: linux-i2c@vger.kernel.org
8849 S: Maintained
8850 F: Documentation/i2c/busses/i2c-ali1535.rst
8851 F: Documentation/i2c/busses/i2c-ali1563.rst
8852 F: Documentation/i2c/busses/i2c-ali15x3.rst
8853 F: Documentation/i2c/busses/i2c-amd756.rst
8854 F: Documentation/i2c/busses/i2c-amd8111.rst
8855 F: Documentation/i2c/busses/i2c-i801.rst
8856 F: Documentation/i2c/busses/i2c-nforce2.rst
8857 F: Documentation/i2c/busses/i2c-piix4.rst
8858 F: Documentation/i2c/busses/i2c-sis5595.rst
8859 F: Documentation/i2c/busses/i2c-sis630.rst
8860 F: Documentation/i2c/busses/i2c-sis96x.rst
8861 F: Documentation/i2c/busses/i2c-via.rst
8862 F: Documentation/i2c/busses/i2c-viapro.rst
8863 F: drivers/i2c/busses/i2c-ali1535.c
8864 F: drivers/i2c/busses/i2c-ali1563.c
8865 F: drivers/i2c/busses/i2c-ali15x3.c
8866 F: drivers/i2c/busses/i2c-amd756-s4882.c
8867 F: drivers/i2c/busses/i2c-amd756.c
8868 F: drivers/i2c/busses/i2c-amd8111.c
8869 F: drivers/i2c/busses/i2c-i801.c
8870 F: drivers/i2c/busses/i2c-isch.c
8871 F: drivers/i2c/busses/i2c-nforce2-s4985.c
8872 F: drivers/i2c/busses/i2c-nforce2.c
8873 F: drivers/i2c/busses/i2c-piix4.c
8874 F: drivers/i2c/busses/i2c-sis5595.c
8875 F: drivers/i2c/busses/i2c-sis630.c
8876 F: drivers/i2c/busses/i2c-sis96x.c
8877 F: drivers/i2c/busses/i2c-via.c
8878 F: drivers/i2c/busses/i2c-viapro.c
8879
8880 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8881 M: Hans de Goede <hdegoede@redhat.com>
8882 L: linux-i2c@vger.kernel.org
8883 S: Maintained
8884 F: drivers/i2c/busses/i2c-cht-wc.c
8885
8886 I2C/SMBUS ISMT DRIVER
8887 M: Seth Heasley <seth.heasley@intel.com>
8888 M: Neil Horman <nhorman@tuxdriver.com>
8889 L: linux-i2c@vger.kernel.org
8890 F: Documentation/i2c/busses/i2c-ismt.rst
8891 F: drivers/i2c/busses/i2c-ismt.c
8892
8893 I2C/SMBUS STUB DRIVER
8894 M: Jean Delvare <jdelvare@suse.com>
8895 L: linux-i2c@vger.kernel.org
8896 S: Maintained
8897 F: drivers/i2c/i2c-stub.c
8898
8899 I3C DRIVER FOR CADENCE I3C MASTER IP
8900 M: Przemysław Gaj <pgaj@cadence.com>
8901 S: Maintained
8902 F: Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8903 F: drivers/i3c/master/i3c-master-cdns.c
8904
8905 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8906 M: Vitor Soares <vitor.soares@synopsys.com>
8907 S: Maintained
8908 F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8909 F: drivers/i3c/master/dw*
8910
8911 I3C SUBSYSTEM
8912 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
8913 L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
8914 S: Maintained
8915 C: irc://chat.freenode.net/linux-i3c
8916 T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8917 F: Documentation/ABI/testing/sysfs-bus-i3c
8918 F: Documentation/devicetree/bindings/i3c/
8919 F: Documentation/driver-api/i3c
8920 F: drivers/i3c/
8921 F: include/linux/i3c/
8922
8923 IA64 (Itanium) PLATFORM
8924 L: linux-ia64@vger.kernel.org
8925 S: Orphan
8926 F: Documentation/ia64/
8927 F: arch/ia64/
8928
8929 IBM Power 842 compression accelerator
8930 M: Haren Myneni <haren@us.ibm.com>
8931 S: Supported
8932 F: crypto/842.c
8933 F: drivers/crypto/nx/Kconfig
8934 F: drivers/crypto/nx/Makefile
8935 F: drivers/crypto/nx/nx-842*
8936 F: include/linux/sw842.h
8937 F: lib/842/
8938
8939 IBM Power in-Nest Crypto Acceleration
8940 M: Breno Leitão <leitao@debian.org>
8941 M: Nayna Jain <nayna@linux.ibm.com>
8942 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8943 L: linux-crypto@vger.kernel.org
8944 S: Supported
8945 F: drivers/crypto/nx/Kconfig
8946 F: drivers/crypto/nx/Makefile
8947 F: drivers/crypto/nx/nx-aes*
8948 F: drivers/crypto/nx/nx-sha*
8949 F: drivers/crypto/nx/nx.*
8950 F: drivers/crypto/nx/nx_csbcpb.h
8951 F: drivers/crypto/nx/nx_debugfs.c
8952
8953 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8954 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8955 L: linux-pci@vger.kernel.org
8956 L: linuxppc-dev@lists.ozlabs.org
8957 S: Supported
8958 F: drivers/pci/hotplug/rpadlpar*
8959
8960 IBM Power Linux RAID adapter
8961 M: Brian King <brking@us.ibm.com>
8962 S: Supported
8963 F: drivers/scsi/ipr.*
8964
8965 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8966 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8967 L: linux-pci@vger.kernel.org
8968 L: linuxppc-dev@lists.ozlabs.org
8969 S: Supported
8970 F: drivers/pci/hotplug/rpaphp*
8971
8972 IBM Power SRIOV Virtual NIC Device Driver
8973 M: Dany Madden <drt@linux.ibm.com>
8974 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8975 R: Thomas Falcon <tlfalcon@linux.ibm.com>
8976 L: netdev@vger.kernel.org
8977 S: Supported
8978 F: drivers/net/ethernet/ibm/ibmvnic.*
8979
8980 IBM Power Virtual Accelerator Switchboard
8981 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8982 L: linuxppc-dev@lists.ozlabs.org
8983 S: Supported
8984 F: arch/powerpc/include/asm/vas.h
8985 F: arch/powerpc/platforms/powernv/copy-paste.h
8986 F: arch/powerpc/platforms/powernv/vas*
8987
8988 IBM Power Virtual Ethernet Device Driver
8989 M: Cristobal Forno <cforno12@linux.ibm.com>
8990 L: netdev@vger.kernel.org
8991 S: Supported
8992 F: drivers/net/ethernet/ibm/ibmveth.*
8993
8994 IBM Power Virtual FC Device Drivers
8995 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8996 L: linux-scsi@vger.kernel.org
8997 S: Supported
8998 F: drivers/scsi/ibmvscsi/ibmvfc*
8999
9000 IBM Power Virtual Management Channel Driver
9001 M: Brad Warrum <bwarrum@linux.ibm.com>
9002 M: Ritu Agarwal <rituagar@linux.ibm.com>
9003 S: Supported
9004 F: drivers/misc/ibmvmc.*
9005
9006 IBM Power Virtual SCSI Device Drivers
9007 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9008 L: linux-scsi@vger.kernel.org
9009 S: Supported
9010 F: drivers/scsi/ibmvscsi/ibmvscsi*
9011 F: include/scsi/viosrp.h
9012
9013 IBM Power Virtual SCSI Device Target Driver
9014 M: Michael Cyr <mikecyr@linux.ibm.com>
9015 L: linux-scsi@vger.kernel.org
9016 L: target-devel@vger.kernel.org
9017 S: Supported
9018 F: drivers/scsi/ibmvscsi_tgt/
9019
9020 IBM Power VMX Cryptographic instructions
9021 M: Breno Leitão <leitao@debian.org>
9022 M: Nayna Jain <nayna@linux.ibm.com>
9023 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9024 L: linux-crypto@vger.kernel.org
9025 S: Supported
9026 F: drivers/crypto/vmx/Kconfig
9027 F: drivers/crypto/vmx/Makefile
9028 F: drivers/crypto/vmx/aes*
9029 F: drivers/crypto/vmx/ghash*
9030 F: drivers/crypto/vmx/ppc-xlate.pl
9031 F: drivers/crypto/vmx/vmx.c
9032
9033 IBM ServeRAID RAID DRIVER
9034 S: Orphan
9035 F: drivers/scsi/ips.*
9036
9037 ICH LPC AND GPIO DRIVER
9038 M: Peter Tyser <ptyser@xes-inc.com>
9039 S: Maintained
9040 F: drivers/gpio/gpio-ich.c
9041 F: drivers/mfd/lpc_ich.c
9042
9043 ICY I2C DRIVER
9044 M: Max Staudt <max@enpas.org>
9045 L: linux-i2c@vger.kernel.org
9046 S: Maintained
9047 F: drivers/i2c/busses/i2c-icy.c
9048
9049 IDEAPAD LAPTOP EXTRAS DRIVER
9050 M: Ike Panhc <ike.pan@canonical.com>
9051 L: platform-driver-x86@vger.kernel.org
9052 S: Maintained
9053 W: http://launchpad.net/ideapad-laptop
9054 F: drivers/platform/x86/ideapad-laptop.c
9055
9056 IDEAPAD LAPTOP SLIDEBAR DRIVER
9057 M: Andrey Moiseev <o2g.org.ru@gmail.com>
9058 L: linux-input@vger.kernel.org
9059 S: Maintained
9060 W: https://github.com/o2genum/ideapad-slidebar
9061 F: drivers/input/misc/ideapad_slidebar.c
9062
9063 IDT VersaClock 5 CLOCK DRIVER
9064 M: Luca Ceresoli <luca@lucaceresoli.net>
9065 S: Maintained
9066 F: Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9067 F: drivers/clk/clk-versaclock5.c
9068
9069 IEEE 802.15.4 SUBSYSTEM
9070 M: Alexander Aring <alex.aring@gmail.com>
9071 M: Stefan Schmidt <stefan@datenfreihafen.org>
9072 L: linux-wpan@vger.kernel.org
9073 S: Maintained
9074 W: https://linux-wpan.org/
9075 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9076 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9077 F: Documentation/networking/ieee802154.rst
9078 F: drivers/net/ieee802154/
9079 F: include/linux/ieee802154.h
9080 F: include/linux/nl802154.h
9081 F: include/net/af_ieee802154.h
9082 F: include/net/cfg802154.h
9083 F: include/net/ieee802154_netdev.h
9084 F: include/net/mac802154.h
9085 F: include/net/nl802154.h
9086 F: net/ieee802154/
9087 F: net/mac802154/
9088
9089 IFE PROTOCOL
9090 M: Yotam Gigi <yotam.gi@gmail.com>
9091 M: Jamal Hadi Salim <jhs@mojatatu.com>
9092 F: include/net/ife.h
9093 F: include/uapi/linux/ife.h
9094 F: net/ife
9095
9096 IGORPLUG-USB IR RECEIVER
9097 M: Sean Young <sean@mess.org>
9098 L: linux-media@vger.kernel.org
9099 S: Maintained
9100 F: drivers/media/rc/igorplugusb.c
9101
9102 IGUANAWORKS USB IR TRANSCEIVER
9103 M: Sean Young <sean@mess.org>
9104 L: linux-media@vger.kernel.org
9105 S: Maintained
9106 F: drivers/media/rc/iguanair.c
9107
9108 IIO DIGITAL POTENTIOMETER DAC
9109 M: Peter Rosin <peda@axentia.se>
9110 L: linux-iio@vger.kernel.org
9111 S: Maintained
9112 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9113 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9114 F: drivers/iio/dac/dpot-dac.c
9115
9116 IIO ENVELOPE DETECTOR
9117 M: Peter Rosin <peda@axentia.se>
9118 L: linux-iio@vger.kernel.org
9119 S: Maintained
9120 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9121 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9122 F: drivers/iio/adc/envelope-detector.c
9123
9124 IIO MULTIPLEXER
9125 M: Peter Rosin <peda@axentia.se>
9126 L: linux-iio@vger.kernel.org
9127 S: Maintained
9128 F: Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9129 F: drivers/iio/multiplexer/iio-mux.c
9130
9131 IIO SCMI BASED DRIVER
9132 M: Jyoti Bhayana <jbhayana@google.com>
9133 L: linux-iio@vger.kernel.org
9134 S: Maintained
9135 F: drivers/iio/common/scmi_sensors/scmi_iio.c
9136
9137 IIO SUBSYSTEM AND DRIVERS
9138 M: Jonathan Cameron <jic23@kernel.org>
9139 R: Lars-Peter Clausen <lars@metafoo.de>
9140 L: linux-iio@vger.kernel.org
9141 S: Maintained
9142 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9143 F: Documentation/ABI/testing/configfs-iio*
9144 F: Documentation/ABI/testing/sysfs-bus-iio*
9145 F: Documentation/devicetree/bindings/iio/
9146 F: drivers/iio/
9147 F: drivers/staging/iio/
9148 F: include/linux/iio/
9149 F: tools/iio/
9150
9151 IIO UNIT CONVERTER
9152 M: Peter Rosin <peda@axentia.se>
9153 L: linux-iio@vger.kernel.org
9154 S: Maintained
9155 F: Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9156 F: Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9157 F: Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9158 F: drivers/iio/afe/iio-rescale.c
9159
9160 IKANOS/ADI EAGLE ADSL USB DRIVER
9161 M: Matthieu Castet <castet.matthieu@free.fr>
9162 M: Stanislaw Gruszka <stf_xl@wp.pl>
9163 S: Maintained
9164 F: drivers/usb/atm/ueagle-atm.c
9165
9166 IMGTEC ASCII LCD DRIVER
9167 M: Paul Burton <paulburton@kernel.org>
9168 S: Maintained
9169 F: Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9170 F: drivers/auxdisplay/img-ascii-lcd.c
9171
9172 IMGTEC IR DECODER DRIVER
9173 S: Orphan
9174 F: drivers/media/rc/img-ir/
9175
9176 IMON SOUNDGRAPH USB IR RECEIVER
9177 M: Sean Young <sean@mess.org>
9178 L: linux-media@vger.kernel.org
9179 S: Maintained
9180 F: drivers/media/rc/imon.c
9181 F: drivers/media/rc/imon_raw.c
9182
9183 IMS TWINTURBO FRAMEBUFFER DRIVER
9184 L: linux-fbdev@vger.kernel.org
9185 S: Orphan
9186 F: drivers/video/fbdev/imsttfb.c
9187
9188 INA209 HARDWARE MONITOR DRIVER
9189 M: Guenter Roeck <linux@roeck-us.net>
9190 L: linux-hwmon@vger.kernel.org
9191 S: Maintained
9192 F: Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9193 F: Documentation/hwmon/ina209.rst
9194 F: drivers/hwmon/ina209.c
9195
9196 INA2XX HARDWARE MONITOR DRIVER
9197 M: Guenter Roeck <linux@roeck-us.net>
9198 L: linux-hwmon@vger.kernel.org
9199 S: Maintained
9200 F: Documentation/hwmon/ina2xx.rst
9201 F: drivers/hwmon/ina2xx.c
9202 F: include/linux/platform_data/ina2xx.h
9203
9204 INDUSTRY PACK SUBSYSTEM (IPACK)
9205 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9206 M: Jens Taprogge <jens.taprogge@taprogge.org>
9207 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9208 L: industrypack-devel@lists.sourceforge.net
9209 S: Maintained
9210 W: http://industrypack.sourceforge.net
9211 F: drivers/ipack/
9212
9213 INFINEON DPS310 Driver
9214 M: Eddie James <eajames@linux.ibm.com>
9215 L: linux-iio@vger.kernel.org
9216 S: Maintained
9217 F: drivers/iio/pressure/dps310.c
9218
9219 INFINIBAND SUBSYSTEM
9220 M: Doug Ledford <dledford@redhat.com>
9221 M: Jason Gunthorpe <jgg@nvidia.com>
9222 L: linux-rdma@vger.kernel.org
9223 S: Supported
9224 W: https://github.com/linux-rdma/rdma-core
9225 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9226 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9227 F: Documentation/devicetree/bindings/infiniband/
9228 F: Documentation/infiniband/
9229 F: drivers/infiniband/
9230 F: include/rdma/
9231 F: include/trace/events/ib_mad.h
9232 F: include/trace/events/ib_umad.h
9233 F: include/uapi/linux/if_infiniband.h
9234 F: include/uapi/rdma/
9235 F: samples/bpf/ibumad_kern.c
9236 F: samples/bpf/ibumad_user.c
9237
9238 INGENIC JZ4780 NAND DRIVER
9239 M: Harvey Hunt <harveyhuntnexus@gmail.com>
9240 L: linux-mtd@lists.infradead.org
9241 L: linux-mips@vger.kernel.org
9242 S: Maintained
9243 F: drivers/mtd/nand/raw/ingenic/
9244
9245 INGENIC JZ47xx SoCs
9246 M: Paul Cercueil <paul@crapouillou.net>
9247 L: linux-mips@vger.kernel.org
9248 S: Maintained
9249 F: arch/mips/boot/dts/ingenic/
9250 F: arch/mips/generic/board-ingenic.c
9251 F: arch/mips/include/asm/mach-ingenic/
9252 F: arch/mips/ingenic/Kconfig
9253 F: drivers/clk/ingenic/
9254 F: drivers/dma/dma-jz4780.c
9255 F: drivers/gpu/drm/ingenic/
9256 F: drivers/i2c/busses/i2c-jz4780.c
9257 F: drivers/iio/adc/ingenic-adc.c
9258 F: drivers/irqchip/irq-ingenic.c
9259 F: drivers/memory/jz4780-nemc.c
9260 F: drivers/mmc/host/jz4740_mmc.c
9261 F: drivers/mtd/nand/raw/ingenic/
9262 F: drivers/pinctrl/pinctrl-ingenic.c
9263 F: drivers/power/supply/ingenic-battery.c
9264 F: drivers/pwm/pwm-jz4740.c
9265 F: drivers/remoteproc/ingenic_rproc.c
9266 F: drivers/rtc/rtc-jz4740.c
9267 F: drivers/tty/serial/8250/8250_ingenic.c
9268 F: drivers/usb/musb/jz4740.c
9269 F: drivers/watchdog/jz4740_wdt.c
9270 F: include/dt-bindings/iio/adc/ingenic,adc.h
9271 F: include/linux/mfd/ingenic-tcu.h
9272 F: sound/soc/codecs/jz47*
9273 F: sound/soc/jz4740/
9274
9275 INOTIFY
9276 M: Jan Kara <jack@suse.cz>
9277 R: Amir Goldstein <amir73il@gmail.com>
9278 L: linux-fsdevel@vger.kernel.org
9279 S: Maintained
9280 F: Documentation/filesystems/inotify.rst
9281 F: fs/notify/inotify/
9282 F: include/linux/inotify.h
9283 F: include/uapi/linux/inotify.h
9284
9285 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9286 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
9287 L: linux-input@vger.kernel.org
9288 S: Maintained
9289 Q: http://patchwork.kernel.org/project/linux-input/list/
9290 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9291 F: Documentation/devicetree/bindings/input/
9292 F: Documentation/devicetree/bindings/serio/
9293 F: Documentation/input/
9294 F: drivers/input/
9295 F: include/linux/input.h
9296 F: include/linux/input/
9297 F: include/uapi/linux/input-event-codes.h
9298 F: include/uapi/linux/input.h
9299
9300 INPUT MULTITOUCH (MT) PROTOCOL
9301 M: Henrik Rydberg <rydberg@bitmath.org>
9302 L: linux-input@vger.kernel.org
9303 S: Odd fixes
9304 F: Documentation/input/multi-touch-protocol.rst
9305 F: drivers/input/input-mt.c
9306 K: \b(ABS|SYN)_MT_
9307
9308 INSIDE SECURE CRYPTO DRIVER
9309 M: Antoine Tenart <atenart@kernel.org>
9310 L: linux-crypto@vger.kernel.org
9311 S: Maintained
9312 F: drivers/crypto/inside-secure/
9313
9314 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9315 M: Mimi Zohar <zohar@linux.ibm.com>
9316 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9317 L: linux-integrity@vger.kernel.org
9318 S: Supported
9319 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9320 F: security/integrity/ima/
9321
9322 INTEL 810/815 FRAMEBUFFER DRIVER
9323 M: Antonino Daplas <adaplas@gmail.com>
9324 L: linux-fbdev@vger.kernel.org
9325 S: Maintained
9326 F: drivers/video/fbdev/i810/
9327
9328 INTEL ASoC DRIVERS
9329 M: Cezary Rojewski <cezary.rojewski@intel.com>
9330 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9331 M: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9332 M: Jie Yang <yang.jie@linux.intel.com>
9333 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9334 S: Supported
9335 F: sound/soc/intel/
9336
9337 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9338 M: Hans de Goede <hdegoede@redhat.com>
9339 L: platform-driver-x86@vger.kernel.org
9340 S: Maintained
9341 F: drivers/platform/x86/intel/atomisp2/pm.c
9342
9343 INTEL ATOMISP2 LED DRIVER
9344 M: Hans de Goede <hdegoede@redhat.com>
9345 L: platform-driver-x86@vger.kernel.org
9346 S: Maintained
9347 F: drivers/platform/x86/intel/atomisp2/led.c
9348
9349 INTEL BIOS SAR INT1092 DRIVER
9350 M: Shravan Sudhakar <s.shravan@intel.com>
9351 M: Intel Corporation <linuxwwan@intel.com>
9352 L: platform-driver-x86@vger.kernel.org
9353 S: Maintained
9354 F: drivers/platform/x86/intel/int1092/
9355
9356 INTEL BROXTON PMC DRIVER
9357 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9358 M: Zha Qipeng <qipeng.zha@intel.com>
9359 S: Maintained
9360 F: drivers/mfd/intel_pmc_bxt.c
9361 F: include/linux/mfd/intel_pmc_bxt.h
9362
9363 INTEL C600 SERIES SAS CONTROLLER DRIVER
9364 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9365 L: linux-scsi@vger.kernel.org
9366 S: Supported
9367 T: git git://git.code.sf.net/p/intel-sas/isci
9368 F: drivers/scsi/isci/
9369
9370 INTEL CPU family model numbers
9371 M: Tony Luck <tony.luck@intel.com>
9372 M: x86@kernel.org
9373 L: linux-kernel@vger.kernel.org
9374 S: Supported
9375 F: arch/x86/include/asm/intel-family.h
9376
9377 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9378 M: Jani Nikula <jani.nikula@linux.intel.com>
9379 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9380 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
9381 L: intel-gfx@lists.freedesktop.org
9382 S: Supported
9383 W: https://01.org/linuxgraphics/
9384 Q: http://patchwork.freedesktop.org/project/intel-gfx/
9385 B: https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9386 C: irc://irc.oftc.net/intel-gfx
9387 T: git git://anongit.freedesktop.org/drm-intel
9388 F: Documentation/gpu/i915.rst
9389 F: drivers/gpu/drm/i915/
9390 F: include/drm/i915*
9391 F: include/uapi/drm/i915_drm.h
9392
9393 INTEL ETHERNET DRIVERS
9394 M: Jesse Brandeburg <jesse.brandeburg@intel.com>
9395 M: Tony Nguyen <anthony.l.nguyen@intel.com>
9396 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9397 S: Supported
9398 W: http://www.intel.com/support/feedback.htm
9399 W: http://e1000.sourceforge.net/
9400 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9401 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9402 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9403 F: Documentation/networking/device_drivers/ethernet/intel/
9404 F: drivers/net/ethernet/intel/
9405 F: drivers/net/ethernet/intel/*/
9406 F: include/linux/avf/virtchnl.h
9407 F: include/linux/net/intel/iidc.h
9408
9409 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9410 M: Mustafa Ismail <mustafa.ismail@intel.com>
9411 M: Shiraz Saleem <shiraz.saleem@intel.com>
9412 L: linux-rdma@vger.kernel.org
9413 S: Supported
9414 F: drivers/infiniband/hw/irdma/
9415 F: include/uapi/rdma/irdma-abi.h
9416
9417 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9418 M: Maik Broemme <mbroemme@libmpq.org>
9419 L: linux-fbdev@vger.kernel.org
9420 S: Maintained
9421 F: Documentation/fb/intelfb.rst
9422 F: drivers/video/fbdev/intelfb/
9423
9424 INTEL GPIO DRIVERS
9425 M: Andy Shevchenko <andy@kernel.org>
9426 L: linux-gpio@vger.kernel.org
9427 S: Maintained
9428 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9429 F: drivers/gpio/gpio-ich.c
9430 F: drivers/gpio/gpio-merrifield.c
9431 F: drivers/gpio/gpio-ml-ioh.c
9432 F: drivers/gpio/gpio-pch.c
9433 F: drivers/gpio/gpio-sch.c
9434 F: drivers/gpio/gpio-sodaville.c
9435
9436 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9437 M: Zhenyu Wang <zhenyuw@linux.intel.com>
9438 M: Zhi Wang <zhi.a.wang@intel.com>
9439 L: intel-gvt-dev@lists.freedesktop.org
9440 L: intel-gfx@lists.freedesktop.org
9441 S: Supported
9442 W: https://01.org/igvt-g
9443 T: git https://github.com/intel/gvt-linux.git
9444 F: drivers/gpu/drm/i915/gvt/
9445
9446 INTEL HID EVENT DRIVER
9447 M: Alex Hung <alex.hung@canonical.com>
9448 L: platform-driver-x86@vger.kernel.org
9449 S: Maintained
9450 F: drivers/platform/x86/intel/hid.c
9451
9452 INTEL I/OAT DMA DRIVER
9453 M: Dave Jiang <dave.jiang@intel.com>
9454 R: Dan Williams <dan.j.williams@intel.com>
9455 L: dmaengine@vger.kernel.org
9456 S: Supported
9457 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
9458 F: drivers/dma/ioat*
9459
9460 INTEL IADX DRIVER
9461 M: Dave Jiang <dave.jiang@intel.com>
9462 L: dmaengine@vger.kernel.org
9463 S: Supported
9464 F: drivers/dma/idxd/*
9465 F: include/uapi/linux/idxd.h
9466
9467 INTEL IDLE DRIVER
9468 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
9469 M: Len Brown <lenb@kernel.org>
9470 L: linux-pm@vger.kernel.org
9471 S: Supported
9472 B: https://bugzilla.kernel.org
9473 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9474 F: drivers/idle/intel_idle.c
9475
9476 INTEL INTEGRATED SENSOR HUB DRIVER
9477 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9478 M: Jiri Kosina <jikos@kernel.org>
9479 L: linux-input@vger.kernel.org
9480 S: Maintained
9481 F: drivers/hid/intel-ish-hid/
9482
9483 INTEL IOMMU (VT-d)
9484 M: David Woodhouse <dwmw2@infradead.org>
9485 M: Lu Baolu <baolu.lu@linux.intel.com>
9486 L: iommu@lists.linux-foundation.org
9487 S: Supported
9488 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9489 F: drivers/iommu/intel/
9490 F: include/linux/intel-iommu.h
9491 F: include/linux/intel-svm.h
9492
9493 INTEL IOP-ADMA DMA DRIVER
9494 R: Dan Williams <dan.j.williams@intel.com>
9495 S: Odd fixes
9496 F: drivers/dma/iop-adma.c
9497
9498 INTEL IPU3 CSI-2 CIO2 DRIVER
9499 M: Yong Zhi <yong.zhi@intel.com>
9500 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9501 M: Bingbu Cao <bingbu.cao@intel.com>
9502 M: Dan Scally <djrscally@gmail.com>
9503 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9504 L: linux-media@vger.kernel.org
9505 S: Maintained
9506 T: git git://linuxtv.org/media_tree.git
9507 F: Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9508 F: drivers/media/pci/intel/ipu3/
9509
9510 INTEL IPU3 CSI-2 IMGU DRIVER
9511 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9512 R: Bingbu Cao <bingbu.cao@intel.com>
9513 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9514 L: linux-media@vger.kernel.org
9515 S: Maintained
9516 F: Documentation/admin-guide/media/ipu3.rst
9517 F: Documentation/admin-guide/media/ipu3_rcb.svg
9518 F: Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9519 F: drivers/staging/media/ipu3/
9520
9521 INTEL IXP4XX CRYPTO SUPPORT
9522 M: Corentin Labbe <clabbe@baylibre.com>
9523 L: linux-crypto@vger.kernel.org
9524 S: Maintained
9525 F: drivers/crypto/ixp4xx_crypto.c
9526
9527 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9528 M: Krzysztof Halasa <khalasa@piap.pl>
9529 S: Maintained
9530 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
9531 F: drivers/net/wan/ixp4xx_hss.c
9532 F: drivers/soc/ixp4xx/ixp4xx-npe.c
9533 F: drivers/soc/ixp4xx/ixp4xx-qmgr.c
9534 F: include/linux/soc/ixp4xx/npe.h
9535 F: include/linux/soc/ixp4xx/qmgr.h
9536
9537 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9538 M: Deepak Saxena <dsaxena@plexity.net>
9539 S: Maintained
9540 F: Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9541 F: drivers/char/hw_random/ixp4xx-rng.c
9542
9543 INTEL KEEM BAY DRM DRIVER
9544 M: Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9545 M: Edmund Dea <edmund.j.dea@intel.com>
9546 S: Maintained
9547 F: Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9548 F: drivers/gpu/drm/kmb/
9549
9550 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9551 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9552 S: Maintained
9553 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9554 F: drivers/crypto/keembay/Kconfig
9555 F: drivers/crypto/keembay/Makefile
9556 F: drivers/crypto/keembay/keembay-ocs-aes-core.c
9557 F: drivers/crypto/keembay/ocs-aes.c
9558 F: drivers/crypto/keembay/ocs-aes.h
9559
9560 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9561 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9562 M: Declan Murphy <declan.murphy@intel.com>
9563 S: Maintained
9564 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9565 F: drivers/crypto/keembay/Kconfig
9566 F: drivers/crypto/keembay/Makefile
9567 F: drivers/crypto/keembay/keembay-ocs-hcu-core.c
9568 F: drivers/crypto/keembay/ocs-hcu.c
9569 F: drivers/crypto/keembay/ocs-hcu.h
9570
9571 INTEL MANAGEMENT ENGINE (mei)
9572 M: Tomas Winkler <tomas.winkler@intel.com>
9573 L: linux-kernel@vger.kernel.org
9574 S: Supported
9575 F: Documentation/driver-api/mei/*
9576 F: drivers/misc/mei/
9577 F: drivers/watchdog/mei_wdt.c
9578 F: include/linux/mei_cl_bus.h
9579 F: include/uapi/linux/mei.h
9580 F: samples/mei/*
9581
9582 INTEL MAX 10 BMC MFD DRIVER
9583 M: Xu Yilun <yilun.xu@intel.com>
9584 R: Tom Rix <trix@redhat.com>
9585 S: Maintained
9586 F: Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9587 F: Documentation/hwmon/intel-m10-bmc-hwmon.rst
9588 F: drivers/hwmon/intel-m10-bmc-hwmon.c
9589 F: drivers/mfd/intel-m10-bmc.c
9590 F: include/linux/mfd/intel-m10-bmc.h
9591
9592 INTEL MENLOW THERMAL DRIVER
9593 M: Sujith Thomas <sujith.thomas@intel.com>
9594 L: linux-pm@vger.kernel.org
9595 S: Supported
9596 W: https://01.org/linux-acpi
9597 F: drivers/thermal/intel/intel_menlow.c
9598
9599 INTEL P-Unit IPC DRIVER
9600 M: Zha Qipeng <qipeng.zha@intel.com>
9601 L: platform-driver-x86@vger.kernel.org
9602 S: Maintained
9603 F: arch/x86/include/asm/intel_punit_ipc.h
9604 F: drivers/platform/x86/intel/punit_ipc.c
9605
9606 INTEL PMC CORE DRIVER
9607 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9608 M: David E Box <david.e.box@intel.com>
9609 L: platform-driver-x86@vger.kernel.org
9610 S: Maintained
9611 F: Documentation/ABI/testing/sysfs-platform-intel-pmc
9612 F: drivers/platform/x86/intel/pmc/
9613
9614 INTEL PMIC GPIO DRIVERS
9615 M: Andy Shevchenko <andy@kernel.org>
9616 S: Maintained
9617 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9618 F: drivers/gpio/gpio-*cove.c
9619
9620 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9621 M: Andy Shevchenko <andy@kernel.org>
9622 S: Maintained
9623 F: drivers/mfd/intel_soc_pmic*
9624 F: include/linux/mfd/intel_soc_pmic*
9625
9626 INTEL PMT DRIVER
9627 M: "David E. Box" <david.e.box@linux.intel.com>
9628 S: Maintained
9629 F: drivers/mfd/intel_pmt.c
9630 F: drivers/platform/x86/intel/pmt/
9631
9632 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9633 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
9634 L: linux-wireless@vger.kernel.org
9635 S: Maintained
9636 F: Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9637 F: Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9638 F: drivers/net/wireless/intel/ipw2x00/
9639
9640 INTEL PSTATE DRIVER
9641 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9642 M: Len Brown <lenb@kernel.org>
9643 L: linux-pm@vger.kernel.org
9644 S: Supported
9645 F: drivers/cpufreq/intel_pstate.c
9646
9647 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9648 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9649 L: linux-iio@vger.kernel.org
9650 F: drivers/counter/intel-qep.c
9651
9652 INTEL SCU DRIVERS
9653 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9654 S: Maintained
9655 F: arch/x86/include/asm/intel_scu_ipc.h
9656 F: drivers/platform/x86/intel_scu_*
9657
9658 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9659 M: Daniel Scally <djrscally@gmail.com>
9660 S: Maintained
9661 F: drivers/platform/x86/intel/int3472/
9662
9663 INTEL SPEED SELECT TECHNOLOGY
9664 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9665 L: platform-driver-x86@vger.kernel.org
9666 S: Maintained
9667 F: drivers/platform/x86/intel/speed_select_if/
9668 F: include/uapi/linux/isst_if.h
9669 F: tools/power/x86/intel-speed-select/
9670
9671 INTEL STRATIX10 FIRMWARE DRIVERS
9672 M: Dinh Nguyen <dinguyen@kernel.org>
9673 L: linux-kernel@vger.kernel.org
9674 S: Maintained
9675 F: Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9676 F: Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9677 F: drivers/firmware/stratix10-rsu.c
9678 F: drivers/firmware/stratix10-svc.c
9679 F: include/linux/firmware/intel/stratix10-smc.h
9680 F: include/linux/firmware/intel/stratix10-svc-client.h
9681
9682 INTEL TELEMETRY DRIVER
9683 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9684 M: "David E. Box" <david.e.box@linux.intel.com>
9685 L: platform-driver-x86@vger.kernel.org
9686 S: Maintained
9687 F: arch/x86/include/asm/intel_telemetry.h
9688 F: drivers/platform/x86/intel/telemetry/
9689
9690 INTEL UNCORE FREQUENCY CONTROL
9691 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9692 L: platform-driver-x86@vger.kernel.org
9693 S: Maintained
9694 F: drivers/platform/x86/intel/uncore-frequency.c
9695
9696 INTEL VIRTUAL BUTTON DRIVER
9697 M: AceLan Kao <acelan.kao@canonical.com>
9698 L: platform-driver-x86@vger.kernel.org
9699 S: Maintained
9700 F: drivers/platform/x86/intel/vbtn.c
9701
9702 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9703 M: Stanislaw Gruszka <stf_xl@wp.pl>
9704 L: linux-wireless@vger.kernel.org
9705 S: Supported
9706 F: drivers/net/wireless/intel/iwlegacy/
9707
9708 INTEL WIRELESS WIFI LINK (iwlwifi)
9709 M: Luca Coelho <luciano.coelho@intel.com>
9710 L: linux-wireless@vger.kernel.org
9711 S: Supported
9712 W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9713 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9714 F: drivers/net/wireless/intel/iwlwifi/
9715
9716 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9717 M: Jithu Joseph <jithu.joseph@intel.com>
9718 R: Maurice Ma <maurice.ma@intel.com>
9719 S: Maintained
9720 W: https://slimbootloader.github.io/security/firmware-update.html
9721 F: drivers/platform/x86/intel/wmi/sbl-fw-update.c
9722
9723 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9724 L: Dell.Client.Kernel@dell.com
9725 S: Maintained
9726 F: drivers/platform/x86/intel/wmi/thunderbolt.c
9727
9728 INTEL WWAN IOSM DRIVER
9729 M: M Chetan Kumar <m.chetan.kumar@intel.com>
9730 M: Intel Corporation <linuxwwan@intel.com>
9731 L: netdev@vger.kernel.org
9732 S: Maintained
9733 F: drivers/net/wwan/iosm/
9734
9735 INTEL(R) TRACE HUB
9736 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9737 S: Supported
9738 F: Documentation/trace/intel_th.rst
9739 F: drivers/hwtracing/intel_th/
9740 F: include/linux/intel_th.h
9741
9742 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9743 M: Ning Sun <ning.sun@intel.com>
9744 L: tboot-devel@lists.sourceforge.net
9745 S: Supported
9746 W: http://tboot.sourceforge.net
9747 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9748 F: Documentation/x86/intel_txt.rst
9749 F: arch/x86/kernel/tboot.c
9750 F: include/linux/tboot.h
9751
9752 INTEL SGX
9753 M: Jarkko Sakkinen <jarkko@kernel.org>
9754 R: Dave Hansen <dave.hansen@linux.intel.com>
9755 L: linux-sgx@vger.kernel.org
9756 S: Supported
9757 Q: https://patchwork.kernel.org/project/intel-sgx/list/
9758 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9759 F: Documentation/x86/sgx.rst
9760 F: arch/x86/entry/vdso/vsgx.S
9761 F: arch/x86/include/asm/sgx.h
9762 F: arch/x86/include/uapi/asm/sgx.h
9763 F: arch/x86/kernel/cpu/sgx/*
9764 F: tools/testing/selftests/sgx/*
9765 K: \bSGX_
9766
9767 INTERCONNECT API
9768 M: Georgi Djakov <djakov@kernel.org>
9769 L: linux-pm@vger.kernel.org
9770 S: Maintained
9771 T: git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9772 F: Documentation/devicetree/bindings/interconnect/
9773 F: Documentation/driver-api/interconnect.rst
9774 F: drivers/interconnect/
9775 F: include/dt-bindings/interconnect/
9776 F: include/linux/interconnect-provider.h
9777 F: include/linux/interconnect.h
9778
9779 INTERRUPT COUNTER DRIVER
9780 M: Oleksij Rempel <o.rempel@pengutronix.de>
9781 R: Pengutronix Kernel Team <kernel@pengutronix.de>
9782 L: linux-iio@vger.kernel.org
9783 F: Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9784 F: drivers/counter/interrupt-cnt.c
9785
9786 INVENSENSE ICM-426xx IMU DRIVER
9787 M: Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9788 L: linux-iio@vger.kernel.org
9789 S: Maintained
9790 W: https://invensense.tdk.com/
9791 F: Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9792 F: drivers/iio/imu/inv_icm42600/
9793
9794 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9795 M: Linus Walleij <linus.walleij@linaro.org>
9796 L: linux-iio@vger.kernel.org
9797 S: Maintained
9798 F: Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9799 F: drivers/iio/gyro/mpu3050*
9800
9801 IOC3 ETHERNET DRIVER
9802 M: Ralf Baechle <ralf@linux-mips.org>
9803 L: linux-mips@vger.kernel.org
9804 S: Maintained
9805 F: drivers/net/ethernet/sgi/ioc3-eth.c
9806
9807 IOMAP FILESYSTEM LIBRARY
9808 M: Christoph Hellwig <hch@infradead.org>
9809 M: Darrick J. Wong <djwong@kernel.org>
9810 M: linux-xfs@vger.kernel.org
9811 M: linux-fsdevel@vger.kernel.org
9812 L: linux-xfs@vger.kernel.org
9813 L: linux-fsdevel@vger.kernel.org
9814 S: Supported
9815 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9816 F: fs/iomap/
9817 F: include/linux/iomap.h
9818
9819 IOMMU DRIVERS
9820 M: Joerg Roedel <joro@8bytes.org>
9821 M: Will Deacon <will@kernel.org>
9822 L: iommu@lists.linux-foundation.org
9823 S: Maintained
9824 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9825 F: Documentation/devicetree/bindings/iommu/
9826 F: Documentation/userspace-api/iommu.rst
9827 F: drivers/iommu/
9828 F: include/linux/iommu.h
9829 F: include/linux/iova.h
9830 F: include/linux/of_iommu.h
9831 F: include/uapi/linux/iommu.h
9832
9833 IO_URING
9834 M: Jens Axboe <axboe@kernel.dk>
9835 R: Pavel Begunkov <asml.silence@gmail.com>
9836 L: io-uring@vger.kernel.org
9837 S: Maintained
9838 T: git git://git.kernel.dk/linux-block
9839 T: git git://git.kernel.dk/liburing
9840 F: fs/io-wq.c
9841 F: fs/io-wq.h
9842 F: fs/io_uring.c
9843 F: include/linux/io_uring.h
9844 F: include/uapi/linux/io_uring.h
9845 F: tools/io_uring/
9846
9847 IPMI SUBSYSTEM
9848 M: Corey Minyard <minyard@acm.org>
9849 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9850 S: Supported
9851 W: http://openipmi.sourceforge.net/
9852 F: Documentation/driver-api/ipmi.rst
9853 F: Documentation/devicetree/bindings/ipmi/
9854 F: drivers/char/ipmi/
9855 F: include/linux/ipmi*
9856 F: include/uapi/linux/ipmi*
9857
9858 IPS SCSI RAID DRIVER
9859 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9860 L: linux-scsi@vger.kernel.org
9861 S: Maintained
9862 W: http://www.adaptec.com/
9863 F: drivers/scsi/ips*
9864
9865 IPVS
9866 M: Simon Horman <horms@verge.net.au>
9867 M: Julian Anastasov <ja@ssi.bg>
9868 L: netdev@vger.kernel.org
9869 L: lvs-devel@vger.kernel.org
9870 S: Maintained
9871 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9872 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9873 F: Documentation/networking/ipvs-sysctl.rst
9874 F: include/net/ip_vs.h
9875 F: include/uapi/linux/ip_vs.h
9876 F: net/netfilter/ipvs/
9877
9878 IPWIRELESS DRIVER
9879 M: Jiri Kosina <jikos@kernel.org>
9880 M: David Sterba <dsterba@suse.com>
9881 S: Odd Fixes
9882 F: drivers/tty/ipwireless/
9883
9884 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9885 M: Marc Zyngier <maz@kernel.org>
9886 S: Maintained
9887 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9888 F: Documentation/core-api/irq/irq-domain.rst
9889 F: include/linux/irqdomain.h
9890 F: kernel/irq/irqdomain.c
9891 F: kernel/irq/msi.c
9892
9893 IRQ SUBSYSTEM
9894 M: Thomas Gleixner <tglx@linutronix.de>
9895 L: linux-kernel@vger.kernel.org
9896 S: Maintained
9897 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9898 F: kernel/irq/
9899
9900 IRQCHIP DRIVERS
9901 M: Thomas Gleixner <tglx@linutronix.de>
9902 M: Marc Zyngier <maz@kernel.org>
9903 L: linux-kernel@vger.kernel.org
9904 S: Maintained
9905 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9906 F: Documentation/devicetree/bindings/interrupt-controller/
9907 F: drivers/irqchip/
9908
9909 ISA
9910 M: William Breathitt Gray <vilhelm.gray@gmail.com>
9911 S: Maintained
9912 F: Documentation/driver-api/isa.rst
9913 F: drivers/base/isa.c
9914 F: include/linux/isa.h
9915
9916 ISA RADIO MODULE
9917 M: Hans Verkuil <hverkuil@xs4all.nl>
9918 L: linux-media@vger.kernel.org
9919 S: Maintained
9920 W: https://linuxtv.org
9921 T: git git://linuxtv.org/media_tree.git
9922 F: drivers/media/radio/radio-isa*
9923
9924 ISAPNP
9925 M: Jaroslav Kysela <perex@perex.cz>
9926 S: Maintained
9927 F: Documentation/driver-api/isapnp.rst
9928 F: drivers/pnp/isapnp/
9929 F: include/linux/isapnp.h
9930
9931 ISCSI
9932 M: Lee Duncan <lduncan@suse.com>
9933 M: Chris Leech <cleech@redhat.com>
9934 L: open-iscsi@googlegroups.com
9935 L: linux-scsi@vger.kernel.org
9936 S: Maintained
9937 W: www.open-iscsi.com
9938 F: drivers/scsi/*iscsi*
9939 F: include/scsi/*iscsi*
9940
9941 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9942 M: Peter Jones <pjones@redhat.com>
9943 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
9944 S: Maintained
9945 F: drivers/firmware/iscsi_ibft*
9946
9947 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9948 M: Sagi Grimberg <sagi@grimberg.me>
9949 M: Max Gurtovoy <mgurtovoy@nvidia.com>
9950 L: linux-rdma@vger.kernel.org
9951 S: Supported
9952 W: http://www.openfabrics.org
9953 W: www.open-iscsi.org
9954 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9955 F: drivers/infiniband/ulp/iser/
9956
9957 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9958 M: Sagi Grimberg <sagi@grimberg.me>
9959 L: linux-rdma@vger.kernel.org
9960 L: target-devel@vger.kernel.org
9961 S: Supported
9962 W: http://www.linux-iscsi.org
9963 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9964 F: drivers/infiniband/ulp/isert
9965
9966 ISDN/CMTP OVER BLUETOOTH
9967 M: Karsten Keil <isdn@linux-pingi.de>
9968 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9969 L: netdev@vger.kernel.org
9970 S: Odd Fixes
9971 W: http://www.isdn4linux.de
9972 F: Documentation/isdn/
9973 F: drivers/isdn/capi/
9974 F: include/linux/isdn/
9975 F: include/uapi/linux/isdn/
9976 F: net/bluetooth/cmtp/
9977
9978 ISDN/mISDN SUBSYSTEM
9979 M: Karsten Keil <isdn@linux-pingi.de>
9980 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9981 L: netdev@vger.kernel.org
9982 S: Maintained
9983 W: http://www.isdn4linux.de
9984 F: drivers/isdn/Kconfig
9985 F: drivers/isdn/Makefile
9986 F: drivers/isdn/hardware/
9987 F: drivers/isdn/mISDN/
9988
9989 IT87 HARDWARE MONITORING DRIVER
9990 M: Jean Delvare <jdelvare@suse.com>
9991 L: linux-hwmon@vger.kernel.org
9992 S: Maintained
9993 F: Documentation/hwmon/it87.rst
9994 F: drivers/hwmon/it87.c
9995
9996 IT913X MEDIA DRIVER
9997 M: Antti Palosaari <crope@iki.fi>
9998 L: linux-media@vger.kernel.org
9999 S: Maintained
10000 W: https://linuxtv.org
10001 W: http://palosaari.fi/linux/
10002 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10003 T: git git://linuxtv.org/anttip/media_tree.git
10004 F: drivers/media/tuners/it913x*
10005
10006 ITE IT66121 HDMI BRIDGE DRIVER
10007 M: Phong LE <ple@baylibre.com>
10008 M: Neil Armstrong <narmstrong@baylibre.com>
10009 S: Maintained
10010 T: git git://anongit.freedesktop.org/drm/drm-misc
10011 F: Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10012 F: drivers/gpu/drm/bridge/ite-it66121.c
10013
10014 IVTV VIDEO4LINUX DRIVER
10015 M: Andy Walls <awalls@md.metrocast.net>
10016 L: linux-media@vger.kernel.org
10017 S: Maintained
10018 W: https://linuxtv.org
10019 T: git git://linuxtv.org/media_tree.git
10020 F: Documentation/admin-guide/media/ivtv*
10021 F: drivers/media/pci/ivtv/
10022 F: include/uapi/linux/ivtv*
10023
10024 IX2505V MEDIA DRIVER
10025 M: Malcolm Priestley <tvboxspy@gmail.com>
10026 L: linux-media@vger.kernel.org
10027 S: Maintained
10028 W: https://linuxtv.org
10029 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10030 F: drivers/media/dvb-frontends/ix2505v*
10031
10032 JAILHOUSE HYPERVISOR INTERFACE
10033 M: Jan Kiszka <jan.kiszka@siemens.com>
10034 L: jailhouse-dev@googlegroups.com
10035 S: Maintained
10036 F: arch/x86/include/asm/jailhouse_para.h
10037 F: arch/x86/kernel/jailhouse.c
10038
10039 JC42.4 TEMPERATURE SENSOR DRIVER
10040 M: Guenter Roeck <linux@roeck-us.net>
10041 L: linux-hwmon@vger.kernel.org
10042 S: Maintained
10043 F: Documentation/hwmon/jc42.rst
10044 F: drivers/hwmon/jc42.c
10045
10046 JFS FILESYSTEM
10047 M: Dave Kleikamp <shaggy@kernel.org>
10048 L: jfs-discussion@lists.sourceforge.net
10049 S: Maintained
10050 W: http://jfs.sourceforge.net/
10051 T: git git://github.com/kleikamp/linux-shaggy.git
10052 F: Documentation/admin-guide/jfs.rst
10053 F: fs/jfs/
10054
10055 JME NETWORK DRIVER
10056 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
10057 L: netdev@vger.kernel.org
10058 S: Maintained
10059 F: drivers/net/ethernet/jme.*
10060
10061 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10062 M: David Woodhouse <dwmw2@infradead.org>
10063 M: Richard Weinberger <richard@nod.at>
10064 L: linux-mtd@lists.infradead.org
10065 S: Odd Fixes
10066 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
10067 T: git git://git.infradead.org/ubifs-2.6.git
10068 F: fs/jffs2/
10069 F: include/uapi/linux/jffs2.h
10070
10071 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10072 M: "Theodore Ts'o" <tytso@mit.edu>
10073 M: Jan Kara <jack@suse.com>
10074 L: linux-ext4@vger.kernel.org
10075 S: Maintained
10076 F: fs/jbd2/
10077 F: include/linux/jbd2.h
10078
10079 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10080 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10081 L: linux-media@vger.kernel.org
10082 S: Maintained
10083 F: drivers/media/platform/rcar_jpu.c
10084
10085 JSM Neo PCI based serial card
10086 L: linux-serial@vger.kernel.org
10087 S: Orphan
10088 F: drivers/tty/serial/jsm/
10089
10090 K10TEMP HARDWARE MONITORING DRIVER
10091 M: Clemens Ladisch <clemens@ladisch.de>
10092 L: linux-hwmon@vger.kernel.org
10093 S: Maintained
10094 F: Documentation/hwmon/k10temp.rst
10095 F: drivers/hwmon/k10temp.c
10096
10097 K8TEMP HARDWARE MONITORING DRIVER
10098 M: Rudolf Marek <r.marek@assembler.cz>
10099 L: linux-hwmon@vger.kernel.org
10100 S: Maintained
10101 F: Documentation/hwmon/k8temp.rst
10102 F: drivers/hwmon/k8temp.c
10103
10104 KASAN
10105 M: Andrey Ryabinin <ryabinin.a.a@gmail.com>
10106 R: Alexander Potapenko <glider@google.com>
10107 R: Andrey Konovalov <andreyknvl@gmail.com>
10108 R: Dmitry Vyukov <dvyukov@google.com>
10109 L: kasan-dev@googlegroups.com
10110 S: Maintained
10111 F: Documentation/dev-tools/kasan.rst
10112 F: arch/*/include/asm/*kasan.h
10113 F: arch/*/mm/kasan_init*
10114 F: include/linux/kasan*.h
10115 F: lib/Kconfig.kasan
10116 F: lib/test_kasan*.c
10117 F: mm/kasan/
10118 F: scripts/Makefile.kasan
10119
10120 KCONFIG
10121 M: Masahiro Yamada <masahiroy@kernel.org>
10122 L: linux-kbuild@vger.kernel.org
10123 S: Maintained
10124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10125 F: Documentation/kbuild/kconfig*
10126 F: scripts/Kconfig.include
10127 F: scripts/kconfig/
10128
10129 KCOV
10130 R: Dmitry Vyukov <dvyukov@google.com>
10131 R: Andrey Konovalov <andreyknvl@gmail.com>
10132 L: kasan-dev@googlegroups.com
10133 S: Maintained
10134 F: Documentation/dev-tools/kcov.rst
10135 F: include/linux/kcov.h
10136 F: include/uapi/linux/kcov.h
10137 F: kernel/kcov.c
10138 F: scripts/Makefile.kcov
10139
10140 KCSAN
10141 M: Marco Elver <elver@google.com>
10142 R: Dmitry Vyukov <dvyukov@google.com>
10143 L: kasan-dev@googlegroups.com
10144 S: Maintained
10145 F: Documentation/dev-tools/kcsan.rst
10146 F: include/linux/kcsan*.h
10147 F: kernel/kcsan/
10148 F: lib/Kconfig.kcsan
10149 F: scripts/Makefile.kcsan
10150
10151 KDUMP
10152 M: Dave Young <dyoung@redhat.com>
10153 M: Baoquan He <bhe@redhat.com>
10154 R: Vivek Goyal <vgoyal@redhat.com>
10155 L: kexec@lists.infradead.org
10156 S: Maintained
10157 W: http://lse.sourceforge.net/kdump/
10158 F: Documentation/admin-guide/kdump/
10159 F: fs/proc/vmcore.c
10160 F: include/linux/crash_core.h
10161 F: include/linux/crash_dump.h
10162 F: include/uapi/linux/vmcore.h
10163 F: kernel/crash_*.c
10164
10165 KEENE FM RADIO TRANSMITTER DRIVER
10166 M: Hans Verkuil <hverkuil@xs4all.nl>
10167 L: linux-media@vger.kernel.org
10168 S: Maintained
10169 W: https://linuxtv.org
10170 T: git git://linuxtv.org/media_tree.git
10171 F: drivers/media/radio/radio-keene*
10172
10173 KERNEL AUTOMOUNTER
10174 M: Ian Kent <raven@themaw.net>
10175 L: autofs@vger.kernel.org
10176 S: Maintained
10177 F: fs/autofs/
10178
10179 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10180 M: Masahiro Yamada <masahiroy@kernel.org>
10181 M: Michal Marek <michal.lkml@markovi.net>
10182 R: Nick Desaulniers <ndesaulniers@google.com>
10183 L: linux-kbuild@vger.kernel.org
10184 S: Maintained
10185 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10186 F: Documentation/kbuild/
10187 F: Makefile
10188 F: scripts/*vmlinux*
10189 F: scripts/Kbuild*
10190 F: scripts/Makefile*
10191 F: scripts/basic/
10192 F: scripts/dummy-tools/
10193 F: scripts/mk*
10194 F: scripts/mod/
10195 F: scripts/package/
10196
10197 KERNEL JANITORS
10198 L: kernel-janitors@vger.kernel.org
10199 S: Odd Fixes
10200 W: http://kernelnewbies.org/KernelJanitors
10201
10202 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10203 M: "J. Bruce Fields" <bfields@fieldses.org>
10204 M: Chuck Lever <chuck.lever@oracle.com>
10205 L: linux-nfs@vger.kernel.org
10206 S: Supported
10207 W: http://nfs.sourceforge.net/
10208 T: git git://linux-nfs.org/~bfields/linux.git
10209 F: fs/lockd/
10210 F: fs/nfs_common/
10211 F: fs/nfsd/
10212 F: include/linux/lockd/
10213 F: include/linux/sunrpc/
10214 F: include/uapi/linux/nfsd/
10215 F: include/uapi/linux/sunrpc/
10216 F: net/sunrpc/
10217 F: Documentation/filesystems/nfs/
10218
10219 KERNEL REGRESSIONS
10220 M: Thorsten Leemhuis <linux@leemhuis.info>
10221 L: regressions@lists.linux.dev
10222 S: Supported
10223
10224 KERNEL SELFTEST FRAMEWORK
10225 M: Shuah Khan <shuah@kernel.org>
10226 M: Shuah Khan <skhan@linuxfoundation.org>
10227 L: linux-kselftest@vger.kernel.org
10228 S: Maintained
10229 Q: https://patchwork.kernel.org/project/linux-kselftest/list/
10230 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10231 F: Documentation/dev-tools/kselftest*
10232 F: tools/testing/selftests/
10233
10234 KERNEL SMB3 SERVER (KSMBD)
10235 M: Namjae Jeon <linkinjeon@kernel.org>
10236 M: Sergey Senozhatsky <senozhatsky@chromium.org>
10237 M: Steve French <sfrench@samba.org>
10238 M: Hyunchul Lee <hyc.lee@gmail.com>
10239 L: linux-cifs@vger.kernel.org
10240 S: Maintained
10241 T: git git://git.samba.org/ksmbd.git
10242 F: fs/ksmbd/
10243 F: fs/smbfs_common/
10244
10245 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10246 M: Brendan Higgins <brendanhiggins@google.com>
10247 L: linux-kselftest@vger.kernel.org
10248 L: kunit-dev@googlegroups.com
10249 S: Maintained
10250 W: https://google.github.io/kunit-docs/third_party/kernel/docs/
10251 F: Documentation/dev-tools/kunit/
10252 F: include/kunit/
10253 F: lib/kunit/
10254 F: tools/testing/kunit/
10255
10256 KERNEL USERMODE HELPER
10257 M: Luis Chamberlain <mcgrof@kernel.org>
10258 L: linux-kernel@vger.kernel.org
10259 S: Maintained
10260 F: include/linux/umh.h
10261 F: kernel/umh.c
10262
10263 KERNEL VIRTUAL MACHINE (KVM)
10264 M: Paolo Bonzini <pbonzini@redhat.com>
10265 L: kvm@vger.kernel.org
10266 S: Supported
10267 W: http://www.linux-kvm.org
10268 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10269 F: Documentation/virt/kvm/
10270 F: include/asm-generic/kvm*
10271 F: include/kvm/iodev.h
10272 F: include/linux/kvm*
10273 F: include/trace/events/kvm.h
10274 F: include/uapi/asm-generic/kvm*
10275 F: include/uapi/linux/kvm*
10276 F: tools/kvm/
10277 F: tools/testing/selftests/kvm/
10278 F: virt/kvm/*
10279
10280 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10281 M: Marc Zyngier <maz@kernel.org>
10282 R: James Morse <james.morse@arm.com>
10283 R: Alexandru Elisei <alexandru.elisei@arm.com>
10284 R: Suzuki K Poulose <suzuki.poulose@arm.com>
10285 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10286 L: kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10287 S: Maintained
10288 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10289 F: arch/arm64/include/asm/kvm*
10290 F: arch/arm64/include/uapi/asm/kvm*
10291 F: arch/arm64/kvm/
10292 F: include/kvm/arm_*
10293 F: tools/testing/selftests/kvm/*/aarch64/
10294 F: tools/testing/selftests/kvm/aarch64/
10295
10296 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10297 M: Huacai Chen <chenhuacai@kernel.org>
10298 M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10299 L: linux-mips@vger.kernel.org
10300 L: kvm@vger.kernel.org
10301 S: Maintained
10302 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10303 F: arch/mips/include/asm/kvm*
10304 F: arch/mips/include/uapi/asm/kvm*
10305 F: arch/mips/kvm/
10306
10307 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10308 M: Paul Mackerras <paulus@ozlabs.org>
10309 L: kvm-ppc@vger.kernel.org
10310 S: Supported
10311 W: http://www.linux-kvm.org/
10312 T: git git://github.com/agraf/linux-2.6.git
10313 F: arch/powerpc/include/asm/kvm*
10314 F: arch/powerpc/include/uapi/asm/kvm*
10315 F: arch/powerpc/kernel/kvm*
10316 F: arch/powerpc/kvm/
10317
10318 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10319 M: Christian Borntraeger <borntraeger@de.ibm.com>
10320 M: Janosch Frank <frankja@linux.ibm.com>
10321 R: David Hildenbrand <david@redhat.com>
10322 R: Claudio Imbrenda <imbrenda@linux.ibm.com>
10323 L: kvm@vger.kernel.org
10324 S: Supported
10325 W: http://www.ibm.com/developerworks/linux/linux390/
10326 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10327 F: Documentation/virt/kvm/s390*
10328 F: arch/s390/include/asm/gmap.h
10329 F: arch/s390/include/asm/kvm*
10330 F: arch/s390/include/uapi/asm/kvm*
10331 F: arch/s390/kernel/uv.c
10332 F: arch/s390/kvm/
10333 F: arch/s390/mm/gmap.c
10334 F: tools/testing/selftests/kvm/*/s390x/
10335 F: tools/testing/selftests/kvm/s390x/
10336
10337 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10338 M: Paolo Bonzini <pbonzini@redhat.com>
10339 R: Sean Christopherson <seanjc@google.com>
10340 R: Vitaly Kuznetsov <vkuznets@redhat.com>
10341 R: Wanpeng Li <wanpengli@tencent.com>
10342 R: Jim Mattson <jmattson@google.com>
10343 R: Joerg Roedel <joro@8bytes.org>
10344 L: kvm@vger.kernel.org
10345 S: Supported
10346 W: http://www.linux-kvm.org
10347 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10348 F: arch/x86/include/asm/kvm*
10349 F: arch/x86/include/asm/pvclock-abi.h
10350 F: arch/x86/include/asm/svm.h
10351 F: arch/x86/include/asm/vmx*.h
10352 F: arch/x86/include/uapi/asm/kvm*
10353 F: arch/x86/include/uapi/asm/svm.h
10354 F: arch/x86/include/uapi/asm/vmx.h
10355 F: arch/x86/kernel/kvm.c
10356 F: arch/x86/kernel/kvmclock.c
10357 F: arch/x86/kvm/
10358 F: arch/x86/kvm/*/
10359
10360 KERNFS
10361 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10362 M: Tejun Heo <tj@kernel.org>
10363 S: Supported
10364 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10365 F: fs/kernfs/
10366 F: include/linux/kernfs.h
10367
10368 KEXEC
10369 M: Eric Biederman <ebiederm@xmission.com>
10370 L: kexec@lists.infradead.org
10371 S: Maintained
10372 W: http://kernel.org/pub/linux/utils/kernel/kexec/
10373 F: include/linux/kexec.h
10374 F: include/uapi/linux/kexec.h
10375 F: kernel/kexec*
10376
10377 KEYS-ENCRYPTED
10378 M: Mimi Zohar <zohar@linux.ibm.com>
10379 L: linux-integrity@vger.kernel.org
10380 L: keyrings@vger.kernel.org
10381 S: Supported
10382 F: Documentation/security/keys/trusted-encrypted.rst
10383 F: include/keys/encrypted-type.h
10384 F: security/keys/encrypted-keys/
10385
10386 KEYS-TRUSTED
10387 M: James Bottomley <jejb@linux.ibm.com>
10388 M: Jarkko Sakkinen <jarkko@kernel.org>
10389 M: Mimi Zohar <zohar@linux.ibm.com>
10390 L: linux-integrity@vger.kernel.org
10391 L: keyrings@vger.kernel.org
10392 S: Supported
10393 F: Documentation/security/keys/trusted-encrypted.rst
10394 F: include/keys/trusted-type.h
10395 F: include/keys/trusted_tpm.h
10396 F: security/keys/trusted-keys/
10397
10398 KEYS-TRUSTED-TEE
10399 M: Sumit Garg <sumit.garg@linaro.org>
10400 L: linux-integrity@vger.kernel.org
10401 L: keyrings@vger.kernel.org
10402 S: Supported
10403 F: include/keys/trusted_tee.h
10404 F: security/keys/trusted-keys/trusted_tee.c
10405
10406 KEYS/KEYRINGS
10407 M: David Howells <dhowells@redhat.com>
10408 M: Jarkko Sakkinen <jarkko@kernel.org>
10409 L: keyrings@vger.kernel.org
10410 S: Maintained
10411 F: Documentation/security/keys/core.rst
10412 F: include/keys/
10413 F: include/linux/key-type.h
10414 F: include/linux/key.h
10415 F: include/linux/keyctl.h
10416 F: include/uapi/linux/keyctl.h
10417 F: security/keys/
10418
10419 KFENCE
10420 M: Alexander Potapenko <glider@google.com>
10421 M: Marco Elver <elver@google.com>
10422 R: Dmitry Vyukov <dvyukov@google.com>
10423 L: kasan-dev@googlegroups.com
10424 S: Maintained
10425 F: Documentation/dev-tools/kfence.rst
10426 F: arch/*/include/asm/kfence.h
10427 F: include/linux/kfence.h
10428 F: lib/Kconfig.kfence
10429 F: mm/kfence/
10430
10431 KFIFO
10432 M: Stefani Seibold <stefani@seibold.net>
10433 S: Maintained
10434 F: include/linux/kfifo.h
10435 F: lib/kfifo.c
10436 F: samples/kfifo/
10437
10438 KGDB / KDB /debug_core
10439 M: Jason Wessel <jason.wessel@windriver.com>
10440 M: Daniel Thompson <daniel.thompson@linaro.org>
10441 R: Douglas Anderson <dianders@chromium.org>
10442 L: kgdb-bugreport@lists.sourceforge.net
10443 S: Maintained
10444 W: http://kgdb.wiki.kernel.org/
10445 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10446 F: Documentation/dev-tools/kgdb.rst
10447 F: drivers/misc/kgdbts.c
10448 F: drivers/tty/serial/kgdboc.c
10449 F: include/linux/kdb.h
10450 F: include/linux/kgdb.h
10451 F: kernel/debug/
10452
10453 KHADAS MCU MFD DRIVER
10454 M: Neil Armstrong <narmstrong@baylibre.com>
10455 L: linux-amlogic@lists.infradead.org
10456 S: Maintained
10457 F: Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10458 F: drivers/mfd/khadas-mcu.c
10459 F: include/linux/mfd/khadas-mcu.h
10460 F: drivers/thermal/khadas_mcu_fan.c
10461
10462 KMEMLEAK
10463 M: Catalin Marinas <catalin.marinas@arm.com>
10464 S: Maintained
10465 F: Documentation/dev-tools/kmemleak.rst
10466 F: include/linux/kmemleak.h
10467 F: mm/kmemleak.c
10468 F: samples/kmemleak/kmemleak-test.c
10469
10470 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10471 M: Luis Chamberlain <mcgrof@kernel.org>
10472 L: linux-kernel@vger.kernel.org
10473 S: Maintained
10474 F: include/linux/kmod.h
10475 F: kernel/kmod.c
10476 F: lib/test_kmod.c
10477 F: tools/testing/selftests/kmod/
10478
10479 KPROBES
10480 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10481 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10482 M: "David S. Miller" <davem@davemloft.net>
10483 M: Masami Hiramatsu <mhiramat@kernel.org>
10484 S: Maintained
10485 F: Documentation/trace/kprobes.rst
10486 F: include/asm-generic/kprobes.h
10487 F: include/linux/kprobes.h
10488 F: kernel/kprobes.c
10489
10490 KS0108 LCD CONTROLLER DRIVER
10491 M: Miguel Ojeda <ojeda@kernel.org>
10492 S: Maintained
10493 F: Documentation/admin-guide/auxdisplay/ks0108.rst
10494 F: drivers/auxdisplay/ks0108.c
10495 F: include/linux/ks0108.h
10496
10497 KTD253 BACKLIGHT DRIVER
10498 M: Linus Walleij <linus.walleij@linaro.org>
10499 S: Maintained
10500 F: Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10501 F: drivers/video/backlight/ktd253-backlight.c
10502
10503 KTEST
10504 M: Steven Rostedt <rostedt@goodmis.org>
10505 M: John Hawley <warthog9@eaglescrag.net>
10506 S: Maintained
10507 F: tools/testing/ktest
10508
10509 L3MDEV
10510 M: David Ahern <dsahern@kernel.org>
10511 L: netdev@vger.kernel.org
10512 S: Maintained
10513 F: include/net/l3mdev.h
10514 F: net/l3mdev
10515
10516 L7 BPF FRAMEWORK
10517 M: John Fastabend <john.fastabend@gmail.com>
10518 M: Daniel Borkmann <daniel@iogearbox.net>
10519 M: Jakub Sitnicki <jakub@cloudflare.com>
10520 M: Lorenz Bauer <lmb@cloudflare.com>
10521 L: netdev@vger.kernel.org
10522 L: bpf@vger.kernel.org
10523 S: Maintained
10524 F: include/linux/skmsg.h
10525 F: net/core/skmsg.c
10526 F: net/core/sock_map.c
10527 F: net/ipv4/tcp_bpf.c
10528 F: net/ipv4/udp_bpf.c
10529 F: net/unix/unix_bpf.c
10530
10531 LANDLOCK SECURITY MODULE
10532 M: Mickaël Salaün <mic@digikod.net>
10533 L: linux-security-module@vger.kernel.org
10534 S: Supported
10535 W: https://landlock.io
10536 T: git https://github.com/landlock-lsm/linux.git
10537 F: Documentation/security/landlock.rst
10538 F: Documentation/userspace-api/landlock.rst
10539 F: include/uapi/linux/landlock.h
10540 F: samples/landlock/
10541 F: security/landlock/
10542 F: tools/testing/selftests/landlock/
10543 K: landlock
10544 K: LANDLOCK
10545
10546 LANTIQ / INTEL Ethernet drivers
10547 M: Hauke Mehrtens <hauke@hauke-m.de>
10548 L: netdev@vger.kernel.org
10549 S: Maintained
10550 F: drivers/net/dsa/lantiq_gswip.c
10551 F: drivers/net/dsa/lantiq_pce.h
10552 F: drivers/net/ethernet/lantiq_xrx200.c
10553 F: net/dsa/tag_gswip.c
10554
10555 LANTIQ MIPS ARCHITECTURE
10556 M: John Crispin <john@phrozen.org>
10557 L: linux-mips@vger.kernel.org
10558 S: Maintained
10559 F: arch/mips/lantiq
10560 F: drivers/soc/lantiq
10561
10562 LASI 53c700 driver for PARISC
10563 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10564 L: linux-scsi@vger.kernel.org
10565 S: Maintained
10566 F: Documentation/scsi/53c700.rst
10567 F: drivers/scsi/53c700*
10568
10569 LEAKING_ADDRESSES
10570 M: Tobin C. Harding <me@tobin.cc>
10571 M: Tycho Andersen <tycho@tycho.pizza>
10572 L: linux-hardening@vger.kernel.org
10573 S: Maintained
10574 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10575 F: scripts/leaking_addresses.pl
10576
10577 LED SUBSYSTEM
10578 M: Pavel Machek <pavel@ucw.cz>
10579 L: linux-leds@vger.kernel.org
10580 S: Maintained
10581 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10582 F: Documentation/devicetree/bindings/leds/
10583 F: drivers/leds/
10584 F: include/linux/leds.h
10585
10586 LEGACY EEPROM DRIVER
10587 M: Jean Delvare <jdelvare@suse.com>
10588 S: Maintained
10589 F: Documentation/misc-devices/eeprom.rst
10590 F: drivers/misc/eeprom/eeprom.c
10591
10592 LEGO MINDSTORMS EV3
10593 R: David Lechner <david@lechnology.com>
10594 S: Maintained
10595 F: Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10596 F: arch/arm/boot/dts/da850-lego-ev3.dts
10597 F: drivers/power/supply/lego_ev3_battery.c
10598
10599 LEGO USB Tower driver
10600 M: Juergen Stuber <starblue@users.sourceforge.net>
10601 L: legousb-devel@lists.sourceforge.net
10602 S: Maintained
10603 W: http://legousb.sourceforge.net/
10604 F: drivers/usb/misc/legousbtower.c
10605
10606 LG LAPTOP EXTRAS
10607 M: Matan Ziv-Av <matan@svgalib.org>
10608 L: platform-driver-x86@vger.kernel.org
10609 S: Maintained
10610 F: Documentation/ABI/testing/sysfs-platform-lg-laptop
10611 F: Documentation/admin-guide/laptops/lg-laptop.rst
10612 F: drivers/platform/x86/lg-laptop.c
10613
10614 LG2160 MEDIA DRIVER
10615 M: Michael Krufky <mkrufky@linuxtv.org>
10616 L: linux-media@vger.kernel.org
10617 S: Maintained
10618 W: https://linuxtv.org
10619 W: http://github.com/mkrufky
10620 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10621 T: git git://linuxtv.org/mkrufky/tuners.git
10622 F: drivers/media/dvb-frontends/lg2160.*
10623
10624 LGDT3305 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/lgdt3305.*
10633
10634 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10635 M: Viresh Kumar <vireshk@kernel.org>
10636 L: linux-ide@vger.kernel.org
10637 S: Maintained
10638 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10639 F: drivers/ata/pata_arasan_cf.c
10640 F: include/linux/pata_arasan_cf_data.h
10641
10642 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10643 M: Linus Walleij <linus.walleij@linaro.org>
10644 L: linux-ide@vger.kernel.org
10645 S: Maintained
10646 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10647 F: drivers/ata/pata_ftide010.c
10648 F: drivers/ata/sata_gemini.c
10649 F: drivers/ata/sata_gemini.h
10650
10651 LIBATA SATA AHCI PLATFORM devices support
10652 M: Hans de Goede <hdegoede@redhat.com>
10653 M: Jens Axboe <axboe@kernel.dk>
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/ahci_platform.c
10658 F: drivers/ata/libahci_platform.c
10659 F: include/linux/ahci_platform.h
10660
10661 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10662 M: Mikael Pettersson <mikpelinux@gmail.com>
10663 L: linux-ide@vger.kernel.org
10664 S: Maintained
10665 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10666 F: drivers/ata/sata_promise.*
10667
10668 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10669 M: Damien Le Moal <damien.lemoal@opensource.wdc.com>
10670 L: linux-ide@vger.kernel.org
10671 S: Maintained
10672 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10673 F: Documentation/devicetree/bindings/ata/
10674 F: drivers/ata/
10675 F: include/linux/ata.h
10676 F: include/linux/libata.h
10677
10678 LIBLOCKDEP
10679 M: Sasha Levin <alexander.levin@microsoft.com>
10680 S: Maintained
10681 F: tools/lib/lockdep/
10682
10683 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10684 M: Dan Williams <dan.j.williams@intel.com>
10685 M: Vishal Verma <vishal.l.verma@intel.com>
10686 M: Dave Jiang <dave.jiang@intel.com>
10687 L: nvdimm@lists.linux.dev
10688 S: Supported
10689 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10690 P: Documentation/nvdimm/maintainer-entry-profile.rst
10691 F: drivers/nvdimm/blk.c
10692 F: drivers/nvdimm/region_devs.c
10693
10694 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10695 M: Vishal Verma <vishal.l.verma@intel.com>
10696 M: Dan Williams <dan.j.williams@intel.com>
10697 M: Dave Jiang <dave.jiang@intel.com>
10698 L: nvdimm@lists.linux.dev
10699 S: Supported
10700 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10701 P: Documentation/nvdimm/maintainer-entry-profile.rst
10702 F: drivers/nvdimm/btt*
10703
10704 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10705 M: Dan Williams <dan.j.williams@intel.com>
10706 M: Vishal Verma <vishal.l.verma@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/pmem*
10713
10714 LIBNVDIMM: DEVICETREE BINDINGS
10715 M: Oliver O'Halloran <oohall@gmail.com>
10716 L: nvdimm@lists.linux.dev
10717 S: Supported
10718 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10719 F: Documentation/devicetree/bindings/pmem/pmem-region.txt
10720 F: drivers/nvdimm/of_pmem.c
10721
10722 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10723 M: Dan Williams <dan.j.williams@intel.com>
10724 M: Vishal Verma <vishal.l.verma@intel.com>
10725 M: Dave Jiang <dave.jiang@intel.com>
10726 M: Ira Weiny <ira.weiny@intel.com>
10727 L: nvdimm@lists.linux.dev
10728 S: Supported
10729 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10730 P: Documentation/nvdimm/maintainer-entry-profile.rst
10731 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10732 F: drivers/acpi/nfit/*
10733 F: drivers/nvdimm/*
10734 F: include/linux/libnvdimm.h
10735 F: include/linux/nd.h
10736 F: include/uapi/linux/ndctl.h
10737 F: tools/testing/nvdimm/
10738
10739 LICENSES and SPDX stuff
10740 M: Thomas Gleixner <tglx@linutronix.de>
10741 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10742 L: linux-spdx@vger.kernel.org
10743 S: Maintained
10744 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10745 F: COPYING
10746 F: Documentation/process/license-rules.rst
10747 F: LICENSES/
10748 F: scripts/spdxcheck-test.sh
10749 F: scripts/spdxcheck.py
10750
10751 LINEAR RANGES HELPERS
10752 M: Mark Brown <broonie@kernel.org>
10753 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10754 F: lib/linear_ranges.c
10755 F: lib/test_linear_ranges.c
10756 F: include/linux/linear_range.h
10757
10758 LINUX FOR POWER MACINTOSH
10759 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10760 L: linuxppc-dev@lists.ozlabs.org
10761 S: Odd Fixes
10762 F: arch/powerpc/platforms/powermac/
10763 F: drivers/macintosh/
10764
10765 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10766 M: Michael Ellerman <mpe@ellerman.id.au>
10767 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10768 R: Paul Mackerras <paulus@samba.org>
10769 L: linuxppc-dev@lists.ozlabs.org
10770 S: Supported
10771 W: https://github.com/linuxppc/wiki/wiki
10772 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10773 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10774 F: Documentation/ABI/stable/sysfs-firmware-opal-*
10775 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
10776 F: Documentation/devicetree/bindings/powerpc/
10777 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
10778 F: Documentation/powerpc/
10779 F: arch/powerpc/
10780 F: drivers/*/*/*pasemi*
10781 F: drivers/*/*pasemi*
10782 F: drivers/char/tpm/tpm_ibmvtpm*
10783 F: drivers/crypto/nx/
10784 F: drivers/crypto/vmx/
10785 F: drivers/i2c/busses/i2c-opal.c
10786 F: drivers/net/ethernet/ibm/ibmveth.*
10787 F: drivers/net/ethernet/ibm/ibmvnic.*
10788 F: drivers/pci/hotplug/pnv_php.c
10789 F: drivers/pci/hotplug/rpa*
10790 F: drivers/rtc/rtc-opal.c
10791 F: drivers/scsi/ibmvscsi/
10792 F: drivers/tty/hvc/hvc_opal.c
10793 F: drivers/watchdog/wdrtas.c
10794 F: tools/testing/selftests/powerpc
10795 N: /pmac
10796 N: powermac
10797 N: powernv
10798 N: [^a-z0-9]ps3
10799 N: pseries
10800
10801 LINUX FOR POWERPC EMBEDDED MPC5XXX
10802 M: Anatolij Gustschin <agust@denx.de>
10803 L: linuxppc-dev@lists.ozlabs.org
10804 S: Odd Fixes
10805 F: arch/powerpc/platforms/512x/
10806 F: arch/powerpc/platforms/52xx/
10807
10808 LINUX FOR POWERPC EMBEDDED PPC4XX
10809 L: linuxppc-dev@lists.ozlabs.org
10810 S: Orphan
10811 F: arch/powerpc/platforms/40x/
10812 F: arch/powerpc/platforms/44x/
10813
10814 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10815 M: Scott Wood <oss@buserror.net>
10816 L: linuxppc-dev@lists.ozlabs.org
10817 S: Odd fixes
10818 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10819 F: Documentation/devicetree/bindings/powerpc/fsl/
10820 F: arch/powerpc/platforms/83xx/
10821 F: arch/powerpc/platforms/85xx/
10822
10823 LINUX FOR POWERPC EMBEDDED PPC8XX
10824 M: Christophe Leroy <christophe.leroy@csgroup.eu>
10825 L: linuxppc-dev@lists.ozlabs.org
10826 S: Maintained
10827 F: arch/powerpc/platforms/8xx/
10828
10829 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10830 M: Kees Cook <keescook@chromium.org>
10831 S: Maintained
10832 F: drivers/misc/lkdtm/*
10833 F: tools/testing/selftests/lkdtm/*
10834
10835 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10836 M: Alan Stern <stern@rowland.harvard.edu>
10837 M: Andrea Parri <parri.andrea@gmail.com>
10838 M: Will Deacon <will@kernel.org>
10839 M: Peter Zijlstra <peterz@infradead.org>
10840 M: Boqun Feng <boqun.feng@gmail.com>
10841 M: Nicholas Piggin <npiggin@gmail.com>
10842 M: David Howells <dhowells@redhat.com>
10843 M: Jade Alglave <j.alglave@ucl.ac.uk>
10844 M: Luc Maranget <luc.maranget@inria.fr>
10845 M: "Paul E. McKenney" <paulmck@kernel.org>
10846 R: Akira Yokosawa <akiyks@gmail.com>
10847 R: Daniel Lustig <dlustig@nvidia.com>
10848 R: Joel Fernandes <joel@joelfernandes.org>
10849 L: linux-kernel@vger.kernel.org
10850 L: linux-arch@vger.kernel.org
10851 S: Supported
10852 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10853 F: Documentation/atomic_bitops.txt
10854 F: Documentation/atomic_t.txt
10855 F: Documentation/core-api/refcount-vs-atomic.rst
10856 F: Documentation/litmus-tests/
10857 F: Documentation/memory-barriers.txt
10858 F: tools/memory-model/
10859
10860 LIS3LV02D ACCELEROMETER DRIVER
10861 M: Eric Piel <eric.piel@tremplin-utc.net>
10862 S: Maintained
10863 F: Documentation/misc-devices/lis3lv02d.rst
10864 F: drivers/misc/lis3lv02d/
10865 F: drivers/platform/x86/hp_accel.c
10866
10867 LIST KUNIT TEST
10868 M: David Gow <davidgow@google.com>
10869 L: linux-kselftest@vger.kernel.org
10870 L: kunit-dev@googlegroups.com
10871 S: Maintained
10872 F: lib/list-test.c
10873
10874 LITEX PLATFORM
10875 M: Karol Gugala <kgugala@antmicro.com>
10876 M: Mateusz Holenko <mholenko@antmicro.com>
10877 S: Maintained
10878 F: Documentation/devicetree/bindings/*/litex,*.yaml
10879 F: arch/openrisc/boot/dts/or1klitex.dts
10880 F: drivers/soc/litex/litex_soc_ctrl.c
10881 F: drivers/tty/serial/liteuart.c
10882 F: include/linux/litex.h
10883
10884 LIVE PATCHING
10885 M: Josh Poimboeuf <jpoimboe@redhat.com>
10886 M: Jiri Kosina <jikos@kernel.org>
10887 M: Miroslav Benes <mbenes@suse.cz>
10888 M: Petr Mladek <pmladek@suse.com>
10889 R: Joe Lawrence <joe.lawrence@redhat.com>
10890 L: live-patching@vger.kernel.org
10891 S: Maintained
10892 T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10893 F: Documentation/ABI/testing/sysfs-kernel-livepatch
10894 F: Documentation/livepatch/
10895 F: arch/powerpc/include/asm/livepatch.h
10896 F: arch/s390/include/asm/livepatch.h
10897 F: arch/x86/include/asm/livepatch.h
10898 F: include/linux/livepatch.h
10899 F: kernel/livepatch/
10900 F: lib/livepatch/
10901 F: samples/livepatch/
10902 F: tools/testing/selftests/livepatch/
10903
10904 LLC (802.2)
10905 L: netdev@vger.kernel.org
10906 S: Odd fixes
10907 F: include/linux/llc.h
10908 F: include/net/llc*
10909 F: include/uapi/linux/llc.h
10910 F: net/llc/
10911
10912 LM73 HARDWARE MONITOR DRIVER
10913 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
10914 L: linux-hwmon@vger.kernel.org
10915 S: Maintained
10916 F: drivers/hwmon/lm73.c
10917
10918 LM78 HARDWARE MONITOR DRIVER
10919 M: Jean Delvare <jdelvare@suse.com>
10920 L: linux-hwmon@vger.kernel.org
10921 S: Maintained
10922 F: Documentation/hwmon/lm78.rst
10923 F: drivers/hwmon/lm78.c
10924
10925 LM83 HARDWARE MONITOR DRIVER
10926 M: Jean Delvare <jdelvare@suse.com>
10927 L: linux-hwmon@vger.kernel.org
10928 S: Maintained
10929 F: Documentation/hwmon/lm83.rst
10930 F: drivers/hwmon/lm83.c
10931
10932 LM90 HARDWARE MONITOR DRIVER
10933 M: Jean Delvare <jdelvare@suse.com>
10934 L: linux-hwmon@vger.kernel.org
10935 S: Maintained
10936 F: Documentation/devicetree/bindings/hwmon/lm90.txt
10937 F: Documentation/hwmon/lm90.rst
10938 F: drivers/hwmon/lm90.c
10939 F: include/dt-bindings/thermal/lm90.h
10940
10941 LM95234 HARDWARE MONITOR DRIVER
10942 M: Guenter Roeck <linux@roeck-us.net>
10943 L: linux-hwmon@vger.kernel.org
10944 S: Maintained
10945 F: Documentation/hwmon/lm95234.rst
10946 F: drivers/hwmon/lm95234.c
10947
10948 LME2510 MEDIA DRIVER
10949 M: Malcolm Priestley <tvboxspy@gmail.com>
10950 L: linux-media@vger.kernel.org
10951 S: Maintained
10952 W: https://linuxtv.org
10953 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10954 F: drivers/media/usb/dvb-usb-v2/lmedm04*
10955
10956 LOADPIN SECURITY MODULE
10957 M: Kees Cook <keescook@chromium.org>
10958 S: Supported
10959 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10960 F: Documentation/admin-guide/LSM/LoadPin.rst
10961 F: security/loadpin/
10962
10963 LOCKING PRIMITIVES
10964 M: Peter Zijlstra <peterz@infradead.org>
10965 M: Ingo Molnar <mingo@redhat.com>
10966 M: Will Deacon <will@kernel.org>
10967 R: Waiman Long <longman@redhat.com>
10968 R: Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10969 L: linux-kernel@vger.kernel.org
10970 S: Maintained
10971 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10972 F: Documentation/locking/
10973 F: arch/*/include/asm/spinlock*.h
10974 F: include/linux/lockdep.h
10975 F: include/linux/mutex*.h
10976 F: include/linux/rwlock*.h
10977 F: include/linux/rwsem*.h
10978 F: include/linux/seqlock.h
10979 F: include/linux/spinlock*.h
10980 F: kernel/locking/
10981 F: lib/locking*.[ch]
10982 X: kernel/locking/locktorture.c
10983
10984 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10985 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
10986 L: linux-ntfs-dev@lists.sourceforge.net
10987 S: Maintained
10988 W: http://www.linux-ntfs.org/content/view/19/37/
10989 F: Documentation/admin-guide/ldm.rst
10990 F: block/partitions/ldm.*
10991
10992 LOGITECH HID GAMING KEYBOARDS
10993 M: Hans de Goede <hdegoede@redhat.com>
10994 L: linux-input@vger.kernel.org
10995 S: Maintained
10996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10997 F: drivers/hid/hid-lg-g15.c
10998
10999 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11000 M: Adrien Grassein <adrien.grassein@gmail.com>
11001 S: Maintained
11002 F: Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11003 F: drivers/gpu/drm/bridge/lontium-lt8912b.c
11004
11005 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11006 M: Sathya Prakash <sathya.prakash@broadcom.com>
11007 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11008 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11009 L: MPT-FusionLinux.pdl@broadcom.com
11010 L: linux-scsi@vger.kernel.org
11011 S: Supported
11012 W: http://www.avagotech.com/support/
11013 F: drivers/message/fusion/
11014 F: drivers/scsi/mpt3sas/
11015
11016 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11017 M: Matthew Wilcox <willy@infradead.org>
11018 L: linux-scsi@vger.kernel.org
11019 S: Maintained
11020 F: drivers/scsi/sym53c8xx_2/
11021
11022 LTC1660 DAC DRIVER
11023 M: Marcus Folkesson <marcus.folkesson@gmail.com>
11024 L: linux-iio@vger.kernel.org
11025 S: Maintained
11026 F: Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11027 F: drivers/iio/dac/ltc1660.c
11028
11029 LTC2947 HARDWARE MONITOR DRIVER
11030 M: Nuno Sá <nuno.sa@analog.com>
11031 L: linux-hwmon@vger.kernel.org
11032 S: Supported
11033 W: http://ez.analog.com/community/linux-device-drivers
11034 F: Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11035 F: drivers/hwmon/ltc2947-core.c
11036 F: drivers/hwmon/ltc2947-i2c.c
11037 F: drivers/hwmon/ltc2947-spi.c
11038 F: drivers/hwmon/ltc2947.h
11039
11040 LTC2983 IIO TEMPERATURE DRIVER
11041 M: Nuno Sá <nuno.sa@analog.com>
11042 L: linux-iio@vger.kernel.org
11043 S: Supported
11044 W: http://ez.analog.com/community/linux-device-drivers
11045 F: Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11046 F: drivers/iio/temperature/ltc2983.c
11047
11048 LTC4261 HARDWARE MONITOR DRIVER
11049 M: Guenter Roeck <linux@roeck-us.net>
11050 L: linux-hwmon@vger.kernel.org
11051 S: Maintained
11052 F: Documentation/hwmon/ltc4261.rst
11053 F: drivers/hwmon/ltc4261.c
11054
11055 LTC4306 I2C MULTIPLEXER DRIVER
11056 M: Michael Hennerich <michael.hennerich@analog.com>
11057 L: linux-i2c@vger.kernel.org
11058 S: Supported
11059 W: http://ez.analog.com/community/linux-device-drivers
11060 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11061 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
11062
11063 LTP (Linux Test Project)
11064 M: Mike Frysinger <vapier@gentoo.org>
11065 M: Cyril Hrubis <chrubis@suse.cz>
11066 M: Wanlong Gao <wanlong.gao@gmail.com>
11067 M: Jan Stancek <jstancek@redhat.com>
11068 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11069 M: Alexey Kodanev <alexey.kodanev@oracle.com>
11070 L: ltp@lists.linux.it (subscribers-only)
11071 S: Maintained
11072 W: http://linux-test-project.github.io/
11073 T: git git://github.com/linux-test-project/ltp.git
11074
11075 LYNX PCS MODULE
11076 M: Ioana Ciornei <ioana.ciornei@nxp.com>
11077 L: netdev@vger.kernel.org
11078 S: Supported
11079 F: drivers/net/pcs/pcs-lynx.c
11080 F: include/linux/pcs-lynx.h
11081
11082 M68K ARCHITECTURE
11083 M: Geert Uytterhoeven <geert@linux-m68k.org>
11084 L: linux-m68k@lists.linux-m68k.org
11085 S: Maintained
11086 W: http://www.linux-m68k.org/
11087 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11088 F: arch/m68k/
11089 F: drivers/zorro/
11090
11091 M68K ON APPLE MACINTOSH
11092 M: Joshua Thompson <funaho@jurai.org>
11093 L: linux-m68k@lists.linux-m68k.org
11094 S: Maintained
11095 W: http://www.mac.linux-m68k.org/
11096 F: arch/m68k/mac/
11097 F: drivers/macintosh/adb-iop.c
11098 F: drivers/macintosh/via-macii.c
11099
11100 M68K ON HP9000/300
11101 M: Philip Blundell <philb@gnu.org>
11102 S: Maintained
11103 W: http://www.tazenda.demon.co.uk/phil/linux-hp
11104 F: arch/m68k/hp300/
11105
11106 M88DS3103 MEDIA DRIVER
11107 M: Antti Palosaari <crope@iki.fi>
11108 L: linux-media@vger.kernel.org
11109 S: Maintained
11110 W: https://linuxtv.org
11111 W: http://palosaari.fi/linux/
11112 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11113 T: git git://linuxtv.org/anttip/media_tree.git
11114 F: drivers/media/dvb-frontends/m88ds3103*
11115
11116 M88RS2000 MEDIA DRIVER
11117 M: Malcolm Priestley <tvboxspy@gmail.com>
11118 L: linux-media@vger.kernel.org
11119 S: Maintained
11120 W: https://linuxtv.org
11121 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11122 F: drivers/media/dvb-frontends/m88rs2000*
11123
11124 MA901 MASTERKIT USB FM RADIO DRIVER
11125 M: Alexey Klimov <klimov.linux@gmail.com>
11126 L: linux-media@vger.kernel.org
11127 S: Maintained
11128 T: git git://linuxtv.org/media_tree.git
11129 F: drivers/media/radio/radio-ma901.c
11130
11131 MAC80211
11132 M: Johannes Berg <johannes@sipsolutions.net>
11133 L: linux-wireless@vger.kernel.org
11134 S: Maintained
11135 W: https://wireless.wiki.kernel.org/
11136 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11137 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11138 F: Documentation/networking/mac80211-injection.rst
11139 F: Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11140 F: drivers/net/wireless/mac80211_hwsim.[ch]
11141 F: include/net/mac80211.h
11142 F: net/mac80211/
11143
11144 MAILBOX API
11145 M: Jassi Brar <jassisinghbrar@gmail.com>
11146 L: linux-kernel@vger.kernel.org
11147 S: Maintained
11148 F: drivers/mailbox/
11149 F: include/linux/mailbox_client.h
11150 F: include/linux/mailbox_controller.h
11151 F: include/dt-bindings/mailbox/
11152 F: Documentation/devicetree/bindings/mailbox/
11153
11154 MAILBOX ARM MHUv2
11155 M: Viresh Kumar <viresh.kumar@linaro.org>
11156 M: Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11157 L: linux-kernel@vger.kernel.org
11158 S: Maintained
11159 F: drivers/mailbox/arm_mhuv2.c
11160 F: include/linux/mailbox/arm_mhuv2_message.h
11161 F: Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11162
11163 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11164 M: Jeremy Kerr <jk@codeconstruct.com.au>
11165 M: Matt Johnston <matt@codeconstruct.com.au>
11166 L: netdev@vger.kernel.org
11167 S: Maintained
11168 F: Documentation/networking/mctp.rst
11169 F: drivers/net/mctp/
11170 F: include/net/mctp.h
11171 F: include/net/mctpdevice.h
11172 F: include/net/netns/mctp.h
11173 F: net/mctp/
11174
11175 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11176 M: Michael Kerrisk <mtk.manpages@gmail.com>
11177 L: linux-man@vger.kernel.org
11178 S: Maintained
11179 W: http://www.kernel.org/doc/man-pages
11180
11181 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11182 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
11183 L: linux-mips@vger.kernel.org
11184 S: Maintained
11185 F: arch/mips/boot/dts/img/pistachio*
11186
11187 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11188 M: Andrew Lunn <andrew@lunn.ch>
11189 M: Vivien Didelot <vivien.didelot@gmail.com>
11190 L: netdev@vger.kernel.org
11191 S: Maintained
11192 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
11193 F: Documentation/networking/devlink/mv88e6xxx.rst
11194 F: drivers/net/dsa/mv88e6xxx/
11195 F: include/linux/dsa/mv88e6xxx.h
11196 F: include/linux/platform_data/mv88e6xxx.h
11197
11198 MARVELL ARMADA 3700 PHY DRIVERS
11199 M: Miquel Raynal <miquel.raynal@bootlin.com>
11200 S: Maintained
11201 F: Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11202 F: Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11203 F: drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11204 F: drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11205
11206 MARVELL ARMADA DRM SUPPORT
11207 M: Russell King <linux@armlinux.org.uk>
11208 S: Maintained
11209 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11210 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11211 F: Documentation/devicetree/bindings/display/armada/
11212 F: drivers/gpu/drm/armada/
11213 F: include/uapi/drm/armada_drm.h
11214
11215 MARVELL CRYPTO DRIVER
11216 M: Boris Brezillon <bbrezillon@kernel.org>
11217 M: Arnaud Ebalard <arno@natisbad.org>
11218 M: Srujana Challa <schalla@marvell.com>
11219 L: linux-crypto@vger.kernel.org
11220 S: Maintained
11221 F: drivers/crypto/marvell/
11222 F: include/linux/soc/marvell/octeontx2/
11223
11224 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11225 M: Mirko Lindner <mlindner@marvell.com>
11226 M: Stephen Hemminger <stephen@networkplumber.org>
11227 L: netdev@vger.kernel.org
11228 S: Maintained
11229 F: drivers/net/ethernet/marvell/sk*
11230
11231 MARVELL LIBERTAS WIRELESS DRIVER
11232 L: libertas-dev@lists.infradead.org
11233 S: Orphan
11234 F: drivers/net/wireless/marvell/libertas/
11235
11236 MARVELL MACCHIATOBIN SUPPORT
11237 M: Russell King <linux@armlinux.org.uk>
11238 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11239 S: Maintained
11240 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11241
11242 MARVELL MV643XX ETHERNET DRIVER
11243 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11244 L: netdev@vger.kernel.org
11245 S: Maintained
11246 F: drivers/net/ethernet/marvell/mv643xx_eth.*
11247 F: include/linux/mv643xx.h
11248
11249 MARVELL MV88X3310 PHY DRIVER
11250 M: Russell King <linux@armlinux.org.uk>
11251 M: Marek Behún <kabel@kernel.org>
11252 L: netdev@vger.kernel.org
11253 S: Maintained
11254 F: drivers/net/phy/marvell10g.c
11255
11256 MARVELL MVEBU THERMAL DRIVER
11257 M: Miquel Raynal <miquel.raynal@bootlin.com>
11258 S: Maintained
11259 F: drivers/thermal/armada_thermal.c
11260
11261 MARVELL MVNETA ETHERNET DRIVER
11262 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11263 L: netdev@vger.kernel.org
11264 S: Maintained
11265 F: drivers/net/ethernet/marvell/mvneta.*
11266
11267 MARVELL MVPP2 ETHERNET DRIVER
11268 M: Marcin Wojtas <mw@semihalf.com>
11269 M: Russell King <linux@armlinux.org.uk>
11270 L: netdev@vger.kernel.org
11271 S: Maintained
11272 F: Documentation/devicetree/bindings/net/marvell-pp2.txt
11273 F: drivers/net/ethernet/marvell/mvpp2/
11274
11275 MARVELL MWIFIEX WIRELESS DRIVER
11276 M: Amitkumar Karwar <amitkarwar@gmail.com>
11277 M: Ganapathi Bhat <ganapathi017@gmail.com>
11278 M: Sharvari Harisangam <sharvari.harisangam@nxp.com>
11279 M: Xinming Hu <huxinming820@gmail.com>
11280 L: linux-wireless@vger.kernel.org
11281 S: Maintained
11282 F: drivers/net/wireless/marvell/mwifiex/
11283
11284 MARVELL MWL8K WIRELESS DRIVER
11285 M: Lennert Buytenhek <buytenh@wantstofly.org>
11286 L: linux-wireless@vger.kernel.org
11287 S: Odd Fixes
11288 F: drivers/net/wireless/marvell/mwl8k.c
11289
11290 MARVELL NAND CONTROLLER DRIVER
11291 M: Miquel Raynal <miquel.raynal@bootlin.com>
11292 L: linux-mtd@lists.infradead.org
11293 S: Maintained
11294 F: Documentation/devicetree/bindings/mtd/marvell-nand.txt
11295 F: drivers/mtd/nand/raw/marvell_nand.c
11296
11297 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11298 M: Sunil Goutham <sgoutham@marvell.com>
11299 M: Geetha sowjanya <gakula@marvell.com>
11300 M: Subbaraya Sundeep <sbhatta@marvell.com>
11301 M: hariprasad <hkelam@marvell.com>
11302 L: netdev@vger.kernel.org
11303 S: Supported
11304 F: drivers/net/ethernet/marvell/octeontx2/nic/
11305 F: include/linux/soc/marvell/octeontx2/
11306
11307 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11308 M: Sunil Goutham <sgoutham@marvell.com>
11309 M: Linu Cherian <lcherian@marvell.com>
11310 M: Geetha sowjanya <gakula@marvell.com>
11311 M: Jerin Jacob <jerinj@marvell.com>
11312 M: hariprasad <hkelam@marvell.com>
11313 M: Subbaraya Sundeep <sbhatta@marvell.com>
11314 L: netdev@vger.kernel.org
11315 S: Supported
11316 F: Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11317 F: drivers/net/ethernet/marvell/octeontx2/af/
11318
11319 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11320 M: Taras Chornyi <tchornyi@marvell.com>
11321 S: Supported
11322 W: https://github.com/Marvell-switching/switchdev-prestera
11323 F: drivers/net/ethernet/marvell/prestera/
11324
11325 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11326 M: Nicolas Pitre <nico@fluxnic.net>
11327 S: Odd Fixes
11328 F: drivers/mmc/host/mvsdio.*
11329
11330 MARVELL USB MDIO CONTROLLER DRIVER
11331 M: Tobias Waldekranz <tobias@waldekranz.com>
11332 L: netdev@vger.kernel.org
11333 S: Maintained
11334 F: Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11335 F: drivers/net/mdio/mdio-mvusb.c
11336
11337 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11338 M: Hu Ziji <huziji@marvell.com>
11339 L: linux-mmc@vger.kernel.org
11340 S: Supported
11341 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11342 F: drivers/mmc/host/sdhci-xenon*
11343
11344 MATROX FRAMEBUFFER DRIVER
11345 L: linux-fbdev@vger.kernel.org
11346 S: Orphan
11347 F: drivers/video/fbdev/matrox/matroxfb_*
11348 F: include/uapi/linux/matroxfb.h
11349
11350 MAX15301 DRIVER
11351 M: Daniel Nilsson <daniel.nilsson@flex.com>
11352 L: linux-hwmon@vger.kernel.org
11353 S: Maintained
11354 F: Documentation/hwmon/max15301.rst
11355 F: drivers/hwmon/pmbus/max15301.c
11356
11357 MAX16065 HARDWARE MONITOR DRIVER
11358 M: Guenter Roeck <linux@roeck-us.net>
11359 L: linux-hwmon@vger.kernel.org
11360 S: Maintained
11361 F: Documentation/hwmon/max16065.rst
11362 F: drivers/hwmon/max16065.c
11363
11364 MAX2175 SDR TUNER DRIVER
11365 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
11366 L: linux-media@vger.kernel.org
11367 S: Maintained
11368 T: git git://linuxtv.org/media_tree.git
11369 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
11370 F: Documentation/userspace-api/media/drivers/max2175.rst
11371 F: drivers/media/i2c/max2175*
11372 F: include/uapi/linux/max2175.h
11373
11374 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11375 L: linux-hwmon@vger.kernel.org
11376 S: Orphan
11377 F: Documentation/hwmon/max6650.rst
11378 F: drivers/hwmon/max6650.c
11379
11380 MAX6697 HARDWARE MONITOR DRIVER
11381 M: Guenter Roeck <linux@roeck-us.net>
11382 L: linux-hwmon@vger.kernel.org
11383 S: Maintained
11384 F: Documentation/devicetree/bindings/hwmon/max6697.txt
11385 F: Documentation/hwmon/max6697.rst
11386 F: drivers/hwmon/max6697.c
11387 F: include/linux/platform_data/max6697.h
11388
11389 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11390 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
11391 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11392 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11393 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11394 L: linux-media@vger.kernel.org
11395 S: Maintained
11396 F: Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11397 F: drivers/media/i2c/max9286.c
11398
11399 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11400 M: Peter Rosin <peda@axentia.se>
11401 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11402 S: Maintained
11403 F: Documentation/devicetree/bindings/sound/max9860.txt
11404 F: sound/soc/codecs/max9860.*
11405
11406 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11407 M: Andreas Klinger <ak@it-klinger.de>
11408 L: linux-iio@vger.kernel.org
11409 S: Maintained
11410 F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11411 F: drivers/iio/proximity/mb1232.c
11412
11413 MAXIM MAX77650 PMIC MFD DRIVER
11414 M: Bartosz Golaszewski <brgl@bgdev.pl>
11415 L: linux-kernel@vger.kernel.org
11416 S: Maintained
11417 F: Documentation/devicetree/bindings/*/*max77650.yaml
11418 F: Documentation/devicetree/bindings/*/max77650*.yaml
11419 F: drivers/gpio/gpio-max77650.c
11420 F: drivers/input/misc/max77650-onkey.c
11421 F: drivers/leds/leds-max77650.c
11422 F: drivers/mfd/max77650.c
11423 F: drivers/power/supply/max77650-charger.c
11424 F: drivers/regulator/max77650-regulator.c
11425 F: include/linux/mfd/max77650.h
11426
11427 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11428 M: Javier Martinez Canillas <javier@dowhile0.org>
11429 L: linux-kernel@vger.kernel.org
11430 S: Supported
11431 F: Documentation/devicetree/bindings/*/*max77802.txt
11432 F: drivers/regulator/max77802-regulator.c
11433 F: include/dt-bindings/*/*max77802.h
11434
11435 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11436 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11437 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11438 L: linux-pm@vger.kernel.org
11439 S: Supported
11440 F: drivers/power/supply/max14577_charger.c
11441 F: drivers/power/supply/max77693_charger.c
11442
11443 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11444 M: Chanwoo Choi <cw00.choi@samsung.com>
11445 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11446 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11447 L: linux-kernel@vger.kernel.org
11448 S: Supported
11449 F: Documentation/devicetree/bindings/*/max77686.txt
11450 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
11451 F: Documentation/devicetree/bindings/mfd/max14577.txt
11452 F: Documentation/devicetree/bindings/mfd/max77693.txt
11453 F: drivers/*/max14577*.c
11454 F: drivers/*/max77686*.c
11455 F: drivers/*/max77693*.c
11456 F: drivers/clk/clk-max77686.c
11457 F: drivers/extcon/extcon-max14577.c
11458 F: drivers/extcon/extcon-max77693.c
11459 F: drivers/rtc/rtc-max77686.c
11460 F: include/linux/mfd/max14577*.h
11461 F: include/linux/mfd/max77686*.h
11462 F: include/linux/mfd/max77693*.h
11463
11464 MAXIRADIO FM RADIO RECEIVER DRIVER
11465 M: Hans Verkuil <hverkuil@xs4all.nl>
11466 L: linux-media@vger.kernel.org
11467 S: Maintained
11468 W: https://linuxtv.org
11469 T: git git://linuxtv.org/media_tree.git
11470 F: drivers/media/radio/radio-maxiradio*
11471
11472 MAXLINEAR ETHERNET PHY DRIVER
11473 M: Xu Liang <lxu@maxlinear.com>
11474 L: netdev@vger.kernel.org
11475 S: Supported
11476 F: drivers/net/phy/mxl-gpy.c
11477
11478 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11479 R: Yasushi SHOJI <yashi@spacecubics.com>
11480 L: linux-can@vger.kernel.org
11481 S: Maintained
11482 F: drivers/net/can/usb/mcba_usb.c
11483
11484 MCAN MMIO DEVICE DRIVER
11485 M: Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11486 L: linux-can@vger.kernel.org
11487 S: Maintained
11488 F: Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11489 F: drivers/net/can/m_can/m_can.c
11490 F: drivers/net/can/m_can/m_can.h
11491 F: drivers/net/can/m_can/m_can_platform.c
11492
11493 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11494 M: Rishi Gupta <gupt21@gmail.com>
11495 L: linux-i2c@vger.kernel.org
11496 L: linux-input@vger.kernel.org
11497 S: Maintained
11498 F: drivers/hid/hid-mcp2221.c
11499
11500 MCP251XFD SPI-CAN NETWORK DRIVER
11501 M: Marc Kleine-Budde <mkl@pengutronix.de>
11502 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11503 R: Thomas Kopp <thomas.kopp@microchip.com>
11504 L: linux-can@vger.kernel.org
11505 S: Maintained
11506 F: Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11507 F: drivers/net/can/spi/mcp251xfd/
11508
11509 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11510 M: Peter Rosin <peda@axentia.se>
11511 L: linux-iio@vger.kernel.org
11512 S: Maintained
11513 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11514 F: drivers/iio/potentiometer/mcp4018.c
11515 F: drivers/iio/potentiometer/mcp4531.c
11516
11517 MCR20A IEEE-802.15.4 RADIO DRIVER
11518 M: Xue Liu <liuxuenetmail@gmail.com>
11519 L: linux-wpan@vger.kernel.org
11520 S: Maintained
11521 W: https://github.com/xueliu/mcr20a-linux
11522 F: Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11523 F: drivers/net/ieee802154/mcr20a.c
11524 F: drivers/net/ieee802154/mcr20a.h
11525
11526 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11527 M: William Breathitt Gray <vilhelm.gray@gmail.com>
11528 L: linux-iio@vger.kernel.org
11529 S: Maintained
11530 F: drivers/iio/dac/cio-dac.c
11531
11532 MEDIA CONTROLLER FRAMEWORK
11533 M: Sakari Ailus <sakari.ailus@linux.intel.com>
11534 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11535 L: linux-media@vger.kernel.org
11536 S: Supported
11537 W: https://www.linuxtv.org
11538 T: git git://linuxtv.org/media_tree.git
11539 F: drivers/media/mc/
11540 F: include/media/media-*.h
11541 F: include/uapi/linux/media.h
11542
11543 MEDIA DRIVER FOR FREESCALE IMX PXP
11544 M: Philipp Zabel <p.zabel@pengutronix.de>
11545 L: linux-media@vger.kernel.org
11546 S: Maintained
11547 T: git git://linuxtv.org/media_tree.git
11548 F: drivers/media/platform/imx-pxp.[ch]
11549
11550 MEDIA DRIVERS FOR ASCOT2E
11551 M: Sergey Kozlov <serjk@netup.ru>
11552 M: Abylay Ospan <aospan@netup.ru>
11553 L: linux-media@vger.kernel.org
11554 S: Supported
11555 W: https://linuxtv.org
11556 W: http://netup.tv/
11557 T: git git://linuxtv.org/media_tree.git
11558 F: drivers/media/dvb-frontends/ascot2e*
11559
11560 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11561 M: Jasmin Jessich <jasmin@anw.at>
11562 L: linux-media@vger.kernel.org
11563 S: Maintained
11564 W: https://linuxtv.org
11565 T: git git://linuxtv.org/media_tree.git
11566 F: drivers/media/dvb-frontends/cxd2099*
11567
11568 MEDIA DRIVERS FOR CXD2841ER
11569 M: Sergey Kozlov <serjk@netup.ru>
11570 M: Abylay Ospan <aospan@netup.ru>
11571 L: linux-media@vger.kernel.org
11572 S: Supported
11573 W: https://linuxtv.org
11574 W: http://netup.tv/
11575 T: git git://linuxtv.org/media_tree.git
11576 F: drivers/media/dvb-frontends/cxd2841er*
11577
11578 MEDIA DRIVERS FOR CXD2880
11579 M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11580 L: linux-media@vger.kernel.org
11581 S: Supported
11582 W: http://linuxtv.org/
11583 T: git git://linuxtv.org/media_tree.git
11584 F: drivers/media/dvb-frontends/cxd2880/*
11585 F: drivers/media/spi/cxd2880*
11586
11587 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11588 L: linux-media@vger.kernel.org
11589 S: Orphan
11590 W: https://linuxtv.org
11591 T: git git://linuxtv.org/media_tree.git
11592 F: drivers/media/pci/ddbridge/*
11593
11594 MEDIA DRIVERS FOR FREESCALE IMX
11595 M: Steve Longerbeam <slongerbeam@gmail.com>
11596 M: Philipp Zabel <p.zabel@pengutronix.de>
11597 L: linux-media@vger.kernel.org
11598 S: Maintained
11599 T: git git://linuxtv.org/media_tree.git
11600 F: Documentation/admin-guide/media/imx.rst
11601 F: Documentation/devicetree/bindings/media/imx.txt
11602 F: drivers/staging/media/imx/
11603 F: include/linux/imx-media.h
11604 F: include/media/imx.h
11605
11606 MEDIA DRIVERS FOR FREESCALE IMX7
11607 M: Rui Miguel Silva <rmfrfs@gmail.com>
11608 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11609 L: linux-media@vger.kernel.org
11610 S: Maintained
11611 T: git git://linuxtv.org/media_tree.git
11612 F: Documentation/admin-guide/media/imx7.rst
11613 F: Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11614 F: Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11615 F: drivers/staging/media/imx/imx7-media-csi.c
11616 F: drivers/staging/media/imx/imx7-mipi-csis.c
11617
11618 MEDIA DRIVERS FOR HELENE
11619 M: Abylay Ospan <aospan@netup.ru>
11620 L: linux-media@vger.kernel.org
11621 S: Supported
11622 W: https://linuxtv.org
11623 W: http://netup.tv/
11624 T: git git://linuxtv.org/media_tree.git
11625 F: drivers/media/dvb-frontends/helene*
11626
11627 MEDIA DRIVERS FOR HORUS3A
11628 M: Sergey Kozlov <serjk@netup.ru>
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/horus3a*
11636
11637 MEDIA DRIVERS FOR LNBH25
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/lnbh25*
11646
11647 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11648 L: linux-media@vger.kernel.org
11649 S: Orphan
11650 W: https://linuxtv.org
11651 T: git git://linuxtv.org/media_tree.git
11652 F: drivers/media/dvb-frontends/mxl5xx*
11653
11654 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11655 M: Sergey Kozlov <serjk@netup.ru>
11656 M: Abylay Ospan <aospan@netup.ru>
11657 L: linux-media@vger.kernel.org
11658 S: Supported
11659 W: https://linuxtv.org
11660 W: http://netup.tv/
11661 T: git git://linuxtv.org/media_tree.git
11662 F: drivers/media/pci/netup_unidvb/*
11663
11664 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11665 M: Dmitry Osipenko <digetx@gmail.com>
11666 L: linux-media@vger.kernel.org
11667 L: linux-tegra@vger.kernel.org
11668 S: Maintained
11669 T: git git://linuxtv.org/media_tree.git
11670 F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11671 F: drivers/staging/media/tegra-vde/
11672
11673 MEDIA DRIVERS FOR RENESAS - CEU
11674 M: Jacopo Mondi <jacopo@jmondi.org>
11675 L: linux-media@vger.kernel.org
11676 L: linux-renesas-soc@vger.kernel.org
11677 S: Supported
11678 T: git git://linuxtv.org/media_tree.git
11679 F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
11680 F: drivers/media/platform/renesas-ceu.c
11681 F: include/media/drv-intf/renesas-ceu.h
11682
11683 MEDIA DRIVERS FOR RENESAS - DRIF
11684 M: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
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,drif.yaml
11690 F: drivers/media/platform/rcar_drif.c
11691
11692 MEDIA DRIVERS FOR RENESAS - FCP
11693 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11694 L: linux-media@vger.kernel.org
11695 L: linux-renesas-soc@vger.kernel.org
11696 S: Supported
11697 T: git git://linuxtv.org/media_tree.git
11698 F: Documentation/devicetree/bindings/media/renesas,fcp.yaml
11699 F: drivers/media/platform/rcar-fcp.c
11700 F: include/media/rcar-fcp.h
11701
11702 MEDIA DRIVERS FOR RENESAS - FDP1
11703 M: Kieran Bingham <kieran.bingham+renesas@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,fdp1.yaml
11709 F: drivers/media/platform/rcar_fdp1.c
11710
11711 MEDIA DRIVERS FOR RENESAS - VIN
11712 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
11713 L: linux-media@vger.kernel.org
11714 L: linux-renesas-soc@vger.kernel.org
11715 S: Supported
11716 T: git git://linuxtv.org/media_tree.git
11717 F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
11718 F: Documentation/devicetree/bindings/media/renesas,isp.yaml
11719 F: Documentation/devicetree/bindings/media/renesas,vin.yaml
11720 F: drivers/media/platform/rcar-vin/
11721
11722 MEDIA DRIVERS FOR RENESAS - VSP1
11723 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11724 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11725 L: linux-media@vger.kernel.org
11726 L: linux-renesas-soc@vger.kernel.org
11727 S: Supported
11728 T: git git://linuxtv.org/media_tree.git
11729 F: Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11730 F: drivers/media/platform/vsp1/
11731
11732 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11733 L: linux-media@vger.kernel.org
11734 S: Orphan
11735 W: https://linuxtv.org
11736 T: git git://linuxtv.org/media_tree.git
11737 F: drivers/media/dvb-frontends/stv0910*
11738
11739 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11740 L: linux-media@vger.kernel.org
11741 S: Orphan
11742 W: https://linuxtv.org
11743 T: git git://linuxtv.org/media_tree.git
11744 F: drivers/media/dvb-frontends/stv6111*
11745
11746 MEDIA DRIVERS FOR STM32 - DCMI
11747 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
11748 L: linux-media@vger.kernel.org
11749 S: Supported
11750 T: git git://linuxtv.org/media_tree.git
11751 F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11752 F: drivers/media/platform/stm32/stm32-dcmi.c
11753
11754 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11755 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11756 L: linux-media@vger.kernel.org
11757 S: Maintained
11758 W: https://linuxtv.org
11759 Q: http://patchwork.kernel.org/project/linux-media/list/
11760 T: git git://linuxtv.org/media_tree.git
11761 F: Documentation/admin-guide/media/
11762 F: Documentation/devicetree/bindings/media/
11763 F: Documentation/driver-api/media/
11764 F: Documentation/userspace-api/media/
11765 F: drivers/media/
11766 F: drivers/staging/media/
11767 F: include/linux/platform_data/media/
11768 F: include/media/
11769 F: include/uapi/linux/dvb/
11770 F: include/uapi/linux/ivtv*
11771 F: include/uapi/linux/media.h
11772 F: include/uapi/linux/meye.h
11773 F: include/uapi/linux/uvcvideo.h
11774 F: include/uapi/linux/v4l2-*
11775 F: include/uapi/linux/videodev2.h
11776
11777 MEDIATEK BLUETOOTH DRIVER
11778 M: Sean Wang <sean.wang@mediatek.com>
11779 L: linux-bluetooth@vger.kernel.org
11780 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11781 S: Maintained
11782 F: Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11783 F: drivers/bluetooth/btmtkuart.c
11784
11785 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11786 M: Sean Wang <sean.wang@mediatek.com>
11787 L: linux-pm@vger.kernel.org
11788 S: Maintained
11789 F: Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11790 F: drivers/power/reset/mt6323-poweroff.c
11791
11792 MEDIATEK CIR DRIVER
11793 M: Sean Wang <sean.wang@mediatek.com>
11794 S: Maintained
11795 F: drivers/media/rc/mtk-cir.c
11796
11797 MEDIATEK DMA DRIVER
11798 M: Sean Wang <sean.wang@mediatek.com>
11799 L: dmaengine@vger.kernel.org
11800 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11801 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11802 S: Maintained
11803 F: Documentation/devicetree/bindings/dma/mtk-*
11804 F: drivers/dma/mediatek/
11805
11806 MEDIATEK ETHERNET DRIVER
11807 M: Felix Fietkau <nbd@nbd.name>
11808 M: John Crispin <john@phrozen.org>
11809 M: Sean Wang <sean.wang@mediatek.com>
11810 M: Mark Lee <Mark-MC.Lee@mediatek.com>
11811 L: netdev@vger.kernel.org
11812 S: Maintained
11813 F: drivers/net/ethernet/mediatek/
11814
11815 MEDIATEK I2C CONTROLLER DRIVER
11816 M: Qii Wang <qii.wang@mediatek.com>
11817 L: linux-i2c@vger.kernel.org
11818 S: Maintained
11819 F: Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11820 F: drivers/i2c/busses/i2c-mt65xx.c
11821
11822 MEDIATEK IOMMU DRIVER
11823 M: Yong Wu <yong.wu@mediatek.com>
11824 L: iommu@lists.linux-foundation.org
11825 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11826 S: Supported
11827 F: Documentation/devicetree/bindings/iommu/mediatek*
11828 F: drivers/iommu/mtk_iommu*
11829 F: include/dt-bindings/memory/mt*-port.h
11830
11831 MEDIATEK JPEG DRIVER
11832 M: Rick Chang <rick.chang@mediatek.com>
11833 M: Bin Liu <bin.liu@mediatek.com>
11834 S: Supported
11835 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11836 F: drivers/media/platform/mtk-jpeg/
11837
11838 MEDIATEK MDP DRIVER
11839 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11840 M: Houlong Wei <houlong.wei@mediatek.com>
11841 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11842 S: Supported
11843 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
11844 F: drivers/media/platform/mtk-mdp/
11845 F: drivers/media/platform/mtk-vpu/
11846
11847 MEDIATEK MEDIA DRIVER
11848 M: Tiffany Lin <tiffany.lin@mediatek.com>
11849 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11850 S: Supported
11851 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11852 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
11853 F: drivers/media/platform/mtk-vcodec/
11854 F: drivers/media/platform/mtk-vpu/
11855
11856 MEDIATEK MMC/SD/SDIO DRIVER
11857 M: Chaotian Jing <chaotian.jing@mediatek.com>
11858 S: Maintained
11859 F: Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11860 F: drivers/mmc/host/mtk-sd.c
11861
11862 MEDIATEK MT76 WIRELESS LAN DRIVER
11863 M: Felix Fietkau <nbd@nbd.name>
11864 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11865 R: Ryder Lee <ryder.lee@mediatek.com>
11866 L: linux-wireless@vger.kernel.org
11867 S: Maintained
11868 F: drivers/net/wireless/mediatek/mt76/
11869
11870 MEDIATEK MT7601U WIRELESS LAN DRIVER
11871 M: Jakub Kicinski <kubakici@wp.pl>
11872 L: linux-wireless@vger.kernel.org
11873 S: Maintained
11874 F: drivers/net/wireless/mediatek/mt7601u/
11875
11876 MEDIATEK MT7621 CLOCK DRIVER
11877 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11878 S: Maintained
11879 F: Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11880 F: drivers/clk/ralink/clk-mt7621.c
11881
11882 MEDIATEK MT7621/28/88 I2C DRIVER
11883 M: Stefan Roese <sr@denx.de>
11884 L: linux-i2c@vger.kernel.org
11885 S: Maintained
11886 F: Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11887 F: drivers/i2c/busses/i2c-mt7621.c
11888
11889 MEDIATEK MT7621 PHY PCI DRIVER
11890 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11891 S: Maintained
11892 F: Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11893 F: drivers/phy/ralink/phy-mt7621-pci.c
11894
11895 MEDIATEK NAND CONTROLLER DRIVER
11896 L: linux-mtd@lists.infradead.org
11897 S: Orphan
11898 F: Documentation/devicetree/bindings/mtd/mtk-nand.txt
11899 F: drivers/mtd/nand/raw/mtk_*
11900
11901 MEDIATEK PMIC LED DRIVER
11902 M: Sean Wang <sean.wang@mediatek.com>
11903 S: Maintained
11904 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
11905 F: drivers/leds/leds-mt6323.c
11906
11907 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11908 M: Sean Wang <sean.wang@mediatek.com>
11909 S: Maintained
11910 F: drivers/char/hw_random/mtk-rng.c
11911
11912 MEDIATEK SWITCH DRIVER
11913 M: Sean Wang <sean.wang@mediatek.com>
11914 M: Landen Chao <Landen.Chao@mediatek.com>
11915 M: DENG Qingfang <dqfext@gmail.com>
11916 L: netdev@vger.kernel.org
11917 S: Maintained
11918 F: drivers/net/dsa/mt7530.*
11919 F: net/dsa/tag_mtk.c
11920
11921 MEDIATEK USB3 DRD IP DRIVER
11922 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
11923 L: linux-usb@vger.kernel.org
11924 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11925 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11926 S: Maintained
11927 F: Documentation/devicetree/bindings/usb/mediatek,*
11928 F: drivers/usb/host/xhci-mtk*
11929 F: drivers/usb/mtu3/
11930
11931 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11932 M: Peter Senna Tschudin <peter.senna@gmail.com>
11933 M: Martin Donnelly <martin.donnelly@ge.com>
11934 M: Martyn Welch <martyn.welch@collabora.co.uk>
11935 S: Maintained
11936 F: Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11937 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11938
11939 MEGARAID SCSI/SAS DRIVERS
11940 M: Kashyap Desai <kashyap.desai@broadcom.com>
11941 M: Sumit Saxena <sumit.saxena@broadcom.com>
11942 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11943 L: megaraidlinux.pdl@broadcom.com
11944 L: linux-scsi@vger.kernel.org
11945 S: Maintained
11946 W: http://www.avagotech.com/support/
11947 F: Documentation/scsi/megaraid.rst
11948 F: drivers/scsi/megaraid.*
11949 F: drivers/scsi/megaraid/
11950
11951 MELEXIS MLX90614 DRIVER
11952 M: Crt Mori <cmo@melexis.com>
11953 L: linux-iio@vger.kernel.org
11954 S: Supported
11955 W: http://www.melexis.com
11956 F: drivers/iio/temperature/mlx90614.c
11957
11958 MELEXIS MLX90632 DRIVER
11959 M: Crt Mori <cmo@melexis.com>
11960 L: linux-iio@vger.kernel.org
11961 S: Supported
11962 W: http://www.melexis.com
11963 F: drivers/iio/temperature/mlx90632.c
11964
11965 MELFAS MIP4 TOUCHSCREEN DRIVER
11966 M: Sangwon Jee <jeesw@melfas.com>
11967 S: Supported
11968 W: http://www.melfas.com
11969 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11970 F: drivers/input/touchscreen/melfas_mip4.c
11971
11972 MELLANOX BLUEFIELD I2C DRIVER
11973 M: Khalil Blaiech <kblaiech@nvidia.com>
11974 L: linux-i2c@vger.kernel.org
11975 S: Supported
11976 F: Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11977 F: drivers/i2c/busses/i2c-mlxbf.c
11978
11979 MELLANOX ETHERNET DRIVER (mlx4_en)
11980 M: Tariq Toukan <tariqt@nvidia.com>
11981 L: netdev@vger.kernel.org
11982 S: Supported
11983 W: http://www.mellanox.com
11984 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11985 F: drivers/net/ethernet/mellanox/mlx4/en_*
11986
11987 MELLANOX ETHERNET DRIVER (mlx5e)
11988 M: Saeed Mahameed <saeedm@nvidia.com>
11989 L: netdev@vger.kernel.org
11990 S: Supported
11991 W: http://www.mellanox.com
11992 Q: https://patchwork.kernel.org/project/netdevbpf/list/
11993 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
11994
11995 MELLANOX ETHERNET INNOVA DRIVERS
11996 R: Boris Pismenny <borisp@nvidia.com>
11997 L: netdev@vger.kernel.org
11998 S: Supported
11999 W: http://www.mellanox.com
12000 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12001 F: drivers/net/ethernet/mellanox/mlx5/core/accel/*
12002 F: drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12003 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12004 F: include/linux/mlx5/mlx5_ifc_fpga.h
12005
12006 MELLANOX ETHERNET SWITCH DRIVERS
12007 M: Jiri Pirko <jiri@nvidia.com>
12008 M: Ido Schimmel <idosch@nvidia.com>
12009 L: netdev@vger.kernel.org
12010 S: Supported
12011 W: http://www.mellanox.com
12012 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12013 F: drivers/net/ethernet/mellanox/mlxsw/
12014 F: tools/testing/selftests/drivers/net/mlxsw/
12015
12016 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12017 M: mlxsw@nvidia.com
12018 L: netdev@vger.kernel.org
12019 S: Supported
12020 W: http://www.mellanox.com
12021 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12022 F: drivers/net/ethernet/mellanox/mlxfw/
12023
12024 MELLANOX HARDWARE PLATFORM SUPPORT
12025 M: Hans de Goede <hdegoede@redhat.com>
12026 M: Mark Gross <mgross@linux.intel.com>
12027 M: Vadim Pasternak <vadimp@nvidia.com>
12028 L: platform-driver-x86@vger.kernel.org
12029 S: Supported
12030 F: Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12031 F: drivers/platform/mellanox/
12032 F: include/linux/platform_data/mlxreg.h
12033
12034 MELLANOX MLX4 core VPI driver
12035 M: Tariq Toukan <tariqt@nvidia.com>
12036 L: netdev@vger.kernel.org
12037 L: linux-rdma@vger.kernel.org
12038 S: Supported
12039 W: http://www.mellanox.com
12040 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12041 F: drivers/net/ethernet/mellanox/mlx4/
12042 F: include/linux/mlx4/
12043
12044 MELLANOX MLX4 IB driver
12045 M: Yishai Hadas <yishaih@nvidia.com>
12046 L: linux-rdma@vger.kernel.org
12047 S: Supported
12048 W: http://www.mellanox.com
12049 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12050 F: drivers/infiniband/hw/mlx4/
12051 F: include/linux/mlx4/
12052 F: include/uapi/rdma/mlx4-abi.h
12053
12054 MELLANOX MLX5 core VPI driver
12055 M: Saeed Mahameed <saeedm@nvidia.com>
12056 M: Leon Romanovsky <leonro@nvidia.com>
12057 L: netdev@vger.kernel.org
12058 L: linux-rdma@vger.kernel.org
12059 S: Supported
12060 W: http://www.mellanox.com
12061 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12062 F: Documentation/networking/device_drivers/ethernet/mellanox/
12063 F: drivers/net/ethernet/mellanox/mlx5/core/
12064 F: include/linux/mlx5/
12065
12066 MELLANOX MLX5 IB driver
12067 M: Leon Romanovsky <leonro@nvidia.com>
12068 L: linux-rdma@vger.kernel.org
12069 S: Supported
12070 W: http://www.mellanox.com
12071 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12072 F: drivers/infiniband/hw/mlx5/
12073 F: include/linux/mlx5/
12074 F: include/uapi/rdma/mlx5-abi.h
12075
12076 MELLANOX MLXCPLD I2C AND MUX DRIVER
12077 M: Vadim Pasternak <vadimp@nvidia.com>
12078 M: Michael Shych <michaelsh@nvidia.com>
12079 L: linux-i2c@vger.kernel.org
12080 S: Supported
12081 F: Documentation/i2c/busses/i2c-mlxcpld.rst
12082 F: drivers/i2c/busses/i2c-mlxcpld.c
12083 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
12084
12085 MELLANOX MLXCPLD LED DRIVER
12086 M: Vadim Pasternak <vadimp@nvidia.com>
12087 L: linux-leds@vger.kernel.org
12088 S: Supported
12089 F: Documentation/leds/leds-mlxcpld.rst
12090 F: drivers/leds/leds-mlxcpld.c
12091 F: drivers/leds/leds-mlxreg.c
12092
12093 MELLANOX PLATFORM DRIVER
12094 M: Vadim Pasternak <vadimp@nvidia.com>
12095 L: platform-driver-x86@vger.kernel.org
12096 S: Supported
12097 F: drivers/platform/x86/mlx-platform.c
12098
12099 MEMBARRIER SUPPORT
12100 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12101 M: "Paul E. McKenney" <paulmck@kernel.org>
12102 L: linux-kernel@vger.kernel.org
12103 S: Supported
12104 F: arch/powerpc/include/asm/membarrier.h
12105 F: include/uapi/linux/membarrier.h
12106 F: kernel/sched/membarrier.c
12107
12108 MEMBLOCK
12109 M: Mike Rapoport <rppt@linux.ibm.com>
12110 L: linux-mm@kvack.org
12111 S: Maintained
12112 F: Documentation/core-api/boot-time-mm.rst
12113 F: include/linux/memblock.h
12114 F: mm/memblock.c
12115
12116 MEMORY CONTROLLER DRIVERS
12117 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12118 L: linux-kernel@vger.kernel.org
12119 S: Maintained
12120 T: git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12121 F: Documentation/devicetree/bindings/memory-controllers/
12122 F: drivers/memory/
12123 F: include/dt-bindings/memory/
12124 F: include/memory/
12125
12126 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12127 M: Dmitry Osipenko <digetx@gmail.com>
12128 L: linux-pm@vger.kernel.org
12129 L: linux-tegra@vger.kernel.org
12130 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12131 S: Maintained
12132 F: drivers/devfreq/tegra30-devfreq.c
12133
12134 MEMORY MANAGEMENT
12135 M: Andrew Morton <akpm@linux-foundation.org>
12136 L: linux-mm@kvack.org
12137 S: Maintained
12138 W: http://www.linux-mm.org
12139 T: quilt https://ozlabs.org/~akpm/mmotm/
12140 T: quilt https://ozlabs.org/~akpm/mmots/
12141 T: git git://github.com/hnaz/linux-mm.git
12142 F: include/linux/gfp.h
12143 F: include/linux/memory_hotplug.h
12144 F: include/linux/mm.h
12145 F: include/linux/mmzone.h
12146 F: include/linux/pagewalk.h
12147 F: include/linux/vmalloc.h
12148 F: mm/
12149 F: tools/testing/selftests/vm/
12150
12151 MEMORY TECHNOLOGY DEVICES (MTD)
12152 M: Miquel Raynal <miquel.raynal@bootlin.com>
12153 M: Richard Weinberger <richard@nod.at>
12154 M: Vignesh Raghavendra <vigneshr@ti.com>
12155 L: linux-mtd@lists.infradead.org
12156 S: Maintained
12157 W: http://www.linux-mtd.infradead.org/
12158 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12159 C: irc://irc.oftc.net/mtd
12160 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12161 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12162 F: Documentation/devicetree/bindings/mtd/
12163 F: drivers/mtd/
12164 F: include/linux/mtd/
12165 F: include/uapi/mtd/
12166
12167 MEN A21 WATCHDOG DRIVER
12168 M: Johannes Thumshirn <morbidrsa@gmail.com>
12169 L: linux-watchdog@vger.kernel.org
12170 S: Maintained
12171 F: drivers/watchdog/mena21_wdt.c
12172
12173 MEN CHAMELEON BUS (mcb)
12174 M: Johannes Thumshirn <morbidrsa@gmail.com>
12175 S: Maintained
12176 F: Documentation/driver-api/men-chameleon-bus.rst
12177 F: drivers/mcb/
12178 F: include/linux/mcb.h
12179
12180 MEN F21BMC (Board Management Controller)
12181 M: Andreas Werner <andreas.werner@men.de>
12182 S: Supported
12183 F: Documentation/hwmon/menf21bmc.rst
12184 F: drivers/hwmon/menf21bmc_hwmon.c
12185 F: drivers/leds/leds-menf21bmc.c
12186 F: drivers/mfd/menf21bmc.c
12187 F: drivers/watchdog/menf21bmc_wdt.c
12188
12189 MEN Z069 WATCHDOG DRIVER
12190 M: Johannes Thumshirn <jth@kernel.org>
12191 L: linux-watchdog@vger.kernel.org
12192 S: Maintained
12193 F: drivers/watchdog/menz69_wdt.c
12194
12195 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12196 M: Neil Armstrong <narmstrong@baylibre.com>
12197 L: linux-media@vger.kernel.org
12198 L: linux-amlogic@lists.infradead.org
12199 S: Supported
12200 W: http://linux-meson.com/
12201 T: git git://linuxtv.org/media_tree.git
12202 F: Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12203 F: drivers/media/cec/platform/meson/ao-cec-g12a.c
12204 F: drivers/media/cec/platform/meson/ao-cec.c
12205
12206 MESON GE2D DRIVER FOR AMLOGIC SOCS
12207 M: Neil Armstrong <narmstrong@baylibre.com>
12208 L: linux-media@vger.kernel.org
12209 L: linux-amlogic@lists.infradead.org
12210 S: Supported
12211 T: git git://linuxtv.org/media_tree.git
12212 F: Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12213 F: drivers/media/platform/meson/ge2d/
12214
12215 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12216 M: Liang Yang <liang.yang@amlogic.com>
12217 L: linux-mtd@lists.infradead.org
12218 S: Maintained
12219 F: Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12220 F: drivers/mtd/nand/raw/meson_*
12221
12222 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12223 M: Neil Armstrong <narmstrong@baylibre.com>
12224 L: linux-media@vger.kernel.org
12225 L: linux-amlogic@lists.infradead.org
12226 S: Supported
12227 T: git git://linuxtv.org/media_tree.git
12228 F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12229 F: drivers/staging/media/meson/vdec/
12230
12231 METHODE UDPU SUPPORT
12232 M: Vladimir Vid <vladimir.vid@sartura.hr>
12233 S: Maintained
12234 F: arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12235
12236 MHI BUS
12237 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12238 M: Hemant Kumar <hemantk@codeaurora.org>
12239 L: linux-arm-msm@vger.kernel.org
12240 S: Maintained
12241 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12242 F: Documentation/ABI/stable/sysfs-bus-mhi
12243 F: Documentation/mhi/
12244 F: drivers/bus/mhi/
12245 F: include/linux/mhi.h
12246
12247 MICROBLAZE ARCHITECTURE
12248 M: Michal Simek <monstr@monstr.eu>
12249 S: Supported
12250 W: http://www.monstr.eu/fdt/
12251 T: git git://git.monstr.eu/linux-2.6-microblaze.git
12252 F: arch/microblaze/
12253
12254 MICROCHIP AT91 DMA DRIVERS
12255 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12256 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12257 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12258 L: dmaengine@vger.kernel.org
12259 S: Supported
12260 F: Documentation/devicetree/bindings/dma/atmel-dma.txt
12261 F: drivers/dma/at_hdmac.c
12262 F: drivers/dma/at_hdmac_regs.h
12263 F: drivers/dma/at_xdmac.c
12264 F: include/dt-bindings/dma/at91.h
12265
12266 MICROCHIP AT91 SERIAL DRIVER
12267 M: Richard Genoud <richard.genoud@gmail.com>
12268 S: Maintained
12269 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12270 F: drivers/tty/serial/atmel_serial.c
12271 F: drivers/tty/serial/atmel_serial.h
12272
12273 MICROCHIP AT91 USART MFD DRIVER
12274 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12275 L: linux-kernel@vger.kernel.org
12276 S: Supported
12277 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12278 F: drivers/mfd/at91-usart.c
12279 F: include/dt-bindings/mfd/at91-usart.h
12280
12281 MICROCHIP AT91 USART SPI DRIVER
12282 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12283 L: linux-spi@vger.kernel.org
12284 S: Supported
12285 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12286 F: drivers/spi/spi-at91-usart.c
12287
12288 MICROCHIP AUDIO ASOC DRIVERS
12289 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12290 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12291 S: Supported
12292 F: sound/soc/atmel
12293
12294 MICROCHIP ECC DRIVER
12295 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12296 L: linux-crypto@vger.kernel.org
12297 S: Maintained
12298 F: drivers/crypto/atmel-ecc.*
12299
12300 MICROCHIP I2C DRIVER
12301 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12302 L: linux-i2c@vger.kernel.org
12303 S: Supported
12304 F: drivers/i2c/busses/i2c-at91-*.c
12305 F: drivers/i2c/busses/i2c-at91.h
12306
12307 MICROCHIP ISC DRIVER
12308 M: Eugen Hristev <eugen.hristev@microchip.com>
12309 L: linux-media@vger.kernel.org
12310 S: Supported
12311 F: Documentation/devicetree/bindings/media/atmel,isc.yaml
12312 F: Documentation/devicetree/bindings/media/microchip,xisc.yaml
12313 F: drivers/media/platform/atmel/atmel-isc-base.c
12314 F: drivers/media/platform/atmel/atmel-isc-regs.h
12315 F: drivers/media/platform/atmel/atmel-isc.h
12316 F: drivers/media/platform/atmel/atmel-sama5d2-isc.c
12317 F: drivers/media/platform/atmel/atmel-sama7g5-isc.c
12318 F: include/linux/atmel-isc-media.h
12319
12320 MICROCHIP ISI DRIVER
12321 M: Eugen Hristev <eugen.hristev@microchip.com>
12322 L: linux-media@vger.kernel.org
12323 S: Supported
12324 F: drivers/media/platform/atmel/atmel-isi.c
12325 F: drivers/media/platform/atmel/atmel-isi.h
12326
12327 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12328 M: Woojung Huh <woojung.huh@microchip.com>
12329 M: UNGLinuxDriver@microchip.com
12330 L: netdev@vger.kernel.org
12331 S: Maintained
12332 F: Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12333 F: drivers/net/dsa/microchip/*
12334 F: include/linux/platform_data/microchip-ksz.h
12335 F: net/dsa/tag_ksz.c
12336
12337 MICROCHIP LAN743X ETHERNET DRIVER
12338 M: Bryan Whitehead <bryan.whitehead@microchip.com>
12339 M: UNGLinuxDriver@microchip.com
12340 L: netdev@vger.kernel.org
12341 S: Maintained
12342 F: drivers/net/ethernet/microchip/lan743x_*
12343
12344 MICROCHIP LCDFB DRIVER
12345 M: Nicolas Ferre <nicolas.ferre@microchip.com>
12346 L: linux-fbdev@vger.kernel.org
12347 S: Maintained
12348 F: drivers/video/fbdev/atmel_lcdfb.c
12349 F: include/video/atmel_lcdc.h
12350
12351 MICROCHIP MCP16502 PMIC DRIVER
12352 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12353 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12354 S: Supported
12355 F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12356 F: drivers/regulator/mcp16502.c
12357
12358 MICROCHIP MCP3911 ADC DRIVER
12359 M: Marcus Folkesson <marcus.folkesson@gmail.com>
12360 M: Kent Gustavsson <kent@minoris.se>
12361 L: linux-iio@vger.kernel.org
12362 S: Supported
12363 F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12364 F: drivers/iio/adc/mcp3911.c
12365
12366 MICROCHIP MMC/SD/SDIO MCI DRIVER
12367 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12368 S: Maintained
12369 F: drivers/mmc/host/atmel-mci.c
12370
12371 MICROCHIP NAND DRIVER
12372 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12373 L: linux-mtd@lists.infradead.org
12374 S: Supported
12375 F: Documentation/devicetree/bindings/mtd/atmel-nand.txt
12376 F: drivers/mtd/nand/raw/atmel/*
12377
12378 MICROCHIP PWM DRIVER
12379 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12380 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12381 L: linux-pwm@vger.kernel.org
12382 S: Supported
12383 F: Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12384 F: drivers/pwm/pwm-atmel.c
12385
12386 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12387 M: Eugen Hristev <eugen.hristev@microchip.com>
12388 L: linux-iio@vger.kernel.org
12389 S: Supported
12390 F: Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12391 F: drivers/iio/adc/at91-sama5d2_adc.c
12392 F: include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12393
12394 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12395 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12396 S: Supported
12397 F: drivers/power/reset/at91-sama5d2_shdwc.c
12398
12399 MICROCHIP SPI DRIVER
12400 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12401 S: Supported
12402 F: drivers/spi/spi-atmel.*
12403
12404 MICROCHIP SSC DRIVER
12405 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12406 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12407 S: Supported
12408 F: drivers/misc/atmel-ssc.c
12409 F: include/linux/atmel-ssc.h
12410
12411 MICROCHIP USB251XB DRIVER
12412 M: Richard Leitner <richard.leitner@skidata.com>
12413 L: linux-usb@vger.kernel.org
12414 S: Maintained
12415 F: Documentation/devicetree/bindings/usb/usb251xb.txt
12416 F: drivers/usb/misc/usb251xb.c
12417
12418 MICROCHIP USBA UDC DRIVER
12419 M: Cristian Birsan <cristian.birsan@microchip.com>
12420 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12421 S: Supported
12422 F: drivers/usb/gadget/udc/atmel_usba_udc.*
12423
12424 MICROCHIP WILC1000 WIFI DRIVER
12425 M: Ajay Singh <ajay.kathat@microchip.com>
12426 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12427 L: linux-wireless@vger.kernel.org
12428 S: Supported
12429 F: drivers/net/wireless/microchip/wilc1000/
12430
12431 MICROSEMI MIPS SOCS
12432 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
12433 M: UNGLinuxDriver@microchip.com
12434 L: linux-mips@vger.kernel.org
12435 S: Supported
12436 F: Documentation/devicetree/bindings/mips/mscc.txt
12437 F: Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12438 F: arch/mips/boot/dts/mscc/
12439 F: arch/mips/configs/generic/board-ocelot.config
12440 F: arch/mips/generic/board-ocelot.c
12441
12442 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12443 M: Don Brace <don.brace@microchip.com>
12444 L: storagedev@microchip.com
12445 L: linux-scsi@vger.kernel.org
12446 S: Supported
12447 F: Documentation/scsi/smartpqi.rst
12448 F: drivers/scsi/smartpqi/Kconfig
12449 F: drivers/scsi/smartpqi/Makefile
12450 F: drivers/scsi/smartpqi/smartpqi*.[ch]
12451 F: include/linux/cciss*.h
12452 F: include/uapi/linux/cciss*.h
12453
12454 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12455 M: Maximilian Luz <luzmaximilian@gmail.com>
12456 L: linux-pm@vger.kernel.org
12457 L: platform-driver-x86@vger.kernel.org
12458 S: Maintained
12459 F: drivers/power/supply/surface_battery.c
12460 F: drivers/power/supply/surface_charger.c
12461
12462 MICROSOFT SURFACE DTX DRIVER
12463 M: Maximilian Luz <luzmaximilian@gmail.com>
12464 L: platform-driver-x86@vger.kernel.org
12465 S: Maintained
12466 F: Documentation/driver-api/surface_aggregator/clients/dtx.rst
12467 F: drivers/platform/surface/surface_dtx.c
12468 F: include/uapi/linux/surface_aggregator/dtx.h
12469
12470 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12471 M: Maximilian Luz <luzmaximilian@gmail.com>
12472 L: platform-driver-x86@vger.kernel.org
12473 S: Maintained
12474 F: drivers/platform/surface/surface_gpe.c
12475
12476 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12477 M: Hans de Goede <hdegoede@redhat.com>
12478 M: Mark Gross <mgross@linux.intel.com>
12479 M: Maximilian Luz <luzmaximilian@gmail.com>
12480 L: platform-driver-x86@vger.kernel.org
12481 S: Maintained
12482 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12483 F: drivers/platform/surface/
12484
12485 MICROSOFT SURFACE HID TRANSPORT DRIVER
12486 M: Maximilian Luz <luzmaximilian@gmail.com>
12487 L: linux-input@vger.kernel.org
12488 L: platform-driver-x86@vger.kernel.org
12489 S: Maintained
12490 F: drivers/hid/surface-hid/
12491
12492 MICROSOFT SURFACE HOT-PLUG DRIVER
12493 M: Maximilian Luz <luzmaximilian@gmail.com>
12494 L: platform-driver-x86@vger.kernel.org
12495 S: Maintained
12496 F: drivers/platform/surface/surface_hotplug.c
12497
12498 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12499 M: Maximilian Luz <luzmaximilian@gmail.com>
12500 L: platform-driver-x86@vger.kernel.org
12501 S: Maintained
12502 F: drivers/platform/surface/surface_platform_profile.c
12503
12504 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12505 M: Chen Yu <yu.c.chen@intel.com>
12506 L: platform-driver-x86@vger.kernel.org
12507 S: Supported
12508 F: drivers/platform/surface/surfacepro3_button.c
12509
12510 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12511 M: Maximilian Luz <luzmaximilian@gmail.com>
12512 L: platform-driver-x86@vger.kernel.org
12513 S: Maintained
12514 W: https://github.com/linux-surface/surface-aggregator-module
12515 C: irc://irc.libera.chat/linux-surface
12516 F: Documentation/driver-api/surface_aggregator/
12517 F: drivers/platform/surface/aggregator/
12518 F: drivers/platform/surface/surface_acpi_notify.c
12519 F: drivers/platform/surface/surface_aggregator_cdev.c
12520 F: drivers/platform/surface/surface_aggregator_registry.c
12521 F: include/linux/surface_acpi_notify.h
12522 F: include/linux/surface_aggregator/
12523 F: include/uapi/linux/surface_aggregator/
12524
12525 MICROTEK X6 SCANNER
12526 M: Oliver Neukum <oliver@neukum.org>
12527 S: Maintained
12528 F: drivers/usb/image/microtek.*
12529
12530 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12531 M: Luka Kovacic <luka.kovacic@sartura.hr>
12532 M: Luka Perkov <luka.perkov@sartura.hr>
12533 S: Maintained
12534 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12535 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12536 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12537 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12538 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12539 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12540
12541 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12542 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12543 L: linux-media@vger.kernel.org
12544 S: Maintained
12545 F: Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12546 F: Documentation/driver-api/media/drivers/ccs/
12547 F: Documentation/userspace-api/media/drivers/ccs.rst
12548 F: drivers/media/i2c/ccs-pll.c
12549 F: drivers/media/i2c/ccs-pll.h
12550 F: drivers/media/i2c/ccs/
12551 F: include/uapi/linux/ccs.h
12552 F: include/uapi/linux/smiapp.h
12553
12554 MIPS
12555 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12556 L: linux-mips@vger.kernel.org
12557 S: Maintained
12558 W: http://www.linux-mips.org/
12559 Q: https://patchwork.kernel.org/project/linux-mips/list/
12560 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12561 F: Documentation/devicetree/bindings/mips/
12562 F: Documentation/mips/
12563 F: arch/mips/
12564 F: drivers/platform/mips/
12565
12566 MIPS BOSTON DEVELOPMENT BOARD
12567 M: Paul Burton <paulburton@kernel.org>
12568 L: linux-mips@vger.kernel.org
12569 S: Maintained
12570 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
12571 F: arch/mips/boot/dts/img/boston.dts
12572 F: arch/mips/configs/generic/board-boston.config
12573 F: drivers/clk/imgtec/clk-boston.c
12574 F: include/dt-bindings/clock/boston-clock.h
12575
12576 MIPS CORE DRIVERS
12577 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12578 M: Serge Semin <fancer.lancer@gmail.com>
12579 L: linux-mips@vger.kernel.org
12580 S: Supported
12581 F: drivers/bus/mips_cdmm.c
12582 F: drivers/clocksource/mips-gic-timer.c
12583 F: drivers/cpuidle/cpuidle-cps.c
12584 F: drivers/irqchip/irq-mips-cpu.c
12585 F: drivers/irqchip/irq-mips-gic.c
12586
12587 MIPS GENERIC PLATFORM
12588 M: Paul Burton <paulburton@kernel.org>
12589 L: linux-mips@vger.kernel.org
12590 S: Supported
12591 F: Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12592 F: arch/mips/generic/
12593 F: arch/mips/tools/generic-board-config.sh
12594
12595 MIPS RINT INSTRUCTION EMULATION
12596 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
12597 L: linux-mips@vger.kernel.org
12598 S: Supported
12599 F: arch/mips/math-emu/dp_rint.c
12600 F: arch/mips/math-emu/sp_rint.c
12601
12602 MIPS/LOONGSON1 ARCHITECTURE
12603 M: Keguang Zhang <keguang.zhang@gmail.com>
12604 L: linux-mips@vger.kernel.org
12605 S: Maintained
12606 F: arch/mips/include/asm/mach-loongson32/
12607 F: arch/mips/loongson32/
12608 F: drivers/*/*/*loongson1*
12609 F: drivers/*/*loongson1*
12610
12611 MIPS/LOONGSON2EF ARCHITECTURE
12612 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12613 L: linux-mips@vger.kernel.org
12614 S: Maintained
12615 F: arch/mips/include/asm/mach-loongson2ef/
12616 F: arch/mips/loongson2ef/
12617 F: drivers/cpufreq/loongson2_cpufreq.c
12618
12619 MIPS/LOONGSON64 ARCHITECTURE
12620 M: Huacai Chen <chenhuacai@kernel.org>
12621 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12622 L: linux-mips@vger.kernel.org
12623 S: Maintained
12624 F: arch/mips/include/asm/mach-loongson64/
12625 F: arch/mips/loongson64/
12626 F: drivers/irqchip/irq-loongson*
12627 F: drivers/platform/mips/cpu_hwmon.c
12628
12629 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12630 M: Hans Verkuil <hverkuil@xs4all.nl>
12631 L: linux-media@vger.kernel.org
12632 S: Odd Fixes
12633 W: https://linuxtv.org
12634 T: git git://linuxtv.org/media_tree.git
12635 F: drivers/media/radio/radio-miropcm20*
12636
12637 MMP SUPPORT
12638 R: Lubomir Rintel <lkundrak@v3.sk>
12639 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12640 S: Odd Fixes
12641 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12642 F: arch/arm/boot/dts/mmp*
12643 F: arch/arm/mach-mmp/
12644 F: include/linux/soc/mmp/
12645
12646 MMP USB PHY DRIVERS
12647 R: Lubomir Rintel <lkundrak@v3.sk>
12648 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12649 S: Maintained
12650 F: drivers/phy/marvell/phy-mmp3-usb.c
12651 F: drivers/phy/marvell/phy-pxa-usb.c
12652
12653 MMU GATHER AND TLB INVALIDATION
12654 M: Will Deacon <will@kernel.org>
12655 M: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12656 M: Andrew Morton <akpm@linux-foundation.org>
12657 M: Nick Piggin <npiggin@gmail.com>
12658 M: Peter Zijlstra <peterz@infradead.org>
12659 L: linux-arch@vger.kernel.org
12660 L: linux-mm@kvack.org
12661 S: Maintained
12662 F: arch/*/include/asm/tlb.h
12663 F: include/asm-generic/tlb.h
12664 F: mm/mmu_gather.c
12665
12666 MN88472 MEDIA DRIVER
12667 M: Antti Palosaari <crope@iki.fi>
12668 L: linux-media@vger.kernel.org
12669 S: Maintained
12670 W: https://linuxtv.org
12671 W: http://palosaari.fi/linux/
12672 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12673 F: drivers/media/dvb-frontends/mn88472*
12674
12675 MN88473 MEDIA DRIVER
12676 M: Antti Palosaari <crope@iki.fi>
12677 L: linux-media@vger.kernel.org
12678 S: Maintained
12679 W: https://linuxtv.org
12680 W: http://palosaari.fi/linux/
12681 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12682 F: drivers/media/dvb-frontends/mn88473*
12683
12684 MODULE SUPPORT
12685 M: Luis Chamberlain <mcgrof@kernel.org>
12686 M: Jessica Yu <jeyu@kernel.org>
12687 S: Maintained
12688 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12689 F: include/linux/module.h
12690 F: kernel/module.c
12691
12692 MONOLITHIC POWER SYSTEM PMIC DRIVER
12693 M: Saravanan Sekar <sravanhome@gmail.com>
12694 S: Maintained
12695 F: Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12696 F: Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12697 F: drivers/iio/adc/mp2629_adc.c
12698 F: drivers/mfd/mp2629.c
12699 F: drivers/power/supply/mp2629_charger.c
12700 F: drivers/regulator/mp5416.c
12701 F: drivers/regulator/mpq7920.c
12702 F: drivers/regulator/mpq7920.h
12703 F: include/linux/mfd/mp2629.h
12704
12705 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12706 S: Orphan
12707 W: http://popies.net/meye/
12708 F: Documentation/userspace-api/media/drivers/meye*
12709 F: drivers/media/pci/meye/
12710 F: include/uapi/linux/meye.h
12711
12712 MOTORCOMM PHY DRIVER
12713 M: Peter Geis <pgwipeout@gmail.com>
12714 L: netdev@vger.kernel.org
12715 S: Maintained
12716 F: drivers/net/phy/motorcomm.c
12717
12718 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12719 M: Jiri Slaby <jirislaby@kernel.org>
12720 S: Maintained
12721 F: Documentation/driver-api/serial/moxa-smartio.rst
12722 F: drivers/tty/mxser.*
12723
12724 MR800 AVERMEDIA USB FM RADIO DRIVER
12725 M: Alexey Klimov <klimov.linux@gmail.com>
12726 L: linux-media@vger.kernel.org
12727 S: Maintained
12728 T: git git://linuxtv.org/media_tree.git
12729 F: drivers/media/radio/radio-mr800.c
12730
12731 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12732 M: Alan Ott <alan@signal11.us>
12733 L: linux-wpan@vger.kernel.org
12734 S: Maintained
12735 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12736 F: drivers/net/ieee802154/mrf24j40.c
12737
12738 MSI LAPTOP SUPPORT
12739 M: "Lee, Chun-Yi" <jlee@suse.com>
12740 L: platform-driver-x86@vger.kernel.org
12741 S: Maintained
12742 F: drivers/platform/x86/msi-laptop.c
12743
12744 MSI WMI SUPPORT
12745 L: platform-driver-x86@vger.kernel.org
12746 S: Orphan
12747 F: drivers/platform/x86/msi-wmi.c
12748
12749 MSI001 MEDIA DRIVER
12750 M: Antti Palosaari <crope@iki.fi>
12751 L: linux-media@vger.kernel.org
12752 S: Maintained
12753 W: https://linuxtv.org
12754 W: http://palosaari.fi/linux/
12755 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12756 T: git git://linuxtv.org/anttip/media_tree.git
12757 F: drivers/media/tuners/msi001*
12758
12759 MSI2500 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/usb/msi2500/
12768
12769 MSTAR INTERRUPT CONTROLLER DRIVER
12770 M: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12771 M: Daniel Palmer <daniel@thingy.jp>
12772 S: Maintained
12773 F: Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12774 F: drivers/irqchip/irq-mst-intc.c
12775
12776 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12777 M: Robert Jarzmik <robert.jarzmik@free.fr>
12778 L: linux-mtd@lists.infradead.org
12779 S: Maintained
12780 F: drivers/mtd/devices/docg3*
12781
12782 MT9M032 APTINA SENSOR DRIVER
12783 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12784 L: linux-media@vger.kernel.org
12785 S: Maintained
12786 T: git git://linuxtv.org/media_tree.git
12787 F: drivers/media/i2c/mt9m032.c
12788 F: include/media/i2c/mt9m032.h
12789
12790 MT9P031 APTINA CAMERA SENSOR
12791 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12792 L: linux-media@vger.kernel.org
12793 S: Maintained
12794 T: git git://linuxtv.org/media_tree.git
12795 F: drivers/media/i2c/mt9p031.c
12796 F: include/media/i2c/mt9p031.h
12797
12798 MT9T001 APTINA CAMERA SENSOR
12799 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12800 L: linux-media@vger.kernel.org
12801 S: Maintained
12802 T: git git://linuxtv.org/media_tree.git
12803 F: drivers/media/i2c/mt9t001.c
12804 F: include/media/i2c/mt9t001.h
12805
12806 MT9T112 APTINA CAMERA SENSOR
12807 M: Jacopo Mondi <jacopo@jmondi.org>
12808 L: linux-media@vger.kernel.org
12809 S: Odd Fixes
12810 T: git git://linuxtv.org/media_tree.git
12811 F: drivers/media/i2c/mt9t112.c
12812 F: include/media/i2c/mt9t112.h
12813
12814 MT9V032 APTINA CAMERA SENSOR
12815 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12816 L: linux-media@vger.kernel.org
12817 S: Maintained
12818 T: git git://linuxtv.org/media_tree.git
12819 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12820 F: drivers/media/i2c/mt9v032.c
12821 F: include/media/i2c/mt9v032.h
12822
12823 MT9V111 APTINA CAMERA SENSOR
12824 M: Jacopo Mondi <jacopo@jmondi.org>
12825 L: linux-media@vger.kernel.org
12826 S: Maintained
12827 T: git git://linuxtv.org/media_tree.git
12828 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12829 F: drivers/media/i2c/mt9v111.c
12830
12831 MULTIFUNCTION DEVICES (MFD)
12832 M: Lee Jones <lee.jones@linaro.org>
12833 S: Supported
12834 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12835 F: Documentation/devicetree/bindings/mfd/
12836 F: drivers/mfd/
12837 F: include/dt-bindings/mfd/
12838 F: include/linux/mfd/
12839
12840 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12841 S: Orphan
12842 F: drivers/mmc/host/mmc_spi.c
12843 F: include/linux/spi/mmc_spi.h
12844
12845 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12846 M: Ulf Hansson <ulf.hansson@linaro.org>
12847 L: linux-mmc@vger.kernel.org
12848 S: Maintained
12849 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12850 F: Documentation/devicetree/bindings/mmc/
12851 F: drivers/mmc/
12852 F: include/linux/mmc/
12853 F: include/uapi/linux/mmc/
12854
12855 MULTIPLEXER SUBSYSTEM
12856 M: Peter Rosin <peda@axentia.se>
12857 S: Maintained
12858 F: Documentation/ABI/testing/sysfs-class-mux*
12859 F: Documentation/devicetree/bindings/mux/
12860 F: drivers/mux/
12861 F: include/dt-bindings/mux/
12862 F: include/linux/mux/
12863
12864 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12865 M: Bin Liu <b-liu@ti.com>
12866 L: linux-usb@vger.kernel.org
12867 S: Maintained
12868 F: drivers/usb/musb/
12869
12870 MXL301RF MEDIA DRIVER
12871 M: Akihiro Tsukada <tskd08@gmail.com>
12872 L: linux-media@vger.kernel.org
12873 S: Odd Fixes
12874 F: drivers/media/tuners/mxl301rf*
12875
12876 MXL5007T MEDIA DRIVER
12877 M: Michael Krufky <mkrufky@linuxtv.org>
12878 L: linux-media@vger.kernel.org
12879 S: Maintained
12880 W: https://linuxtv.org
12881 W: http://github.com/mkrufky
12882 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12883 T: git git://linuxtv.org/mkrufky/tuners.git
12884 F: drivers/media/tuners/mxl5007t.*
12885
12886 MXSFB DRM DRIVER
12887 M: Marek Vasut <marex@denx.de>
12888 M: Stefan Agner <stefan@agner.ch>
12889 L: dri-devel@lists.freedesktop.org
12890 S: Supported
12891 T: git git://anongit.freedesktop.org/drm/drm-misc
12892 F: Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12893 F: drivers/gpu/drm/mxsfb/
12894
12895 MYLEX DAC960 PCI RAID Controller
12896 M: Hannes Reinecke <hare@kernel.org>
12897 L: linux-scsi@vger.kernel.org
12898 S: Supported
12899 F: drivers/scsi/myrb.*
12900 F: drivers/scsi/myrs.*
12901
12902 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12903 M: Chris Lee <christopher.lee@cspi.com>
12904 L: netdev@vger.kernel.org
12905 S: Supported
12906 W: https://www.cspi.com/ethernet-products/support/downloads/
12907 F: drivers/net/ethernet/myricom/myri10ge/
12908
12909 NAND FLASH SUBSYSTEM
12910 M: Miquel Raynal <miquel.raynal@bootlin.com>
12911 R: Richard Weinberger <richard@nod.at>
12912 L: linux-mtd@lists.infradead.org
12913 S: Maintained
12914 W: http://www.linux-mtd.infradead.org/
12915 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12916 C: irc://irc.oftc.net/mtd
12917 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12918 F: drivers/mtd/nand/
12919 F: include/linux/mtd/*nand*.h
12920
12921 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12922 M: Daniel Mack <zonque@gmail.com>
12923 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12924 S: Maintained
12925 W: http://www.native-instruments.com
12926 F: sound/usb/caiaq/
12927
12928 NATSEMI ETHERNET DRIVER (DP8381x)
12929 S: Orphan
12930 F: drivers/net/ethernet/natsemi/natsemi.c
12931
12932 NCR 5380 SCSI DRIVERS
12933 M: Finn Thain <fthain@linux-m68k.org>
12934 M: Michael Schmitz <schmitzmic@gmail.com>
12935 L: linux-scsi@vger.kernel.org
12936 S: Maintained
12937 F: Documentation/scsi/g_NCR5380.rst
12938 F: drivers/scsi/NCR5380.*
12939 F: drivers/scsi/arm/cumana_1.c
12940 F: drivers/scsi/arm/oak.c
12941 F: drivers/scsi/atari_scsi.*
12942 F: drivers/scsi/dmx3191d.c
12943 F: drivers/scsi/g_NCR5380.*
12944 F: drivers/scsi/mac_scsi.*
12945 F: drivers/scsi/sun3_scsi.*
12946 F: drivers/scsi/sun3_scsi_vme.c
12947
12948 NCSI LIBRARY
12949 M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
12950 S: Maintained
12951 F: net/ncsi/
12952
12953 NCT6775 HARDWARE MONITOR DRIVER
12954 M: Guenter Roeck <linux@roeck-us.net>
12955 L: linux-hwmon@vger.kernel.org
12956 S: Maintained
12957 F: Documentation/hwmon/nct6775.rst
12958 F: drivers/hwmon/nct6775.c
12959
12960 NETDEVSIM
12961 M: Jakub Kicinski <kuba@kernel.org>
12962 S: Maintained
12963 F: drivers/net/netdevsim/*
12964
12965 NETEM NETWORK EMULATOR
12966 M: Stephen Hemminger <stephen@networkplumber.org>
12967 L: netdev@vger.kernel.org
12968 S: Maintained
12969 F: net/sched/sch_netem.c
12970
12971 NETERION 10GbE DRIVERS (s2io/vxge)
12972 M: Jon Mason <jdmason@kudzu.us>
12973 L: netdev@vger.kernel.org
12974 S: Supported
12975 F: Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12976 F: Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12977 F: drivers/net/ethernet/neterion/
12978
12979 NETFILTER
12980 M: Pablo Neira Ayuso <pablo@netfilter.org>
12981 M: Jozsef Kadlecsik <kadlec@netfilter.org>
12982 M: Florian Westphal <fw@strlen.de>
12983 L: netfilter-devel@vger.kernel.org
12984 L: coreteam@netfilter.org
12985 S: Maintained
12986 W: http://www.netfilter.org/
12987 W: http://www.iptables.org/
12988 W: http://www.nftables.org/
12989 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
12990 C: irc://irc.libera.chat/netfilter
12991 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12992 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12993 F: include/linux/netfilter*
12994 F: include/linux/netfilter/
12995 F: include/net/netfilter/
12996 F: include/uapi/linux/netfilter*
12997 F: include/uapi/linux/netfilter/
12998 F: net/*/netfilter.c
12999 F: net/*/netfilter/
13000 F: net/bridge/br_netfilter*.c
13001 F: net/netfilter/
13002
13003 NETROM NETWORK LAYER
13004 M: Ralf Baechle <ralf@linux-mips.org>
13005 L: linux-hams@vger.kernel.org
13006 S: Maintained
13007 W: http://www.linux-ax25.org/
13008 F: include/net/netrom.h
13009 F: include/uapi/linux/netrom.h
13010 F: net/netrom/
13011
13012 NETRONIX EMBEDDED CONTROLLER
13013 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13014 S: Maintained
13015 F: Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13016 F: drivers/mfd/ntxec.c
13017 F: drivers/pwm/pwm-ntxec.c
13018 F: drivers/rtc/rtc-ntxec.c
13019 F: include/linux/mfd/ntxec.h
13020
13021 NETRONOME ETHERNET DRIVERS
13022 M: Simon Horman <simon.horman@corigine.com>
13023 R: Jakub Kicinski <kuba@kernel.org>
13024 L: oss-drivers@corigine.com
13025 S: Maintained
13026 F: drivers/net/ethernet/netronome/
13027
13028 NETWORK BLOCK DEVICE (NBD)
13029 M: Josef Bacik <josef@toxicpanda.com>
13030 L: linux-block@vger.kernel.org
13031 L: nbd@other.debian.org
13032 S: Maintained
13033 F: Documentation/admin-guide/blockdev/nbd.rst
13034 F: drivers/block/nbd.c
13035 F: include/trace/events/nbd.h
13036 F: include/uapi/linux/nbd.h
13037
13038 NETWORK DROP MONITOR
13039 M: Neil Horman <nhorman@tuxdriver.com>
13040 L: netdev@vger.kernel.org
13041 S: Maintained
13042 W: https://fedorahosted.org/dropwatch/
13043 F: include/uapi/linux/net_dropmon.h
13044 F: net/core/drop_monitor.c
13045
13046 NETWORKING DRIVERS
13047 M: "David S. Miller" <davem@davemloft.net>
13048 M: Jakub Kicinski <kuba@kernel.org>
13049 L: netdev@vger.kernel.org
13050 S: Maintained
13051 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13052 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13053 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13054 F: Documentation/devicetree/bindings/net/
13055 F: drivers/connector/
13056 F: drivers/net/
13057 F: include/linux/etherdevice.h
13058 F: include/linux/fcdevice.h
13059 F: include/linux/fddidevice.h
13060 F: include/linux/hippidevice.h
13061 F: include/linux/if_*
13062 F: include/linux/inetdevice.h
13063 F: include/linux/netdevice.h
13064 F: include/uapi/linux/if_*
13065 F: include/uapi/linux/netdevice.h
13066
13067 NETWORKING DRIVERS (WIRELESS)
13068 M: Kalle Valo <kvalo@codeaurora.org>
13069 L: linux-wireless@vger.kernel.org
13070 S: Maintained
13071 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13072 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13073 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13074 F: Documentation/devicetree/bindings/net/wireless/
13075 F: drivers/net/wireless/
13076
13077 NETWORKING [DSA]
13078 M: Andrew Lunn <andrew@lunn.ch>
13079 M: Vivien Didelot <vivien.didelot@gmail.com>
13080 M: Florian Fainelli <f.fainelli@gmail.com>
13081 M: Vladimir Oltean <olteanv@gmail.com>
13082 S: Maintained
13083 F: Documentation/devicetree/bindings/net/dsa/
13084 F: drivers/net/dsa/
13085 F: include/linux/dsa/
13086 F: include/linux/platform_data/dsa.h
13087 F: include/net/dsa.h
13088 F: net/dsa/
13089
13090 NETWORKING [GENERAL]
13091 M: "David S. Miller" <davem@davemloft.net>
13092 M: Jakub Kicinski <kuba@kernel.org>
13093 L: netdev@vger.kernel.org
13094 S: Maintained
13095 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13096 B: mailto:netdev@vger.kernel.org
13097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13098 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13099 F: Documentation/networking/
13100 F: include/linux/in.h
13101 F: include/linux/net.h
13102 F: include/linux/netdevice.h
13103 F: include/net/
13104 F: include/uapi/linux/in.h
13105 F: include/uapi/linux/net.h
13106 F: include/uapi/linux/net_namespace.h
13107 F: include/uapi/linux/netdevice.h
13108 F: lib/net_utils.c
13109 F: lib/random32.c
13110 F: net/
13111 F: tools/testing/selftests/net/
13112
13113 NETWORKING [IPSEC]
13114 M: Steffen Klassert <steffen.klassert@secunet.com>
13115 M: Herbert Xu <herbert@gondor.apana.org.au>
13116 M: "David S. Miller" <davem@davemloft.net>
13117 L: netdev@vger.kernel.org
13118 S: Maintained
13119 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13120 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13121 F: include/net/xfrm.h
13122 F: include/uapi/linux/xfrm.h
13123 F: net/ipv4/ah4.c
13124 F: net/ipv4/esp4*
13125 F: net/ipv4/ip_vti.c
13126 F: net/ipv4/ipcomp.c
13127 F: net/ipv4/xfrm*
13128 F: net/ipv6/ah6.c
13129 F: net/ipv6/esp6*
13130 F: net/ipv6/ip6_vti.c
13131 F: net/ipv6/ipcomp6.c
13132 F: net/ipv6/xfrm*
13133 F: net/key/
13134 F: net/xfrm/
13135 F: tools/testing/selftests/net/ipsec.c
13136
13137 NETWORKING [IPv4/IPv6]
13138 M: "David S. Miller" <davem@davemloft.net>
13139 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13140 M: David Ahern <dsahern@kernel.org>
13141 L: netdev@vger.kernel.org
13142 S: Maintained
13143 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13144 F: arch/x86/net/*
13145 F: include/net/ip*
13146 F: net/ipv4/
13147 F: net/ipv6/
13148
13149 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13150 M: Paul Moore <paul@paul-moore.com>
13151 L: netdev@vger.kernel.org
13152 L: linux-security-module@vger.kernel.org
13153 S: Maintained
13154 W: https://github.com/netlabel
13155 F: Documentation/netlabel/
13156 F: include/net/calipso.h
13157 F: include/net/cipso_ipv4.h
13158 F: include/net/netlabel.h
13159 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
13160 F: include/uapi/linux/netfilter/xt_SECMARK.h
13161 F: net/ipv4/cipso_ipv4.c
13162 F: net/ipv6/calipso.c
13163 F: net/netfilter/xt_CONNSECMARK.c
13164 F: net/netfilter/xt_SECMARK.c
13165 F: net/netlabel/
13166
13167 NETWORKING [MPTCP]
13168 M: Mat Martineau <mathew.j.martineau@linux.intel.com>
13169 M: Matthieu Baerts <matthieu.baerts@tessares.net>
13170 L: netdev@vger.kernel.org
13171 L: mptcp@lists.linux.dev
13172 S: Maintained
13173 W: https://github.com/multipath-tcp/mptcp_net-next/wiki
13174 B: https://github.com/multipath-tcp/mptcp_net-next/issues
13175 F: Documentation/networking/mptcp-sysctl.rst
13176 F: include/net/mptcp.h
13177 F: include/trace/events/mptcp.h
13178 F: include/uapi/linux/mptcp.h
13179 F: net/mptcp/
13180 F: tools/testing/selftests/net/mptcp/
13181
13182 NETWORKING [TCP]
13183 M: Eric Dumazet <edumazet@google.com>
13184 L: netdev@vger.kernel.org
13185 S: Maintained
13186 F: include/linux/tcp.h
13187 F: include/net/tcp.h
13188 F: include/trace/events/tcp.h
13189 F: include/uapi/linux/tcp.h
13190 F: net/ipv4/syncookies.c
13191 F: net/ipv4/tcp*.c
13192 F: net/ipv6/syncookies.c
13193 F: net/ipv6/tcp*.c
13194
13195 NETWORKING [TLS]
13196 M: Boris Pismenny <borisp@nvidia.com>
13197 M: John Fastabend <john.fastabend@gmail.com>
13198 M: Daniel Borkmann <daniel@iogearbox.net>
13199 M: Jakub Kicinski <kuba@kernel.org>
13200 L: netdev@vger.kernel.org
13201 S: Maintained
13202 F: include/net/tls.h
13203 F: include/uapi/linux/tls.h
13204 F: net/tls/*
13205
13206 NETWORKING [WIRELESS]
13207 L: linux-wireless@vger.kernel.org
13208 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13209
13210 NETXEN (1/10) GbE SUPPORT
13211 M: Manish Chopra <manishc@marvell.com>
13212 M: Rahul Verma <rahulv@marvell.com>
13213 M: GR-Linux-NIC-Dev@marvell.com
13214 L: netdev@vger.kernel.org
13215 S: Supported
13216 F: drivers/net/ethernet/qlogic/netxen/
13217
13218 NET_FAILOVER MODULE
13219 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
13220 L: netdev@vger.kernel.org
13221 S: Supported
13222 F: Documentation/networking/net_failover.rst
13223 F: drivers/net/net_failover.c
13224 F: include/net/net_failover.h
13225
13226 NEXTHOP
13227 M: David Ahern <dsahern@kernel.org>
13228 L: netdev@vger.kernel.org
13229 S: Maintained
13230 F: include/net/netns/nexthop.h
13231 F: include/net/nexthop.h
13232 F: include/uapi/linux/nexthop.h
13233 F: net/ipv4/nexthop.c
13234
13235 NFC SUBSYSTEM
13236 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13237 L: linux-nfc@lists.01.org (subscribers-only)
13238 L: netdev@vger.kernel.org
13239 S: Maintained
13240 F: Documentation/devicetree/bindings/net/nfc/
13241 F: drivers/nfc/
13242 F: include/linux/platform_data/nfcmrvl.h
13243 F: include/net/nfc/
13244 F: include/uapi/linux/nfc.h
13245 F: net/nfc/
13246
13247 NFC VIRTUAL NCI DEVICE DRIVER
13248 M: Bongsu Jeon <bongsu.jeon@samsung.com>
13249 L: netdev@vger.kernel.org
13250 L: linux-nfc@lists.01.org (subscribers-only)
13251 S: Supported
13252 F: drivers/nfc/virtual_ncidev.c
13253 F: tools/testing/selftests/nci/
13254
13255 NFS, SUNRPC, AND LOCKD CLIENTS
13256 M: Trond Myklebust <trond.myklebust@hammerspace.com>
13257 M: Anna Schumaker <anna.schumaker@netapp.com>
13258 L: linux-nfs@vger.kernel.org
13259 S: Maintained
13260 W: http://client.linux-nfs.org
13261 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13262 F: fs/lockd/
13263 F: fs/nfs/
13264 F: fs/nfs_common/
13265 F: include/linux/lockd/
13266 F: include/linux/nfs*
13267 F: include/linux/sunrpc/
13268 F: include/uapi/linux/nfs*
13269 F: include/uapi/linux/sunrpc/
13270 F: net/sunrpc/
13271 F: Documentation/filesystems/nfs/
13272
13273 NILFS2 FILESYSTEM
13274 M: Ryusuke Konishi <konishi.ryusuke@gmail.com>
13275 L: linux-nilfs@vger.kernel.org
13276 S: Supported
13277 W: https://nilfs.sourceforge.io/
13278 W: https://nilfs.osdn.jp/
13279 T: git git://github.com/konis/nilfs2.git
13280 F: Documentation/filesystems/nilfs2.rst
13281 F: fs/nilfs2/
13282 F: include/trace/events/nilfs2.h
13283 F: include/uapi/linux/nilfs2_api.h
13284 F: include/uapi/linux/nilfs2_ondisk.h
13285
13286 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13287 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13288 S: Maintained
13289 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13290 F: Documentation/scsi/NinjaSCSI.rst
13291 F: drivers/scsi/pcmcia/nsp_*
13292
13293 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13294 M: GOTO Masanori <gotom@debian.or.jp>
13295 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13296 S: Maintained
13297 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13298 F: Documentation/scsi/NinjaSCSI.rst
13299 F: drivers/scsi/nsp32*
13300
13301 NIOS2 ARCHITECTURE
13302 M: Dinh Nguyen <dinguyen@kernel.org>
13303 S: Maintained
13304 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13305 F: arch/nios2/
13306
13307 NITRO ENCLAVES (NE)
13308 M: Andra Paraschiv <andraprs@amazon.com>
13309 M: Alexandru Vasile <lexnv@amazon.com>
13310 M: Alexandru Ciobotaru <alcioa@amazon.com>
13311 L: linux-kernel@vger.kernel.org
13312 S: Supported
13313 W: https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13314 F: Documentation/virt/ne_overview.rst
13315 F: drivers/virt/nitro_enclaves/
13316 F: include/linux/nitro_enclaves.h
13317 F: include/uapi/linux/nitro_enclaves.h
13318 F: samples/nitro_enclaves/
13319
13320 NOHZ, DYNTICKS SUPPORT
13321 M: Frederic Weisbecker <fweisbec@gmail.com>
13322 M: Thomas Gleixner <tglx@linutronix.de>
13323 M: Ingo Molnar <mingo@kernel.org>
13324 L: linux-kernel@vger.kernel.org
13325 S: Maintained
13326 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13327 F: include/linux/sched/nohz.h
13328 F: include/linux/tick.h
13329 F: kernel/time/tick*.*
13330
13331 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13332 M: Pavel Machek <pavel@ucw.cz>
13333 M: Sakari Ailus <sakari.ailus@iki.fi>
13334 L: linux-media@vger.kernel.org
13335 S: Maintained
13336 F: drivers/media/i2c/ad5820.c
13337 F: drivers/media/i2c/et8ek8
13338
13339 NOKIA N900 POWER SUPPLY DRIVERS
13340 R: Pali Rohár <pali@kernel.org>
13341 F: drivers/power/supply/bq2415x_charger.c
13342 F: drivers/power/supply/bq27xxx_battery.c
13343 F: drivers/power/supply/bq27xxx_battery_i2c.c
13344 F: drivers/power/supply/isp1704_charger.c
13345 F: drivers/power/supply/rx51_battery.c
13346 F: include/linux/power/bq2415x_charger.h
13347 F: include/linux/power/bq27xxx_battery.h
13348
13349 NOLIBC HEADER FILE
13350 M: Willy Tarreau <w@1wt.eu>
13351 S: Maintained
13352 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13353 F: tools/include/nolibc/
13354
13355 NSDEPS
13356 M: Matthias Maennich <maennich@google.com>
13357 S: Maintained
13358 F: Documentation/core-api/symbol-namespaces.rst
13359 F: scripts/nsdeps
13360
13361 NTB AMD DRIVER
13362 M: Sanjay R Mehta <sanju.mehta@amd.com>
13363 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13364 L: linux-ntb@googlegroups.com
13365 S: Supported
13366 F: drivers/ntb/hw/amd/
13367
13368 NTB DRIVER CORE
13369 M: Jon Mason <jdmason@kudzu.us>
13370 M: Dave Jiang <dave.jiang@intel.com>
13371 M: Allen Hubbe <allenbh@gmail.com>
13372 L: linux-ntb@googlegroups.com
13373 S: Supported
13374 W: https://github.com/jonmason/ntb/wiki
13375 T: git git://github.com/jonmason/ntb.git
13376 F: drivers/net/ntb_netdev.c
13377 F: drivers/ntb/
13378 F: include/linux/ntb.h
13379 F: include/linux/ntb_transport.h
13380 F: tools/testing/selftests/ntb/
13381
13382 NTB IDT DRIVER
13383 M: Serge Semin <fancer.lancer@gmail.com>
13384 L: linux-ntb@googlegroups.com
13385 S: Supported
13386 F: drivers/ntb/hw/idt/
13387
13388 NTB INTEL DRIVER
13389 M: Dave Jiang <dave.jiang@intel.com>
13390 L: linux-ntb@googlegroups.com
13391 S: Supported
13392 W: https://github.com/davejiang/linux/wiki
13393 T: git https://github.com/davejiang/linux.git
13394 F: drivers/ntb/hw/intel/
13395
13396 NTFS FILESYSTEM
13397 M: Anton Altaparmakov <anton@tuxera.com>
13398 L: linux-ntfs-dev@lists.sourceforge.net
13399 S: Supported
13400 W: http://www.tuxera.com/
13401 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13402 F: Documentation/filesystems/ntfs.rst
13403 F: fs/ntfs/
13404
13405 NTFS3 FILESYSTEM
13406 M: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13407 L: ntfs3@lists.linux.dev
13408 S: Supported
13409 W: http://www.paragon-software.com/
13410 T: git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13411 F: Documentation/filesystems/ntfs3.rst
13412 F: fs/ntfs3/
13413
13414 NUBUS SUBSYSTEM
13415 M: Finn Thain <fthain@linux-m68k.org>
13416 L: linux-m68k@lists.linux-m68k.org
13417 S: Maintained
13418 F: arch/*/include/asm/nubus.h
13419 F: drivers/nubus/
13420 F: include/linux/nubus.h
13421 F: include/uapi/linux/nubus.h
13422
13423 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13424 M: Antonino Daplas <adaplas@gmail.com>
13425 L: linux-fbdev@vger.kernel.org
13426 S: Maintained
13427 F: drivers/video/fbdev/nvidia/
13428 F: drivers/video/fbdev/riva/
13429
13430 NVIDIA WMI EC BACKLIGHT DRIVER
13431 M: Daniel Dadap <ddadap@nvidia.com>
13432 L: platform-driver-x86@vger.kernel.org
13433 S: Supported
13434 F: drivers/platform/x86/nvidia-wmi-ec-backlight.c
13435
13436 NVM EXPRESS DRIVER
13437 M: Keith Busch <kbusch@kernel.org>
13438 M: Jens Axboe <axboe@fb.com>
13439 M: Christoph Hellwig <hch@lst.de>
13440 M: Sagi Grimberg <sagi@grimberg.me>
13441 L: linux-nvme@lists.infradead.org
13442 S: Supported
13443 W: http://git.infradead.org/nvme.git
13444 T: git://git.infradead.org/nvme.git
13445 F: drivers/nvme/host/
13446 F: include/linux/nvme.h
13447 F: include/uapi/linux/nvme_ioctl.h
13448
13449 NVM EXPRESS FC TRANSPORT DRIVERS
13450 M: James Smart <james.smart@broadcom.com>
13451 L: linux-nvme@lists.infradead.org
13452 S: Supported
13453 F: drivers/nvme/host/fc.c
13454 F: drivers/nvme/target/fc.c
13455 F: drivers/nvme/target/fcloop.c
13456 F: include/linux/nvme-fc-driver.h
13457 F: include/linux/nvme-fc.h
13458
13459 NVM EXPRESS TARGET DRIVER
13460 M: Christoph Hellwig <hch@lst.de>
13461 M: Sagi Grimberg <sagi@grimberg.me>
13462 M: Chaitanya Kulkarni <kch@nvidia.com>
13463 L: linux-nvme@lists.infradead.org
13464 S: Supported
13465 W: http://git.infradead.org/nvme.git
13466 T: git://git.infradead.org/nvme.git
13467 F: drivers/nvme/target/
13468
13469 NVMEM FRAMEWORK
13470 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13471 S: Maintained
13472 T: git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13473 F: Documentation/ABI/stable/sysfs-bus-nvmem
13474 F: Documentation/devicetree/bindings/nvmem/
13475 F: drivers/nvmem/
13476 F: include/linux/nvmem-consumer.h
13477 F: include/linux/nvmem-provider.h
13478
13479 NXP C45 TJA11XX PHY DRIVER
13480 M: Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13481 L: netdev@vger.kernel.org
13482 S: Maintained
13483 F: drivers/net/phy/nxp-c45-tja11xx.c
13484
13485 NXP FSPI DRIVER
13486 M: Ashish Kumar <ashish.kumar@nxp.com>
13487 R: Yogesh Gaur <yogeshgaur.83@gmail.com>
13488 L: linux-spi@vger.kernel.org
13489 S: Maintained
13490 F: Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13491 F: drivers/spi/spi-nxp-fspi.c
13492
13493 NXP FXAS21002C DRIVER
13494 M: Rui Miguel Silva <rmfrfs@gmail.com>
13495 L: linux-iio@vger.kernel.org
13496 S: Maintained
13497 F: Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13498 F: drivers/iio/gyro/fxas21002c.h
13499 F: drivers/iio/gyro/fxas21002c_core.c
13500 F: drivers/iio/gyro/fxas21002c_i2c.c
13501 F: drivers/iio/gyro/fxas21002c_spi.c
13502
13503 NXP i.MX CLOCK DRIVERS
13504 M: Abel Vesa <abel.vesa@nxp.com>
13505 L: linux-clk@vger.kernel.org
13506 L: linux-imx@nxp.com
13507 S: Maintained
13508 F: drivers/clk/imx/
13509
13510 NXP i.MX 8MQ DCSS DRIVER
13511 M: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13512 R: Lucas Stach <l.stach@pengutronix.de>
13513 L: dri-devel@lists.freedesktop.org
13514 S: Maintained
13515 F: Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13516 F: drivers/gpu/drm/imx/dcss/
13517
13518 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13519 M: Jagan Teki <jagan@amarulasolutions.com>
13520 S: Maintained
13521 F: Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13522 F: drivers/regulator/pf8x00-regulator.c
13523
13524 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13525 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13526 L: linux-kernel@vger.kernel.org
13527 S: Maintained
13528 F: Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13529 F: drivers/extcon/extcon-ptn5150.c
13530
13531 NXP SGTL5000 DRIVER
13532 M: Fabio Estevam <festevam@gmail.com>
13533 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13534 S: Maintained
13535 F: Documentation/devicetree/bindings/sound/sgtl5000.yaml
13536 F: sound/soc/codecs/sgtl5000*
13537
13538 NXP SJA1105 ETHERNET SWITCH DRIVER
13539 M: Vladimir Oltean <olteanv@gmail.com>
13540 L: linux-kernel@vger.kernel.org
13541 S: Maintained
13542 F: drivers/net/dsa/sja1105
13543 F: drivers/net/pcs/pcs-xpcs-nxp.c
13544
13545 NXP TDA998X DRM DRIVER
13546 M: Russell King <linux@armlinux.org.uk>
13547 S: Maintained
13548 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13549 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13550 F: drivers/gpu/drm/i2c/tda998x_drv.c
13551 F: include/drm/i2c/tda998x.h
13552 F: include/dt-bindings/display/tda998x.h
13553 K: "nxp,tda998x"
13554
13555 NXP TFA9879 DRIVER
13556 M: Peter Rosin <peda@axentia.se>
13557 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13558 S: Maintained
13559 F: Documentation/devicetree/bindings/sound/tfa9879.txt
13560 F: sound/soc/codecs/tfa9879*
13561
13562 NXP/Goodix TFA989X (TFA1) DRIVER
13563 M: Stephan Gerhold <stephan@gerhold.net>
13564 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13565 S: Maintained
13566 F: Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13567 F: sound/soc/codecs/tfa989x.c
13568
13569 NXP-NCI NFC DRIVER
13570 R: Charles Gorand <charles.gorand@effinnov.com>
13571 L: linux-nfc@lists.01.org (subscribers-only)
13572 S: Supported
13573 F: drivers/nfc/nxp-nci
13574
13575 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13576 M: Mirela Rabulea <mirela.rabulea@nxp.com>
13577 R: NXP Linux Team <linux-imx@nxp.com>
13578 L: linux-media@vger.kernel.org
13579 S: Maintained
13580 F: Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13581 F: drivers/media/platform/imx-jpeg
13582
13583 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13584 M: Jonas Malaco <jonas@protocubo.io>
13585 L: linux-hwmon@vger.kernel.org
13586 S: Maintained
13587 F: Documentation/hwmon/nzxt-kraken2.rst
13588 F: drivers/hwmon/nzxt-kraken2.c
13589
13590 OBJAGG
13591 M: Jiri Pirko <jiri@nvidia.com>
13592 L: netdev@vger.kernel.org
13593 S: Supported
13594 F: include/linux/objagg.h
13595 F: lib/objagg.c
13596 F: lib/test_objagg.c
13597
13598 OBJTOOL
13599 M: Josh Poimboeuf <jpoimboe@redhat.com>
13600 M: Peter Zijlstra <peterz@infradead.org>
13601 S: Supported
13602 F: tools/objtool/
13603 F: include/linux/objtool.h
13604
13605 OCELOT ETHERNET SWITCH DRIVER
13606 M: Vladimir Oltean <vladimir.oltean@nxp.com>
13607 M: Claudiu Manoil <claudiu.manoil@nxp.com>
13608 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
13609 M: UNGLinuxDriver@microchip.com
13610 L: netdev@vger.kernel.org
13611 S: Supported
13612 F: drivers/net/dsa/ocelot/*
13613 F: drivers/net/ethernet/mscc/
13614 F: include/soc/mscc/ocelot*
13615 F: net/dsa/tag_ocelot.c
13616 F: net/dsa/tag_ocelot_8021q.c
13617 F: tools/testing/selftests/drivers/net/ocelot/*
13618
13619 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13620 M: Frederic Barrat <fbarrat@linux.ibm.com>
13621 M: Andrew Donnellan <ajd@linux.ibm.com>
13622 L: linuxppc-dev@lists.ozlabs.org
13623 S: Supported
13624 F: Documentation/userspace-api/accelerators/ocxl.rst
13625 F: arch/powerpc/include/asm/pnv-ocxl.h
13626 F: arch/powerpc/platforms/powernv/ocxl.c
13627 F: drivers/misc/ocxl/
13628 F: include/misc/ocxl*
13629 F: include/uapi/misc/ocxl.h
13630
13631 OMAP AUDIO SUPPORT
13632 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
13633 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
13634 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13635 L: linux-omap@vger.kernel.org
13636 S: Maintained
13637 F: sound/soc/ti/n810.c
13638 F: sound/soc/ti/omap*
13639 F: sound/soc/ti/rx51.c
13640 F: sound/soc/ti/sdma-pcm.*
13641
13642 OMAP CLOCK FRAMEWORK SUPPORT
13643 M: Paul Walmsley <paul@pwsan.com>
13644 L: linux-omap@vger.kernel.org
13645 S: Maintained
13646 F: arch/arm/*omap*/*clock*
13647
13648 OMAP DEVICE TREE SUPPORT
13649 M: Benoît Cousson <bcousson@baylibre.com>
13650 M: Tony Lindgren <tony@atomide.com>
13651 L: linux-omap@vger.kernel.org
13652 L: devicetree@vger.kernel.org
13653 S: Maintained
13654 F: arch/arm/boot/dts/*am3*
13655 F: arch/arm/boot/dts/*am4*
13656 F: arch/arm/boot/dts/*am5*
13657 F: arch/arm/boot/dts/*dra7*
13658 F: arch/arm/boot/dts/*omap*
13659 F: arch/arm/boot/dts/logicpd-som-lv*
13660 F: arch/arm/boot/dts/logicpd-torpedo*
13661
13662 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13663 L: linux-omap@vger.kernel.org
13664 L: linux-fbdev@vger.kernel.org
13665 S: Orphan
13666 F: Documentation/arm/omap/dss.rst
13667 F: drivers/video/fbdev/omap2/
13668
13669 OMAP FRAMEBUFFER SUPPORT
13670 L: linux-fbdev@vger.kernel.org
13671 L: linux-omap@vger.kernel.org
13672 S: Orphan
13673 F: drivers/video/fbdev/omap/
13674
13675 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13676 M: Roger Quadros <rogerq@kernel.org>
13677 M: Tony Lindgren <tony@atomide.com>
13678 L: linux-omap@vger.kernel.org
13679 S: Maintained
13680 F: arch/arm/mach-omap2/*gpmc*
13681 F: drivers/memory/omap-gpmc.c
13682
13683 OMAP GPIO DRIVER
13684 M: Grygorii Strashko <grygorii.strashko@ti.com>
13685 M: Santosh Shilimkar <ssantosh@kernel.org>
13686 M: Kevin Hilman <khilman@kernel.org>
13687 L: linux-omap@vger.kernel.org
13688 S: Maintained
13689 F: Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13690 F: drivers/gpio/gpio-omap.c
13691
13692 OMAP HARDWARE SPINLOCK SUPPORT
13693 M: Ohad Ben-Cohen <ohad@wizery.com>
13694 L: linux-omap@vger.kernel.org
13695 S: Maintained
13696 F: drivers/hwspinlock/omap_hwspinlock.c
13697
13698 OMAP HS MMC SUPPORT
13699 L: linux-mmc@vger.kernel.org
13700 L: linux-omap@vger.kernel.org
13701 S: Orphan
13702 F: drivers/mmc/host/omap_hsmmc.c
13703
13704 OMAP HWMOD DATA
13705 M: Paul Walmsley <paul@pwsan.com>
13706 L: linux-omap@vger.kernel.org
13707 S: Maintained
13708 F: arch/arm/mach-omap2/omap_hwmod*data*
13709
13710 OMAP HWMOD SUPPORT
13711 M: Benoît Cousson <bcousson@baylibre.com>
13712 M: Paul Walmsley <paul@pwsan.com>
13713 L: linux-omap@vger.kernel.org
13714 S: Maintained
13715 F: arch/arm/mach-omap2/omap_hwmod.*
13716
13717 OMAP I2C DRIVER
13718 M: Vignesh R <vigneshr@ti.com>
13719 L: linux-omap@vger.kernel.org
13720 L: linux-i2c@vger.kernel.org
13721 S: Maintained
13722 F: Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13723 F: drivers/i2c/busses/i2c-omap.c
13724
13725 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13726 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13727 L: linux-media@vger.kernel.org
13728 S: Maintained
13729 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
13730 F: drivers/media/platform/omap3isp/
13731 F: drivers/staging/media/omap4iss/
13732
13733 OMAP MMC SUPPORT
13734 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13735 L: linux-omap@vger.kernel.org
13736 S: Odd Fixes
13737 F: drivers/mmc/host/omap.c
13738
13739 OMAP POWER MANAGEMENT SUPPORT
13740 M: Kevin Hilman <khilman@kernel.org>
13741 L: linux-omap@vger.kernel.org
13742 S: Maintained
13743 F: arch/arm/*omap*/*pm*
13744 F: drivers/cpufreq/omap-cpufreq.c
13745
13746 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13747 M: Rajendra Nayak <rnayak@codeaurora.org>
13748 M: Paul Walmsley <paul@pwsan.com>
13749 L: linux-omap@vger.kernel.org
13750 S: Maintained
13751 F: arch/arm/mach-omap2/prm*
13752
13753 OMAP RANDOM NUMBER GENERATOR SUPPORT
13754 M: Deepak Saxena <dsaxena@plexity.net>
13755 S: Maintained
13756 F: drivers/char/hw_random/omap-rng.c
13757
13758 OMAP USB SUPPORT
13759 L: linux-usb@vger.kernel.org
13760 L: linux-omap@vger.kernel.org
13761 S: Orphan
13762 F: arch/arm/*omap*/usb*
13763 F: drivers/usb/*/*omap*
13764
13765 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13766 M: Mark Jackson <mpfj@newflow.co.uk>
13767 L: linux-omap@vger.kernel.org
13768 S: Maintained
13769 F: arch/arm/boot/dts/am335x-nano.dts
13770
13771 OMAP1 SUPPORT
13772 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13773 M: Tony Lindgren <tony@atomide.com>
13774 L: linux-omap@vger.kernel.org
13775 S: Maintained
13776 Q: http://patchwork.kernel.org/project/linux-omap/list/
13777 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13778 F: arch/arm/configs/omap1_defconfig
13779 F: arch/arm/mach-omap1/
13780 F: arch/arm/plat-omap/
13781 F: drivers/i2c/busses/i2c-omap.c
13782 F: include/linux/platform_data/ams-delta-fiq.h
13783 F: include/linux/platform_data/i2c-omap.h
13784
13785 OMAP2+ SUPPORT
13786 M: Tony Lindgren <tony@atomide.com>
13787 L: linux-omap@vger.kernel.org
13788 S: Maintained
13789 W: http://www.muru.com/linux/omap/
13790 W: http://linux.omap.com/
13791 Q: http://patchwork.kernel.org/project/linux-omap/list/
13792 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13793 F: arch/arm/configs/omap2plus_defconfig
13794 F: arch/arm/mach-omap2/
13795 F: arch/arm/plat-omap/
13796 F: drivers/bus/ti-sysc.c
13797 F: drivers/i2c/busses/i2c-omap.c
13798 F: drivers/irqchip/irq-omap-intc.c
13799 F: drivers/mfd/*omap*.c
13800 F: drivers/mfd/menelaus.c
13801 F: drivers/mfd/palmas.c
13802 F: drivers/mfd/tps65217.c
13803 F: drivers/mfd/tps65218.c
13804 F: drivers/mfd/tps65910.c
13805 F: drivers/mfd/twl-core.[ch]
13806 F: drivers/mfd/twl4030*.c
13807 F: drivers/mfd/twl6030*.c
13808 F: drivers/mfd/twl6040*.c
13809 F: drivers/regulator/palmas-regulator*.c
13810 F: drivers/regulator/pbias-regulator.c
13811 F: drivers/regulator/tps65217-regulator.c
13812 F: drivers/regulator/tps65218-regulator.c
13813 F: drivers/regulator/tps65910-regulator.c
13814 F: drivers/regulator/twl-regulator.c
13815 F: drivers/regulator/twl6030-regulator.c
13816 F: include/linux/platform_data/i2c-omap.h
13817 F: include/linux/platform_data/ti-sysc.h
13818
13819 OMFS FILESYSTEM
13820 M: Bob Copeland <me@bobcopeland.com>
13821 L: linux-karma-devel@lists.sourceforge.net
13822 S: Maintained
13823 F: Documentation/filesystems/omfs.rst
13824 F: fs/omfs/
13825
13826 OMNIKEY CARDMAN 4000 DRIVER
13827 M: Harald Welte <laforge@gnumonks.org>
13828 S: Maintained
13829 F: drivers/char/pcmcia/cm4000_cs.c
13830 F: include/linux/cm4000_cs.h
13831 F: include/uapi/linux/cm4000_cs.h
13832
13833 OMNIKEY CARDMAN 4040 DRIVER
13834 M: Harald Welte <laforge@gnumonks.org>
13835 S: Maintained
13836 F: drivers/char/pcmcia/cm4040_cs.*
13837
13838 OMNIVISION OV02A10 SENSOR DRIVER
13839 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13840 L: linux-media@vger.kernel.org
13841 S: Maintained
13842 T: git git://linuxtv.org/media_tree.git
13843 F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13844 F: drivers/media/i2c/ov02a10.c
13845
13846 OMNIVISION OV13858 SENSOR DRIVER
13847 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13848 L: linux-media@vger.kernel.org
13849 S: Maintained
13850 T: git git://linuxtv.org/media_tree.git
13851 F: drivers/media/i2c/ov13858.c
13852
13853 OMNIVISION OV2680 SENSOR DRIVER
13854 M: Rui Miguel Silva <rmfrfs@gmail.com>
13855 L: linux-media@vger.kernel.org
13856 S: Maintained
13857 T: git git://linuxtv.org/media_tree.git
13858 F: Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13859 F: drivers/media/i2c/ov2680.c
13860
13861 OMNIVISION OV2685 SENSOR DRIVER
13862 M: Shunqian Zheng <zhengsq@rock-chips.com>
13863 L: linux-media@vger.kernel.org
13864 S: Maintained
13865 T: git git://linuxtv.org/media_tree.git
13866 F: drivers/media/i2c/ov2685.c
13867
13868 OMNIVISION OV2740 SENSOR DRIVER
13869 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13870 R: Shawn Tu <shawnx.tu@intel.com>
13871 R: Bingbu Cao <bingbu.cao@intel.com>
13872 L: linux-media@vger.kernel.org
13873 S: Maintained
13874 T: git git://linuxtv.org/media_tree.git
13875 F: drivers/media/i2c/ov2740.c
13876
13877 OMNIVISION OV5640 SENSOR DRIVER
13878 M: Steve Longerbeam <slongerbeam@gmail.com>
13879 L: linux-media@vger.kernel.org
13880 S: Maintained
13881 T: git git://linuxtv.org/media_tree.git
13882 F: drivers/media/i2c/ov5640.c
13883
13884 OMNIVISION OV5647 SENSOR DRIVER
13885 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
13886 M: Jacopo Mondi <jacopo@jmondi.org>
13887 L: linux-media@vger.kernel.org
13888 S: Maintained
13889 T: git git://linuxtv.org/media_tree.git
13890 F: Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13891 F: drivers/media/i2c/ov5647.c
13892
13893 OMNIVISION OV5670 SENSOR DRIVER
13894 M: Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13895 M: Hyungwoo Yang <hyungwoo.yang@intel.com>
13896 L: linux-media@vger.kernel.org
13897 S: Maintained
13898 T: git git://linuxtv.org/media_tree.git
13899 F: drivers/media/i2c/ov5670.c
13900
13901 OMNIVISION OV5675 SENSOR DRIVER
13902 M: Shawn Tu <shawnx.tu@intel.com>
13903 L: linux-media@vger.kernel.org
13904 S: Maintained
13905 T: git git://linuxtv.org/media_tree.git
13906 F: drivers/media/i2c/ov5675.c
13907
13908 OMNIVISION OV5695 SENSOR DRIVER
13909 M: Shunqian Zheng <zhengsq@rock-chips.com>
13910 L: linux-media@vger.kernel.org
13911 S: Maintained
13912 T: git git://linuxtv.org/media_tree.git
13913 F: drivers/media/i2c/ov5695.c
13914
13915 OMNIVISION OV7670 SENSOR DRIVER
13916 L: linux-media@vger.kernel.org
13917 S: Orphan
13918 T: git git://linuxtv.org/media_tree.git
13919 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
13920 F: drivers/media/i2c/ov7670.c
13921
13922 OMNIVISION OV772x SENSOR DRIVER
13923 M: Jacopo Mondi <jacopo@jmondi.org>
13924 L: linux-media@vger.kernel.org
13925 S: Odd fixes
13926 T: git git://linuxtv.org/media_tree.git
13927 F: Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13928 F: drivers/media/i2c/ov772x.c
13929 F: include/media/i2c/ov772x.h
13930
13931 OMNIVISION OV7740 SENSOR DRIVER
13932 M: Wenyou Yang <wenyou.yang@microchip.com>
13933 L: linux-media@vger.kernel.org
13934 S: Maintained
13935 T: git git://linuxtv.org/media_tree.git
13936 F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
13937 F: drivers/media/i2c/ov7740.c
13938
13939 OMNIVISION OV8856 SENSOR DRIVER
13940 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13941 L: linux-media@vger.kernel.org
13942 S: Maintained
13943 T: git git://linuxtv.org/media_tree.git
13944 F: Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13945 F: drivers/media/i2c/ov8856.c
13946
13947 OMNIVISION OV9282 SENSOR DRIVER
13948 M: Paul J. Murphy <paul.j.murphy@intel.com>
13949 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
13950 L: linux-media@vger.kernel.org
13951 S: Maintained
13952 T: git git://linuxtv.org/media_tree.git
13953 F: Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
13954 F: drivers/media/i2c/ov9282.c
13955
13956 OMNIVISION OV9640 SENSOR DRIVER
13957 M: Petr Cvek <petrcvekcz@gmail.com>
13958 L: linux-media@vger.kernel.org
13959 S: Maintained
13960 F: drivers/media/i2c/ov9640.*
13961
13962 OMNIVISION OV9650 SENSOR DRIVER
13963 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13964 R: Akinobu Mita <akinobu.mita@gmail.com>
13965 R: Sylwester Nawrocki <s.nawrocki@samsung.com>
13966 L: linux-media@vger.kernel.org
13967 S: Maintained
13968 T: git git://linuxtv.org/media_tree.git
13969 F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
13970 F: drivers/media/i2c/ov9650.c
13971
13972 OMNIVISION OV9734 SENSOR DRIVER
13973 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13974 R: Bingbu Cao <bingbu.cao@intel.com>
13975 L: linux-media@vger.kernel.org
13976 S: Maintained
13977 T: git git://linuxtv.org/media_tree.git
13978 F: drivers/media/i2c/ov9734.c
13979
13980 ONENAND FLASH DRIVER
13981 M: Kyungmin Park <kyungmin.park@samsung.com>
13982 L: linux-mtd@lists.infradead.org
13983 S: Maintained
13984 F: drivers/mtd/nand/onenand/
13985 F: include/linux/mtd/onenand*.h
13986
13987 ONION OMEGA2+ BOARD
13988 M: Harvey Hunt <harveyhuntnexus@gmail.com>
13989 L: linux-mips@vger.kernel.org
13990 S: Maintained
13991 F: arch/mips/boot/dts/ralink/omega2p.dts
13992
13993 OP-TEE DRIVER
13994 M: Jens Wiklander <jens.wiklander@linaro.org>
13995 L: op-tee@lists.trustedfirmware.org
13996 S: Maintained
13997 F: Documentation/ABI/testing/sysfs-bus-optee-devices
13998 F: drivers/tee/optee/
13999
14000 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14001 M: Sumit Garg <sumit.garg@linaro.org>
14002 L: op-tee@lists.trustedfirmware.org
14003 S: Maintained
14004 F: drivers/char/hw_random/optee-rng.c
14005
14006 OPA-VNIC DRIVER
14007 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14008 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14009 L: linux-rdma@vger.kernel.org
14010 S: Supported
14011 F: drivers/infiniband/ulp/opa_vnic
14012
14013 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14014 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14015 M: Frank Rowand <frowand.list@gmail.com>
14016 L: devicetree@vger.kernel.org
14017 S: Maintained
14018 F: Documentation/devicetree/dynamic-resolution-notes.rst
14019 F: Documentation/devicetree/overlay-notes.rst
14020 F: drivers/of/overlay.c
14021 F: drivers/of/resolver.c
14022 K: of_overlay_notifier_
14023
14024 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14025 M: Rob Herring <robh+dt@kernel.org>
14026 M: Frank Rowand <frowand.list@gmail.com>
14027 L: devicetree@vger.kernel.org
14028 S: Maintained
14029 W: http://www.devicetree.org/
14030 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14031 F: Documentation/ABI/testing/sysfs-firmware-ofw
14032 F: drivers/of/
14033 F: include/linux/of*.h
14034 F: scripts/dtc/
14035
14036 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14037 M: Rob Herring <robh+dt@kernel.org>
14038 L: devicetree@vger.kernel.org
14039 S: Maintained
14040 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14041 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14042 F: Documentation/devicetree/
14043 F: arch/*/boot/dts/
14044 F: include/dt-bindings/
14045
14046 OPENCOMPUTE PTP CLOCK DRIVER
14047 M: Jonathan Lemon <jonathan.lemon@gmail.com>
14048 L: netdev@vger.kernel.org
14049 S: Maintained
14050 F: drivers/ptp/ptp_ocp.c
14051
14052 OPENCORES I2C BUS DRIVER
14053 M: Peter Korsgaard <peter@korsgaard.com>
14054 M: Andrew Lunn <andrew@lunn.ch>
14055 L: linux-i2c@vger.kernel.org
14056 S: Maintained
14057 F: Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14058 F: Documentation/i2c/busses/i2c-ocores.rst
14059 F: drivers/i2c/busses/i2c-ocores.c
14060 F: include/linux/platform_data/i2c-ocores.h
14061
14062 OPENRISC ARCHITECTURE
14063 M: Jonas Bonn <jonas@southpole.se>
14064 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14065 M: Stafford Horne <shorne@gmail.com>
14066 L: openrisc@lists.librecores.org
14067 S: Maintained
14068 W: http://openrisc.io
14069 T: git git://github.com/openrisc/linux.git
14070 F: Documentation/devicetree/bindings/openrisc/
14071 F: Documentation/openrisc/
14072 F: arch/openrisc/
14073 F: drivers/irqchip/irq-ompic.c
14074 F: drivers/irqchip/irq-or1k-*
14075
14076 OPENVSWITCH
14077 M: Pravin B Shelar <pshelar@ovn.org>
14078 L: netdev@vger.kernel.org
14079 L: dev@openvswitch.org
14080 S: Maintained
14081 W: http://openvswitch.org
14082 F: include/uapi/linux/openvswitch.h
14083 F: net/openvswitch/
14084
14085 OPERATING PERFORMANCE POINTS (OPP)
14086 M: Viresh Kumar <vireshk@kernel.org>
14087 M: Nishanth Menon <nm@ti.com>
14088 M: Stephen Boyd <sboyd@kernel.org>
14089 L: linux-pm@vger.kernel.org
14090 S: Maintained
14091 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14092 F: Documentation/devicetree/bindings/opp/
14093 F: Documentation/power/opp.rst
14094 F: drivers/opp/
14095 F: include/linux/pm_opp.h
14096
14097 OPL4 DRIVER
14098 M: Clemens Ladisch <clemens@ladisch.de>
14099 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14100 S: Maintained
14101 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14102 F: sound/drivers/opl4/
14103
14104 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14105 M: Mark Fasheh <mark@fasheh.com>
14106 M: Joel Becker <jlbec@evilplan.org>
14107 M: Joseph Qi <joseph.qi@linux.alibaba.com>
14108 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14109 S: Supported
14110 W: http://ocfs2.wiki.kernel.org
14111 F: Documentation/filesystems/dlmfs.rst
14112 F: Documentation/filesystems/ocfs2.rst
14113 F: fs/ocfs2/
14114
14115 ORANGEFS FILESYSTEM
14116 M: Mike Marshall <hubcap@omnibond.com>
14117 R: Martin Brandenburg <martin@omnibond.com>
14118 L: devel@lists.orangefs.org
14119 S: Supported
14120 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14121 F: Documentation/filesystems/orangefs.rst
14122 F: fs/orangefs/
14123
14124 ORINOCO DRIVER
14125 L: linux-wireless@vger.kernel.org
14126 S: Orphan
14127 W: https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14128 W: http://www.nongnu.org/orinoco/
14129 F: drivers/net/wireless/intersil/orinoco/
14130
14131 OV2659 OMNIVISION SENSOR DRIVER
14132 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14133 L: linux-media@vger.kernel.org
14134 S: Maintained
14135 W: https://linuxtv.org
14136 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14137 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14138 F: drivers/media/i2c/ov2659.c
14139 F: include/media/i2c/ov2659.h
14140
14141 OVERLAY FILESYSTEM
14142 M: Miklos Szeredi <miklos@szeredi.hu>
14143 L: linux-unionfs@vger.kernel.org
14144 S: Supported
14145 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14146 F: Documentation/filesystems/overlayfs.rst
14147 F: fs/overlayfs/
14148
14149 P54 WIRELESS DRIVER
14150 M: Christian Lamparter <chunkeey@googlemail.com>
14151 L: linux-wireless@vger.kernel.org
14152 S: Maintained
14153 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
14154 F: drivers/net/wireless/intersil/p54/
14155
14156 PACKING
14157 M: Vladimir Oltean <olteanv@gmail.com>
14158 L: netdev@vger.kernel.org
14159 S: Supported
14160 F: Documentation/core-api/packing.rst
14161 F: include/linux/packing.h
14162 F: lib/packing.c
14163
14164 PADATA PARALLEL EXECUTION MECHANISM
14165 M: Steffen Klassert <steffen.klassert@secunet.com>
14166 M: Daniel Jordan <daniel.m.jordan@oracle.com>
14167 L: linux-crypto@vger.kernel.org
14168 L: linux-kernel@vger.kernel.org
14169 S: Maintained
14170 F: Documentation/core-api/padata.rst
14171 F: include/linux/padata.h
14172 F: kernel/padata.c
14173
14174 PAGE POOL
14175 M: Jesper Dangaard Brouer <hawk@kernel.org>
14176 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
14177 L: netdev@vger.kernel.org
14178 S: Supported
14179 F: Documentation/networking/page_pool.rst
14180 F: include/net/page_pool.h
14181 F: include/trace/events/page_pool.h
14182 F: net/core/page_pool.c
14183
14184 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14185 M: Kenneth Chan <kenneth.t.chan@gmail.com>
14186 L: platform-driver-x86@vger.kernel.org
14187 S: Maintained
14188 F: drivers/platform/x86/panasonic-laptop.c
14189
14190 PARALLAX PING IIO SENSOR DRIVER
14191 M: Andreas Klinger <ak@it-klinger.de>
14192 L: linux-iio@vger.kernel.org
14193 S: Maintained
14194 F: Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14195 F: drivers/iio/proximity/ping.c
14196
14197 PARALLEL LCD/KEYPAD PANEL DRIVER
14198 M: Willy Tarreau <willy@haproxy.com>
14199 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14200 S: Odd Fixes
14201 F: Documentation/admin-guide/lcd-panel-cgram.rst
14202 F: drivers/auxdisplay/panel.c
14203
14204 PARALLEL PORT SUBSYSTEM
14205 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14206 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14207 L: linux-parport@lists.infradead.org (subscribers-only)
14208 S: Maintained
14209 F: Documentation/driver-api/parport*.rst
14210 F: drivers/char/ppdev.c
14211 F: drivers/parport/
14212 F: include/linux/parport*.h
14213 F: include/uapi/linux/ppdev.h
14214
14215 PARAVIRT_OPS INTERFACE
14216 M: Juergen Gross <jgross@suse.com>
14217 M: Deep Shah <sdeep@vmware.com>
14218 M: "VMware, Inc." <pv-drivers@vmware.com>
14219 L: virtualization@lists.linux-foundation.org
14220 S: Supported
14221 F: Documentation/virt/paravirt_ops.rst
14222 F: arch/*/include/asm/paravirt*.h
14223 F: arch/*/kernel/paravirt*
14224 F: include/linux/hypervisor.h
14225
14226 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14227 M: Tim Waugh <tim@cyberelk.net>
14228 L: linux-parport@lists.infradead.org (subscribers-only)
14229 S: Maintained
14230 F: Documentation/admin-guide/blockdev/paride.rst
14231 F: drivers/block/paride/
14232
14233 PARISC ARCHITECTURE
14234 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14235 M: Helge Deller <deller@gmx.de>
14236 L: linux-parisc@vger.kernel.org
14237 S: Maintained
14238 W: https://parisc.wiki.kernel.org
14239 Q: http://patchwork.kernel.org/project/linux-parisc/list/
14240 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14241 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14242 F: Documentation/parisc/
14243 F: arch/parisc/
14244 F: drivers/char/agp/parisc-agp.c
14245 F: drivers/input/misc/hp_sdc_rtc.c
14246 F: drivers/input/serio/gscps2.c
14247 F: drivers/input/serio/hp_sdc*
14248 F: drivers/parisc/
14249 F: drivers/parport/parport_gsc.*
14250 F: drivers/tty/serial/8250/8250_gsc.c
14251 F: drivers/video/console/sti*
14252 F: drivers/video/fbdev/sti*
14253 F: drivers/video/logo/logo_parisc*
14254 F: include/linux/hp_sdc.h
14255
14256 PARMAN
14257 M: Jiri Pirko <jiri@nvidia.com>
14258 L: netdev@vger.kernel.org
14259 S: Supported
14260 F: include/linux/parman.h
14261 F: lib/parman.c
14262 F: lib/test_parman.c
14263
14264 PC ENGINES APU BOARD DRIVER
14265 M: Enrico Weigelt, metux IT consult <info@metux.net>
14266 S: Maintained
14267 F: drivers/platform/x86/pcengines-apuv2.c
14268
14269 PC87360 HARDWARE MONITORING DRIVER
14270 M: Jim Cromie <jim.cromie@gmail.com>
14271 L: linux-hwmon@vger.kernel.org
14272 S: Maintained
14273 F: Documentation/hwmon/pc87360.rst
14274 F: drivers/hwmon/pc87360.c
14275
14276 PC8736x GPIO DRIVER
14277 M: Jim Cromie <jim.cromie@gmail.com>
14278 S: Maintained
14279 F: drivers/char/pc8736x_gpio.c
14280
14281 PC87427 HARDWARE MONITORING DRIVER
14282 M: Jean Delvare <jdelvare@suse.com>
14283 L: linux-hwmon@vger.kernel.org
14284 S: Maintained
14285 F: Documentation/hwmon/pc87427.rst
14286 F: drivers/hwmon/pc87427.c
14287
14288 PCA9532 LED DRIVER
14289 M: Riku Voipio <riku.voipio@iki.fi>
14290 S: Maintained
14291 F: drivers/leds/leds-pca9532.c
14292 F: include/linux/leds-pca9532.h
14293
14294 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14295 M: Guenter Roeck <linux@roeck-us.net>
14296 L: linux-i2c@vger.kernel.org
14297 S: Maintained
14298 F: drivers/i2c/muxes/i2c-mux-pca9541.c
14299
14300 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14301 M: Khalid Aziz <khalid@gonehiking.org>
14302 S: Maintained
14303 F: drivers/firmware/pcdp.*
14304
14305 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14306 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14307 M: Pali Rohár <pali@kernel.org>
14308 L: linux-pci@vger.kernel.org
14309 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14310 S: Maintained
14311 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
14312 F: drivers/pci/controller/pci-aardvark.c
14313
14314 PCI DRIVER FOR ALTERA PCIE IP
14315 M: Joyce Ooi <joyce.ooi@intel.com>
14316 L: linux-pci@vger.kernel.org
14317 S: Supported
14318 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
14319 F: drivers/pci/controller/pcie-altera.c
14320
14321 PCI DRIVER FOR APPLIEDMICRO XGENE
14322 M: Toan Le <toan@os.amperecomputing.com>
14323 L: linux-pci@vger.kernel.org
14324 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14325 S: Maintained
14326 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
14327 F: drivers/pci/controller/pci-xgene.c
14328
14329 PCI DRIVER FOR ARM VERSATILE PLATFORM
14330 M: Rob Herring <robh@kernel.org>
14331 L: linux-pci@vger.kernel.org
14332 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14333 S: Maintained
14334 F: Documentation/devicetree/bindings/pci/versatile.yaml
14335 F: drivers/pci/controller/pci-versatile.c
14336
14337 PCI DRIVER FOR ARMADA 8K
14338 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14339 L: linux-pci@vger.kernel.org
14340 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14341 S: Maintained
14342 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
14343 F: drivers/pci/controller/dwc/pcie-armada8k.c
14344
14345 PCI DRIVER FOR CADENCE PCIE IP
14346 M: Tom Joseph <tjoseph@cadence.com>
14347 L: linux-pci@vger.kernel.org
14348 S: Maintained
14349 F: Documentation/devicetree/bindings/pci/cdns,*
14350 F: drivers/pci/controller/cadence/
14351
14352 PCI DRIVER FOR FREESCALE LAYERSCAPE
14353 M: Minghuan Lian <minghuan.Lian@nxp.com>
14354 M: Mingkai Hu <mingkai.hu@nxp.com>
14355 M: Roy Zang <roy.zang@nxp.com>
14356 L: linuxppc-dev@lists.ozlabs.org
14357 L: linux-pci@vger.kernel.org
14358 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14359 S: Maintained
14360 F: drivers/pci/controller/dwc/*layerscape*
14361
14362 PCI DRIVER FOR GENERIC OF HOSTS
14363 M: Will Deacon <will@kernel.org>
14364 L: linux-pci@vger.kernel.org
14365 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14366 S: Maintained
14367 F: Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14368 F: drivers/pci/controller/pci-host-common.c
14369 F: drivers/pci/controller/pci-host-generic.c
14370
14371 PCI DRIVER FOR IMX6
14372 M: Richard Zhu <hongxing.zhu@nxp.com>
14373 M: Lucas Stach <l.stach@pengutronix.de>
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/fsl,imx6q-pcie.yaml
14378 F: drivers/pci/controller/dwc/*imx6*
14379
14380 PCI DRIVER FOR FU740
14381 M: Paul Walmsley <paul.walmsley@sifive.com>
14382 M: Greentime Hu <greentime.hu@sifive.com>
14383 L: linux-pci@vger.kernel.org
14384 S: Maintained
14385 F: Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14386 F: drivers/pci/controller/dwc/pcie-fu740.c
14387
14388 PCI DRIVER FOR INTEL IXP4XX
14389 M: Linus Walleij <linus.walleij@linaro.org>
14390 S: Maintained
14391 F: Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14392 F: drivers/pci/controller/pci-ixp4xx.c
14393
14394 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14395 M: Nirmal Patel <nirmal.patel@linux.intel.com>
14396 R: Jonathan Derrick <jonathan.derrick@linux.dev>
14397 L: linux-pci@vger.kernel.org
14398 S: Supported
14399 F: drivers/pci/controller/vmd.c
14400
14401 PCI DRIVER FOR MICROSEMI SWITCHTEC
14402 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14403 M: Logan Gunthorpe <logang@deltatee.com>
14404 L: linux-pci@vger.kernel.org
14405 S: Maintained
14406 F: Documentation/ABI/testing/sysfs-class-switchtec
14407 F: Documentation/driver-api/switchtec.rst
14408 F: drivers/ntb/hw/mscc/
14409 F: drivers/pci/switch/switchtec*
14410 F: include/linux/switchtec.h
14411 F: include/uapi/linux/switchtec_ioctl.h
14412
14413 PCI DRIVER FOR MOBIVEIL PCIE IP
14414 M: Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14415 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14416 L: linux-pci@vger.kernel.org
14417 S: Supported
14418 F: Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14419 F: drivers/pci/controller/mobiveil/pcie-mobiveil*
14420
14421 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14422 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14423 L: linux-pci@vger.kernel.org
14424 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14425 S: Maintained
14426 F: drivers/pci/controller/*mvebu*
14427
14428 PCI DRIVER FOR NVIDIA TEGRA
14429 M: Thierry Reding <thierry.reding@gmail.com>
14430 L: linux-tegra@vger.kernel.org
14431 L: linux-pci@vger.kernel.org
14432 S: Supported
14433 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14434 F: drivers/pci/controller/pci-tegra.c
14435
14436 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14437 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14438 L: linux-pci@vger.kernel.org
14439 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14440 S: Maintained
14441 F: Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14442 F: drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14443
14444 PCI DRIVER FOR RENESAS R-CAR
14445 M: Marek Vasut <marek.vasut+renesas@gmail.com>
14446 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14447 L: linux-pci@vger.kernel.org
14448 L: linux-renesas-soc@vger.kernel.org
14449 S: Maintained
14450 F: Documentation/devicetree/bindings/pci/*rcar*
14451 F: drivers/pci/controller/*rcar*
14452
14453 PCI DRIVER FOR SAMSUNG EXYNOS
14454 M: Jingoo Han <jingoohan1@gmail.com>
14455 L: linux-pci@vger.kernel.org
14456 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14457 L: linux-samsung-soc@vger.kernel.org
14458 S: Maintained
14459 F: drivers/pci/controller/dwc/pci-exynos.c
14460
14461 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14462 M: Jingoo Han <jingoohan1@gmail.com>
14463 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14464 L: linux-pci@vger.kernel.org
14465 S: Maintained
14466 F: Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14467 F: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14468 F: drivers/pci/controller/dwc/*designware*
14469
14470 PCI DRIVER FOR TI DRA7XX/J721E
14471 M: Kishon Vijay Abraham I <kishon@ti.com>
14472 L: linux-omap@vger.kernel.org
14473 L: linux-pci@vger.kernel.org
14474 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14475 S: Supported
14476 F: Documentation/devicetree/bindings/pci/ti-pci.txt
14477 F: drivers/pci/controller/cadence/pci-j721e.c
14478 F: drivers/pci/controller/dwc/pci-dra7xx.c
14479
14480 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14481 M: Linus Walleij <linus.walleij@linaro.org>
14482 L: linux-pci@vger.kernel.org
14483 S: Maintained
14484 F: Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14485 F: drivers/pci/controller/pci-v3-semi.c
14486
14487 PCI ENDPOINT SUBSYSTEM
14488 M: Kishon Vijay Abraham I <kishon@ti.com>
14489 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14490 R: Krzysztof Wilczyński <kw@linux.com>
14491 L: linux-pci@vger.kernel.org
14492 S: Supported
14493 F: Documentation/PCI/endpoint/*
14494 F: Documentation/misc-devices/pci-endpoint-test.rst
14495 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14496 F: drivers/misc/pci_endpoint_test.c
14497 F: drivers/pci/endpoint/
14498 F: tools/pci/
14499
14500 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14501 M: Russell Currey <ruscur@russell.cc>
14502 M: Oliver O'Halloran <oohall@gmail.com>
14503 L: linuxppc-dev@lists.ozlabs.org
14504 S: Supported
14505 F: Documentation/PCI/pci-error-recovery.rst
14506 F: Documentation/powerpc/eeh-pci-error-recovery.rst
14507 F: arch/powerpc/include/*/eeh*.h
14508 F: arch/powerpc/kernel/eeh*.c
14509 F: arch/powerpc/platforms/*/eeh*.c
14510 F: drivers/pci/pcie/aer.c
14511 F: drivers/pci/pcie/dpc.c
14512 F: drivers/pci/pcie/err.c
14513
14514 PCI ERROR RECOVERY
14515 M: Linas Vepstas <linasvepstas@gmail.com>
14516 L: linux-pci@vger.kernel.org
14517 S: Supported
14518 F: Documentation/PCI/pci-error-recovery.rst
14519
14520 PCI MSI DRIVER FOR ALTERA MSI IP
14521 M: Joyce Ooi <joyce.ooi@intel.com>
14522 L: linux-pci@vger.kernel.org
14523 S: Supported
14524 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14525 F: drivers/pci/controller/pcie-altera-msi.c
14526
14527 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14528 M: Toan Le <toan@os.amperecomputing.com>
14529 L: linux-pci@vger.kernel.org
14530 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14531 S: Maintained
14532 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14533 F: drivers/pci/controller/pci-xgene-msi.c
14534
14535 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14536 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14537 R: Rob Herring <robh@kernel.org>
14538 R: Krzysztof Wilczyński <kw@linux.com>
14539 L: linux-pci@vger.kernel.org
14540 S: Supported
14541 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14542 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14543 F: drivers/pci/controller/
14544
14545 PCI SUBSYSTEM
14546 M: Bjorn Helgaas <bhelgaas@google.com>
14547 L: linux-pci@vger.kernel.org
14548 S: Supported
14549 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14550 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14551 F: Documentation/PCI/
14552 F: Documentation/devicetree/bindings/pci/
14553 F: arch/x86/kernel/early-quirks.c
14554 F: arch/x86/kernel/quirks.c
14555 F: arch/x86/pci/
14556 F: drivers/acpi/pci*
14557 F: drivers/pci/
14558 F: include/asm-generic/pci*
14559 F: include/linux/of_pci.h
14560 F: include/linux/pci*
14561 F: include/uapi/linux/pci*
14562 F: lib/pci*
14563
14564 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14565 M: Jonathan Chocron <jonnyc@amazon.com>
14566 L: linux-pci@vger.kernel.org
14567 S: Maintained
14568 F: Documentation/devicetree/bindings/pci/pcie-al.txt
14569 F: drivers/pci/controller/dwc/pcie-al.c
14570
14571 PCIE DRIVER FOR AMLOGIC MESON
14572 M: Yue Wang <yue.wang@Amlogic.com>
14573 L: linux-pci@vger.kernel.org
14574 L: linux-amlogic@lists.infradead.org
14575 S: Maintained
14576 F: drivers/pci/controller/dwc/pci-meson.c
14577
14578 PCIE DRIVER FOR AXIS ARTPEC
14579 M: Jesper Nilsson <jesper.nilsson@axis.com>
14580 L: linux-arm-kernel@axis.com
14581 L: linux-pci@vger.kernel.org
14582 S: Maintained
14583 F: Documentation/devicetree/bindings/pci/axis,artpec*
14584 F: drivers/pci/controller/dwc/*artpec*
14585
14586 PCIE DRIVER FOR CAVIUM THUNDERX
14587 M: Robert Richter <rric@kernel.org>
14588 L: linux-pci@vger.kernel.org
14589 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14590 S: Odd Fixes
14591 F: drivers/pci/controller/pci-thunder-*
14592
14593 PCIE DRIVER FOR HISILICON
14594 M: Zhou Wang <wangzhou1@hisilicon.com>
14595 L: linux-pci@vger.kernel.org
14596 S: Maintained
14597 F: drivers/pci/controller/dwc/pcie-hisi.c
14598
14599 PCIE DRIVER FOR HISILICON KIRIN
14600 M: Xiaowei Song <songxiaowei@hisilicon.com>
14601 M: Binghui Wang <wangbinghui@hisilicon.com>
14602 L: linux-pci@vger.kernel.org
14603 S: Maintained
14604 F: Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14605 F: drivers/pci/controller/dwc/pcie-kirin.c
14606
14607 PCIE DRIVER FOR HISILICON STB
14608 M: Shawn Guo <shawn.guo@linaro.org>
14609 L: linux-pci@vger.kernel.org
14610 S: Maintained
14611 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14612 F: drivers/pci/controller/dwc/pcie-histb.c
14613
14614 PCIE DRIVER FOR INTEL KEEM BAY
14615 M: Srikanth Thokala <srikanth.thokala@intel.com>
14616 L: linux-pci@vger.kernel.org
14617 S: Supported
14618 F: Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14619 F: drivers/pci/controller/dwc/pcie-keembay.c
14620
14621 PCIE DRIVER FOR INTEL LGM GW SOC
14622 M: Rahul Tanwar <rtanwar@maxlinear.com>
14623 L: linux-pci@vger.kernel.org
14624 S: Maintained
14625 F: Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14626 F: drivers/pci/controller/dwc/pcie-intel-gw.c
14627
14628 PCIE DRIVER FOR MEDIATEK
14629 M: Ryder Lee <ryder.lee@mediatek.com>
14630 M: Jianjun Wang <jianjun.wang@mediatek.com>
14631 L: linux-pci@vger.kernel.org
14632 L: linux-mediatek@lists.infradead.org
14633 S: Supported
14634 F: Documentation/devicetree/bindings/pci/mediatek*
14635 F: drivers/pci/controller/*mediatek*
14636
14637 PCIE DRIVER FOR MICROCHIP
14638 M: Daire McNamara <daire.mcnamara@microchip.com>
14639 L: linux-pci@vger.kernel.org
14640 S: Supported
14641 F: Documentation/devicetree/bindings/pci/microchip*
14642 F: drivers/pci/controller/*microchip*
14643
14644 PCIE DRIVER FOR QUALCOMM MSM
14645 M: Stanimir Varbanov <svarbanov@mm-sol.com>
14646 L: linux-pci@vger.kernel.org
14647 L: linux-arm-msm@vger.kernel.org
14648 S: Maintained
14649 F: drivers/pci/controller/dwc/*qcom*
14650
14651 PCIE DRIVER FOR ROCKCHIP
14652 M: Shawn Lin <shawn.lin@rock-chips.com>
14653 L: linux-pci@vger.kernel.org
14654 L: linux-rockchip@lists.infradead.org
14655 S: Maintained
14656 F: Documentation/devicetree/bindings/pci/rockchip-pcie*
14657 F: drivers/pci/controller/pcie-rockchip*
14658
14659 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14660 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14661 L: linux-pci@vger.kernel.org
14662 S: Maintained
14663 F: Documentation/devicetree/bindings/pci/uniphier-pcie*
14664 F: drivers/pci/controller/dwc/pcie-uniphier*
14665
14666 PCIE DRIVER FOR ST SPEAR13XX
14667 M: Pratyush Anand <pratyush.anand@gmail.com>
14668 L: linux-pci@vger.kernel.org
14669 S: Maintained
14670 F: drivers/pci/controller/dwc/*spear*
14671
14672 PCMCIA SUBSYSTEM
14673 M: Dominik Brodowski <linux@dominikbrodowski.net>
14674 S: Odd Fixes
14675 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14676 F: Documentation/pcmcia/
14677 F: drivers/pcmcia/
14678 F: include/pcmcia/
14679 F: tools/pcmcia/
14680
14681 PCNET32 NETWORK DRIVER
14682 M: Don Fry <pcnet32@frontier.com>
14683 L: netdev@vger.kernel.org
14684 S: Maintained
14685 F: drivers/net/ethernet/amd/pcnet32.c
14686
14687 PCRYPT PARALLEL CRYPTO ENGINE
14688 M: Steffen Klassert <steffen.klassert@secunet.com>
14689 L: linux-crypto@vger.kernel.org
14690 S: Maintained
14691 F: crypto/pcrypt.c
14692 F: include/crypto/pcrypt.h
14693
14694 PEAQ WMI HOTKEYS DRIVER
14695 M: Hans de Goede <hdegoede@redhat.com>
14696 L: platform-driver-x86@vger.kernel.org
14697 S: Maintained
14698 F: drivers/platform/x86/peaq-wmi.c
14699
14700 PENSANDO ETHERNET DRIVERS
14701 M: Shannon Nelson <snelson@pensando.io>
14702 M: drivers@pensando.io
14703 L: netdev@vger.kernel.org
14704 S: Supported
14705 F: Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14706 F: drivers/net/ethernet/pensando/
14707
14708 PER-CPU MEMORY ALLOCATOR
14709 M: Dennis Zhou <dennis@kernel.org>
14710 M: Tejun Heo <tj@kernel.org>
14711 M: Christoph Lameter <cl@linux.com>
14712 L: linux-mm@kvack.org
14713 S: Maintained
14714 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14715 F: arch/*/include/asm/percpu.h
14716 F: include/linux/percpu*.h
14717 F: lib/percpu*.c
14718 F: mm/percpu*.c
14719
14720 PER-TASK DELAY ACCOUNTING
14721 M: Balbir Singh <bsingharora@gmail.com>
14722 S: Maintained
14723 F: include/linux/delayacct.h
14724 F: kernel/delayacct.c
14725
14726 PERFORMANCE EVENTS SUBSYSTEM
14727 M: Peter Zijlstra <peterz@infradead.org>
14728 M: Ingo Molnar <mingo@redhat.com>
14729 M: Arnaldo Carvalho de Melo <acme@kernel.org>
14730 R: Mark Rutland <mark.rutland@arm.com>
14731 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
14732 R: Jiri Olsa <jolsa@redhat.com>
14733 R: Namhyung Kim <namhyung@kernel.org>
14734 L: linux-perf-users@vger.kernel.org
14735 L: linux-kernel@vger.kernel.org
14736 S: Supported
14737 W: https://perf.wiki.kernel.org/
14738 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14739 F: arch/*/events/*
14740 F: arch/*/events/*/*
14741 F: arch/*/include/asm/perf_event.h
14742 F: arch/*/kernel/*/*/perf_event*.c
14743 F: arch/*/kernel/*/perf_event*.c
14744 F: arch/*/kernel/perf_callchain.c
14745 F: arch/*/kernel/perf_event*.c
14746 F: include/linux/perf_event.h
14747 F: include/uapi/linux/perf_event.h
14748 F: kernel/events/*
14749 F: tools/lib/perf/
14750 F: tools/perf/
14751
14752 PERFORMANCE EVENTS TOOLING ARM64
14753 R: John Garry <john.garry@huawei.com>
14754 R: Will Deacon <will@kernel.org>
14755 R: Mathieu Poirier <mathieu.poirier@linaro.org>
14756 R: Leo Yan <leo.yan@linaro.org>
14757 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14758 S: Supported
14759 F: tools/build/feature/test-libopencsd.c
14760 F: tools/perf/arch/arm*/
14761 F: tools/perf/pmu-events/arch/arm64/
14762 F: tools/perf/util/arm-spe*
14763 F: tools/perf/util/cs-etm*
14764
14765 PERSONALITY HANDLING
14766 M: Christoph Hellwig <hch@infradead.org>
14767 L: linux-abi-devel@lists.sourceforge.net
14768 S: Maintained
14769 F: include/linux/personality.h
14770 F: include/uapi/linux/personality.h
14771
14772 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14773 M: Marcus Folkesson <marcus.folkesson@gmail.com>
14774 L: linux-input@vger.kernel.org
14775 S: Maintained
14776 F: Documentation/input/devices/pxrc.rst
14777 F: drivers/input/joystick/pxrc.c
14778
14779 PHONET PROTOCOL
14780 M: Remi Denis-Courmont <courmisch@gmail.com>
14781 S: Supported
14782 F: Documentation/networking/phonet.rst
14783 F: include/linux/phonet.h
14784 F: include/net/phonet/
14785 F: include/uapi/linux/phonet.h
14786 F: net/phonet/
14787
14788 PHRAM MTD DRIVER
14789 M: Joern Engel <joern@lazybastard.org>
14790 L: linux-mtd@lists.infradead.org
14791 S: Maintained
14792 F: drivers/mtd/devices/phram.c
14793
14794 PICOLCD HID DRIVER
14795 M: Bruno Prémont <bonbons@linux-vserver.org>
14796 L: linux-input@vger.kernel.org
14797 S: Maintained
14798 F: drivers/hid/hid-picolcd*
14799
14800 PIDFD API
14801 M: Christian Brauner <christian@brauner.io>
14802 L: linux-kernel@vger.kernel.org
14803 S: Maintained
14804 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14805 F: samples/pidfd/
14806 F: tools/testing/selftests/clone3/
14807 F: tools/testing/selftests/pid_namespace/
14808 F: tools/testing/selftests/pidfd/
14809 K: (?i)pidfd
14810 K: (?i)clone3
14811 K: \b(clone_args|kernel_clone_args)\b
14812
14813 PIN CONTROL SUBSYSTEM
14814 M: Linus Walleij <linus.walleij@linaro.org>
14815 L: linux-gpio@vger.kernel.org
14816 S: Maintained
14817 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14818 F: Documentation/devicetree/bindings/pinctrl/
14819 F: Documentation/driver-api/pin-control.rst
14820 F: drivers/pinctrl/
14821 F: include/linux/pinctrl/
14822
14823 PIN CONTROLLER - AMD
14824 M: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14825 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14826 S: Maintained
14827 F: drivers/pinctrl/pinctrl-amd.c
14828
14829 PIN CONTROLLER - FREESCALE
14830 M: Dong Aisheng <aisheng.dong@nxp.com>
14831 M: Fabio Estevam <festevam@gmail.com>
14832 M: Shawn Guo <shawnguo@kernel.org>
14833 M: Stefan Agner <stefan@agner.ch>
14834 R: Pengutronix Kernel Team <kernel@pengutronix.de>
14835 L: linux-gpio@vger.kernel.org
14836 S: Maintained
14837 F: Documentation/devicetree/bindings/pinctrl/fsl,*
14838 F: drivers/pinctrl/freescale/
14839
14840 PIN CONTROLLER - INTEL
14841 M: Mika Westerberg <mika.westerberg@linux.intel.com>
14842 M: Andy Shevchenko <andy@kernel.org>
14843 S: Maintained
14844 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14845 F: drivers/pinctrl/intel/
14846
14847 PIN CONTROLLER - KEEMBAY
14848 M: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14849 S: Supported
14850 F: drivers/pinctrl/pinctrl-keembay*
14851
14852 PIN CONTROLLER - MEDIATEK
14853 M: Sean Wang <sean.wang@kernel.org>
14854 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14855 S: Maintained
14856 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14857 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14858 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14859 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14860 F: drivers/pinctrl/mediatek/
14861
14862 PIN CONTROLLER - MICROCHIP AT91
14863 M: Ludovic Desroches <ludovic.desroches@microchip.com>
14864 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14865 L: linux-gpio@vger.kernel.org
14866 S: Supported
14867 F: drivers/gpio/gpio-sama5d2-piobu.c
14868 F: drivers/pinctrl/pinctrl-at91*
14869
14870 PIN CONTROLLER - QUALCOMM
14871 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14872 L: linux-arm-msm@vger.kernel.org
14873 S: Maintained
14874 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14875 F: drivers/pinctrl/qcom/
14876
14877 PIN CONTROLLER - RENESAS
14878 M: Geert Uytterhoeven <geert+renesas@glider.be>
14879 L: linux-renesas-soc@vger.kernel.org
14880 S: Supported
14881 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14882 F: Documentation/devicetree/bindings/pinctrl/renesas,*
14883 F: drivers/pinctrl/renesas/
14884
14885 PIN CONTROLLER - SAMSUNG
14886 M: Tomasz Figa <tomasz.figa@gmail.com>
14887 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14888 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14889 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14890 L: linux-samsung-soc@vger.kernel.org
14891 S: Maintained
14892 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
14893 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14894 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14895 F: drivers/pinctrl/samsung/
14896 F: include/dt-bindings/pinctrl/samsung.h
14897
14898 PIN CONTROLLER - SINGLE
14899 M: Tony Lindgren <tony@atomide.com>
14900 M: Haojian Zhuang <haojian.zhuang@linaro.org>
14901 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14902 L: linux-omap@vger.kernel.org
14903 S: Maintained
14904 F: drivers/pinctrl/pinctrl-single.c
14905
14906 PIN CONTROLLER - ST SPEAR
14907 M: Viresh Kumar <vireshk@kernel.org>
14908 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14909 S: Maintained
14910 W: http://www.st.com/spear
14911 F: drivers/pinctrl/spear/
14912
14913 PKTCDVD DRIVER
14914 M: linux-block@vger.kernel.org
14915 S: Orphan
14916 F: drivers/block/pktcdvd.c
14917 F: include/linux/pktcdvd.h
14918 F: include/uapi/linux/pktcdvd.h
14919
14920 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14921 M: Tomasz Duszynski <tduszyns@gmail.com>
14922 S: Maintained
14923 F: Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14924 F: drivers/iio/chemical/pms7003.c
14925
14926 PLDMFW LIBRARY
14927 M: Jacob Keller <jacob.e.keller@intel.com>
14928 S: Maintained
14929 F: Documentation/driver-api/pldmfw/
14930 F: include/linux/pldmfw.h
14931 F: lib/pldmfw/
14932
14933 PLX DMA DRIVER
14934 M: Logan Gunthorpe <logang@deltatee.com>
14935 S: Maintained
14936 F: drivers/dma/plx_dma.c
14937
14938 PM6764TR DRIVER
14939 M: Charles Hsu <hsu.yungteng@gmail.com>
14940 L: linux-hwmon@vger.kernel.org
14941 S: Maintained
14942 F: Documentation/hwmon/pm6764tr.rst
14943 F: drivers/hwmon/pmbus/pm6764tr.c
14944
14945 PM-GRAPH UTILITY
14946 M: "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14947 L: linux-pm@vger.kernel.org
14948 S: Supported
14949 W: https://01.org/pm-graph
14950 B: https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14951 T: git git://github.com/intel/pm-graph
14952 F: tools/power/pm-graph
14953
14954 PMBUS HARDWARE MONITORING DRIVERS
14955 M: Guenter Roeck <linux@roeck-us.net>
14956 L: linux-hwmon@vger.kernel.org
14957 S: Maintained
14958 W: http://hwmon.wiki.kernel.org/
14959 W: http://www.roeck-us.net/linux/drivers/
14960 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14961 F: Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14962 F: Documentation/devicetree/bindings/hwmon/ltc2978.txt
14963 F: Documentation/devicetree/bindings/hwmon/max31785.txt
14964 F: Documentation/hwmon/adm1275.rst
14965 F: Documentation/hwmon/ibm-cffps.rst
14966 F: Documentation/hwmon/ir35221.rst
14967 F: Documentation/hwmon/lm25066.rst
14968 F: Documentation/hwmon/ltc2978.rst
14969 F: Documentation/hwmon/ltc3815.rst
14970 F: Documentation/hwmon/max16064.rst
14971 F: Documentation/hwmon/max20751.rst
14972 F: Documentation/hwmon/max31785.rst
14973 F: Documentation/hwmon/max34440.rst
14974 F: Documentation/hwmon/max8688.rst
14975 F: Documentation/hwmon/pmbus-core.rst
14976 F: Documentation/hwmon/pmbus.rst
14977 F: Documentation/hwmon/tps40422.rst
14978 F: Documentation/hwmon/ucd9000.rst
14979 F: Documentation/hwmon/ucd9200.rst
14980 F: Documentation/hwmon/zl6100.rst
14981 F: drivers/hwmon/pmbus/
14982 F: include/linux/pmbus.h
14983
14984 PMC SIERRA MaxRAID DRIVER
14985 L: linux-scsi@vger.kernel.org
14986 S: Orphan
14987 W: http://www.pmc-sierra.com/
14988 F: drivers/scsi/pmcraid.*
14989
14990 PMC SIERRA PM8001 DRIVER
14991 M: Jack Wang <jinpu.wang@cloud.ionos.com>
14992 L: linux-scsi@vger.kernel.org
14993 S: Supported
14994 F: drivers/scsi/pm8001/
14995
14996 PNI RM3100 IIO DRIVER
14997 M: Song Qiang <songqiang1304521@gmail.com>
14998 L: linux-iio@vger.kernel.org
14999 S: Maintained
15000 F: Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15001 F: drivers/iio/magnetometer/rm3100*
15002
15003 PNP SUPPORT
15004 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15005 L: linux-acpi@vger.kernel.org
15006 S: Maintained
15007 F: drivers/pnp/
15008 F: include/linux/pnp.h
15009
15010 POSIX CLOCKS and TIMERS
15011 M: Thomas Gleixner <tglx@linutronix.de>
15012 L: linux-kernel@vger.kernel.org
15013 S: Maintained
15014 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15015 F: fs/timerfd.c
15016 F: include/linux/time_namespace.h
15017 F: include/linux/timer*
15018 F: kernel/time/*timer*
15019 F: kernel/time/namespace.c
15020
15021 POWER MANAGEMENT CORE
15022 M: "Rafael J. Wysocki" <rafael@kernel.org>
15023 L: linux-pm@vger.kernel.org
15024 S: Supported
15025 B: https://bugzilla.kernel.org
15026 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15027 F: drivers/base/power/
15028 F: drivers/powercap/
15029 F: include/linux/intel_rapl.h
15030 F: include/linux/pm.h
15031 F: include/linux/pm_*
15032 F: include/linux/powercap.h
15033 F: kernel/configs/nopm.config
15034
15035 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15036 M: Daniel Lezcano <daniel.lezcano@kernel.org>
15037 L: linux-pm@vger.kernel.org
15038 S: Supported
15039 B: https://bugzilla.kernel.org
15040 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15041 F: drivers/powercap/dtpm*
15042 F: include/linux/dtpm.h
15043
15044 POWER STATE COORDINATION INTERFACE (PSCI)
15045 M: Mark Rutland <mark.rutland@arm.com>
15046 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15047 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15048 S: Maintained
15049 F: drivers/firmware/psci/
15050 F: include/linux/psci.h
15051 F: include/uapi/linux/psci.h
15052
15053 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15054 M: Sebastian Reichel <sre@kernel.org>
15055 L: linux-pm@vger.kernel.org
15056 S: Maintained
15057 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15058 F: Documentation/ABI/testing/sysfs-class-power
15059 F: Documentation/devicetree/bindings/power/supply/
15060 F: drivers/power/supply/
15061 F: include/linux/power/
15062 F: include/linux/power_supply.h
15063
15064 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15065 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15066 L: linuxppc-dev@lists.ozlabs.org
15067 S: Maintained
15068 F: drivers/char/powernv-op-panel.c
15069
15070 PPP OVER ATM (RFC 2364)
15071 M: Mitchell Blank Jr <mitch@sfgoth.com>
15072 S: Maintained
15073 F: include/uapi/linux/atmppp.h
15074 F: net/atm/pppoatm.c
15075
15076 PPP OVER ETHERNET
15077 M: Michal Ostrowski <mostrows@earthlink.net>
15078 S: Maintained
15079 F: drivers/net/ppp/pppoe.c
15080 F: drivers/net/ppp/pppox.c
15081
15082 PPP OVER L2TP
15083 M: James Chapman <jchapman@katalix.com>
15084 S: Maintained
15085 F: include/linux/if_pppol2tp.h
15086 F: include/uapi/linux/if_pppol2tp.h
15087 F: net/l2tp/l2tp_ppp.c
15088
15089 PPP PROTOCOL DRIVERS AND COMPRESSORS
15090 M: Paul Mackerras <paulus@samba.org>
15091 L: linux-ppp@vger.kernel.org
15092 S: Maintained
15093 F: drivers/net/ppp/ppp_*
15094
15095 PPS SUPPORT
15096 M: Rodolfo Giometti <giometti@enneenne.com>
15097 L: linuxpps@ml.enneenne.com (subscribers-only)
15098 S: Maintained
15099 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
15100 F: Documentation/ABI/testing/sysfs-pps
15101 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
15102 F: Documentation/driver-api/pps.rst
15103 F: drivers/pps/
15104 F: include/linux/pps*.h
15105 F: include/uapi/linux/pps.h
15106
15107 PPTP DRIVER
15108 M: Dmitry Kozlov <xeb@mail.ru>
15109 L: netdev@vger.kernel.org
15110 S: Maintained
15111 W: http://sourceforge.net/projects/accel-pptp
15112 F: drivers/net/ppp/pptp.c
15113
15114 PRESSURE STALL INFORMATION (PSI)
15115 M: Johannes Weiner <hannes@cmpxchg.org>
15116 S: Maintained
15117 F: include/linux/psi*
15118 F: kernel/sched/psi.c
15119
15120 PRINTK
15121 M: Petr Mladek <pmladek@suse.com>
15122 M: Sergey Senozhatsky <senozhatsky@chromium.org>
15123 R: Steven Rostedt <rostedt@goodmis.org>
15124 R: John Ogness <john.ogness@linutronix.de>
15125 S: Maintained
15126 F: include/linux/printk.h
15127 F: kernel/printk/
15128
15129 PRINTK INDEXING
15130 R: Chris Down <chris@chrisdown.name>
15131 S: Maintained
15132 F: kernel/printk/index.c
15133
15134 PROC FILESYSTEM
15135 L: linux-kernel@vger.kernel.org
15136 L: linux-fsdevel@vger.kernel.org
15137 S: Maintained
15138 F: Documentation/filesystems/proc.rst
15139 F: fs/proc/
15140 F: include/linux/proc_fs.h
15141 F: tools/testing/selftests/proc/
15142
15143 PROC SYSCTL
15144 M: Luis Chamberlain <mcgrof@kernel.org>
15145 M: Kees Cook <keescook@chromium.org>
15146 M: Iurii Zaikin <yzaikin@google.com>
15147 L: linux-kernel@vger.kernel.org
15148 L: linux-fsdevel@vger.kernel.org
15149 S: Maintained
15150 F: fs/proc/proc_sysctl.c
15151 F: include/linux/sysctl.h
15152 F: kernel/sysctl-test.c
15153 F: kernel/sysctl.c
15154 F: tools/testing/selftests/sysctl/
15155
15156 PS3 NETWORK SUPPORT
15157 M: Geoff Levand <geoff@infradead.org>
15158 L: netdev@vger.kernel.org
15159 L: linuxppc-dev@lists.ozlabs.org
15160 S: Maintained
15161 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
15162
15163 PS3 PLATFORM SUPPORT
15164 M: Geoff Levand <geoff@infradead.org>
15165 L: linuxppc-dev@lists.ozlabs.org
15166 S: Maintained
15167 F: arch/powerpc/boot/ps3*
15168 F: arch/powerpc/include/asm/lv1call.h
15169 F: arch/powerpc/include/asm/ps3*.h
15170 F: arch/powerpc/platforms/ps3/
15171 F: drivers/*/ps3*
15172 F: drivers/ps3/
15173 F: drivers/rtc/rtc-ps3.c
15174 F: drivers/usb/host/*ps3.c
15175 F: sound/ppc/snd_ps3*
15176
15177 PS3VRAM DRIVER
15178 M: Jim Paris <jim@jtan.com>
15179 M: Geoff Levand <geoff@infradead.org>
15180 L: linuxppc-dev@lists.ozlabs.org
15181 S: Maintained
15182 F: drivers/block/ps3vram.c
15183
15184 PSAMPLE PACKET SAMPLING SUPPORT
15185 M: Yotam Gigi <yotam.gi@gmail.com>
15186 S: Maintained
15187 F: include/net/psample.h
15188 F: include/uapi/linux/psample.h
15189 F: net/psample
15190
15191 PSTORE FILESYSTEM
15192 M: Kees Cook <keescook@chromium.org>
15193 M: Anton Vorontsov <anton@enomsg.org>
15194 M: Colin Cross <ccross@android.com>
15195 M: Tony Luck <tony.luck@intel.com>
15196 S: Maintained
15197 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15198 F: Documentation/admin-guide/ramoops.rst
15199 F: Documentation/admin-guide/pstore-blk.rst
15200 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15201 F: drivers/acpi/apei/erst.c
15202 F: drivers/firmware/efi/efi-pstore.c
15203 F: fs/pstore/
15204 F: include/linux/pstore*
15205 K: \b(pstore|ramoops)
15206
15207 PTP HARDWARE CLOCK SUPPORT
15208 M: Richard Cochran <richardcochran@gmail.com>
15209 L: netdev@vger.kernel.org
15210 S: Maintained
15211 W: http://linuxptp.sourceforge.net/
15212 F: Documentation/ABI/testing/sysfs-ptp
15213 F: Documentation/driver-api/ptp.rst
15214 F: drivers/net/phy/dp83640*
15215 F: drivers/ptp/*
15216 F: include/linux/ptp_cl*
15217
15218 PTP VIRTUAL CLOCK SUPPORT
15219 M: Yangbo Lu <yangbo.lu@nxp.com>
15220 L: netdev@vger.kernel.org
15221 S: Maintained
15222 F: drivers/ptp/ptp_vclock.c
15223 F: net/ethtool/phc_vclocks.c
15224
15225 PTRACE SUPPORT
15226 M: Oleg Nesterov <oleg@redhat.com>
15227 S: Maintained
15228 F: arch/*/*/ptrace*.c
15229 F: arch/*/include/asm/ptrace*.h
15230 F: arch/*/ptrace*.c
15231 F: include/asm-generic/syscall.h
15232 F: include/linux/ptrace.h
15233 F: include/linux/regset.h
15234 F: include/linux/tracehook.h
15235 F: include/uapi/linux/ptrace.h
15236 F: include/uapi/linux/ptrace.h
15237 F: kernel/ptrace.c
15238
15239 PULSE8-CEC DRIVER
15240 M: Hans Verkuil <hverkuil@xs4all.nl>
15241 L: linux-media@vger.kernel.org
15242 S: Maintained
15243 T: git git://linuxtv.org/media_tree.git
15244 F: Documentation/admin-guide/media/pulse8-cec.rst
15245 F: drivers/media/cec/usb/pulse8/
15246
15247 PVRUSB2 VIDEO4LINUX DRIVER
15248 M: Mike Isely <isely@pobox.com>
15249 L: pvrusb2@isely.net (subscribers-only)
15250 L: linux-media@vger.kernel.org
15251 S: Maintained
15252 W: http://www.isely.net/pvrusb2/
15253 T: git git://linuxtv.org/media_tree.git
15254 F: Documentation/driver-api/media/drivers/pvrusb2*
15255 F: drivers/media/usb/pvrusb2/
15256
15257 PWC WEBCAM DRIVER
15258 M: Hans Verkuil <hverkuil@xs4all.nl>
15259 L: linux-media@vger.kernel.org
15260 S: Odd Fixes
15261 T: git git://linuxtv.org/media_tree.git
15262 F: drivers/media/usb/pwc/*
15263 F: include/trace/events/pwc.h
15264
15265 PWM FAN DRIVER
15266 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15267 L: linux-hwmon@vger.kernel.org
15268 S: Supported
15269 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15270 F: Documentation/hwmon/pwm-fan.rst
15271 F: drivers/hwmon/pwm-fan.c
15272
15273 PWM IR Transmitter
15274 M: Sean Young <sean@mess.org>
15275 L: linux-media@vger.kernel.org
15276 S: Maintained
15277 F: drivers/media/rc/pwm-ir-tx.c
15278
15279 PWM SUBSYSTEM
15280 M: Thierry Reding <thierry.reding@gmail.com>
15281 R: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15282 M: Lee Jones <lee.jones@linaro.org>
15283 L: linux-pwm@vger.kernel.org
15284 S: Maintained
15285 Q: https://patchwork.ozlabs.org/project/linux-pwm/list/
15286 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15287 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15288 F: Documentation/devicetree/bindings/pwm/
15289 F: Documentation/driver-api/pwm.rst
15290 F: drivers/gpio/gpio-mvebu.c
15291 F: drivers/pwm/
15292 F: drivers/video/backlight/pwm_bl.c
15293 F: include/linux/pwm.h
15294 F: include/linux/pwm_backlight.h
15295 K: pwm_(config|apply_state|ops)
15296
15297 PXA GPIO DRIVER
15298 M: Robert Jarzmik <robert.jarzmik@free.fr>
15299 L: linux-gpio@vger.kernel.org
15300 S: Maintained
15301 F: drivers/gpio/gpio-pxa.c
15302
15303 PXA MMCI DRIVER
15304 S: Orphan
15305
15306 PXA RTC DRIVER
15307 M: Robert Jarzmik <robert.jarzmik@free.fr>
15308 L: linux-rtc@vger.kernel.org
15309 S: Maintained
15310
15311 PXA2xx/PXA3xx SUPPORT
15312 M: Daniel Mack <daniel@zonque.org>
15313 M: Haojian Zhuang <haojian.zhuang@gmail.com>
15314 M: Robert Jarzmik <robert.jarzmik@free.fr>
15315 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15316 S: Maintained
15317 T: git git://github.com/hzhuang1/linux.git
15318 T: git git://github.com/rjarzmik/linux.git
15319 F: arch/arm/boot/dts/pxa*
15320 F: arch/arm/mach-pxa/
15321 F: drivers/dma/pxa*
15322 F: drivers/pcmcia/pxa2xx*
15323 F: drivers/pinctrl/pxa/
15324 F: drivers/spi/spi-pxa2xx*
15325 F: drivers/usb/gadget/udc/pxa2*
15326 F: include/sound/pxa2xx-lib.h
15327 F: sound/arm/pxa*
15328 F: sound/soc/pxa/
15329
15330 QAT DRIVER
15331 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15332 L: qat-linux@intel.com
15333 S: Supported
15334 F: drivers/crypto/qat/
15335
15336 QCOM AUDIO (ASoC) DRIVERS
15337 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15338 M: Banajit Goswami <bgoswami@codeaurora.org>
15339 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15340 S: Supported
15341 F: sound/soc/codecs/lpass-va-macro.c
15342 F: sound/soc/codecs/lpass-wsa-macro.*
15343 F: sound/soc/codecs/msm8916-wcd-analog.c
15344 F: sound/soc/codecs/msm8916-wcd-digital.c
15345 F: sound/soc/codecs/wcd9335.*
15346 F: sound/soc/codecs/wcd934x.c
15347 F: sound/soc/codecs/wcd-clsh-v2.*
15348 F: sound/soc/codecs/wsa881x.c
15349 F: sound/soc/qcom/
15350
15351 QCOM IPA DRIVER
15352 M: Alex Elder <elder@kernel.org>
15353 L: netdev@vger.kernel.org
15354 S: Supported
15355 F: drivers/net/ipa/
15356
15357 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15358 M: Gabriel Somlo <somlo@cmu.edu>
15359 M: "Michael S. Tsirkin" <mst@redhat.com>
15360 L: qemu-devel@nongnu.org
15361 S: Maintained
15362 F: drivers/firmware/qemu_fw_cfg.c
15363 F: include/uapi/linux/qemu_fw_cfg.h
15364
15365 QIB DRIVER
15366 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15367 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15368 L: linux-rdma@vger.kernel.org
15369 S: Supported
15370 F: drivers/infiniband/hw/qib/
15371
15372 QLOGIC QL41xxx FCOE DRIVER
15373 M: Saurav Kashyap <skashyap@marvell.com>
15374 M: Javed Hasan <jhasan@marvell.com>
15375 M: GR-QLogic-Storage-Upstream@marvell.com
15376 L: linux-scsi@vger.kernel.org
15377 S: Supported
15378 F: drivers/scsi/qedf/
15379
15380 QLOGIC QL41xxx ISCSI DRIVER
15381 M: Nilesh Javali <njavali@marvell.com>
15382 M: Manish Rangankar <mrangankar@marvell.com>
15383 M: GR-QLogic-Storage-Upstream@marvell.com
15384 L: linux-scsi@vger.kernel.org
15385 S: Supported
15386 F: drivers/scsi/qedi/
15387
15388 QLOGIC QL4xxx ETHERNET DRIVER
15389 M: Ariel Elior <aelior@marvell.com>
15390 M: GR-everest-linux-l2@marvell.com
15391 L: netdev@vger.kernel.org
15392 S: Supported
15393 F: drivers/net/ethernet/qlogic/qed/
15394 F: drivers/net/ethernet/qlogic/qede/
15395 F: include/linux/qed/
15396
15397 QLOGIC QL4xxx RDMA DRIVER
15398 M: Michal Kalderon <mkalderon@marvell.com>
15399 M: Ariel Elior <aelior@marvell.com>
15400 L: linux-rdma@vger.kernel.org
15401 S: Supported
15402 F: drivers/infiniband/hw/qedr/
15403 F: include/uapi/rdma/qedr-abi.h
15404
15405 QLOGIC QLA1280 SCSI DRIVER
15406 M: Michael Reed <mdr@sgi.com>
15407 L: linux-scsi@vger.kernel.org
15408 S: Maintained
15409 F: drivers/scsi/qla1280.[ch]
15410
15411 QLOGIC QLA2XXX FC-SCSI DRIVER
15412 M: Nilesh Javali <njavali@marvell.com>
15413 M: GR-QLogic-Storage-Upstream@marvell.com
15414 L: linux-scsi@vger.kernel.org
15415 S: Supported
15416 F: drivers/scsi/qla2xxx/
15417
15418 QLOGIC QLA3XXX NETWORK DRIVER
15419 M: GR-Linux-NIC-Dev@marvell.com
15420 L: netdev@vger.kernel.org
15421 S: Supported
15422 F: drivers/net/ethernet/qlogic/qla3xxx.*
15423
15424 QLOGIC QLA4XXX iSCSI DRIVER
15425 M: Nilesh Javali <njavali@marvell.com>
15426 M: Manish Rangankar <mrangankar@marvell.com>
15427 M: GR-QLogic-Storage-Upstream@marvell.com
15428 L: linux-scsi@vger.kernel.org
15429 S: Supported
15430 F: drivers/scsi/qla4xxx/
15431
15432 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15433 M: Shahed Shaikh <shshaikh@marvell.com>
15434 M: Manish Chopra <manishc@marvell.com>
15435 M: GR-Linux-NIC-Dev@marvell.com
15436 L: netdev@vger.kernel.org
15437 S: Supported
15438 F: drivers/net/ethernet/qlogic/qlcnic/
15439
15440 QLOGIC QLGE 10Gb ETHERNET DRIVER
15441 M: Manish Chopra <manishc@marvell.com>
15442 M: GR-Linux-NIC-Dev@marvell.com
15443 M: Coiby Xu <coiby.xu@gmail.com>
15444 L: netdev@vger.kernel.org
15445 S: Supported
15446 F: Documentation/networking/device_drivers/qlogic/qlge.rst
15447 F: drivers/staging/qlge/
15448
15449 QM1D1B0004 MEDIA DRIVER
15450 M: Akihiro Tsukada <tskd08@gmail.com>
15451 L: linux-media@vger.kernel.org
15452 S: Odd Fixes
15453 F: drivers/media/tuners/qm1d1b0004*
15454
15455 QM1D1C0042 MEDIA DRIVER
15456 M: Akihiro Tsukada <tskd08@gmail.com>
15457 L: linux-media@vger.kernel.org
15458 S: Odd Fixes
15459 F: drivers/media/tuners/qm1d1c0042*
15460
15461 QNX4 FILESYSTEM
15462 M: Anders Larsen <al@alarsen.net>
15463 S: Maintained
15464 W: http://www.alarsen.net/linux/qnx4fs/
15465 F: fs/qnx4/
15466 F: include/uapi/linux/qnx4_fs.h
15467 F: include/uapi/linux/qnxtypes.h
15468
15469 QORIQ DPAA2 FSL-MC BUS DRIVER
15470 M: Stuart Yoder <stuyoder@gmail.com>
15471 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
15472 L: linux-kernel@vger.kernel.org
15473 S: Maintained
15474 F: Documentation/ABI/stable/sysfs-bus-fsl-mc
15475 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15476 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15477 F: drivers/bus/fsl-mc/
15478 F: include/uapi/linux/fsl_mc.h
15479
15480 QT1010 MEDIA DRIVER
15481 M: Antti Palosaari <crope@iki.fi>
15482 L: linux-media@vger.kernel.org
15483 S: Maintained
15484 W: https://linuxtv.org
15485 W: http://palosaari.fi/linux/
15486 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15487 T: git git://linuxtv.org/anttip/media_tree.git
15488 F: drivers/media/tuners/qt1010*
15489
15490 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15491 M: Kalle Valo <kvalo@codeaurora.org>
15492 L: ath10k@lists.infradead.org
15493 S: Supported
15494 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15495 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15496 F: drivers/net/wireless/ath/ath10k/
15497
15498 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15499 M: Kalle Valo <kvalo@codeaurora.org>
15500 L: ath11k@lists.infradead.org
15501 S: Supported
15502 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15503 F: drivers/net/wireless/ath/ath11k/
15504
15505 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15506 M: ath9k-devel@qca.qualcomm.com
15507 L: linux-wireless@vger.kernel.org
15508 S: Supported
15509 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15510 F: drivers/net/wireless/ath/ath9k/
15511
15512 QUALCOMM CAMERA SUBSYSTEM DRIVER
15513 M: Robert Foss <robert.foss@linaro.org>
15514 M: Todor Tomov <todor.too@gmail.com>
15515 L: linux-media@vger.kernel.org
15516 S: Maintained
15517 F: Documentation/admin-guide/media/qcom_camss.rst
15518 F: Documentation/devicetree/bindings/media/*camss*
15519 F: drivers/media/platform/qcom/camss/
15520
15521 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15522 M: Niklas Cassel <nks@flawful.org>
15523 L: linux-pm@vger.kernel.org
15524 L: linux-arm-msm@vger.kernel.org
15525 S: Maintained
15526 F: Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15527 F: drivers/soc/qcom/cpr.c
15528
15529 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15530 M: Ilia Lin <ilia.lin@kernel.org>
15531 L: linux-pm@vger.kernel.org
15532 S: Maintained
15533 F: Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15534 F: drivers/cpufreq/qcom-cpufreq-nvmem.c
15535
15536 QUALCOMM CRYPTO DRIVERS
15537 M: Thara Gopinath <thara.gopinath@linaro.org>
15538 L: linux-crypto@vger.kernel.org
15539 L: linux-arm-msm@vger.kernel.org
15540 S: Maintained
15541 F: drivers/crypto/qce/
15542
15543 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15544 M: Timur Tabi <timur@kernel.org>
15545 L: netdev@vger.kernel.org
15546 S: Maintained
15547 F: drivers/net/ethernet/qualcomm/emac/
15548
15549 QUALCOMM ETHQOS ETHERNET DRIVER
15550 M: Vinod Koul <vkoul@kernel.org>
15551 L: netdev@vger.kernel.org
15552 S: Maintained
15553 F: Documentation/devicetree/bindings/net/qcom,ethqos.txt
15554 F: drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15555
15556 QUALCOMM GENERIC INTERFACE I2C DRIVER
15557 M: Akash Asthana <akashast@codeaurora.org>
15558 M: Mukesh Savaliya <msavaliy@codeaurora.org>
15559 L: linux-i2c@vger.kernel.org
15560 L: linux-arm-msm@vger.kernel.org
15561 S: Supported
15562 F: drivers/i2c/busses/i2c-qcom-geni.c
15563
15564 QUALCOMM HEXAGON ARCHITECTURE
15565 M: Brian Cain <bcain@codeaurora.org>
15566 L: linux-hexagon@vger.kernel.org
15567 S: Supported
15568 F: arch/hexagon/
15569
15570 QUALCOMM HIDMA DRIVER
15571 M: Sinan Kaya <okaya@kernel.org>
15572 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15573 L: linux-arm-msm@vger.kernel.org
15574 L: dmaengine@vger.kernel.org
15575 S: Supported
15576 F: drivers/dma/qcom/hidma*
15577
15578 QUALCOMM I2C CCI DRIVER
15579 M: Loic Poulain <loic.poulain@linaro.org>
15580 M: Robert Foss <robert.foss@linaro.org>
15581 L: linux-i2c@vger.kernel.org
15582 L: linux-arm-msm@vger.kernel.org
15583 S: Maintained
15584 F: Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15585 F: drivers/i2c/busses/i2c-qcom-cci.c
15586
15587 QUALCOMM IOMMU
15588 M: Rob Clark <robdclark@gmail.com>
15589 L: iommu@lists.linux-foundation.org
15590 L: linux-arm-msm@vger.kernel.org
15591 S: Maintained
15592 F: drivers/iommu/arm/arm-smmu/qcom_iommu.c
15593
15594 QUALCOMM IPC ROUTER (QRTR) DRIVER
15595 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15596 L: linux-arm-msm@vger.kernel.org
15597 S: Maintained
15598 F: include/trace/events/qrtr.h
15599 F: include/uapi/linux/qrtr.h
15600 F: net/qrtr/
15601
15602 QUALCOMM IPCC MAILBOX DRIVER
15603 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15604 L: linux-arm-msm@vger.kernel.org
15605 S: Supported
15606 F: Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15607 F: drivers/mailbox/qcom-ipcc.c
15608 F: include/dt-bindings/mailbox/qcom-ipcc.h
15609
15610 QUALCOMM IPQ4019 USB PHY DRIVER
15611 M: Robert Marko <robert.marko@sartura.hr>
15612 M: Luka Perkov <luka.perkov@sartura.hr>
15613 L: linux-arm-msm@vger.kernel.org
15614 S: Maintained
15615 F: Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15616 F: drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15617
15618 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15619 M: Robert Marko <robert.marko@sartura.hr>
15620 M: Luka Perkov <luka.perkov@sartura.hr>
15621 L: linux-arm-msm@vger.kernel.org
15622 S: Maintained
15623 F: Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15624 F: drivers/regulator/vqmmc-ipq4019-regulator.c
15625
15626 QUALCOMM RMNET DRIVER
15627 M: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15628 M: Sean Tranchetti <stranche@codeaurora.org>
15629 L: netdev@vger.kernel.org
15630 S: Maintained
15631 F: Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15632 F: drivers/net/ethernet/qualcomm/rmnet/
15633 F: include/linux/if_rmnet.h
15634
15635 QUALCOMM TSENS THERMAL DRIVER
15636 M: Amit Kucheria <amitk@kernel.org>
15637 M: Thara Gopinath <thara.gopinath@linaro.org>
15638 L: linux-pm@vger.kernel.org
15639 L: linux-arm-msm@vger.kernel.org
15640 S: Maintained
15641 F: Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15642 F: drivers/thermal/qcom/
15643
15644 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15645 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
15646 L: linux-media@vger.kernel.org
15647 L: linux-arm-msm@vger.kernel.org
15648 S: Maintained
15649 T: git git://linuxtv.org/media_tree.git
15650 F: Documentation/devicetree/bindings/media/*venus*
15651 F: drivers/media/platform/qcom/venus/
15652
15653 QUALCOMM WCN36XX WIRELESS DRIVER
15654 M: Kalle Valo <kvalo@codeaurora.org>
15655 L: wcn36xx@lists.infradead.org
15656 S: Supported
15657 W: https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15658 T: git git://github.com/KrasnikovEugene/wcn36xx.git
15659 F: drivers/net/wireless/ath/wcn36xx/
15660
15661 QUANTENNA QTNFMAC WIRELESS DRIVER
15662 M: Igor Mitsyanko <imitsyanko@quantenna.com>
15663 R: Sergey Matyukevich <geomatsi@gmail.com>
15664 L: linux-wireless@vger.kernel.org
15665 S: Maintained
15666 F: drivers/net/wireless/quantenna
15667
15668 RADEON and AMDGPU DRM DRIVERS
15669 M: Alex Deucher <alexander.deucher@amd.com>
15670 M: Christian König <christian.koenig@amd.com>
15671 M: Pan, Xinhui <Xinhui.Pan@amd.com>
15672 L: amd-gfx@lists.freedesktop.org
15673 S: Supported
15674 T: git https://gitlab.freedesktop.org/agd5f/linux.git
15675 B: https://gitlab.freedesktop.org/drm/amd/-/issues
15676 C: irc://irc.oftc.net/radeon
15677 F: drivers/gpu/drm/amd/
15678 F: drivers/gpu/drm/radeon/
15679 F: include/uapi/drm/amdgpu_drm.h
15680 F: include/uapi/drm/radeon_drm.h
15681
15682 RADEON FRAMEBUFFER DISPLAY DRIVER
15683 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
15684 L: linux-fbdev@vger.kernel.org
15685 S: Maintained
15686 F: drivers/video/fbdev/aty/radeon*
15687 F: include/uapi/linux/radeonfb.h
15688
15689 RADIOSHARK RADIO DRIVER
15690 M: Hans Verkuil <hverkuil@xs4all.nl>
15691 L: linux-media@vger.kernel.org
15692 S: Maintained
15693 T: git git://linuxtv.org/media_tree.git
15694 F: drivers/media/radio/radio-shark.c
15695
15696 RADIOSHARK2 RADIO DRIVER
15697 M: Hans Verkuil <hverkuil@xs4all.nl>
15698 L: linux-media@vger.kernel.org
15699 S: Maintained
15700 T: git git://linuxtv.org/media_tree.git
15701 F: drivers/media/radio/radio-shark2.c
15702 F: drivers/media/radio/radio-tea5777.c
15703
15704 RADOS BLOCK DEVICE (RBD)
15705 M: Ilya Dryomov <idryomov@gmail.com>
15706 R: Dongsheng Yang <dongsheng.yang@easystack.cn>
15707 L: ceph-devel@vger.kernel.org
15708 S: Supported
15709 W: http://ceph.com/
15710 T: git git://github.com/ceph/ceph-client.git
15711 F: Documentation/ABI/testing/sysfs-bus-rbd
15712 F: drivers/block/rbd.c
15713 F: drivers/block/rbd_types.h
15714
15715 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15716 M: Paul Mackerras <paulus@samba.org>
15717 L: linux-fbdev@vger.kernel.org
15718 S: Maintained
15719 F: drivers/video/fbdev/aty/aty128fb.c
15720
15721 RAINSHADOW-CEC DRIVER
15722 M: Hans Verkuil <hverkuil@xs4all.nl>
15723 L: linux-media@vger.kernel.org
15724 S: Maintained
15725 T: git git://linuxtv.org/media_tree.git
15726 F: drivers/media/cec/usb/rainshadow/
15727
15728 RALINK MIPS ARCHITECTURE
15729 M: John Crispin <john@phrozen.org>
15730 L: linux-mips@vger.kernel.org
15731 S: Maintained
15732 F: arch/mips/ralink
15733
15734 RALINK RT2X00 WIRELESS LAN DRIVER
15735 M: Stanislaw Gruszka <stf_xl@wp.pl>
15736 M: Helmut Schaa <helmut.schaa@googlemail.com>
15737 L: linux-wireless@vger.kernel.org
15738 S: Maintained
15739 F: drivers/net/wireless/ralink/rt2x00/
15740
15741 RAMDISK RAM BLOCK DEVICE DRIVER
15742 M: Jens Axboe <axboe@kernel.dk>
15743 S: Maintained
15744 F: Documentation/admin-guide/blockdev/ramdisk.rst
15745 F: drivers/block/brd.c
15746
15747 RANCHU VIRTUAL BOARD FOR MIPS
15748 M: Miodrag Dinic <miodrag.dinic@mips.com>
15749 L: linux-mips@vger.kernel.org
15750 S: Supported
15751 F: arch/mips/configs/generic/board-ranchu.config
15752 F: arch/mips/generic/board-ranchu.c
15753
15754 RANDOM NUMBER DRIVER
15755 M: "Theodore Ts'o" <tytso@mit.edu>
15756 S: Maintained
15757 F: drivers/char/random.c
15758
15759 RAPIDIO SUBSYSTEM
15760 M: Matt Porter <mporter@kernel.crashing.org>
15761 M: Alexandre Bounine <alex.bou9@gmail.com>
15762 S: Maintained
15763 F: drivers/rapidio/
15764
15765 RAS INFRASTRUCTURE
15766 M: Tony Luck <tony.luck@intel.com>
15767 M: Borislav Petkov <bp@alien8.de>
15768 L: linux-edac@vger.kernel.org
15769 S: Maintained
15770 F: Documentation/admin-guide/ras.rst
15771 F: drivers/ras/
15772 F: include/linux/ras.h
15773 F: include/ras/ras_event.h
15774
15775 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15776 L: linux-wireless@vger.kernel.org
15777 S: Orphan
15778 F: drivers/net/wireless/ray*
15779
15780 RC-CORE / LIRC FRAMEWORK
15781 M: Sean Young <sean@mess.org>
15782 L: linux-media@vger.kernel.org
15783 S: Maintained
15784 W: http://linuxtv.org
15785 T: git git://linuxtv.org/media_tree.git
15786 F: Documentation/driver-api/media/rc-core.rst
15787 F: Documentation/userspace-api/media/rc/
15788 F: drivers/media/rc/
15789 F: include/media/rc-map.h
15790 F: include/media/rc-core.h
15791 F: include/uapi/linux/lirc.h
15792
15793 RCMM REMOTE CONTROLS DECODER
15794 M: Patrick Lerda <patrick9876@free.fr>
15795 S: Maintained
15796 F: drivers/media/rc/ir-rcmm-decoder.c
15797
15798 RCUTORTURE TEST FRAMEWORK
15799 M: "Paul E. McKenney" <paulmck@kernel.org>
15800 M: Josh Triplett <josh@joshtriplett.org>
15801 R: Steven Rostedt <rostedt@goodmis.org>
15802 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15803 R: Lai Jiangshan <jiangshanlai@gmail.com>
15804 L: rcu@vger.kernel.org
15805 S: Supported
15806 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15807 F: tools/testing/selftests/rcutorture
15808
15809 RDACM20 Camera Sensor
15810 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15811 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15812 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15813 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15814 L: linux-media@vger.kernel.org
15815 S: Maintained
15816 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15817 F: drivers/media/i2c/max9271.c
15818 F: drivers/media/i2c/max9271.h
15819 F: drivers/media/i2c/rdacm20.c
15820
15821 RDACM21 Camera Sensor
15822 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15823 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15824 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15825 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15826 L: linux-media@vger.kernel.org
15827 S: Maintained
15828 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15829 F: drivers/media/i2c/max9271.c
15830 F: drivers/media/i2c/max9271.h
15831 F: drivers/media/i2c/rdacm21.c
15832
15833 RDC R-321X SoC
15834 M: Florian Fainelli <florian@openwrt.org>
15835 S: Maintained
15836
15837 RDC R6040 FAST ETHERNET DRIVER
15838 M: Florian Fainelli <f.fainelli@gmail.com>
15839 L: netdev@vger.kernel.org
15840 S: Maintained
15841 F: drivers/net/ethernet/rdc/r6040.c
15842
15843 RDMAVT - RDMA verbs software
15844 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15845 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15846 L: linux-rdma@vger.kernel.org
15847 S: Supported
15848 F: drivers/infiniband/sw/rdmavt
15849
15850 RDS - RELIABLE DATAGRAM SOCKETS
15851 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
15852 L: netdev@vger.kernel.org
15853 L: linux-rdma@vger.kernel.org
15854 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
15855 S: Supported
15856 W: https://oss.oracle.com/projects/rds/
15857 F: Documentation/networking/rds.rst
15858 F: net/rds/
15859
15860 RDT - RESOURCE ALLOCATION
15861 M: Fenghua Yu <fenghua.yu@intel.com>
15862 M: Reinette Chatre <reinette.chatre@intel.com>
15863 L: linux-kernel@vger.kernel.org
15864 S: Supported
15865 F: Documentation/x86/resctrl*
15866 F: arch/x86/include/asm/resctrl.h
15867 F: arch/x86/kernel/cpu/resctrl/
15868 F: tools/testing/selftests/resctrl/
15869
15870 READ-COPY UPDATE (RCU)
15871 M: "Paul E. McKenney" <paulmck@kernel.org>
15872 M: Josh Triplett <josh@joshtriplett.org>
15873 R: Steven Rostedt <rostedt@goodmis.org>
15874 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15875 R: Lai Jiangshan <jiangshanlai@gmail.com>
15876 R: Joel Fernandes <joel@joelfernandes.org>
15877 L: rcu@vger.kernel.org
15878 S: Supported
15879 W: http://www.rdrop.com/users/paulmck/RCU/
15880 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15881 F: Documentation/RCU/
15882 F: include/linux/rcu*
15883 F: kernel/rcu/
15884 X: Documentation/RCU/torture.rst
15885 X: include/linux/srcu*.h
15886 X: kernel/rcu/srcu*.c
15887
15888 REAL TIME CLOCK (RTC) SUBSYSTEM
15889 M: Alessandro Zummo <a.zummo@towertech.it>
15890 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
15891 L: linux-rtc@vger.kernel.org
15892 S: Maintained
15893 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
15894 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15895 F: Documentation/admin-guide/rtc.rst
15896 F: Documentation/devicetree/bindings/rtc/
15897 F: drivers/rtc/
15898 F: include/linux/platform_data/rtc-*
15899 F: include/linux/rtc.h
15900 F: include/linux/rtc/
15901 F: include/uapi/linux/rtc.h
15902 F: tools/testing/selftests/rtc/
15903
15904 REALTEK AUDIO CODECS
15905 M: Oder Chiou <oder_chiou@realtek.com>
15906 S: Maintained
15907 F: include/sound/rt*.h
15908 F: sound/soc/codecs/rt*
15909
15910 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15911 M: Linus Walleij <linus.walleij@linaro.org>
15912 S: Maintained
15913 F: Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15914 F: drivers/net/dsa/realtek-smi*
15915 F: drivers/net/dsa/rtl83*
15916
15917 REALTEK WIRELESS DRIVER (rtlwifi family)
15918 M: Ping-Ke Shih <pkshih@realtek.com>
15919 L: linux-wireless@vger.kernel.org
15920 S: Maintained
15921 W: https://wireless.wiki.kernel.org/
15922 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15923 F: drivers/net/wireless/realtek/rtlwifi/
15924
15925 REALTEK WIRELESS DRIVER (rtw88)
15926 M: Yan-Hsuan Chuang <tony0620emma@gmail.com>
15927 L: linux-wireless@vger.kernel.org
15928 S: Maintained
15929 F: drivers/net/wireless/realtek/rtw88/
15930
15931 REDPINE WIRELESS DRIVER
15932 M: Amitkumar Karwar <amitkarwar@gmail.com>
15933 M: Siva Rebbagondla <siva8118@gmail.com>
15934 L: linux-wireless@vger.kernel.org
15935 S: Maintained
15936 F: drivers/net/wireless/rsi/
15937
15938 REGISTER MAP ABSTRACTION
15939 M: Mark Brown <broonie@kernel.org>
15940 L: linux-kernel@vger.kernel.org
15941 S: Supported
15942 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15943 F: Documentation/devicetree/bindings/regmap/
15944 F: drivers/base/regmap/
15945 F: include/linux/regmap.h
15946
15947 REISERFS FILE SYSTEM
15948 L: reiserfs-devel@vger.kernel.org
15949 S: Supported
15950 F: fs/reiserfs/
15951
15952 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15953 M: Ohad Ben-Cohen <ohad@wizery.com>
15954 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15955 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15956 L: linux-remoteproc@vger.kernel.org
15957 S: Maintained
15958 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15959 F: Documentation/ABI/testing/sysfs-class-remoteproc
15960 F: Documentation/devicetree/bindings/remoteproc/
15961 F: Documentation/staging/remoteproc.rst
15962 F: drivers/remoteproc/
15963 F: include/linux/remoteproc.h
15964 F: include/linux/remoteproc/
15965
15966 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15967 M: Ohad Ben-Cohen <ohad@wizery.com>
15968 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15969 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15970 L: linux-remoteproc@vger.kernel.org
15971 S: Maintained
15972 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15973 F: Documentation/ABI/testing/sysfs-bus-rpmsg
15974 F: Documentation/staging/rpmsg.rst
15975 F: drivers/rpmsg/
15976 F: include/linux/rpmsg.h
15977 F: include/linux/rpmsg/
15978 F: include/uapi/linux/rpmsg.h
15979 F: samples/rpmsg/
15980
15981 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15982 M: Stephan Gerhold <stephan@gerhold.net>
15983 L: netdev@vger.kernel.org
15984 L: linux-remoteproc@vger.kernel.org
15985 S: Maintained
15986 F: drivers/net/wwan/rpmsg_wwan_ctrl.c
15987
15988 RENESAS CLOCK DRIVERS
15989 M: Geert Uytterhoeven <geert+renesas@glider.be>
15990 L: linux-renesas-soc@vger.kernel.org
15991 S: Supported
15992 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15993 F: Documentation/devicetree/bindings/clock/renesas,*
15994 F: drivers/clk/renesas/
15995
15996 RENESAS EMEV2 I2C DRIVER
15997 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
15998 L: linux-renesas-soc@vger.kernel.org
15999 S: Supported
16000 F: Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16001 F: drivers/i2c/busses/i2c-emev2.c
16002
16003 RENESAS ETHERNET DRIVERS
16004 R: Sergey Shtylyov <s.shtylyov@omp.ru>
16005 L: netdev@vger.kernel.org
16006 L: linux-renesas-soc@vger.kernel.org
16007 F: Documentation/devicetree/bindings/net/renesas,*.yaml
16008 F: drivers/net/ethernet/renesas/
16009 F: include/linux/sh_eth.h
16010
16011 RENESAS R-CAR GYROADC DRIVER
16012 M: Marek Vasut <marek.vasut@gmail.com>
16013 L: linux-iio@vger.kernel.org
16014 S: Supported
16015 F: Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16016 F: drivers/iio/adc/rcar-gyroadc.c
16017
16018 RENESAS R-CAR I2C DRIVERS
16019 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
16020 L: linux-renesas-soc@vger.kernel.org
16021 S: Supported
16022 F: Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16023 F: Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16024 F: drivers/i2c/busses/i2c-rcar.c
16025 F: drivers/i2c/busses/i2c-sh_mobile.c
16026
16027 RENESAS R-CAR THERMAL DRIVERS
16028 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
16029 L: linux-renesas-soc@vger.kernel.org
16030 S: Supported
16031 F: Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16032 F: Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16033 F: drivers/thermal/rcar_gen3_thermal.c
16034 F: drivers/thermal/rcar_thermal.c
16035
16036 RENESAS RIIC DRIVER
16037 M: Chris Brandt <chris.brandt@renesas.com>
16038 L: linux-renesas-soc@vger.kernel.org
16039 S: Supported
16040 F: Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16041 F: drivers/i2c/busses/i2c-riic.c
16042
16043 RENESAS USB PHY DRIVER
16044 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16045 L: linux-renesas-soc@vger.kernel.org
16046 S: Maintained
16047 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
16048
16049 RENESAS RZ/G2L A/D DRIVER
16050 M: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16051 L: linux-iio@vger.kernel.org
16052 L: linux-renesas-soc@vger.kernel.org
16053 S: Supported
16054 F: Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16055 F: drivers/iio/adc/rzg2l_adc.c
16056
16057 RESET CONTROLLER FRAMEWORK
16058 M: Philipp Zabel <p.zabel@pengutronix.de>
16059 S: Maintained
16060 T: git git://git.pengutronix.de/git/pza/linux
16061 F: Documentation/devicetree/bindings/reset/
16062 F: Documentation/driver-api/reset.rst
16063 F: drivers/reset/
16064 F: include/dt-bindings/reset/
16065 F: include/linux/reset-controller.h
16066 F: include/linux/reset.h
16067 F: include/linux/reset/
16068 K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16069
16070 RESTARTABLE SEQUENCES SUPPORT
16071 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16072 M: Peter Zijlstra <peterz@infradead.org>
16073 M: "Paul E. McKenney" <paulmck@kernel.org>
16074 M: Boqun Feng <boqun.feng@gmail.com>
16075 L: linux-kernel@vger.kernel.org
16076 S: Supported
16077 F: include/trace/events/rseq.h
16078 F: include/uapi/linux/rseq.h
16079 F: kernel/rseq.c
16080 F: tools/testing/selftests/rseq/
16081
16082 RFKILL
16083 M: Johannes Berg <johannes@sipsolutions.net>
16084 L: linux-wireless@vger.kernel.org
16085 S: Maintained
16086 W: https://wireless.wiki.kernel.org/
16087 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16088 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16089 F: Documentation/ABI/stable/sysfs-class-rfkill
16090 F: Documentation/driver-api/rfkill.rst
16091 F: include/linux/rfkill.h
16092 F: include/uapi/linux/rfkill.h
16093 F: net/rfkill/
16094
16095 RHASHTABLE
16096 M: Thomas Graf <tgraf@suug.ch>
16097 M: Herbert Xu <herbert@gondor.apana.org.au>
16098 L: netdev@vger.kernel.org
16099 S: Maintained
16100 F: include/linux/rhashtable-types.h
16101 F: include/linux/rhashtable.h
16102 F: lib/rhashtable.c
16103 F: lib/test_rhashtable.c
16104
16105 RICOH R5C592 MEMORYSTICK DRIVER
16106 M: Maxim Levitsky <maximlevitsky@gmail.com>
16107 S: Maintained
16108 F: drivers/memstick/host/r592.*
16109
16110 RICOH SMARTMEDIA/XD DRIVER
16111 M: Maxim Levitsky <maximlevitsky@gmail.com>
16112 S: Maintained
16113 F: drivers/mtd/nand/raw/r852.c
16114 F: drivers/mtd/nand/raw/r852.h
16115
16116 RISC-V ARCHITECTURE
16117 M: Paul Walmsley <paul.walmsley@sifive.com>
16118 M: Palmer Dabbelt <palmer@dabbelt.com>
16119 M: Albert Ou <aou@eecs.berkeley.edu>
16120 L: linux-riscv@lists.infradead.org
16121 S: Supported
16122 P: Documentation/riscv/patch-acceptance.rst
16123 T: git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16124 F: arch/riscv/
16125 N: riscv
16126 K: riscv
16127
16128 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16129 M: Lewis Hanly <lewis.hanly@microchip.com>
16130 L: linux-riscv@lists.infradead.org
16131 S: Supported
16132 F: drivers/mailbox/mailbox-mpfs.c
16133 F: drivers/soc/microchip/
16134 F: include/soc/microchip/mpfs.h
16135
16136 RNBD BLOCK DRIVERS
16137 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16138 M: Jack Wang <jinpu.wang@ionos.com>
16139 L: linux-block@vger.kernel.org
16140 S: Maintained
16141 F: drivers/block/rnbd/
16142
16143 ROCCAT DRIVERS
16144 M: Stefan Achatz <erazor_de@users.sourceforge.net>
16145 S: Maintained
16146 W: http://sourceforge.net/projects/roccat/
16147 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
16148 F: drivers/hid/hid-roccat*
16149 F: include/linux/hid-roccat*
16150
16151 ROCKCHIP ISP V1 DRIVER
16152 M: Helen Koike <helen.koike@collabora.com>
16153 M: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16154 L: linux-media@vger.kernel.org
16155 L: linux-rockchip@lists.infradead.org
16156 S: Maintained
16157 F: Documentation/admin-guide/media/rkisp1.rst
16158 F: Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16159 F: Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16160 F: drivers/media/platform/rockchip/rkisp1
16161 F: include/uapi/linux/rkisp1-config.h
16162
16163 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16164 M: Jacob Chen <jacob-chen@iotwrt.com>
16165 M: Ezequiel Garcia <ezequiel@collabora.com>
16166 L: linux-media@vger.kernel.org
16167 L: linux-rockchip@lists.infradead.org
16168 S: Maintained
16169 F: Documentation/devicetree/bindings/media/rockchip-rga.yaml
16170 F: drivers/media/platform/rockchip/rga/
16171
16172 ROCKCHIP VIDEO DECODER DRIVER
16173 M: Ezequiel Garcia <ezequiel@collabora.com>
16174 L: linux-media@vger.kernel.org
16175 L: linux-rockchip@lists.infradead.org
16176 S: Maintained
16177 F: Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16178 F: drivers/staging/media/rkvdec/
16179
16180 ROCKER DRIVER
16181 M: Jiri Pirko <jiri@resnulli.us>
16182 L: netdev@vger.kernel.org
16183 S: Supported
16184 F: drivers/net/ethernet/rocker/
16185
16186 ROCKETPORT EXPRESS/INFINITY DRIVER
16187 M: Kevin Cernekee <cernekee@gmail.com>
16188 L: linux-serial@vger.kernel.org
16189 S: Odd Fixes
16190 F: drivers/tty/serial/rp2.*
16191
16192 ROHM BD99954 CHARGER IC
16193 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16194 L: linux-power@fi.rohmeurope.com
16195 S: Supported
16196 F: drivers/power/supply/bd99954-charger.c
16197 F: drivers/power/supply/bd99954-charger.h
16198
16199 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16200 M: Tomasz Duszynski <tduszyns@gmail.com>
16201 S: Maintained
16202 F: Documentation/devicetree/bindings/iio/light/bh1750.yaml
16203 F: drivers/iio/light/bh1750.c
16204
16205 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16206 M: Marek Vasut <marek.vasut+renesas@gmail.com>
16207 L: linux-kernel@vger.kernel.org
16208 L: linux-renesas-soc@vger.kernel.org
16209 S: Supported
16210 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16211 F: drivers/gpio/gpio-bd9571mwv.c
16212 F: drivers/mfd/bd9571mwv.c
16213 F: drivers/regulator/bd9571mwv-regulator.c
16214 F: include/linux/mfd/bd9571mwv.h
16215
16216 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16217 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16218 L: linux-power@fi.rohmeurope.com
16219 S: Supported
16220 F: Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16221 F: Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16222 F: drivers/clk/clk-bd718x7.c
16223 F: drivers/gpio/gpio-bd70528.c
16224 F: drivers/gpio/gpio-bd71815.c
16225 F: drivers/gpio/gpio-bd71828.c
16226 F: drivers/mfd/rohm-bd70528.c
16227 F: drivers/mfd/rohm-bd71828.c
16228 F: drivers/mfd/rohm-bd718x7.c
16229 F: drivers/mfd/rohm-bd9576.c
16230 F: drivers/power/supply/bd70528-charger.c
16231 F: drivers/regulator/bd70528-regulator.c
16232 F: drivers/regulator/bd71815-regulator.c
16233 F: drivers/regulator/bd71828-regulator.c
16234 F: drivers/regulator/bd718x7-regulator.c
16235 F: drivers/regulator/bd9576-regulator.c
16236 F: drivers/regulator/rohm-regulator.c
16237 F: drivers/rtc/rtc-bd70528.c
16238 F: drivers/watchdog/bd70528_wdt.c
16239 F: drivers/watchdog/bd9576_wdt.c
16240 F: include/linux/mfd/rohm-bd70528.h
16241 F: include/linux/mfd/rohm-bd71815.h
16242 F: include/linux/mfd/rohm-bd71828.h
16243 F: include/linux/mfd/rohm-bd718x7.h
16244 F: include/linux/mfd/rohm-bd957x.h
16245 F: include/linux/mfd/rohm-generic.h
16246 F: include/linux/mfd/rohm-shared.h
16247
16248 ROSE NETWORK LAYER
16249 M: Ralf Baechle <ralf@linux-mips.org>
16250 L: linux-hams@vger.kernel.org
16251 S: Maintained
16252 W: http://www.linux-ax25.org/
16253 F: include/net/rose.h
16254 F: include/uapi/linux/rose.h
16255 F: net/rose/
16256
16257 ROTATION DRIVER FOR ALLWINNER A83T
16258 M: Jernej Skrabec <jernej.skrabec@gmail.com>
16259 L: linux-media@vger.kernel.org
16260 S: Maintained
16261 T: git git://linuxtv.org/media_tree.git
16262 F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16263 F: drivers/media/platform/sunxi/sun8i-rotate/
16264
16265 RTL2830 MEDIA DRIVER
16266 M: Antti Palosaari <crope@iki.fi>
16267 L: linux-media@vger.kernel.org
16268 S: Maintained
16269 W: https://linuxtv.org
16270 W: http://palosaari.fi/linux/
16271 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16272 T: git git://linuxtv.org/anttip/media_tree.git
16273 F: drivers/media/dvb-frontends/rtl2830*
16274
16275 RTL2832 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/rtl2832*
16284
16285 RTL2832_SDR 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_sdr*
16294
16295 RTL8180 WIRELESS DRIVER
16296 L: linux-wireless@vger.kernel.org
16297 S: Orphan
16298 W: https://wireless.wiki.kernel.org/
16299 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16300 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
16301
16302 RTL8187 WIRELESS DRIVER
16303 M: Herton Ronaldo Krzesinski <herton@canonical.com>
16304 M: Hin-Tak Leung <htl10@users.sourceforge.net>
16305 M: Larry Finger <Larry.Finger@lwfinger.net>
16306 L: linux-wireless@vger.kernel.org
16307 S: Maintained
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/rtl8187/
16311
16312 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16313 M: Jes Sorensen <Jes.Sorensen@gmail.com>
16314 L: linux-wireless@vger.kernel.org
16315 S: Maintained
16316 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16317 F: drivers/net/wireless/realtek/rtl8xxxu/
16318
16319 RTRS TRANSPORT DRIVERS
16320 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16321 M: Jack Wang <jinpu.wang@ionos.com>
16322 L: linux-rdma@vger.kernel.org
16323 S: Maintained
16324 F: drivers/infiniband/ulp/rtrs/
16325
16326 RXRPC SOCKETS (AF_RXRPC)
16327 M: David Howells <dhowells@redhat.com>
16328 M: Marc Dionne <marc.dionne@auristor.com>
16329 L: linux-afs@lists.infradead.org
16330 S: Supported
16331 W: https://www.infradead.org/~dhowells/kafs/
16332 F: Documentation/networking/rxrpc.rst
16333 F: include/keys/rxrpc-type.h
16334 F: include/net/af_rxrpc.h
16335 F: include/trace/events/rxrpc.h
16336 F: include/uapi/linux/rxrpc.h
16337 F: net/rxrpc/
16338
16339 S3 SAVAGE FRAMEBUFFER DRIVER
16340 M: Antonino Daplas <adaplas@gmail.com>
16341 L: linux-fbdev@vger.kernel.org
16342 S: Maintained
16343 F: drivers/video/fbdev/savage/
16344
16345 S390
16346 M: Heiko Carstens <hca@linux.ibm.com>
16347 M: Vasily Gorbik <gor@linux.ibm.com>
16348 M: Christian Borntraeger <borntraeger@de.ibm.com>
16349 R: Alexander Gordeev <agordeev@linux.ibm.com>
16350 L: linux-s390@vger.kernel.org
16351 S: Supported
16352 W: http://www.ibm.com/developerworks/linux/linux390/
16353 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16354 F: Documentation/driver-api/s390-drivers.rst
16355 F: Documentation/s390/
16356 F: arch/s390/
16357 F: drivers/s390/
16358
16359 S390 COMMON I/O LAYER
16360 M: Vineeth Vijayan <vneethv@linux.ibm.com>
16361 M: Peter Oberparleiter <oberpar@linux.ibm.com>
16362 L: linux-s390@vger.kernel.org
16363 S: Supported
16364 W: http://www.ibm.com/developerworks/linux/linux390/
16365 F: drivers/s390/cio/
16366
16367 S390 DASD DRIVER
16368 M: Stefan Haberland <sth@linux.ibm.com>
16369 M: Jan Hoeppner <hoeppner@linux.ibm.com>
16370 L: linux-s390@vger.kernel.org
16371 S: Supported
16372 W: http://www.ibm.com/developerworks/linux/linux390/
16373 F: block/partitions/ibm.c
16374 F: drivers/s390/block/dasd*
16375 F: include/linux/dasd_mod.h
16376
16377 S390 IOMMU (PCI)
16378 M: Matthew Rosato <mjrosato@linux.ibm.com>
16379 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16380 L: linux-s390@vger.kernel.org
16381 S: Supported
16382 W: http://www.ibm.com/developerworks/linux/linux390/
16383 F: drivers/iommu/s390-iommu.c
16384
16385 S390 IUCV NETWORK LAYER
16386 M: Julian Wiedmann <jwi@linux.ibm.com>
16387 M: Karsten Graul <kgraul@linux.ibm.com>
16388 L: linux-s390@vger.kernel.org
16389 L: netdev@vger.kernel.org
16390 S: Supported
16391 W: http://www.ibm.com/developerworks/linux/linux390/
16392 F: drivers/s390/net/*iucv*
16393 F: include/net/iucv/
16394 F: net/iucv/
16395
16396 S390 NETWORK DRIVERS
16397 M: Julian Wiedmann <jwi@linux.ibm.com>
16398 M: Karsten Graul <kgraul@linux.ibm.com>
16399 L: linux-s390@vger.kernel.org
16400 L: netdev@vger.kernel.org
16401 S: Supported
16402 W: http://www.ibm.com/developerworks/linux/linux390/
16403 F: drivers/s390/net/
16404
16405 S390 PCI SUBSYSTEM
16406 M: Niklas Schnelle <schnelle@linux.ibm.com>
16407 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16408 L: linux-s390@vger.kernel.org
16409 S: Supported
16410 W: http://www.ibm.com/developerworks/linux/linux390/
16411 F: arch/s390/pci/
16412 F: drivers/pci/hotplug/s390_pci_hpc.c
16413 F: Documentation/s390/pci.rst
16414
16415 S390 VFIO AP DRIVER
16416 M: Tony Krowiak <akrowiak@linux.ibm.com>
16417 M: Halil Pasic <pasic@linux.ibm.com>
16418 M: Jason Herne <jjherne@linux.ibm.com>
16419 L: linux-s390@vger.kernel.org
16420 S: Supported
16421 W: http://www.ibm.com/developerworks/linux/linux390/
16422 F: Documentation/s390/vfio-ap.rst
16423 F: drivers/s390/crypto/vfio_ap_drv.c
16424 F: drivers/s390/crypto/vfio_ap_ops.c
16425 F: drivers/s390/crypto/vfio_ap_private.h
16426
16427 S390 VFIO-CCW DRIVER
16428 M: Eric Farman <farman@linux.ibm.com>
16429 M: Matthew Rosato <mjrosato@linux.ibm.com>
16430 R: Halil Pasic <pasic@linux.ibm.com>
16431 L: linux-s390@vger.kernel.org
16432 L: kvm@vger.kernel.org
16433 S: Supported
16434 F: Documentation/s390/vfio-ccw.rst
16435 F: drivers/s390/cio/vfio_ccw*
16436 F: include/uapi/linux/vfio_ccw.h
16437
16438 S390 VFIO-PCI DRIVER
16439 M: Matthew Rosato <mjrosato@linux.ibm.com>
16440 M: Eric Farman <farman@linux.ibm.com>
16441 L: linux-s390@vger.kernel.org
16442 L: kvm@vger.kernel.org
16443 S: Supported
16444 F: drivers/vfio/pci/vfio_pci_zdev.c
16445 F: include/uapi/linux/vfio_zdev.h
16446
16447 S390 ZCRYPT DRIVER
16448 M: Harald Freudenberger <freude@linux.ibm.com>
16449 L: linux-s390@vger.kernel.org
16450 S: Supported
16451 W: http://www.ibm.com/developerworks/linux/linux390/
16452 F: drivers/s390/crypto/
16453
16454 S390 ZFCP DRIVER
16455 M: Steffen Maier <maier@linux.ibm.com>
16456 M: Benjamin Block <bblock@linux.ibm.com>
16457 L: linux-s390@vger.kernel.org
16458 S: Supported
16459 W: http://www.ibm.com/developerworks/linux/linux390/
16460 F: drivers/s390/scsi/zfcp_*
16461
16462 S3C ADC BATTERY DRIVER
16463 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16464 L: linux-samsung-soc@vger.kernel.org
16465 S: Odd Fixes
16466 F: drivers/power/supply/s3c_adc_battery.c
16467 F: include/linux/s3c_adc_battery.h
16468
16469 S3C24XX SD/MMC Driver
16470 M: Ben Dooks <ben-linux@fluff.org>
16471 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16472 S: Supported
16473 F: drivers/mmc/host/s3cmci.*
16474
16475 SAA6588 RDS RECEIVER DRIVER
16476 M: Hans Verkuil <hverkuil@xs4all.nl>
16477 L: linux-media@vger.kernel.org
16478 S: Odd Fixes
16479 W: https://linuxtv.org
16480 T: git git://linuxtv.org/media_tree.git
16481 F: drivers/media/i2c/saa6588*
16482
16483 SAA7134 VIDEO4LINUX DRIVER
16484 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16485 L: linux-media@vger.kernel.org
16486 S: Odd fixes
16487 W: https://linuxtv.org
16488 T: git git://linuxtv.org/media_tree.git
16489 F: Documentation/driver-api/media/drivers/saa7134*
16490 F: drivers/media/pci/saa7134/
16491
16492 SAA7146 VIDEO4LINUX-2 DRIVER
16493 M: Hans Verkuil <hverkuil@xs4all.nl>
16494 L: linux-media@vger.kernel.org
16495 S: Maintained
16496 T: git git://linuxtv.org/media_tree.git
16497 F: drivers/media/common/saa7146/
16498 F: drivers/media/pci/saa7146/
16499 F: include/media/drv-intf/saa7146*
16500
16501 SAFESETID SECURITY MODULE
16502 M: Micah Morton <mortonm@chromium.org>
16503 S: Supported
16504 F: Documentation/admin-guide/LSM/SafeSetID.rst
16505 F: security/safesetid/
16506
16507 SAMSUNG AUDIO (ASoC) DRIVERS
16508 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16509 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16510 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16511 S: Supported
16512 F: Documentation/devicetree/bindings/sound/samsung*
16513 F: sound/soc/samsung/
16514
16515 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16516 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16517 L: linux-crypto@vger.kernel.org
16518 L: linux-samsung-soc@vger.kernel.org
16519 S: Maintained
16520 F: Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16521 F: drivers/crypto/exynos-rng.c
16522
16523 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16524 M: Łukasz Stelmach <l.stelmach@samsung.com>
16525 L: linux-samsung-soc@vger.kernel.org
16526 S: Maintained
16527 F: Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16528 F: drivers/char/hw_random/exynos-trng.c
16529
16530 SAMSUNG FRAMEBUFFER DRIVER
16531 M: Jingoo Han <jingoohan1@gmail.com>
16532 L: linux-fbdev@vger.kernel.org
16533 S: Maintained
16534 F: drivers/video/fbdev/s3c-fb.c
16535
16536 SAMSUNG INTERCONNECT DRIVERS
16537 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16538 M: Artur Świgoń <a.swigon@samsung.com>
16539 L: linux-pm@vger.kernel.org
16540 L: linux-samsung-soc@vger.kernel.org
16541 S: Supported
16542 F: drivers/interconnect/samsung/
16543
16544 SAMSUNG LAPTOP DRIVER
16545 M: Corentin Chary <corentin.chary@gmail.com>
16546 L: platform-driver-x86@vger.kernel.org
16547 S: Maintained
16548 F: drivers/platform/x86/samsung-laptop.c
16549
16550 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16551 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16552 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16553 L: linux-kernel@vger.kernel.org
16554 L: linux-samsung-soc@vger.kernel.org
16555 S: Supported
16556 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16557 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16558 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16559 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16560 F: drivers/clk/clk-s2mps11.c
16561 F: drivers/mfd/sec*.c
16562 F: drivers/regulator/s2m*.c
16563 F: drivers/regulator/s5m*.c
16564 F: drivers/rtc/rtc-s5m.c
16565 F: include/linux/mfd/samsung/
16566
16567 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16568 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16569 L: linux-media@vger.kernel.org
16570 L: linux-samsung-soc@vger.kernel.org
16571 S: Maintained
16572 F: drivers/media/platform/s3c-camif/
16573 F: include/media/drv-intf/s3c_camif.h
16574
16575 SAMSUNG S3FWRN5 NFC DRIVER
16576 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16577 M: Krzysztof Opasiak <k.opasiak@samsung.com>
16578 L: linux-nfc@lists.01.org (subscribers-only)
16579 S: Maintained
16580 F: Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16581 F: drivers/nfc/s3fwrn5
16582
16583 SAMSUNG S5C73M3 CAMERA DRIVER
16584 M: Andrzej Hajda <a.hajda@samsung.com>
16585 L: linux-media@vger.kernel.org
16586 S: Supported
16587 F: drivers/media/i2c/s5c73m3/*
16588
16589 SAMSUNG S5K5BAF CAMERA DRIVER
16590 M: Andrzej Hajda <a.hajda@samsung.com>
16591 L: linux-media@vger.kernel.org
16592 S: Supported
16593 F: drivers/media/i2c/s5k5baf.c
16594
16595 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16596 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16597 M: Vladimir Zapolskiy <vz@mleia.com>
16598 L: linux-crypto@vger.kernel.org
16599 L: linux-samsung-soc@vger.kernel.org
16600 S: Maintained
16601 F: Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16602 F: Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16603 F: drivers/crypto/s5p-sss.c
16604
16605 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16606 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16607 L: linux-media@vger.kernel.org
16608 S: Supported
16609 Q: https://patchwork.linuxtv.org/project/linux-media/list/
16610 F: drivers/media/platform/exynos4-is/
16611
16612 SAMSUNG SOC CLOCK DRIVERS
16613 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16614 M: Tomasz Figa <tomasz.figa@gmail.com>
16615 M: Chanwoo Choi <cw00.choi@samsung.com>
16616 L: linux-samsung-soc@vger.kernel.org
16617 S: Supported
16618 T: git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16619 F: Documentation/devicetree/bindings/clock/exynos*.txt
16620 F: Documentation/devicetree/bindings/clock/samsung,*.yaml
16621 F: Documentation/devicetree/bindings/clock/samsung,s3c*
16622 F: Documentation/devicetree/bindings/clock/samsung,s5p*
16623 F: drivers/clk/samsung/
16624 F: include/dt-bindings/clock/exynos*.h
16625 F: include/dt-bindings/clock/s3c*.h
16626 F: include/dt-bindings/clock/s5p*.h
16627 F: include/dt-bindings/clock/samsung,*.h
16628 F: include/linux/clk/samsung.h
16629 F: include/linux/platform_data/clk-s3c2410.h
16630
16631 SAMSUNG SPI DRIVERS
16632 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16633 M: Andi Shyti <andi@etezian.org>
16634 L: linux-spi@vger.kernel.org
16635 L: linux-samsung-soc@vger.kernel.org
16636 S: Maintained
16637 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
16638 F: drivers/spi/spi-s3c*
16639 F: include/linux/platform_data/spi-s3c64xx.h
16640 F: include/linux/spi/s3c24xx-fiq.h
16641
16642 SAMSUNG SXGBE DRIVERS
16643 M: Byungho An <bh74.an@samsung.com>
16644 L: netdev@vger.kernel.org
16645 S: Supported
16646 F: drivers/net/ethernet/samsung/sxgbe/
16647
16648 SAMSUNG THERMAL DRIVER
16649 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16650 L: linux-pm@vger.kernel.org
16651 L: linux-samsung-soc@vger.kernel.org
16652 S: Supported
16653 T: git https://github.com/lmajewski/linux-samsung-thermal.git
16654 F: drivers/thermal/samsung/
16655
16656 SAMSUNG USB2 PHY DRIVER
16657 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16658 L: linux-kernel@vger.kernel.org
16659 S: Supported
16660 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
16661 F: Documentation/driver-api/phy/samsung-usb2.rst
16662 F: drivers/phy/samsung/phy-exynos4210-usb2.c
16663 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
16664 F: drivers/phy/samsung/phy-exynos5250-usb2.c
16665 F: drivers/phy/samsung/phy-s5pv210-usb2.c
16666 F: drivers/phy/samsung/phy-samsung-usb2.c
16667 F: drivers/phy/samsung/phy-samsung-usb2.h
16668
16669 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16670 M: Paul Barker <paul.barker@sancloud.com>
16671 R: Marc Murphy <marc.murphy@sancloud.com>
16672 S: Supported
16673 F: arch/arm/boot/dts/am335x-sancloud*
16674
16675 SC1200 WDT DRIVER
16676 M: Zwane Mwaikambo <zwanem@gmail.com>
16677 S: Maintained
16678 F: drivers/watchdog/sc1200wdt.c
16679
16680 SCHEDULER
16681 M: Ingo Molnar <mingo@redhat.com>
16682 M: Peter Zijlstra <peterz@infradead.org>
16683 M: Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16684 M: Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16685 R: Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16686 R: Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16687 R: Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16688 R: Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16689 R: Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16690 L: linux-kernel@vger.kernel.org
16691 S: Maintained
16692 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16693 F: include/linux/preempt.h
16694 F: include/linux/sched.h
16695 F: include/linux/wait.h
16696 F: include/uapi/linux/sched.h
16697 F: kernel/sched/
16698
16699 SCR24X CHIP CARD INTERFACE DRIVER
16700 M: Lubomir Rintel <lkundrak@v3.sk>
16701 S: Supported
16702 F: drivers/char/pcmcia/scr24x_cs.c
16703
16704 SCSI RDMA PROTOCOL (SRP) INITIATOR
16705 M: Bart Van Assche <bvanassche@acm.org>
16706 L: linux-rdma@vger.kernel.org
16707 S: Supported
16708 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16709 F: drivers/infiniband/ulp/srp/
16710 F: include/scsi/srp.h
16711
16712 SCSI RDMA PROTOCOL (SRP) TARGET
16713 M: Bart Van Assche <bvanassche@acm.org>
16714 L: linux-rdma@vger.kernel.org
16715 L: target-devel@vger.kernel.org
16716 S: Supported
16717 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16718 F: drivers/infiniband/ulp/srpt/
16719
16720 SCSI SG DRIVER
16721 M: Doug Gilbert <dgilbert@interlog.com>
16722 L: linux-scsi@vger.kernel.org
16723 S: Maintained
16724 W: http://sg.danny.cz/sg
16725 F: Documentation/scsi/scsi-generic.rst
16726 F: drivers/scsi/sg.c
16727 F: include/scsi/sg.h
16728
16729 SCSI SUBSYSTEM
16730 M: "James E.J. Bottomley" <jejb@linux.ibm.com>
16731 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16732 L: linux-scsi@vger.kernel.org
16733 S: Maintained
16734 Q: https://patchwork.kernel.org/project/linux-scsi/list/
16735 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16736 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16737 F: Documentation/devicetree/bindings/scsi/
16738 F: drivers/scsi/
16739 F: include/scsi/
16740
16741 SCSI TAPE DRIVER
16742 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16743 L: linux-scsi@vger.kernel.org
16744 S: Maintained
16745 F: Documentation/scsi/st.rst
16746 F: drivers/scsi/st.*
16747 F: drivers/scsi/st_*.h
16748
16749 SCSI TARGET CORE USER DRIVER
16750 M: Bodo Stroesser <bostroesser@gmail.com>
16751 L: linux-scsi@vger.kernel.org
16752 L: target-devel@vger.kernel.org
16753 S: Supported
16754 F: Documentation/target/tcmu-design.rst
16755 F: drivers/target/target_core_user.c
16756 F: include/uapi/linux/target_core_user.h
16757
16758 SCSI TARGET SUBSYSTEM
16759 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16760 L: linux-scsi@vger.kernel.org
16761 L: target-devel@vger.kernel.org
16762 S: Supported
16763 W: http://www.linux-iscsi.org
16764 Q: https://patchwork.kernel.org/project/target-devel/list/
16765 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16766 F: Documentation/target/
16767 F: drivers/target/
16768 F: include/target/
16769
16770 SCTP PROTOCOL
16771 M: Vlad Yasevich <vyasevich@gmail.com>
16772 M: Neil Horman <nhorman@tuxdriver.com>
16773 M: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16774 L: linux-sctp@vger.kernel.org
16775 S: Maintained
16776 W: http://lksctp.sourceforge.net
16777 F: Documentation/networking/sctp.rst
16778 F: include/linux/sctp.h
16779 F: include/net/sctp/
16780 F: include/uapi/linux/sctp.h
16781 F: net/sctp/
16782
16783 SCx200 CPU SUPPORT
16784 M: Jim Cromie <jim.cromie@gmail.com>
16785 S: Odd Fixes
16786 F: Documentation/i2c/busses/scx200_acb.rst
16787 F: arch/x86/platform/scx200/
16788 F: drivers/i2c/busses/scx200*
16789 F: drivers/mtd/maps/scx200_docflash.c
16790 F: drivers/watchdog/scx200_wdt.c
16791 F: include/linux/scx200.h
16792
16793 SCx200 GPIO DRIVER
16794 M: Jim Cromie <jim.cromie@gmail.com>
16795 S: Maintained
16796 F: drivers/char/scx200_gpio.c
16797 F: include/linux/scx200_gpio.h
16798
16799 SCx200 HRT CLOCKSOURCE DRIVER
16800 M: Jim Cromie <jim.cromie@gmail.com>
16801 S: Maintained
16802 F: drivers/clocksource/scx200_hrt.c
16803
16804 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16805 M: Sascha Sommer <saschasommer@freenet.de>
16806 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16807 S: Maintained
16808 F: drivers/mmc/host/sdricoh_cs.c
16809
16810 SECO BOARDS CEC DRIVER
16811 M: Ettore Chimenti <ek5.chimenti@gmail.com>
16812 S: Maintained
16813 F: drivers/media/cec/platform/seco/seco-cec.c
16814 F: drivers/media/cec/platform/seco/seco-cec.h
16815
16816 SECURE COMPUTING
16817 M: Kees Cook <keescook@chromium.org>
16818 R: Andy Lutomirski <luto@amacapital.net>
16819 R: Will Drewry <wad@chromium.org>
16820 S: Supported
16821 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16822 F: Documentation/userspace-api/seccomp_filter.rst
16823 F: include/linux/seccomp.h
16824 F: include/uapi/linux/seccomp.h
16825 F: kernel/seccomp.c
16826 F: tools/testing/selftests/kselftest_harness.h
16827 F: tools/testing/selftests/seccomp/*
16828 K: \bsecure_computing
16829 K: \bTIF_SECCOMP\b
16830
16831 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16832 M: Al Cooper <alcooperx@gmail.com>
16833 L: linux-mmc@vger.kernel.org
16834 L: bcm-kernel-feedback-list@broadcom.com
16835 S: Maintained
16836 F: drivers/mmc/host/sdhci-brcmstb*
16837
16838 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16839 M: Adrian Hunter <adrian.hunter@intel.com>
16840 L: linux-mmc@vger.kernel.org
16841 S: Maintained
16842 F: drivers/mmc/host/sdhci*
16843 F: include/linux/mmc/sdhci*
16844
16845 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16846 M: Eugen Hristev <eugen.hristev@microchip.com>
16847 L: linux-mmc@vger.kernel.org
16848 S: Supported
16849 F: drivers/mmc/host/sdhci-of-at91.c
16850
16851 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16852 M: Ben Dooks <ben-linux@fluff.org>
16853 M: Jaehoon Chung <jh80.chung@samsung.com>
16854 L: linux-mmc@vger.kernel.org
16855 S: Maintained
16856 F: drivers/mmc/host/sdhci-s3c*
16857
16858 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16859 M: Viresh Kumar <vireshk@kernel.org>
16860 L: linux-mmc@vger.kernel.org
16861 S: Maintained
16862 F: drivers/mmc/host/sdhci-spear.c
16863
16864 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16865 M: Kishon Vijay Abraham I <kishon@ti.com>
16866 L: linux-mmc@vger.kernel.org
16867 S: Maintained
16868 F: drivers/mmc/host/sdhci-omap.c
16869
16870 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16871 M: Jonathan Derrick <jonathan.derrick@intel.com>
16872 M: Revanth Rajashekar <revanth.rajashekar@intel.com>
16873 L: linux-block@vger.kernel.org
16874 S: Supported
16875 F: block/opal_proto.h
16876 F: block/sed*
16877 F: include/linux/sed*
16878 F: include/uapi/linux/sed*
16879
16880 SECURITY CONTACT
16881 M: Security Officers <security@kernel.org>
16882 S: Supported
16883 F: Documentation/admin-guide/security-bugs.rst
16884
16885 SECURITY SUBSYSTEM
16886 M: James Morris <jmorris@namei.org>
16887 M: "Serge E. Hallyn" <serge@hallyn.com>
16888 L: linux-security-module@vger.kernel.org (suggested Cc:)
16889 S: Supported
16890 W: http://kernsec.org/
16891 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16892 F: security/
16893 X: security/selinux/
16894
16895 SELINUX SECURITY MODULE
16896 M: Paul Moore <paul@paul-moore.com>
16897 M: Stephen Smalley <stephen.smalley.work@gmail.com>
16898 M: Eric Paris <eparis@parisplace.org>
16899 L: selinux@vger.kernel.org
16900 S: Supported
16901 W: https://selinuxproject.org
16902 W: https://github.com/SELinuxProject
16903 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16904 F: Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16905 F: Documentation/ABI/obsolete/sysfs-selinux-disable
16906 F: Documentation/admin-guide/LSM/SELinux.rst
16907 F: include/trace/events/avc.h
16908 F: include/uapi/linux/selinux_netlink.h
16909 F: scripts/selinux/
16910 F: security/selinux/
16911
16912 SENSABLE PHANTOM
16913 M: Jiri Slaby <jirislaby@kernel.org>
16914 S: Maintained
16915 F: drivers/misc/phantom.c
16916 F: include/uapi/linux/phantom.h
16917
16918 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16919 M: Tomasz Duszynski <tomasz.duszynski@octakon.com>
16920 S: Maintained
16921 F: Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16922 F: drivers/iio/chemical/scd30.h
16923 F: drivers/iio/chemical/scd30_core.c
16924 F: drivers/iio/chemical/scd30_i2c.c
16925 F: drivers/iio/chemical/scd30_serial.c
16926
16927 SENSIRION SGP40 GAS SENSOR DRIVER
16928 M: Andreas Klinger <ak@it-klinger.de>
16929 S: Maintained
16930 F: Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16931 F: drivers/iio/chemical/sgp40.c
16932
16933 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16934 M: Tomasz Duszynski <tduszyns@gmail.com>
16935 S: Maintained
16936 F: Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16937 F: drivers/iio/chemical/sps30.c
16938 F: drivers/iio/chemical/sps30_i2c.c
16939 F: drivers/iio/chemical/sps30_serial.c
16940
16941 SERIAL DEVICE BUS
16942 M: Rob Herring <robh@kernel.org>
16943 L: linux-serial@vger.kernel.org
16944 S: Maintained
16945 F: Documentation/devicetree/bindings/serial/serial.yaml
16946 F: drivers/tty/serdev/
16947 F: include/linux/serdev.h
16948
16949 SERIAL DRIVERS
16950 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16951 L: linux-serial@vger.kernel.org
16952 S: Maintained
16953 F: Documentation/devicetree/bindings/serial/
16954 F: drivers/tty/serial/
16955
16956 SERIAL IR RECEIVER
16957 M: Sean Young <sean@mess.org>
16958 L: linux-media@vger.kernel.org
16959 S: Maintained
16960 F: drivers/media/rc/serial_ir.c
16961
16962 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16963 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16964 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16965 S: Maintained
16966 F: Documentation/devicetree/bindings/slimbus/
16967 F: drivers/slimbus/
16968 F: include/linux/slimbus.h
16969
16970 SFC NETWORK DRIVER
16971 M: Edward Cree <ecree.xilinx@gmail.com>
16972 M: Martin Habets <habetsm.xilinx@gmail.com>
16973 L: netdev@vger.kernel.org
16974 S: Supported
16975 F: drivers/net/ethernet/sfc/
16976
16977 SFF/SFP/SFP+ MODULE SUPPORT
16978 M: Russell King <linux@armlinux.org.uk>
16979 L: netdev@vger.kernel.org
16980 S: Maintained
16981 F: drivers/net/phy/phylink.c
16982 F: drivers/net/phy/sfp*
16983 F: include/linux/mdio/mdio-i2c.h
16984 F: include/linux/phylink.h
16985 F: include/linux/sfp.h
16986 K: phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
16987
16988 SGI GRU DRIVER
16989 M: Dimitri Sivanich <dimitri.sivanich@hpe.com>
16990 S: Maintained
16991 F: drivers/misc/sgi-gru/
16992
16993 SGI XP/XPC/XPNET DRIVER
16994 M: Robin Holt <robinmholt@gmail.com>
16995 M: Steve Wahl <steve.wahl@hpe.com>
16996 R: Mike Travis <mike.travis@hpe.com>
16997 S: Maintained
16998 F: drivers/misc/sgi-xp/
16999
17000 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17001 M: Karsten Graul <kgraul@linux.ibm.com>
17002 L: linux-s390@vger.kernel.org
17003 S: Supported
17004 W: http://www.ibm.com/developerworks/linux/linux390/
17005 F: net/smc/
17006
17007 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17008 M: Linus Walleij <linus.walleij@linaro.org>
17009 L: linux-iio@vger.kernel.org
17010 S: Maintained
17011 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17012 F: Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17013 F: drivers/iio/light/gp2ap002.c
17014
17015 SHARP RJ54N1CB0C SENSOR DRIVER
17016 M: Jacopo Mondi <jacopo@jmondi.org>
17017 L: linux-media@vger.kernel.org
17018 S: Odd fixes
17019 T: git git://linuxtv.org/media_tree.git
17020 F: drivers/media/i2c/rj54n1cb0c.c
17021 F: include/media/i2c/rj54n1cb0c.h
17022
17023 SH_VOU V4L2 OUTPUT DRIVER
17024 L: linux-media@vger.kernel.org
17025 S: Orphan
17026 F: drivers/media/platform/sh_vou.c
17027 F: include/media/drv-intf/sh_vou.h
17028
17029 SI2157 MEDIA DRIVER
17030 M: Antti Palosaari <crope@iki.fi>
17031 L: linux-media@vger.kernel.org
17032 S: Maintained
17033 W: https://linuxtv.org
17034 W: http://palosaari.fi/linux/
17035 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17036 T: git git://linuxtv.org/anttip/media_tree.git
17037 F: drivers/media/tuners/si2157*
17038
17039 SI2165 MEDIA DRIVER
17040 M: Matthias Schwarzott <zzam@gentoo.org>
17041 L: linux-media@vger.kernel.org
17042 S: Maintained
17043 W: https://linuxtv.org
17044 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17045 F: drivers/media/dvb-frontends/si2165*
17046
17047 SI2168 MEDIA DRIVER
17048 M: Antti Palosaari <crope@iki.fi>
17049 L: linux-media@vger.kernel.org
17050 S: Maintained
17051 W: https://linuxtv.org
17052 W: http://palosaari.fi/linux/
17053 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17054 T: git git://linuxtv.org/anttip/media_tree.git
17055 F: drivers/media/dvb-frontends/si2168*
17056
17057 SI470X FM RADIO RECEIVER I2C DRIVER
17058 M: Hans Verkuil <hverkuil@xs4all.nl>
17059 L: linux-media@vger.kernel.org
17060 S: Odd Fixes
17061 W: https://linuxtv.org
17062 T: git git://linuxtv.org/media_tree.git
17063 F: drivers/media/radio/si470x/radio-si470x-i2c.c
17064
17065 SI470X FM RADIO RECEIVER USB DRIVER
17066 M: Hans Verkuil <hverkuil@xs4all.nl>
17067 L: linux-media@vger.kernel.org
17068 S: Maintained
17069 W: https://linuxtv.org
17070 T: git git://linuxtv.org/media_tree.git
17071 F: drivers/media/radio/si470x/radio-si470x-common.c
17072 F: drivers/media/radio/si470x/radio-si470x-usb.c
17073 F: drivers/media/radio/si470x/radio-si470x.h
17074
17075 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17076 M: Eduardo Valentin <edubezval@gmail.com>
17077 L: linux-media@vger.kernel.org
17078 S: Odd Fixes
17079 W: https://linuxtv.org
17080 T: git git://linuxtv.org/media_tree.git
17081 F: drivers/media/radio/si4713/si4713.?
17082
17083 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17084 M: Eduardo Valentin <edubezval@gmail.com>
17085 L: linux-media@vger.kernel.org
17086 S: Odd Fixes
17087 W: https://linuxtv.org
17088 T: git git://linuxtv.org/media_tree.git
17089 F: drivers/media/radio/si4713/radio-platform-si4713.c
17090
17091 SI4713 FM RADIO TRANSMITTER USB DRIVER
17092 M: Hans Verkuil <hverkuil@xs4all.nl>
17093 L: linux-media@vger.kernel.org
17094 S: Maintained
17095 W: https://linuxtv.org
17096 T: git git://linuxtv.org/media_tree.git
17097 F: drivers/media/radio/si4713/radio-usb-si4713.c
17098
17099 SIANO DVB DRIVER
17100 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17101 L: linux-media@vger.kernel.org
17102 S: Odd fixes
17103 W: https://linuxtv.org
17104 T: git git://linuxtv.org/media_tree.git
17105 F: drivers/media/common/siano/
17106 F: drivers/media/mmc/siano/
17107 F: drivers/media/usb/siano/
17108 F: drivers/media/usb/siano/
17109
17110 SIFIVE DRIVERS
17111 M: Palmer Dabbelt <palmer@dabbelt.com>
17112 M: Paul Walmsley <paul.walmsley@sifive.com>
17113 L: linux-riscv@lists.infradead.org
17114 S: Supported
17115 T: git git://github.com/sifive/riscv-linux.git
17116 N: sifive
17117 K: [^@]sifive
17118
17119 SIFIVE FU540 SYSTEM-ON-CHIP
17120 M: Paul Walmsley <paul.walmsley@sifive.com>
17121 M: Palmer Dabbelt <palmer@dabbelt.com>
17122 L: linux-riscv@lists.infradead.org
17123 S: Supported
17124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17125 N: fu540
17126 K: fu540
17127
17128 SIFIVE PDMA DRIVER
17129 M: Green Wan <green.wan@sifive.com>
17130 S: Maintained
17131 F: Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17132 F: drivers/dma/sf-pdma/
17133
17134 SILEAD TOUCHSCREEN DRIVER
17135 M: Hans de Goede <hdegoede@redhat.com>
17136 L: linux-input@vger.kernel.org
17137 L: platform-driver-x86@vger.kernel.org
17138 S: Maintained
17139 F: drivers/input/touchscreen/silead.c
17140 F: drivers/platform/x86/touchscreen_dmi.c
17141
17142 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17143 M: Jérôme Pouiller <jerome.pouiller@silabs.com>
17144 S: Supported
17145 F: drivers/staging/wfx/
17146
17147 SILICON MOTION SM712 FRAME BUFFER DRIVER
17148 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17149 M: Teddy Wang <teddy.wang@siliconmotion.com>
17150 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17151 L: linux-fbdev@vger.kernel.org
17152 S: Maintained
17153 F: Documentation/fb/sm712fb.rst
17154 F: drivers/video/fbdev/sm712*
17155
17156 SILVACO I3C DUAL-ROLE MASTER
17157 M: Miquel Raynal <miquel.raynal@bootlin.com>
17158 M: Conor Culhane <conor.culhane@silvaco.com>
17159 L: linux-i3c@lists.infradead.org
17160 S: Maintained
17161 F: Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17162 F: drivers/i3c/master/svc-i3c-master.c
17163
17164 SIMPLEFB FB DRIVER
17165 M: Hans de Goede <hdegoede@redhat.com>
17166 L: linux-fbdev@vger.kernel.org
17167 S: Maintained
17168 F: Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17169 F: drivers/video/fbdev/simplefb.c
17170 F: include/linux/platform_data/simplefb.h
17171
17172 SIMTEC EB110ATX (Chalice CATS)
17173 M: Simtec Linux Team <linux@simtec.co.uk>
17174 S: Supported
17175 W: http://www.simtec.co.uk/products/EB110ATX/
17176
17177 SIMTEC EB2410ITX (BAST)
17178 M: Simtec Linux Team <linux@simtec.co.uk>
17179 S: Supported
17180 W: http://www.simtec.co.uk/products/EB2410ITX/
17181 F: arch/arm/mach-s3c/bast-ide.c
17182 F: arch/arm/mach-s3c/bast-irq.c
17183 F: arch/arm/mach-s3c/mach-bast.c
17184
17185 SIOX
17186 M: Thorsten Scherer <t.scherer@eckelmann.de>
17187 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17188 R: Pengutronix Kernel Team <kernel@pengutronix.de>
17189 S: Supported
17190 F: drivers/gpio/gpio-siox.c
17191 F: drivers/siox/*
17192 F: include/trace/events/siox.h
17193
17194 SIPHASH PRF ROUTINES
17195 M: Jason A. Donenfeld <Jason@zx2c4.com>
17196 S: Maintained
17197 F: include/linux/siphash.h
17198 F: lib/siphash.c
17199 F: lib/test_siphash.c
17200
17201 SIS 190 ETHERNET DRIVER
17202 M: Francois Romieu <romieu@fr.zoreil.com>
17203 L: netdev@vger.kernel.org
17204 S: Maintained
17205 F: drivers/net/ethernet/sis/sis190.c
17206
17207 SIS 900/7016 FAST ETHERNET DRIVER
17208 M: Daniele Venzano <venza@brownhat.org>
17209 L: netdev@vger.kernel.org
17210 S: Maintained
17211 W: http://www.brownhat.org/sis900.html
17212 F: drivers/net/ethernet/sis/sis900.*
17213
17214 SIS FRAMEBUFFER DRIVER
17215 M: Thomas Winischhofer <thomas@winischhofer.net>
17216 S: Maintained
17217 W: http://www.winischhofer.net/linuxsisvga.shtml
17218 F: Documentation/fb/sisfb.rst
17219 F: drivers/video/fbdev/sis/
17220 F: include/video/sisfb.h
17221
17222 SIS I2C TOUCHSCREEN DRIVER
17223 M: Mika Penttilä <mika.penttila@nextfour.com>
17224 L: linux-input@vger.kernel.org
17225 S: Maintained
17226 F: Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17227 F: drivers/input/touchscreen/sis_i2c.c
17228
17229 SIS USB2VGA DRIVER
17230 M: Thomas Winischhofer <thomas@winischhofer.net>
17231 S: Maintained
17232 W: http://www.winischhofer.at/linuxsisusbvga.shtml
17233 F: drivers/usb/misc/sisusbvga/
17234
17235 SLAB ALLOCATOR
17236 M: Christoph Lameter <cl@linux.com>
17237 M: Pekka Enberg <penberg@kernel.org>
17238 M: David Rientjes <rientjes@google.com>
17239 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
17240 M: Andrew Morton <akpm@linux-foundation.org>
17241 M: Vlastimil Babka <vbabka@suse.cz>
17242 L: linux-mm@kvack.org
17243 S: Maintained
17244 F: include/linux/sl?b*.h
17245 F: mm/sl?b*
17246
17247 SLEEPABLE READ-COPY UPDATE (SRCU)
17248 M: Lai Jiangshan <jiangshanlai@gmail.com>
17249 M: "Paul E. McKenney" <paulmck@kernel.org>
17250 M: Josh Triplett <josh@joshtriplett.org>
17251 R: Steven Rostedt <rostedt@goodmis.org>
17252 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17253 L: rcu@vger.kernel.org
17254 S: Supported
17255 W: http://www.rdrop.com/users/paulmck/RCU/
17256 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17257 F: include/linux/srcu*.h
17258 F: kernel/rcu/srcu*.c
17259
17260 SMACK SECURITY MODULE
17261 M: Casey Schaufler <casey@schaufler-ca.com>
17262 L: linux-security-module@vger.kernel.org
17263 S: Maintained
17264 W: http://schaufler-ca.com
17265 T: git git://github.com/cschaufler/smack-next
17266 F: Documentation/admin-guide/LSM/Smack.rst
17267 F: security/smack/
17268
17269 SMC91x ETHERNET DRIVER
17270 M: Nicolas Pitre <nico@fluxnic.net>
17271 S: Odd Fixes
17272 F: drivers/net/ethernet/smsc/smc91x.*
17273
17274 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17275 M: Mark Rutland <mark.rutland@arm.com>
17276 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17277 M: Sudeep Holla <sudeep.holla@arm.com>
17278 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17279 S: Maintained
17280 F: drivers/firmware/smccc/
17281 F: include/linux/arm-smccc.h
17282
17283 SMM665 HARDWARE MONITOR DRIVER
17284 M: Guenter Roeck <linux@roeck-us.net>
17285 L: linux-hwmon@vger.kernel.org
17286 S: Maintained
17287 F: Documentation/hwmon/smm665.rst
17288 F: drivers/hwmon/smm665.c
17289
17290 SMSC EMC2103 HARDWARE MONITOR DRIVER
17291 M: Steve Glendinning <steve.glendinning@shawell.net>
17292 L: linux-hwmon@vger.kernel.org
17293 S: Maintained
17294 F: Documentation/hwmon/emc2103.rst
17295 F: drivers/hwmon/emc2103.c
17296
17297 SMSC SCH5627 HARDWARE MONITOR DRIVER
17298 M: Hans de Goede <hdegoede@redhat.com>
17299 L: linux-hwmon@vger.kernel.org
17300 S: Supported
17301 F: Documentation/hwmon/sch5627.rst
17302 F: drivers/hwmon/sch5627.c
17303
17304 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17305 M: Steve Glendinning <steve.glendinning@shawell.net>
17306 L: linux-fbdev@vger.kernel.org
17307 S: Maintained
17308 F: drivers/video/fbdev/smscufx.c
17309
17310 SMSC47B397 HARDWARE MONITOR DRIVER
17311 M: Jean Delvare <jdelvare@suse.com>
17312 L: linux-hwmon@vger.kernel.org
17313 S: Maintained
17314 F: Documentation/hwmon/smsc47b397.rst
17315 F: drivers/hwmon/smsc47b397.c
17316
17317 SMSC911x ETHERNET DRIVER
17318 M: Steve Glendinning <steve.glendinning@shawell.net>
17319 L: netdev@vger.kernel.org
17320 S: Maintained
17321 F: drivers/net/ethernet/smsc/smsc911x.*
17322 F: include/linux/smsc911x.h
17323
17324 SMSC9420 PCI ETHERNET DRIVER
17325 M: Steve Glendinning <steve.glendinning@shawell.net>
17326 L: netdev@vger.kernel.org
17327 S: Maintained
17328 F: drivers/net/ethernet/smsc/smsc9420.*
17329
17330 SOCIONEXT (SNI) AVE NETWORK DRIVER
17331 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17332 L: netdev@vger.kernel.org
17333 S: Maintained
17334 F: Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17335 F: drivers/net/ethernet/socionext/sni_ave.c
17336
17337 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17338 M: Jassi Brar <jaswinder.singh@linaro.org>
17339 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
17340 L: netdev@vger.kernel.org
17341 S: Maintained
17342 F: Documentation/devicetree/bindings/net/socionext-netsec.txt
17343 F: drivers/net/ethernet/socionext/netsec.c
17344
17345 SOCIONEXT (SNI) Synquacer SPI DRIVER
17346 M: Masahisa Kojima <masahisa.kojima@linaro.org>
17347 M: Jassi Brar <jaswinder.singh@linaro.org>
17348 L: linux-spi@vger.kernel.org
17349 S: Maintained
17350 F: Documentation/devicetree/bindings/spi/spi-synquacer.txt
17351 F: drivers/spi/spi-synquacer.c
17352
17353 SOCIONEXT SYNQUACER I2C DRIVER
17354 M: Ard Biesheuvel <ardb@kernel.org>
17355 L: linux-i2c@vger.kernel.org
17356 S: Maintained
17357 F: Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17358 F: drivers/i2c/busses/i2c-synquacer.c
17359
17360 SOCIONEXT UNIPHIER SOUND DRIVER
17361 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17362 S: Orphan
17363 F: sound/soc/uniphier/
17364
17365 SOEKRIS NET48XX LED SUPPORT
17366 M: Chris Boot <bootc@bootc.net>
17367 S: Maintained
17368 F: drivers/leds/leds-net48xx.c
17369
17370 SOFT-IWARP DRIVER (siw)
17371 M: Bernard Metzler <bmt@zurich.ibm.com>
17372 L: linux-rdma@vger.kernel.org
17373 S: Supported
17374 F: drivers/infiniband/sw/siw/
17375 F: include/uapi/rdma/siw-abi.h
17376
17377 SOFT-ROCE DRIVER (rxe)
17378 M: Zhu Yanjun <zyjzyj2000@gmail.com>
17379 L: linux-rdma@vger.kernel.org
17380 S: Supported
17381 F: drivers/infiniband/sw/rxe/
17382 F: include/uapi/rdma/rdma_user_rxe.h
17383
17384 SOFTLOGIC 6x10 MPEG CODEC
17385 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17386 M: Anton Sviridenko <anton@corp.bluecherry.net>
17387 M: Andrey Utkin <andrey_utkin@fastmail.com>
17388 M: Ismael Luceno <ismael@iodev.co.uk>
17389 L: linux-media@vger.kernel.org
17390 S: Supported
17391 F: drivers/media/pci/solo6x10/
17392
17393 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17394 M: James Morse <james.morse@arm.com>
17395 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17396 S: Maintained
17397 F: Documentation/devicetree/bindings/arm/firmware/sdei.txt
17398 F: drivers/firmware/arm_sdei.c
17399 F: include/linux/arm_sdei.h
17400 F: include/uapi/linux/arm_sdei.h
17401
17402 SOFTWARE NODES
17403 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17404 R: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17405 L: linux-acpi@vger.kernel.org
17406 S: Maintained
17407 F: drivers/base/swnode.c
17408
17409 SOFTWARE RAID (Multiple Disks) SUPPORT
17410 M: Song Liu <song@kernel.org>
17411 L: linux-raid@vger.kernel.org
17412 S: Supported
17413 T: git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17414 F: drivers/md/Kconfig
17415 F: drivers/md/Makefile
17416 F: drivers/md/md*
17417 F: drivers/md/raid*
17418 F: include/linux/raid/
17419 F: include/uapi/linux/raid/
17420
17421 SOLIDRUN CLEARFOG SUPPORT
17422 M: Russell King <linux@armlinux.org.uk>
17423 S: Maintained
17424 F: arch/arm/boot/dts/armada-388-clearfog*
17425 F: arch/arm/boot/dts/armada-38x-solidrun-*
17426
17427 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17428 M: Russell King <linux@armlinux.org.uk>
17429 S: Maintained
17430 F: arch/arm/boot/dts/imx6*-cubox-i*
17431 F: arch/arm/boot/dts/imx6*-hummingboard*
17432 F: arch/arm/boot/dts/imx6*-sr-*
17433
17434 SONIC NETWORK DRIVER
17435 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17436 L: netdev@vger.kernel.org
17437 S: Maintained
17438 F: drivers/net/ethernet/natsemi/sonic.*
17439
17440 SONICS SILICON BACKPLANE DRIVER (SSB)
17441 M: Michael Buesch <m@bues.ch>
17442 L: linux-wireless@vger.kernel.org
17443 S: Maintained
17444 F: drivers/ssb/
17445 F: include/linux/ssb/
17446
17447 SONY IMX208 SENSOR DRIVER
17448 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17449 L: linux-media@vger.kernel.org
17450 S: Maintained
17451 T: git git://linuxtv.org/media_tree.git
17452 F: drivers/media/i2c/imx208.c
17453
17454 SONY IMX214 SENSOR DRIVER
17455 M: Ricardo Ribalda <ribalda@kernel.org>
17456 L: linux-media@vger.kernel.org
17457 S: Maintained
17458 T: git git://linuxtv.org/media_tree.git
17459 F: Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17460 F: drivers/media/i2c/imx214.c
17461
17462 SONY IMX219 SENSOR DRIVER
17463 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
17464 L: linux-media@vger.kernel.org
17465 S: Maintained
17466 T: git git://linuxtv.org/media_tree.git
17467 F: Documentation/devicetree/bindings/media/i2c/imx219.yaml
17468 F: drivers/media/i2c/imx219.c
17469
17470 SONY IMX258 SENSOR DRIVER
17471 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17472 L: linux-media@vger.kernel.org
17473 S: Maintained
17474 T: git git://linuxtv.org/media_tree.git
17475 F: Documentation/devicetree/bindings/media/i2c/imx258.yaml
17476 F: drivers/media/i2c/imx258.c
17477
17478 SONY IMX274 SENSOR DRIVER
17479 M: Leon Luo <leonl@leopardimaging.com>
17480 L: linux-media@vger.kernel.org
17481 S: Maintained
17482 T: git git://linuxtv.org/media_tree.git
17483 F: Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17484 F: drivers/media/i2c/imx274.c
17485
17486 SONY IMX290 SENSOR DRIVER
17487 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17488 L: linux-media@vger.kernel.org
17489 S: Maintained
17490 T: git git://linuxtv.org/media_tree.git
17491 F: Documentation/devicetree/bindings/media/i2c/imx290.txt
17492 F: drivers/media/i2c/imx290.c
17493
17494 SONY IMX319 SENSOR DRIVER
17495 M: Bingbu Cao <bingbu.cao@intel.com>
17496 L: linux-media@vger.kernel.org
17497 S: Maintained
17498 T: git git://linuxtv.org/media_tree.git
17499 F: drivers/media/i2c/imx319.c
17500
17501 SONY IMX334 SENSOR DRIVER
17502 M: Paul J. Murphy <paul.j.murphy@intel.com>
17503 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17504 L: linux-media@vger.kernel.org
17505 S: Maintained
17506 T: git git://linuxtv.org/media_tree.git
17507 F: Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17508 F: drivers/media/i2c/imx334.c
17509
17510 SONY IMX335 SENSOR DRIVER
17511 M: Paul J. Murphy <paul.j.murphy@intel.com>
17512 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17513 L: linux-media@vger.kernel.org
17514 S: Maintained
17515 T: git git://linuxtv.org/media_tree.git
17516 F: Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17517 F: drivers/media/i2c/imx335.c
17518
17519 SONY IMX355 SENSOR DRIVER
17520 M: Tianshu Qiu <tian.shu.qiu@intel.com>
17521 L: linux-media@vger.kernel.org
17522 S: Maintained
17523 T: git git://linuxtv.org/media_tree.git
17524 F: drivers/media/i2c/imx355.c
17525
17526 SONY IMX412 SENSOR DRIVER
17527 M: Paul J. Murphy <paul.j.murphy@intel.com>
17528 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17529 L: linux-media@vger.kernel.org
17530 S: Maintained
17531 T: git git://linuxtv.org/media_tree.git
17532 F: Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17533 F: drivers/media/i2c/imx412.c
17534
17535 SONY MEMORYSTICK SUBSYSTEM
17536 M: Maxim Levitsky <maximlevitsky@gmail.com>
17537 M: Alex Dubov <oakad@yahoo.com>
17538 M: Ulf Hansson <ulf.hansson@linaro.org>
17539 L: linux-mmc@vger.kernel.org
17540 S: Maintained
17541 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17542 F: drivers/memstick/
17543 F: include/linux/memstick.h
17544
17545 SONY VAIO CONTROL DEVICE DRIVER
17546 M: Mattia Dongili <malattia@linux.it>
17547 L: platform-driver-x86@vger.kernel.org
17548 S: Maintained
17549 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17550 F: Documentation/admin-guide/laptops/sony-laptop.rst
17551 F: drivers/char/sonypi.c
17552 F: drivers/platform/x86/sony-laptop.c
17553 F: include/linux/sony-laptop.h
17554
17555 SOUND
17556 M: Jaroslav Kysela <perex@perex.cz>
17557 M: Takashi Iwai <tiwai@suse.com>
17558 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17559 S: Maintained
17560 W: http://www.alsa-project.org/
17561 Q: http://patchwork.kernel.org/project/alsa-devel/list/
17562 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17563 F: Documentation/sound/
17564 F: include/sound/
17565 F: include/uapi/sound/
17566 F: sound/
17567
17568 SOUND - COMPRESSED AUDIO
17569 M: Vinod Koul <vkoul@kernel.org>
17570 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17571 S: Supported
17572 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17573 F: Documentation/sound/designs/compress-offload.rst
17574 F: include/sound/compress_driver.h
17575 F: include/uapi/sound/compress_*
17576 F: sound/core/compress_offload.c
17577 F: sound/soc/soc-compress.c
17578
17579 SOUND - DMAENGINE HELPERS
17580 M: Lars-Peter Clausen <lars@metafoo.de>
17581 S: Supported
17582 F: include/sound/dmaengine_pcm.h
17583 F: sound/core/pcm_dmaengine.c
17584 F: sound/soc/soc-generic-dmaengine-pcm.c
17585
17586 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17587 M: Liam Girdwood <lgirdwood@gmail.com>
17588 M: Mark Brown <broonie@kernel.org>
17589 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17590 S: Supported
17591 W: http://alsa-project.org/main/index.php/ASoC
17592 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17593 F: Documentation/devicetree/bindings/sound/
17594 F: Documentation/sound/soc/
17595 F: include/dt-bindings/sound/
17596 F: include/sound/soc*
17597 F: sound/soc/
17598
17599 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17600 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17601 M: Liam Girdwood <lgirdwood@gmail.com>
17602 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17603 M: Kai Vehmanen <kai.vehmanen@linux.intel.com>
17604 M: Daniel Baluta <daniel.baluta@nxp.com>
17605 L: sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17606 S: Supported
17607 W: https://github.com/thesofproject/linux/
17608 F: sound/soc/sof/
17609
17610 SOUNDWIRE SUBSYSTEM
17611 M: Vinod Koul <vkoul@kernel.org>
17612 M: Bard Liao <yung-chuan.liao@linux.intel.com>
17613 R: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17614 R: Sanyog Kale <sanyog.r.kale@intel.com>
17615 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17616 S: Supported
17617 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17618 F: Documentation/driver-api/soundwire/
17619 F: drivers/soundwire/
17620 F: include/linux/soundwire/
17621
17622 SP2 MEDIA DRIVER
17623 M: Olli Salonen <olli.salonen@iki.fi>
17624 L: linux-media@vger.kernel.org
17625 S: Maintained
17626 W: https://linuxtv.org
17627 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17628 F: drivers/media/dvb-frontends/sp2*
17629
17630 SPARC + UltraSPARC (sparc/sparc64)
17631 M: "David S. Miller" <davem@davemloft.net>
17632 L: sparclinux@vger.kernel.org
17633 S: Maintained
17634 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
17635 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17636 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17637 F: arch/sparc/
17638 F: drivers/sbus/
17639
17640 SPARC SERIAL DRIVERS
17641 M: "David S. Miller" <davem@davemloft.net>
17642 L: sparclinux@vger.kernel.org
17643 S: Maintained
17644 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17645 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17646 F: drivers/tty/serial/suncore.c
17647 F: drivers/tty/serial/sunhv.c
17648 F: drivers/tty/serial/sunsab.c
17649 F: drivers/tty/serial/sunsab.h
17650 F: drivers/tty/serial/sunsu.c
17651 F: drivers/tty/serial/sunzilog.c
17652 F: drivers/tty/serial/sunzilog.h
17653 F: drivers/tty/vcc.c
17654 F: include/linux/sunserialcore.h
17655
17656 SPARSE CHECKER
17657 M: "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17658 L: linux-sparse@vger.kernel.org
17659 S: Maintained
17660 W: https://sparse.docs.kernel.org/
17661 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17662 Q: https://patchwork.kernel.org/project/linux-sparse/list/
17663 B: https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17664 F: include/linux/compiler.h
17665
17666 SPEAKUP CONSOLE SPEECH DRIVER
17667 M: William Hubbs <w.d.hubbs@gmail.com>
17668 M: Chris Brannon <chris@the-brannons.com>
17669 M: Kirk Reiser <kirk@reisers.ca>
17670 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
17671 L: speakup@linux-speakup.org
17672 S: Odd Fixes
17673 W: http://www.linux-speakup.org/
17674 W: https://github.com/linux-speakup/speakup
17675 B: https://github.com/linux-speakup/speakup/issues
17676 F: drivers/accessibility/speakup/
17677
17678 SPEAR CLOCK FRAMEWORK SUPPORT
17679 M: Viresh Kumar <vireshk@kernel.org>
17680 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17681 S: Maintained
17682 W: http://www.st.com/spear
17683 F: drivers/clk/spear/
17684
17685 SPEAR PLATFORM SUPPORT
17686 M: Viresh Kumar <vireshk@kernel.org>
17687 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17688 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17689 S: Maintained
17690 W: http://www.st.com/spear
17691 F: arch/arm/boot/dts/spear*
17692 F: arch/arm/mach-spear/
17693
17694 SPI NOR SUBSYSTEM
17695 M: Tudor Ambarus <tudor.ambarus@microchip.com>
17696 R: Michael Walle <michael@walle.cc>
17697 R: Pratyush Yadav <p.yadav@ti.com>
17698 L: linux-mtd@lists.infradead.org
17699 S: Maintained
17700 W: http://www.linux-mtd.infradead.org/
17701 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
17702 C: irc://irc.oftc.net/mtd
17703 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17704 F: drivers/mtd/spi-nor/
17705 F: include/linux/mtd/spi-nor.h
17706
17707 SPI SUBSYSTEM
17708 M: Mark Brown <broonie@kernel.org>
17709 L: linux-spi@vger.kernel.org
17710 S: Maintained
17711 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
17712 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17713 F: Documentation/devicetree/bindings/spi/
17714 F: Documentation/spi/
17715 F: drivers/spi/
17716 F: include/linux/spi/
17717 F: include/uapi/linux/spi/
17718 F: tools/spi/
17719
17720 SPIDERNET NETWORK DRIVER for CELL
17721 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17722 M: Geoff Levand <geoff@infradead.org>
17723 L: netdev@vger.kernel.org
17724 L: linuxppc-dev@lists.ozlabs.org
17725 S: Maintained
17726 F: Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17727 F: drivers/net/ethernet/toshiba/spider_net*
17728
17729 SPMI SUBSYSTEM
17730 M: Stephen Boyd <sboyd@kernel.org>
17731 L: linux-kernel@vger.kernel.org
17732 S: Maintained
17733 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17734 F: Documentation/devicetree/bindings/spmi/
17735 F: drivers/spmi/
17736 F: include/dt-bindings/spmi/spmi.h
17737 F: include/linux/spmi.h
17738 F: include/trace/events/spmi.h
17739
17740 SPU FILE SYSTEM
17741 M: Jeremy Kerr <jk@ozlabs.org>
17742 L: linuxppc-dev@lists.ozlabs.org
17743 S: Supported
17744 W: http://www.ibm.com/developerworks/power/cell/
17745 F: Documentation/filesystems/spufs/spufs.rst
17746 F: arch/powerpc/platforms/cell/spufs/
17747
17748 SQUASHFS FILE SYSTEM
17749 M: Phillip Lougher <phillip@squashfs.org.uk>
17750 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
17751 S: Maintained
17752 W: http://squashfs.org.uk
17753 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17754 F: Documentation/filesystems/squashfs.rst
17755 F: fs/squashfs/
17756
17757 SRM (Alpha) environment access
17758 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
17759 S: Maintained
17760 F: arch/alpha/kernel/srm_env.c
17761
17762 ST LSM6DSx IMU IIO DRIVER
17763 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17764 L: linux-iio@vger.kernel.org
17765 S: Maintained
17766 W: http://www.st.com/
17767 F: Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17768 F: drivers/iio/imu/st_lsm6dsx/
17769
17770 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17771 M: Mickael Guene <mickael.guene@st.com>
17772 L: linux-media@vger.kernel.org
17773 S: Maintained
17774 T: git git://linuxtv.org/media_tree.git
17775 F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17776 F: drivers/media/i2c/st-mipid02.c
17777
17778 ST STM32 I2C/SMBUS DRIVER
17779 M: Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17780 M: Alain Volmat <alain.volmat@foss.st.com>
17781 L: linux-i2c@vger.kernel.org
17782 S: Maintained
17783 F: drivers/i2c/busses/i2c-stm32*
17784
17785 ST STM32 SPI DRIVER
17786 M: Alain Volmat <alain.volmat@foss.st.com>
17787 L: linux-spi@vger.kernel.org
17788 S: Maintained
17789 F: drivers/spi/spi-stm32.c
17790
17791 ST STPDDC60 DRIVER
17792 M: Daniel Nilsson <daniel.nilsson@flex.com>
17793 L: linux-hwmon@vger.kernel.org
17794 S: Maintained
17795 F: Documentation/hwmon/stpddc60.rst
17796 F: drivers/hwmon/pmbus/stpddc60.c
17797
17798 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17799 M: Song Qiang <songqiang1304521@gmail.com>
17800 L: linux-iio@vger.kernel.org
17801 S: Maintained
17802 F: Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17803 F: drivers/iio/proximity/vl53l0x-i2c.c
17804
17805 STABLE BRANCH
17806 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17807 M: Sasha Levin <sashal@kernel.org>
17808 L: stable@vger.kernel.org
17809 S: Supported
17810 F: Documentation/process/stable-kernel-rules.rst
17811
17812 STAGING - ATOMISP DRIVER
17813 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17814 R: Sakari Ailus <sakari.ailus@linux.intel.com>
17815 L: linux-media@vger.kernel.org
17816 S: Maintained
17817 F: drivers/staging/media/atomisp/
17818
17819 STAGING - FIELDBUS SUBSYSTEM
17820 M: Sven Van Asbroeck <TheSven73@gmail.com>
17821 S: Maintained
17822 F: drivers/staging/fieldbus/*
17823 F: drivers/staging/fieldbus/Documentation/
17824
17825 STAGING - HMS ANYBUS-S BUS
17826 M: Sven Van Asbroeck <TheSven73@gmail.com>
17827 S: Maintained
17828 F: drivers/staging/fieldbus/anybuss/
17829
17830 STAGING - INDUSTRIAL IO
17831 M: Jonathan Cameron <jic23@kernel.org>
17832 L: linux-iio@vger.kernel.org
17833 S: Odd Fixes
17834 F: Documentation/devicetree/bindings/staging/iio/
17835 F: drivers/staging/iio/
17836
17837 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17838 M: Marc Dietrich <marvin24@gmx.de>
17839 L: ac100@lists.launchpad.net (moderated for non-subscribers)
17840 L: linux-tegra@vger.kernel.org
17841 S: Maintained
17842 F: drivers/staging/nvec/
17843
17844 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17845 M: Jens Frederich <jfrederich@gmail.com>
17846 M: Jon Nettleton <jon.nettleton@gmail.com>
17847 S: Maintained
17848 W: http://wiki.laptop.org/go/DCON
17849 F: drivers/staging/olpc_dcon/
17850
17851 STAGING - REALTEK RTL8188EU DRIVERS
17852 M: Larry Finger <Larry.Finger@lwfinger.net>
17853 M: Phillip Potter <phil@philpotter.co.uk>
17854 S: Supported
17855 F: drivers/staging/r8188eu/
17856
17857 STAGING - REALTEK RTL8712U DRIVERS
17858 M: Larry Finger <Larry.Finger@lwfinger.net>
17859 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17860 S: Odd Fixes
17861 F: drivers/staging/rtl8712/
17862
17863 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17864 M: Michael Hennerich <michael.hennerich@analog.com>
17865 L: linux-fbdev@vger.kernel.org
17866 S: Supported
17867 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17868 F: drivers/staging/fbtft/fb_seps525.c
17869
17870 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17871 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17872 M: Teddy Wang <teddy.wang@siliconmotion.com>
17873 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17874 L: linux-fbdev@vger.kernel.org
17875 S: Maintained
17876 F: drivers/staging/sm750fb/
17877
17878 STAGING - VIA VT665X DRIVERS
17879 M: Forest Bond <forest@alittletooquiet.net>
17880 S: Odd Fixes
17881 F: drivers/staging/vt665?/
17882
17883 STAGING SUBSYSTEM
17884 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17885 L: linux-staging@lists.linux.dev
17886 S: Supported
17887 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17888 F: drivers/staging/
17889
17890 STARFIRE/DURALAN NETWORK DRIVER
17891 M: Ion Badulescu <ionut@badula.org>
17892 S: Odd Fixes
17893 F: drivers/net/ethernet/adaptec/starfire*
17894
17895 STATIC BRANCH/CALL
17896 M: Peter Zijlstra <peterz@infradead.org>
17897 M: Josh Poimboeuf <jpoimboe@redhat.com>
17898 M: Jason Baron <jbaron@akamai.com>
17899 R: Steven Rostedt <rostedt@goodmis.org>
17900 R: Ard Biesheuvel <ardb@kernel.org>
17901 S: Supported
17902 F: arch/*/include/asm/jump_label*.h
17903 F: arch/*/include/asm/static_call*.h
17904 F: arch/*/kernel/jump_label.c
17905 F: arch/*/kernel/static_call.c
17906 F: include/linux/jump_label*.h
17907 F: include/linux/static_call*.h
17908 F: kernel/jump_label.c
17909 F: kernel/static_call.c
17910
17911 STI AUDIO (ASoC) DRIVERS
17912 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17913 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17914 S: Maintained
17915 F: Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17916 F: sound/soc/sti/
17917
17918 STI CEC DRIVER
17919 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
17920 S: Maintained
17921 F: Documentation/devicetree/bindings/media/stih-cec.txt
17922 F: drivers/media/cec/platform/sti/
17923
17924 STK1160 USB VIDEO CAPTURE DRIVER
17925 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17926 L: linux-media@vger.kernel.org
17927 S: Maintained
17928 T: git git://linuxtv.org/media_tree.git
17929 F: drivers/media/usb/stk1160/
17930
17931 STM32 AUDIO (ASoC) DRIVERS
17932 M: Olivier Moysan <olivier.moysan@foss.st.com>
17933 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17934 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17935 S: Maintained
17936 F: Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17937 F: Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17938 F: sound/soc/stm/
17939
17940 STM32 TIMER/LPTIMER DRIVERS
17941 M: Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17942 S: Maintained
17943 F: Documentation/ABI/testing/*timer-stm32
17944 F: Documentation/devicetree/bindings/*/*stm32-*timer*
17945 F: drivers/*/stm32-*timer*
17946 F: drivers/pwm/pwm-stm32*
17947 F: include/linux/*/stm32-*tim*
17948
17949 STMMAC ETHERNET DRIVER
17950 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
17951 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
17952 M: Jose Abreu <joabreu@synopsys.com>
17953 L: netdev@vger.kernel.org
17954 S: Supported
17955 W: http://www.stlinux.com
17956 F: Documentation/networking/device_drivers/ethernet/stmicro/
17957 F: drivers/net/ethernet/stmicro/stmmac/
17958
17959 SUN3/3X
17960 M: Sam Creasey <sammy@sammy.net>
17961 S: Maintained
17962 W: http://sammy.net/sun3/
17963 F: arch/m68k/include/asm/sun3*
17964 F: arch/m68k/kernel/*sun3*
17965 F: arch/m68k/sun3*/
17966 F: drivers/net/ethernet/i825xx/sun3*
17967
17968 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17969 M: Hans de Goede <hdegoede@redhat.com>
17970 L: linux-input@vger.kernel.org
17971 S: Maintained
17972 F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17973 F: drivers/input/keyboard/sun4i-lradc-keys.c
17974
17975 SUNDANCE NETWORK DRIVER
17976 M: Denis Kirjanov <kda@linux-powerpc.org>
17977 L: netdev@vger.kernel.org
17978 S: Maintained
17979 F: drivers/net/ethernet/dlink/sundance.c
17980
17981 SUPERH
17982 M: Yoshinori Sato <ysato@users.sourceforge.jp>
17983 M: Rich Felker <dalias@libc.org>
17984 L: linux-sh@vger.kernel.org
17985 S: Maintained
17986 Q: http://patchwork.kernel.org/project/linux-sh/list/
17987 F: Documentation/sh/
17988 F: arch/sh/
17989 F: drivers/sh/
17990
17991 SUSPEND TO RAM
17992 M: "Rafael J. Wysocki" <rafael@kernel.org>
17993 M: Len Brown <len.brown@intel.com>
17994 M: Pavel Machek <pavel@ucw.cz>
17995 L: linux-pm@vger.kernel.org
17996 S: Supported
17997 B: https://bugzilla.kernel.org
17998 F: Documentation/power/
17999 F: arch/x86/kernel/acpi/
18000 F: drivers/base/power/
18001 F: include/linux/freezer.h
18002 F: include/linux/pm.h
18003 F: include/linux/suspend.h
18004 F: kernel/power/
18005
18006 SVGA HANDLING
18007 M: Martin Mares <mj@ucw.cz>
18008 L: linux-video@atrey.karlin.mff.cuni.cz
18009 S: Maintained
18010 F: Documentation/admin-guide/svga.rst
18011 F: arch/x86/boot/video*
18012
18013 SWIOTLB SUBSYSTEM
18014 M: Christoph Hellwig <hch@infradead.org>
18015 L: iommu@lists.linux-foundation.org
18016 S: Supported
18017 W: http://git.infradead.org/users/hch/dma-mapping.git
18018 T: git git://git.infradead.org/users/hch/dma-mapping.git
18019 F: arch/*/kernel/pci-swiotlb.c
18020 F: include/linux/swiotlb.h
18021 F: kernel/dma/swiotlb.c
18022
18023 SWITCHDEV
18024 M: Jiri Pirko <jiri@resnulli.us>
18025 M: Ivan Vecera <ivecera@redhat.com>
18026 L: netdev@vger.kernel.org
18027 S: Supported
18028 F: include/net/switchdev.h
18029 F: net/switchdev/
18030
18031 SY8106A REGULATOR DRIVER
18032 M: Icenowy Zheng <icenowy@aosc.io>
18033 S: Maintained
18034 F: Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18035 F: drivers/regulator/sy8106a-regulator.c
18036
18037 SYNC FILE FRAMEWORK
18038 M: Sumit Semwal <sumit.semwal@linaro.org>
18039 R: Gustavo Padovan <gustavo@padovan.org>
18040 L: linux-media@vger.kernel.org
18041 L: dri-devel@lists.freedesktop.org
18042 S: Maintained
18043 T: git git://anongit.freedesktop.org/drm/drm-misc
18044 F: Documentation/driver-api/sync_file.rst
18045 F: drivers/dma-buf/dma-fence*
18046 F: drivers/dma-buf/sw_sync.c
18047 F: drivers/dma-buf/sync_*
18048 F: include/linux/sync_file.h
18049 F: include/uapi/linux/sync_file.h
18050
18051 SYNOPSYS ARC ARCHITECTURE
18052 M: Vineet Gupta <vgupta@kernel.org>
18053 L: linux-snps-arc@lists.infradead.org
18054 S: Supported
18055 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18056 F: Documentation/devicetree/bindings/arc/*
18057 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18058 F: arch/arc/
18059 F: drivers/clocksource/arc_timer.c
18060 F: drivers/tty/serial/arc_uart.c
18061
18062 SYNOPSYS ARC HSDK SDP pll clock driver
18063 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18064 S: Supported
18065 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18066 F: drivers/clk/clk-hsdk-pll.c
18067
18068 SYNOPSYS ARC SDP clock driver
18069 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18070 S: Supported
18071 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18072 F: drivers/clk/axs10x/*
18073
18074 SYNOPSYS ARC SDP platform support
18075 M: Alexey Brodkin <abrodkin@synopsys.com>
18076 S: Supported
18077 F: Documentation/devicetree/bindings/arc/axs10*
18078 F: arch/arc/boot/dts/ax*
18079 F: arch/arc/plat-axs10x
18080
18081 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18082 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18083 S: Supported
18084 F: Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18085 F: drivers/reset/reset-axs10x.c
18086
18087 SYNOPSYS CREG GPIO DRIVER
18088 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18089 S: Maintained
18090 F: Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18091 F: drivers/gpio/gpio-creg-snps.c
18092
18093 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18094 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18095 S: Maintained
18096 F: drivers/tty/serial/8250/8250_dw.c
18097 F: drivers/tty/serial/8250/8250_dwlib.*
18098 F: drivers/tty/serial/8250/8250_lpss.c
18099
18100 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18101 M: Hoan Tran <hoan@os.amperecomputing.com>
18102 M: Serge Semin <fancer.lancer@gmail.com>
18103 L: linux-gpio@vger.kernel.org
18104 S: Maintained
18105 F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18106 F: drivers/gpio/gpio-dwapb.c
18107
18108 SYNOPSYS DESIGNWARE APB SSI DRIVER
18109 M: Serge Semin <fancer.lancer@gmail.com>
18110 L: linux-spi@vger.kernel.org
18111 S: Supported
18112 F: Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18113 F: drivers/spi/spi-dw*
18114
18115 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18116 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18117 S: Maintained
18118 F: Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18119 F: drivers/dma/dw-axi-dmac/
18120
18121 SYNOPSYS DESIGNWARE DMAC DRIVER
18122 M: Viresh Kumar <vireshk@kernel.org>
18123 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18124 S: Maintained
18125 F: Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18126 F: drivers/dma/dw/
18127 F: include/dt-bindings/dma/dw-dmac.h
18128 F: include/linux/dma/dw.h
18129 F: include/linux/platform_data/dma-dw.h
18130
18131 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18132 M: Jose Abreu <Jose.Abreu@synopsys.com>
18133 L: netdev@vger.kernel.org
18134 S: Supported
18135 F: drivers/net/ethernet/synopsys/
18136
18137 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18138 M: Jose Abreu <Jose.Abreu@synopsys.com>
18139 L: netdev@vger.kernel.org
18140 S: Supported
18141 F: drivers/net/pcs/pcs-xpcs.c
18142 F: drivers/net/pcs/pcs-xpcs.h
18143 F: include/linux/pcs/pcs-xpcs.h
18144
18145 SYNOPSYS DESIGNWARE I2C DRIVER
18146 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
18147 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18148 R: Mika Westerberg <mika.westerberg@linux.intel.com>
18149 L: linux-i2c@vger.kernel.org
18150 S: Maintained
18151 F: drivers/i2c/busses/i2c-designware-*
18152
18153 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18154 M: Jaehoon Chung <jh80.chung@samsung.com>
18155 L: linux-mmc@vger.kernel.org
18156 S: Maintained
18157 F: drivers/mmc/host/dw_mmc*
18158
18159 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18160 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18161 S: Supported
18162 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18163 F: drivers/reset/reset-hsdk.c
18164 F: include/dt-bindings/reset/snps,hsdk-reset.h
18165
18166 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18167 M: Prabu Thangamuthu <prabu.t@synopsys.com>
18168 M: Manjunath M B <manjumb@synopsys.com>
18169 L: linux-mmc@vger.kernel.org
18170 S: Maintained
18171 F: drivers/mmc/host/sdhci-pci-dwc-mshc.c
18172
18173 SYSTEM CONFIGURATION (SYSCON)
18174 M: Lee Jones <lee.jones@linaro.org>
18175 M: Arnd Bergmann <arnd@arndb.de>
18176 S: Supported
18177 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18178 F: drivers/mfd/syscon.c
18179
18180 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18181 M: Sudeep Holla <sudeep.holla@arm.com>
18182 R: Cristian Marussi <cristian.marussi@arm.com>
18183 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18184 S: Maintained
18185 F: Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18186 F: drivers/clk/clk-sc[mp]i.c
18187 F: drivers/cpufreq/sc[mp]i-cpufreq.c
18188 F: drivers/firmware/arm_scmi/
18189 F: drivers/firmware/arm_scpi.c
18190 F: drivers/regulator/scmi-regulator.c
18191 F: drivers/reset/reset-scmi.c
18192 F: include/linux/sc[mp]i_protocol.h
18193 F: include/trace/events/scmi.h
18194 F: include/uapi/linux/virtio_scmi.h
18195
18196 SYSTEM RESET/SHUTDOWN DRIVERS
18197 M: Sebastian Reichel <sre@kernel.org>
18198 L: linux-pm@vger.kernel.org
18199 S: Maintained
18200 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18201 F: Documentation/devicetree/bindings/power/reset/
18202 F: drivers/power/reset/
18203
18204 SYSTEM TRACE MODULE CLASS
18205 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
18206 S: Maintained
18207 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18208 F: Documentation/trace/stm.rst
18209 F: drivers/hwtracing/stm/
18210 F: include/linux/stm.h
18211 F: include/uapi/linux/stm.h
18212
18213 SYSTEM76 ACPI DRIVER
18214 M: Jeremy Soller <jeremy@system76.com>
18215 M: System76 Product Development <productdev@system76.com>
18216 L: platform-driver-x86@vger.kernel.org
18217 S: Maintained
18218 F: drivers/platform/x86/system76_acpi.c
18219
18220 SYSV FILESYSTEM
18221 M: Christoph Hellwig <hch@infradead.org>
18222 S: Maintained
18223 F: Documentation/filesystems/sysv-fs.rst
18224 F: fs/sysv/
18225 F: include/linux/sysv_fs.h
18226
18227 TASKSTATS STATISTICS INTERFACE
18228 M: Balbir Singh <bsingharora@gmail.com>
18229 S: Maintained
18230 F: Documentation/accounting/taskstats*
18231 F: include/linux/taskstats*
18232 F: kernel/taskstats.c
18233
18234 TC subsystem
18235 M: Jamal Hadi Salim <jhs@mojatatu.com>
18236 M: Cong Wang <xiyou.wangcong@gmail.com>
18237 M: Jiri Pirko <jiri@resnulli.us>
18238 L: netdev@vger.kernel.org
18239 S: Maintained
18240 F: include/net/pkt_cls.h
18241 F: include/net/pkt_sched.h
18242 F: include/net/tc_act/
18243 F: include/uapi/linux/pkt_cls.h
18244 F: include/uapi/linux/pkt_sched.h
18245 F: include/uapi/linux/tc_act/
18246 F: include/uapi/linux/tc_ematch/
18247 F: net/sched/
18248
18249 TC90522 MEDIA DRIVER
18250 M: Akihiro Tsukada <tskd08@gmail.com>
18251 L: linux-media@vger.kernel.org
18252 S: Odd Fixes
18253 F: drivers/media/dvb-frontends/tc90522*
18254
18255 TCP LOW PRIORITY MODULE
18256 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18257 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18258 S: Maintained
18259 W: http://tcp-lp-mod.sourceforge.net/
18260 F: net/ipv4/tcp_lp.c
18261
18262 TDA10071 MEDIA DRIVER
18263 M: Antti Palosaari <crope@iki.fi>
18264 L: linux-media@vger.kernel.org
18265 S: Maintained
18266 W: https://linuxtv.org
18267 W: http://palosaari.fi/linux/
18268 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18269 T: git git://linuxtv.org/anttip/media_tree.git
18270 F: drivers/media/dvb-frontends/tda10071*
18271
18272 TDA18212 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/tuners/tda18212*
18281
18282 TDA18218 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/tda18218*
18291
18292 TDA18250 MEDIA DRIVER
18293 M: Olli Salonen <olli.salonen@iki.fi>
18294 L: linux-media@vger.kernel.org
18295 S: Maintained
18296 W: https://linuxtv.org
18297 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18298 T: git git://linuxtv.org/media_tree.git
18299 F: drivers/media/tuners/tda18250*
18300
18301 TDA18271 MEDIA DRIVER
18302 M: Michael Krufky <mkrufky@linuxtv.org>
18303 L: linux-media@vger.kernel.org
18304 S: Maintained
18305 W: https://linuxtv.org
18306 W: http://github.com/mkrufky
18307 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18308 T: git git://linuxtv.org/mkrufky/tuners.git
18309 F: drivers/media/tuners/tda18271*
18310
18311 TDA1997x MEDIA DRIVER
18312 M: Tim Harvey <tharvey@gateworks.com>
18313 L: linux-media@vger.kernel.org
18314 S: Maintained
18315 W: https://linuxtv.org
18316 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18317 F: drivers/media/i2c/tda1997x.*
18318
18319 TDA827x MEDIA DRIVER
18320 M: Michael Krufky <mkrufky@linuxtv.org>
18321 L: linux-media@vger.kernel.org
18322 S: Maintained
18323 W: https://linuxtv.org
18324 W: http://github.com/mkrufky
18325 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18326 T: git git://linuxtv.org/mkrufky/tuners.git
18327 F: drivers/media/tuners/tda8290.*
18328
18329 TDA8290 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 TDA9840 MEDIA DRIVER
18340 M: Hans Verkuil <hverkuil@xs4all.nl>
18341 L: linux-media@vger.kernel.org
18342 S: Maintained
18343 W: https://linuxtv.org
18344 T: git git://linuxtv.org/media_tree.git
18345 F: drivers/media/i2c/tda9840*
18346
18347 TEA5761 TUNER DRIVER
18348 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18349 L: linux-media@vger.kernel.org
18350 S: Odd fixes
18351 W: https://linuxtv.org
18352 T: git git://linuxtv.org/media_tree.git
18353 F: drivers/media/tuners/tea5761.*
18354
18355 TEA5767 TUNER DRIVER
18356 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18357 L: linux-media@vger.kernel.org
18358 S: Maintained
18359 W: https://linuxtv.org
18360 T: git git://linuxtv.org/media_tree.git
18361 F: drivers/media/tuners/tea5767.*
18362
18363 TEA6415C MEDIA DRIVER
18364 M: Hans Verkuil <hverkuil@xs4all.nl>
18365 L: linux-media@vger.kernel.org
18366 S: Maintained
18367 W: https://linuxtv.org
18368 T: git git://linuxtv.org/media_tree.git
18369 F: drivers/media/i2c/tea6415c*
18370
18371 TEA6420 MEDIA DRIVER
18372 M: Hans Verkuil <hverkuil@xs4all.nl>
18373 L: linux-media@vger.kernel.org
18374 S: Maintained
18375 W: https://linuxtv.org
18376 T: git git://linuxtv.org/media_tree.git
18377 F: drivers/media/i2c/tea6420*
18378
18379 TEAM DRIVER
18380 M: Jiri Pirko <jiri@resnulli.us>
18381 L: netdev@vger.kernel.org
18382 S: Supported
18383 F: drivers/net/team/
18384 F: include/linux/if_team.h
18385 F: include/uapi/linux/if_team.h
18386
18387 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18388 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18389 S: Maintained
18390 F: arch/x86/platform/ts5500/
18391
18392 TECHNOTREND USB IR RECEIVER
18393 M: Sean Young <sean@mess.org>
18394 L: linux-media@vger.kernel.org
18395 S: Maintained
18396 F: drivers/media/rc/ttusbir.c
18397
18398 TECHWELL TW9910 VIDEO DECODER
18399 L: linux-media@vger.kernel.org
18400 S: Orphan
18401 F: drivers/media/i2c/tw9910.c
18402 F: include/media/i2c/tw9910.h
18403
18404 TEE SUBSYSTEM
18405 M: Jens Wiklander <jens.wiklander@linaro.org>
18406 R: Sumit Garg <sumit.garg@linaro.org>
18407 L: op-tee@lists.trustedfirmware.org
18408 S: Maintained
18409 F: Documentation/staging/tee.rst
18410 F: drivers/tee/
18411 F: include/linux/tee_drv.h
18412 F: include/uapi/linux/tee.h
18413
18414 TEGRA ARCHITECTURE SUPPORT
18415 M: Thierry Reding <thierry.reding@gmail.com>
18416 M: Jonathan Hunter <jonathanh@nvidia.com>
18417 L: linux-tegra@vger.kernel.org
18418 S: Supported
18419 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
18420 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18421 N: [^a-z]tegra
18422
18423 TEGRA CLOCK DRIVER
18424 M: Peter De Schrijver <pdeschrijver@nvidia.com>
18425 M: Prashant Gaikwad <pgaikwad@nvidia.com>
18426 S: Supported
18427 F: drivers/clk/tegra/
18428
18429 TEGRA DMA DRIVERS
18430 M: Laxman Dewangan <ldewangan@nvidia.com>
18431 M: Jon Hunter <jonathanh@nvidia.com>
18432 S: Supported
18433 F: drivers/dma/tegra*
18434
18435 TEGRA I2C DRIVER
18436 M: Laxman Dewangan <ldewangan@nvidia.com>
18437 R: Dmitry Osipenko <digetx@gmail.com>
18438 S: Supported
18439 F: drivers/i2c/busses/i2c-tegra.c
18440
18441 TEGRA IOMMU DRIVERS
18442 M: Thierry Reding <thierry.reding@gmail.com>
18443 R: Krishna Reddy <vdumpa@nvidia.com>
18444 L: linux-tegra@vger.kernel.org
18445 S: Supported
18446 F: drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18447 F: drivers/iommu/tegra*
18448
18449 TEGRA KBC DRIVER
18450 M: Laxman Dewangan <ldewangan@nvidia.com>
18451 S: Supported
18452 F: drivers/input/keyboard/tegra-kbc.c
18453
18454 TEGRA NAND DRIVER
18455 M: Stefan Agner <stefan@agner.ch>
18456 M: Lucas Stach <dev@lynxeye.de>
18457 S: Maintained
18458 F: Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18459 F: drivers/mtd/nand/raw/tegra_nand.c
18460
18461 TEGRA PWM DRIVER
18462 M: Thierry Reding <thierry.reding@gmail.com>
18463 S: Supported
18464 F: drivers/pwm/pwm-tegra.c
18465
18466 TEGRA SERIAL DRIVER
18467 M: Laxman Dewangan <ldewangan@nvidia.com>
18468 S: Supported
18469 F: drivers/tty/serial/serial-tegra.c
18470
18471 TEGRA SPI DRIVER
18472 M: Laxman Dewangan <ldewangan@nvidia.com>
18473 S: Supported
18474 F: drivers/spi/spi-tegra*
18475
18476 TEGRA QUAD SPI DRIVER
18477 M: Thierry Reding <thierry.reding@gmail.com>
18478 M: Jonathan Hunter <jonathanh@nvidia.com>
18479 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18480 L: linux-tegra@vger.kernel.org
18481 S: Maintained
18482 F: drivers/spi/spi-tegra210-quad.c
18483
18484 TEGRA VIDEO DRIVER
18485 M: Thierry Reding <thierry.reding@gmail.com>
18486 M: Jonathan Hunter <jonathanh@nvidia.com>
18487 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18488 L: linux-media@vger.kernel.org
18489 L: linux-tegra@vger.kernel.org
18490 S: Maintained
18491 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18492 F: drivers/staging/media/tegra-video/
18493
18494 TEGRA XUSB PADCTL DRIVER
18495 M: JC Kuo <jckuo@nvidia.com>
18496 S: Supported
18497 F: drivers/phy/tegra/xusb*
18498
18499 TEHUTI ETHERNET DRIVER
18500 M: Andy Gospodarek <andy@greyhouse.net>
18501 L: netdev@vger.kernel.org
18502 S: Supported
18503 F: drivers/net/ethernet/tehuti/*
18504
18505 TELECOM CLOCK DRIVER FOR MCPL0010
18506 M: Mark Gross <mark.gross@intel.com>
18507 S: Supported
18508 F: drivers/char/tlclk.c
18509
18510 TEMPO SEMICONDUCTOR DRIVERS
18511 M: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18512 S: Maintained
18513 F: Documentation/devicetree/bindings/sound/tscs*.txt
18514 F: sound/soc/codecs/tscs*.c
18515 F: sound/soc/codecs/tscs*.h
18516
18517 TENSILICA XTENSA PORT (xtensa)
18518 M: Chris Zankel <chris@zankel.net>
18519 M: Max Filippov <jcmvbkbc@gmail.com>
18520 L: linux-xtensa@linux-xtensa.org
18521 S: Maintained
18522 T: git git://github.com/czankel/xtensa-linux.git
18523 F: arch/xtensa/
18524 F: drivers/irqchip/irq-xtensa-*
18525
18526 TEXAS INSTRUMENTS ASoC DRIVERS
18527 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18528 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18529 S: Maintained
18530 F: sound/soc/ti/
18531
18532 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18533 M: Ricardo Ribalda <ribalda@kernel.org>
18534 L: linux-iio@vger.kernel.org
18535 S: Supported
18536 F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18537 F: drivers/iio/dac/ti-dac7612.c
18538
18539 TEXAS INSTRUMENTS DMA DRIVERS
18540 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18541 L: dmaengine@vger.kernel.org
18542 S: Maintained
18543 F: Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18544 F: Documentation/devicetree/bindings/dma/ti-edma.txt
18545 F: Documentation/devicetree/bindings/dma/ti/
18546 F: drivers/dma/ti/
18547 X: drivers/dma/ti/cppi41.c
18548 F: include/linux/dma/k3-udma-glue.h
18549 F: include/linux/dma/ti-cppi5.h
18550 F: include/linux/dma/k3-psil.h
18551
18552 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18553 M: Nishanth Menon <nm@ti.com>
18554 M: Tero Kristo <kristo@kernel.org>
18555 M: Santosh Shilimkar <ssantosh@kernel.org>
18556 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18557 S: Maintained
18558 F: Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18559 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18560 F: Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18561 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18562 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18563 F: Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18564 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18565 F: drivers/clk/keystone/sci-clk.c
18566 F: drivers/firmware/ti_sci*
18567 F: drivers/irqchip/irq-ti-sci-inta.c
18568 F: drivers/irqchip/irq-ti-sci-intr.c
18569 F: drivers/reset/reset-ti-sci.c
18570 F: drivers/soc/ti/ti_sci_inta_msi.c
18571 F: drivers/soc/ti/ti_sci_pm_domains.c
18572 F: include/dt-bindings/soc/ti,sci_pm_domain.h
18573 F: include/linux/soc/ti/ti_sci_inta_msi.h
18574 F: include/linux/soc/ti/ti_sci_protocol.h
18575
18576 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18577 M: Robert Marko <robert.marko@sartura.hr>
18578 M: Luka Perkov <luka.perkov@sartura.hr>
18579 L: linux-hwmon@vger.kernel.org
18580 S: Maintained
18581 F: Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18582 F: Documentation/hwmon/tps23861.rst
18583 F: drivers/hwmon/tps23861.c
18584
18585 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18586 M: Puranjay Mohan <puranjay12@gmail.com>
18587 L: linux-iio@vger.kernel.org
18588 S: Supported
18589 F: Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18590 F: drivers/iio/temperature/tmp117.c
18591
18592 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18593 M: Hans Verkuil <hverkuil@xs4all.nl>
18594 L: linux-media@vger.kernel.org
18595 S: Maintained
18596 W: https://linuxtv.org
18597 T: git git://linuxtv.org/media_tree.git
18598 F: drivers/media/radio/radio-raremono.c
18599
18600 THERMAL
18601 M: Rafael J. Wysocki <rafael@kernel.org>
18602 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18603 R: Amit Kucheria <amitk@kernel.org>
18604 R: Zhang Rui <rui.zhang@intel.com>
18605 L: linux-pm@vger.kernel.org
18606 S: Supported
18607 Q: https://patchwork.kernel.org/project/linux-pm/list/
18608 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18609 F: Documentation/devicetree/bindings/thermal/
18610 F: drivers/thermal/
18611 F: include/linux/cpu_cooling.h
18612 F: include/linux/thermal.h
18613 F: include/uapi/linux/thermal.h
18614 F: tools/thermal/
18615
18616 THERMAL DRIVER FOR AMLOGIC SOCS
18617 M: Guillaume La Roque <glaroque@baylibre.com>
18618 L: linux-pm@vger.kernel.org
18619 L: linux-amlogic@lists.infradead.org
18620 S: Supported
18621 W: http://linux-meson.com/
18622 F: Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18623 F: drivers/thermal/amlogic_thermal.c
18624
18625 THERMAL/CPU_COOLING
18626 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
18627 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18628 M: Viresh Kumar <viresh.kumar@linaro.org>
18629 R: Lukasz Luba <lukasz.luba@arm.com>
18630 L: linux-pm@vger.kernel.org
18631 S: Supported
18632 F: Documentation/driver-api/thermal/cpu-cooling-api.rst
18633 F: Documentation/driver-api/thermal/cpu-idle-cooling.rst
18634 F: drivers/thermal/cpufreq_cooling.c
18635 F: drivers/thermal/cpuidle_cooling.c
18636 F: include/linux/cpu_cooling.h
18637
18638 THERMAL/POWER_ALLOCATOR
18639 M: Lukasz Luba <lukasz.luba@arm.com>
18640 L: linux-pm@vger.kernel.org
18641 S: Maintained
18642 F: Documentation/driver-api/thermal/power_allocator.rst
18643 F: drivers/thermal/gov_power_allocator.c
18644 F: include/trace/events/thermal_power_allocator.h
18645
18646 THINKPAD ACPI EXTRAS DRIVER
18647 M: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18648 L: ibm-acpi-devel@lists.sourceforge.net
18649 L: platform-driver-x86@vger.kernel.org
18650 S: Maintained
18651 W: http://ibm-acpi.sourceforge.net
18652 W: http://thinkwiki.org/wiki/Ibm-acpi
18653 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18654 F: drivers/platform/x86/thinkpad_acpi.c
18655
18656 THINKPAD LMI DRIVER
18657 M: Mark Pearson <markpearson@lenovo.com>
18658 L: platform-driver-x86@vger.kernel.org
18659 S: Maintained
18660 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
18661 F: drivers/platform/x86/think-lmi.?
18662
18663 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18664 M: Isaac Hazan <isaac.hazan@intel.com>
18665 L: linux-usb@vger.kernel.org
18666 S: Maintained
18667 F: drivers/thunderbolt/dma_test.c
18668
18669 THUNDERBOLT DRIVER
18670 M: Andreas Noever <andreas.noever@gmail.com>
18671 M: Michael Jamet <michael.jamet@intel.com>
18672 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18673 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18674 L: linux-usb@vger.kernel.org
18675 S: Maintained
18676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18677 F: Documentation/admin-guide/thunderbolt.rst
18678 F: drivers/thunderbolt/
18679 F: include/linux/thunderbolt.h
18680
18681 THUNDERBOLT NETWORK DRIVER
18682 M: Michael Jamet <michael.jamet@intel.com>
18683 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18684 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18685 L: netdev@vger.kernel.org
18686 S: Maintained
18687 F: drivers/net/thunderbolt.c
18688
18689 THUNDERX GPIO DRIVER
18690 M: Robert Richter <rric@kernel.org>
18691 S: Odd Fixes
18692 F: drivers/gpio/gpio-thunderx.c
18693
18694 TI ADS131E0X ADC SERIES DRIVER
18695 M: Tomislav Denis <tomislav.denis@avl.com>
18696 L: linux-iio@vger.kernel.org
18697 S: Maintained
18698 F: Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18699 F: drivers/iio/adc/ti-ads131e08.c
18700
18701 TI AM437X VPFE DRIVER
18702 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18703 L: linux-media@vger.kernel.org
18704 S: Maintained
18705 W: https://linuxtv.org
18706 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18707 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18708 F: drivers/media/platform/am437x/
18709
18710 TI BANDGAP AND THERMAL DRIVER
18711 M: Eduardo Valentin <edubezval@gmail.com>
18712 M: Keerthy <j-keerthy@ti.com>
18713 L: linux-pm@vger.kernel.org
18714 L: linux-omap@vger.kernel.org
18715 S: Maintained
18716 F: drivers/thermal/ti-soc-thermal/
18717
18718 TI BQ27XXX POWER SUPPLY DRIVER
18719 F: drivers/power/supply/bq27xxx_battery.c
18720 F: drivers/power/supply/bq27xxx_battery_i2c.c
18721 F: include/linux/power/bq27xxx_battery.h
18722
18723 TI CDCE706 CLOCK DRIVER
18724 M: Max Filippov <jcmvbkbc@gmail.com>
18725 S: Maintained
18726 F: drivers/clk/clk-cdce706.c
18727
18728 TI CLOCK DRIVER
18729 M: Tero Kristo <kristo@kernel.org>
18730 L: linux-omap@vger.kernel.org
18731 S: Odd Fixes
18732 F: drivers/clk/ti/
18733 F: include/linux/clk/ti.h
18734
18735 TI DAVINCI MACHINE SUPPORT
18736 M: Sekhar Nori <nsekhar@ti.com>
18737 R: Bartosz Golaszewski <brgl@bgdev.pl>
18738 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18739 S: Supported
18740 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18741 F: Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18742 F: arch/arm/boot/dts/da850*
18743 F: arch/arm/mach-davinci/
18744 F: drivers/i2c/busses/i2c-davinci.c
18745
18746 TI DAVINCI SERIES CLOCK DRIVER
18747 M: David Lechner <david@lechnology.com>
18748 R: Sekhar Nori <nsekhar@ti.com>
18749 S: Maintained
18750 F: Documentation/devicetree/bindings/clock/ti/davinci/
18751 F: drivers/clk/davinci/
18752
18753 TI DAVINCI SERIES GPIO DRIVER
18754 M: Keerthy <j-keerthy@ti.com>
18755 L: linux-gpio@vger.kernel.org
18756 S: Maintained
18757 F: Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18758 F: drivers/gpio/gpio-davinci.c
18759
18760 TI DAVINCI SERIES MEDIA DRIVER
18761 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18762 L: linux-media@vger.kernel.org
18763 S: Maintained
18764 W: https://linuxtv.org
18765 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18766 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18767 F: drivers/media/platform/davinci/
18768 F: include/media/davinci/
18769
18770 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18771 R: David Lechner <david@lechnology.com>
18772 L: linux-iio@vger.kernel.org
18773 F: Documentation/devicetree/bindings/counter/ti-eqep.yaml
18774 F: drivers/counter/ti-eqep.c
18775
18776 TI ETHERNET SWITCH DRIVER (CPSW)
18777 R: Grygorii Strashko <grygorii.strashko@ti.com>
18778 L: linux-omap@vger.kernel.org
18779 L: netdev@vger.kernel.org
18780 S: Maintained
18781 F: drivers/net/ethernet/ti/cpsw*
18782 F: drivers/net/ethernet/ti/davinci*
18783
18784 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18785 M: Alex Dubov <oakad@yahoo.com>
18786 S: Maintained
18787 W: http://tifmxx.berlios.de/
18788 F: drivers/memstick/host/tifm_ms.c
18789 F: drivers/misc/tifm*
18790 F: drivers/mmc/host/tifm_sd.c
18791 F: include/linux/tifm.h
18792
18793 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18794 M: Santosh Shilimkar <ssantosh@kernel.org>
18795 L: linux-kernel@vger.kernel.org
18796 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18797 S: Maintained
18798 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18799 F: drivers/soc/ti/*
18800
18801 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18802 M: M R Swami Reddy <mr.swami.reddy@ti.com>
18803 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18804 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18805 S: Maintained
18806 F: sound/soc/codecs/isabelle*
18807 F: sound/soc/codecs/lm49453*
18808
18809 TI PCM3060 ASoC CODEC DRIVER
18810 M: Kirill Marinushkin <kmarinushkin@birdec.com>
18811 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18812 S: Maintained
18813 F: Documentation/devicetree/bindings/sound/pcm3060.txt
18814 F: sound/soc/codecs/pcm3060*
18815
18816 TI TAS571X FAMILY ASoC CODEC DRIVER
18817 M: Kevin Cernekee <cernekee@chromium.org>
18818 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18819 S: Odd Fixes
18820 F: sound/soc/codecs/tas571x*
18821
18822 TI TRF7970A NFC DRIVER
18823 M: Mark Greer <mgreer@animalcreek.com>
18824 L: linux-wireless@vger.kernel.org
18825 L: linux-nfc@lists.01.org (subscribers-only)
18826 S: Supported
18827 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18828 F: drivers/nfc/trf7970a.c
18829
18830 TI TSC2046 ADC DRIVER
18831 M: Oleksij Rempel <o.rempel@pengutronix.de>
18832 R: kernel@pengutronix.de
18833 L: linux-iio@vger.kernel.org
18834 S: Maintained
18835 F: Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18836 F: drivers/iio/adc/ti-tsc2046.c
18837
18838 TI TWL4030 SERIES SOC CODEC DRIVER
18839 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18840 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18841 S: Maintained
18842 F: sound/soc/codecs/twl4030*
18843
18844 TI VPE/CAL DRIVERS
18845 M: Benoit Parrot <bparrot@ti.com>
18846 L: linux-media@vger.kernel.org
18847 S: Maintained
18848 W: http://linuxtv.org/
18849 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18850 F: Documentation/devicetree/bindings/media/ti,cal.yaml
18851 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
18852 F: drivers/media/platform/ti-vpe/
18853
18854 TI WILINK WIRELESS DRIVERS
18855 L: linux-wireless@vger.kernel.org
18856 S: Orphan
18857 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18858 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18859 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18860 F: drivers/net/wireless/ti/
18861 F: include/linux/wl12xx.h
18862
18863 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18864 M: John Stultz <john.stultz@linaro.org>
18865 M: Thomas Gleixner <tglx@linutronix.de>
18866 R: Stephen Boyd <sboyd@kernel.org>
18867 L: linux-kernel@vger.kernel.org
18868 S: Supported
18869 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18870 F: include/linux/clocksource.h
18871 F: include/linux/time.h
18872 F: include/linux/timex.h
18873 F: include/uapi/linux/time.h
18874 F: include/uapi/linux/timex.h
18875 F: kernel/time/alarmtimer.c
18876 F: kernel/time/clocksource.c
18877 F: kernel/time/ntp.c
18878 F: kernel/time/time*.c
18879 F: tools/testing/selftests/timers/
18880
18881 TIPC NETWORK LAYER
18882 M: Jon Maloy <jmaloy@redhat.com>
18883 M: Ying Xue <ying.xue@windriver.com>
18884 L: netdev@vger.kernel.org (core kernel code)
18885 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18886 S: Maintained
18887 W: http://tipc.sourceforge.net/
18888 F: include/uapi/linux/tipc*.h
18889 F: net/tipc/
18890
18891 TLAN NETWORK DRIVER
18892 M: Samuel Chessman <chessman@tux.org>
18893 L: tlan-devel@lists.sourceforge.net (subscribers-only)
18894 S: Maintained
18895 W: http://sourceforge.net/projects/tlan/
18896 F: Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18897 F: drivers/net/ethernet/ti/tlan.*
18898
18899 TM6000 VIDEO4LINUX DRIVER
18900 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18901 L: linux-media@vger.kernel.org
18902 S: Odd fixes
18903 W: https://linuxtv.org
18904 T: git git://linuxtv.org/media_tree.git
18905 F: Documentation/admin-guide/media/tm6000*
18906 F: drivers/media/usb/tm6000/
18907
18908 TMIO/SDHI MMC DRIVER
18909 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
18910 L: linux-mmc@vger.kernel.org
18911 S: Supported
18912 F: drivers/mmc/host/renesas_sdhi*
18913 F: drivers/mmc/host/tmio_mmc*
18914 F: include/linux/mfd/tmio.h
18915
18916 TMP401 HARDWARE MONITOR DRIVER
18917 M: Guenter Roeck <linux@roeck-us.net>
18918 L: linux-hwmon@vger.kernel.org
18919 S: Maintained
18920 F: Documentation/hwmon/tmp401.rst
18921 F: drivers/hwmon/tmp401.c
18922
18923 TMP513 HARDWARE MONITOR DRIVER
18924 M: Eric Tremblay <etremblay@distech-controls.com>
18925 L: linux-hwmon@vger.kernel.org
18926 S: Maintained
18927 F: Documentation/hwmon/tmp513.rst
18928 F: drivers/hwmon/tmp513.c
18929
18930 TMPFS (SHMEM FILESYSTEM)
18931 M: Hugh Dickins <hughd@google.com>
18932 L: linux-mm@kvack.org
18933 S: Maintained
18934 F: include/linux/shmem_fs.h
18935 F: mm/shmem.c
18936
18937 TOMOYO SECURITY MODULE
18938 M: Kentaro Takeda <takedakn@nttdata.co.jp>
18939 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18940 L: tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18941 L: tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18942 L: tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18943 L: tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18944 S: Maintained
18945 W: https://tomoyo.osdn.jp/
18946 F: security/tomoyo/
18947
18948 TOPSTAR LAPTOP EXTRAS DRIVER
18949 M: Herton Ronaldo Krzesinski <herton@canonical.com>
18950 L: platform-driver-x86@vger.kernel.org
18951 S: Maintained
18952 F: drivers/platform/x86/topstar-laptop.c
18953
18954 TORTURE-TEST MODULES
18955 M: Davidlohr Bueso <dave@stgolabs.net>
18956 M: "Paul E. McKenney" <paulmck@kernel.org>
18957 M: Josh Triplett <josh@joshtriplett.org>
18958 L: linux-kernel@vger.kernel.org
18959 S: Supported
18960 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18961 F: Documentation/RCU/torture.rst
18962 F: kernel/locking/locktorture.c
18963 F: kernel/rcu/rcuscale.c
18964 F: kernel/rcu/rcutorture.c
18965 F: kernel/rcu/refscale.c
18966 F: kernel/torture.c
18967
18968 TOSHIBA ACPI EXTRAS DRIVER
18969 M: Azael Avalos <coproscefalo@gmail.com>
18970 L: platform-driver-x86@vger.kernel.org
18971 S: Maintained
18972 F: drivers/platform/x86/toshiba_acpi.c
18973
18974 TOSHIBA BLUETOOTH DRIVER
18975 M: Azael Avalos <coproscefalo@gmail.com>
18976 L: platform-driver-x86@vger.kernel.org
18977 S: Maintained
18978 F: drivers/platform/x86/toshiba_bluetooth.c
18979
18980 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18981 M: Azael Avalos <coproscefalo@gmail.com>
18982 L: platform-driver-x86@vger.kernel.org
18983 S: Maintained
18984 F: drivers/platform/x86/toshiba_haps.c
18985
18986 TOSHIBA SMM DRIVER
18987 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
18988 S: Maintained
18989 W: http://www.buzzard.org.uk/toshiba/
18990 F: drivers/char/toshiba.c
18991 F: include/linux/toshiba.h
18992 F: include/uapi/linux/toshiba.h
18993
18994 TOSHIBA TC358743 DRIVER
18995 M: Mats Randgaard <matrandg@cisco.com>
18996 L: linux-media@vger.kernel.org
18997 S: Maintained
18998 F: drivers/media/i2c/tc358743*
18999 F: include/media/i2c/tc358743.h
19000
19001 TOSHIBA WMI HOTKEYS DRIVER
19002 M: Azael Avalos <coproscefalo@gmail.com>
19003 L: platform-driver-x86@vger.kernel.org
19004 S: Maintained
19005 F: drivers/platform/x86/toshiba-wmi.c
19006
19007 TPM DEVICE DRIVER
19008 M: Peter Huewe <peterhuewe@gmx.de>
19009 M: Jarkko Sakkinen <jarkko@kernel.org>
19010 R: Jason Gunthorpe <jgg@ziepe.ca>
19011 L: linux-integrity@vger.kernel.org
19012 S: Maintained
19013 W: https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19014 Q: https://patchwork.kernel.org/project/linux-integrity/list/
19015 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19016 F: drivers/char/tpm/
19017
19018 TRACING
19019 M: Steven Rostedt <rostedt@goodmis.org>
19020 M: Ingo Molnar <mingo@redhat.com>
19021 S: Maintained
19022 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
19023 F: Documentation/trace/ftrace.rst
19024 F: arch/*/*/*/ftrace.h
19025 F: arch/*/kernel/ftrace.c
19026 F: fs/tracefs/
19027 F: include/*/ftrace.h
19028 F: include/linux/trace*.h
19029 F: include/trace/
19030 F: kernel/trace/
19031 F: tools/testing/selftests/ftrace/
19032
19033 TRACING MMIO ACCESSES (MMIOTRACE)
19034 M: Steven Rostedt <rostedt@goodmis.org>
19035 M: Ingo Molnar <mingo@kernel.org>
19036 R: Karol Herbst <karolherbst@gmail.com>
19037 R: Pekka Paalanen <ppaalanen@gmail.com>
19038 L: linux-kernel@vger.kernel.org
19039 L: nouveau@lists.freedesktop.org
19040 S: Maintained
19041 F: arch/x86/mm/kmmio.c
19042 F: arch/x86/mm/mmio-mod.c
19043 F: arch/x86/mm/testmmiotrace.c
19044 F: include/linux/mmiotrace.h
19045 F: kernel/trace/trace_mmiotrace.c
19046
19047 TRACING OS NOISE / LATENCY TRACERS
19048 M: Steven Rostedt <rostedt@goodmis.org>
19049 M: Daniel Bristot de Oliveira <bristot@kernel.org>
19050 S: Maintained
19051 F: kernel/trace/trace_osnoise.c
19052 F: include/trace/events/osnoise.h
19053 F: kernel/trace/trace_hwlat.c
19054 F: kernel/trace/trace_irqsoff.c
19055 F: kernel/trace/trace_sched_wakeup.c
19056 F: Documentation/trace/osnoise-tracer.rst
19057 F: Documentation/trace/timerlat-tracer.rst
19058 F: Documentation/trace/hwlat_detector.rst
19059 F: arch/*/kernel/trace.c
19060
19061 TRADITIONAL CHINESE DOCUMENTATION
19062 M: Hu Haowen <src.res@email.cn>
19063 L: linux-doc-tw-discuss@lists.sourceforge.net
19064 S: Maintained
19065 W: https://github.com/srcres258/linux-doc
19066 T: git git://github.com/srcres258/linux-doc.git doc-zh-tw
19067 F: Documentation/translations/zh_TW/
19068
19069 TRIVIAL PATCHES
19070 M: Jiri Kosina <trivial@kernel.org>
19071 S: Maintained
19072 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19073 K: ^Subject:.*(?i)trivial
19074
19075 TTY LAYER
19076 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19077 M: Jiri Slaby <jirislaby@kernel.org>
19078 S: Supported
19079 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19080 F: Documentation/driver-api/serial/
19081 F: drivers/tty/
19082 F: drivers/tty/serial/serial_core.c
19083 F: include/linux/selection.h
19084 F: include/linux/serial.h
19085 F: include/linux/serial_core.h
19086 F: include/linux/sysrq.h
19087 F: include/linux/tty*.h
19088 F: include/linux/vt.h
19089 F: include/linux/vt_*.h
19090 F: include/uapi/linux/serial.h
19091 F: include/uapi/linux/serial_core.h
19092 F: include/uapi/linux/tty.h
19093
19094 TUA9001 MEDIA DRIVER
19095 M: Antti Palosaari <crope@iki.fi>
19096 L: linux-media@vger.kernel.org
19097 S: Maintained
19098 W: https://linuxtv.org
19099 W: http://palosaari.fi/linux/
19100 Q: http://patchwork.linuxtv.org/project/linux-media/list/
19101 T: git git://linuxtv.org/anttip/media_tree.git
19102 F: drivers/media/tuners/tua9001*
19103
19104 TULIP NETWORK DRIVERS
19105 L: netdev@vger.kernel.org
19106 L: linux-parisc@vger.kernel.org
19107 S: Orphan
19108 F: drivers/net/ethernet/dec/tulip/
19109
19110 TUN/TAP driver
19111 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
19112 S: Maintained
19113 W: http://vtun.sourceforge.net/tun
19114 F: Documentation/networking/tuntap.rst
19115 F: arch/um/os-Linux/drivers/
19116
19117 TURBOCHANNEL SUBSYSTEM
19118 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
19119 M: Ralf Baechle <ralf@linux-mips.org>
19120 L: linux-mips@vger.kernel.org
19121 S: Maintained
19122 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
19123 F: drivers/tc/
19124 F: include/linux/tc.h
19125
19126 TURBOSTAT UTILITY
19127 M: "Len Brown" <lenb@kernel.org>
19128 L: linux-pm@vger.kernel.org
19129 S: Supported
19130 Q: https://patchwork.kernel.org/project/linux-pm/list/
19131 B: https://bugzilla.kernel.org
19132 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19133 F: tools/power/x86/turbostat/
19134
19135 TW5864 VIDEO4LINUX DRIVER
19136 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19137 M: Anton Sviridenko <anton@corp.bluecherry.net>
19138 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19139 M: Andrey Utkin <andrey_utkin@fastmail.com>
19140 L: linux-media@vger.kernel.org
19141 S: Supported
19142 F: drivers/media/pci/tw5864/
19143
19144 TW68 VIDEO4LINUX DRIVER
19145 M: Hans Verkuil <hverkuil@xs4all.nl>
19146 L: linux-media@vger.kernel.org
19147 S: Odd Fixes
19148 W: https://linuxtv.org
19149 T: git git://linuxtv.org/media_tree.git
19150 F: drivers/media/pci/tw68/
19151
19152 TW686X VIDEO4LINUX DRIVER
19153 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19154 L: linux-media@vger.kernel.org
19155 S: Maintained
19156 W: http://linuxtv.org
19157 T: git git://linuxtv.org/media_tree.git
19158 F: drivers/media/pci/tw686x/
19159
19160 UACCE ACCELERATOR FRAMEWORK
19161 M: Zhangfei Gao <zhangfei.gao@linaro.org>
19162 M: Zhou Wang <wangzhou1@hisilicon.com>
19163 L: linux-accelerators@lists.ozlabs.org
19164 L: linux-kernel@vger.kernel.org
19165 S: Maintained
19166 F: Documentation/ABI/testing/sysfs-driver-uacce
19167 F: Documentation/misc-devices/uacce.rst
19168 F: drivers/misc/uacce/
19169 F: include/linux/uacce.h
19170 F: include/uapi/misc/uacce/
19171
19172 UBI FILE SYSTEM (UBIFS)
19173 M: Richard Weinberger <richard@nod.at>
19174 L: linux-mtd@lists.infradead.org
19175 S: Supported
19176 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
19177 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19178 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19179 F: Documentation/filesystems/ubifs-authentication.rst
19180 F: Documentation/filesystems/ubifs.rst
19181 F: fs/ubifs/
19182
19183 UCLINUX (M68KNOMMU AND COLDFIRE)
19184 M: Greg Ungerer <gerg@linux-m68k.org>
19185 L: linux-m68k@lists.linux-m68k.org
19186 L: uclinux-dev@uclinux.org (subscribers-only)
19187 S: Maintained
19188 W: http://www.linux-m68k.org/
19189 W: http://www.uclinux.org/
19190 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19191 F: arch/m68k/*/*_no.*
19192 F: arch/m68k/68*/
19193 F: arch/m68k/coldfire/
19194 F: arch/m68k/include/asm/*_no.*
19195
19196 UDF FILESYSTEM
19197 M: Jan Kara <jack@suse.com>
19198 S: Maintained
19199 F: Documentation/filesystems/udf.rst
19200 F: fs/udf/
19201
19202 UDRAW TABLET
19203 M: Bastien Nocera <hadess@hadess.net>
19204 L: linux-input@vger.kernel.org
19205 S: Maintained
19206 F: drivers/hid/hid-udraw-ps3.c
19207
19208 UFS FILESYSTEM
19209 M: Evgeniy Dushistov <dushistov@mail.ru>
19210 S: Maintained
19211 F: Documentation/admin-guide/ufs.rst
19212 F: fs/ufs/
19213
19214 UHID USERSPACE HID IO DRIVER
19215 M: David Rheinsberg <david.rheinsberg@gmail.com>
19216 L: linux-input@vger.kernel.org
19217 S: Maintained
19218 F: drivers/hid/uhid.c
19219 F: include/uapi/linux/uhid.h
19220
19221 ULPI BUS
19222 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19223 L: linux-usb@vger.kernel.org
19224 S: Maintained
19225 F: drivers/usb/common/ulpi.c
19226 F: include/linux/ulpi/
19227
19228 UNICODE SUBSYSTEM
19229 M: Gabriel Krisman Bertazi <krisman@collabora.com>
19230 L: linux-fsdevel@vger.kernel.org
19231 S: Supported
19232 F: fs/unicode/
19233
19234 UNIFDEF
19235 M: Tony Finch <dot@dotat.at>
19236 S: Maintained
19237 W: http://dotat.at/prog/unifdef
19238 F: scripts/unifdef.c
19239
19240 UNIFORM CDROM DRIVER
19241 M: Phillip Potter <phil@philpotter.co.uk>
19242 S: Maintained
19243 F: Documentation/cdrom/
19244 F: drivers/cdrom/cdrom.c
19245 F: include/linux/cdrom.h
19246 F: include/uapi/linux/cdrom.h
19247
19248 UNISYS S-PAR DRIVERS
19249 M: David Kershner <david.kershner@unisys.com>
19250 L: sparmaintainer@unisys.com (Unisys internal)
19251 S: Supported
19252 F: drivers/staging/unisys/
19253 F: drivers/visorbus/
19254 F: include/linux/visorbus.h
19255
19256 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19257 R: Alim Akhtar <alim.akhtar@samsung.com>
19258 R: Avri Altman <avri.altman@wdc.com>
19259 L: linux-scsi@vger.kernel.org
19260 S: Supported
19261 F: Documentation/scsi/ufs.rst
19262 F: drivers/scsi/ufs/
19263
19264 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19265 M: Pedro Sousa <pedrom.sousa@synopsys.com>
19266 L: linux-scsi@vger.kernel.org
19267 S: Supported
19268 F: drivers/scsi/ufs/*dwc*
19269
19270 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19271 M: Stanley Chu <stanley.chu@mediatek.com>
19272 L: linux-scsi@vger.kernel.org
19273 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19274 S: Maintained
19275 F: drivers/scsi/ufs/ufs-mediatek*
19276
19277 UNSORTED BLOCK IMAGES (UBI)
19278 M: Richard Weinberger <richard@nod.at>
19279 L: linux-mtd@lists.infradead.org
19280 S: Supported
19281 W: http://www.linux-mtd.infradead.org/
19282 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19283 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19284 F: drivers/mtd/ubi/
19285 F: include/linux/mtd/ubi.h
19286 F: include/uapi/mtd/ubi-user.h
19287
19288 USB "USBNET" DRIVER FRAMEWORK
19289 M: Oliver Neukum <oneukum@suse.com>
19290 L: netdev@vger.kernel.org
19291 S: Maintained
19292 W: http://www.linux-usb.org/usbnet
19293 F: drivers/net/usb/usbnet.c
19294 F: include/linux/usb/usbnet.h
19295
19296 USB ACM DRIVER
19297 M: Oliver Neukum <oneukum@suse.com>
19298 L: linux-usb@vger.kernel.org
19299 S: Maintained
19300 F: Documentation/usb/acm.rst
19301 F: drivers/usb/class/cdc-acm.*
19302
19303 USB APPLE MFI FASTCHARGE DRIVER
19304 M: Bastien Nocera <hadess@hadess.net>
19305 L: linux-usb@vger.kernel.org
19306 S: Maintained
19307 F: drivers/usb/misc/apple-mfi-fastcharge.c
19308
19309 USB AR5523 WIRELESS DRIVER
19310 M: Pontus Fuchs <pontus.fuchs@gmail.com>
19311 L: linux-wireless@vger.kernel.org
19312 S: Maintained
19313 F: drivers/net/wireless/ath/ar5523/
19314
19315 USB ATTACHED SCSI
19316 M: Oliver Neukum <oneukum@suse.com>
19317 L: linux-usb@vger.kernel.org
19318 L: linux-scsi@vger.kernel.org
19319 S: Maintained
19320 F: drivers/usb/storage/uas.c
19321
19322 USB CDC ETHERNET DRIVER
19323 M: Oliver Neukum <oliver@neukum.org>
19324 L: linux-usb@vger.kernel.org
19325 S: Maintained
19326 F: drivers/net/usb/cdc_*.c
19327 F: include/uapi/linux/usb/cdc.h
19328
19329 USB CHAOSKEY DRIVER
19330 M: Keith Packard <keithp@keithp.com>
19331 L: linux-usb@vger.kernel.org
19332 S: Maintained
19333 F: drivers/usb/misc/chaoskey.c
19334
19335 USB CYPRESS C67X00 DRIVER
19336 L: linux-usb@vger.kernel.org
19337 S: Orphan
19338 F: drivers/usb/c67x00/
19339
19340 USB DAVICOM DM9601 DRIVER
19341 M: Peter Korsgaard <peter@korsgaard.com>
19342 L: netdev@vger.kernel.org
19343 S: Maintained
19344 W: http://www.linux-usb.org/usbnet
19345 F: drivers/net/usb/dm9601.c
19346
19347 USB EHCI DRIVER
19348 M: Alan Stern <stern@rowland.harvard.edu>
19349 L: linux-usb@vger.kernel.org
19350 S: Maintained
19351 F: Documentation/usb/ehci.rst
19352 F: drivers/usb/host/ehci*
19353
19354 USB GADGET/PERIPHERAL SUBSYSTEM
19355 M: Felipe Balbi <balbi@kernel.org>
19356 L: linux-usb@vger.kernel.org
19357 S: Maintained
19358 W: http://www.linux-usb.org/gadget
19359 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19360 F: drivers/usb/gadget/
19361 F: include/linux/usb/gadget*
19362
19363 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19364 M: Jiri Kosina <jikos@kernel.org>
19365 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
19366 L: linux-usb@vger.kernel.org
19367 S: Maintained
19368 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19369 F: Documentation/hid/hiddev.rst
19370 F: drivers/hid/usbhid/
19371
19372 USB INTEL XHCI ROLE MUX DRIVER
19373 M: Hans de Goede <hdegoede@redhat.com>
19374 L: linux-usb@vger.kernel.org
19375 S: Maintained
19376 F: drivers/usb/roles/intel-xhci-usb-role-switch.c
19377
19378 USB IP DRIVER FOR HISILICON KIRIN 960
19379 M: Yu Chen <chenyu56@huawei.com>
19380 M: Binghui Wang <wangbinghui@hisilicon.com>
19381 L: linux-usb@vger.kernel.org
19382 S: Maintained
19383 F: Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19384 F: drivers/phy/hisilicon/phy-hi3660-usb3.c
19385
19386 USB IP DRIVER FOR HISILICON KIRIN 970
19387 M: Mauro Carvalho Chehab <mchehab@kernel.org>
19388 L: linux-usb@vger.kernel.org
19389 S: Maintained
19390 F: Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19391 F: drivers/phy/hisilicon/phy-hi3670-usb3.c
19392
19393 USB ISP116X DRIVER
19394 M: Olav Kongas <ok@artecdesign.ee>
19395 L: linux-usb@vger.kernel.org
19396 S: Maintained
19397 F: drivers/usb/host/isp116x*
19398 F: include/linux/usb/isp116x.h
19399
19400 USB ISP1760 DRIVER
19401 M: Rui Miguel Silva <rui.silva@linaro.org>
19402 L: linux-usb@vger.kernel.org
19403 S: Maintained
19404 F: drivers/usb/isp1760/*
19405 F: Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19406
19407 USB LAN78XX ETHERNET DRIVER
19408 M: Woojung Huh <woojung.huh@microchip.com>
19409 M: UNGLinuxDriver@microchip.com
19410 L: netdev@vger.kernel.org
19411 S: Maintained
19412 F: Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19413 F: drivers/net/usb/lan78xx.*
19414 F: include/dt-bindings/net/microchip-lan78xx.h
19415
19416 USB MASS STORAGE DRIVER
19417 M: Alan Stern <stern@rowland.harvard.edu>
19418 L: linux-usb@vger.kernel.org
19419 L: usb-storage@lists.one-eyed-alien.net
19420 S: Maintained
19421 F: drivers/usb/storage/
19422
19423 USB MIDI DRIVER
19424 M: Clemens Ladisch <clemens@ladisch.de>
19425 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19426 S: Maintained
19427 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19428 F: sound/usb/midi.*
19429
19430 USB NETWORKING DRIVERS
19431 L: linux-usb@vger.kernel.org
19432 S: Odd Fixes
19433 F: drivers/net/usb/
19434
19435 USB OHCI DRIVER
19436 M: Alan Stern <stern@rowland.harvard.edu>
19437 L: linux-usb@vger.kernel.org
19438 S: Maintained
19439 F: Documentation/usb/ohci.rst
19440 F: drivers/usb/host/ohci*
19441
19442 USB OTG FSM (Finite State Machine)
19443 M: Peter Chen <peter.chen@kernel.org>
19444 L: linux-usb@vger.kernel.org
19445 S: Maintained
19446 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19447 F: drivers/usb/common/usb-otg-fsm.c
19448
19449 USB OVER IP DRIVER
19450 M: Valentina Manea <valentina.manea.m@gmail.com>
19451 M: Shuah Khan <shuah@kernel.org>
19452 M: Shuah Khan <skhan@linuxfoundation.org>
19453 L: linux-usb@vger.kernel.org
19454 S: Maintained
19455 F: Documentation/usb/usbip_protocol.rst
19456 F: drivers/usb/usbip/
19457 F: tools/testing/selftests/drivers/usb/usbip/
19458 F: tools/usb/usbip/
19459
19460 USB PEGASUS DRIVER
19461 M: Petko Manolov <petkan@nucleusys.com>
19462 L: linux-usb@vger.kernel.org
19463 L: netdev@vger.kernel.org
19464 S: Maintained
19465 W: https://github.com/petkan/pegasus
19466 T: git git://github.com/petkan/pegasus.git
19467 F: drivers/net/usb/pegasus.*
19468
19469 USB PHY LAYER
19470 M: Felipe Balbi <balbi@kernel.org>
19471 L: linux-usb@vger.kernel.org
19472 S: Maintained
19473 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19474 F: drivers/usb/phy/
19475
19476 USB PRINTER DRIVER (usblp)
19477 M: Pete Zaitcev <zaitcev@redhat.com>
19478 L: linux-usb@vger.kernel.org
19479 S: Supported
19480 F: drivers/usb/class/usblp.c
19481
19482 USB RAW GADGET DRIVER
19483 R: Andrey Konovalov <andreyknvl@gmail.com>
19484 L: linux-usb@vger.kernel.org
19485 S: Maintained
19486 F: Documentation/usb/raw-gadget.rst
19487 F: drivers/usb/gadget/legacy/raw_gadget.c
19488 F: include/uapi/linux/usb/raw_gadget.h
19489
19490 USB QMI WWAN NETWORK DRIVER
19491 M: Bjørn Mork <bjorn@mork.no>
19492 L: netdev@vger.kernel.org
19493 S: Maintained
19494 F: Documentation/ABI/testing/sysfs-class-net-qmi
19495 F: drivers/net/usb/qmi_wwan.c
19496
19497 USB RTL8150 DRIVER
19498 M: Petko Manolov <petkan@nucleusys.com>
19499 L: linux-usb@vger.kernel.org
19500 L: netdev@vger.kernel.org
19501 S: Maintained
19502 W: https://github.com/petkan/rtl8150
19503 T: git git://github.com/petkan/rtl8150.git
19504 F: drivers/net/usb/rtl8150.c
19505
19506 USB SERIAL SUBSYSTEM
19507 M: Johan Hovold <johan@kernel.org>
19508 L: linux-usb@vger.kernel.org
19509 S: Maintained
19510 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19511 F: Documentation/usb/usb-serial.rst
19512 F: drivers/usb/serial/
19513 F: include/linux/usb/serial.h
19514
19515 USB SMSC75XX ETHERNET DRIVER
19516 M: Steve Glendinning <steve.glendinning@shawell.net>
19517 L: netdev@vger.kernel.org
19518 S: Maintained
19519 F: drivers/net/usb/smsc75xx.*
19520
19521 USB SMSC95XX ETHERNET DRIVER
19522 M: Steve Glendinning <steve.glendinning@shawell.net>
19523 M: UNGLinuxDriver@microchip.com
19524 L: netdev@vger.kernel.org
19525 S: Maintained
19526 F: drivers/net/usb/smsc95xx.*
19527
19528 USB SUBSYSTEM
19529 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19530 L: linux-usb@vger.kernel.org
19531 S: Supported
19532 W: http://www.linux-usb.org
19533 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19534 F: Documentation/devicetree/bindings/usb/
19535 F: Documentation/usb/
19536 F: drivers/usb/
19537 F: include/linux/usb.h
19538 F: include/linux/usb/
19539
19540 USB TYPEC BUS FOR ALTERNATE MODES
19541 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19542 L: linux-usb@vger.kernel.org
19543 S: Maintained
19544 F: Documentation/ABI/testing/sysfs-bus-typec
19545 F: Documentation/driver-api/usb/typec_bus.rst
19546 F: drivers/usb/typec/altmodes/
19547 F: include/linux/usb/typec_altmode.h
19548
19549 USB TYPEC CLASS
19550 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19551 L: linux-usb@vger.kernel.org
19552 S: Maintained
19553 F: Documentation/ABI/testing/sysfs-class-typec
19554 F: Documentation/driver-api/usb/typec.rst
19555 F: drivers/usb/typec/
19556 F: include/linux/usb/typec.h
19557
19558 USB TYPEC INTEL PMC MUX DRIVER
19559 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19560 L: linux-usb@vger.kernel.org
19561 S: Maintained
19562 F: Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19563 F: drivers/usb/typec/mux/intel_pmc_mux.c
19564
19565 USB TYPEC PI3USB30532 MUX DRIVER
19566 M: Hans de Goede <hdegoede@redhat.com>
19567 L: linux-usb@vger.kernel.org
19568 S: Maintained
19569 F: drivers/usb/typec/mux/pi3usb30532.c
19570
19571 USB TYPEC PORT CONTROLLER DRIVERS
19572 M: Guenter Roeck <linux@roeck-us.net>
19573 L: linux-usb@vger.kernel.org
19574 S: Maintained
19575 F: drivers/usb/typec/tcpm/
19576
19577 USB UHCI DRIVER
19578 M: Alan Stern <stern@rowland.harvard.edu>
19579 L: linux-usb@vger.kernel.org
19580 S: Maintained
19581 F: drivers/usb/host/uhci*
19582
19583 USB VIDEO CLASS
19584 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19585 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19586 L: linux-media@vger.kernel.org
19587 S: Maintained
19588 W: http://www.ideasonboard.org/uvc/
19589 T: git git://linuxtv.org/media_tree.git
19590 F: drivers/media/usb/uvc/
19591 F: include/uapi/linux/uvcvideo.h
19592
19593 USB WEBCAM GADGET
19594 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19595 L: linux-usb@vger.kernel.org
19596 S: Maintained
19597 F: drivers/usb/gadget/function/*uvc*
19598 F: drivers/usb/gadget/legacy/webcam.c
19599 F: include/uapi/linux/usb/g_uvc.h
19600
19601 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19602 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
19603 L: linux-wireless@vger.kernel.org
19604 S: Maintained
19605 F: drivers/net/wireless/rndis_wlan.c
19606
19607 USB XHCI DRIVER
19608 M: Mathias Nyman <mathias.nyman@intel.com>
19609 L: linux-usb@vger.kernel.org
19610 S: Supported
19611 F: drivers/usb/host/pci-quirks*
19612 F: drivers/usb/host/xhci*
19613
19614 USB ZD1201 DRIVER
19615 L: linux-wireless@vger.kernel.org
19616 S: Orphan
19617 W: http://linux-lc100020.sourceforge.net
19618 F: drivers/net/wireless/zydas/zd1201.*
19619
19620 USB ZR364XX DRIVER
19621 M: Antoine Jacquet <royale@zerezo.com>
19622 L: linux-usb@vger.kernel.org
19623 L: linux-media@vger.kernel.org
19624 S: Maintained
19625 W: http://royale.zerezo.com/zr364xx/
19626 T: git git://linuxtv.org/media_tree.git
19627 F: Documentation/admin-guide/media/zr364xx*
19628 F: drivers/media/usb/zr364xx/
19629
19630 USER-MODE LINUX (UML)
19631 M: Jeff Dike <jdike@addtoit.com>
19632 M: Richard Weinberger <richard@nod.at>
19633 M: Anton Ivanov <anton.ivanov@cambridgegreys.com>
19634 L: linux-um@lists.infradead.org
19635 S: Maintained
19636 W: http://user-mode-linux.sourceforge.net
19637 Q: https://patchwork.ozlabs.org/project/linux-um/list/
19638 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19639 F: Documentation/virt/uml/
19640 F: arch/um/
19641 F: arch/x86/um/
19642 F: fs/hostfs/
19643
19644 USERSPACE COPYIN/COPYOUT (UIOVEC)
19645 M: Alexander Viro <viro@zeniv.linux.org.uk>
19646 S: Maintained
19647 F: include/linux/uio.h
19648 F: lib/iov_iter.c
19649
19650 USERSPACE DMA BUFFER DRIVER
19651 M: Gerd Hoffmann <kraxel@redhat.com>
19652 L: dri-devel@lists.freedesktop.org
19653 S: Maintained
19654 T: git git://anongit.freedesktop.org/drm/drm-misc
19655 F: drivers/dma-buf/udmabuf.c
19656 F: include/uapi/linux/udmabuf.h
19657
19658 USERSPACE I/O (UIO)
19659 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19660 S: Maintained
19661 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19662 F: Documentation/driver-api/uio-howto.rst
19663 F: drivers/uio/
19664 F: include/linux/uio_driver.h
19665
19666 UTIL-LINUX PACKAGE
19667 M: Karel Zak <kzak@redhat.com>
19668 L: util-linux@vger.kernel.org
19669 S: Maintained
19670 W: http://en.wikipedia.org/wiki/Util-linux
19671 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19672
19673 UUID HELPERS
19674 M: Christoph Hellwig <hch@lst.de>
19675 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19676 L: linux-kernel@vger.kernel.org
19677 S: Maintained
19678 T: git git://git.infradead.org/users/hch/uuid.git
19679 F: include/linux/uuid.h
19680 F: include/uapi/linux/uuid.h
19681 F: lib/test_uuid.c
19682 F: lib/uuid.c
19683
19684 UV SYSFS DRIVER
19685 M: Justin Ernst <justin.ernst@hpe.com>
19686 L: platform-driver-x86@vger.kernel.org
19687 S: Maintained
19688 F: drivers/platform/x86/uv_sysfs.c
19689
19690 UVESAFB DRIVER
19691 M: Michal Januszewski <spock@gentoo.org>
19692 L: linux-fbdev@vger.kernel.org
19693 S: Maintained
19694 W: https://github.com/mjanusz/v86d
19695 F: Documentation/fb/uvesafb.rst
19696 F: drivers/video/fbdev/uvesafb.*
19697
19698 Ux500 CLOCK DRIVERS
19699 M: Ulf Hansson <ulf.hansson@linaro.org>
19700 L: linux-clk@vger.kernel.org
19701 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19702 S: Maintained
19703 F: drivers/clk/ux500/
19704
19705 VF610 NAND DRIVER
19706 M: Stefan Agner <stefan@agner.ch>
19707 L: linux-mtd@lists.infradead.org
19708 S: Supported
19709 F: drivers/mtd/nand/raw/vf610_nfc.c
19710
19711 VFAT/FAT/MSDOS FILESYSTEM
19712 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19713 S: Maintained
19714 F: Documentation/filesystems/vfat.rst
19715 F: fs/fat/
19716
19717 VFIO DRIVER
19718 M: Alex Williamson <alex.williamson@redhat.com>
19719 R: Cornelia Huck <cohuck@redhat.com>
19720 L: kvm@vger.kernel.org
19721 S: Maintained
19722 T: git git://github.com/awilliam/linux-vfio.git
19723 F: Documentation/driver-api/vfio.rst
19724 F: drivers/vfio/
19725 F: include/linux/vfio.h
19726 F: include/linux/vfio_pci_core.h
19727 F: include/uapi/linux/vfio.h
19728
19729 VFIO FSL-MC DRIVER
19730 M: Diana Craciun <diana.craciun@oss.nxp.com>
19731 L: kvm@vger.kernel.org
19732 S: Maintained
19733 F: drivers/vfio/fsl-mc/
19734
19735 VFIO MEDIATED DEVICE DRIVERS
19736 M: Kirti Wankhede <kwankhede@nvidia.com>
19737 L: kvm@vger.kernel.org
19738 S: Maintained
19739 F: Documentation/driver-api/vfio-mediated-device.rst
19740 F: drivers/vfio/mdev/
19741 F: include/linux/mdev.h
19742 F: samples/vfio-mdev/
19743
19744 VFIO PLATFORM DRIVER
19745 M: Eric Auger <eric.auger@redhat.com>
19746 L: kvm@vger.kernel.org
19747 S: Maintained
19748 F: drivers/vfio/platform/
19749
19750 VGA_SWITCHEROO
19751 R: Lukas Wunner <lukas@wunner.de>
19752 S: Maintained
19753 T: git git://anongit.freedesktop.org/drm/drm-misc
19754 F: Documentation/gpu/vga-switcheroo.rst
19755 F: drivers/gpu/vga/vga_switcheroo.c
19756 F: include/linux/vga_switcheroo.h
19757
19758 VIA RHINE NETWORK DRIVER
19759 S: Maintained
19760 M: Kevin Brace <kevinbrace@bracecomputerlab.com>
19761 F: drivers/net/ethernet/via/via-rhine.c
19762
19763 VIA SD/MMC CARD CONTROLLER DRIVER
19764 M: Bruce Chang <brucechang@via.com.tw>
19765 M: Harald Welte <HaraldWelte@viatech.com>
19766 S: Maintained
19767 F: drivers/mmc/host/via-sdmmc.c
19768
19769 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19770 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19771 L: linux-fbdev@vger.kernel.org
19772 S: Maintained
19773 F: drivers/video/fbdev/via/
19774 F: include/linux/via-core.h
19775 F: include/linux/via-gpio.h
19776 F: include/linux/via_i2c.h
19777
19778 VIA VELOCITY NETWORK DRIVER
19779 M: Francois Romieu <romieu@fr.zoreil.com>
19780 L: netdev@vger.kernel.org
19781 S: Maintained
19782 F: drivers/net/ethernet/via/via-velocity.*
19783
19784 VICODEC VIRTUAL CODEC DRIVER
19785 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
19786 L: linux-media@vger.kernel.org
19787 S: Maintained
19788 W: https://linuxtv.org
19789 T: git git://linuxtv.org/media_tree.git
19790 F: drivers/media/test-drivers/vicodec/*
19791
19792 VIDEO I2C POLLING DRIVER
19793 M: Matt Ranostay <matt.ranostay@konsulko.com>
19794 L: linux-media@vger.kernel.org
19795 S: Maintained
19796 F: drivers/media/i2c/video-i2c.c
19797
19798 VIDEO MULTIPLEXER DRIVER
19799 M: Philipp Zabel <p.zabel@pengutronix.de>
19800 L: linux-media@vger.kernel.org
19801 S: Maintained
19802 F: drivers/media/platform/video-mux.c
19803
19804 VIDEOBUF2 FRAMEWORK
19805 M: Tomasz Figa <tfiga@chromium.org>
19806 M: Marek Szyprowski <m.szyprowski@samsung.com>
19807 L: linux-media@vger.kernel.org
19808 S: Maintained
19809 F: drivers/media/common/videobuf2/*
19810 F: include/media/videobuf2-*
19811
19812 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19813 M: Helen Koike <helen.koike@collabora.com>
19814 R: Shuah Khan <skhan@linuxfoundation.org>
19815 L: linux-media@vger.kernel.org
19816 S: Maintained
19817 W: https://linuxtv.org
19818 T: git git://linuxtv.org/media_tree.git
19819 F: drivers/media/test-drivers/vimc/*
19820
19821 VIRT LIB
19822 M: Alex Williamson <alex.williamson@redhat.com>
19823 M: Paolo Bonzini <pbonzini@redhat.com>
19824 L: kvm@vger.kernel.org
19825 S: Supported
19826 F: virt/lib/
19827
19828 VIRTIO AND VHOST VSOCK DRIVER
19829 M: Stefan Hajnoczi <stefanha@redhat.com>
19830 M: Stefano Garzarella <sgarzare@redhat.com>
19831 L: kvm@vger.kernel.org
19832 L: virtualization@lists.linux-foundation.org
19833 L: netdev@vger.kernel.org
19834 S: Maintained
19835 F: drivers/vhost/vsock.c
19836 F: include/linux/virtio_vsock.h
19837 F: include/uapi/linux/virtio_vsock.h
19838 F: net/vmw_vsock/virtio_transport.c
19839 F: net/vmw_vsock/virtio_transport_common.c
19840
19841 VIRTIO BLOCK AND SCSI DRIVERS
19842 M: "Michael S. Tsirkin" <mst@redhat.com>
19843 M: Jason Wang <jasowang@redhat.com>
19844 R: Paolo Bonzini <pbonzini@redhat.com>
19845 R: Stefan Hajnoczi <stefanha@redhat.com>
19846 L: virtualization@lists.linux-foundation.org
19847 S: Maintained
19848 F: drivers/block/virtio_blk.c
19849 F: drivers/scsi/virtio_scsi.c
19850 F: drivers/vhost/scsi.c
19851 F: include/uapi/linux/virtio_blk.h
19852 F: include/uapi/linux/virtio_scsi.h
19853
19854 VIRTIO CONSOLE DRIVER
19855 M: Amit Shah <amit@kernel.org>
19856 L: virtualization@lists.linux-foundation.org
19857 S: Maintained
19858 F: drivers/char/virtio_console.c
19859 F: include/linux/virtio_console.h
19860 F: include/uapi/linux/virtio_console.h
19861
19862 VIRTIO CORE AND NET DRIVERS
19863 M: "Michael S. Tsirkin" <mst@redhat.com>
19864 M: Jason Wang <jasowang@redhat.com>
19865 L: virtualization@lists.linux-foundation.org
19866 S: Maintained
19867 F: Documentation/devicetree/bindings/virtio/
19868 F: drivers/block/virtio_blk.c
19869 F: drivers/crypto/virtio/
19870 F: drivers/net/virtio_net.c
19871 F: drivers/vdpa/
19872 F: drivers/virtio/
19873 F: include/linux/vdpa.h
19874 F: include/linux/virtio*.h
19875 F: include/uapi/linux/virtio_*.h
19876 F: tools/virtio/
19877
19878 VIRTIO BALLOON
19879 M: "Michael S. Tsirkin" <mst@redhat.com>
19880 M: David Hildenbrand <david@redhat.com>
19881 L: virtualization@lists.linux-foundation.org
19882 S: Maintained
19883 F: drivers/virtio/virtio_balloon.c
19884 F: include/uapi/linux/virtio_balloon.h
19885 F: include/linux/balloon_compaction.h
19886 F: mm/balloon_compaction.c
19887
19888 VIRTIO CRYPTO DRIVER
19889 M: Gonglei <arei.gonglei@huawei.com>
19890 L: virtualization@lists.linux-foundation.org
19891 L: linux-crypto@vger.kernel.org
19892 S: Maintained
19893 F: drivers/crypto/virtio/
19894 F: include/uapi/linux/virtio_crypto.h
19895
19896 VIRTIO DRIVERS FOR S390
19897 M: Cornelia Huck <cohuck@redhat.com>
19898 M: Halil Pasic <pasic@linux.ibm.com>
19899 L: linux-s390@vger.kernel.org
19900 L: virtualization@lists.linux-foundation.org
19901 L: kvm@vger.kernel.org
19902 S: Supported
19903 F: arch/s390/include/uapi/asm/virtio-ccw.h
19904 F: drivers/s390/virtio/
19905
19906 VIRTIO FILE SYSTEM
19907 M: Vivek Goyal <vgoyal@redhat.com>
19908 M: Stefan Hajnoczi <stefanha@redhat.com>
19909 M: Miklos Szeredi <miklos@szeredi.hu>
19910 L: virtualization@lists.linux-foundation.org
19911 L: linux-fsdevel@vger.kernel.org
19912 S: Supported
19913 W: https://virtio-fs.gitlab.io/
19914 F: Documentation/filesystems/virtiofs.rst
19915 F: fs/fuse/virtio_fs.c
19916 F: include/uapi/linux/virtio_fs.h
19917
19918 VIRTIO GPIO DRIVER
19919 M: Enrico Weigelt, metux IT consult <info@metux.net>
19920 M: Viresh Kumar <vireshk@kernel.org>
19921 L: linux-gpio@vger.kernel.org
19922 L: virtualization@lists.linux-foundation.org
19923 S: Maintained
19924 F: drivers/gpio/gpio-virtio.c
19925 F: include/uapi/linux/virtio_gpio.h
19926
19927 VIRTIO GPU DRIVER
19928 M: David Airlie <airlied@linux.ie>
19929 M: Gerd Hoffmann <kraxel@redhat.com>
19930 L: dri-devel@lists.freedesktop.org
19931 L: virtualization@lists.linux-foundation.org
19932 S: Maintained
19933 T: git git://anongit.freedesktop.org/drm/drm-misc
19934 F: drivers/gpu/drm/virtio/
19935 F: include/uapi/linux/virtio_gpu.h
19936
19937 VIRTIO HOST (VHOST)
19938 M: "Michael S. Tsirkin" <mst@redhat.com>
19939 M: Jason Wang <jasowang@redhat.com>
19940 L: kvm@vger.kernel.org
19941 L: virtualization@lists.linux-foundation.org
19942 L: netdev@vger.kernel.org
19943 S: Maintained
19944 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19945 F: drivers/vhost/
19946 F: include/linux/vhost_iotlb.h
19947 F: include/uapi/linux/vhost.h
19948
19949 VIRTIO INPUT DRIVER
19950 M: Gerd Hoffmann <kraxel@redhat.com>
19951 S: Maintained
19952 F: drivers/virtio/virtio_input.c
19953 F: include/uapi/linux/virtio_input.h
19954
19955 VIRTIO IOMMU DRIVER
19956 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
19957 L: virtualization@lists.linux-foundation.org
19958 S: Maintained
19959 F: drivers/iommu/virtio-iommu.c
19960 F: include/uapi/linux/virtio_iommu.h
19961
19962 VIRTIO MEM DRIVER
19963 M: David Hildenbrand <david@redhat.com>
19964 L: virtualization@lists.linux-foundation.org
19965 S: Maintained
19966 W: https://virtio-mem.gitlab.io/
19967 F: drivers/virtio/virtio_mem.c
19968 F: include/uapi/linux/virtio_mem.h
19969
19970 VIRTIO SOUND DRIVER
19971 M: Anton Yakovlev <anton.yakovlev@opensynergy.com>
19972 M: "Michael S. Tsirkin" <mst@redhat.com>
19973 L: virtualization@lists.linux-foundation.org
19974 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19975 S: Maintained
19976 F: include/uapi/linux/virtio_snd.h
19977 F: sound/virtio/*
19978
19979 VIRTIO I2C DRIVER
19980 M: Jie Deng <jie.deng@intel.com>
19981 M: Viresh Kumar <viresh.kumar@linaro.org>
19982 L: linux-i2c@vger.kernel.org
19983 L: virtualization@lists.linux-foundation.org
19984 S: Maintained
19985 F: drivers/i2c/busses/i2c-virtio.c
19986 F: include/uapi/linux/virtio_i2c.h
19987
19988 VIRTUAL BOX GUEST DEVICE DRIVER
19989 M: Hans de Goede <hdegoede@redhat.com>
19990 M: Arnd Bergmann <arnd@arndb.de>
19991 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19992 S: Maintained
19993 F: drivers/virt/vboxguest/
19994 F: include/linux/vbox_utils.h
19995 F: include/uapi/linux/vbox*.h
19996
19997 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19998 M: Hans de Goede <hdegoede@redhat.com>
19999 L: linux-fsdevel@vger.kernel.org
20000 S: Maintained
20001 F: fs/vboxsf/*
20002
20003 VIRTUAL SERIO DEVICE DRIVER
20004 M: Stephen Chandler Paul <thatslyude@gmail.com>
20005 S: Maintained
20006 F: drivers/input/serio/userio.c
20007 F: include/uapi/linux/userio.h
20008
20009 VIVID VIRTUAL VIDEO DRIVER
20010 M: Hans Verkuil <hverkuil@xs4all.nl>
20011 L: linux-media@vger.kernel.org
20012 S: Maintained
20013 W: https://linuxtv.org
20014 T: git git://linuxtv.org/media_tree.git
20015 F: drivers/media/test-drivers/vivid/*
20016
20017 VIDTV VIRTUAL DIGITAL TV DRIVER
20018 M: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20019 L: linux-media@vger.kernel.org
20020 S: Maintained
20021 W: https://linuxtv.org
20022 T: git git://linuxtv.org/media_tree.git
20023 F: drivers/media/test-drivers/vidtv/*
20024
20025 VLYNQ BUS
20026 M: Florian Fainelli <f.fainelli@gmail.com>
20027 L: openwrt-devel@lists.openwrt.org (subscribers-only)
20028 S: Maintained
20029 F: drivers/vlynq/vlynq.c
20030 F: include/linux/vlynq.h
20031
20032 VME SUBSYSTEM
20033 M: Martyn Welch <martyn@welchs.me.uk>
20034 M: Manohar Vanga <manohar.vanga@gmail.com>
20035 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20036 L: linux-kernel@vger.kernel.org
20037 S: Maintained
20038 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20039 F: Documentation/driver-api/vme.rst
20040 F: drivers/staging/vme/
20041 F: drivers/vme/
20042 F: include/linux/vme*
20043
20044 VM SOCKETS (AF_VSOCK)
20045 M: Stefano Garzarella <sgarzare@redhat.com>
20046 L: virtualization@lists.linux-foundation.org
20047 L: netdev@vger.kernel.org
20048 S: Maintained
20049 F: drivers/net/vsockmon.c
20050 F: include/net/af_vsock.h
20051 F: include/uapi/linux/vm_sockets.h
20052 F: include/uapi/linux/vm_sockets_diag.h
20053 F: include/uapi/linux/vsockmon.h
20054 F: net/vmw_vsock/
20055 F: tools/testing/vsock/
20056
20057 VMWARE BALLOON DRIVER
20058 M: Nadav Amit <namit@vmware.com>
20059 M: "VMware, Inc." <pv-drivers@vmware.com>
20060 L: linux-kernel@vger.kernel.org
20061 S: Maintained
20062 F: drivers/misc/vmw_balloon.c
20063
20064 VMWARE HYPERVISOR INTERFACE
20065 M: Deep Shah <sdeep@vmware.com>
20066 M: "VMware, Inc." <pv-drivers@vmware.com>
20067 L: virtualization@lists.linux-foundation.org
20068 S: Supported
20069 F: arch/x86/include/asm/vmware.h
20070 F: arch/x86/kernel/cpu/vmware.c
20071
20072 VMWARE PVRDMA DRIVER
20073 M: Adit Ranadive <aditr@vmware.com>
20074 M: VMware PV-Drivers <pv-drivers@vmware.com>
20075 L: linux-rdma@vger.kernel.org
20076 S: Maintained
20077 F: drivers/infiniband/hw/vmw_pvrdma/
20078
20079 VMware PVSCSI driver
20080 M: Vishal Bhakta <vbhakta@vmware.com>
20081 M: VMware PV-Drivers <pv-drivers@vmware.com>
20082 L: linux-scsi@vger.kernel.org
20083 S: Maintained
20084 F: drivers/scsi/vmw_pvscsi.c
20085 F: drivers/scsi/vmw_pvscsi.h
20086
20087 VMWARE VIRTUAL PTP CLOCK DRIVER
20088 M: Vivek Thampi <vithampi@vmware.com>
20089 M: "VMware, Inc." <pv-drivers@vmware.com>
20090 L: netdev@vger.kernel.org
20091 S: Supported
20092 F: drivers/ptp/ptp_vmw.c
20093
20094 VMWARE VMCI DRIVER
20095 M: Jorgen Hansen <jhansen@vmware.com>
20096 M: Vishnu Dasa <vdasa@vmware.com>
20097 L: linux-kernel@vger.kernel.org
20098 L: pv-drivers@vmware.com (private)
20099 S: Maintained
20100 F: drivers/misc/vmw_vmci/
20101
20102 VMWARE VMMOUSE SUBDRIVER
20103 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20104 M: "VMware, Inc." <pv-drivers@vmware.com>
20105 L: linux-input@vger.kernel.org
20106 S: Maintained
20107 F: drivers/input/mouse/vmmouse.c
20108 F: drivers/input/mouse/vmmouse.h
20109
20110 VMWARE VMXNET3 ETHERNET DRIVER
20111 M: Ronak Doshi <doshir@vmware.com>
20112 M: pv-drivers@vmware.com
20113 L: netdev@vger.kernel.org
20114 S: Maintained
20115 F: drivers/net/vmxnet3/
20116
20117 VOCORE VOCORE2 BOARD
20118 M: Harvey Hunt <harveyhuntnexus@gmail.com>
20119 L: linux-mips@vger.kernel.org
20120 S: Maintained
20121 F: arch/mips/boot/dts/ralink/vocore2.dts
20122
20123 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20124 M: Liam Girdwood <lgirdwood@gmail.com>
20125 M: Mark Brown <broonie@kernel.org>
20126 L: linux-kernel@vger.kernel.org
20127 S: Supported
20128 W: http://www.slimlogic.co.uk/?p=48
20129 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20130 F: Documentation/devicetree/bindings/regulator/
20131 F: Documentation/power/regulator/
20132 F: drivers/regulator/
20133 F: include/dt-bindings/regulator/
20134 F: include/linux/regulator/
20135 K: regulator_get_optional
20136
20137 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20138 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20139 F: drivers/regulator/irq_helpers.c
20140
20141 VRF
20142 M: David Ahern <dsahern@kernel.org>
20143 L: netdev@vger.kernel.org
20144 S: Maintained
20145 F: Documentation/networking/vrf.rst
20146 F: drivers/net/vrf.c
20147
20148 VSPRINTF
20149 M: Petr Mladek <pmladek@suse.com>
20150 M: Steven Rostedt <rostedt@goodmis.org>
20151 M: Sergey Senozhatsky <senozhatsky@chromium.org>
20152 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20153 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
20154 S: Maintained
20155 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20156 F: Documentation/core-api/printk-formats.rst
20157 F: lib/test_printf.c
20158 F: lib/test_scanf.c
20159 F: lib/vsprintf.c
20160
20161 VT1211 HARDWARE MONITOR DRIVER
20162 M: Juerg Haefliger <juergh@gmail.com>
20163 L: linux-hwmon@vger.kernel.org
20164 S: Maintained
20165 F: Documentation/hwmon/vt1211.rst
20166 F: drivers/hwmon/vt1211.c
20167
20168 VT8231 HARDWARE MONITOR DRIVER
20169 M: Roger Lucas <vt8231@hiddenengine.co.uk>
20170 L: linux-hwmon@vger.kernel.org
20171 S: Maintained
20172 F: drivers/hwmon/vt8231.c
20173
20174 VUB300 USB to SDIO/SD/MMC bridge chip
20175 L: linux-mmc@vger.kernel.org
20176 S: Orphan
20177 F: drivers/mmc/host/vub300.c
20178
20179 W1 DALLAS'S 1-WIRE BUS
20180 M: Evgeniy Polyakov <zbr@ioremap.net>
20181 S: Maintained
20182 F: Documentation/devicetree/bindings/w1/
20183 F: Documentation/w1/
20184 F: drivers/w1/
20185 F: include/linux/w1.h
20186
20187 W83791D HARDWARE MONITORING DRIVER
20188 M: Marc Hulsman <m.hulsman@tudelft.nl>
20189 L: linux-hwmon@vger.kernel.org
20190 S: Maintained
20191 F: Documentation/hwmon/w83791d.rst
20192 F: drivers/hwmon/w83791d.c
20193
20194 W83793 HARDWARE MONITORING DRIVER
20195 M: Rudolf Marek <r.marek@assembler.cz>
20196 L: linux-hwmon@vger.kernel.org
20197 S: Maintained
20198 F: Documentation/hwmon/w83793.rst
20199 F: drivers/hwmon/w83793.c
20200
20201 W83795 HARDWARE MONITORING DRIVER
20202 M: Jean Delvare <jdelvare@suse.com>
20203 L: linux-hwmon@vger.kernel.org
20204 S: Maintained
20205 F: drivers/hwmon/w83795.c
20206
20207 W83L51xD SD/MMC CARD INTERFACE DRIVER
20208 M: Pierre Ossman <pierre@ossman.eu>
20209 S: Maintained
20210 F: drivers/mmc/host/wbsd.*
20211
20212 WACOM PROTOCOL 4 SERIAL TABLETS
20213 M: Julian Squires <julian@cipht.net>
20214 M: Hans de Goede <hdegoede@redhat.com>
20215 L: linux-input@vger.kernel.org
20216 S: Maintained
20217 F: drivers/input/tablet/wacom_serial4.c
20218
20219 WATCHDOG DEVICE DRIVERS
20220 M: Wim Van Sebroeck <wim@linux-watchdog.org>
20221 M: Guenter Roeck <linux@roeck-us.net>
20222 L: linux-watchdog@vger.kernel.org
20223 S: Maintained
20224 W: http://www.linux-watchdog.org/
20225 T: git git://www.linux-watchdog.org/linux-watchdog.git
20226 F: Documentation/devicetree/bindings/watchdog/
20227 F: Documentation/watchdog/
20228 F: drivers/watchdog/
20229 F: include/linux/watchdog.h
20230 F: include/uapi/linux/watchdog.h
20231
20232 WHISKEYCOVE PMIC GPIO DRIVER
20233 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20234 L: linux-gpio@vger.kernel.org
20235 S: Maintained
20236 F: drivers/gpio/gpio-wcove.c
20237
20238 WHWAVE RTC DRIVER
20239 M: Dianlong Li <long17.cool@163.com>
20240 L: linux-rtc@vger.kernel.org
20241 S: Maintained
20242 F: drivers/rtc/rtc-sd3078.c
20243
20244 WIIMOTE HID DRIVER
20245 M: David Rheinsberg <david.rheinsberg@gmail.com>
20246 L: linux-input@vger.kernel.org
20247 S: Maintained
20248 F: drivers/hid/hid-wiimote*
20249
20250 WILOCITY WIL6210 WIRELESS DRIVER
20251 M: Maya Erez <merez@codeaurora.org>
20252 L: linux-wireless@vger.kernel.org
20253 L: wil6210@qti.qualcomm.com
20254 S: Supported
20255 W: https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20256 F: drivers/net/wireless/ath/wil6210/
20257
20258 WINBOND CIR DRIVER
20259 M: David Härdeman <david@hardeman.nu>
20260 S: Maintained
20261 F: drivers/media/rc/winbond-cir.c
20262
20263 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20264 M: William Breathitt Gray <vilhelm.gray@gmail.com>
20265 L: linux-watchdog@vger.kernel.org
20266 S: Maintained
20267 F: drivers/watchdog/ebc-c384_wdt.c
20268
20269 WINSYSTEMS WS16C48 GPIO DRIVER
20270 M: William Breathitt Gray <vilhelm.gray@gmail.com>
20271 L: linux-gpio@vger.kernel.org
20272 S: Maintained
20273 F: drivers/gpio/gpio-ws16c48.c
20274
20275 WIREGUARD SECURE NETWORK TUNNEL
20276 M: Jason A. Donenfeld <Jason@zx2c4.com>
20277 L: wireguard@lists.zx2c4.com
20278 L: netdev@vger.kernel.org
20279 S: Maintained
20280 F: drivers/net/wireguard/
20281 F: tools/testing/selftests/wireguard/
20282
20283 WISTRON LAPTOP BUTTON DRIVER
20284 M: Miloslav Trmac <mitr@volny.cz>
20285 S: Maintained
20286 F: drivers/input/misc/wistron_btns.c
20287
20288 WL3501 WIRELESS PCMCIA CARD DRIVER
20289 L: linux-wireless@vger.kernel.org
20290 S: Odd fixes
20291 F: drivers/net/wireless/wl3501*
20292
20293 WOLFSON MICROELECTRONICS DRIVERS
20294 L: patches@opensource.cirrus.com
20295 S: Supported
20296 W: https://github.com/CirrusLogic/linux-drivers/wiki
20297 T: git https://github.com/CirrusLogic/linux-drivers.git
20298 F: Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20299 F: Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20300 F: Documentation/devicetree/bindings/mfd/wm831x.txt
20301 F: Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20302 F: Documentation/devicetree/bindings/sound/wlf,*.yaml
20303 F: Documentation/devicetree/bindings/sound/wm*
20304 F: Documentation/hwmon/wm83??.rst
20305 F: arch/arm/mach-s3c/mach-crag6410*
20306 F: drivers/clk/clk-wm83*.c
20307 F: drivers/gpio/gpio-*wm*.c
20308 F: drivers/gpio/gpio-arizona.c
20309 F: drivers/hwmon/wm83??-hwmon.c
20310 F: drivers/input/misc/wm831x-on.c
20311 F: drivers/input/touchscreen/wm831x-ts.c
20312 F: drivers/input/touchscreen/wm97*.c
20313 F: drivers/leds/leds-wm83*.c
20314 F: drivers/mfd/arizona*
20315 F: drivers/mfd/cs47l24*
20316 F: drivers/mfd/wm*.c
20317 F: drivers/power/supply/wm83*.c
20318 F: drivers/regulator/arizona*
20319 F: drivers/regulator/wm8*.c
20320 F: drivers/rtc/rtc-wm83*.c
20321 F: drivers/video/backlight/wm83*_bl.c
20322 F: drivers/watchdog/wm83*_wdt.c
20323 F: include/linux/mfd/arizona/
20324 F: include/linux/mfd/wm831x/
20325 F: include/linux/mfd/wm8350/
20326 F: include/linux/mfd/wm8400*
20327 F: include/linux/regulator/arizona*
20328 F: include/linux/wm97xx.h
20329 F: include/sound/wm????.h
20330 F: sound/soc/codecs/arizona*
20331 F: sound/soc/codecs/cs47l24*
20332 F: sound/soc/codecs/wm*
20333
20334 WORKQUEUE
20335 M: Tejun Heo <tj@kernel.org>
20336 R: Lai Jiangshan <jiangshanlai@gmail.com>
20337 S: Maintained
20338 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20339 F: Documentation/core-api/workqueue.rst
20340 F: include/linux/workqueue.h
20341 F: kernel/workqueue.c
20342
20343 WWAN DRIVERS
20344 M: Loic Poulain <loic.poulain@linaro.org>
20345 M: Sergey Ryazanov <ryazanov.s.a@gmail.com>
20346 R: Johannes Berg <johannes@sipsolutions.net>
20347 L: netdev@vger.kernel.org
20348 S: Maintained
20349 F: drivers/net/wwan/
20350 F: include/linux/wwan.h
20351 F: include/uapi/linux/wwan.h
20352
20353 X-POWERS AXP288 PMIC DRIVERS
20354 M: Hans de Goede <hdegoede@redhat.com>
20355 S: Maintained
20356 F: drivers/acpi/pmic/intel_pmic_xpower.c
20357 N: axp288
20358
20359 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20360 M: Chen-Yu Tsai <wens@csie.org>
20361 L: linux-kernel@vger.kernel.org
20362 S: Maintained
20363 N: axp[128]
20364
20365 X.25 STACK
20366 M: Martin Schiller <ms@dev.tdt.de>
20367 L: linux-x25@vger.kernel.org
20368 S: Maintained
20369 F: Documentation/networking/lapb-module.rst
20370 F: Documentation/networking/x25*
20371 F: drivers/net/wan/hdlc_x25.c
20372 F: drivers/net/wan/lapbether.c
20373 F: include/*/lapb.h
20374 F: include/net/x25*
20375 F: include/uapi/linux/x25.h
20376 F: net/lapb/
20377 F: net/x25/
20378
20379 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20380 M: Thomas Gleixner <tglx@linutronix.de>
20381 M: Ingo Molnar <mingo@redhat.com>
20382 M: Borislav Petkov <bp@alien8.de>
20383 M: Dave Hansen <dave.hansen@linux.intel.com>
20384 M: x86@kernel.org
20385 R: "H. Peter Anvin" <hpa@zytor.com>
20386 L: linux-kernel@vger.kernel.org
20387 S: Maintained
20388 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20389 F: Documentation/devicetree/bindings/x86/
20390 F: Documentation/x86/
20391 F: arch/x86/
20392
20393 X86 ENTRY CODE
20394 M: Andy Lutomirski <luto@kernel.org>
20395 L: linux-kernel@vger.kernel.org
20396 S: Maintained
20397 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20398 F: arch/x86/entry/
20399
20400 X86 MCE INFRASTRUCTURE
20401 M: Tony Luck <tony.luck@intel.com>
20402 M: Borislav Petkov <bp@alien8.de>
20403 L: linux-edac@vger.kernel.org
20404 S: Maintained
20405 F: arch/x86/kernel/cpu/mce/*
20406
20407 X86 MICROCODE UPDATE SUPPORT
20408 M: Borislav Petkov <bp@alien8.de>
20409 S: Maintained
20410 F: arch/x86/kernel/cpu/microcode/*
20411
20412 X86 MM
20413 M: Dave Hansen <dave.hansen@linux.intel.com>
20414 M: Andy Lutomirski <luto@kernel.org>
20415 M: Peter Zijlstra <peterz@infradead.org>
20416 L: linux-kernel@vger.kernel.org
20417 S: Maintained
20418 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20419 F: arch/x86/mm/
20420
20421 X86 PLATFORM DRIVERS
20422 M: Hans de Goede <hdegoede@redhat.com>
20423 M: Mark Gross <mgross@linux.intel.com>
20424 L: platform-driver-x86@vger.kernel.org
20425 S: Maintained
20426 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20427 F: drivers/platform/olpc/
20428 F: drivers/platform/x86/
20429
20430 X86 PLATFORM DRIVERS - ARCH
20431 R: Darren Hart <dvhart@infradead.org>
20432 R: Andy Shevchenko <andy@infradead.org>
20433 L: platform-driver-x86@vger.kernel.org
20434 L: x86@kernel.org
20435 S: Maintained
20436 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20437 F: arch/x86/platform
20438
20439 X86 PLATFORM UV HPE SUPERDOME FLEX
20440 M: Steve Wahl <steve.wahl@hpe.com>
20441 R: Mike Travis <mike.travis@hpe.com>
20442 R: Dimitri Sivanich <dimitri.sivanich@hpe.com>
20443 R: Russ Anderson <russ.anderson@hpe.com>
20444 S: Supported
20445 F: arch/x86/include/asm/uv/
20446 F: arch/x86/kernel/apic/x2apic_uv_x.c
20447 F: arch/x86/platform/uv/
20448
20449 X86 VDSO
20450 M: Andy Lutomirski <luto@kernel.org>
20451 L: linux-kernel@vger.kernel.org
20452 S: Maintained
20453 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20454 F: arch/x86/entry/vdso/
20455
20456 XARRAY
20457 M: Matthew Wilcox <willy@infradead.org>
20458 L: linux-fsdevel@vger.kernel.org
20459 S: Supported
20460 F: Documentation/core-api/xarray.rst
20461 F: include/linux/idr.h
20462 F: include/linux/xarray.h
20463 F: lib/idr.c
20464 F: lib/xarray.c
20465 F: tools/testing/radix-tree
20466
20467 XBOX DVD IR REMOTE
20468 M: Benjamin Valentin <benpicco@googlemail.com>
20469 S: Maintained
20470 F: drivers/media/rc/keymaps/rc-xbox-dvd.c
20471 F: drivers/media/rc/xbox_remote.c
20472
20473 XC2028/3028 TUNER DRIVER
20474 M: Mauro Carvalho Chehab <mchehab@kernel.org>
20475 L: linux-media@vger.kernel.org
20476 S: Maintained
20477 W: https://linuxtv.org
20478 T: git git://linuxtv.org/media_tree.git
20479 F: drivers/media/tuners/tuner-xc2028.*
20480
20481 XDP (eXpress Data Path)
20482 M: Alexei Starovoitov <ast@kernel.org>
20483 M: Daniel Borkmann <daniel@iogearbox.net>
20484 M: David S. Miller <davem@davemloft.net>
20485 M: Jakub Kicinski <kuba@kernel.org>
20486 M: Jesper Dangaard Brouer <hawk@kernel.org>
20487 M: John Fastabend <john.fastabend@gmail.com>
20488 L: netdev@vger.kernel.org
20489 L: bpf@vger.kernel.org
20490 S: Supported
20491 F: include/net/xdp.h
20492 F: include/net/xdp_priv.h
20493 F: include/trace/events/xdp.h
20494 F: kernel/bpf/cpumap.c
20495 F: kernel/bpf/devmap.c
20496 F: net/core/xdp.c
20497 F: samples/bpf/xdp*
20498 F: tools/testing/selftests/bpf/*xdp*
20499 F: tools/testing/selftests/bpf/*/*xdp*
20500 F: drivers/net/ethernet/*/*/*/*/*xdp*
20501 F: drivers/net/ethernet/*/*/*xdp*
20502 K: (?:\b|_)xdp(?:\b|_)
20503
20504 XDP SOCKETS (AF_XDP)
20505 M: Björn Töpel <bjorn@kernel.org>
20506 M: Magnus Karlsson <magnus.karlsson@intel.com>
20507 R: Jonathan Lemon <jonathan.lemon@gmail.com>
20508 L: netdev@vger.kernel.org
20509 L: bpf@vger.kernel.org
20510 S: Maintained
20511 F: Documentation/networking/af_xdp.rst
20512 F: include/net/xdp_sock*
20513 F: include/net/xsk_buff_pool.h
20514 F: include/uapi/linux/if_xdp.h
20515 F: include/uapi/linux/xdp_diag.h
20516 F: include/net/netns/xdp.h
20517 F: net/xdp/
20518 F: samples/bpf/xdpsock*
20519 F: tools/lib/bpf/xsk*
20520
20521 XEN BLOCK SUBSYSTEM
20522 M: Roger Pau Monné <roger.pau@citrix.com>
20523 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20524 S: Supported
20525 F: drivers/block/xen*
20526 F: drivers/block/xen-blkback/*
20527
20528 XEN HYPERVISOR ARM
20529 M: Stefano Stabellini <sstabellini@kernel.org>
20530 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20531 S: Maintained
20532 F: arch/arm/include/asm/xen/
20533 F: arch/arm/xen/
20534
20535 XEN HYPERVISOR ARM64
20536 M: Stefano Stabellini <sstabellini@kernel.org>
20537 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20538 S: Maintained
20539 F: arch/arm64/include/asm/xen/
20540 F: arch/arm64/xen/
20541
20542 XEN HYPERVISOR INTERFACE
20543 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
20544 M: Juergen Gross <jgross@suse.com>
20545 R: Stefano Stabellini <sstabellini@kernel.org>
20546 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20547 S: Supported
20548 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20549 F: Documentation/ABI/stable/sysfs-hypervisor-xen
20550 F: Documentation/ABI/testing/sysfs-hypervisor-xen
20551 F: arch/x86/include/asm/pvclock-abi.h
20552 F: arch/x86/include/asm/xen/
20553 F: arch/x86/platform/pvh/
20554 F: arch/x86/xen/
20555 F: drivers/*/xen-*front.c
20556 F: drivers/xen/
20557 F: include/uapi/xen/
20558 F: include/xen/
20559
20560 XEN NETWORK BACKEND DRIVER
20561 M: Wei Liu <wei.liu@kernel.org>
20562 M: Paul Durrant <paul@xen.org>
20563 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20564 L: netdev@vger.kernel.org
20565 S: Supported
20566 F: drivers/net/xen-netback/*
20567
20568 XEN PCI SUBSYSTEM
20569 M: Juergen Gross <jgross@suse.com>
20570 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20571 S: Supported
20572 F: arch/x86/pci/*xen*
20573 F: drivers/pci/*xen*
20574
20575 XEN PVSCSI DRIVERS
20576 M: Juergen Gross <jgross@suse.com>
20577 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20578 L: linux-scsi@vger.kernel.org
20579 S: Supported
20580 F: drivers/scsi/xen-scsifront.c
20581 F: drivers/xen/xen-scsiback.c
20582 F: include/xen/interface/io/vscsiif.h
20583
20584 XEN SOUND FRONTEND DRIVER
20585 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20586 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20587 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20588 S: Supported
20589 F: sound/xen/*
20590
20591 XEN SWIOTLB SUBSYSTEM
20592 M: Juergen Gross <jgross@suse.com>
20593 M: Stefano Stabellini <sstabellini@kernel.org>
20594 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20595 L: iommu@lists.linux-foundation.org
20596 S: Supported
20597 F: arch/x86/xen/*swiotlb*
20598 F: drivers/xen/*swiotlb*
20599
20600 XFS FILESYSTEM
20601 C: irc://irc.oftc.net/xfs
20602 M: Darrick J. Wong <djwong@kernel.org>
20603 M: linux-xfs@vger.kernel.org
20604 L: linux-xfs@vger.kernel.org
20605 S: Supported
20606 W: http://xfs.org/
20607 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20608 F: Documentation/ABI/testing/sysfs-fs-xfs
20609 F: Documentation/admin-guide/xfs.rst
20610 F: Documentation/filesystems/xfs-delayed-logging-design.rst
20611 F: Documentation/filesystems/xfs-self-describing-metadata.rst
20612 F: fs/xfs/
20613 F: include/uapi/linux/dqblk_xfs.h
20614 F: include/uapi/linux/fsmap.h
20615
20616 XILINX AXI ETHERNET DRIVER
20617 M: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20618 S: Maintained
20619 F: drivers/net/ethernet/xilinx/xilinx_axienet*
20620
20621 XILINX CAN DRIVER
20622 M: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20623 R: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20624 L: linux-can@vger.kernel.org
20625 S: Maintained
20626 F: Documentation/devicetree/bindings/net/can/xilinx_can.txt
20627 F: drivers/net/can/xilinx_can.c
20628
20629 XILINX GPIO DRIVER
20630 M: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20631 R: Srinivas Neeli <srinivas.neeli@xilinx.com>
20632 R: Michal Simek <michal.simek@xilinx.com>
20633 S: Maintained
20634 F: Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20635 F: Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20636 F: drivers/gpio/gpio-xilinx.c
20637 F: drivers/gpio/gpio-zynq.c
20638
20639 XILINX SD-FEC IP CORES
20640 M: Derek Kiernan <derek.kiernan@xilinx.com>
20641 M: Dragan Cvetic <dragan.cvetic@xilinx.com>
20642 S: Maintained
20643 F: Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20644 F: Documentation/misc-devices/xilinx_sdfec.rst
20645 F: drivers/misc/Kconfig
20646 F: drivers/misc/Makefile
20647 F: drivers/misc/xilinx_sdfec.c
20648 F: include/uapi/misc/xilinx_sdfec.h
20649
20650 XILINX UARTLITE SERIAL DRIVER
20651 M: Peter Korsgaard <jacmet@sunsite.dk>
20652 L: linux-serial@vger.kernel.org
20653 S: Maintained
20654 F: drivers/tty/serial/uartlite.c
20655
20656 XILINX VIDEO IP CORES
20657 M: Hyun Kwon <hyun.kwon@xilinx.com>
20658 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20659 L: linux-media@vger.kernel.org
20660 S: Supported
20661 T: git git://linuxtv.org/media_tree.git
20662 F: Documentation/devicetree/bindings/media/xilinx/
20663 F: drivers/media/platform/xilinx/
20664 F: include/uapi/linux/xilinx-v4l2-controls.h
20665
20666 XILINX ZYNQMP DPDMA DRIVER
20667 M: Hyun Kwon <hyun.kwon@xilinx.com>
20668 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20669 L: dmaengine@vger.kernel.org
20670 S: Supported
20671 F: Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20672 F: drivers/dma/xilinx/xilinx_dpdma.c
20673 F: include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20674
20675 XILINX ZYNQMP PSGTR PHY DRIVER
20676 M: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20677 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20678 L: linux-kernel@vger.kernel.org
20679 S: Supported
20680 T: git https://github.com/Xilinx/linux-xlnx.git
20681 F: Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20682 F: drivers/phy/xilinx/phy-zynqmp.c
20683
20684 XILLYBUS DRIVER
20685 M: Eli Billauer <eli.billauer@gmail.com>
20686 L: linux-kernel@vger.kernel.org
20687 S: Supported
20688 F: drivers/char/xillybus/
20689
20690 XLP9XX I2C DRIVER
20691 M: George Cherian <gcherian@marvell.com>
20692 L: linux-i2c@vger.kernel.org
20693 S: Supported
20694 W: http://www.marvell.com
20695 F: Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20696 F: drivers/i2c/busses/i2c-xlp9xx.c
20697
20698 XRA1403 GPIO EXPANDER
20699 M: Nandor Han <nandor.han@ge.com>
20700 M: Semi Malinen <semi.malinen@ge.com>
20701 L: linux-gpio@vger.kernel.org
20702 S: Maintained
20703 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20704 F: drivers/gpio/gpio-xra1403.c
20705
20706 XTENSA XTFPGA PLATFORM SUPPORT
20707 M: Max Filippov <jcmvbkbc@gmail.com>
20708 L: linux-xtensa@linux-xtensa.org
20709 S: Maintained
20710 F: drivers/spi/spi-xtensa-xtfpga.c
20711 F: sound/soc/xtensa/xtfpga-i2s.c
20712
20713 YAM DRIVER FOR AX.25
20714 M: Jean-Paul Roubelat <jpr@f6fbb.org>
20715 L: linux-hams@vger.kernel.org
20716 S: Maintained
20717 F: drivers/net/hamradio/yam*
20718 F: include/linux/yam.h
20719
20720 YAMA SECURITY MODULE
20721 M: Kees Cook <keescook@chromium.org>
20722 S: Supported
20723 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20724 F: Documentation/admin-guide/LSM/Yama.rst
20725 F: security/yama/
20726
20727 YEALINK PHONE DRIVER
20728 M: Henk Vergonet <Henk.Vergonet@gmail.com>
20729 L: usbb2k-api-dev@nongnu.org
20730 S: Maintained
20731 F: Documentation/input/devices/yealink.rst
20732 F: drivers/input/misc/yealink.*
20733
20734 Z8530 DRIVER FOR AX.25
20735 M: Joerg Reuter <jreuter@yaina.de>
20736 L: linux-hams@vger.kernel.org
20737 S: Maintained
20738 W: http://yaina.de/jreuter/
20739 W: http://www.qsl.net/dl1bke/
20740 F: Documentation/networking/device_drivers/hamradio/z8530drv.rst
20741 F: drivers/net/hamradio/*scc.c
20742 F: drivers/net/hamradio/z8530.h
20743
20744 ZBUD COMPRESSED PAGE ALLOCATOR
20745 M: Seth Jennings <sjenning@redhat.com>
20746 M: Dan Streetman <ddstreet@ieee.org>
20747 L: linux-mm@kvack.org
20748 S: Maintained
20749 F: mm/zbud.c
20750
20751 ZD1211RW WIRELESS DRIVER
20752 M: Ulrich Kunitz <kune@deine-taler.de>
20753 L: linux-wireless@vger.kernel.org
20754 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
20755 S: Maintained
20756 W: http://zd1211.ath.cx/wiki/DriverRewrite
20757 F: drivers/net/wireless/zydas/zd1211rw/
20758
20759 ZD1301 MEDIA DRIVER
20760 M: Antti Palosaari <crope@iki.fi>
20761 L: linux-media@vger.kernel.org
20762 S: Maintained
20763 W: https://linuxtv.org/
20764 W: http://palosaari.fi/linux/
20765 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20766 F: drivers/media/usb/dvb-usb-v2/zd1301*
20767
20768 ZD1301_DEMOD MEDIA DRIVER
20769 M: Antti Palosaari <crope@iki.fi>
20770 L: linux-media@vger.kernel.org
20771 S: Maintained
20772 W: https://linuxtv.org/
20773 W: http://palosaari.fi/linux/
20774 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20775 F: drivers/media/dvb-frontends/zd1301_demod*
20776
20777 ZHAOXIN PROCESSOR SUPPORT
20778 M: Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20779 L: linux-kernel@vger.kernel.org
20780 S: Maintained
20781 F: arch/x86/kernel/cpu/zhaoxin.c
20782
20783 ZONEFS FILESYSTEM
20784 M: Damien Le Moal <damien.lemoal@wdc.com>
20785 M: Naohiro Aota <naohiro.aota@wdc.com>
20786 R: Johannes Thumshirn <jth@kernel.org>
20787 L: linux-fsdevel@vger.kernel.org
20788 S: Maintained
20789 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20790 F: Documentation/filesystems/zonefs.rst
20791 F: fs/zonefs/
20792
20793 ZPOOL COMPRESSED PAGE STORAGE API
20794 M: Dan Streetman <ddstreet@ieee.org>
20795 L: linux-mm@kvack.org
20796 S: Maintained
20797 F: include/linux/zpool.h
20798 F: mm/zpool.c
20799
20800 ZR36067 VIDEO FOR LINUX DRIVER
20801 M: Corentin Labbe <clabbe@baylibre.com>
20802 L: mjpeg-users@lists.sourceforge.net
20803 L: linux-media@vger.kernel.org
20804 S: Maintained
20805 W: http://mjpeg.sourceforge.net/driver-zoran/
20806 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20807 F: Documentation/driver-api/media/drivers/zoran.rst
20808 F: drivers/staging/media/zoran/
20809
20810 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20811 M: Minchan Kim <minchan@kernel.org>
20812 M: Nitin Gupta <ngupta@vflare.org>
20813 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20814 L: linux-kernel@vger.kernel.org
20815 S: Maintained
20816 F: Documentation/admin-guide/blockdev/zram.rst
20817 F: drivers/block/zram/
20818
20819 ZS DECSTATION Z85C30 SERIAL DRIVER
20820 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
20821 S: Maintained
20822 F: drivers/tty/serial/zs.*
20823
20824 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20825 M: Minchan Kim <minchan@kernel.org>
20826 M: Nitin Gupta <ngupta@vflare.org>
20827 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20828 L: linux-mm@kvack.org
20829 S: Maintained
20830 F: Documentation/vm/zsmalloc.rst
20831 F: include/linux/zsmalloc.h
20832 F: mm/zsmalloc.c
20833
20834 ZSWAP COMPRESSED SWAP CACHING
20835 M: Seth Jennings <sjenning@redhat.com>
20836 M: Dan Streetman <ddstreet@ieee.org>
20837 M: Vitaly Wool <vitaly.wool@konsulko.com>
20838 L: linux-mm@kvack.org
20839 S: Maintained
20840 F: mm/zswap.c
20841
20842 THE REST
20843 M: Linus Torvalds <torvalds@linux-foundation.org>
20844 L: linux-kernel@vger.kernel.org
20845 S: Buried alive in reporters
20846 Q: http://patchwork.kernel.org/project/LKML/list/
20847 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20848 F: *
20849 F: */