]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - MAINTAINERS
vmxnet3: use correct intrConf reference when using extended queues
[mirror_ubuntu-jammy-kernel.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below. This will make things
5 easier on the maintainers. Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1. Always *test* your changes, however small, on at least 4 or
12 5 people, preferably many more.
13
14 2. Try to release a few ALPHA test versions to the net. Announce
15 them onto the kernel channel and await results. This is especially
16 important for device drivers, because often that's the only way
17 you will find things like the fact version 3 firmware needs
18 a magic fix you didn't know about, or some clown changed the
19 chips on a board and not its name. (Don't laugh! Look at the
20 SMC etherpower for that.)
21
22 3. Make sure your changes compile correctly in multiple
23 configurations. In particular check that changes work both as a
24 module and built into the kernel.
25
26 4. When you are happy with a change make it generally available for
27 testing and await feedback.
28
29 5. Make a patch available to the relevant maintainer in the list. Use
30 ``diff -u`` to make the patch easy to merge. Be prepared to get your
31 changes sent back with seemingly silly requests about formatting
32 and variable names. These aren't as silly as they seem. One
33 job the maintainers (and especially Linus) do is to keep things
34 looking the same. Sometimes this means that the clever hack in
35 your driver to get around a problem actually needs to become a
36 generalized kernel feature ready for next time.
37
38 PLEASE check your patch with the automated style checker
39 (scripts/checkpatch.pl) to catch trivial style violations.
40 See Documentation/process/coding-style.rst for guidance here.
41
42 PLEASE CC: the maintainers and mailing lists that are generated
43 by ``scripts/get_maintainer.pl.`` The results returned by the
44 script will be best if you have git installed and are making
45 your changes in a branch derived from Linus' latest git tree.
46 See Documentation/process/submitting-patches.rst for details.
47
48 PLEASE try to include any credit lines you want added with the
49 patch. It avoids people being missed off by mistake and makes
50 it easier to know who wants adding and who doesn't.
51
52 PLEASE document known bugs. If it doesn't work for everything
53 or does something very odd once a month document it.
54
55 PLEASE remember that submissions must be made under the terms
56 of the Linux Foundation certificate of contribution and should
57 include a Signed-off-by: line. The current version of this
58 "Developer's Certificate of Origin" (DCO) is listed in the file
59 Documentation/process/submitting-patches.rst.
60
61 6. Make sure you have the right to send any changes you make. If you
62 do changes at work you may find your employer owns the patch
63 not you.
64
65 7. When sending security related changes or reports to a maintainer
66 please Cc: security@kernel.org, especially if the maintainer
67 does not respond. Please keep in mind that the security team is
68 a small set of people who can be efficient only when working on
69 verified bugs. Please only Cc: this list when you have identified
70 that the bug would present a short-term risk to other users if it
71 were publicly disclosed. For example, reports of address leaks do
72 not represent an immediate threat and are better handled publicly,
73 and ideally, should come with a patch proposal. Please do not send
74 automated reports to this list either. Such bugs will be handled
75 better and faster in the usual public places. See
76 Documentation/admin-guide/security-bugs.rst for details.
77
78 8. Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83 M: *Mail* patches to: FullName <address@domain>
84 R: Designated *Reviewer*: FullName <address@domain>
85 These reviewers should be CCed on patches.
86 L: *Mailing list* that is relevant to this area
87 S: *Status*, one of the following:
88 Supported: Someone is actually paid to look after this.
89 Maintained: Someone actually looks after it.
90 Odd Fixes: It has a maintainer but they don't have time to do
91 much other than throw the odd patch in. See below..
92 Orphan: No current maintainer [but maybe you could take the
93 role as you write your new code].
94 Obsolete: Old code. Something tagged obsolete generally means
95 it has been replaced by a better system and you
96 should be using that.
97 W: *Web-page* with status/info
98 Q: *Patchwork* web based patch tracking system site
99 B: URI for where to file *bugs*. A web-page with detailed bug
100 filing info, a direct bug tracker link, or a mailto: URI.
101 C: URI for *chat* protocol, server and channel where developers
102 usually hang out, for example irc://server/channel.
103 P: Subsystem Profile document for more details submitting
104 patches to the given subsystem. This is either an in-tree file,
105 or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106 for details.
107 T: *SCM* tree type and location.
108 Type is one of: git, hg, quilt, stgit, topgit
109 F: *Files* and directories wildcard patterns.
110 A trailing slash includes all files and subdirectory files.
111 F: drivers/net/ all files in and below drivers/net
112 F: drivers/net/* all files in drivers/net, but not below
113 F: */net/* all files in "any top level directory"/net
114 One pattern per line. Multiple F: lines acceptable.
115 X: *Excluded* files and directories that are NOT maintained, same
116 rules as F:. Files exclusions are tested before file matches.
117 Can be useful for excluding a specific subdirectory, for instance:
118 F: net/
119 X: net/ipv6/
120 matches all files in and below net excluding net/ipv6/
121 N: Files and directories *Regex* patterns.
122 N: [^a-z]tegra all files whose path contains tegra
123 (not including files like integrator)
124 One pattern per line. Multiple N: lines acceptable.
125 scripts/get_maintainer.pl has different behavior for files that
126 match F: pattern and matches of N: patterns. By default,
127 get_maintainer will not look at git log history when an F: pattern
128 match occurs. When an N: match occurs, git log history is used
129 to also notify the people that have git commit signatures.
130 K: *Content regex* (perl extended) pattern match in a patch or file.
131 For instance:
132 K: of_get_profile
133 matches patches or files that contain "of_get_profile"
134 K: \b(printk|pr_(info|err))\b
135 matches patches or files that contain one or more of the words
136 printk, pr_info or pr_err
137 One regex pattern per line. Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143 first. When adding to this list, please keep the entries in
144 alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M: Steffen Klassert <klassert@kernel.org>
148 L: netdev@vger.kernel.org
149 S: Odd Fixes
150 F: Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F: drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M: David Dillow <dave@thedillows.org>
155 L: netdev@vger.kernel.org
156 S: Maintained
157 F: drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M: Adam Radford <aradford@gmail.com>
161 L: linux-scsi@vger.kernel.org
162 S: Supported
163 W: http://www.lsi.com
164 F: drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L: linux-scsi@vger.kernel.org
169 S: Maintained
170 F: drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M: Alexander Aring <alex.aring@gmail.com>
174 M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L: linux-bluetooth@vger.kernel.org
176 L: linux-wpan@vger.kernel.org
177 S: Maintained
178 F: Documentation/networking/6lowpan.rst
179 F: include/net/6lowpan.h
180 F: net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L: linux-hams@vger.kernel.org
185 S: Maintained
186 F: drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M: Johannes Berg <johannes@sipsolutions.net>
190 L: linux-wireless@vger.kernel.org
191 S: Maintained
192 W: https://wireless.wiki.kernel.org/
193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F: Documentation/driver-api/80211/cfg80211.rst
196 F: Documentation/networking/regulatory.rst
197 F: include/linux/ieee80211.h
198 F: include/net/cfg80211.h
199 F: include/net/ieee80211_radiotap.h
200 F: include/net/iw_handler.h
201 F: include/net/wext.h
202 F: include/uapi/linux/nl80211.h
203 F: net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M: Heiner Kallweit <hkallweit1@gmail.com>
207 M: nic_swsd@realtek.com
208 L: netdev@vger.kernel.org
209 S: Maintained
210 F: drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L: linux-serial@vger.kernel.org
215 S: Maintained
216 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F: drivers/tty/serial/8250*
218 F: include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L: netdev@vger.kernel.org
222 S: Orphan / Obsolete
223 F: drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M: Eric Van Hensbergen <ericvh@gmail.com>
227 M: Latchesar Ionkov <lucho@ionkov.net>
228 M: Dominique Martinet <asmadeus@codewreck.org>
229 L: v9fs-developer@lists.sourceforge.net
230 S: Maintained
231 W: http://swik.net/v9fs
232 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T: git git://github.com/martinetd/linux.git
235 F: Documentation/filesystems/9p.rst
236 F: fs/9p/
237 F: include/net/9p/
238 F: include/trace/events/9p.h
239 F: include/uapi/linux/virtio_9p.h
240 F: net/9p/
241
242 A8293 MEDIA DRIVER
243 M: Antti Palosaari <crope@iki.fi>
244 L: linux-media@vger.kernel.org
245 S: Maintained
246 W: https://linuxtv.org
247 W: http://palosaari.fi/linux/
248 Q: http://patchwork.linuxtv.org/project/linux-media/list/
249 T: git git://linuxtv.org/anttip/media_tree.git
250 F: drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L: linux-scsi@vger.kernel.org
255 S: Supported
256 W: http://www.adaptec.com/
257 F: Documentation/scsi/aacraid.rst
258 F: drivers/scsi/aacraid/
259
260 AAEON DEVICE DRIVER WITH WMI INTERFACE
261 M: Edward Lin<edward1_lin@asus.com>
262 M: Kunyang Fan <kunyang_fan@asus.com>
263 M: Frank Hsieh <frank2_hsieh@asus.com>
264 M: Jacob Wu <jacob_wu@asus.com>
265 S: Supported
266 F: drivers/gpio/gpio-aaeon.c
267 F: drivers/hwmon/hwmon-aaeon.c
268 F: drivers/leds/leds-aaeon.c
269 F: drivers/mfd/mfd-aaeon.c
270 F: drivers/watchdog/wdt_aaeon.c
271
272 ABI/API
273 L: linux-api@vger.kernel.org
274 F: include/linux/syscalls.h
275 F: kernel/sys_ni.c
276 X: include/uapi/
277 X: arch/*/include/uapi/
278
279 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280 M: Hans de Goede <hdegoede@redhat.com>
281 L: linux-hwmon@vger.kernel.org
282 S: Maintained
283 F: drivers/hwmon/abituguru.c
284
285 ABIT UGURU 3 HARDWARE MONITOR DRIVER
286 M: Alistair John Strachan <alistair@devzero.co.uk>
287 L: linux-hwmon@vger.kernel.org
288 S: Maintained
289 F: drivers/hwmon/abituguru3.c
290
291 ACCES 104-DIO-48E GPIO DRIVER
292 M: William Breathitt Gray <vilhelm.gray@gmail.com>
293 L: linux-gpio@vger.kernel.org
294 S: Maintained
295 F: drivers/gpio/gpio-104-dio-48e.c
296
297 ACCES 104-IDI-48 GPIO DRIVER
298 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
299 L: linux-gpio@vger.kernel.org
300 S: Maintained
301 F: drivers/gpio/gpio-104-idi-48.c
302
303 ACCES 104-IDIO-16 GPIO DRIVER
304 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
305 L: linux-gpio@vger.kernel.org
306 S: Maintained
307 F: drivers/gpio/gpio-104-idio-16.c
308
309 ACCES 104-QUAD-8 DRIVER
310 M: William Breathitt Gray <vilhelm.gray@gmail.com>
311 M: Syed Nayyar Waris <syednwaris@gmail.com>
312 L: linux-iio@vger.kernel.org
313 S: Maintained
314 F: drivers/counter/104-quad-8.c
315
316 ACCES PCI-IDIO-16 GPIO DRIVER
317 M: William Breathitt Gray <vilhelm.gray@gmail.com>
318 L: linux-gpio@vger.kernel.org
319 S: Maintained
320 F: drivers/gpio/gpio-pci-idio-16.c
321
322 ACCES PCIe-IDIO-24 GPIO DRIVER
323 M: William Breathitt Gray <vilhelm.gray@gmail.com>
324 L: linux-gpio@vger.kernel.org
325 S: Maintained
326 F: drivers/gpio/gpio-pcie-idio-24.c
327
328 ACENIC DRIVER
329 M: Jes Sorensen <jes@trained-monkey.org>
330 L: linux-acenic@sunsite.dk
331 S: Maintained
332 F: drivers/net/ethernet/alteon/acenic*
333
334 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
335 M: Peter Kaestle <peter@piie.net>
336 L: platform-driver-x86@vger.kernel.org
337 S: Maintained
338 W: http://piie.net/?section=acerhdf
339 F: drivers/platform/x86/acerhdf.c
340
341 ACER WMI LAPTOP EXTRAS
342 M: "Lee, Chun-Yi" <jlee@suse.com>
343 L: platform-driver-x86@vger.kernel.org
344 S: Maintained
345 F: drivers/platform/x86/acer-wmi.c
346
347 ACPI
348 M: "Rafael J. Wysocki" <rafael@kernel.org>
349 M: Len Brown <lenb@kernel.org>
350 L: linux-acpi@vger.kernel.org
351 S: Supported
352 W: https://01.org/linux-acpi
353 Q: https://patchwork.kernel.org/project/linux-acpi/list/
354 B: https://bugzilla.kernel.org
355 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
356 F: Documentation/ABI/testing/configfs-acpi
357 F: Documentation/ABI/testing/sysfs-bus-acpi
358 F: Documentation/firmware-guide/acpi/
359 F: drivers/acpi/
360 F: drivers/pci/*/*acpi*
361 F: drivers/pci/*acpi*
362 F: drivers/pnp/pnpacpi/
363 F: include/acpi/
364 F: include/linux/acpi.h
365 F: include/linux/fwnode.h
366 F: tools/power/acpi/
367
368 ACPI APEI
369 M: "Rafael J. Wysocki" <rafael@kernel.org>
370 M: Len Brown <lenb@kernel.org>
371 R: James Morse <james.morse@arm.com>
372 R: Tony Luck <tony.luck@intel.com>
373 R: Borislav Petkov <bp@alien8.de>
374 L: linux-acpi@vger.kernel.org
375 F: drivers/acpi/apei/
376
377 ACPI COMPONENT ARCHITECTURE (ACPICA)
378 M: Robert Moore <robert.moore@intel.com>
379 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
380 L: linux-acpi@vger.kernel.org
381 L: devel@acpica.org
382 S: Supported
383 W: https://acpica.org/
384 W: https://github.com/acpica/acpica/
385 Q: https://patchwork.kernel.org/project/linux-acpi/list/
386 B: https://bugzilla.kernel.org
387 B: https://bugs.acpica.org
388 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
389 F: drivers/acpi/acpica/
390 F: include/acpi/
391 F: tools/power/acpi/
392
393 ACPI FAN DRIVER
394 M: Zhang Rui <rui.zhang@intel.com>
395 L: linux-acpi@vger.kernel.org
396 S: Supported
397 W: https://01.org/linux-acpi
398 B: https://bugzilla.kernel.org
399 F: drivers/acpi/fan.c
400
401 ACPI FOR ARM64 (ACPI/arm64)
402 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
403 M: Hanjun Guo <guohanjun@huawei.com>
404 M: Sudeep Holla <sudeep.holla@arm.com>
405 L: linux-acpi@vger.kernel.org
406 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
407 S: Maintained
408 F: drivers/acpi/arm64
409
410 ACPI SERIAL MULTI INSTANTIATE DRIVER
411 M: Hans de Goede <hdegoede@redhat.com>
412 L: platform-driver-x86@vger.kernel.org
413 S: Maintained
414 F: drivers/platform/x86/serial-multi-instantiate.c
415
416 ACPI PMIC DRIVERS
417 M: "Rafael J. Wysocki" <rafael@kernel.org>
418 M: Len Brown <lenb@kernel.org>
419 R: Andy Shevchenko <andy@kernel.org>
420 R: Mika Westerberg <mika.westerberg@linux.intel.com>
421 L: linux-acpi@vger.kernel.org
422 S: Supported
423 Q: https://patchwork.kernel.org/project/linux-acpi/list/
424 B: https://bugzilla.kernel.org
425 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
426 F: drivers/acpi/pmic/
427
428 ACPI THERMAL DRIVER
429 M: Rafael J. Wysocki <rafael@kernel.org>
430 R: Zhang Rui <rui.zhang@intel.com>
431 L: linux-acpi@vger.kernel.org
432 S: Supported
433 W: https://01.org/linux-acpi
434 B: https://bugzilla.kernel.org
435 F: drivers/acpi/*thermal*
436
437 ACPI VIDEO DRIVER
438 M: Zhang Rui <rui.zhang@intel.com>
439 L: linux-acpi@vger.kernel.org
440 S: Supported
441 W: https://01.org/linux-acpi
442 B: https://bugzilla.kernel.org
443 F: drivers/acpi/acpi_video.c
444
445 ACPI VIOT DRIVER
446 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
447 L: linux-acpi@vger.kernel.org
448 L: iommu@lists.linux-foundation.org
449 L: iommu@lists.linux.dev
450 S: Maintained
451 F: drivers/acpi/viot.c
452 F: include/linux/acpi_viot.h
453
454 ACPI WMI DRIVER
455 L: platform-driver-x86@vger.kernel.org
456 S: Orphan
457 F: drivers/platform/x86/wmi.c
458 F: include/uapi/linux/wmi.h
459
460 ACRN HYPERVISOR SERVICE MODULE
461 M: Fei Li <fei1.li@intel.com>
462 L: acrn-dev@lists.projectacrn.org (subscribers-only)
463 S: Supported
464 W: https://projectacrn.org
465 F: Documentation/virt/acrn/
466 F: drivers/virt/acrn/
467 F: include/uapi/linux/acrn.h
468
469 AD1889 ALSA SOUND DRIVER
470 L: linux-parisc@vger.kernel.org
471 S: Maintained
472 W: https://parisc.wiki.kernel.org/index.php/AD1889
473 F: sound/pci/ad1889.*
474
475 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
476 M: Mugilraj Dhavachelvan <dmugil2000@gmail.com>
477 L: linux-iio@vger.kernel.org
478 S: Supported
479 F: drivers/iio/potentiometer/ad5110.c
480
481 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
482 M: Michael Hennerich <michael.hennerich@analog.com>
483 S: Supported
484 W: http://wiki.analog.com/AD5254
485 W: http://ez.analog.com/community/linux-device-drivers
486 F: drivers/misc/ad525x_dpot.c
487
488 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
489 M: Michael Hennerich <michael.hennerich@analog.com>
490 S: Supported
491 W: http://wiki.analog.com/AD5398
492 W: http://ez.analog.com/community/linux-device-drivers
493 F: drivers/regulator/ad5398.c
494
495 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
496 M: Michael Hennerich <michael.hennerich@analog.com>
497 S: Supported
498 W: http://wiki.analog.com/AD7142
499 W: http://ez.analog.com/community/linux-device-drivers
500 F: drivers/input/misc/ad714x.c
501
502 AD7877 TOUCHSCREEN DRIVER
503 M: Michael Hennerich <michael.hennerich@analog.com>
504 S: Supported
505 W: http://wiki.analog.com/AD7877
506 W: http://ez.analog.com/community/linux-device-drivers
507 F: drivers/input/touchscreen/ad7877.c
508
509 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
510 M: Michael Hennerich <michael.hennerich@analog.com>
511 S: Supported
512 W: http://wiki.analog.com/AD7879
513 W: http://ez.analog.com/community/linux-device-drivers
514 F: drivers/input/touchscreen/ad7879.c
515
516 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
517 M: Jiri Kosina <jikos@kernel.org>
518 S: Maintained
519
520 ADF7242 IEEE 802.15.4 RADIO DRIVER
521 M: Michael Hennerich <michael.hennerich@analog.com>
522 L: linux-wpan@vger.kernel.org
523 S: Supported
524 W: https://wiki.analog.com/ADF7242
525 W: http://ez.analog.com/community/linux-device-drivers
526 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
527 F: drivers/net/ieee802154/adf7242.c
528
529 ADM1025 HARDWARE MONITOR DRIVER
530 M: Jean Delvare <jdelvare@suse.com>
531 L: linux-hwmon@vger.kernel.org
532 S: Maintained
533 F: Documentation/hwmon/adm1025.rst
534 F: drivers/hwmon/adm1025.c
535
536 ADM1029 HARDWARE MONITOR DRIVER
537 M: Corentin Labbe <clabbe.montjoie@gmail.com>
538 L: linux-hwmon@vger.kernel.org
539 S: Maintained
540 F: drivers/hwmon/adm1029.c
541
542 ADM8211 WIRELESS DRIVER
543 L: linux-wireless@vger.kernel.org
544 S: Orphan
545 W: https://wireless.wiki.kernel.org/
546 F: drivers/net/wireless/admtek/adm8211.*
547
548 ADP1653 FLASH CONTROLLER DRIVER
549 M: Sakari Ailus <sakari.ailus@iki.fi>
550 L: linux-media@vger.kernel.org
551 S: Maintained
552 F: drivers/media/i2c/adp1653.c
553 F: include/media/i2c/adp1653.h
554
555 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
556 M: Michael Hennerich <michael.hennerich@analog.com>
557 S: Supported
558 W: http://wiki.analog.com/ADP5520
559 W: http://ez.analog.com/community/linux-device-drivers
560 F: drivers/gpio/gpio-adp5520.c
561 F: drivers/input/keyboard/adp5520-keys.c
562 F: drivers/leds/leds-adp5520.c
563 F: drivers/mfd/adp5520.c
564 F: drivers/video/backlight/adp5520_bl.c
565
566 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
567 M: Michael Hennerich <michael.hennerich@analog.com>
568 S: Supported
569 W: http://wiki.analog.com/ADP5588
570 W: http://ez.analog.com/community/linux-device-drivers
571 F: drivers/gpio/gpio-adp5588.c
572 F: drivers/input/keyboard/adp5588-keys.c
573
574 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
575 M: Michael Hennerich <michael.hennerich@analog.com>
576 S: Supported
577 W: http://wiki.analog.com/ADP8860
578 W: http://ez.analog.com/community/linux-device-drivers
579 F: drivers/video/backlight/adp8860_bl.c
580
581 ADT746X FAN DRIVER
582 M: Colin Leroy <colin@colino.net>
583 S: Maintained
584 F: drivers/macintosh/therm_adt746x.c
585
586 ADT7475 HARDWARE MONITOR DRIVER
587 M: Jean Delvare <jdelvare@suse.com>
588 L: linux-hwmon@vger.kernel.org
589 S: Maintained
590 F: Documentation/hwmon/adt7475.rst
591 F: drivers/hwmon/adt7475.c
592
593 ADVANSYS SCSI DRIVER
594 M: Matthew Wilcox <willy@infradead.org>
595 M: Hannes Reinecke <hare@suse.com>
596 L: linux-scsi@vger.kernel.org
597 S: Maintained
598 F: Documentation/scsi/advansys.rst
599 F: drivers/scsi/advansys.c
600
601 ADVANTECH SWBTN DRIVER
602 M: Andrea Ho <Andrea.Ho@advantech.com.tw>
603 L: platform-driver-x86@vger.kernel.org
604 S: Maintained
605 F: drivers/platform/x86/adv_swbutton.c
606
607 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
608 M: Michael Hennerich <michael.hennerich@analog.com>
609 S: Supported
610 W: http://wiki.analog.com/ADXL345
611 W: http://ez.analog.com/community/linux-device-drivers
612 F: Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
613 F: drivers/input/misc/adxl34x.c
614
615 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
616 M: Michael Hennerich <michael.hennerich@analog.com>
617 S: Supported
618 W: http://ez.analog.com/community/linux-device-drivers
619 F: Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
620 F: drivers/iio/accel/adxl372.c
621 F: drivers/iio/accel/adxl372_i2c.c
622 F: drivers/iio/accel/adxl372_spi.c
623
624 AF9013 MEDIA DRIVER
625 M: Antti Palosaari <crope@iki.fi>
626 L: linux-media@vger.kernel.org
627 S: Maintained
628 W: https://linuxtv.org
629 W: http://palosaari.fi/linux/
630 Q: http://patchwork.linuxtv.org/project/linux-media/list/
631 T: git git://linuxtv.org/anttip/media_tree.git
632 F: drivers/media/dvb-frontends/af9013*
633
634 AF9033 MEDIA DRIVER
635 M: Antti Palosaari <crope@iki.fi>
636 L: linux-media@vger.kernel.org
637 S: Maintained
638 W: https://linuxtv.org
639 W: http://palosaari.fi/linux/
640 Q: http://patchwork.linuxtv.org/project/linux-media/list/
641 T: git git://linuxtv.org/anttip/media_tree.git
642 F: drivers/media/dvb-frontends/af9033*
643
644 AFFS FILE SYSTEM
645 M: David Sterba <dsterba@suse.com>
646 L: linux-fsdevel@vger.kernel.org
647 S: Odd Fixes
648 F: Documentation/filesystems/affs.rst
649 F: fs/affs/
650
651 AFS FILESYSTEM
652 M: David Howells <dhowells@redhat.com>
653 M: Marc Dionne <marc.dionne@auristor.com>
654 L: linux-afs@lists.infradead.org
655 S: Supported
656 W: https://www.infradead.org/~dhowells/kafs/
657 F: Documentation/filesystems/afs.rst
658 F: fs/afs/
659 F: include/trace/events/afs.h
660
661 AGPGART DRIVER
662 M: David Airlie <airlied@linux.ie>
663 S: Maintained
664 T: git git://anongit.freedesktop.org/drm/drm
665 F: drivers/char/agp/
666 F: include/linux/agp*
667 F: include/uapi/linux/agp*
668
669 AHA152X SCSI DRIVER
670 M: "Juergen E. Fischer" <fischer@norbit.de>
671 L: linux-scsi@vger.kernel.org
672 S: Maintained
673 F: drivers/scsi/aha152x*
674 F: drivers/scsi/pcmcia/aha152x*
675
676 AIC7XXX / AIC79XX SCSI DRIVER
677 M: Hannes Reinecke <hare@suse.com>
678 L: linux-scsi@vger.kernel.org
679 S: Maintained
680 F: drivers/scsi/aic7xxx/
681
682 AIMSLAB FM RADIO RECEIVER DRIVER
683 M: Hans Verkuil <hverkuil@xs4all.nl>
684 L: linux-media@vger.kernel.org
685 S: Maintained
686 W: https://linuxtv.org
687 T: git git://linuxtv.org/media_tree.git
688 F: drivers/media/radio/radio-aimslab*
689
690 AIO
691 M: Benjamin LaHaise <bcrl@kvack.org>
692 L: linux-aio@kvack.org
693 S: Supported
694 F: fs/aio.c
695 F: include/linux/*aio*.h
696
697 AIRSPY MEDIA DRIVER
698 M: Antti Palosaari <crope@iki.fi>
699 L: linux-media@vger.kernel.org
700 S: Maintained
701 W: https://linuxtv.org
702 W: http://palosaari.fi/linux/
703 Q: http://patchwork.linuxtv.org/project/linux-media/list/
704 T: git git://linuxtv.org/anttip/media_tree.git
705 F: drivers/media/usb/airspy/
706
707 ALACRITECH GIGABIT ETHERNET DRIVER
708 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
709 S: Maintained
710 F: drivers/net/ethernet/alacritech/*
711
712 ALCATEL SPEEDTOUCH USB DRIVER
713 M: Duncan Sands <duncan.sands@free.fr>
714 L: linux-usb@vger.kernel.org
715 S: Maintained
716 W: http://www.linux-usb.org/SpeedTouch/
717 F: drivers/usb/atm/speedtch.c
718 F: drivers/usb/atm/usbatm.c
719
720 ALCHEMY AU1XX0 MMC DRIVER
721 M: Manuel Lauss <manuel.lauss@gmail.com>
722 S: Maintained
723 F: drivers/mmc/host/au1xmmc.c
724
725 ALI1563 I2C DRIVER
726 M: Rudolf Marek <r.marek@assembler.cz>
727 L: linux-i2c@vger.kernel.org
728 S: Maintained
729 F: Documentation/i2c/busses/i2c-ali1563.rst
730 F: drivers/i2c/busses/i2c-ali1563.c
731
732 ALIENWARE WMI DRIVER
733 L: Dell.Client.Kernel@dell.com
734 S: Maintained
735 F: drivers/platform/x86/dell/alienware-wmi.c
736
737 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
738 M: Tomislav Denis <tomislav.denis@avl.com>
739 L: linux-iio@vger.kernel.org
740 S: Maintained
741 W: http://www.allsensors.com/
742 F: Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
743 F: drivers/iio/pressure/dlhl60d.c
744
745 ALLEGRO DVT VIDEO IP CORE DRIVER
746 M: Michael Tretter <m.tretter@pengutronix.de>
747 R: Pengutronix Kernel Team <kernel@pengutronix.de>
748 L: linux-media@vger.kernel.org
749 S: Maintained
750 F: Documentation/devicetree/bindings/media/allegro,al5e.yaml
751 F: drivers/media/platform/allegro-dvt/
752
753 ALLWINNER A10 CSI DRIVER
754 M: Maxime Ripard <mripard@kernel.org>
755 L: linux-media@vger.kernel.org
756 S: Maintained
757 T: git git://linuxtv.org/media_tree.git
758 F: Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
759 F: drivers/media/platform/sunxi/sun4i-csi/
760
761 ALLWINNER CPUFREQ DRIVER
762 M: Yangtao Li <tiny.windzz@gmail.com>
763 L: linux-pm@vger.kernel.org
764 S: Maintained
765 F: Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
766 F: drivers/cpufreq/sun50i-cpufreq-nvmem.c
767
768 ALLWINNER CRYPTO DRIVERS
769 M: Corentin Labbe <clabbe.montjoie@gmail.com>
770 L: linux-crypto@vger.kernel.org
771 S: Maintained
772 F: drivers/crypto/allwinner/
773
774 ALLWINNER HARDWARE SPINLOCK SUPPORT
775 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
776 S: Maintained
777 F: Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
778 F: drivers/hwspinlock/sun6i_hwspinlock.c
779
780 ALLWINNER THERMAL DRIVER
781 M: Vasily Khoruzhick <anarsoul@gmail.com>
782 M: Yangtao Li <tiny.windzz@gmail.com>
783 L: linux-pm@vger.kernel.org
784 S: Maintained
785 F: Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
786 F: drivers/thermal/sun8i_thermal.c
787
788 ALLWINNER VPU DRIVER
789 M: Maxime Ripard <mripard@kernel.org>
790 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
791 L: linux-media@vger.kernel.org
792 S: Maintained
793 F: drivers/staging/media/sunxi/cedrus/
794
795 ALPHA PORT
796 M: Richard Henderson <rth@twiddle.net>
797 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
798 M: Matt Turner <mattst88@gmail.com>
799 L: linux-alpha@vger.kernel.org
800 S: Odd Fixes
801 F: arch/alpha/
802
803 ALPS PS/2 TOUCHPAD DRIVER
804 R: Pali Rohár <pali@kernel.org>
805 F: drivers/input/mouse/alps.*
806
807 ALTERA I2C CONTROLLER DRIVER
808 M: Thor Thayer <thor.thayer@linux.intel.com>
809 S: Maintained
810 F: Documentation/devicetree/bindings/i2c/i2c-altera.txt
811 F: drivers/i2c/busses/i2c-altera.c
812
813 ALTERA MAILBOX DRIVER
814 M: Joyce Ooi <joyce.ooi@intel.com>
815 S: Maintained
816 F: drivers/mailbox/mailbox-altera.c
817
818 ALTERA MSGDMA IP CORE DRIVER
819 M: Olivier Dautricourt <olivier.dautricourt@orolia.com>
820 R: Stefan Roese <sr@denx.de>
821 L: dmaengine@vger.kernel.org
822 S: Odd Fixes
823 F: Documentation/devicetree/bindings/dma/altr,msgdma.yaml
824 F: drivers/dma/altera-msgdma.c
825
826 ALTERA PIO DRIVER
827 M: Mun Yew Tham <mun.yew.tham@intel.com>
828 L: linux-gpio@vger.kernel.org
829 S: Maintained
830 F: drivers/gpio/gpio-altera.c
831
832 ALTERA SYSTEM MANAGER DRIVER
833 M: Thor Thayer <thor.thayer@linux.intel.com>
834 S: Maintained
835 F: drivers/mfd/altera-sysmgr.c
836 F: include/linux/mfd/altera-sysmgr.h
837
838 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
839 M: Thor Thayer <thor.thayer@linux.intel.com>
840 S: Maintained
841 F: drivers/gpio/gpio-altera-a10sr.c
842 F: drivers/mfd/altera-a10sr.c
843 F: drivers/reset/reset-a10sr.c
844 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
845 F: include/linux/mfd/altera-a10sr.h
846
847 ALTERA TRIPLE SPEED ETHERNET DRIVER
848 M: Joyce Ooi <joyce.ooi@intel.com>
849 L: netdev@vger.kernel.org
850 S: Maintained
851 F: drivers/net/ethernet/altera/
852
853 ALTERA UART/JTAG UART SERIAL DRIVERS
854 M: Tobias Klauser <tklauser@distanz.ch>
855 L: linux-serial@vger.kernel.org
856 S: Maintained
857 F: drivers/tty/serial/altera_jtaguart.c
858 F: drivers/tty/serial/altera_uart.c
859 F: include/linux/altera_jtaguart.h
860 F: include/linux/altera_uart.h
861
862 AMAZON ANNAPURNA LABS FIC DRIVER
863 M: Talel Shenhar <talel@amazon.com>
864 S: Maintained
865 F: Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
866 F: drivers/irqchip/irq-al-fic.c
867
868 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
869 M: Talel Shenhar <talel@amazon.com>
870 M: Talel Shenhar <talelshenhar@gmail.com>
871 S: Maintained
872 F: Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
873 F: drivers/edac/al_mc_edac.c
874
875 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
876 M: Talel Shenhar <talel@amazon.com>
877 S: Maintained
878 F: Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
879 F: drivers/thermal/thermal_mmio.c
880
881 AMAZON ETHERNET DRIVERS
882 M: Netanel Belgazal <netanel@amazon.com>
883 M: Arthur Kiyanovski <akiyano@amazon.com>
884 R: Guy Tzalik <gtzalik@amazon.com>
885 R: Saeed Bishara <saeedb@amazon.com>
886 L: netdev@vger.kernel.org
887 S: Supported
888 F: Documentation/networking/device_drivers/ethernet/amazon/ena.rst
889 F: drivers/net/ethernet/amazon/
890
891 AMAZON RDMA EFA DRIVER
892 M: Gal Pressman <galpress@amazon.com>
893 R: Yossi Leybovich <sleybo@amazon.com>
894 L: linux-rdma@vger.kernel.org
895 S: Supported
896 Q: https://patchwork.kernel.org/project/linux-rdma/list/
897 F: drivers/infiniband/hw/efa/
898 F: include/uapi/rdma/efa-abi.h
899
900 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
901 M: Tom Lendacky <thomas.lendacky@amd.com>
902 M: John Allen <john.allen@amd.com>
903 L: linux-crypto@vger.kernel.org
904 S: Supported
905 F: drivers/crypto/ccp/
906 F: include/linux/ccp.h
907
908 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
909 M: Brijesh Singh <brijesh.singh@amd.com>
910 M: Tom Lendacky <thomas.lendacky@amd.com>
911 L: linux-crypto@vger.kernel.org
912 S: Supported
913 F: drivers/crypto/ccp/sev*
914 F: include/uapi/linux/psp-sev.h
915
916 AMD DISPLAY CORE
917 M: Harry Wentland <harry.wentland@amd.com>
918 M: Leo Li <sunpeng.li@amd.com>
919 L: amd-gfx@lists.freedesktop.org
920 S: Supported
921 T: git https://gitlab.freedesktop.org/agd5f/linux.git
922 F: drivers/gpu/drm/amd/display/
923
924 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
925 M: Huang Rui <ray.huang@amd.com>
926 L: linux-hwmon@vger.kernel.org
927 S: Supported
928 F: Documentation/hwmon/fam15h_power.rst
929 F: drivers/hwmon/fam15h_power.c
930
931 AMD FCH GPIO DRIVER
932 M: Enrico Weigelt, metux IT consult <info@metux.net>
933 L: linux-gpio@vger.kernel.org
934 S: Maintained
935 F: drivers/gpio/gpio-amd-fch.c
936 F: include/linux/platform_data/gpio/gpio-amd-fch.h
937
938 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
939 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
940 S: Orphan
941 F: drivers/usb/gadget/udc/amd5536udc.*
942
943 AMD GEODE PROCESSOR/CHIPSET SUPPORT
944 M: Andres Salomon <dilinger@queued.net>
945 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
946 S: Supported
947 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
948 F: arch/x86/include/asm/geode.h
949 F: drivers/char/hw_random/geode-rng.c
950 F: drivers/crypto/geode*
951 F: drivers/video/fbdev/geode/
952
953 AMD IOMMU (AMD-VI)
954 M: Joerg Roedel <joro@8bytes.org>
955 R: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
956 L: iommu@lists.linux-foundation.org
957 L: iommu@lists.linux.dev
958 S: Maintained
959 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
960 F: drivers/iommu/amd/
961 F: include/linux/amd-iommu.h
962
963 AMD KFD
964 M: Felix Kuehling <Felix.Kuehling@amd.com>
965 L: amd-gfx@lists.freedesktop.org
966 S: Supported
967 T: git https://gitlab.freedesktop.org/agd5f/linux.git
968 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
969 F: drivers/gpu/drm/amd/amdkfd/
970 F: drivers/gpu/drm/amd/include/cik_structs.h
971 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
972 F: drivers/gpu/drm/amd/include/v9_structs.h
973 F: drivers/gpu/drm/amd/include/vi_structs.h
974 F: include/uapi/linux/kfd_ioctl.h
975
976 AMD SPI DRIVER
977 M: Sanjay R Mehta <sanju.mehta@amd.com>
978 S: Maintained
979 F: drivers/spi/spi-amd.c
980
981 AMD MP2 I2C DRIVER
982 M: Elie Morisse <syniurge@gmail.com>
983 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
984 M: Shyam Sundar S K <shyam-sundar.s-k@amd.com>
985 L: linux-i2c@vger.kernel.org
986 S: Maintained
987 F: drivers/i2c/busses/i2c-amd-mp2*
988
989 AMD PMC DRIVER
990 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
991 L: platform-driver-x86@vger.kernel.org
992 S: Maintained
993 F: drivers/platform/x86/amd-pmc.*
994
995 AMD POWERPLAY AND SWSMU
996 M: Evan Quan <evan.quan@amd.com>
997 L: amd-gfx@lists.freedesktop.org
998 S: Supported
999 T: git https://gitlab.freedesktop.org/agd5f/linux.git
1000 F: drivers/gpu/drm/amd/pm/
1001
1002 AMD PTDMA DRIVER
1003 M: Sanjay R Mehta <sanju.mehta@amd.com>
1004 L: dmaengine@vger.kernel.org
1005 S: Maintained
1006 F: drivers/dma/ptdma/
1007
1008 AMD PSTATE DRIVER
1009 M: Huang Rui <ray.huang@amd.com>
1010 L: linux-pm@vger.kernel.org
1011 S: Supported
1012 F: Documentation/admin-guide/pm/amd-pstate.rst
1013 F: drivers/cpufreq/amd-pstate*
1014
1015 AMD SEATTLE DEVICE TREE SUPPORT
1016 M: Brijesh Singh <brijeshkumar.singh@amd.com>
1017 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1018 M: Tom Lendacky <thomas.lendacky@amd.com>
1019 S: Supported
1020 F: arch/arm64/boot/dts/amd/
1021
1022 AMD XGBE DRIVER
1023 M: Tom Lendacky <thomas.lendacky@amd.com>
1024 L: netdev@vger.kernel.org
1025 S: Supported
1026 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1027 F: drivers/net/ethernet/amd/xgbe/
1028
1029 AMD SENSOR FUSION HUB DRIVER
1030 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
1031 M: Basavaraj Natikar <basavaraj.natikar@amd.com>
1032 L: linux-input@vger.kernel.org
1033 S: Maintained
1034 F: Documentation/hid/amd-sfh*
1035 F: drivers/hid/amd-sfh-hid/
1036
1037 AMS AS73211 DRIVER
1038 M: Christian Eggers <ceggers@arri.de>
1039 L: linux-iio@vger.kernel.org
1040 S: Maintained
1041 F: Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1042 F: drivers/iio/light/as73211.c
1043
1044 ANALOG DEVICES INC AD7192 DRIVER
1045 M: Alexandru Tachici <alexandru.tachici@analog.com>
1046 L: linux-iio@vger.kernel.org
1047 S: Supported
1048 W: http://ez.analog.com/community/linux-device-drivers
1049 F: Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1050 F: drivers/iio/adc/ad7192.c
1051
1052 ANALOG DEVICES INC AD7292 DRIVER
1053 M: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1054 L: linux-iio@vger.kernel.org
1055 S: Supported
1056 W: http://ez.analog.com/community/linux-device-drivers
1057 F: Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1058 F: drivers/iio/adc/ad7292.c
1059
1060 ANALOG DEVICES INC AD7768-1 DRIVER
1061 M: Michael Hennerich <Michael.Hennerich@analog.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,ad7768-1.yaml
1066 F: drivers/iio/adc/ad7768-1.c
1067
1068 ANALOG DEVICES INC AD7780 DRIVER
1069 M: Michael Hennerich <Michael.Hennerich@analog.com>
1070 M: Renato Lui Geh <renatogeh@gmail.com>
1071 L: linux-iio@vger.kernel.org
1072 S: Supported
1073 W: http://ez.analog.com/community/linux-device-drivers
1074 F: Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1075 F: drivers/iio/adc/ad7780.c
1076
1077 ANALOG DEVICES INC AD9389B DRIVER
1078 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1079 L: linux-media@vger.kernel.org
1080 S: Maintained
1081 F: drivers/media/i2c/ad9389b*
1082
1083 ANALOG DEVICES INC ADGS1408 DRIVER
1084 M: Mircea Caprioru <mircea.caprioru@analog.com>
1085 S: Supported
1086 F: Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1087 F: drivers/mux/adgs1408.c
1088
1089 ANALOG DEVICES INC ADIN DRIVER
1090 M: Michael Hennerich <michael.hennerich@analog.com>
1091 L: netdev@vger.kernel.org
1092 S: Supported
1093 W: http://ez.analog.com/community/linux-device-drivers
1094 F: Documentation/devicetree/bindings/net/adi,adin.yaml
1095 F: drivers/net/phy/adin.c
1096
1097 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1098 M: Nuno Sa <nuno.sa@analog.com>
1099 L: linux-iio@vger.kernel.org
1100 S: Supported
1101 F: drivers/iio/imu/adis.c
1102 F: include/linux/iio/imu/adis.h
1103
1104 ANALOG DEVICES INC ADIS16460 DRIVER
1105 M: Dragos Bogdan <dragos.bogdan@analog.com>
1106 L: linux-iio@vger.kernel.org
1107 S: Supported
1108 W: http://ez.analog.com/community/linux-device-drivers
1109 F: Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1110 F: drivers/iio/imu/adis16460.c
1111
1112 ANALOG DEVICES INC ADIS16475 DRIVER
1113 M: Nuno Sa <nuno.sa@analog.com>
1114 L: linux-iio@vger.kernel.org
1115 W: http://ez.analog.com/community/linux-device-drivers
1116 S: Supported
1117 F: drivers/iio/imu/adis16475.c
1118 F: Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1119
1120 ANALOG DEVICES INC ADM1177 DRIVER
1121 M: Michael Hennerich <Michael.Hennerich@analog.com>
1122 L: linux-hwmon@vger.kernel.org
1123 S: Supported
1124 W: http://ez.analog.com/community/linux-device-drivers
1125 F: Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1126 F: drivers/hwmon/adm1177.c
1127
1128 ANALOG DEVICES INC ADP5061 DRIVER
1129 M: Michael Hennerich <Michael.Hennerich@analog.com>
1130 L: linux-pm@vger.kernel.org
1131 S: Supported
1132 W: http://ez.analog.com/community/linux-device-drivers
1133 F: drivers/power/supply/adp5061.c
1134
1135 ANALOG DEVICES INC ADV7180 DRIVER
1136 M: Lars-Peter Clausen <lars@metafoo.de>
1137 L: linux-media@vger.kernel.org
1138 S: Supported
1139 W: http://ez.analog.com/community/linux-device-drivers
1140 F: drivers/media/i2c/adv7180.c
1141 F: Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1142
1143 ANALOG DEVICES INC ADV748X DRIVER
1144 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
1145 L: linux-media@vger.kernel.org
1146 S: Maintained
1147 F: drivers/media/i2c/adv748x/*
1148
1149 ANALOG DEVICES INC ADV7511 DRIVER
1150 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1151 L: linux-media@vger.kernel.org
1152 S: Maintained
1153 F: drivers/media/i2c/adv7511*
1154
1155 ANALOG DEVICES INC ADV7604 DRIVER
1156 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1157 L: linux-media@vger.kernel.org
1158 S: Maintained
1159 F: drivers/media/i2c/adv7604*
1160 F: Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1161
1162 ANALOG DEVICES INC ADV7842 DRIVER
1163 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1164 L: linux-media@vger.kernel.org
1165 S: Maintained
1166 F: drivers/media/i2c/adv7842*
1167
1168 ANALOG DEVICES INC ADXRS290 DRIVER
1169 M: Nishant Malpani <nish.malpani25@gmail.com>
1170 L: linux-iio@vger.kernel.org
1171 S: Supported
1172 F: drivers/iio/gyro/adxrs290.c
1173 F: Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1174
1175 ANALOG DEVICES INC ASOC CODEC DRIVERS
1176 M: Lars-Peter Clausen <lars@metafoo.de>
1177 M: Nuno Sá <nuno.sa@analog.com>
1178 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1179 S: Supported
1180 W: http://wiki.analog.com/
1181 W: http://ez.analog.com/community/linux-device-drivers
1182 F: sound/soc/codecs/ad1*
1183 F: sound/soc/codecs/ad7*
1184 F: sound/soc/codecs/adau*
1185 F: sound/soc/codecs/adav*
1186 F: sound/soc/codecs/sigmadsp.*
1187 F: sound/soc/codecs/ssm*
1188
1189 ANALOG DEVICES INC DMA DRIVERS
1190 M: Lars-Peter Clausen <lars@metafoo.de>
1191 S: Supported
1192 W: http://ez.analog.com/community/linux-device-drivers
1193 F: drivers/dma/dma-axi-dmac.c
1194
1195 ANALOG DEVICES INC IIO DRIVERS
1196 M: Lars-Peter Clausen <lars@metafoo.de>
1197 M: Michael Hennerich <Michael.Hennerich@analog.com>
1198 S: Supported
1199 W: http://wiki.analog.com/
1200 W: http://ez.analog.com/community/linux-device-drivers
1201 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1202 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1203 F: Documentation/devicetree/bindings/iio/*/adi,*
1204 F: Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1205 F: drivers/iio/*/ad*
1206 F: drivers/iio/adc/ltc249*
1207 F: drivers/iio/amplifiers/hmc425a.c
1208 F: drivers/staging/iio/*/ad*
1209 X: drivers/iio/*/adjd*
1210
1211 ANALOGBITS PLL LIBRARIES
1212 M: Paul Walmsley <paul.walmsley@sifive.com>
1213 S: Supported
1214 F: drivers/clk/analogbits/*
1215 F: include/linux/clk/analogbits*
1216
1217 ANDES ARCHITECTURE
1218 M: Nick Hu <nickhu@andestech.com>
1219 M: Greentime Hu <green.hu@gmail.com>
1220 M: Vincent Chen <deanbo422@gmail.com>
1221 S: Supported
1222 T: git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1223 F: Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1224 F: Documentation/devicetree/bindings/nds32/
1225 F: arch/nds32/
1226 N: nds32
1227 K: nds32
1228
1229 ANDROID CONFIG FRAGMENTS
1230 M: Rob Herring <robh@kernel.org>
1231 S: Supported
1232 F: kernel/configs/android*
1233
1234 ANDROID DRIVERS
1235 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1236 M: Arve Hjønnevåg <arve@android.com>
1237 M: Todd Kjos <tkjos@android.com>
1238 M: Martijn Coenen <maco@android.com>
1239 M: Joel Fernandes <joel@joelfernandes.org>
1240 M: Christian Brauner <christian@brauner.io>
1241 M: Hridya Valsaraju <hridya@google.com>
1242 M: Suren Baghdasaryan <surenb@google.com>
1243 L: linux-kernel@vger.kernel.org
1244 S: Supported
1245 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1246 F: drivers/android/
1247 F: drivers/staging/android/
1248
1249 ANDROID GOLDFISH PIC DRIVER
1250 M: Miodrag Dinic <miodrag.dinic@mips.com>
1251 S: Supported
1252 F: Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1253 F: drivers/irqchip/irq-goldfish-pic.c
1254
1255 ANDROID GOLDFISH RTC DRIVER
1256 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
1257 S: Supported
1258 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1259 F: drivers/rtc/rtc-goldfish.c
1260
1261 AOA (Apple Onboard Audio) ALSA DRIVER
1262 M: Johannes Berg <johannes@sipsolutions.net>
1263 L: linuxppc-dev@lists.ozlabs.org
1264 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1265 S: Maintained
1266 F: sound/aoa/
1267
1268 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1269 M: William Breathitt Gray <vilhelm.gray@gmail.com>
1270 L: linux-iio@vger.kernel.org
1271 S: Maintained
1272 F: drivers/iio/adc/stx104.c
1273
1274 APM DRIVER
1275 M: Jiri Kosina <jikos@kernel.org>
1276 S: Odd fixes
1277 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1278 F: arch/x86/kernel/apm_32.c
1279 F: drivers/char/apm-emulation.c
1280 F: include/linux/apm_bios.h
1281 F: include/uapi/linux/apm_bios.h
1282
1283 APPARMOR SECURITY MODULE
1284 M: John Johansen <john.johansen@canonical.com>
1285 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1286 S: Supported
1287 W: wiki.apparmor.net
1288 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1289 F: Documentation/admin-guide/LSM/apparmor.rst
1290 F: security/apparmor/
1291
1292 APPLE BCM5974 MULTITOUCH DRIVER
1293 M: Henrik Rydberg <rydberg@bitmath.org>
1294 L: linux-input@vger.kernel.org
1295 S: Odd fixes
1296 F: drivers/input/mouse/bcm5974.c
1297
1298 APPLE DART IOMMU DRIVER
1299 M: Sven Peter <sven@svenpeter.dev>
1300 R: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1301 L: iommu@lists.linux-foundation.org
1302 S: Maintained
1303 F: Documentation/devicetree/bindings/iommu/apple,dart.yaml
1304 F: drivers/iommu/apple-dart.c
1305
1306 APPLE SMC DRIVER
1307 M: Henrik Rydberg <rydberg@bitmath.org>
1308 L: linux-hwmon@vger.kernel.org
1309 S: Odd fixes
1310 F: drivers/hwmon/applesmc.c
1311
1312 APPLETALK NETWORK LAYER
1313 L: netdev@vger.kernel.org
1314 S: Odd fixes
1315 F: drivers/net/appletalk/
1316 F: include/linux/atalk.h
1317 F: include/uapi/linux/atalk.h
1318 F: net/appletalk/
1319
1320 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1321 M: Khuong Dinh <khuong@os.amperecomputing.com>
1322 S: Supported
1323 F: arch/arm64/boot/dts/apm/
1324
1325 APPLIED MICRO (APM) X-GENE SOC EDAC
1326 M: Khuong Dinh <khuong@os.amperecomputing.com>
1327 S: Supported
1328 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1329 F: drivers/edac/xgene_edac.c
1330
1331 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1332 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1333 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1334 S: Supported
1335 F: drivers/net/ethernet/apm/xgene-v2/
1336
1337 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1338 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1339 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1340 M: Quan Nguyen <quan@os.amperecomputing.com>
1341 S: Supported
1342 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1343 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1344 F: drivers/net/ethernet/apm/xgene/
1345 F: drivers/net/mdio/mdio-xgene.c
1346
1347 APPLIED MICRO (APM) X-GENE SOC PMU
1348 M: Khuong Dinh <khuong@os.amperecomputing.com>
1349 S: Supported
1350 F: Documentation/admin-guide/perf/xgene-pmu.rst
1351 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1352 F: drivers/perf/xgene_pmu.c
1353
1354 APTINA CAMERA SENSOR PLL
1355 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1356 L: linux-media@vger.kernel.org
1357 S: Maintained
1358 F: drivers/media/i2c/aptina-pll.*
1359
1360 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1361 M: Aleksa Savic <savicaleksa83@gmail.com>
1362 L: linux-hwmon@vger.kernel.org
1363 S: Maintained
1364 F: Documentation/hwmon/aquacomputer_d5next.rst
1365 F: drivers/hwmon/aquacomputer_d5next.c
1366
1367 AQUANTIA ETHERNET DRIVER (atlantic)
1368 M: Igor Russkikh <irusskikh@marvell.com>
1369 L: netdev@vger.kernel.org
1370 S: Supported
1371 W: https://www.marvell.com/
1372 Q: https://patchwork.kernel.org/project/netdevbpf/list/
1373 F: Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1374 F: drivers/net/ethernet/aquantia/atlantic/
1375
1376 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1377 M: Egor Pomozov <epomozov@marvell.com>
1378 L: netdev@vger.kernel.org
1379 S: Supported
1380 W: http://www.aquantia.com
1381 F: drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1382
1383 ARASAN NAND CONTROLLER DRIVER
1384 M: Miquel Raynal <miquel.raynal@bootlin.com>
1385 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1386 L: linux-mtd@lists.infradead.org
1387 S: Maintained
1388 F: Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1389 F: drivers/mtd/nand/raw/arasan-nand-controller.c
1390
1391 ARC FRAMEBUFFER DRIVER
1392 M: Jaya Kumar <jayalk@intworks.biz>
1393 S: Maintained
1394 F: drivers/video/fbdev/arcfb.c
1395 F: drivers/video/fbdev/core/fb_defio.c
1396
1397 ARC PGU DRM DRIVER
1398 M: Alexey Brodkin <abrodkin@synopsys.com>
1399 S: Supported
1400 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
1401 F: drivers/gpu/drm/tiny/arcpgu.c
1402
1403 ARCNET NETWORK LAYER
1404 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
1405 L: netdev@vger.kernel.org
1406 S: Maintained
1407 F: drivers/net/arcnet/
1408 F: include/uapi/linux/if_arcnet.h
1409
1410 ARM ARCHITECTED TIMER DRIVER
1411 M: Mark Rutland <mark.rutland@arm.com>
1412 M: Marc Zyngier <maz@kernel.org>
1413 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1414 S: Maintained
1415 F: arch/arm/include/asm/arch_timer.h
1416 F: arch/arm64/include/asm/arch_timer.h
1417 F: drivers/clocksource/arm_arch_timer.c
1418
1419 ARM HDLCD DRM DRIVER
1420 M: Liviu Dudau <liviu.dudau@arm.com>
1421 S: Supported
1422 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
1423 F: drivers/gpu/drm/arm/hdlcd_*
1424
1425 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1426 M: Linus Walleij <linus.walleij@linaro.org>
1427 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428 S: Maintained
1429 F: Documentation/devicetree/bindings/arm/arm,integrator.yaml
1430 F: Documentation/devicetree/bindings/arm/arm,realview.yaml
1431 F: Documentation/devicetree/bindings/arm/arm,versatile.yaml
1432 F: Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1433 F: Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1434 F: Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1435 F: Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1436 F: Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1437 F: Documentation/devicetree/bindings/mtd/arm-versatile.txt
1438 F: arch/arm/boot/dts/arm-realview-*
1439 F: arch/arm/boot/dts/integrator*
1440 F: arch/arm/boot/dts/versatile*
1441 F: arch/arm/mach-integrator/
1442 F: arch/arm/mach-realview/
1443 F: arch/arm/mach-versatile/
1444 F: arch/arm/plat-versatile/
1445 F: drivers/bus/arm-integrator-lm.c
1446 F: drivers/clk/versatile/
1447 F: drivers/i2c/busses/i2c-versatile.c
1448 F: drivers/irqchip/irq-versatile-fpga.c
1449 F: drivers/mtd/maps/physmap-versatile.*
1450 F: drivers/power/reset/arm-versatile-reboot.c
1451 F: drivers/soc/versatile/
1452
1453 ARM KOMEDA DRM-KMS DRIVER
1454 M: James (Qian) Wang <james.qian.wang@arm.com>
1455 M: Liviu Dudau <liviu.dudau@arm.com>
1456 M: Mihail Atanassov <mihail.atanassov@arm.com>
1457 L: Mali DP Maintainers <malidp@foss.arm.com>
1458 S: Supported
1459 T: git git://anongit.freedesktop.org/drm/drm-misc
1460 F: Documentation/devicetree/bindings/display/arm,komeda.txt
1461 F: Documentation/gpu/komeda-kms.rst
1462 F: drivers/gpu/drm/arm/display/include/
1463 F: drivers/gpu/drm/arm/display/komeda/
1464
1465 ARM MALI PANFROST DRM DRIVER
1466 M: Rob Herring <robh@kernel.org>
1467 M: Tomeu Vizoso <tomeu.vizoso@collabora.com>
1468 R: Steven Price <steven.price@arm.com>
1469 R: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1470 L: dri-devel@lists.freedesktop.org
1471 S: Supported
1472 T: git git://anongit.freedesktop.org/drm/drm-misc
1473 F: drivers/gpu/drm/panfrost/
1474 F: include/uapi/drm/panfrost_drm.h
1475
1476 ARM MALI-DP DRM DRIVER
1477 M: Liviu Dudau <liviu.dudau@arm.com>
1478 M: Brian Starkey <brian.starkey@arm.com>
1479 L: Mali DP Maintainers <malidp@foss.arm.com>
1480 S: Supported
1481 T: git git://anongit.freedesktop.org/drm/drm-misc
1482 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1483 F: Documentation/gpu/afbc.rst
1484 F: drivers/gpu/drm/arm/
1485
1486 ARM MFM AND FLOPPY DRIVERS
1487 M: Ian Molton <spyro@f2s.com>
1488 S: Maintained
1489 F: arch/arm/include/asm/floppy.h
1490 F: arch/arm/mach-rpc/floppydma.S
1491
1492 ARM PMU PROFILING AND DEBUGGING
1493 M: Will Deacon <will@kernel.org>
1494 M: Mark Rutland <mark.rutland@arm.com>
1495 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1496 S: Maintained
1497 F: Documentation/devicetree/bindings/arm/pmu.yaml
1498 F: Documentation/devicetree/bindings/perf/
1499 F: arch/arm*/include/asm/hw_breakpoint.h
1500 F: arch/arm*/include/asm/perf_event.h
1501 F: arch/arm*/kernel/hw_breakpoint.c
1502 F: arch/arm*/kernel/perf_*
1503 F: drivers/perf/
1504 F: include/linux/perf/arm_pmu.h
1505
1506 ARM PORT
1507 M: Russell King <linux@armlinux.org.uk>
1508 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1509 S: Odd Fixes
1510 W: http://www.armlinux.org.uk/
1511 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1512 F: arch/arm/
1513 X: arch/arm/boot/dts/
1514
1515 ARM PRIMECELL AACI PL041 DRIVER
1516 M: Russell King <linux@armlinux.org.uk>
1517 S: Odd Fixes
1518 F: sound/arm/aaci.*
1519
1520 ARM PRIMECELL BUS SUPPORT
1521 M: Russell King <linux@armlinux.org.uk>
1522 S: Odd Fixes
1523 F: drivers/amba/
1524 F: include/linux/amba/bus.h
1525
1526 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1527 M: Miquel Raynal <miquel.raynal@bootlin.com>
1528 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1529 L: linux-mtd@lists.infradead.org
1530 S: Maintained
1531 F: Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1532 F: drivers/mtd/nand/raw/pl35x-nand-controller.c
1533
1534 ARM PRIMECELL PL35X SMC DRIVER
1535 M: Miquel Raynal <miquel.raynal@bootlin.com>
1536 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1537 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1538 S: Maintained
1539 F: Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1540 F: drivers/memory/pl353-smc.c
1541
1542 ARM PRIMECELL CLCD PL110 DRIVER
1543 M: Russell King <linux@armlinux.org.uk>
1544 S: Odd Fixes
1545 F: drivers/video/fbdev/amba-clcd.*
1546
1547 ARM PRIMECELL KMI PL050 DRIVER
1548 M: Russell King <linux@armlinux.org.uk>
1549 S: Odd Fixes
1550 F: drivers/input/serio/ambakmi.*
1551 F: include/linux/amba/kmi.h
1552
1553 ARM PRIMECELL MMCI PL180/1 DRIVER
1554 M: Russell King <linux@armlinux.org.uk>
1555 S: Odd Fixes
1556 F: drivers/mmc/host/mmci.*
1557 F: include/linux/amba/mmci.h
1558
1559 ARM PRIMECELL SSP PL022 SPI DRIVER
1560 M: Linus Walleij <linus.walleij@linaro.org>
1561 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1562 S: Maintained
1563 F: Documentation/devicetree/bindings/spi/spi-pl022.yaml
1564 F: drivers/spi/spi-pl022.c
1565
1566 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1567 M: Russell King <linux@armlinux.org.uk>
1568 S: Odd Fixes
1569 F: drivers/tty/serial/amba-pl01*.c
1570 F: include/linux/amba/serial.h
1571
1572 ARM PRIMECELL VIC PL190/PL192 DRIVER
1573 M: Linus Walleij <linus.walleij@linaro.org>
1574 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1575 S: Maintained
1576 F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1577 F: drivers/irqchip/irq-vic.c
1578
1579 ARM SMC WATCHDOG DRIVER
1580 M: Julius Werner <jwerner@chromium.org>
1581 R: Evan Benn <evanbenn@chromium.org>
1582 S: Maintained
1583 F: Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1584 F: drivers/watchdog/arm_smc_wdt.c
1585
1586 ARM SMMU DRIVERS
1587 M: Will Deacon <will@kernel.org>
1588 R: Robin Murphy <robin.murphy@arm.com>
1589 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1590 S: Maintained
1591 F: Documentation/devicetree/bindings/iommu/arm,smmu*
1592 F: drivers/iommu/arm/
1593 F: drivers/iommu/io-pgtable-arm*
1594
1595 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1596 M: Arnd Bergmann <arnd@arndb.de>
1597 M: Olof Johansson <olof@lixom.net>
1598 M: soc@kernel.org
1599 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1600 S: Maintained
1601 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1602 F: arch/arm/boot/dts/Makefile
1603 F: arch/arm64/boot/dts/Makefile
1604
1605 ARM SUB-ARCHITECTURES
1606 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 S: Maintained
1608 T: git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1609 F: arch/arm/mach-*/
1610 F: arch/arm/plat-*/
1611
1612 ARM/ACTIONS SEMI ARCHITECTURE
1613 M: Andreas Färber <afaerber@suse.de>
1614 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1615 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1616 L: linux-actions@lists.infradead.org (moderated for non-subscribers)
1617 S: Maintained
1618 F: Documentation/devicetree/bindings/arm/actions.yaml
1619 F: Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1620 F: Documentation/devicetree/bindings/dma/owl-dma.yaml
1621 F: Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1622 F: Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1623 F: Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1624 F: Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1625 F: Documentation/devicetree/bindings/pinctrl/actions,*
1626 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1627 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1628 F: arch/arm/boot/dts/owl-*
1629 F: arch/arm/mach-actions/
1630 F: arch/arm64/boot/dts/actions/
1631 F: drivers/clk/actions/
1632 F: drivers/clocksource/timer-owl*
1633 F: drivers/dma/owl-dma.c
1634 F: drivers/i2c/busses/i2c-owl.c
1635 F: drivers/irqchip/irq-owl-sirq.c
1636 F: drivers/mmc/host/owl-mmc.c
1637 F: drivers/net/ethernet/actions/
1638 F: drivers/pinctrl/actions/*
1639 F: drivers/soc/actions/
1640 F: include/dt-bindings/power/owl-*
1641 F: include/dt-bindings/reset/actions,*
1642 F: include/linux/soc/actions/
1643 N: owl
1644
1645 ARM/ADS SPHERE MACHINE SUPPORT
1646 M: Lennert Buytenhek <kernel@wantstofly.org>
1647 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 S: Maintained
1649
1650 ARM/AFEB9260 MACHINE SUPPORT
1651 M: Sergey Lapin <slapin@ossfans.org>
1652 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1653 S: Maintained
1654
1655 ARM/AJECO 1ARM MACHINE SUPPORT
1656 M: Lennert Buytenhek <kernel@wantstofly.org>
1657 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 S: Maintained
1659
1660 ARM/Allwinner SoC Clock Support
1661 M: Emilio López <emilio@elopez.com.ar>
1662 S: Maintained
1663 F: drivers/clk/sunxi/
1664
1665 ARM/Allwinner sunXi SoC support
1666 M: Maxime Ripard <mripard@kernel.org>
1667 M: Chen-Yu Tsai <wens@csie.org>
1668 R: Jernej Skrabec <jernej.skrabec@gmail.com>
1669 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1670 S: Maintained
1671 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1672 L: linux-sunxi@lists.linux.dev
1673 F: arch/arm/mach-sunxi/
1674 F: arch/arm64/boot/dts/allwinner/
1675 F: drivers/clk/sunxi-ng/
1676 F: drivers/pinctrl/sunxi/
1677 F: drivers/soc/sunxi/
1678 N: allwinner
1679 N: sun[x456789]i
1680 N: sun50i
1681
1682 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1683 M: Neil Armstrong <narmstrong@baylibre.com>
1684 M: Jerome Brunet <jbrunet@baylibre.com>
1685 L: linux-amlogic@lists.infradead.org
1686 S: Maintained
1687 F: Documentation/devicetree/bindings/clock/amlogic*
1688 F: drivers/clk/meson/
1689 F: include/dt-bindings/clock/gxbb*
1690 F: include/dt-bindings/clock/meson*
1691
1692 ARM/Amlogic Meson SoC Crypto Drivers
1693 M: Corentin Labbe <clabbe@baylibre.com>
1694 L: linux-crypto@vger.kernel.org
1695 L: linux-amlogic@lists.infradead.org
1696 S: Maintained
1697 F: Documentation/devicetree/bindings/crypto/amlogic*
1698 F: drivers/crypto/amlogic/
1699
1700 ARM/Amlogic Meson SoC Sound Drivers
1701 M: Jerome Brunet <jbrunet@baylibre.com>
1702 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1703 S: Maintained
1704 F: Documentation/devicetree/bindings/sound/amlogic*
1705 F: sound/soc/meson/
1706
1707 ARM/Amlogic Meson SoC support
1708 M: Neil Armstrong <narmstrong@baylibre.com>
1709 M: Kevin Hilman <khilman@baylibre.com>
1710 R: Jerome Brunet <jbrunet@baylibre.com>
1711 R: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1712 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1713 L: linux-amlogic@lists.infradead.org
1714 S: Maintained
1715 W: http://linux-meson.com/
1716 F: arch/arm/boot/dts/meson*
1717 F: arch/arm/mach-meson/
1718 F: arch/arm64/boot/dts/amlogic/
1719 F: drivers/mmc/host/meson*
1720 F: drivers/pinctrl/meson/
1721 F: drivers/rtc/rtc-meson*
1722 F: drivers/soc/amlogic/
1723 N: meson
1724
1725 ARM/Annapurna Labs ALPINE ARCHITECTURE
1726 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1727 M: Antoine Tenart <atenart@kernel.org>
1728 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1729 S: Maintained
1730 F: arch/arm/boot/dts/alpine*
1731 F: arch/arm/mach-alpine/
1732 F: arch/arm64/boot/dts/amazon/
1733 F: drivers/*/*alpine*
1734
1735 ARM/APPLE MACHINE SUPPORT
1736 M: Hector Martin <marcan@marcan.st>
1737 M: Sven Peter <sven@svenpeter.dev>
1738 R: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1739 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S: Maintained
1741 W: https://asahilinux.org
1742 B: https://github.com/AsahiLinux/linux/issues
1743 C: irc://irc.oftc.net/asahi-dev
1744 T: git https://github.com/AsahiLinux/linux.git
1745 F: Documentation/devicetree/bindings/arm/apple.yaml
1746 F: Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1747 F: Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1748 F: arch/arm64/boot/dts/apple/
1749 F: drivers/irqchip/irq-apple-aic.c
1750 F: include/dt-bindings/interrupt-controller/apple-aic.h
1751 F: include/dt-bindings/pinctrl/apple.h
1752
1753 ARM/ARTPEC MACHINE SUPPORT
1754 M: Jesper Nilsson <jesper.nilsson@axis.com>
1755 M: Lars Persson <lars.persson@axis.com>
1756 L: linux-arm-kernel@axis.com
1757 S: Maintained
1758 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1759 F: arch/arm/boot/dts/artpec6*
1760 F: arch/arm/mach-artpec
1761 F: drivers/clk/axis
1762 F: drivers/crypto/axis
1763 F: drivers/mmc/host/usdhi6rol0.c
1764 F: drivers/pinctrl/pinctrl-artpec*
1765
1766 ARM/ASPEED I2C DRIVER
1767 M: Brendan Higgins <brendanhiggins@google.com>
1768 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1769 R: Joel Stanley <joel@jms.id.au>
1770 L: linux-i2c@vger.kernel.org
1771 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1772 S: Maintained
1773 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1774 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1775 F: drivers/i2c/busses/i2c-aspeed.c
1776 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1777
1778 ARM/ASPEED MACHINE SUPPORT
1779 M: Joel Stanley <joel@jms.id.au>
1780 R: Andrew Jeffery <andrew@aj.id.au>
1781 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1782 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1783 S: Supported
1784 Q: https://patchwork.ozlabs.org/project/linux-aspeed/list/
1785 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1786 F: arch/arm/boot/dts/aspeed-*
1787 F: arch/arm/mach-aspeed/
1788 N: aspeed
1789
1790 ARM/BITMAIN ARCHITECTURE
1791 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1792 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1793 S: Maintained
1794 F: Documentation/devicetree/bindings/arm/bitmain.yaml
1795 F: Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1796 F: Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1797 F: arch/arm64/boot/dts/bitmain/
1798 F: drivers/clk/clk-bm1880.c
1799 F: drivers/pinctrl/pinctrl-bm1880.c
1800
1801 ARM/CALXEDA HIGHBANK ARCHITECTURE
1802 M: Andre Przywara <andre.przywara@arm.com>
1803 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1804 S: Maintained
1805 F: arch/arm/boot/dts/ecx-*.dts*
1806 F: arch/arm/boot/dts/highbank.dts
1807 F: arch/arm/mach-highbank/
1808
1809 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1810 M: Krzysztof Halasa <khalasa@piap.pl>
1811 S: Maintained
1812 F: arch/arm/mach-cns3xxx/
1813
1814 ARM/CAVIUM THUNDER NETWORK DRIVER
1815 M: Sunil Goutham <sgoutham@marvell.com>
1816 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 S: Supported
1818 F: drivers/net/ethernet/cavium/thunder/
1819
1820 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1821 M: Lukasz Majewski <lukma@denx.de>
1822 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1823 S: Maintained
1824 F: arch/arm/mach-ep93xx/ts72xx.c
1825
1826 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1827 M: Alexander Shiyan <shc_work@mail.ru>
1828 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1829 S: Odd Fixes
1830 N: clps711x
1831
1832 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1833 M: Lennert Buytenhek <kernel@wantstofly.org>
1834 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1835 S: Maintained
1836
1837 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1838 M: Hartley Sweeten <hsweeten@visionengravers.com>
1839 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1840 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1841 S: Maintained
1842 F: arch/arm/mach-ep93xx/
1843 F: arch/arm/mach-ep93xx/include/mach/
1844
1845 ARM/CLKDEV SUPPORT
1846 M: Russell King <linux@armlinux.org.uk>
1847 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1848 S: Maintained
1849 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1850 F: drivers/clk/clkdev.c
1851
1852 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1853 M: Baruch Siach <baruch@tkos.co.il>
1854 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S: Maintained
1856 F: arch/arm/boot/dts/cx92755*
1857 N: digicolor
1858
1859 ARM/CONTEC MICRO9 MACHINE SUPPORT
1860 M: Hubert Feurstein <hubert.feurstein@contec.at>
1861 S: Maintained
1862 F: arch/arm/mach-ep93xx/micro9.c
1863
1864 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1865 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1866 M: Suzuki K Poulose <suzuki.poulose@arm.com>
1867 R: Mike Leach <mike.leach@linaro.org>
1868 R: Leo Yan <leo.yan@linaro.org>
1869 L: coresight@lists.linaro.org (moderated for non-subscribers)
1870 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S: Maintained
1872 T: git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1873 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1874 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1875 F: Documentation/devicetree/bindings/arm/coresight-cti.yaml
1876 F: Documentation/devicetree/bindings/arm/coresight.txt
1877 F: Documentation/devicetree/bindings/arm/ete.yaml
1878 F: Documentation/devicetree/bindings/arm/trbe.yaml
1879 F: Documentation/trace/coresight/*
1880 F: drivers/hwtracing/coresight/*
1881 F: include/dt-bindings/arm/coresight-cti-dt.h
1882 F: include/linux/coresight*
1883 F: tools/perf/arch/arm/util/auxtrace.c
1884 F: tools/perf/arch/arm/util/cs-etm.c
1885 F: tools/perf/arch/arm/util/cs-etm.h
1886 F: tools/perf/arch/arm/util/pmu.c
1887 F: tools/perf/util/cs-etm-decoder/*
1888 F: tools/perf/util/cs-etm.*
1889
1890 ARM/CORGI MACHINE SUPPORT
1891 M: Richard Purdie <rpurdie@rpsys.net>
1892 S: Maintained
1893
1894 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1895 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1896 M: Linus Walleij <linus.walleij@linaro.org>
1897 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1898 S: Maintained
1899 T: git git://github.com/ulli-kroll/linux.git
1900 F: Documentation/devicetree/bindings/arm/gemini.txt
1901 F: Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1902 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1903 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1904 F: arch/arm/boot/dts/gemini*
1905 F: arch/arm/mach-gemini/
1906 F: drivers/crypto/gemini/
1907 F: drivers/net/ethernet/cortina/
1908 F: drivers/pinctrl/pinctrl-gemini.c
1909 F: drivers/rtc/rtc-ftrtc010.c
1910
1911 ARM/CZ.NIC TURRIS SUPPORT
1912 M: Marek Behún <kabel@kernel.org>
1913 S: Maintained
1914 W: https://www.turris.cz/
1915 F: Documentation/ABI/testing/debugfs-moxtet
1916 F: Documentation/ABI/testing/sysfs-bus-moxtet-devices
1917 F: Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1918 F: Documentation/devicetree/bindings/bus/moxtet.txt
1919 F: Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1920 F: Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1921 F: Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1922 F: Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1923 F: drivers/bus/moxtet.c
1924 F: drivers/firmware/turris-mox-rwtm.c
1925 F: drivers/leds/leds-turris-omnia.c
1926 F: drivers/mailbox/armada-37xx-rwtm-mailbox.c
1927 F: drivers/gpio/gpio-moxtet.c
1928 F: drivers/watchdog/armada_37xx_wdt.c
1929 F: include/dt-bindings/bus/moxtet.h
1930 F: include/linux/armada-37xx-rwtm-mailbox.h
1931 F: include/linux/moxtet.h
1932
1933 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1934 M: Robert Jarzmik <robert.jarzmik@free.fr>
1935 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1936 S: Maintained
1937 F: arch/arm/mach-pxa/ezx.c
1938
1939 ARM/FARADAY FA526 PORT
1940 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1941 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1942 S: Maintained
1943 T: git git://git.berlios.de/gemini-board
1944 F: arch/arm/mm/*-fa*
1945
1946 ARM/FOOTBRIDGE ARCHITECTURE
1947 M: Russell King <linux@armlinux.org.uk>
1948 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1949 S: Maintained
1950 W: http://www.armlinux.org.uk/
1951 F: arch/arm/include/asm/hardware/dec21285.h
1952 F: arch/arm/mach-footbridge/
1953
1954 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1955 M: Shawn Guo <shawnguo@kernel.org>
1956 M: Sascha Hauer <s.hauer@pengutronix.de>
1957 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1958 R: Fabio Estevam <festevam@gmail.com>
1959 R: NXP Linux Team <linux-imx@nxp.com>
1960 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1961 S: Maintained
1962 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1963 X: drivers/media/i2c/
1964 N: imx
1965 N: mxs
1966
1967 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1968 M: Shawn Guo <shawnguo@kernel.org>
1969 M: Li Yang <leoyang.li@nxp.com>
1970 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1971 S: Maintained
1972 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1973 F: arch/arm/boot/dts/ls1021a*
1974 F: arch/arm64/boot/dts/freescale/fsl-*
1975 F: arch/arm64/boot/dts/freescale/qoriq-*
1976
1977 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1978 M: Shawn Guo <shawnguo@kernel.org>
1979 M: Sascha Hauer <s.hauer@pengutronix.de>
1980 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1981 R: Stefan Agner <stefan@agner.ch>
1982 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S: Maintained
1984 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1985 F: arch/arm/boot/dts/vf*
1986 F: arch/arm/mach-imx/*vf610*
1987
1988 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1989 M: Lennert Buytenhek <kernel@wantstofly.org>
1990 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1991 S: Maintained
1992
1993 ARM/GUMSTIX MACHINE SUPPORT
1994 M: Steve Sakoman <sakoman@gmail.com>
1995 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S: Maintained
1997
1998 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1999 M: Philipp Zabel <philipp.zabel@gmail.com>
2000 M: Paul Parsons <lost.distance@yahoo.com>
2001 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2002 S: Maintained
2003 F: arch/arm/mach-pxa/hx4700.c
2004 F: arch/arm/mach-pxa/include/mach/hx4700.h
2005 F: sound/soc/pxa/hx4700.c
2006
2007 ARM/HISILICON SOC SUPPORT
2008 M: Wei Xu <xuwei5@hisilicon.com>
2009 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2010 S: Supported
2011 W: http://www.hisilicon.com
2012 T: git git://github.com/hisilicon/linux-hisi.git
2013 F: arch/arm/boot/dts/hi3*
2014 F: arch/arm/boot/dts/hip*
2015 F: arch/arm/boot/dts/hisi*
2016 F: arch/arm/mach-hisi/
2017 F: arch/arm64/boot/dts/hisilicon/
2018
2019 ARM/HP JORNADA 7XX MACHINE SUPPORT
2020 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
2021 S: Maintained
2022 W: www.jlime.com
2023 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2024 F: arch/arm/mach-sa1100/include/mach/jornada720.h
2025 F: arch/arm/mach-sa1100/jornada720.c
2026
2027 ARM/IGEP MACHINE SUPPORT
2028 M: Enric Balletbo i Serra <eballetbo@gmail.com>
2029 M: Javier Martinez Canillas <javier@dowhile0.org>
2030 L: linux-omap@vger.kernel.org
2031 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2032 S: Maintained
2033 F: arch/arm/boot/dts/omap3-igep*
2034
2035 ARM/INCOME PXA270 SUPPORT
2036 M: Marek Vasut <marek.vasut@gmail.com>
2037 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2038 S: Maintained
2039 F: arch/arm/mach-pxa/colibri-pxa270-income.c
2040
2041 ARM/INTEL IOP32X ARM ARCHITECTURE
2042 M: Lennert Buytenhek <kernel@wantstofly.org>
2043 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 S: Maintained
2045
2046 ARM/INTEL IQ81342EX MACHINE SUPPORT
2047 M: Lennert Buytenhek <kernel@wantstofly.org>
2048 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 S: Maintained
2050
2051 ARM/INTEL IXDP2850 MACHINE SUPPORT
2052 M: Lennert Buytenhek <kernel@wantstofly.org>
2053 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 S: Maintained
2055
2056 ARM/INTEL IXP4XX ARM ARCHITECTURE
2057 M: Linus Walleij <linusw@kernel.org>
2058 M: Imre Kaloz <kaloz@openwrt.org>
2059 M: Krzysztof Halasa <khalasa@piap.pl>
2060 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2061 S: Maintained
2062 F: Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2063 F: Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2064 F: Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2065 F: Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2066 F: Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2067 F: arch/arm/mach-ixp4xx/
2068 F: drivers/bus/intel-ixp4xx-eb.c
2069 F: drivers/clocksource/timer-ixp4xx.c
2070 F: drivers/crypto/ixp4xx_crypto.c
2071 F: drivers/gpio/gpio-ixp4xx.c
2072 F: drivers/irqchip/irq-ixp4xx.c
2073 F: include/linux/irqchip/irq-ixp4xx.h
2074 F: include/linux/platform_data/timer-ixp4xx.h
2075
2076 ARM/INTEL KEEMBAY ARCHITECTURE
2077 M: Paul J. Murphy <paul.j.murphy@intel.com>
2078 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2079 S: Maintained
2080 F: Documentation/devicetree/bindings/arm/intel,keembay.yaml
2081 F: arch/arm64/boot/dts/intel/keembay-evm.dts
2082 F: arch/arm64/boot/dts/intel/keembay-soc.dtsi
2083
2084 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2085 M: Jonathan Cameron <jic23@cam.ac.uk>
2086 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2087 S: Maintained
2088 F: arch/arm/mach-pxa/stargate2.c
2089 F: drivers/pcmcia/pxa2xx_stargate2.c
2090
2091 ARM/INTEL XSC3 (MANZANO) ARM CORE
2092 M: Lennert Buytenhek <kernel@wantstofly.org>
2093 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2094 S: Maintained
2095
2096 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2097 M: Lennert Buytenhek <kernel@wantstofly.org>
2098 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2099 S: Maintained
2100
2101 ARM/LG1K ARCHITECTURE
2102 M: Chanho Min <chanho.min@lge.com>
2103 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2104 S: Maintained
2105 F: arch/arm64/boot/dts/lg/
2106
2107 ARM/LOGICPD PXA270 MACHINE SUPPORT
2108 M: Lennert Buytenhek <kernel@wantstofly.org>
2109 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2110 S: Maintained
2111
2112 ARM/LPC18XX ARCHITECTURE
2113 M: Vladimir Zapolskiy <vz@mleia.com>
2114 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2115 S: Maintained
2116 F: Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2117 F: arch/arm/boot/dts/lpc43*
2118 F: drivers/i2c/busses/i2c-lpc2k.c
2119 F: drivers/memory/pl172.c
2120 F: drivers/mtd/spi-nor/controllers/nxp-spifi.c
2121 F: drivers/rtc/rtc-lpc24xx.c
2122 N: lpc18xx
2123
2124 ARM/LPC32XX SOC SUPPORT
2125 M: Vladimir Zapolskiy <vz@mleia.com>
2126 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2127 S: Maintained
2128 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
2129 F: Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2130 F: arch/arm/boot/dts/lpc32*
2131 F: arch/arm/mach-lpc32xx/
2132 F: drivers/i2c/busses/i2c-pnx.c
2133 F: drivers/net/ethernet/nxp/lpc_eth.c
2134 F: drivers/usb/host/ohci-nxp.c
2135 F: drivers/watchdog/pnx4008_wdt.c
2136 N: lpc32xx
2137
2138 ARM/MAGICIAN MACHINE SUPPORT
2139 M: Philipp Zabel <philipp.zabel@gmail.com>
2140 S: Maintained
2141
2142 ARM/Marvell Dove/MV78xx0/Orion SOC support
2143 M: Andrew Lunn <andrew@lunn.ch>
2144 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2145 M: Gregory Clement <gregory.clement@bootlin.com>
2146 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2147 S: Maintained
2148 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2149 F: Documentation/devicetree/bindings/soc/dove/
2150 F: arch/arm/boot/dts/dove*
2151 F: arch/arm/boot/dts/orion5x*
2152 F: arch/arm/mach-dove/
2153 F: arch/arm/mach-mv78xx0/
2154 F: arch/arm/mach-orion5x/
2155 F: arch/arm/plat-orion/
2156 F: drivers/soc/dove/
2157
2158 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2159 M: Andrew Lunn <andrew@lunn.ch>
2160 M: Gregory Clement <gregory.clement@bootlin.com>
2161 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2162 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2163 S: Maintained
2164 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2165 F: arch/arm/boot/dts/armada*
2166 F: arch/arm/boot/dts/kirkwood*
2167 F: arch/arm/configs/mvebu_*_defconfig
2168 F: arch/arm/mach-mvebu/
2169 F: arch/arm64/boot/dts/marvell/armada*
2170 F: arch/arm64/boot/dts/marvell/cn913*
2171 F: drivers/cpufreq/armada-37xx-cpufreq.c
2172 F: drivers/cpufreq/armada-8k-cpufreq.c
2173 F: drivers/cpufreq/mvebu-cpufreq.c
2174 F: drivers/irqchip/irq-armada-370-xp.c
2175 F: drivers/irqchip/irq-mvebu-*
2176 F: drivers/pinctrl/mvebu/
2177 F: drivers/rtc/rtc-armada38x.c
2178
2179 ARM/Mediatek RTC DRIVER
2180 M: Eddie Huang <eddie.huang@mediatek.com>
2181 M: Sean Wang <sean.wang@mediatek.com>
2182 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2183 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2184 S: Maintained
2185 F: Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2186 F: Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2187 F: drivers/rtc/rtc-mt2712.c
2188 F: drivers/rtc/rtc-mt6397.c
2189 F: drivers/rtc/rtc-mt7622.c
2190
2191 ARM/Mediatek SoC support
2192 M: Matthias Brugger <matthias.bgg@gmail.com>
2193 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2194 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2195 S: Maintained
2196 W: https://mtk.wiki.kernel.org/
2197 C: irc://chat.freenode.net/linux-mediatek
2198 F: arch/arm/boot/dts/mt6*
2199 F: arch/arm/boot/dts/mt7*
2200 F: arch/arm/boot/dts/mt8*
2201 F: arch/arm/mach-mediatek/
2202 F: arch/arm64/boot/dts/mediatek/
2203 F: drivers/soc/mediatek/
2204 N: mtk
2205 N: mt[678]
2206 K: mediatek
2207
2208 ARM/Mediatek USB3 PHY DRIVER
2209 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
2210 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2211 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2212 S: Maintained
2213 F: Documentation/devicetree/bindings/phy/mediatek,*
2214 F: drivers/phy/mediatek/
2215
2216 ARM/Microchip (AT91) SoC support
2217 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2218 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
2219 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2220 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2221 S: Supported
2222 W: http://www.linux4sam.org
2223 T: git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2224 F: arch/arm/boot/dts/at91*.dts
2225 F: arch/arm/boot/dts/at91*.dtsi
2226 F: arch/arm/boot/dts/sama*.dts
2227 F: arch/arm/boot/dts/sama*.dtsi
2228 F: arch/arm/include/debug/at91.S
2229 F: arch/arm/mach-at91/
2230 F: drivers/memory/atmel*
2231 F: drivers/watchdog/sama5d4_wdt.c
2232 F: include/soc/at91/
2233 X: drivers/input/touchscreen/atmel_mxt_ts.c
2234 X: drivers/net/wireless/atmel/
2235 N: at91
2236 N: atmel
2237
2238 ARM/Microchip Sparx5 SoC support
2239 M: Lars Povlsen <lars.povlsen@microchip.com>
2240 M: Steen Hegelund <Steen.Hegelund@microchip.com>
2241 M: UNGLinuxDriver@microchip.com
2242 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2243 S: Supported
2244 T: git git://github.com/microchip-ung/linux-upstream.git
2245 F: arch/arm64/boot/dts/microchip/
2246 F: drivers/pinctrl/pinctrl-microchip-sgpio.c
2247 N: sparx5
2248
2249 Microchip Timer Counter Block (TCB) Capture Driver
2250 M: Kamel Bouhara <kamel.bouhara@bootlin.com>
2251 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 L: linux-iio@vger.kernel.org
2253 S: Maintained
2254 F: drivers/counter/microchip-tcb-capture.c
2255
2256 ARM/MIOA701 MACHINE SUPPORT
2257 M: Robert Jarzmik <robert.jarzmik@free.fr>
2258 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2259 S: Maintained
2260 F: arch/arm/mach-pxa/mioa701.c
2261
2262 ARM/MStar/Sigmastar Armv7 SoC support
2263 M: Daniel Palmer <daniel@thingy.jp>
2264 M: Romain Perier <romain.perier@gmail.com>
2265 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2266 S: Maintained
2267 W: http://linux-chenxing.org/
2268 T: git git://github.com/linux-chenxing/linux.git
2269 F: Documentation/devicetree/bindings/arm/mstar/*
2270 F: Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2271 F: Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2272 F: arch/arm/boot/dts/mstar-*
2273 F: arch/arm/mach-mstar/
2274 F: drivers/clk/mstar/
2275 F: drivers/gpio/gpio-msc313.c
2276 F: drivers/watchdog/msc313e_wdt.c
2277 F: include/dt-bindings/clock/mstar-*
2278 F: include/dt-bindings/gpio/msc313-gpio.h
2279
2280 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2281 M: Michael Petchkovsky <mkpetch@internode.on.net>
2282 S: Maintained
2283
2284 ARM/NOMADIK/Ux500 ARCHITECTURES
2285 M: Linus Walleij <linus.walleij@linaro.org>
2286 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2287 S: Maintained
2288 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2289 F: Documentation/devicetree/bindings/arm/ste-*
2290 F: Documentation/devicetree/bindings/arm/ux500.yaml
2291 F: Documentation/devicetree/bindings/arm/ux500/
2292 F: Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2293 F: arch/arm/boot/dts/ste-*
2294 F: arch/arm/mach-nomadik/
2295 F: arch/arm/mach-ux500/
2296 F: drivers/clk/clk-nomadik.c
2297 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2298 F: drivers/dma/ste_dma40*
2299 F: drivers/hwspinlock/u8500_hsem.c
2300 F: drivers/i2c/busses/i2c-nomadik.c
2301 F: drivers/iio/adc/ab8500-gpadc.c
2302 F: drivers/mfd/ab8500*
2303 F: drivers/mfd/abx500*
2304 F: drivers/mfd/db8500*
2305 F: drivers/pinctrl/nomadik/
2306 F: drivers/rtc/rtc-ab8500.c
2307 F: drivers/rtc/rtc-pl031.c
2308 F: drivers/soc/ux500/
2309
2310 ARM/NUVOTON NPCM ARCHITECTURE
2311 M: Avi Fishman <avifishman70@gmail.com>
2312 M: Tomer Maimon <tmaimon77@gmail.com>
2313 M: Tali Perry <tali.perry1@gmail.com>
2314 R: Patrick Venture <venture@google.com>
2315 R: Nancy Yuen <yuenn@google.com>
2316 R: Benjamin Fair <benjaminfair@google.com>
2317 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2318 S: Supported
2319 F: Documentation/devicetree/bindings/*/*/*npcm*
2320 F: Documentation/devicetree/bindings/*/*npcm*
2321 F: arch/arm/boot/dts/nuvoton-npcm*
2322 F: arch/arm/mach-npcm/
2323 F: drivers/*/*npcm*
2324 F: drivers/*/*/*npcm*
2325 F: include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2326
2327 ARM/NUVOTON WPCM450 ARCHITECTURE
2328 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2329 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2330 S: Maintained
2331 F: Documentation/devicetree/bindings/*/*wpcm*
2332 F: arch/arm/boot/dts/nuvoton-wpcm450*
2333 F: arch/arm/mach-npcm/wpcm450.c
2334 F: drivers/*/*wpcm*
2335
2336 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2337 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
2338 S: Orphan
2339 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
2340 F: arch/arm/mach-s3c/gta02.h
2341 F: arch/arm/mach-s3c/mach-gta02.c
2342
2343 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2344 M: Alexander Clouter <alex@digriz.org.uk>
2345 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2346 S: Maintained
2347 W: http://www.digriz.org.uk/ts78xx/kernel
2348 F: arch/arm/mach-orion5x/ts78xx-*
2349
2350 ARM/OXNAS platform support
2351 M: Neil Armstrong <narmstrong@baylibre.com>
2352 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2353 L: linux-oxnas@groups.io (moderated for non-subscribers)
2354 S: Maintained
2355 F: arch/arm/boot/dts/ox8*.dts*
2356 F: arch/arm/mach-oxnas/
2357 F: drivers/power/reset/oxnas-restart.c
2358 N: oxnas
2359
2360 ARM/PALM TREO SUPPORT
2361 M: Tomas Cech <sleep_walker@suse.com>
2362 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2363 S: Maintained
2364 W: http://hackndev.com
2365 F: arch/arm/mach-pxa/palmtreo.*
2366
2367 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2368 M: Marek Vasut <marek.vasut@gmail.com>
2369 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2370 S: Maintained
2371 W: http://hackndev.com
2372 F: arch/arm/mach-pxa/include/mach/palmld.h
2373 F: arch/arm/mach-pxa/include/mach/palmtc.h
2374 F: arch/arm/mach-pxa/include/mach/palmtx.h
2375 F: arch/arm/mach-pxa/palmld.c
2376 F: arch/arm/mach-pxa/palmt5.*
2377 F: arch/arm/mach-pxa/palmtc.c
2378 F: arch/arm/mach-pxa/palmte2.*
2379 F: arch/arm/mach-pxa/palmtx.c
2380
2381 ARM/PALMZ72 SUPPORT
2382 M: Sergey Lapin <slapin@ossfans.org>
2383 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2384 S: Maintained
2385 W: http://hackndev.com
2386 F: arch/arm/mach-pxa/palmz72.*
2387
2388 ARM/PLEB SUPPORT
2389 M: Peter Chubb <pleb@gelato.unsw.edu.au>
2390 S: Maintained
2391 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2392
2393 ARM/PT DIGITAL BOARD PORT
2394 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2395 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2396 S: Maintained
2397 W: http://www.armlinux.org.uk/
2398
2399 ARM/QUALCOMM SUPPORT
2400 M: Andy Gross <agross@kernel.org>
2401 M: Bjorn Andersson <bjorn.andersson@linaro.org>
2402 L: linux-arm-msm@vger.kernel.org
2403 S: Maintained
2404 T: git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2405 F: Documentation/devicetree/bindings/*/qcom*
2406 F: Documentation/devicetree/bindings/soc/qcom/
2407 F: arch/arm/boot/dts/qcom-*.dts
2408 F: arch/arm/boot/dts/qcom-*.dtsi
2409 F: arch/arm/mach-qcom/
2410 F: arch/arm64/boot/dts/qcom/
2411 F: drivers/*/*/qcom*
2412 F: drivers/*/*/qcom/
2413 F: drivers/*/pm8???-*
2414 F: drivers/*/qcom*
2415 F: drivers/*/qcom/
2416 F: drivers/bluetooth/btqcomsmd.c
2417 F: drivers/clocksource/timer-qcom.c
2418 F: drivers/cpuidle/cpuidle-qcom-spm.c
2419 F: drivers/extcon/extcon-qcom*
2420 F: drivers/i2c/busses/i2c-qcom-geni.c
2421 F: drivers/i2c/busses/i2c-qup.c
2422 F: drivers/iommu/msm*
2423 F: drivers/mfd/ssbi.c
2424 F: drivers/mmc/host/mmci_qcom*
2425 F: drivers/mmc/host/sdhci-msm.c
2426 F: drivers/pci/controller/dwc/pcie-qcom.c
2427 F: drivers/phy/qualcomm/
2428 F: drivers/power/*/msm*
2429 F: drivers/reset/reset-qcom-*
2430 F: drivers/scsi/ufs/ufs-qcom*
2431 F: drivers/spi/spi-geni-qcom.c
2432 F: drivers/spi/spi-qcom-qspi.c
2433 F: drivers/spi/spi-qup.c
2434 F: drivers/tty/serial/msm_serial.c
2435 F: drivers/usb/dwc3/dwc3-qcom.c
2436 F: include/dt-bindings/*/qcom*
2437 F: include/linux/*/qcom*
2438 F: include/linux/soc/qcom/
2439
2440 ARM/RADISYS ENP2611 MACHINE SUPPORT
2441 M: Lennert Buytenhek <kernel@wantstofly.org>
2442 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2443 S: Maintained
2444
2445 ARM/RDA MICRO ARCHITECTURE
2446 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2447 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2448 L: linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2449 S: Maintained
2450 F: Documentation/devicetree/bindings/arm/rda.yaml
2451 F: Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2452 F: Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2453 F: Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2454 F: Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2455 F: arch/arm/boot/dts/rda8810pl-*
2456 F: drivers/clocksource/timer-rda.c
2457 F: drivers/gpio/gpio-rda.c
2458 F: drivers/irqchip/irq-rda-intc.c
2459 F: drivers/tty/serial/rda-uart.c
2460
2461 ARM/REALTEK ARCHITECTURE
2462 M: Andreas Färber <afaerber@suse.de>
2463 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2464 L: linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2465 S: Maintained
2466 F: Documentation/devicetree/bindings/arm/realtek.yaml
2467 F: arch/arm/boot/dts/rtd*
2468 F: arch/arm/mach-realtek/
2469 F: arch/arm64/boot/dts/realtek/
2470
2471 ARM/RENESAS ARM64 ARCHITECTURE
2472 M: Geert Uytterhoeven <geert+renesas@glider.be>
2473 M: Magnus Damm <magnus.damm@gmail.com>
2474 L: linux-renesas-soc@vger.kernel.org
2475 S: Supported
2476 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2477 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2478 F: Documentation/devicetree/bindings/arm/renesas.yaml
2479 F: arch/arm64/boot/dts/renesas/
2480 F: drivers/soc/renesas/
2481 F: include/linux/soc/renesas/
2482
2483 ARM/RISCPC ARCHITECTURE
2484 M: Russell King <linux@armlinux.org.uk>
2485 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2486 S: Maintained
2487 W: http://www.armlinux.org.uk/
2488 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
2489 F: arch/arm/include/asm/hardware/ioc.h
2490 F: arch/arm/include/asm/hardware/iomd.h
2491 F: arch/arm/include/asm/hardware/memc.h
2492 F: arch/arm/mach-rpc/
2493 F: drivers/net/ethernet/8390/etherh.c
2494 F: drivers/net/ethernet/i825xx/ether1*
2495 F: drivers/net/ethernet/seeq/ether3*
2496 F: drivers/scsi/arm/
2497
2498 ARM/Rockchip SoC support
2499 M: Heiko Stuebner <heiko@sntech.de>
2500 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2501 L: linux-rockchip@lists.infradead.org
2502 S: Maintained
2503 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2504 F: Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2505 F: Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2506 F: Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2507 F: arch/arm/boot/dts/rk3*
2508 F: arch/arm/boot/dts/rv1108*
2509 F: arch/arm/mach-rockchip/
2510 F: drivers/*/*/*rockchip*
2511 F: drivers/*/*rockchip*
2512 F: drivers/clk/rockchip/
2513 F: drivers/i2c/busses/i2c-rk3x.c
2514 F: sound/soc/rockchip/
2515 N: rockchip
2516
2517 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2518 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2519 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2520 L: linux-samsung-soc@vger.kernel.org
2521 S: Maintained
2522 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
2523 F: Documentation/arm/samsung/
2524 F: Documentation/devicetree/bindings/arm/samsung/
2525 F: Documentation/devicetree/bindings/power/pd-samsung.yaml
2526 F: arch/arm/boot/dts/exynos*
2527 F: arch/arm/boot/dts/s3c*
2528 F: arch/arm/boot/dts/s5p*
2529 F: arch/arm/mach-exynos*/
2530 F: arch/arm/mach-s3c/
2531 F: arch/arm/mach-s5p*/
2532 F: arch/arm64/boot/dts/exynos/
2533 F: drivers/*/*/*s3c24*
2534 F: drivers/*/*s3c24*
2535 F: drivers/*/*s3c64xx*
2536 F: drivers/*/*s5pv210*
2537 F: drivers/clocksource/samsung_pwm_timer.c
2538 F: drivers/memory/samsung/
2539 F: drivers/pwm/pwm-samsung.c
2540 F: drivers/soc/samsung/
2541 F: drivers/tty/serial/samsung*
2542 F: include/clocksource/samsung_pwm.h
2543 F: include/linux/platform_data/*s3c*
2544 F: include/linux/serial_s3c.h
2545 F: include/linux/soc/samsung/
2546 N: exynos
2547 N: s3c2410
2548 N: s3c64xx
2549 N: s5pv210
2550
2551 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2552 M: Andrzej Hajda <a.hajda@samsung.com>
2553 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2554 L: linux-media@vger.kernel.org
2555 S: Maintained
2556 F: drivers/media/platform/s5p-g2d/
2557
2558 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2559 M: Marek Szyprowski <m.szyprowski@samsung.com>
2560 L: linux-samsung-soc@vger.kernel.org
2561 L: linux-media@vger.kernel.org
2562 S: Maintained
2563 F: Documentation/devicetree/bindings/media/s5p-cec.txt
2564 F: drivers/media/cec/platform/s5p/
2565
2566 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2567 M: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2568 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
2569 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
2570 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2571 L: linux-media@vger.kernel.org
2572 S: Maintained
2573 F: drivers/media/platform/s5p-jpeg/
2574
2575 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2576 M: Andrzej Hajda <a.hajda@samsung.com>
2577 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2578 L: linux-media@vger.kernel.org
2579 S: Maintained
2580 F: drivers/media/platform/s5p-mfc/
2581
2582 ARM/SHMOBILE ARM ARCHITECTURE
2583 M: Geert Uytterhoeven <geert+renesas@glider.be>
2584 M: Magnus Damm <magnus.damm@gmail.com>
2585 L: linux-renesas-soc@vger.kernel.org
2586 S: Supported
2587 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2588 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2589 F: Documentation/devicetree/bindings/arm/renesas.yaml
2590 F: arch/arm/boot/dts/emev2*
2591 F: arch/arm/boot/dts/gr-peach*
2592 F: arch/arm/boot/dts/iwg20d-q7*
2593 F: arch/arm/boot/dts/r7s*
2594 F: arch/arm/boot/dts/r8a*
2595 F: arch/arm/boot/dts/r9a*
2596 F: arch/arm/boot/dts/sh*
2597 F: arch/arm/configs/shmobile_defconfig
2598 F: arch/arm/include/debug/renesas-scif.S
2599 F: arch/arm/mach-shmobile/
2600 F: drivers/soc/renesas/
2601 F: include/linux/soc/renesas/
2602
2603 ARM/SOCFPGA ARCHITECTURE
2604 M: Dinh Nguyen <dinguyen@kernel.org>
2605 S: Maintained
2606 W: http://www.rocketboards.org
2607 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2608 F: arch/arm/boot/dts/socfpga*
2609 F: arch/arm/configs/socfpga_defconfig
2610 F: arch/arm/mach-socfpga/
2611 F: arch/arm64/boot/dts/altera/
2612 F: arch/arm64/boot/dts/intel/
2613
2614 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2615 M: Dinh Nguyen <dinguyen@kernel.org>
2616 S: Maintained
2617 F: drivers/clk/socfpga/
2618
2619 ARM/SOCFPGA EDAC SUPPORT
2620 M: Dinh Nguyen <dinguyen@kernel.org>
2621 S: Maintained
2622 F: drivers/edac/altera_edac.[ch]
2623
2624 ARM/SPREADTRUM SoC SUPPORT
2625 M: Orson Zhai <orsonzhai@gmail.com>
2626 M: Baolin Wang <baolin.wang7@gmail.com>
2627 M: Chunyan Zhang <zhang.lyra@gmail.com>
2628 S: Maintained
2629 F: arch/arm64/boot/dts/sprd
2630 N: sprd
2631 N: sc27xx
2632 N: sc2731
2633
2634 ARM/STI ARCHITECTURE
2635 M: Patrice Chotard <patrice.chotard@foss.st.com>
2636 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2637 S: Maintained
2638 W: http://www.stlinux.com
2639 F: Documentation/devicetree/bindings/i2c/i2c-st.txt
2640 F: arch/arm/boot/dts/sti*
2641 F: arch/arm/mach-sti/
2642 F: drivers/ata/ahci_st.c
2643 F: drivers/char/hw_random/st-rng.c
2644 F: drivers/clocksource/arm_global_timer.c
2645 F: drivers/clocksource/clksrc_st_lpc.c
2646 F: drivers/cpufreq/sti-cpufreq.c
2647 F: drivers/dma/st_fdma*
2648 F: drivers/i2c/busses/i2c-st.c
2649 F: drivers/media/platform/sti/c8sectpfe/
2650 F: drivers/media/rc/st_rc.c
2651 F: drivers/mmc/host/sdhci-st.c
2652 F: drivers/phy/st/phy-miphy28lp.c
2653 F: drivers/phy/st/phy-stih407-usb.c
2654 F: drivers/pinctrl/pinctrl-st.c
2655 F: drivers/remoteproc/st_remoteproc.c
2656 F: drivers/remoteproc/st_slim_rproc.c
2657 F: drivers/reset/sti/
2658 F: drivers/rtc/rtc-st-lpc.c
2659 F: drivers/tty/serial/st-asc.c
2660 F: drivers/usb/dwc3/dwc3-st.c
2661 F: drivers/usb/host/ehci-st.c
2662 F: drivers/usb/host/ohci-st.c
2663 F: drivers/watchdog/st_lpc_wdt.c
2664 F: include/linux/remoteproc/st_slim_rproc.h
2665
2666 ARM/STM32 ARCHITECTURE
2667 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
2668 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
2669 L: linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2670 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2671 S: Maintained
2672 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2673 F: arch/arm/boot/dts/stm32*
2674 F: arch/arm/mach-stm32/
2675 F: drivers/clocksource/armv7m_systick.c
2676 N: stm32
2677 N: stm
2678
2679 ARM/Synaptics SoC support
2680 M: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2681 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2682 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2683 S: Maintained
2684 F: arch/arm/boot/dts/berlin*
2685 F: arch/arm/mach-berlin/
2686 F: arch/arm64/boot/dts/synaptics/
2687
2688 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2689 M: Lennert Buytenhek <kernel@wantstofly.org>
2690 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2691 S: Maintained
2692
2693 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2694 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
2695 L: linux-tegra@vger.kernel.org
2696 L: linux-media@vger.kernel.org
2697 S: Maintained
2698 F: Documentation/devicetree/bindings/media/tegra-cec.txt
2699 F: drivers/media/cec/platform/tegra/
2700
2701 ARM/TETON BGA MACHINE SUPPORT
2702 M: "Mark F. Brown" <mark.brown314@gmail.com>
2703 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2704 S: Maintained
2705
2706 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2707 M: Santosh Shilimkar <ssantosh@kernel.org>
2708 L: linux-kernel@vger.kernel.org
2709 S: Maintained
2710 F: drivers/memory/*emif*
2711
2712 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2713 M: Santosh Shilimkar <ssantosh@kernel.org>
2714 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2715 S: Maintained
2716 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2717 F: arch/arm/boot/dts/keystone-*
2718 F: arch/arm/mach-keystone/
2719
2720 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2721 M: Santosh Shilimkar <ssantosh@kernel.org>
2722 L: linux-kernel@vger.kernel.org
2723 S: Maintained
2724 F: drivers/clk/keystone/
2725
2726 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2727 M: Santosh Shilimkar <ssantosh@kernel.org>
2728 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2729 L: linux-kernel@vger.kernel.org
2730 S: Maintained
2731 F: drivers/clocksource/timer-keystone.c
2732
2733 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2734 M: Santosh Shilimkar <ssantosh@kernel.org>
2735 L: linux-kernel@vger.kernel.org
2736 S: Maintained
2737 F: drivers/power/reset/keystone-reset.c
2738
2739 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2740 M: Nishanth Menon <nm@ti.com>
2741 M: Vignesh Raghavendra <vigneshr@ti.com>
2742 M: Tero Kristo <kristo@kernel.org>
2743 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2744 S: Supported
2745 F: Documentation/devicetree/bindings/arm/ti/k3.yaml
2746 F: arch/arm64/boot/dts/ti/Makefile
2747 F: arch/arm64/boot/dts/ti/k3-*
2748 F: include/dt-bindings/pinctrl/k3.h
2749
2750 ARM/THECUS N2100 MACHINE SUPPORT
2751 M: Lennert Buytenhek <kernel@wantstofly.org>
2752 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2753 S: Maintained
2754
2755 ARM/TOSA MACHINE SUPPORT
2756 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2757 M: Dirk Opfer <dirk@opfer-online.de>
2758 S: Maintained
2759
2760 ARM/TOSHIBA VISCONTI ARCHITECTURE
2761 M: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2762 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2763 S: Supported
2764 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2765 F: Documentation/devicetree/bindings/arm/toshiba.yaml
2766 F: Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2767 F: Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2768 F: Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2769 F: Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2770 F: Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2771 F: arch/arm64/boot/dts/toshiba/
2772 F: drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2773 F: drivers/gpio/gpio-visconti.c
2774 F: drivers/pci/controller/dwc/pcie-visconti.c
2775 F: drivers/pinctrl/visconti/
2776 F: drivers/watchdog/visconti_wdt.c
2777 N: visconti
2778
2779 ARM/UNIPHIER ARCHITECTURE
2780 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2781 M: Masami Hiramatsu <mhiramat@kernel.org>
2782 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2783 S: Maintained
2784 F: Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2785 F: Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2786 F: Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2787 F: arch/arm/boot/dts/uniphier*
2788 F: arch/arm/include/asm/hardware/cache-uniphier.h
2789 F: arch/arm/mach-uniphier/
2790 F: arch/arm/mm/cache-uniphier.c
2791 F: arch/arm64/boot/dts/socionext/uniphier*
2792 F: drivers/bus/uniphier-system-bus.c
2793 F: drivers/clk/uniphier/
2794 F: drivers/dma/uniphier-mdmac.c
2795 F: drivers/gpio/gpio-uniphier.c
2796 F: drivers/i2c/busses/i2c-uniphier*
2797 F: drivers/irqchip/irq-uniphier-aidet.c
2798 F: drivers/mmc/host/uniphier-sd.c
2799 F: drivers/pinctrl/uniphier/
2800 F: drivers/reset/reset-uniphier.c
2801 F: drivers/tty/serial/8250/8250_uniphier.c
2802 N: uniphier
2803
2804 ARM/VERSATILE EXPRESS PLATFORM
2805 M: Liviu Dudau <liviu.dudau@arm.com>
2806 M: Sudeep Holla <sudeep.holla@arm.com>
2807 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2808 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2809 S: Maintained
2810 F: */*/*/vexpress*
2811 F: */*/vexpress*
2812 F: arch/arm/boot/dts/vexpress*
2813 F: arch/arm/mach-vexpress/
2814 F: arch/arm64/boot/dts/arm/
2815 F: drivers/clk/versatile/clk-vexpress-osc.c
2816 F: drivers/clocksource/timer-versatile.c
2817 N: mps2
2818
2819 ARM/VFP SUPPORT
2820 M: Russell King <linux@armlinux.org.uk>
2821 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2822 S: Maintained
2823 W: http://www.armlinux.org.uk/
2824 F: arch/arm/vfp/
2825
2826 ARM/VOIPAC PXA270 SUPPORT
2827 M: Marek Vasut <marek.vasut@gmail.com>
2828 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2829 S: Maintained
2830 F: arch/arm/mach-pxa/include/mach/vpac270.h
2831 F: arch/arm/mach-pxa/vpac270.c
2832
2833 ARM/VT8500 ARM ARCHITECTURE
2834 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2835 S: Orphan
2836 F: Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2837 F: arch/arm/mach-vt8500/
2838 F: drivers/clocksource/timer-vt8500.c
2839 F: drivers/i2c/busses/i2c-wmt.c
2840 F: drivers/mmc/host/wmt-sdmmc.c
2841 F: drivers/pwm/pwm-vt8500.c
2842 F: drivers/rtc/rtc-vt8500.c
2843 F: drivers/tty/serial/vt8500_serial.c
2844 F: drivers/usb/host/ehci-platform.c
2845 F: drivers/usb/host/uhci-platform.c
2846 F: drivers/video/fbdev/vt8500lcdfb.*
2847 F: drivers/video/fbdev/wm8505fb*
2848 F: drivers/video/fbdev/wmt_ge_rops.*
2849
2850 ARM/ZIPIT Z2 SUPPORT
2851 M: Marek Vasut <marek.vasut@gmail.com>
2852 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2853 S: Maintained
2854 F: arch/arm/mach-pxa/include/mach/z2.h
2855 F: arch/arm/mach-pxa/z2.c
2856
2857 ARM/ZYNQ ARCHITECTURE
2858 M: Michal Simek <michal.simek@xilinx.com>
2859 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2860 S: Supported
2861 W: http://wiki.xilinx.com
2862 T: git https://github.com/Xilinx/linux-xlnx.git
2863 F: Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2864 F: Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2865 F: Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2866 F: arch/arm/mach-zynq/
2867 F: drivers/clocksource/timer-cadence-ttc.c
2868 F: drivers/cpuidle/cpuidle-zynq.c
2869 F: drivers/edac/synopsys_edac.c
2870 F: drivers/i2c/busses/i2c-cadence.c
2871 F: drivers/i2c/busses/i2c-xiic.c
2872 F: drivers/mmc/host/sdhci-of-arasan.c
2873 N: zynq
2874 N: xilinx
2875
2876 ARM64 PORT (AARCH64 ARCHITECTURE)
2877 M: Catalin Marinas <catalin.marinas@arm.com>
2878 M: Will Deacon <will@kernel.org>
2879 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2880 S: Maintained
2881 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2882 F: Documentation/arm64/
2883 F: arch/arm64/
2884 F: tools/testing/selftests/arm64/
2885 X: arch/arm64/boot/dts/
2886
2887 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2888 M: George McCollister <george.mccollister@gmail.com>
2889 L: netdev@vger.kernel.org
2890 S: Maintained
2891 F: Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2892 F: drivers/net/dsa/xrs700x/*
2893 F: net/dsa/tag_xrs700x.c
2894
2895 AS3645A LED FLASH CONTROLLER DRIVER
2896 M: Sakari Ailus <sakari.ailus@iki.fi>
2897 L: linux-leds@vger.kernel.org
2898 S: Maintained
2899 F: drivers/leds/flash/leds-as3645a.c
2900
2901 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2902 M: Tianshu Qiu <tian.shu.qiu@intel.com>
2903 L: linux-media@vger.kernel.org
2904 S: Maintained
2905 T: git git://linuxtv.org/media_tree.git
2906 F: Documentation/devicetree/bindings/media/i2c/ak7375.txt
2907 F: drivers/media/i2c/ak7375.c
2908
2909 ASAHI KASEI AK8974 DRIVER
2910 M: Linus Walleij <linus.walleij@linaro.org>
2911 L: linux-iio@vger.kernel.org
2912 S: Supported
2913 W: http://www.akm.com/
2914 F: drivers/iio/magnetometer/ak8974.c
2915
2916 ASC7621 HARDWARE MONITOR DRIVER
2917 M: George Joseph <george.joseph@fairview5.com>
2918 L: linux-hwmon@vger.kernel.org
2919 S: Maintained
2920 F: Documentation/hwmon/asc7621.rst
2921 F: drivers/hwmon/asc7621.c
2922
2923 ASPEED PINCTRL DRIVERS
2924 M: Andrew Jeffery <andrew@aj.id.au>
2925 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2926 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2927 L: linux-gpio@vger.kernel.org
2928 S: Maintained
2929 F: Documentation/devicetree/bindings/pinctrl/aspeed,*
2930 F: drivers/pinctrl/aspeed/
2931
2932 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2933 M: Eddie James <eajames@linux.ibm.com>
2934 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2935 S: Maintained
2936 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2937 F: drivers/irqchip/irq-aspeed-scu-ic.c
2938 F: include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2939
2940 ASPEED SD/MMC DRIVER
2941 M: Andrew Jeffery <andrew@aj.id.au>
2942 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2943 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2944 L: linux-mmc@vger.kernel.org
2945 S: Maintained
2946 F: Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2947 F: drivers/mmc/host/sdhci-of-aspeed*
2948
2949 ASPEED VIDEO ENGINE DRIVER
2950 M: Eddie James <eajames@linux.ibm.com>
2951 L: linux-media@vger.kernel.org
2952 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2953 S: Maintained
2954 F: Documentation/devicetree/bindings/media/aspeed-video.txt
2955 F: drivers/media/platform/aspeed-video.c
2956
2957 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2958 M: Corentin Chary <corentin.chary@gmail.com>
2959 L: acpi4asus-user@lists.sourceforge.net
2960 L: platform-driver-x86@vger.kernel.org
2961 S: Maintained
2962 W: http://acpi4asus.sf.net
2963 F: drivers/platform/x86/asus*.c
2964 F: drivers/platform/x86/eeepc*.c
2965
2966 ASUS WIRELESS RADIO CONTROL DRIVER
2967 M: João Paulo Rechi Vita <jprvita@gmail.com>
2968 L: platform-driver-x86@vger.kernel.org
2969 S: Maintained
2970 F: drivers/platform/x86/asus-wireless.c
2971
2972 ASYMMETRIC KEYS
2973 M: David Howells <dhowells@redhat.com>
2974 L: keyrings@vger.kernel.org
2975 S: Maintained
2976 F: Documentation/crypto/asymmetric-keys.rst
2977 F: crypto/asymmetric_keys/
2978 F: include/crypto/pkcs7.h
2979 F: include/crypto/public_key.h
2980 F: include/linux/verification.h
2981
2982 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2983 R: Dan Williams <dan.j.williams@intel.com>
2984 S: Odd fixes
2985 W: http://sourceforge.net/projects/xscaleiop
2986 F: Documentation/crypto/async-tx-api.rst
2987 F: crypto/async_tx/
2988 F: include/linux/async_tx.h
2989
2990 AT24 EEPROM DRIVER
2991 M: Bartosz Golaszewski <brgl@bgdev.pl>
2992 L: linux-i2c@vger.kernel.org
2993 S: Maintained
2994 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2995 F: Documentation/devicetree/bindings/eeprom/at24.yaml
2996 F: drivers/misc/eeprom/at24.c
2997
2998 ATA OVER ETHERNET (AOE) DRIVER
2999 M: "Justin Sanders" <justin@coraid.com>
3000 S: Supported
3001 W: http://www.openaoe.org/
3002 F: Documentation/admin-guide/aoe/
3003 F: drivers/block/aoe/
3004
3005 ATC260X PMIC MFD DRIVER
3006 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3007 M: Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3008 L: linux-actions@lists.infradead.org
3009 S: Maintained
3010 F: Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3011 F: drivers/input/misc/atc260x-onkey.c
3012 F: drivers/mfd/atc260*
3013 F: drivers/power/reset/atc260x-poweroff.c
3014 F: drivers/regulator/atc260x-regulator.c
3015 F: include/linux/mfd/atc260x/*
3016
3017 ATHEROS 71XX/9XXX GPIO DRIVER
3018 M: Alban Bedel <albeu@free.fr>
3019 S: Maintained
3020 W: https://github.com/AlbanBedel/linux
3021 T: git git://github.com/AlbanBedel/linux
3022 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3023 F: drivers/gpio/gpio-ath79.c
3024
3025 ATHEROS 71XX/9XXX USB PHY DRIVER
3026 M: Alban Bedel <albeu@free.fr>
3027 S: Maintained
3028 W: https://github.com/AlbanBedel/linux
3029 T: git git://github.com/AlbanBedel/linux
3030 F: Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3031 F: drivers/phy/qualcomm/phy-ath79-usb.c
3032
3033 ATHEROS ATH GENERIC UTILITIES
3034 M: Kalle Valo <kvalo@codeaurora.org>
3035 L: linux-wireless@vger.kernel.org
3036 S: Supported
3037 F: drivers/net/wireless/ath/*
3038
3039 ATHEROS ATH5K WIRELESS DRIVER
3040 M: Jiri Slaby <jirislaby@kernel.org>
3041 M: Nick Kossifidis <mickflemm@gmail.com>
3042 M: Luis Chamberlain <mcgrof@kernel.org>
3043 L: linux-wireless@vger.kernel.org
3044 S: Maintained
3045 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3046 F: drivers/net/wireless/ath/ath5k/
3047
3048 ATHEROS ATH6KL WIRELESS DRIVER
3049 M: Kalle Valo <kvalo@codeaurora.org>
3050 L: linux-wireless@vger.kernel.org
3051 S: Supported
3052 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3053 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3054 F: drivers/net/wireless/ath/ath6kl/
3055
3056 ATI_REMOTE2 DRIVER
3057 M: Ville Syrjala <syrjala@sci.fi>
3058 S: Maintained
3059 F: drivers/input/misc/ati_remote2.c
3060
3061 ATK0110 HWMON DRIVER
3062 M: Luca Tettamanti <kronos.it@gmail.com>
3063 L: linux-hwmon@vger.kernel.org
3064 S: Maintained
3065 F: drivers/hwmon/asus_atk0110.c
3066
3067 ATLX ETHERNET DRIVERS
3068 M: Chris Snook <chris.snook@gmail.com>
3069 L: netdev@vger.kernel.org
3070 S: Maintained
3071 W: http://sourceforge.net/projects/atl1
3072 W: http://atl1.sourceforge.net
3073 F: drivers/net/ethernet/atheros/
3074
3075 ATM
3076 M: Chas Williams <3chas3@gmail.com>
3077 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3078 L: netdev@vger.kernel.org
3079 S: Maintained
3080 W: http://linux-atm.sourceforge.net
3081 F: drivers/atm/
3082 F: include/linux/atm*
3083 F: include/uapi/linux/atm*
3084
3085 ATMEL MACB ETHERNET DRIVER
3086 M: Nicolas Ferre <nicolas.ferre@microchip.com>
3087 M: Claudiu Beznea <claudiu.beznea@microchip.com>
3088 S: Supported
3089 F: drivers/net/ethernet/cadence/
3090
3091 ATMEL MAXTOUCH DRIVER
3092 M: Nick Dyer <nick@shmanahar.org>
3093 S: Maintained
3094 T: git git://github.com/ndyer/linux.git
3095 F: Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3096 F: drivers/input/touchscreen/atmel_mxt_ts.c
3097
3098 ATMEL WIRELESS DRIVER
3099 M: Simon Kelley <simon@thekelleys.org.uk>
3100 L: linux-wireless@vger.kernel.org
3101 S: Maintained
3102 W: http://www.thekelleys.org.uk/atmel
3103 W: http://atmelwlandriver.sourceforge.net/
3104 F: drivers/net/wireless/atmel/atmel*
3105
3106 ATOMIC INFRASTRUCTURE
3107 M: Will Deacon <will@kernel.org>
3108 M: Peter Zijlstra <peterz@infradead.org>
3109 R: Boqun Feng <boqun.feng@gmail.com>
3110 L: linux-kernel@vger.kernel.org
3111 S: Maintained
3112 F: arch/*/include/asm/atomic*.h
3113 F: include/*/atomic*.h
3114 F: include/linux/refcount.h
3115 F: Documentation/atomic_*.txt
3116 F: scripts/atomic/
3117
3118 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3119 M: Bradley Grove <linuxdrivers@attotech.com>
3120 L: linux-scsi@vger.kernel.org
3121 S: Supported
3122 W: http://www.attotech.com
3123 F: drivers/scsi/esas2r
3124
3125 ATUSB IEEE 802.15.4 RADIO DRIVER
3126 M: Stefan Schmidt <stefan@datenfreihafen.org>
3127 L: linux-wpan@vger.kernel.org
3128 S: Maintained
3129 F: drivers/net/ieee802154/at86rf230.h
3130 F: drivers/net/ieee802154/atusb.c
3131 F: drivers/net/ieee802154/atusb.h
3132
3133 AUDIT SUBSYSTEM
3134 M: Paul Moore <paul@paul-moore.com>
3135 M: Eric Paris <eparis@redhat.com>
3136 L: linux-audit@redhat.com (moderated for non-subscribers)
3137 S: Supported
3138 W: https://github.com/linux-audit
3139 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3140 F: include/asm-generic/audit_*.h
3141 F: include/linux/audit.h
3142 F: include/uapi/linux/audit.h
3143 F: kernel/audit*
3144 F: lib/*audit.c
3145
3146 AUFS (advanced multi layered unification filesystem) FILESYSTEM
3147 M: "J. R. Okajima" <hooanon05g@gmail.com>
3148 L: aufs-users@lists.sourceforge.net (members only)
3149 L: linux-unionfs@vger.kernel.org
3150 S: Supported
3151 W: http://aufs.sourceforge.net
3152 T: git://github.com/sfjro/aufs4-linux.git
3153 F: Documentation/ABI/testing/debugfs-aufs
3154 F: Documentation/ABI/testing/sysfs-aufs
3155 F: Documentation/filesystems/aufs/
3156 F: fs/aufs/
3157 F: include/uapi/linux/aufs_type.h
3158
3159 AUXILIARY DISPLAY DRIVERS
3160 M: Miguel Ojeda <ojeda@kernel.org>
3161 S: Maintained
3162 F: drivers/auxdisplay/
3163 F: include/linux/cfag12864b.h
3164
3165 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3166 M: Andreas Klinger <ak@it-klinger.de>
3167 L: linux-iio@vger.kernel.org
3168 S: Maintained
3169 F: Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3170 F: drivers/iio/adc/hx711.c
3171
3172 AX.25 NETWORK LAYER
3173 M: Ralf Baechle <ralf@linux-mips.org>
3174 L: linux-hams@vger.kernel.org
3175 S: Maintained
3176 W: http://www.linux-ax25.org/
3177 F: include/net/ax25.h
3178 F: include/uapi/linux/ax25.h
3179 F: net/ax25/
3180
3181 AXENTIA ARM DEVICES
3182 M: Peter Rosin <peda@axentia.se>
3183 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3184 S: Maintained
3185 F: arch/arm/boot/dts/at91-linea.dtsi
3186 F: arch/arm/boot/dts/at91-natte.dtsi
3187 F: arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3188 F: arch/arm/boot/dts/at91-tse850-3.dts
3189
3190 AXENTIA ASOC DRIVERS
3191 M: Peter Rosin <peda@axentia.se>
3192 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3193 S: Maintained
3194 F: Documentation/devicetree/bindings/sound/axentia,*
3195 F: sound/soc/atmel/tse850-pcm5142.c
3196
3197 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3198 M: Nuno Sá <nuno.sa@analog.com>
3199 L: linux-hwmon@vger.kernel.org
3200 S: Supported
3201 W: http://ez.analog.com/community/linux-device-drivers
3202 F: Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3203 F: drivers/hwmon/axi-fan-control.c
3204
3205 AXXIA I2C CONTROLLER
3206 M: Krzysztof Adamski <krzysztof.adamski@nokia.com>
3207 L: linux-i2c@vger.kernel.org
3208 S: Maintained
3209 F: Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3210 F: drivers/i2c/busses/i2c-axxia.c
3211
3212 AZ6007 DVB DRIVER
3213 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3214 L: linux-media@vger.kernel.org
3215 S: Maintained
3216 W: https://linuxtv.org
3217 T: git git://linuxtv.org/media_tree.git
3218 F: drivers/media/usb/dvb-usb-v2/az6007.c
3219
3220 AZTECH FM RADIO RECEIVER DRIVER
3221 M: Hans Verkuil <hverkuil@xs4all.nl>
3222 L: linux-media@vger.kernel.org
3223 S: Maintained
3224 W: https://linuxtv.org
3225 T: git git://linuxtv.org/media_tree.git
3226 F: drivers/media/radio/radio-aztech*
3227
3228 B43 WIRELESS DRIVER
3229 L: linux-wireless@vger.kernel.org
3230 L: b43-dev@lists.infradead.org
3231 S: Odd Fixes
3232 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3233 F: drivers/net/wireless/broadcom/b43/
3234
3235 B43LEGACY WIRELESS DRIVER
3236 M: Larry Finger <Larry.Finger@lwfinger.net>
3237 L: linux-wireless@vger.kernel.org
3238 L: b43-dev@lists.infradead.org
3239 S: Maintained
3240 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3241 F: drivers/net/wireless/broadcom/b43legacy/
3242
3243 BACKLIGHT CLASS/SUBSYSTEM
3244 M: Lee Jones <lee.jones@linaro.org>
3245 M: Daniel Thompson <daniel.thompson@linaro.org>
3246 M: Jingoo Han <jingoohan1@gmail.com>
3247 L: dri-devel@lists.freedesktop.org
3248 S: Maintained
3249 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3250 F: Documentation/ABI/stable/sysfs-class-backlight
3251 F: Documentation/ABI/testing/sysfs-class-backlight
3252 F: Documentation/devicetree/bindings/leds/backlight
3253 F: drivers/video/backlight/
3254 F: include/linux/backlight.h
3255 F: include/linux/pwm_backlight.h
3256
3257 BATMAN ADVANCED
3258 M: Marek Lindner <mareklindner@neomailbox.ch>
3259 M: Simon Wunderlich <sw@simonwunderlich.de>
3260 M: Antonio Quartulli <a@unstable.cc>
3261 M: Sven Eckelmann <sven@narfation.org>
3262 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3263 S: Maintained
3264 W: https://www.open-mesh.org/
3265 Q: https://patchwork.open-mesh.org/project/batman/list/
3266 B: https://www.open-mesh.org/projects/batman-adv/issues
3267 C: ircs://irc.hackint.org/batadv
3268 T: git https://git.open-mesh.org/linux-merge.git
3269 F: Documentation/networking/batman-adv.rst
3270 F: include/uapi/linux/batadv_packet.h
3271 F: include/uapi/linux/batman_adv.h
3272 F: net/batman-adv/
3273
3274 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3275 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
3276 L: linux-hams@vger.kernel.org
3277 S: Maintained
3278 W: http://www.baycom.org/~tom/ham/ham.html
3279 F: drivers/net/hamradio/baycom*
3280
3281 BCACHE (BLOCK LAYER CACHE)
3282 M: Coly Li <colyli@suse.de>
3283 M: Kent Overstreet <kent.overstreet@gmail.com>
3284 L: linux-bcache@vger.kernel.org
3285 S: Maintained
3286 W: http://bcache.evilpiepirate.org
3287 C: irc://irc.oftc.net/bcache
3288 F: drivers/md/bcache/
3289
3290 BDISP ST MEDIA DRIVER
3291 M: Fabien Dessenne <fabien.dessenne@foss.st.com>
3292 L: linux-media@vger.kernel.org
3293 S: Supported
3294 W: https://linuxtv.org
3295 T: git git://linuxtv.org/media_tree.git
3296 F: drivers/media/platform/sti/bdisp
3297
3298 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3299 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
3300 L: netdev@vger.kernel.org
3301 S: Maintained
3302 F: drivers/net/ethernet/ec_bhf.c
3303
3304 BEFS FILE SYSTEM
3305 M: Luis de Bethencourt <luisbg@kernel.org>
3306 M: Salah Triki <salah.triki@gmail.com>
3307 S: Maintained
3308 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3309 F: Documentation/filesystems/befs.rst
3310 F: fs/befs/
3311
3312 BFQ I/O SCHEDULER
3313 M: Paolo Valente <paolo.valente@linaro.org>
3314 M: Jens Axboe <axboe@kernel.dk>
3315 L: linux-block@vger.kernel.org
3316 S: Maintained
3317 F: Documentation/block/bfq-iosched.rst
3318 F: block/bfq-*
3319
3320 BFS FILE SYSTEM
3321 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3322 S: Maintained
3323 F: Documentation/filesystems/bfs.rst
3324 F: fs/bfs/
3325 F: include/uapi/linux/bfs_fs.h
3326
3327 BITMAP API
3328 M: Yury Norov <yury.norov@gmail.com>
3329 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3330 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
3331 S: Maintained
3332 F: include/asm-generic/bitops/find.h
3333 F: include/linux/bitmap.h
3334 F: lib/bitmap.c
3335 F: lib/find_bit.c
3336 F: lib/find_bit_benchmark.c
3337 F: lib/test_bitmap.c
3338 F: tools/include/asm-generic/bitops/find.h
3339 F: tools/include/linux/bitmap.h
3340 F: tools/lib/bitmap.c
3341 F: tools/lib/find_bit.c
3342
3343 BLINKM RGB LED DRIVER
3344 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
3345 S: Maintained
3346 F: drivers/leds/leds-blinkm.c
3347
3348 BLOCK LAYER
3349 M: Jens Axboe <axboe@kernel.dk>
3350 L: linux-block@vger.kernel.org
3351 S: Maintained
3352 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3353 F: block/
3354 F: drivers/block/
3355 F: include/linux/blk*
3356 F: kernel/trace/blktrace.c
3357 F: lib/sbitmap.c
3358
3359 BLOCK2MTD DRIVER
3360 M: Joern Engel <joern@lazybastard.org>
3361 L: linux-mtd@lists.infradead.org
3362 S: Maintained
3363 F: drivers/mtd/devices/block2mtd.c
3364
3365 BLUETOOTH DRIVERS
3366 M: Marcel Holtmann <marcel@holtmann.org>
3367 M: Johan Hedberg <johan.hedberg@gmail.com>
3368 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3369 L: linux-bluetooth@vger.kernel.org
3370 S: Supported
3371 W: http://www.bluez.org/
3372 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3373 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3374 F: drivers/bluetooth/
3375
3376 BLUETOOTH SUBSYSTEM
3377 M: Marcel Holtmann <marcel@holtmann.org>
3378 M: Johan Hedberg <johan.hedberg@gmail.com>
3379 M: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3380 L: linux-bluetooth@vger.kernel.org
3381 S: Supported
3382 W: http://www.bluez.org/
3383 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3384 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3385 F: include/net/bluetooth/
3386 F: net/bluetooth/
3387
3388 BONDING DRIVER
3389 M: Jay Vosburgh <j.vosburgh@gmail.com>
3390 M: Veaceslav Falico <vfalico@gmail.com>
3391 M: Andy Gospodarek <andy@greyhouse.net>
3392 L: netdev@vger.kernel.org
3393 S: Supported
3394 W: http://sourceforge.net/projects/bonding/
3395 F: drivers/net/bonding/
3396 F: include/net/bonding.h
3397 F: include/uapi/linux/if_bonding.h
3398
3399 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3400 M: Dan Robertson <dan@dlrobertson.com>
3401 L: linux-iio@vger.kernel.org
3402 S: Maintained
3403 F: Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3404 F: drivers/iio/accel/bma400*
3405
3406 BPF (Safe dynamic programs and tools)
3407 M: Alexei Starovoitov <ast@kernel.org>
3408 M: Daniel Borkmann <daniel@iogearbox.net>
3409 M: Andrii Nakryiko <andrii@kernel.org>
3410 R: Martin KaFai Lau <kafai@fb.com>
3411 R: Song Liu <songliubraving@fb.com>
3412 R: Yonghong Song <yhs@fb.com>
3413 R: John Fastabend <john.fastabend@gmail.com>
3414 R: KP Singh <kpsingh@kernel.org>
3415 L: netdev@vger.kernel.org
3416 L: bpf@vger.kernel.org
3417 S: Supported
3418 W: https://bpf.io/
3419 Q: https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3420 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3421 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3422 F: Documentation/bpf/
3423 F: Documentation/networking/filter.rst
3424 F: Documentation/userspace-api/ebpf/
3425 F: arch/*/net/*
3426 F: include/linux/bpf*
3427 F: include/linux/btf*
3428 F: include/linux/filter.h
3429 F: include/trace/events/xdp.h
3430 F: include/uapi/linux/bpf*
3431 F: include/uapi/linux/btf*
3432 F: include/uapi/linux/filter.h
3433 F: kernel/bpf/
3434 F: kernel/trace/bpf_trace.c
3435 F: lib/test_bpf.c
3436 F: net/bpf/
3437 F: net/core/filter.c
3438 F: net/sched/act_bpf.c
3439 F: net/sched/cls_bpf.c
3440 F: samples/bpf/
3441 F: scripts/bpf_doc.py
3442 F: scripts/pahole-flags.sh
3443 F: scripts/pahole-version.sh
3444 F: tools/bpf/
3445 F: tools/lib/bpf/
3446 F: tools/testing/selftests/bpf/
3447 N: bpf
3448 K: bpf
3449
3450 BPF JIT for ARM
3451 M: Shubham Bansal <illusionist.neo@gmail.com>
3452 L: netdev@vger.kernel.org
3453 L: bpf@vger.kernel.org
3454 S: Maintained
3455 F: arch/arm/net/
3456
3457 BPF JIT for ARM64
3458 M: Daniel Borkmann <daniel@iogearbox.net>
3459 M: Alexei Starovoitov <ast@kernel.org>
3460 M: Zi Shen Lim <zlim.lnx@gmail.com>
3461 L: netdev@vger.kernel.org
3462 L: bpf@vger.kernel.org
3463 S: Supported
3464 F: arch/arm64/net/
3465
3466 BPF JIT for MIPS (32-BIT AND 64-BIT)
3467 M: Paul Burton <paulburton@kernel.org>
3468 L: netdev@vger.kernel.org
3469 L: bpf@vger.kernel.org
3470 S: Maintained
3471 F: arch/mips/net/
3472
3473 BPF JIT for NFP NICs
3474 M: Jakub Kicinski <kuba@kernel.org>
3475 L: netdev@vger.kernel.org
3476 L: bpf@vger.kernel.org
3477 S: Supported
3478 F: drivers/net/ethernet/netronome/nfp/bpf/
3479
3480 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3481 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3482 L: netdev@vger.kernel.org
3483 L: bpf@vger.kernel.org
3484 S: Maintained
3485 F: arch/powerpc/net/
3486
3487 BPF JIT for RISC-V (32-bit)
3488 M: Luke Nelson <luke.r.nels@gmail.com>
3489 M: Xi Wang <xi.wang@gmail.com>
3490 L: netdev@vger.kernel.org
3491 L: bpf@vger.kernel.org
3492 S: Maintained
3493 F: arch/riscv/net/
3494 X: arch/riscv/net/bpf_jit_comp64.c
3495
3496 BPF JIT for RISC-V (64-bit)
3497 M: Björn Töpel <bjorn@kernel.org>
3498 L: netdev@vger.kernel.org
3499 L: bpf@vger.kernel.org
3500 S: Maintained
3501 F: arch/riscv/net/
3502 X: arch/riscv/net/bpf_jit_comp32.c
3503
3504 BPF JIT for S390
3505 M: Ilya Leoshkevich <iii@linux.ibm.com>
3506 M: Heiko Carstens <hca@linux.ibm.com>
3507 M: Vasily Gorbik <gor@linux.ibm.com>
3508 L: netdev@vger.kernel.org
3509 L: bpf@vger.kernel.org
3510 S: Maintained
3511 F: arch/s390/net/
3512 X: arch/s390/net/pnet.c
3513
3514 BPF JIT for SPARC (32-BIT AND 64-BIT)
3515 M: David S. Miller <davem@davemloft.net>
3516 L: netdev@vger.kernel.org
3517 L: bpf@vger.kernel.org
3518 S: Maintained
3519 F: arch/sparc/net/
3520
3521 BPF JIT for X86 32-BIT
3522 M: Wang YanQing <udknight@gmail.com>
3523 L: netdev@vger.kernel.org
3524 L: bpf@vger.kernel.org
3525 S: Maintained
3526 F: arch/x86/net/bpf_jit_comp32.c
3527
3528 BPF JIT for X86 64-BIT
3529 M: Alexei Starovoitov <ast@kernel.org>
3530 M: Daniel Borkmann <daniel@iogearbox.net>
3531 L: netdev@vger.kernel.org
3532 L: bpf@vger.kernel.org
3533 S: Supported
3534 F: arch/x86/net/
3535 X: arch/x86/net/bpf_jit_comp32.c
3536
3537 BPF LSM (Security Audit and Enforcement using BPF)
3538 M: KP Singh <kpsingh@kernel.org>
3539 R: Florent Revest <revest@chromium.org>
3540 R: Brendan Jackman <jackmanb@chromium.org>
3541 L: bpf@vger.kernel.org
3542 S: Maintained
3543 F: Documentation/bpf/bpf_lsm.rst
3544 F: include/linux/bpf_lsm.h
3545 F: kernel/bpf/bpf_lsm.c
3546 F: security/bpf/
3547
3548 BROADCOM B44 10/100 ETHERNET DRIVER
3549 M: Michael Chan <michael.chan@broadcom.com>
3550 L: netdev@vger.kernel.org
3551 S: Supported
3552 F: drivers/net/ethernet/broadcom/b44.*
3553
3554 BROADCOM B53 ETHERNET SWITCH DRIVER
3555 M: Florian Fainelli <f.fainelli@gmail.com>
3556 L: netdev@vger.kernel.org
3557 L: openwrt-devel@lists.openwrt.org (subscribers-only)
3558 S: Supported
3559 F: Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3560 F: drivers/net/dsa/b53/*
3561 F: include/linux/dsa/brcm.h
3562 F: include/linux/platform_data/b53.h
3563
3564 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3565 M: Nicolas Saenz Julienne <nsaenz@kernel.org>
3566 L: bcm-kernel-feedback-list@broadcom.com
3567 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3568 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3569 S: Maintained
3570 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3571 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3572 F: drivers/pci/controller/pcie-brcmstb.c
3573 F: drivers/staging/vc04_services
3574 N: bcm2711
3575 N: bcm283*
3576
3577 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3578 M: Florian Fainelli <f.fainelli@gmail.com>
3579 M: Ray Jui <rjui@broadcom.com>
3580 M: Scott Branden <sbranden@broadcom.com>
3581 M: bcm-kernel-feedback-list@broadcom.com
3582 S: Maintained
3583 T: git git://github.com/broadcom/mach-bcm
3584 F: arch/arm/mach-bcm/
3585 N: bcm281*
3586 N: bcm113*
3587 N: bcm216*
3588 N: kona
3589
3590 BROADCOM BCM47XX MIPS ARCHITECTURE
3591 M: Hauke Mehrtens <hauke@hauke-m.de>
3592 M: Rafał Miłecki <zajec5@gmail.com>
3593 L: linux-mips@vger.kernel.org
3594 S: Maintained
3595 F: Documentation/devicetree/bindings/mips/brcm/
3596 F: arch/mips/bcm47xx/*
3597 F: arch/mips/include/asm/mach-bcm47xx/*
3598
3599 BROADCOM BCM4908 ETHERNET DRIVER
3600 M: Rafał Miłecki <rafal@milecki.pl>
3601 M: bcm-kernel-feedback-list@broadcom.com
3602 L: netdev@vger.kernel.org
3603 S: Maintained
3604 F: Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3605 F: drivers/net/ethernet/broadcom/bcm4908_enet.*
3606 F: drivers/net/ethernet/broadcom/unimac.h
3607
3608 BROADCOM BCM5301X ARM ARCHITECTURE
3609 M: Hauke Mehrtens <hauke@hauke-m.de>
3610 M: Rafał Miłecki <zajec5@gmail.com>
3611 M: bcm-kernel-feedback-list@broadcom.com
3612 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3613 S: Maintained
3614 F: arch/arm/boot/dts/bcm470*
3615 F: arch/arm/boot/dts/bcm5301*
3616 F: arch/arm/boot/dts/bcm953012*
3617 F: arch/arm/mach-bcm/bcm_5301x.c
3618
3619 BROADCOM BCM53573 ARM ARCHITECTURE
3620 M: Rafał Miłecki <rafal@milecki.pl>
3621 L: bcm-kernel-feedback-list@broadcom.com
3622 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3623 S: Maintained
3624 F: arch/arm/boot/dts/bcm47189*
3625 F: arch/arm/boot/dts/bcm53573*
3626
3627 BROADCOM BCM63XX ARM ARCHITECTURE
3628 M: Florian Fainelli <f.fainelli@gmail.com>
3629 M: bcm-kernel-feedback-list@broadcom.com
3630 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3631 S: Maintained
3632 T: git git://github.com/broadcom/stblinux.git
3633 N: bcm63xx
3634
3635 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3636 M: Kevin Cernekee <cernekee@gmail.com>
3637 L: linux-usb@vger.kernel.org
3638 S: Maintained
3639 F: drivers/usb/gadget/udc/bcm63xx_udc.*
3640
3641 BROADCOM BCM7XXX ARM ARCHITECTURE
3642 M: Florian Fainelli <f.fainelli@gmail.com>
3643 M: bcm-kernel-feedback-list@broadcom.com
3644 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3645 S: Maintained
3646 T: git git://github.com/broadcom/stblinux.git
3647 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3648 F: arch/arm/boot/dts/bcm7*.dts*
3649 F: arch/arm/include/asm/hardware/cache-b15-rac.h
3650 F: arch/arm/mach-bcm/*brcmstb*
3651 F: arch/arm/mm/cache-b15-rac.c
3652 F: drivers/bus/brcmstb_gisb.c
3653 F: drivers/pci/controller/pcie-brcmstb.c
3654 N: brcmstb
3655
3656 BROADCOM BDC DRIVER
3657 M: Al Cooper <alcooperx@gmail.com>
3658 L: linux-usb@vger.kernel.org
3659 L: bcm-kernel-feedback-list@broadcom.com
3660 S: Maintained
3661 F: Documentation/devicetree/bindings/usb/brcm,bdc.txt
3662 F: drivers/usb/gadget/udc/bdc/
3663
3664 BROADCOM BMIPS CPUFREQ DRIVER
3665 M: Markus Mayer <mmayer@broadcom.com>
3666 M: bcm-kernel-feedback-list@broadcom.com
3667 L: linux-pm@vger.kernel.org
3668 S: Maintained
3669 F: drivers/cpufreq/bmips-cpufreq.c
3670
3671 BROADCOM BMIPS MIPS ARCHITECTURE
3672 M: Florian Fainelli <f.fainelli@gmail.com>
3673 L: bcm-kernel-feedback-list@broadcom.com
3674 L: linux-mips@vger.kernel.org
3675 S: Maintained
3676 T: git git://github.com/broadcom/stblinux.git
3677 F: arch/mips/bmips/*
3678 F: arch/mips/boot/dts/brcm/bcm*.dts*
3679 F: arch/mips/include/asm/mach-bmips/*
3680 F: arch/mips/kernel/*bmips*
3681 F: drivers/soc/bcm/bcm63xx
3682 F: drivers/irqchip/irq-bcm63*
3683 F: drivers/irqchip/irq-bcm7*
3684 F: drivers/irqchip/irq-brcmstb*
3685 F: include/linux/bcm963xx_nvram.h
3686 F: include/linux/bcm963xx_tag.h
3687
3688 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3689 M: Rasesh Mody <rmody@marvell.com>
3690 M: GR-Linux-NIC-Dev@marvell.com
3691 L: netdev@vger.kernel.org
3692 S: Supported
3693 F: drivers/net/ethernet/broadcom/bnx2.*
3694 F: drivers/net/ethernet/broadcom/bnx2_*
3695
3696 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3697 M: Saurav Kashyap <skashyap@marvell.com>
3698 M: Javed Hasan <jhasan@marvell.com>
3699 M: GR-QLogic-Storage-Upstream@marvell.com
3700 L: linux-scsi@vger.kernel.org
3701 S: Supported
3702 F: drivers/scsi/bnx2fc/
3703
3704 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3705 M: Nilesh Javali <njavali@marvell.com>
3706 M: Manish Rangankar <mrangankar@marvell.com>
3707 M: GR-QLogic-Storage-Upstream@marvell.com
3708 L: linux-scsi@vger.kernel.org
3709 S: Supported
3710 F: drivers/scsi/bnx2i/
3711
3712 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3713 M: Ariel Elior <aelior@marvell.com>
3714 M: Sudarsana Kalluru <skalluru@marvell.com>
3715 M: GR-everest-linux-l2@marvell.com
3716 L: netdev@vger.kernel.org
3717 S: Supported
3718 F: drivers/net/ethernet/broadcom/bnx2x/
3719
3720 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3721 M: Michael Chan <michael.chan@broadcom.com>
3722 L: netdev@vger.kernel.org
3723 S: Supported
3724 F: drivers/net/ethernet/broadcom/bnxt/
3725
3726 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3727 M: Arend van Spriel <aspriel@gmail.com>
3728 M: Franky Lin <franky.lin@broadcom.com>
3729 M: Hante Meuleman <hante.meuleman@broadcom.com>
3730 M: Chi-hsien Lin <chi-hsien.lin@infineon.com>
3731 M: Wright Feng <wright.feng@infineon.com>
3732 M: Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3733 L: linux-wireless@vger.kernel.org
3734 L: brcm80211-dev-list.pdl@broadcom.com
3735 L: SHA-cyfmac-dev-list@infineon.com
3736 S: Supported
3737 F: drivers/net/wireless/broadcom/brcm80211/
3738
3739 BROADCOM BRCMSTB GPIO DRIVER
3740 M: Gregory Fong <gregory.0xf0@gmail.com>
3741 L: bcm-kernel-feedback-list@broadcom.com
3742 S: Supported
3743 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3744 F: drivers/gpio/gpio-brcmstb.c
3745
3746 BROADCOM BRCMSTB I2C DRIVER
3747 M: Kamal Dasu <kdasu.kdev@gmail.com>
3748 L: linux-i2c@vger.kernel.org
3749 L: bcm-kernel-feedback-list@broadcom.com
3750 S: Supported
3751 F: Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3752 F: drivers/i2c/busses/i2c-brcmstb.c
3753
3754 BROADCOM BRCMSTB UART DRIVER
3755 M: Al Cooper <alcooperx@gmail.com>
3756 L: linux-serial@vger.kernel.org
3757 L: bcm-kernel-feedback-list@broadcom.com
3758 S: Maintained
3759 F: Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3760 F: drivers/tty/serial/8250/8250_bcm7271.c
3761
3762 BROADCOM BRCMSTB USB EHCI DRIVER
3763 M: Al Cooper <alcooperx@gmail.com>
3764 L: linux-usb@vger.kernel.org
3765 L: bcm-kernel-feedback-list@broadcom.com
3766 S: Maintained
3767 F: Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3768 F: drivers/usb/host/ehci-brcm.*
3769
3770 BROADCOM BRCMSTB USB PIN MAP DRIVER
3771 M: Al Cooper <alcooperx@gmail.com>
3772 L: linux-usb@vger.kernel.org
3773 L: bcm-kernel-feedback-list@broadcom.com
3774 S: Maintained
3775 F: Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3776 F: drivers/usb/misc/brcmstb-usb-pinmap.c
3777
3778 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3779 M: Al Cooper <alcooperx@gmail.com>
3780 L: linux-kernel@vger.kernel.org
3781 L: bcm-kernel-feedback-list@broadcom.com
3782 S: Maintained
3783 F: drivers/phy/broadcom/phy-brcm-usb*
3784
3785 BROADCOM ETHERNET PHY DRIVERS
3786 M: Florian Fainelli <f.fainelli@gmail.com>
3787 L: bcm-kernel-feedback-list@broadcom.com
3788 L: netdev@vger.kernel.org
3789 S: Supported
3790 F: Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3791 F: drivers/net/phy/bcm*.[ch]
3792 F: drivers/net/phy/broadcom.c
3793 F: include/linux/brcmphy.h
3794
3795 BROADCOM GENET ETHERNET DRIVER
3796 M: Doug Berger <opendmb@gmail.com>
3797 M: Florian Fainelli <f.fainelli@gmail.com>
3798 L: bcm-kernel-feedback-list@broadcom.com
3799 L: netdev@vger.kernel.org
3800 S: Supported
3801 F: Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3802 F: Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3803 F: drivers/net/ethernet/broadcom/genet/
3804 F: drivers/net/ethernet/broadcom/unimac.h
3805 F: drivers/net/mdio/mdio-bcm-unimac.c
3806 F: include/linux/platform_data/bcmgenet.h
3807 F: include/linux/platform_data/mdio-bcm-unimac.h
3808
3809 BROADCOM IPROC ARM ARCHITECTURE
3810 M: Ray Jui <rjui@broadcom.com>
3811 M: Scott Branden <sbranden@broadcom.com>
3812 M: bcm-kernel-feedback-list@broadcom.com
3813 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3814 S: Maintained
3815 T: git git://github.com/broadcom/cygnus-linux.git
3816 F: arch/arm64/boot/dts/broadcom/northstar2/*
3817 F: arch/arm64/boot/dts/broadcom/stingray/*
3818 F: drivers/clk/bcm/clk-ns*
3819 F: drivers/clk/bcm/clk-sr*
3820 F: drivers/pinctrl/bcm/pinctrl-ns*
3821 F: include/dt-bindings/clock/bcm-sr*
3822 N: iproc
3823 N: cygnus
3824 N: bcm[-_]nsp
3825 N: bcm9113*
3826 N: bcm9583*
3827 N: bcm9585*
3828 N: bcm9586*
3829 N: bcm988312
3830 N: bcm113*
3831 N: bcm583*
3832 N: bcm585*
3833 N: bcm586*
3834 N: bcm88312
3835 N: hr2
3836 N: stingray
3837
3838 BROADCOM IPROC GBIT ETHERNET DRIVER
3839 M: Rafał Miłecki <rafal@milecki.pl>
3840 M: bcm-kernel-feedback-list@broadcom.com
3841 L: netdev@vger.kernel.org
3842 S: Maintained
3843 F: Documentation/devicetree/bindings/net/brcm,amac.txt
3844 F: drivers/net/ethernet/broadcom/bgmac*
3845 F: drivers/net/ethernet/broadcom/unimac.h
3846
3847 BROADCOM KONA GPIO DRIVER
3848 M: Ray Jui <rjui@broadcom.com>
3849 L: bcm-kernel-feedback-list@broadcom.com
3850 S: Supported
3851 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3852 F: drivers/gpio/gpio-bcm-kona.c
3853
3854 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3855 M: Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3856 M: Kashyap Desai <kashyap.desai@broadcom.com>
3857 M: Sumit Saxena <sumit.saxena@broadcom.com>
3858 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3859 L: mpi3mr-linuxdrv.pdl@broadcom.com
3860 L: linux-scsi@vger.kernel.org
3861 S: Supported
3862 W: https://www.broadcom.com/support/storage
3863 F: drivers/scsi/mpi3mr/
3864
3865 BROADCOM NETXTREME-E ROCE DRIVER
3866 M: Selvin Xavier <selvin.xavier@broadcom.com>
3867 L: linux-rdma@vger.kernel.org
3868 S: Supported
3869 W: http://www.broadcom.com
3870 F: drivers/infiniband/hw/bnxt_re/
3871 F: include/uapi/rdma/bnxt_re-abi.h
3872
3873 BROADCOM NVRAM DRIVER
3874 M: Rafał Miłecki <zajec5@gmail.com>
3875 L: linux-mips@vger.kernel.org
3876 S: Maintained
3877 F: drivers/firmware/broadcom/*
3878
3879 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3880 M: Rafał Miłecki <rafal@milecki.pl>
3881 M: Florian Fainelli <f.fainelli@gmail.com>
3882 M: bcm-kernel-feedback-list@broadcom.com
3883 L: linux-pm@vger.kernel.org
3884 S: Maintained
3885 T: git git://github.com/broadcom/stblinux.git
3886 F: drivers/soc/bcm/bcm63xx/bcm-pmb.c
3887 F: include/dt-bindings/soc/bcm-pmb.h
3888
3889 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3890 M: Rafał Miłecki <zajec5@gmail.com>
3891 L: linux-wireless@vger.kernel.org
3892 S: Maintained
3893 F: drivers/bcma/
3894 F: include/linux/bcma/
3895
3896 BROADCOM SPI DRIVER
3897 M: Kamal Dasu <kdasu.kdev@gmail.com>
3898 M: bcm-kernel-feedback-list@broadcom.com
3899 S: Maintained
3900 F: Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3901 F: drivers/spi/spi-bcm-qspi.*
3902 F: drivers/spi/spi-brcmstb-qspi.c
3903 F: drivers/spi/spi-iproc-qspi.c
3904
3905 BROADCOM STB AVS CPUFREQ DRIVER
3906 M: Markus Mayer <mmayer@broadcom.com>
3907 M: bcm-kernel-feedback-list@broadcom.com
3908 L: linux-pm@vger.kernel.org
3909 S: Maintained
3910 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3911 F: drivers/cpufreq/brcmstb*
3912
3913 BROADCOM STB AVS TMON DRIVER
3914 M: Markus Mayer <mmayer@broadcom.com>
3915 M: bcm-kernel-feedback-list@broadcom.com
3916 L: linux-pm@vger.kernel.org
3917 S: Maintained
3918 F: Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3919 F: drivers/thermal/broadcom/brcmstb*
3920
3921 BROADCOM STB DPFE DRIVER
3922 M: Markus Mayer <mmayer@broadcom.com>
3923 M: bcm-kernel-feedback-list@broadcom.com
3924 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3925 S: Maintained
3926 F: Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3927 F: drivers/memory/brcmstb_dpfe.c
3928
3929 BROADCOM STB NAND FLASH DRIVER
3930 M: Brian Norris <computersforpeace@gmail.com>
3931 M: Kamal Dasu <kdasu.kdev@gmail.com>
3932 L: linux-mtd@lists.infradead.org
3933 L: bcm-kernel-feedback-list@broadcom.com
3934 S: Maintained
3935 F: drivers/mtd/nand/raw/brcmnand/
3936
3937 BROADCOM STB PCIE DRIVER
3938 M: Jim Quinlan <jim2101024@gmail.com>
3939 M: Nicolas Saenz Julienne <nsaenz@kernel.org>
3940 M: Florian Fainelli <f.fainelli@gmail.com>
3941 M: bcm-kernel-feedback-list@broadcom.com
3942 L: linux-pci@vger.kernel.org
3943 S: Maintained
3944 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3945 F: drivers/pci/controller/pcie-brcmstb.c
3946
3947 BROADCOM SYSTEMPORT ETHERNET DRIVER
3948 M: Florian Fainelli <f.fainelli@gmail.com>
3949 L: bcm-kernel-feedback-list@broadcom.com
3950 L: netdev@vger.kernel.org
3951 S: Supported
3952 F: drivers/net/ethernet/broadcom/bcmsysport.*
3953 F: drivers/net/ethernet/broadcom/unimac.h
3954
3955 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3956 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
3957 M: Prashant Sreedharan <prashant@broadcom.com>
3958 M: Michael Chan <mchan@broadcom.com>
3959 L: netdev@vger.kernel.org
3960 S: Supported
3961 F: drivers/net/ethernet/broadcom/tg3.*
3962
3963 BROADCOM VK DRIVER
3964 M: Scott Branden <scott.branden@broadcom.com>
3965 L: bcm-kernel-feedback-list@broadcom.com
3966 S: Supported
3967 F: drivers/misc/bcm-vk/
3968 F: include/uapi/linux/misc/bcm_vk.h
3969
3970 BROCADE BFA FC SCSI DRIVER
3971 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3972 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3973 L: linux-scsi@vger.kernel.org
3974 S: Supported
3975 F: drivers/scsi/bfa/
3976
3977 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3978 M: Rasesh Mody <rmody@marvell.com>
3979 M: Sudarsana Kalluru <skalluru@marvell.com>
3980 M: GR-Linux-NIC-Dev@marvell.com
3981 L: netdev@vger.kernel.org
3982 S: Supported
3983 F: drivers/net/ethernet/brocade/bna/
3984
3985 BSG (block layer generic sg v4 driver)
3986 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3987 L: linux-scsi@vger.kernel.org
3988 S: Supported
3989 F: block/bsg.c
3990 F: include/linux/bsg.h
3991 F: include/uapi/linux/bsg.h
3992
3993 BT87X AUDIO DRIVER
3994 M: Clemens Ladisch <clemens@ladisch.de>
3995 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3996 S: Maintained
3997 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3998 F: Documentation/sound/cards/bt87x.rst
3999 F: sound/pci/bt87x.c
4000
4001 BT8XXGPIO DRIVER
4002 M: Michael Buesch <m@bues.ch>
4003 S: Maintained
4004 W: http://bu3sch.de/btgpio.php
4005 F: drivers/gpio/gpio-bt8xx.c
4006
4007 BTRFS FILE SYSTEM
4008 M: Chris Mason <clm@fb.com>
4009 M: Josef Bacik <josef@toxicpanda.com>
4010 M: David Sterba <dsterba@suse.com>
4011 L: linux-btrfs@vger.kernel.org
4012 S: Maintained
4013 W: http://btrfs.wiki.kernel.org/
4014 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
4015 C: irc://irc.libera.chat/btrfs
4016 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4017 F: Documentation/filesystems/btrfs.rst
4018 F: fs/btrfs/
4019 F: include/linux/btrfs*
4020 F: include/uapi/linux/btrfs*
4021
4022 BTTV VIDEO4LINUX DRIVER
4023 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4024 L: linux-media@vger.kernel.org
4025 S: Odd fixes
4026 W: https://linuxtv.org
4027 T: git git://linuxtv.org/media_tree.git
4028 F: Documentation/driver-api/media/drivers/bttv*
4029 F: drivers/media/pci/bt8xx/bttv*
4030
4031 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4032 M: Chanwoo Choi <cw00.choi@samsung.com>
4033 L: linux-pm@vger.kernel.org
4034 L: linux-samsung-soc@vger.kernel.org
4035 S: Maintained
4036 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4037 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4038 F: drivers/devfreq/exynos-bus.c
4039
4040 BUSLOGIC SCSI DRIVER
4041 M: Khalid Aziz <khalid@gonehiking.org>
4042 L: linux-scsi@vger.kernel.org
4043 S: Maintained
4044 F: drivers/scsi/BusLogic.*
4045 F: drivers/scsi/FlashPoint.*
4046
4047 C-MEDIA CMI8788 DRIVER
4048 M: Clemens Ladisch <clemens@ladisch.de>
4049 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4050 S: Maintained
4051 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4052 F: sound/pci/oxygen/
4053
4054 C-SKY ARCHITECTURE
4055 M: Guo Ren <guoren@kernel.org>
4056 L: linux-csky@vger.kernel.org
4057 S: Supported
4058 T: git https://github.com/c-sky/csky-linux.git
4059 F: Documentation/devicetree/bindings/csky/
4060 F: Documentation/devicetree/bindings/interrupt-controller/csky,*
4061 F: Documentation/devicetree/bindings/timer/csky,*
4062 F: arch/csky/
4063 F: drivers/clocksource/timer-gx6605s.c
4064 F: drivers/clocksource/timer-mp-csky.c
4065 F: drivers/irqchip/irq-csky-*
4066 N: csky
4067 K: csky
4068
4069 CA8210 IEEE-802.15.4 RADIO DRIVER
4070 M: Harry Morris <h.morris@cascoda.com>
4071 L: linux-wpan@vger.kernel.org
4072 S: Maintained
4073 W: https://github.com/Cascoda/ca8210-linux.git
4074 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4075 F: drivers/net/ieee802154/ca8210.c
4076
4077 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4078 M: Damien Le Moal <damien.lemoal@wdc.com>
4079 L: linux-riscv@lists.infradead.org
4080 L: linux-gpio@vger.kernel.org (pinctrl driver)
4081 F: Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4082 F: drivers/pinctrl/pinctrl-k210.c
4083
4084 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4085 M: Damien Le Moal <damien.lemoal@wdc.com>
4086 L: linux-kernel@vger.kernel.org
4087 L: linux-riscv@lists.infradead.org
4088 S: Maintained
4089 F: Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4090 F: drivers/reset/reset-k210.c
4091
4092 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4093 M: Damien Le Moal <damien.lemoal@wdc.com>
4094 L: linux-riscv@lists.infradead.org
4095 S: Maintained
4096 F: Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4097 F: drivers/soc/canaan/
4098 F: include/soc/canaan/
4099
4100 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4101 M: David Howells <dhowells@redhat.com>
4102 L: linux-cachefs@redhat.com (moderated for non-subscribers)
4103 S: Supported
4104 F: Documentation/filesystems/caching/cachefiles.rst
4105 F: fs/cachefiles/
4106
4107 CADENCE MIPI-CSI2 BRIDGES
4108 M: Maxime Ripard <mripard@kernel.org>
4109 L: linux-media@vger.kernel.org
4110 S: Maintained
4111 F: Documentation/devicetree/bindings/media/cdns,*.txt
4112 F: drivers/media/platform/cadence/cdns-csi2*
4113
4114 CADENCE NAND DRIVER
4115 L: linux-mtd@lists.infradead.org
4116 S: Orphan
4117 F: Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4118 F: drivers/mtd/nand/raw/cadence-nand-controller.c
4119
4120 CADENCE USB3 DRD IP DRIVER
4121 M: Peter Chen <peter.chen@kernel.org>
4122 M: Pawel Laszczak <pawell@cadence.com>
4123 R: Roger Quadros <rogerq@kernel.org>
4124 R: Aswath Govindraju <a-govindraju@ti.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: Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4129 F: drivers/usb/cdns3/
4130 X: drivers/usb/cdns3/cdnsp*
4131
4132 CADENCE USBSSP DRD IP DRIVER
4133 M: Pawel Laszczak <pawell@cadence.com>
4134 L: linux-usb@vger.kernel.org
4135 S: Maintained
4136 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4137 F: drivers/usb/cdns3/
4138 X: drivers/usb/cdns3/cdns3*
4139
4140 CADET FM/AM RADIO RECEIVER DRIVER
4141 M: Hans Verkuil <hverkuil@xs4all.nl>
4142 L: linux-media@vger.kernel.org
4143 S: Maintained
4144 W: https://linuxtv.org
4145 T: git git://linuxtv.org/media_tree.git
4146 F: drivers/media/radio/radio-cadet*
4147
4148 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4149 L: linux-media@vger.kernel.org
4150 S: Orphan
4151 T: git git://linuxtv.org/media_tree.git
4152 F: Documentation/admin-guide/media/cafe_ccic*
4153 F: drivers/media/platform/marvell-ccic/
4154
4155 CAIF NETWORK LAYER
4156 L: netdev@vger.kernel.org
4157 S: Orphan
4158 F: Documentation/networking/caif/
4159 F: drivers/net/caif/
4160 F: include/net/caif/
4161 F: include/uapi/linux/caif/
4162 F: net/caif/
4163
4164 CAKE QDISC
4165 M: Toke Høiland-Jørgensen <toke@toke.dk>
4166 L: cake@lists.bufferbloat.net (moderated for non-subscribers)
4167 S: Maintained
4168 F: net/sched/sch_cake.c
4169
4170 CAN NETWORK DRIVERS
4171 M: Wolfgang Grandegger <wg@grandegger.com>
4172 M: Marc Kleine-Budde <mkl@pengutronix.de>
4173 L: linux-can@vger.kernel.org
4174 S: Maintained
4175 W: https://github.com/linux-can
4176 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4177 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4178 F: Documentation/devicetree/bindings/net/can/
4179 F: Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4180 F: drivers/net/can/
4181 F: drivers/phy/phy-can-transceiver.c
4182 F: include/linux/can/bittiming.h
4183 F: include/linux/can/dev.h
4184 F: include/linux/can/led.h
4185 F: include/linux/can/length.h
4186 F: include/linux/can/platform/
4187 F: include/linux/can/rx-offload.h
4188 F: include/uapi/linux/can/error.h
4189 F: include/uapi/linux/can/netlink.h
4190 F: include/uapi/linux/can/vxcan.h
4191
4192 CAN NETWORK LAYER
4193 M: Oliver Hartkopp <socketcan@hartkopp.net>
4194 M: Marc Kleine-Budde <mkl@pengutronix.de>
4195 L: linux-can@vger.kernel.org
4196 S: Maintained
4197 W: https://github.com/linux-can
4198 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4199 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4200 F: Documentation/networking/can.rst
4201 F: include/linux/can/can-ml.h
4202 F: include/linux/can/core.h
4203 F: include/linux/can/skb.h
4204 F: include/net/netns/can.h
4205 F: include/uapi/linux/can.h
4206 F: include/uapi/linux/can/bcm.h
4207 F: include/uapi/linux/can/gw.h
4208 F: include/uapi/linux/can/isotp.h
4209 F: include/uapi/linux/can/raw.h
4210 F: net/can/
4211
4212 CAN-J1939 NETWORK LAYER
4213 M: Robin van der Gracht <robin@protonic.nl>
4214 M: Oleksij Rempel <o.rempel@pengutronix.de>
4215 R: kernel@pengutronix.de
4216 L: linux-can@vger.kernel.org
4217 S: Maintained
4218 F: Documentation/networking/j1939.rst
4219 F: include/uapi/linux/can/j1939.h
4220 F: net/can/j1939/
4221
4222 CAPABILITIES
4223 M: Serge Hallyn <serge@hallyn.com>
4224 L: linux-security-module@vger.kernel.org
4225 S: Supported
4226 F: include/linux/capability.h
4227 F: include/uapi/linux/capability.h
4228 F: kernel/capability.c
4229 F: security/commoncap.c
4230
4231 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4232 M: Kevin Tsai <ktsai@capellamicro.com>
4233 S: Maintained
4234 F: drivers/iio/light/cm*
4235
4236 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4237 M: Christian Lamparter <chunkeey@googlemail.com>
4238 L: linux-wireless@vger.kernel.org
4239 S: Maintained
4240 W: https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4241 F: drivers/net/wireless/ath/carl9170/
4242
4243 CAVIUM I2C DRIVER
4244 M: Robert Richter <rric@kernel.org>
4245 S: Odd Fixes
4246 W: http://www.marvell.com
4247 F: drivers/i2c/busses/i2c-octeon*
4248 F: drivers/i2c/busses/i2c-thunderx*
4249
4250 CAVIUM LIQUIDIO NETWORK DRIVER
4251 M: Derek Chickles <dchickles@marvell.com>
4252 M: Satanand Burla <sburla@marvell.com>
4253 M: Felix Manlunas <fmanlunas@marvell.com>
4254 L: netdev@vger.kernel.org
4255 S: Supported
4256 W: http://www.marvell.com
4257 F: drivers/net/ethernet/cavium/liquidio/
4258
4259 CAVIUM MMC DRIVER
4260 M: Robert Richter <rric@kernel.org>
4261 S: Odd Fixes
4262 W: http://www.marvell.com
4263 F: drivers/mmc/host/cavium*
4264
4265 CAVIUM OCTEON-TX CRYPTO DRIVER
4266 M: George Cherian <gcherian@marvell.com>
4267 L: linux-crypto@vger.kernel.org
4268 S: Supported
4269 W: http://www.marvell.com
4270 F: drivers/crypto/cavium/cpt/
4271
4272 CAVIUM THUNDERX2 ARM64 SOC
4273 M: Robert Richter <rric@kernel.org>
4274 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4275 S: Odd Fixes
4276 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4277 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
4278
4279 CBS/ETF/TAPRIO QDISCS
4280 M: Vinicius Costa Gomes <vinicius.gomes@intel.com>
4281 S: Maintained
4282 L: netdev@vger.kernel.org
4283 F: net/sched/sch_cbs.c
4284 F: net/sched/sch_etf.c
4285 F: net/sched/sch_taprio.c
4286
4287 CC2520 IEEE-802.15.4 RADIO DRIVER
4288 M: Varka Bhadram <varkabhadram@gmail.com>
4289 L: linux-wpan@vger.kernel.org
4290 S: Maintained
4291 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4292 F: drivers/net/ieee802154/cc2520.c
4293 F: include/linux/spi/cc2520.h
4294
4295 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4296 M: Gilad Ben-Yossef <gilad@benyossef.com>
4297 L: linux-crypto@vger.kernel.org
4298 S: Supported
4299 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4300 F: drivers/crypto/ccree/
4301
4302 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4303 M: Hadar Gat <hadar.gat@arm.com>
4304 L: linux-crypto@vger.kernel.org
4305 S: Supported
4306 F: drivers/char/hw_random/cctrng.c
4307 F: drivers/char/hw_random/cctrng.h
4308 F: Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4309 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4310
4311 CEC FRAMEWORK
4312 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4313 L: linux-media@vger.kernel.org
4314 S: Supported
4315 W: http://linuxtv.org
4316 T: git git://linuxtv.org/media_tree.git
4317 F: Documentation/ABI/testing/debugfs-cec-error-inj
4318 F: Documentation/devicetree/bindings/media/cec.txt
4319 F: Documentation/driver-api/media/cec-core.rst
4320 F: Documentation/userspace-api/media/cec
4321 F: drivers/media/cec/
4322 F: drivers/media/rc/keymaps/rc-cec.c
4323 F: include/media/cec-notifier.h
4324 F: include/media/cec.h
4325 F: include/uapi/linux/cec-funcs.h
4326 F: include/uapi/linux/cec.h
4327
4328 CEC GPIO DRIVER
4329 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4330 L: linux-media@vger.kernel.org
4331 S: Supported
4332 W: http://linuxtv.org
4333 T: git git://linuxtv.org/media_tree.git
4334 F: Documentation/devicetree/bindings/media/cec-gpio.txt
4335 F: drivers/media/cec/platform/cec-gpio/
4336
4337 CELL BROADBAND ENGINE ARCHITECTURE
4338 M: Arnd Bergmann <arnd@arndb.de>
4339 L: linuxppc-dev@lists.ozlabs.org
4340 S: Supported
4341 W: http://www.ibm.com/developerworks/power/cell/
4342 F: arch/powerpc/include/asm/cell*.h
4343 F: arch/powerpc/include/asm/spu*.h
4344 F: arch/powerpc/include/uapi/asm/spu*.h
4345 F: arch/powerpc/platforms/cell/
4346
4347 CELLWISE CW2015 BATTERY DRIVER
4348 M: Tobias Schrammm <t.schramm@manjaro.org>
4349 S: Maintained
4350 F: Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4351 F: drivers/power/supply/cw2015_battery.c
4352
4353 CEPH COMMON CODE (LIBCEPH)
4354 M: Ilya Dryomov <idryomov@gmail.com>
4355 M: Jeff Layton <jlayton@kernel.org>
4356 L: ceph-devel@vger.kernel.org
4357 S: Supported
4358 W: http://ceph.com/
4359 T: git git://github.com/ceph/ceph-client.git
4360 F: include/linux/ceph/
4361 F: include/linux/crush/
4362 F: net/ceph/
4363
4364 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4365 M: Jeff Layton <jlayton@kernel.org>
4366 M: Ilya Dryomov <idryomov@gmail.com>
4367 L: ceph-devel@vger.kernel.org
4368 S: Supported
4369 W: http://ceph.com/
4370 T: git git://github.com/ceph/ceph-client.git
4371 F: Documentation/filesystems/ceph.rst
4372 F: fs/ceph/
4373
4374 CERTIFICATE HANDLING
4375 M: David Howells <dhowells@redhat.com>
4376 M: David Woodhouse <dwmw2@infradead.org>
4377 L: keyrings@vger.kernel.org
4378 S: Maintained
4379 F: Documentation/admin-guide/module-signing.rst
4380 F: certs/
4381 F: scripts/extract-cert.c
4382 F: scripts/sign-file.c
4383
4384 CFAG12864B LCD DRIVER
4385 M: Miguel Ojeda <ojeda@kernel.org>
4386 S: Maintained
4387 F: drivers/auxdisplay/cfag12864b.c
4388 F: include/linux/cfag12864b.h
4389
4390 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4391 M: Miguel Ojeda <ojeda@kernel.org>
4392 S: Maintained
4393 F: drivers/auxdisplay/cfag12864bfb.c
4394 F: include/linux/cfag12864b.h
4395
4396 CHAR and MISC DRIVERS
4397 M: Arnd Bergmann <arnd@arndb.de>
4398 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4399 S: Supported
4400 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4401 F: drivers/char/
4402 F: drivers/misc/
4403 F: include/linux/miscdevice.h
4404 X: drivers/char/agp/
4405 X: drivers/char/hw_random/
4406 X: drivers/char/ipmi/
4407 X: drivers/char/random.c
4408 X: drivers/char/tpm/
4409
4410 CHECKPATCH
4411 M: Andy Whitcroft <apw@canonical.com>
4412 M: Joe Perches <joe@perches.com>
4413 R: Dwaipayan Ray <dwaipayanray1@gmail.com>
4414 R: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4415 S: Maintained
4416 F: scripts/checkpatch.pl
4417
4418 CHECKPATCH DOCUMENTATION
4419 M: Dwaipayan Ray <dwaipayanray1@gmail.com>
4420 M: Lukas Bulwahn <lukas.bulwahn@gmail.com>
4421 R: Joe Perches <joe@perches.com>
4422 S: Maintained
4423 F: Documentation/dev-tools/checkpatch.rst
4424
4425 CHINESE DOCUMENTATION
4426 M: Alex Shi <alexs@kernel.org>
4427 S: Maintained
4428 F: Documentation/translations/zh_CN/
4429
4430 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4431 M: Peter Chen <peter.chen@kernel.org>
4432 L: linux-usb@vger.kernel.org
4433 S: Maintained
4434 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4435 F: drivers/usb/chipidea/
4436
4437 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4438 M: Hans de Goede <hdegoede@redhat.com>
4439 L: linux-input@vger.kernel.org
4440 S: Maintained
4441 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4442 F: drivers/input/touchscreen/chipone_icn8318.c
4443
4444 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4445 M: Hans de Goede <hdegoede@redhat.com>
4446 L: linux-input@vger.kernel.org
4447 S: Maintained
4448 F: drivers/input/touchscreen/chipone_icn8505.c
4449
4450 CHROME HARDWARE PLATFORM SUPPORT
4451 M: Benson Leung <bleung@chromium.org>
4452 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4453 S: Maintained
4454 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4455 F: drivers/platform/chrome/
4456
4457 CHROMEOS EC CODEC DRIVER
4458 M: Cheng-Yi Chiang <cychiang@chromium.org>
4459 R: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4460 R: Guenter Roeck <groeck@chromium.org>
4461 S: Maintained
4462 F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4463 F: sound/soc/codecs/cros_ec_codec.*
4464
4465 CHROMEOS EC SUBDRIVERS
4466 M: Benson Leung <bleung@chromium.org>
4467 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4468 R: Guenter Roeck <groeck@chromium.org>
4469 S: Maintained
4470 F: drivers/power/supply/cros_usbpd-charger.c
4471 N: cros_ec
4472 N: cros-ec
4473
4474 CHRONTEL CH7322 CEC DRIVER
4475 M: Jeff Chase <jnchase@google.com>
4476 L: linux-media@vger.kernel.org
4477 S: Maintained
4478 T: git git://linuxtv.org/media_tree.git
4479 F: Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4480 F: drivers/media/cec/i2c/ch7322.c
4481
4482 CIRRUS LOGIC AUDIO CODEC DRIVERS
4483 M: James Schulman <james.schulman@cirrus.com>
4484 M: David Rhodes <david.rhodes@cirrus.com>
4485 M: Lucas Tanure <tanureal@opensource.cirrus.com>
4486 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4487 L: patches@opensource.cirrus.com
4488 S: Maintained
4489 F: Documentation/devicetree/bindings/sound/cirrus,cs*
4490 F: sound/pci/hda/cs*
4491 F: sound/soc/codecs/cs*
4492
4493 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4494 M: Hartley Sweeten <hsweeten@visionengravers.com>
4495 L: netdev@vger.kernel.org
4496 S: Maintained
4497 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
4498
4499 CIRRUS LOGIC LOCHNAGAR DRIVER
4500 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4501 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4502 L: patches@opensource.cirrus.com
4503 S: Supported
4504 F: Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4505 F: Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4506 F: Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4507 F: Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4508 F: Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4509 F: Documentation/hwmon/lochnagar.rst
4510 F: drivers/clk/clk-lochnagar.c
4511 F: drivers/hwmon/lochnagar-hwmon.c
4512 F: drivers/mfd/lochnagar-i2c.c
4513 F: drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4514 F: drivers/regulator/lochnagar-regulator.c
4515 F: include/dt-bindings/clk/lochnagar.h
4516 F: include/dt-bindings/pinctrl/lochnagar.h
4517 F: include/linux/mfd/lochnagar*
4518 F: sound/soc/codecs/lochnagar-sc.c
4519
4520 CIRRUS LOGIC MADERA CODEC DRIVERS
4521 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4522 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4523 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4524 L: patches@opensource.cirrus.com
4525 S: Supported
4526 W: https://github.com/CirrusLogic/linux-drivers/wiki
4527 T: git https://github.com/CirrusLogic/linux-drivers.git
4528 F: Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4529 F: Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4530 F: Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4531 F: drivers/gpio/gpio-madera*
4532 F: drivers/irqchip/irq-madera*
4533 F: drivers/mfd/cs47l*
4534 F: drivers/mfd/madera*
4535 F: drivers/pinctrl/cirrus/*
4536 F: include/dt-bindings/sound/madera*
4537 F: include/linux/irqchip/irq-madera*
4538 F: include/linux/mfd/madera/*
4539 F: include/sound/madera*
4540 F: sound/soc/codecs/cs47l*
4541 F: sound/soc/codecs/madera*
4542
4543 CISCO FCOE HBA DRIVER
4544 M: Satish Kharat <satishkh@cisco.com>
4545 M: Sesidhar Baddela <sebaddel@cisco.com>
4546 M: Karan Tilak Kumar <kartilak@cisco.com>
4547 L: linux-scsi@vger.kernel.org
4548 S: Supported
4549 F: drivers/scsi/fnic/
4550
4551 CISCO SCSI HBA DRIVER
4552 M: Karan Tilak Kumar <kartilak@cisco.com>
4553 M: Sesidhar Baddela <sebaddel@cisco.com>
4554 L: linux-scsi@vger.kernel.org
4555 S: Supported
4556 F: drivers/scsi/snic/
4557
4558 CISCO VIC ETHERNET NIC DRIVER
4559 M: Christian Benvenuti <benve@cisco.com>
4560 M: Govindarajulu Varadarajan <_govind@gmx.com>
4561 S: Supported
4562 F: drivers/net/ethernet/cisco/enic/
4563
4564 CISCO VIC LOW LATENCY NIC DRIVER
4565 M: Christian Benvenuti <benve@cisco.com>
4566 M: Nelson Escobar <neescoba@cisco.com>
4567 S: Supported
4568 F: drivers/infiniband/hw/usnic/
4569
4570 CLANG-FORMAT FILE
4571 M: Miguel Ojeda <ojeda@kernel.org>
4572 S: Maintained
4573 F: .clang-format
4574
4575 CLANG/LLVM BUILD SUPPORT
4576 M: Nathan Chancellor <nathan@kernel.org>
4577 M: Nick Desaulniers <ndesaulniers@google.com>
4578 L: llvm@lists.linux.dev
4579 S: Supported
4580 W: https://clangbuiltlinux.github.io/
4581 B: https://github.com/ClangBuiltLinux/linux/issues
4582 C: irc://irc.libera.chat/clangbuiltlinux
4583 F: Documentation/kbuild/llvm.rst
4584 F: include/linux/compiler-clang.h
4585 F: scripts/Makefile.clang
4586 F: scripts/clang-tools/
4587 K: \b(?i:clang|llvm)\b
4588
4589 CLANG CONTROL FLOW INTEGRITY SUPPORT
4590 M: Sami Tolvanen <samitolvanen@google.com>
4591 M: Kees Cook <keescook@chromium.org>
4592 R: Nathan Chancellor <nathan@kernel.org>
4593 R: Nick Desaulniers <ndesaulniers@google.com>
4594 L: llvm@lists.linux.dev
4595 S: Supported
4596 B: https://github.com/ClangBuiltLinux/linux/issues
4597 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4598 F: include/linux/cfi.h
4599 F: kernel/cfi.c
4600
4601 CLEANCACHE API
4602 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4603 L: linux-kernel@vger.kernel.org
4604 S: Maintained
4605 F: include/linux/cleancache.h
4606 F: mm/cleancache.c
4607
4608 CLK API
4609 M: Russell King <linux@armlinux.org.uk>
4610 L: linux-clk@vger.kernel.org
4611 S: Maintained
4612 F: include/linux/clk.h
4613
4614 CLOCKSOURCE, CLOCKEVENT DRIVERS
4615 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4616 M: Thomas Gleixner <tglx@linutronix.de>
4617 L: linux-kernel@vger.kernel.org
4618 S: Supported
4619 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4620 F: Documentation/devicetree/bindings/timer/
4621 F: drivers/clocksource/
4622
4623 CMPC ACPI DRIVER
4624 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4625 M: Daniel Oliveira Nascimento <don@syst.com.br>
4626 L: platform-driver-x86@vger.kernel.org
4627 S: Supported
4628 F: drivers/platform/x86/classmate-laptop.c
4629
4630 COBALT MEDIA DRIVER
4631 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4632 L: linux-media@vger.kernel.org
4633 S: Supported
4634 W: https://linuxtv.org
4635 T: git git://linuxtv.org/media_tree.git
4636 F: drivers/media/pci/cobalt/
4637
4638 COCCINELLE/Semantic Patches (SmPL)
4639 M: Julia Lawall <Julia.Lawall@inria.fr>
4640 M: Gilles Muller <Gilles.Muller@inria.fr>
4641 M: Nicolas Palix <nicolas.palix@imag.fr>
4642 M: Michal Marek <michal.lkml@markovi.net>
4643 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
4644 S: Supported
4645 W: http://coccinelle.lip6.fr/
4646 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4647 F: Documentation/dev-tools/coccinelle.rst
4648 F: scripts/coccicheck
4649 F: scripts/coccinelle/
4650
4651 CODA FILE SYSTEM
4652 M: Jan Harkes <jaharkes@cs.cmu.edu>
4653 M: coda@cs.cmu.edu
4654 L: codalist@coda.cs.cmu.edu
4655 S: Maintained
4656 W: http://www.coda.cs.cmu.edu/
4657 F: Documentation/filesystems/coda.rst
4658 F: fs/coda/
4659 F: include/linux/coda*.h
4660 F: include/uapi/linux/coda*.h
4661
4662 CODA V4L2 MEM2MEM DRIVER
4663 M: Philipp Zabel <p.zabel@pengutronix.de>
4664 L: linux-media@vger.kernel.org
4665 S: Maintained
4666 F: Documentation/devicetree/bindings/media/coda.yaml
4667 F: drivers/media/platform/coda/
4668
4669 CODE OF CONDUCT
4670 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4671 S: Supported
4672 F: Documentation/process/code-of-conduct-interpretation.rst
4673 F: Documentation/process/code-of-conduct.rst
4674
4675 COMEDI DRIVERS
4676 M: Ian Abbott <abbotti@mev.co.uk>
4677 M: H Hartley Sweeten <hsweeten@visionengravers.com>
4678 S: Odd Fixes
4679 F: drivers/comedi/
4680
4681 COMMON CLK FRAMEWORK
4682 M: Michael Turquette <mturquette@baylibre.com>
4683 M: Stephen Boyd <sboyd@kernel.org>
4684 L: linux-clk@vger.kernel.org
4685 S: Maintained
4686 Q: http://patchwork.kernel.org/project/linux-clk/list/
4687 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4688 F: Documentation/devicetree/bindings/clock/
4689 F: drivers/clk/
4690 F: include/linux/clk-pr*
4691 F: include/linux/clk/
4692 F: include/linux/of_clk.h
4693 X: drivers/clk/clkdev.c
4694
4695 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4696 M: Steve French <sfrench@samba.org>
4697 L: linux-cifs@vger.kernel.org
4698 L: samba-technical@lists.samba.org (moderated for non-subscribers)
4699 S: Supported
4700 W: http://linux-cifs.samba.org/
4701 T: git git://git.samba.org/sfrench/cifs-2.6.git
4702 F: Documentation/admin-guide/cifs/
4703 F: fs/cifs/
4704 F: fs/smbfs_common/
4705
4706 COMPACTPCI HOTPLUG CORE
4707 M: Scott Murray <scott@spiteful.org>
4708 L: linux-pci@vger.kernel.org
4709 S: Maintained
4710 F: drivers/pci/hotplug/cpci_hotplug*
4711
4712 COMPACTPCI HOTPLUG GENERIC DRIVER
4713 M: Scott Murray <scott@spiteful.org>
4714 L: linux-pci@vger.kernel.org
4715 S: Maintained
4716 F: drivers/pci/hotplug/cpcihp_generic.c
4717
4718 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4719 M: Scott Murray <scott@spiteful.org>
4720 L: linux-pci@vger.kernel.org
4721 S: Maintained
4722 F: drivers/pci/hotplug/cpcihp_zt5550.*
4723
4724 COMPAL LAPTOP SUPPORT
4725 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4726 L: platform-driver-x86@vger.kernel.org
4727 S: Maintained
4728 F: drivers/platform/x86/compal-laptop.c
4729
4730 COMPILER ATTRIBUTES
4731 M: Miguel Ojeda <ojeda@kernel.org>
4732 R: Nick Desaulniers <ndesaulniers@google.com>
4733 S: Maintained
4734 F: include/linux/compiler_attributes.h
4735
4736 COMPUTE EXPRESS LINK (CXL)
4737 M: Alison Schofield <alison.schofield@intel.com>
4738 M: Vishal Verma <vishal.l.verma@intel.com>
4739 M: Ira Weiny <ira.weiny@intel.com>
4740 M: Ben Widawsky <ben.widawsky@intel.com>
4741 M: Dan Williams <dan.j.williams@intel.com>
4742 L: linux-cxl@vger.kernel.org
4743 S: Maintained
4744 F: drivers/cxl/
4745 F: include/uapi/linux/cxl_mem.h
4746
4747 CONEXANT ACCESSRUNNER USB DRIVER
4748 L: accessrunner-general@lists.sourceforge.net
4749 S: Orphan
4750 W: http://accessrunner.sourceforge.net/
4751 F: drivers/usb/atm/cxacru.c
4752
4753 CONFIGFS
4754 M: Joel Becker <jlbec@evilplan.org>
4755 M: Christoph Hellwig <hch@lst.de>
4756 S: Supported
4757 T: git git://git.infradead.org/users/hch/configfs.git
4758 F: fs/configfs/
4759 F: include/linux/configfs.h
4760 F: samples/configfs/
4761
4762 CONSOLE SUBSYSTEM
4763 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4764 S: Supported
4765 F: drivers/video/console/
4766 F: include/linux/console*
4767
4768 CONTEXT TRACKING
4769 M: Frederic Weisbecker <frederic@kernel.org>
4770 S: Maintained
4771 F: kernel/context_tracking.c
4772 F: include/linux/context_tracking*
4773
4774 CONTROL GROUP (CGROUP)
4775 M: Tejun Heo <tj@kernel.org>
4776 M: Zefan Li <lizefan.x@bytedance.com>
4777 M: Johannes Weiner <hannes@cmpxchg.org>
4778 L: cgroups@vger.kernel.org
4779 S: Maintained
4780 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4781 F: Documentation/admin-guide/cgroup-v1/
4782 F: Documentation/admin-guide/cgroup-v2.rst
4783 F: include/linux/cgroup*
4784 F: kernel/cgroup/
4785
4786 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4787 M: Tejun Heo <tj@kernel.org>
4788 M: Jens Axboe <axboe@kernel.dk>
4789 L: cgroups@vger.kernel.org
4790 L: linux-block@vger.kernel.org
4791 T: git git://git.kernel.dk/linux-block
4792 F: Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4793 F: block/bfq-cgroup.c
4794 F: block/blk-cgroup.c
4795 F: block/blk-iolatency.c
4796 F: block/blk-throttle.c
4797 F: include/linux/blk-cgroup.h
4798
4799 CONTROL GROUP - CPUSET
4800 M: Zefan Li <lizefan.x@bytedance.com>
4801 L: cgroups@vger.kernel.org
4802 S: Maintained
4803 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4804 F: Documentation/admin-guide/cgroup-v1/cpusets.rst
4805 F: include/linux/cpuset.h
4806 F: kernel/cgroup/cpuset.c
4807
4808 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4809 M: Johannes Weiner <hannes@cmpxchg.org>
4810 M: Michal Hocko <mhocko@kernel.org>
4811 M: Vladimir Davydov <vdavydov.dev@gmail.com>
4812 L: cgroups@vger.kernel.org
4813 L: linux-mm@kvack.org
4814 S: Maintained
4815 F: mm/memcontrol.c
4816 F: mm/swap_cgroup.c
4817
4818 CORETEMP HARDWARE MONITORING DRIVER
4819 M: Fenghua Yu <fenghua.yu@intel.com>
4820 L: linux-hwmon@vger.kernel.org
4821 S: Maintained
4822 F: Documentation/hwmon/coretemp.rst
4823 F: drivers/hwmon/coretemp.c
4824
4825 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4826 M: Marius Zachmann <mail@mariuszachmann.de>
4827 L: linux-hwmon@vger.kernel.org
4828 S: Maintained
4829 F: drivers/hwmon/corsair-cpro.c
4830
4831 CORSAIR-PSU HARDWARE MONITOR DRIVER
4832 M: Wilken Gottwalt <wilken.gottwalt@posteo.net>
4833 L: linux-hwmon@vger.kernel.org
4834 S: Maintained
4835 F: Documentation/hwmon/corsair-psu.rst
4836 F: drivers/hwmon/corsair-psu.c
4837
4838 COSA/SRP SYNC SERIAL DRIVER
4839 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4840 S: Maintained
4841 W: http://www.fi.muni.cz/~kas/cosa/
4842 F: drivers/net/wan/cosa*
4843
4844 COUNTER SUBSYSTEM
4845 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4846 L: linux-iio@vger.kernel.org
4847 S: Maintained
4848 F: Documentation/ABI/testing/sysfs-bus-counter
4849 F: Documentation/driver-api/generic-counter.rst
4850 F: drivers/counter/
4851 F: include/linux/counter.h
4852 F: include/linux/counter_enum.h
4853
4854 CP2615 I2C DRIVER
4855 M: Bence Csókás <bence98@sch.bme.hu>
4856 S: Maintained
4857 F: drivers/i2c/busses/i2c-cp2615.c
4858
4859 CPMAC ETHERNET DRIVER
4860 M: Florian Fainelli <f.fainelli@gmail.com>
4861 L: netdev@vger.kernel.org
4862 S: Maintained
4863 F: drivers/net/ethernet/ti/cpmac.c
4864
4865 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4866 M: Viresh Kumar <viresh.kumar@linaro.org>
4867 M: Sudeep Holla <sudeep.holla@arm.com>
4868 L: linux-pm@vger.kernel.org
4869 S: Maintained
4870 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4871 F: drivers/cpufreq/vexpress-spc-cpufreq.c
4872
4873 CPU FREQUENCY SCALING FRAMEWORK
4874 M: "Rafael J. Wysocki" <rafael@kernel.org>
4875 M: Viresh Kumar <viresh.kumar@linaro.org>
4876 L: linux-pm@vger.kernel.org
4877 S: Maintained
4878 B: https://bugzilla.kernel.org
4879 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4880 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4881 F: Documentation/admin-guide/pm/cpufreq.rst
4882 F: Documentation/admin-guide/pm/intel_pstate.rst
4883 F: Documentation/cpu-freq/
4884 F: Documentation/devicetree/bindings/cpufreq/
4885 F: drivers/cpufreq/
4886 F: include/linux/cpufreq.h
4887 F: include/linux/sched/cpufreq.h
4888 F: kernel/sched/cpufreq*.c
4889 F: tools/testing/selftests/cpufreq/
4890
4891 CPU IDLE TIME MANAGEMENT FRAMEWORK
4892 M: "Rafael J. Wysocki" <rafael@kernel.org>
4893 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4894 L: linux-pm@vger.kernel.org
4895 S: Maintained
4896 B: https://bugzilla.kernel.org
4897 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4898 F: Documentation/admin-guide/pm/cpuidle.rst
4899 F: Documentation/driver-api/pm/cpuidle.rst
4900 F: drivers/cpuidle/
4901 F: include/linux/cpuidle.h
4902
4903 CPU POWER MONITORING SUBSYSTEM
4904 M: Thomas Renninger <trenn@suse.com>
4905 M: Shuah Khan <shuah@kernel.org>
4906 M: Shuah Khan <skhan@linuxfoundation.org>
4907 L: linux-pm@vger.kernel.org
4908 S: Maintained
4909 F: tools/power/cpupower/
4910
4911 CPUID/MSR DRIVER
4912 M: "H. Peter Anvin" <hpa@zytor.com>
4913 S: Maintained
4914 F: arch/x86/kernel/cpuid.c
4915 F: arch/x86/kernel/msr.c
4916
4917 CPUIDLE DRIVER - ARM BIG LITTLE
4918 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4919 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4920 L: linux-pm@vger.kernel.org
4921 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4922 S: Maintained
4923 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4924 F: drivers/cpuidle/cpuidle-big_little.c
4925
4926 CPUIDLE DRIVER - ARM EXYNOS
4927 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4928 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4929 M: Kukjin Kim <kgene@kernel.org>
4930 L: linux-pm@vger.kernel.org
4931 L: linux-samsung-soc@vger.kernel.org
4932 S: Supported
4933 F: arch/arm/mach-exynos/pm.c
4934 F: drivers/cpuidle/cpuidle-exynos.c
4935 F: include/linux/platform_data/cpuidle-exynos.h
4936
4937 CPUIDLE DRIVER - ARM PSCI
4938 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4939 M: Sudeep Holla <sudeep.holla@arm.com>
4940 L: linux-pm@vger.kernel.org
4941 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4942 S: Supported
4943 F: drivers/cpuidle/cpuidle-psci.c
4944
4945 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4946 M: Ulf Hansson <ulf.hansson@linaro.org>
4947 L: linux-pm@vger.kernel.org
4948 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4949 S: Supported
4950 F: drivers/cpuidle/cpuidle-psci.h
4951 F: drivers/cpuidle/cpuidle-psci-domain.c
4952
4953 CRAMFS FILESYSTEM
4954 M: Nicolas Pitre <nico@fluxnic.net>
4955 S: Maintained
4956 F: Documentation/filesystems/cramfs.rst
4957 F: fs/cramfs/
4958
4959 CREATIVE SB0540
4960 M: Bastien Nocera <hadess@hadess.net>
4961 L: linux-input@vger.kernel.org
4962 S: Maintained
4963 F: drivers/hid/hid-creative-sb0540.c
4964
4965 CRYPTO API
4966 M: Herbert Xu <herbert@gondor.apana.org.au>
4967 M: "David S. Miller" <davem@davemloft.net>
4968 L: linux-crypto@vger.kernel.org
4969 S: Maintained
4970 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4971 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4972 F: Documentation/crypto/
4973 F: Documentation/devicetree/bindings/crypto/
4974 F: arch/*/crypto/
4975 F: crypto/
4976 F: drivers/crypto/
4977 F: include/crypto/
4978 F: include/linux/crypto*
4979 F: lib/crypto/
4980
4981 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4982 M: Neil Horman <nhorman@tuxdriver.com>
4983 L: linux-crypto@vger.kernel.org
4984 S: Maintained
4985 F: crypto/ansi_cprng.c
4986 F: crypto/rng.c
4987
4988 CS3308 MEDIA DRIVER
4989 M: Hans Verkuil <hverkuil@xs4all.nl>
4990 L: linux-media@vger.kernel.org
4991 S: Odd Fixes
4992 W: http://linuxtv.org
4993 T: git git://linuxtv.org/media_tree.git
4994 F: drivers/media/i2c/cs3308.c
4995
4996 CS5535 Audio ALSA driver
4997 M: Jaya Kumar <jayakumar.alsa@gmail.com>
4998 S: Maintained
4999 F: sound/pci/cs5535audio/
5000
5001 CSI DRIVERS FOR ALLWINNER V3s
5002 M: Yong Deng <yong.deng@magewell.com>
5003 L: linux-media@vger.kernel.org
5004 S: Maintained
5005 T: git git://linuxtv.org/media_tree.git
5006 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5007 F: drivers/media/platform/sunxi/sun6i-csi/
5008
5009 CW1200 WLAN driver
5010 M: Solomon Peachy <pizza@shaftnet.org>
5011 S: Maintained
5012 F: drivers/net/wireless/st/cw1200/
5013
5014 CX18 VIDEO4LINUX DRIVER
5015 M: Andy Walls <awalls@md.metrocast.net>
5016 L: linux-media@vger.kernel.org
5017 S: Maintained
5018 W: https://linuxtv.org
5019 T: git git://linuxtv.org/media_tree.git
5020 F: drivers/media/pci/cx18/
5021 F: include/uapi/linux/ivtv*
5022
5023 CX2341X MPEG ENCODER HELPER MODULE
5024 M: Hans Verkuil <hverkuil@xs4all.nl>
5025 L: linux-media@vger.kernel.org
5026 S: Maintained
5027 W: https://linuxtv.org
5028 T: git git://linuxtv.org/media_tree.git
5029 F: drivers/media/common/cx2341x*
5030 F: include/media/drv-intf/cx2341x.h
5031
5032 CX24120 MEDIA DRIVER
5033 M: Jemma Denson <jdenson@gmail.com>
5034 M: Patrick Boettcher <patrick.boettcher@posteo.de>
5035 L: linux-media@vger.kernel.org
5036 S: Maintained
5037 W: https://linuxtv.org
5038 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5039 F: drivers/media/dvb-frontends/cx24120*
5040
5041 CX88 VIDEO4LINUX DRIVER
5042 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5043 L: linux-media@vger.kernel.org
5044 S: Odd fixes
5045 W: https://linuxtv.org
5046 T: git git://linuxtv.org/media_tree.git
5047 F: Documentation/driver-api/media/drivers/cx88*
5048 F: drivers/media/pci/cx88/
5049
5050 CXD2820R MEDIA DRIVER
5051 M: Antti Palosaari <crope@iki.fi>
5052 L: linux-media@vger.kernel.org
5053 S: Maintained
5054 W: https://linuxtv.org
5055 W: http://palosaari.fi/linux/
5056 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5057 T: git git://linuxtv.org/anttip/media_tree.git
5058 F: drivers/media/dvb-frontends/cxd2820r*
5059
5060 CXGB3 ETHERNET DRIVER (CXGB3)
5061 M: Raju Rangoju <rajur@chelsio.com>
5062 L: netdev@vger.kernel.org
5063 S: Supported
5064 W: http://www.chelsio.com
5065 F: drivers/net/ethernet/chelsio/cxgb3/
5066
5067 CXGB3 ISCSI DRIVER (CXGB3I)
5068 M: Karen Xie <kxie@chelsio.com>
5069 L: linux-scsi@vger.kernel.org
5070 S: Supported
5071 W: http://www.chelsio.com
5072 F: drivers/scsi/cxgbi/cxgb3i
5073
5074 CXGB4 CRYPTO DRIVER (chcr)
5075 M: Ayush Sawal <ayush.sawal@chelsio.com>
5076 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5077 M: Rohit Maheshwari <rohitm@chelsio.com>
5078 L: linux-crypto@vger.kernel.org
5079 S: Supported
5080 W: http://www.chelsio.com
5081 F: drivers/crypto/chelsio
5082
5083 CXGB4 INLINE CRYPTO DRIVER
5084 M: Ayush Sawal <ayush.sawal@chelsio.com>
5085 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5086 M: Rohit Maheshwari <rohitm@chelsio.com>
5087 L: netdev@vger.kernel.org
5088 S: Supported
5089 W: http://www.chelsio.com
5090 F: drivers/net/ethernet/chelsio/inline_crypto/
5091
5092 CXGB4 ETHERNET DRIVER (CXGB4)
5093 M: Raju Rangoju <rajur@chelsio.com>
5094 L: netdev@vger.kernel.org
5095 S: Supported
5096 W: http://www.chelsio.com
5097 F: drivers/net/ethernet/chelsio/cxgb4/
5098
5099 CXGB4 ISCSI DRIVER (CXGB4I)
5100 M: Karen Xie <kxie@chelsio.com>
5101 L: linux-scsi@vger.kernel.org
5102 S: Supported
5103 W: http://www.chelsio.com
5104 F: drivers/scsi/cxgbi/cxgb4i
5105
5106 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5107 M: Potnuri Bharat Teja <bharat@chelsio.com>
5108 L: linux-rdma@vger.kernel.org
5109 S: Supported
5110 W: http://www.openfabrics.org
5111 F: drivers/infiniband/hw/cxgb4/
5112 F: include/uapi/rdma/cxgb4-abi.h
5113
5114 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5115 M: Raju Rangoju <rajur@chelsio.com>
5116 L: netdev@vger.kernel.org
5117 S: Supported
5118 W: http://www.chelsio.com
5119 F: drivers/net/ethernet/chelsio/cxgb4vf/
5120
5121 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5122 M: Frederic Barrat <fbarrat@linux.ibm.com>
5123 M: Andrew Donnellan <ajd@linux.ibm.com>
5124 L: linuxppc-dev@lists.ozlabs.org
5125 S: Supported
5126 F: Documentation/ABI/testing/sysfs-class-cxl
5127 F: Documentation/powerpc/cxl.rst
5128 F: arch/powerpc/platforms/powernv/pci-cxl.c
5129 F: drivers/misc/cxl/
5130 F: include/misc/cxl*
5131 F: include/uapi/misc/cxl.h
5132
5133 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5134 M: Manoj N. Kumar <manoj@linux.ibm.com>
5135 M: Matthew R. Ochs <mrochs@linux.ibm.com>
5136 M: Uma Krishnan <ukrishn@linux.ibm.com>
5137 L: linux-scsi@vger.kernel.org
5138 S: Supported
5139 F: Documentation/powerpc/cxlflash.rst
5140 F: drivers/scsi/cxlflash/
5141 F: include/uapi/scsi/cxlflash_ioctl.h
5142
5143 CYBERPRO FB DRIVER
5144 M: Russell King <linux@armlinux.org.uk>
5145 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5146 S: Maintained
5147 W: http://www.armlinux.org.uk/
5148 F: drivers/video/fbdev/cyber2000fb.*
5149
5150 CYCLADES PC300 DRIVER
5151 S: Orphan
5152 F: drivers/net/wan/pc300*
5153
5154 CYPRESS_FIRMWARE MEDIA DRIVER
5155 M: Antti Palosaari <crope@iki.fi>
5156 L: linux-media@vger.kernel.org
5157 S: Maintained
5158 W: https://linuxtv.org
5159 W: http://palosaari.fi/linux/
5160 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5161 T: git git://linuxtv.org/anttip/media_tree.git
5162 F: drivers/media/common/cypress_firmware*
5163
5164 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5165 M: Linus Walleij <linus.walleij@linaro.org>
5166 L: linux-input@vger.kernel.org
5167 S: Maintained
5168 F: drivers/input/touchscreen/cy8ctma140.c
5169
5170 CYTTSP TOUCHSCREEN DRIVER
5171 M: Linus Walleij <linus.walleij@linaro.org>
5172 L: linux-input@vger.kernel.org
5173 S: Maintained
5174 F: drivers/input/touchscreen/cyttsp*
5175
5176 D-LINK DIR-685 TOUCHKEYS DRIVER
5177 M: Linus Walleij <linus.walleij@linaro.org>
5178 L: linux-input@vger.kernel.org
5179 S: Supported
5180 F: drivers/input/keyboard/dlink-dir685-touchkeys.c
5181
5182 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5183 M: Joshua Kinard <kumba@gentoo.org>
5184 S: Maintained
5185 F: drivers/rtc/rtc-ds1685.c
5186 F: include/linux/rtc/ds1685.h
5187
5188 DAMA SLAVE for AX.25
5189 M: Joerg Reuter <jreuter@yaina.de>
5190 L: linux-hams@vger.kernel.org
5191 S: Maintained
5192 W: http://yaina.de/jreuter/
5193 W: http://www.qsl.net/dl1bke/
5194 F: net/ax25/af_ax25.c
5195 F: net/ax25/ax25_dev.c
5196 F: net/ax25/ax25_ds_*
5197 F: net/ax25/ax25_in.c
5198 F: net/ax25/ax25_out.c
5199 F: net/ax25/ax25_timer.c
5200 F: net/ax25/sysctl_net_ax25.c
5201
5202 DATA ACCESS MONITOR
5203 M: SeongJae Park <sjpark@amazon.de>
5204 L: linux-mm@kvack.org
5205 S: Maintained
5206 F: Documentation/admin-guide/mm/damon/
5207 F: Documentation/vm/damon/
5208 F: include/linux/damon.h
5209 F: include/trace/events/damon.h
5210 F: mm/damon/
5211 F: tools/testing/selftests/damon/
5212
5213 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5214 L: netdev@vger.kernel.org
5215 S: Orphan
5216 F: Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5217 F: drivers/net/ethernet/dec/tulip/dmfe.c
5218
5219 DC390/AM53C974 SCSI driver
5220 M: Hannes Reinecke <hare@suse.com>
5221 L: linux-scsi@vger.kernel.org
5222 S: Maintained
5223 F: drivers/scsi/am53c974.c
5224
5225 DC395x SCSI driver
5226 M: Oliver Neukum <oliver@neukum.org>
5227 M: Ali Akcaagac <aliakc@web.de>
5228 M: Jamie Lenehan <lenehan@twibble.org>
5229 L: dc395x@twibble.org
5230 S: Maintained
5231 W: http://twibble.org/dist/dc395x/
5232 W: http://lists.twibble.org/mailman/listinfo/dc395x/
5233 F: Documentation/scsi/dc395x.rst
5234 F: drivers/scsi/dc395x.*
5235
5236 DCCP PROTOCOL
5237 L: dccp@vger.kernel.org
5238 S: Orphan
5239 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5240 F: include/linux/dccp.h
5241 F: include/linux/tfrc.h
5242 F: include/uapi/linux/dccp.h
5243 F: net/dccp/
5244
5245 DECnet NETWORK LAYER
5246 L: linux-decnet-user@lists.sourceforge.net
5247 S: Orphan
5248 W: http://linux-decnet.sourceforge.net
5249 F: Documentation/networking/decnet.rst
5250 F: net/decnet/
5251
5252 DECSTATION PLATFORM SUPPORT
5253 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5254 L: linux-mips@vger.kernel.org
5255 S: Maintained
5256 W: http://www.linux-mips.org/wiki/DECstation
5257 F: arch/mips/dec/
5258 F: arch/mips/include/asm/dec/
5259 F: arch/mips/include/asm/mach-dec/
5260
5261 DEFXX FDDI NETWORK DRIVER
5262 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5263 S: Maintained
5264 F: drivers/net/fddi/defxx.*
5265
5266 DEFZA FDDI NETWORK DRIVER
5267 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
5268 S: Maintained
5269 F: drivers/net/fddi/defza.*
5270
5271 DEINTERLACE DRIVERS FOR ALLWINNER H3
5272 M: Jernej Skrabec <jernej.skrabec@gmail.com>
5273 L: linux-media@vger.kernel.org
5274 S: Maintained
5275 T: git git://linuxtv.org/media_tree.git
5276 F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5277 F: drivers/media/platform/sunxi/sun8i-di/
5278
5279 DELL LAPTOP DRIVER
5280 M: Matthew Garrett <mjg59@srcf.ucam.org>
5281 M: Pali Rohár <pali@kernel.org>
5282 L: platform-driver-x86@vger.kernel.org
5283 S: Maintained
5284 F: drivers/platform/x86/dell/dell-laptop.c
5285
5286 DELL LAPTOP FREEFALL DRIVER
5287 M: Pali Rohár <pali@kernel.org>
5288 S: Maintained
5289 F: drivers/platform/x86/dell/dell-smo8800.c
5290
5291 DELL LAPTOP RBTN DRIVER
5292 M: Pali Rohár <pali@kernel.org>
5293 S: Maintained
5294 F: drivers/platform/x86/dell/dell-rbtn.*
5295
5296 DELL LAPTOP SMM DRIVER
5297 M: Pali Rohár <pali@kernel.org>
5298 S: Maintained
5299 F: drivers/hwmon/dell-smm-hwmon.c
5300 F: include/uapi/linux/i8k.h
5301
5302 DELL REMOTE BIOS UPDATE DRIVER
5303 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5304 L: platform-driver-x86@vger.kernel.org
5305 S: Maintained
5306 F: drivers/platform/x86/dell/dell_rbu.c
5307
5308 DELL SMBIOS DRIVER
5309 M: Pali Rohár <pali@kernel.org>
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.*
5314
5315 DELL SMBIOS SMM DRIVER
5316 L: Dell.Client.Kernel@dell.com
5317 L: platform-driver-x86@vger.kernel.org
5318 S: Maintained
5319 F: drivers/platform/x86/dell/dell-smbios-smm.c
5320
5321 DELL SMBIOS WMI DRIVER
5322 L: Dell.Client.Kernel@dell.com
5323 L: platform-driver-x86@vger.kernel.org
5324 S: Maintained
5325 F: drivers/platform/x86/dell/dell-smbios-wmi.c
5326 F: tools/wmi/dell-smbios-example.c
5327
5328 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5329 M: Stuart Hayes <stuart.w.hayes@gmail.com>
5330 L: platform-driver-x86@vger.kernel.org
5331 S: Maintained
5332 F: Documentation/driver-api/dcdbas.rst
5333 F: drivers/platform/x86/dell/dcdbas.*
5334
5335 DELL WMI DESCRIPTOR DRIVER
5336 L: Dell.Client.Kernel@dell.com
5337 S: Maintained
5338 F: drivers/platform/x86/dell/dell-wmi-descriptor.c
5339
5340 DELL WMI SYSMAN DRIVER
5341 M: Divya Bharathi <divya.bharathi@dell.com>
5342 M: Prasanth Ksr <prasanth.ksr@dell.com>
5343 L: Dell.Client.Kernel@dell.com
5344 L: platform-driver-x86@vger.kernel.org
5345 S: Maintained
5346 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
5347 F: drivers/platform/x86/dell/dell-wmi-sysman/
5348
5349 DELL WMI NOTIFICATIONS DRIVER
5350 M: Matthew Garrett <mjg59@srcf.ucam.org>
5351 M: Pali Rohár <pali@kernel.org>
5352 S: Maintained
5353 F: drivers/platform/x86/dell/dell-wmi-base.c
5354
5355 DELL WMI HARDWARE PRIVACY SUPPORT
5356 M: Perry Yuan <Perry.Yuan@dell.com>
5357 L: Dell.Client.Kernel@dell.com
5358 L: platform-driver-x86@vger.kernel.org
5359 S: Maintained
5360 F: drivers/platform/x86/dell/dell-wmi-privacy.c
5361
5362 DELTA ST MEDIA DRIVER
5363 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
5364 L: linux-media@vger.kernel.org
5365 S: Supported
5366 W: https://linuxtv.org
5367 T: git git://linuxtv.org/media_tree.git
5368 F: drivers/media/platform/sti/delta
5369
5370 DELTA DPS920AB PSU DRIVER
5371 M: Robert Marko <robert.marko@sartura.hr>
5372 L: linux-hwmon@vger.kernel.org
5373 S: Maintained
5374 F: Documentation/hwmon/dps920ab.rst
5375 F: drivers/hwmon/pmbus/dps920ab.c
5376
5377 DENALI NAND DRIVER
5378 L: linux-mtd@lists.infradead.org
5379 S: Orphan
5380 F: drivers/mtd/nand/raw/denali*
5381
5382 DESIGNWARE EDMA CORE IP DRIVER
5383 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5384 L: dmaengine@vger.kernel.org
5385 S: Maintained
5386 F: drivers/dma/dw-edma/
5387 F: include/linux/dma/edma.h
5388
5389 DESIGNWARE XDATA IP DRIVER
5390 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5391 L: linux-pci@vger.kernel.org
5392 S: Maintained
5393 F: Documentation/misc-devices/dw-xdata-pcie.rst
5394 F: drivers/misc/dw-xdata-pcie.c
5395
5396 DESIGNWARE USB2 DRD IP DRIVER
5397 M: Minas Harutyunyan <hminas@synopsys.com>
5398 L: linux-usb@vger.kernel.org
5399 S: Maintained
5400 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5401 F: drivers/usb/dwc2/
5402
5403 DESIGNWARE USB3 DRD IP DRIVER
5404 M: Felipe Balbi <balbi@kernel.org>
5405 L: linux-usb@vger.kernel.org
5406 S: Maintained
5407 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5408 F: drivers/usb/dwc3/
5409
5410 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5411 M: Andreas Klinger <ak@it-klinger.de>
5412 L: linux-iio@vger.kernel.org
5413 S: Maintained
5414 F: Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5415 F: drivers/iio/proximity/srf*.c
5416
5417 DEVICE COREDUMP (DEV_COREDUMP)
5418 M: Johannes Berg <johannes@sipsolutions.net>
5419 L: linux-kernel@vger.kernel.org
5420 S: Maintained
5421 F: drivers/base/devcoredump.c
5422 F: include/linux/devcoredump.h
5423
5424 DEVICE DEPENDENCY HELPER SCRIPT
5425 M: Saravana Kannan <saravanak@google.com>
5426 L: linux-kernel@vger.kernel.org
5427 S: Maintained
5428 F: scripts/dev-needs.sh
5429
5430 DEVICE DIRECT ACCESS (DAX)
5431 M: Dan Williams <dan.j.williams@intel.com>
5432 M: Vishal Verma <vishal.l.verma@intel.com>
5433 M: Dave Jiang <dave.jiang@intel.com>
5434 L: nvdimm@lists.linux.dev
5435 S: Supported
5436 F: drivers/dax/
5437
5438 DEVICE FREQUENCY (DEVFREQ)
5439 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5440 M: Kyungmin Park <kyungmin.park@samsung.com>
5441 M: Chanwoo Choi <cw00.choi@samsung.com>
5442 L: linux-pm@vger.kernel.org
5443 S: Maintained
5444 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5445 F: Documentation/devicetree/bindings/devfreq/
5446 F: drivers/devfreq/
5447 F: include/linux/devfreq.h
5448 F: include/trace/events/devfreq.h
5449
5450 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5451 M: Chanwoo Choi <cw00.choi@samsung.com>
5452 L: linux-pm@vger.kernel.org
5453 S: Supported
5454 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5455 F: Documentation/devicetree/bindings/devfreq/event/
5456 F: drivers/devfreq/devfreq-event.c
5457 F: drivers/devfreq/event/
5458 F: include/dt-bindings/pmu/exynos_ppmu.h
5459 F: include/linux/devfreq-event.h
5460
5461 DEVICE NUMBER REGISTRY
5462 M: Torben Mathiasen <device@lanana.org>
5463 S: Maintained
5464 W: http://lanana.org/docs/device-list/index.html
5465
5466 DEVICE RESOURCE MANAGEMENT HELPERS
5467 M: Hans de Goede <hdegoede@redhat.com>
5468 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5469 S: Maintained
5470 F: include/linux/devm-helpers.h
5471
5472 DEVICE-MAPPER (LVM)
5473 M: Alasdair Kergon <agk@redhat.com>
5474 M: Mike Snitzer <snitzer@redhat.com>
5475 M: dm-devel@redhat.com
5476 L: dm-devel@redhat.com
5477 S: Maintained
5478 W: http://sources.redhat.com/dm
5479 Q: http://patchwork.kernel.org/project/dm-devel/list/
5480 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5481 T: quilt http://people.redhat.com/agk/patches/linux/editing/
5482 F: Documentation/admin-guide/device-mapper/
5483 F: drivers/md/Kconfig
5484 F: drivers/md/Makefile
5485 F: drivers/md/dm*
5486 F: drivers/md/persistent-data/
5487 F: include/linux/device-mapper.h
5488 F: include/linux/dm-*.h
5489 F: include/uapi/linux/dm-*.h
5490
5491 DEVLINK
5492 M: Jiri Pirko <jiri@nvidia.com>
5493 L: netdev@vger.kernel.org
5494 S: Supported
5495 F: Documentation/networking/devlink
5496 F: include/net/devlink.h
5497 F: include/uapi/linux/devlink.h
5498 F: net/core/devlink.c
5499
5500 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5501 M: Christoph Niedermaier <cniedermaier@dh-electronics.com>
5502 L: kernel@dh-electronics.com
5503 S: Maintained
5504 F: arch/arm/boot/dts/imx6*-dhcom-*
5505
5506 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5507 M: Marek Vasut <marex@denx.de>
5508 L: kernel@dh-electronics.com
5509 S: Maintained
5510 F: arch/arm/boot/dts/stm32mp1*-dhcom-*
5511 F: arch/arm/boot/dts/stm32mp1*-dhcor-*
5512
5513 DIALOG SEMICONDUCTOR DRIVERS
5514 M: Support Opensource <support.opensource@diasemi.com>
5515 S: Supported
5516 W: http://www.dialog-semiconductor.com/products
5517 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
5518 F: Documentation/devicetree/bindings/input/dlg,da72??.txt
5519 F: Documentation/devicetree/bindings/mfd/da90*.txt
5520 F: Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5521 F: Documentation/devicetree/bindings/regulator/da92*.txt
5522 F: Documentation/devicetree/bindings/regulator/slg51000.txt
5523 F: Documentation/devicetree/bindings/sound/da[79]*.txt
5524 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5525 F: Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5526 F: Documentation/hwmon/da90??.rst
5527 F: drivers/gpio/gpio-da90??.c
5528 F: drivers/hwmon/da90??-hwmon.c
5529 F: drivers/iio/adc/da91??-*.c
5530 F: drivers/input/misc/da72??.[ch]
5531 F: drivers/input/misc/da90??_onkey.c
5532 F: drivers/input/touchscreen/da9052_tsi.c
5533 F: drivers/leds/leds-da90??.c
5534 F: drivers/mfd/da903x.c
5535 F: drivers/mfd/da90??-*.c
5536 F: drivers/mfd/da91??-*.c
5537 F: drivers/pinctrl/pinctrl-da90??.c
5538 F: drivers/power/supply/da9052-battery.c
5539 F: drivers/power/supply/da91??-*.c
5540 F: drivers/regulator/da9???-regulator.[ch]
5541 F: drivers/regulator/slg51000-regulator.[ch]
5542 F: drivers/rtc/rtc-da90??.c
5543 F: drivers/thermal/da90??-thermal.c
5544 F: drivers/video/backlight/da90??_bl.c
5545 F: drivers/watchdog/da90??_wdt.c
5546 F: include/dt-bindings/regulator/dlg,da9*-regulator.h
5547 F: include/linux/mfd/da903x.h
5548 F: include/linux/mfd/da9052/
5549 F: include/linux/mfd/da9055/
5550 F: include/linux/mfd/da9062/
5551 F: include/linux/mfd/da9063/
5552 F: include/linux/mfd/da9150/
5553 F: include/linux/regulator/da9211.h
5554 F: include/sound/da[79]*.h
5555 F: sound/soc/codecs/da[79]*.[ch]
5556
5557 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5558 M: William Breathitt Gray <vilhelm.gray@gmail.com>
5559 L: linux-gpio@vger.kernel.org
5560 S: Maintained
5561 F: drivers/gpio/gpio-gpio-mm.c
5562
5563 DIOLAN U2C-12 I2C DRIVER
5564 M: Guenter Roeck <linux@roeck-us.net>
5565 L: linux-i2c@vger.kernel.org
5566 S: Maintained
5567 F: drivers/i2c/busses/i2c-diolan-u2c.c
5568
5569 DIRECTORY NOTIFICATION (DNOTIFY)
5570 M: Jan Kara <jack@suse.cz>
5571 R: Amir Goldstein <amir73il@gmail.com>
5572 L: linux-fsdevel@vger.kernel.org
5573 S: Maintained
5574 F: Documentation/filesystems/dnotify.rst
5575 F: fs/notify/dnotify/
5576 F: include/linux/dnotify.h
5577
5578 DISK GEOMETRY AND PARTITION HANDLING
5579 M: Andries Brouwer <aeb@cwi.nl>
5580 S: Maintained
5581 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5582 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5583 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5584
5585 DISKQUOTA
5586 M: Jan Kara <jack@suse.com>
5587 S: Maintained
5588 F: Documentation/filesystems/quota.rst
5589 F: fs/quota/
5590 F: include/linux/quota*.h
5591 F: include/uapi/linux/quota*.h
5592
5593 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5594 M: Bernie Thompson <bernie@plugable.com>
5595 L: linux-fbdev@vger.kernel.org
5596 S: Maintained
5597 W: http://plugable.com/category/projects/udlfb/
5598 F: Documentation/fb/udlfb.rst
5599 F: drivers/video/fbdev/udlfb.c
5600 F: include/video/udlfb.h
5601
5602 DISTRIBUTED LOCK MANAGER (DLM)
5603 M: Christine Caulfield <ccaulfie@redhat.com>
5604 M: David Teigland <teigland@redhat.com>
5605 L: cluster-devel@redhat.com
5606 S: Supported
5607 W: http://sources.redhat.com/cluster/
5608 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5609 F: fs/dlm/
5610
5611 DMA BUFFER SHARING FRAMEWORK
5612 M: Sumit Semwal <sumit.semwal@linaro.org>
5613 M: Christian König <christian.koenig@amd.com>
5614 L: linux-media@vger.kernel.org
5615 L: dri-devel@lists.freedesktop.org
5616 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5617 S: Maintained
5618 T: git git://anongit.freedesktop.org/drm/drm-misc
5619 F: Documentation/driver-api/dma-buf.rst
5620 F: drivers/dma-buf/
5621 F: include/linux/*fence.h
5622 F: include/linux/dma-buf*
5623 F: include/linux/dma-resv.h
5624 K: \bdma_(?:buf|fence|resv)\b
5625
5626 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5627 M: Vinod Koul <vkoul@kernel.org>
5628 L: dmaengine@vger.kernel.org
5629 S: Maintained
5630 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5631 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5632 F: Documentation/devicetree/bindings/dma/
5633 F: Documentation/driver-api/dmaengine/
5634 F: drivers/dma/
5635 F: include/linux/dma/
5636 F: include/linux/dmaengine.h
5637 F: include/linux/of_dma.h
5638
5639 DMA MAPPING HELPERS
5640 M: Christoph Hellwig <hch@lst.de>
5641 M: Marek Szyprowski <m.szyprowski@samsung.com>
5642 R: Robin Murphy <robin.murphy@arm.com>
5643 L: iommu@lists.linux-foundation.org
5644 L: iommu@lists.linux.dev
5645 S: Supported
5646 W: http://git.infradead.org/users/hch/dma-mapping.git
5647 T: git git://git.infradead.org/users/hch/dma-mapping.git
5648 F: include/asm-generic/dma-mapping.h
5649 F: include/linux/dma-direct.h
5650 F: include/linux/dma-mapping.h
5651 F: include/linux/dma-map-ops.h
5652 F: kernel/dma/
5653
5654 DMA MAPPING BENCHMARK
5655 M: Barry Song <song.bao.hua@hisilicon.com>
5656 L: iommu@lists.linux-foundation.org
5657 L: iommu@lists.linux.dev
5658 F: kernel/dma/map_benchmark.c
5659 F: tools/testing/selftests/dma/
5660
5661 DMA-BUF HEAPS FRAMEWORK
5662 M: Sumit Semwal <sumit.semwal@linaro.org>
5663 R: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5664 R: Liam Mark <lmark@codeaurora.org>
5665 R: Laura Abbott <labbott@redhat.com>
5666 R: Brian Starkey <Brian.Starkey@arm.com>
5667 R: John Stultz <john.stultz@linaro.org>
5668 L: linux-media@vger.kernel.org
5669 L: dri-devel@lists.freedesktop.org
5670 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5671 S: Maintained
5672 T: git git://anongit.freedesktop.org/drm/drm-misc
5673 F: drivers/dma-buf/dma-heap.c
5674 F: drivers/dma-buf/heaps/*
5675 F: include/linux/dma-heap.h
5676 F: include/uapi/linux/dma-heap.h
5677
5678 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5679 M: Lukasz Luba <lukasz.luba@arm.com>
5680 L: linux-pm@vger.kernel.org
5681 L: linux-samsung-soc@vger.kernel.org
5682 S: Maintained
5683 F: Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5684 F: drivers/memory/samsung/exynos5422-dmc.c
5685
5686 DME1737 HARDWARE MONITOR DRIVER
5687 M: Juerg Haefliger <juergh@gmail.com>
5688 L: linux-hwmon@vger.kernel.org
5689 S: Maintained
5690 F: Documentation/hwmon/dme1737.rst
5691 F: drivers/hwmon/dme1737.c
5692
5693 DMI/SMBIOS SUPPORT
5694 M: Jean Delvare <jdelvare@suse.com>
5695 S: Maintained
5696 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5697 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
5698 F: drivers/firmware/dmi-id.c
5699 F: drivers/firmware/dmi_scan.c
5700 F: include/linux/dmi.h
5701
5702 DOCUMENTATION
5703 M: Jonathan Corbet <corbet@lwn.net>
5704 L: linux-doc@vger.kernel.org
5705 S: Maintained
5706 P: Documentation/doc-guide/maintainer-profile.rst
5707 T: git git://git.lwn.net/linux.git docs-next
5708 F: Documentation/
5709 F: scripts/documentation-file-ref-check
5710 F: scripts/kernel-doc
5711 F: scripts/sphinx-pre-install
5712 X: Documentation/ABI/
5713 X: Documentation/admin-guide/media/
5714 X: Documentation/devicetree/
5715 X: Documentation/driver-api/media/
5716 X: Documentation/firmware-guide/acpi/
5717 X: Documentation/i2c/
5718 X: Documentation/power/
5719 X: Documentation/spi/
5720 X: Documentation/userspace-api/media/
5721
5722 DOCUMENTATION REPORTING ISSUES
5723 M: Thorsten Leemhuis <linux@leemhuis.info>
5724 L: linux-doc@vger.kernel.org
5725 S: Maintained
5726 F: Documentation/admin-guide/reporting-issues.rst
5727
5728 DOCUMENTATION SCRIPTS
5729 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5730 L: linux-doc@vger.kernel.org
5731 S: Maintained
5732 F: Documentation/sphinx/parse-headers.pl
5733 F: scripts/documentation-file-ref-check
5734 F: scripts/sphinx-pre-install
5735
5736 DOCUMENTATION/ITALIAN
5737 M: Federico Vaga <federico.vaga@vaga.pv.it>
5738 L: linux-doc@vger.kernel.org
5739 S: Maintained
5740 F: Documentation/translations/it_IT
5741
5742 DONGWOON DW9714 LENS VOICE COIL DRIVER
5743 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5744 L: linux-media@vger.kernel.org
5745 S: Maintained
5746 T: git git://linuxtv.org/media_tree.git
5747 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5748 F: drivers/media/i2c/dw9714.c
5749
5750 DONGWOON DW9768 LENS VOICE COIL DRIVER
5751 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
5752 L: linux-media@vger.kernel.org
5753 S: Maintained
5754 T: git git://linuxtv.org/media_tree.git
5755 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5756 F: drivers/media/i2c/dw9768.c
5757
5758 DONGWOON DW9807 LENS VOICE COIL DRIVER
5759 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5760 L: linux-media@vger.kernel.org
5761 S: Maintained
5762 T: git git://linuxtv.org/media_tree.git
5763 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5764 F: drivers/media/i2c/dw9807-vcm.c
5765
5766 DOUBLETALK DRIVER
5767 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
5768 L: blinux-list@redhat.com
5769 S: Maintained
5770 F: drivers/char/dtlk.c
5771 F: include/linux/dtlk.h
5772
5773 DPAA2 DATAPATH I/O (DPIO) DRIVER
5774 M: Roy Pledge <Roy.Pledge@nxp.com>
5775 L: linux-kernel@vger.kernel.org
5776 S: Maintained
5777 F: drivers/soc/fsl/dpio
5778
5779 DPAA2 ETHERNET 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/ethernet-driver.rst
5784 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5785 F: drivers/net/ethernet/freescale/dpaa2/Kconfig
5786 F: drivers/net/ethernet/freescale/dpaa2/Makefile
5787 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5788 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5789 F: drivers/net/ethernet/freescale/dpaa2/dpkg.h
5790 F: drivers/net/ethernet/freescale/dpaa2/dpmac*
5791 F: drivers/net/ethernet/freescale/dpaa2/dpni*
5792
5793 DPAA2 ETHERNET SWITCH DRIVER
5794 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5795 L: netdev@vger.kernel.org
5796 S: Maintained
5797 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5798 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5799 F: drivers/net/ethernet/freescale/dpaa2/dpsw*
5800
5801 DPT_I2O SCSI RAID DRIVER
5802 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5803 L: linux-scsi@vger.kernel.org
5804 S: Maintained
5805 W: http://www.adaptec.com/
5806 F: drivers/scsi/dpt*
5807 F: drivers/scsi/dpt/
5808
5809 DRBD DRIVER
5810 M: Philipp Reisner <philipp.reisner@linbit.com>
5811 M: Lars Ellenberg <lars.ellenberg@linbit.com>
5812 L: drbd-dev@lists.linbit.com
5813 S: Supported
5814 W: http://www.drbd.org
5815 T: git git://git.linbit.com/linux-drbd.git
5816 T: git git://git.linbit.com/drbd-8.4.git
5817 F: Documentation/admin-guide/blockdev/
5818 F: drivers/block/drbd/
5819 F: lib/lru_cache.c
5820
5821 DRIVER COMPONENT FRAMEWORK
5822 L: dri-devel@lists.freedesktop.org
5823 F: drivers/base/component.c
5824 F: include/linux/component.h
5825
5826 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5827 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5828 R: "Rafael J. Wysocki" <rafael@kernel.org>
5829 S: Supported
5830 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5831 F: Documentation/core-api/kobject.rst
5832 F: drivers/base/
5833 F: fs/debugfs/
5834 F: fs/sysfs/
5835 F: include/linux/debugfs.h
5836 F: include/linux/kobj*
5837 F: lib/kobj*
5838
5839 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5840 M: Nishanth Menon <nm@ti.com>
5841 L: linux-pm@vger.kernel.org
5842 S: Maintained
5843 F: drivers/soc/ti/smartreflex.c
5844 F: include/linux/power/smartreflex.h
5845
5846 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5847 M: Maxime Ripard <mripard@kernel.org>
5848 M: Chen-Yu Tsai <wens@csie.org>
5849 R: Jernej Skrabec <jernej.skrabec@gmail.com>
5850 L: dri-devel@lists.freedesktop.org
5851 S: Supported
5852 T: git git://anongit.freedesktop.org/drm/drm-misc
5853 F: drivers/gpu/drm/sun4i/sun8i*
5854
5855 DRM DRIVER FOR ARM PL111 CLCD
5856 M: Emma Anholt <emma@anholt.net>
5857 S: Supported
5858 T: git git://anongit.freedesktop.org/drm/drm-misc
5859 F: drivers/gpu/drm/pl111/
5860
5861 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5862 M: Linus Walleij <linus.walleij@linaro.org>
5863 S: Maintained
5864 T: git git://anongit.freedesktop.org/drm/drm-misc
5865 F: Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5866 F: drivers/gpu/drm/panel/panel-arm-versatile.c
5867
5868 DRM DRIVER FOR ASPEED BMC GFX
5869 M: Joel Stanley <joel@jms.id.au>
5870 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5871 S: Supported
5872 T: git git://anongit.freedesktop.org/drm/drm-misc
5873 F: Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5874 F: drivers/gpu/drm/aspeed/
5875
5876 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5877 M: Dave Airlie <airlied@redhat.com>
5878 R: Thomas Zimmermann <tzimmermann@suse.de>
5879 L: dri-devel@lists.freedesktop.org
5880 S: Supported
5881 T: git git://anongit.freedesktop.org/drm/drm-misc
5882 F: drivers/gpu/drm/ast/
5883
5884 DRM DRIVER FOR BOCHS VIRTUAL GPU
5885 M: Gerd Hoffmann <kraxel@redhat.com>
5886 L: virtualization@lists.linux-foundation.org
5887 S: Maintained
5888 T: git git://anongit.freedesktop.org/drm/drm-misc
5889 F: drivers/gpu/drm/tiny/bochs.c
5890
5891 DRM DRIVER FOR BOE HIMAX8279D PANELS
5892 M: Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5893 S: Maintained
5894 F: Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5895 F: drivers/gpu/drm/panel/panel-boe-himax8279d.c
5896
5897 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5898 M: Jagan Teki <jagan@amarulasolutions.com>
5899 S: Maintained
5900 F: Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5901 F: drivers/gpu/drm/bridge/chipone-icn6211.c
5902
5903 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5904 M: Linus Walleij <linus.walleij@linaro.org>
5905 S: Maintained
5906 T: git git://anongit.freedesktop.org/drm/drm-misc
5907 F: drivers/gpu/drm/tve200/
5908
5909 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5910 M: Icenowy Zheng <icenowy@aosc.io>
5911 S: Maintained
5912 F: Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5913 F: drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5914
5915 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5916 M: Jagan Teki <jagan@amarulasolutions.com>
5917 S: Maintained
5918 F: Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5919 F: drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5920
5921 DRM DRIVER FOR GENERIC USB DISPLAY
5922 M: Noralf Trønnes <noralf@tronnes.org>
5923 S: Maintained
5924 W: https://github.com/notro/gud/wiki
5925 T: git git://anongit.freedesktop.org/drm/drm-misc
5926 F: drivers/gpu/drm/gud/
5927 F: include/drm/gud.h
5928
5929 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5930 M: Hans de Goede <hdegoede@redhat.com>
5931 S: Maintained
5932 T: git git://anongit.freedesktop.org/drm/drm-misc
5933 F: drivers/gpu/drm/tiny/gm12u320.c
5934
5935 DRM DRIVER FOR HX8357D PANELS
5936 M: Emma Anholt <emma@anholt.net>
5937 S: Maintained
5938 T: git git://anongit.freedesktop.org/drm/drm-misc
5939 F: Documentation/devicetree/bindings/display/himax,hx8357d.txt
5940 F: drivers/gpu/drm/tiny/hx8357d.c
5941
5942 DRM DRIVER FOR ILITEK ILI9225 PANELS
5943 M: David Lechner <david@lechnology.com>
5944 S: Maintained
5945 T: git git://anongit.freedesktop.org/drm/drm-misc
5946 F: Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5947 F: drivers/gpu/drm/tiny/ili9225.c
5948
5949 DRM DRIVER FOR ILITEK ILI9486 PANELS
5950 M: Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5951 S: Maintained
5952 T: git git://anongit.freedesktop.org/drm/drm-misc
5953 F: Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5954 F: drivers/gpu/drm/tiny/ili9486.c
5955
5956 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5957 S: Orphan / Obsolete
5958 F: drivers/gpu/drm/i810/
5959 F: include/uapi/drm/i810_drm.h
5960
5961 DRM DRIVER FOR LVDS PANELS
5962 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5963 L: dri-devel@lists.freedesktop.org
5964 T: git git://anongit.freedesktop.org/drm/drm-misc
5965 S: Maintained
5966 F: drivers/gpu/drm/panel/panel-lvds.c
5967 F: Documentation/devicetree/bindings/display/panel/lvds.yaml
5968
5969 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5970 M: Guido Günther <agx@sigxcpu.org>
5971 R: Purism Kernel Team <kernel@puri.sm>
5972 S: Maintained
5973 F: Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5974 F: drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5975
5976 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5977 S: Orphan / Obsolete
5978 F: drivers/gpu/drm/mga/
5979 F: include/uapi/drm/mga_drm.h
5980
5981 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5982 M: Dave Airlie <airlied@redhat.com>
5983 R: Thomas Zimmermann <tzimmermann@suse.de>
5984 L: dri-devel@lists.freedesktop.org
5985 S: Supported
5986 T: git git://anongit.freedesktop.org/drm/drm-misc
5987 F: drivers/gpu/drm/mgag200/
5988
5989 DRM DRIVER FOR MI0283QT
5990 M: Noralf Trønnes <noralf@tronnes.org>
5991 S: Maintained
5992 T: git git://anongit.freedesktop.org/drm/drm-misc
5993 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5994 F: drivers/gpu/drm/tiny/mi0283qt.c
5995
5996 DRM DRIVER FOR MSM ADRENO GPU
5997 M: Rob Clark <robdclark@gmail.com>
5998 M: Sean Paul <sean@poorly.run>
5999 L: linux-arm-msm@vger.kernel.org
6000 L: dri-devel@lists.freedesktop.org
6001 L: freedreno@lists.freedesktop.org
6002 S: Maintained
6003 T: git https://gitlab.freedesktop.org/drm/msm.git
6004 F: Documentation/devicetree/bindings/display/msm/
6005 F: drivers/gpu/drm/msm/
6006 F: include/uapi/drm/msm_drm.h
6007
6008 DRM DRIVER FOR NOVATEK NT35510 PANELS
6009 M: Linus Walleij <linus.walleij@linaro.org>
6010 S: Maintained
6011 T: git git://anongit.freedesktop.org/drm/drm-misc
6012 F: Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6013 F: drivers/gpu/drm/panel/panel-novatek-nt35510.c
6014
6015 DRM DRIVER FOR NOVATEK NT36672A PANELS
6016 M: Sumit Semwal <sumit.semwal@linaro.org>
6017 S: Maintained
6018 T: git git://anongit.freedesktop.org/drm/drm-misc
6019 F: Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6020 F: drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6021
6022 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6023 M: Ben Skeggs <bskeggs@redhat.com>
6024 L: dri-devel@lists.freedesktop.org
6025 L: nouveau@lists.freedesktop.org
6026 S: Supported
6027 T: git git://github.com/skeggsb/linux
6028 F: drivers/gpu/drm/nouveau/
6029 F: include/uapi/drm/nouveau_drm.h
6030
6031 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6032 M: Stefan Mavrodiev <stefan@olimex.com>
6033 S: Maintained
6034 F: Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6035 F: drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6036
6037 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6038 M: Noralf Trønnes <noralf@tronnes.org>
6039 S: Maintained
6040 T: git git://anongit.freedesktop.org/drm/drm-misc
6041 F: Documentation/devicetree/bindings/display/repaper.txt
6042 F: drivers/gpu/drm/tiny/repaper.c
6043
6044 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6045 M: Dave Airlie <airlied@redhat.com>
6046 M: Gerd Hoffmann <kraxel@redhat.com>
6047 L: virtualization@lists.linux-foundation.org
6048 S: Obsolete
6049 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6050 T: git git://anongit.freedesktop.org/drm/drm-misc
6051 F: drivers/gpu/drm/tiny/cirrus.c
6052
6053 DRM DRIVER FOR QXL VIRTUAL GPU
6054 M: Dave Airlie <airlied@redhat.com>
6055 M: Gerd Hoffmann <kraxel@redhat.com>
6056 L: virtualization@lists.linux-foundation.org
6057 L: spice-devel@lists.freedesktop.org
6058 S: Maintained
6059 T: git git://anongit.freedesktop.org/drm/drm-misc
6060 F: drivers/gpu/drm/qxl/
6061 F: include/uapi/drm/qxl_drm.h
6062
6063 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6064 S: Orphan / Obsolete
6065 F: drivers/gpu/drm/r128/
6066 F: include/uapi/drm/r128_drm.h
6067
6068 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6069 M: Robert Chiras <robert.chiras@nxp.com>
6070 S: Maintained
6071 F: Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6072 F: drivers/gpu/drm/panel/panel-raydium-rm67191.c
6073
6074 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6075 M: Linus Walleij <linus.walleij@linaro.org>
6076 S: Maintained
6077 T: git git://anongit.freedesktop.org/drm/drm-misc
6078 F: Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6079 F: drivers/gpu/drm/panel/panel-samsung-db7430.c
6080
6081 DRM DRIVER FOR SITRONIX ST7703 PANELS
6082 M: Guido Günther <agx@sigxcpu.org>
6083 R: Purism Kernel Team <kernel@puri.sm>
6084 R: Ondrej Jirman <megous@megous.com>
6085 S: Maintained
6086 F: Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6087 F: drivers/gpu/drm/panel/panel-sitronix-st7703.c
6088
6089 DRM DRIVER FOR SAVAGE VIDEO CARDS
6090 S: Orphan / Obsolete
6091 F: drivers/gpu/drm/savage/
6092 F: include/uapi/drm/savage_drm.h
6093
6094 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6095 M: Thomas Zimmermann <tzimmermann@suse.de>
6096 L: dri-devel@lists.freedesktop.org
6097 S: Maintained
6098 T: git git://anongit.freedesktop.org/drm/drm-misc
6099 F: drivers/gpu/drm/tiny/simpledrm.c
6100
6101 DRM DRIVER FOR SIS VIDEO CARDS
6102 S: Orphan / Obsolete
6103 F: drivers/gpu/drm/sis/
6104 F: include/uapi/drm/sis_drm.h
6105
6106 DRM DRIVER FOR SITRONIX ST7586 PANELS
6107 M: David Lechner <david@lechnology.com>
6108 S: Maintained
6109 T: git git://anongit.freedesktop.org/drm/drm-misc
6110 F: Documentation/devicetree/bindings/display/sitronix,st7586.txt
6111 F: drivers/gpu/drm/tiny/st7586.c
6112
6113 DRM DRIVER FOR SITRONIX ST7701 PANELS
6114 M: Jagan Teki <jagan@amarulasolutions.com>
6115 S: Maintained
6116 F: Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6117 F: drivers/gpu/drm/panel/panel-sitronix-st7701.c
6118
6119 DRM DRIVER FOR SITRONIX ST7735R PANELS
6120 M: David Lechner <david@lechnology.com>
6121 S: Maintained
6122 T: git git://anongit.freedesktop.org/drm/drm-misc
6123 F: Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6124 F: drivers/gpu/drm/tiny/st7735r.c
6125
6126 DRM DRIVER FOR SONY ACX424AKP PANELS
6127 M: Linus Walleij <linus.walleij@linaro.org>
6128 S: Maintained
6129 T: git git://anongit.freedesktop.org/drm/drm-misc
6130 F: drivers/gpu/drm/panel/panel-sony-acx424akp.c
6131
6132 DRM DRIVER FOR ST-ERICSSON MCDE
6133 M: Linus Walleij <linus.walleij@linaro.org>
6134 S: Maintained
6135 T: git git://anongit.freedesktop.org/drm/drm-misc
6136 F: Documentation/devicetree/bindings/display/ste,mcde.yaml
6137 F: drivers/gpu/drm/mcde/
6138
6139 DRM DRIVER FOR TDFX VIDEO CARDS
6140 S: Orphan / Obsolete
6141 F: drivers/gpu/drm/tdfx/
6142
6143 DRM DRIVER FOR TPO TPG110 PANELS
6144 M: Linus Walleij <linus.walleij@linaro.org>
6145 S: Maintained
6146 T: git git://anongit.freedesktop.org/drm/drm-misc
6147 F: Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6148 F: drivers/gpu/drm/panel/panel-tpo-tpg110.c
6149
6150 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6151 M: Dave Airlie <airlied@redhat.com>
6152 R: Sean Paul <sean@poorly.run>
6153 R: Thomas Zimmermann <tzimmermann@suse.de>
6154 L: dri-devel@lists.freedesktop.org
6155 S: Supported
6156 T: git git://anongit.freedesktop.org/drm/drm-misc
6157 F: drivers/gpu/drm/udl/
6158
6159 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6160 M: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6161 M: Melissa Wen <melissa.srw@gmail.com>
6162 R: Haneen Mohammed <hamohammed.sa@gmail.com>
6163 R: Daniel Vetter <daniel@ffwll.ch>
6164 L: dri-devel@lists.freedesktop.org
6165 S: Maintained
6166 T: git git://anongit.freedesktop.org/drm/drm-misc
6167 F: Documentation/gpu/vkms.rst
6168 F: drivers/gpu/drm/vkms/
6169
6170 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6171 M: Hans de Goede <hdegoede@redhat.com>
6172 L: dri-devel@lists.freedesktop.org
6173 S: Maintained
6174 T: git git://anongit.freedesktop.org/drm/drm-misc
6175 F: drivers/gpu/drm/vboxvideo/
6176
6177 DRM DRIVER FOR VMWARE VIRTUAL GPU
6178 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6179 M: Zack Rusin <zackr@vmware.com>
6180 L: dri-devel@lists.freedesktop.org
6181 S: Supported
6182 T: git git://anongit.freedesktop.org/drm/drm-misc
6183 F: drivers/gpu/drm/vmwgfx/
6184 F: include/uapi/drm/vmwgfx_drm.h
6185
6186 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6187 M: Linus Walleij <linus.walleij@linaro.org>
6188 S: Maintained
6189 T: git git://anongit.freedesktop.org/drm/drm-misc
6190 F: Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6191 F: drivers/gpu/drm/panel/panel-widechips-ws2401.c
6192
6193 DRM DRIVERS
6194 M: David Airlie <airlied@linux.ie>
6195 M: Daniel Vetter <daniel@ffwll.ch>
6196 L: dri-devel@lists.freedesktop.org
6197 S: Maintained
6198 B: https://gitlab.freedesktop.org/drm
6199 C: irc://irc.oftc.net/dri-devel
6200 T: git git://anongit.freedesktop.org/drm/drm
6201 F: Documentation/devicetree/bindings/display/
6202 F: Documentation/devicetree/bindings/gpu/
6203 F: Documentation/gpu/
6204 F: drivers/gpu/
6205 F: include/drm/
6206 F: include/linux/vga*
6207 F: include/uapi/drm/
6208
6209 DRM DRIVERS AND MISC GPU PATCHES
6210 M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6211 M: Maxime Ripard <mripard@kernel.org>
6212 M: Thomas Zimmermann <tzimmermann@suse.de>
6213 S: Maintained
6214 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6215 T: git git://anongit.freedesktop.org/drm/drm-misc
6216 F: Documentation/gpu/
6217 F: drivers/gpu/drm/*
6218 F: drivers/gpu/vga/
6219 F: include/drm/drm*
6220 F: include/linux/vga*
6221 F: include/uapi/drm/drm*
6222
6223 DRM DRIVERS FOR ALLWINNER A10
6224 M: Maxime Ripard <mripard@kernel.org>
6225 M: Chen-Yu Tsai <wens@csie.org>
6226 L: dri-devel@lists.freedesktop.org
6227 S: Supported
6228 T: git git://anongit.freedesktop.org/drm/drm-misc
6229 F: Documentation/devicetree/bindings/display/allwinner*
6230 F: drivers/gpu/drm/sun4i/
6231
6232 DRM DRIVERS FOR AMLOGIC SOCS
6233 M: Neil Armstrong <narmstrong@baylibre.com>
6234 L: dri-devel@lists.freedesktop.org
6235 L: linux-amlogic@lists.infradead.org
6236 S: Supported
6237 W: http://linux-meson.com/
6238 T: git git://anongit.freedesktop.org/drm/drm-misc
6239 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6240 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6241 F: Documentation/gpu/meson.rst
6242 F: drivers/gpu/drm/meson/
6243
6244 DRM DRIVERS FOR ATMEL HLCDC
6245 M: Sam Ravnborg <sam@ravnborg.org>
6246 M: Boris Brezillon <bbrezillon@kernel.org>
6247 L: dri-devel@lists.freedesktop.org
6248 S: Supported
6249 T: git git://anongit.freedesktop.org/drm/drm-misc
6250 F: Documentation/devicetree/bindings/display/atmel/
6251 F: drivers/gpu/drm/atmel-hlcdc/
6252
6253 DRM DRIVERS FOR BRIDGE CHIPS
6254 M: Andrzej Hajda <a.hajda@samsung.com>
6255 M: Neil Armstrong <narmstrong@baylibre.com>
6256 M: Robert Foss <robert.foss@linaro.org>
6257 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6258 R: Jonas Karlman <jonas@kwiboo.se>
6259 R: Jernej Skrabec <jernej.skrabec@gmail.com>
6260 S: Maintained
6261 T: git git://anongit.freedesktop.org/drm/drm-misc
6262 F: drivers/gpu/drm/bridge/
6263
6264 DRM DRIVERS FOR EXYNOS
6265 M: Inki Dae <inki.dae@samsung.com>
6266 M: Joonyoung Shim <jy0922.shim@samsung.com>
6267 M: Seung-Woo Kim <sw0312.kim@samsung.com>
6268 M: Kyungmin Park <kyungmin.park@samsung.com>
6269 L: dri-devel@lists.freedesktop.org
6270 S: Supported
6271 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6272 F: Documentation/devicetree/bindings/display/exynos/
6273 F: drivers/gpu/drm/exynos/
6274 F: include/uapi/drm/exynos_drm.h
6275
6276 DRM DRIVERS FOR FREESCALE DCU
6277 M: Stefan Agner <stefan@agner.ch>
6278 M: Alison Wang <alison.wang@nxp.com>
6279 L: dri-devel@lists.freedesktop.org
6280 S: Supported
6281 T: git git://anongit.freedesktop.org/drm/drm-misc
6282 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
6283 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
6284 F: drivers/gpu/drm/fsl-dcu/
6285
6286 DRM DRIVERS FOR FREESCALE IMX
6287 M: Philipp Zabel <p.zabel@pengutronix.de>
6288 L: dri-devel@lists.freedesktop.org
6289 S: Maintained
6290 F: Documentation/devicetree/bindings/display/imx/
6291 F: drivers/gpu/drm/imx/
6292 F: drivers/gpu/ipu-v3/
6293
6294 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6295 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6296 L: dri-devel@lists.freedesktop.org
6297 S: Maintained
6298 T: git git://github.com/patjak/drm-gma500
6299 F: drivers/gpu/drm/gma500/
6300
6301 DRM DRIVERS FOR HISILICON
6302 M: Xinliang Liu <xinliang.liu@linaro.org>
6303 M: Tian Tao <tiantao6@hisilicon.com>
6304 R: John Stultz <john.stultz@linaro.org>
6305 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
6306 R: Chen Feng <puck.chen@hisilicon.com>
6307 L: dri-devel@lists.freedesktop.org
6308 S: Maintained
6309 T: git git://anongit.freedesktop.org/drm/drm-misc
6310 F: Documentation/devicetree/bindings/display/hisilicon/
6311 F: drivers/gpu/drm/hisilicon/
6312
6313 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6314 M: Deepak Rawat <drawat.floss@gmail.com>
6315 L: linux-hyperv@vger.kernel.org
6316 L: dri-devel@lists.freedesktop.org
6317 S: Maintained
6318 T: git git://anongit.freedesktop.org/drm/drm-misc
6319 F: drivers/gpu/drm/hyperv
6320
6321 DRM DRIVERS FOR LIMA
6322 M: Qiang Yu <yuq825@gmail.com>
6323 L: dri-devel@lists.freedesktop.org
6324 L: lima@lists.freedesktop.org (moderated for non-subscribers)
6325 S: Maintained
6326 T: git git://anongit.freedesktop.org/drm/drm-misc
6327 F: drivers/gpu/drm/lima/
6328 F: include/uapi/drm/lima_drm.h
6329
6330 DRM DRIVERS FOR MEDIATEK
6331 M: Chun-Kuang Hu <chunkuang.hu@kernel.org>
6332 M: Philipp Zabel <p.zabel@pengutronix.de>
6333 L: dri-devel@lists.freedesktop.org
6334 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6335 S: Supported
6336 F: Documentation/devicetree/bindings/display/mediatek/
6337 F: drivers/gpu/drm/mediatek/
6338 F: drivers/phy/mediatek/phy-mtk-hdmi*
6339 F: drivers/phy/mediatek/phy-mtk-mipi*
6340
6341 DRM DRIVERS FOR NVIDIA TEGRA
6342 M: Thierry Reding <thierry.reding@gmail.com>
6343 L: dri-devel@lists.freedesktop.org
6344 L: linux-tegra@vger.kernel.org
6345 S: Supported
6346 T: git git://anongit.freedesktop.org/tegra/linux.git
6347 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6348 F: drivers/gpu/drm/tegra/
6349 F: drivers/gpu/host1x/
6350 F: include/linux/host1x.h
6351 F: include/uapi/drm/tegra_drm.h
6352
6353 DRM DRIVERS FOR RENESAS
6354 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6355 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6356 L: dri-devel@lists.freedesktop.org
6357 L: linux-renesas-soc@vger.kernel.org
6358 S: Supported
6359 T: git git://linuxtv.org/pinchartl/media drm/du/next
6360 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6361 F: Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6362 F: Documentation/devicetree/bindings/display/renesas,du.yaml
6363 F: drivers/gpu/drm/rcar-du/
6364 F: drivers/gpu/drm/shmobile/
6365 F: include/linux/platform_data/shmob_drm.h
6366
6367 DRM DRIVERS FOR ROCKCHIP
6368 M: Sandy Huang <hjc@rock-chips.com>
6369 M: Heiko Stübner <heiko@sntech.de>
6370 L: dri-devel@lists.freedesktop.org
6371 S: Maintained
6372 T: git git://anongit.freedesktop.org/drm/drm-misc
6373 F: Documentation/devicetree/bindings/display/rockchip/
6374 F: drivers/gpu/drm/rockchip/
6375
6376 DRM DRIVERS FOR STI
6377 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
6378 L: dri-devel@lists.freedesktop.org
6379 S: Maintained
6380 T: git git://anongit.freedesktop.org/drm/drm-misc
6381 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
6382 F: drivers/gpu/drm/sti
6383
6384 DRM DRIVERS FOR STM
6385 M: Yannick Fertre <yannick.fertre@foss.st.com>
6386 M: Philippe Cornu <philippe.cornu@foss.st.com>
6387 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
6388 L: dri-devel@lists.freedesktop.org
6389 S: Maintained
6390 T: git git://anongit.freedesktop.org/drm/drm-misc
6391 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6392 F: drivers/gpu/drm/stm
6393
6394 DRM DRIVERS FOR TI KEYSTONE
6395 M: Jyri Sarha <jyri.sarha@iki.fi>
6396 M: Tomi Valkeinen <tomba@kernel.org>
6397 L: dri-devel@lists.freedesktop.org
6398 S: Maintained
6399 T: git git://anongit.freedesktop.org/drm/drm-misc
6400 F: Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6401 F: Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6402 F: Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6403 F: drivers/gpu/drm/tidss/
6404
6405 DRM DRIVERS FOR TI LCDC
6406 M: Jyri Sarha <jyri.sarha@iki.fi>
6407 R: Tomi Valkeinen <tomba@kernel.org>
6408 L: dri-devel@lists.freedesktop.org
6409 S: Maintained
6410 F: Documentation/devicetree/bindings/display/tilcdc/
6411 F: drivers/gpu/drm/tilcdc/
6412
6413 DRM DRIVERS FOR TI OMAP
6414 M: Tomi Valkeinen <tomba@kernel.org>
6415 L: dri-devel@lists.freedesktop.org
6416 S: Maintained
6417 F: Documentation/devicetree/bindings/display/ti/
6418 F: drivers/gpu/drm/omapdrm/
6419
6420 DRM DRIVERS FOR V3D
6421 M: Emma Anholt <emma@anholt.net>
6422 S: Supported
6423 T: git git://anongit.freedesktop.org/drm/drm-misc
6424 F: Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6425 F: drivers/gpu/drm/v3d/
6426 F: include/uapi/drm/v3d_drm.h
6427
6428 DRM DRIVERS FOR VC4
6429 M: Emma Anholt <emma@anholt.net>
6430 M: Maxime Ripard <mripard@kernel.org>
6431 S: Supported
6432 T: git git://github.com/anholt/linux
6433 T: git git://anongit.freedesktop.org/drm/drm-misc
6434 F: Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6435 F: drivers/gpu/drm/vc4/
6436 F: include/uapi/drm/vc4_drm.h
6437
6438 DRM DRIVERS FOR VIVANTE GPU IP
6439 M: Lucas Stach <l.stach@pengutronix.de>
6440 R: Russell King <linux+etnaviv@armlinux.org.uk>
6441 R: Christian Gmeiner <christian.gmeiner@gmail.com>
6442 L: etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6443 L: dri-devel@lists.freedesktop.org
6444 S: Maintained
6445 F: Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6446 F: drivers/gpu/drm/etnaviv/
6447 F: include/uapi/drm/etnaviv_drm.h
6448
6449 DRM DRIVERS FOR XEN
6450 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6451 L: dri-devel@lists.freedesktop.org
6452 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
6453 S: Supported
6454 T: git git://anongit.freedesktop.org/drm/drm-misc
6455 F: Documentation/gpu/xen-front.rst
6456 F: drivers/gpu/drm/xen/
6457
6458 DRM DRIVERS FOR XILINX
6459 M: Hyun Kwon <hyun.kwon@xilinx.com>
6460 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6461 L: dri-devel@lists.freedesktop.org
6462 S: Maintained
6463 T: git git://anongit.freedesktop.org/drm/drm-misc
6464 F: Documentation/devicetree/bindings/display/xlnx/
6465 F: drivers/gpu/drm/xlnx/
6466
6467 DRM PANEL DRIVERS
6468 M: Thierry Reding <thierry.reding@gmail.com>
6469 R: Sam Ravnborg <sam@ravnborg.org>
6470 L: dri-devel@lists.freedesktop.org
6471 S: Maintained
6472 T: git git://anongit.freedesktop.org/drm/drm-misc
6473 F: Documentation/devicetree/bindings/display/panel/
6474 F: drivers/gpu/drm/drm_panel.c
6475 F: drivers/gpu/drm/panel/
6476 F: include/drm/drm_panel.h
6477
6478 DRM TTM SUBSYSTEM
6479 M: Christian Koenig <christian.koenig@amd.com>
6480 M: Huang Rui <ray.huang@amd.com>
6481 L: dri-devel@lists.freedesktop.org
6482 S: Maintained
6483 T: git git://anongit.freedesktop.org/drm/drm-misc
6484 F: drivers/gpu/drm/ttm/
6485 F: include/drm/ttm/
6486
6487 DSBR100 USB FM RADIO DRIVER
6488 M: Alexey Klimov <klimov.linux@gmail.com>
6489 L: linux-media@vger.kernel.org
6490 S: Maintained
6491 T: git git://linuxtv.org/media_tree.git
6492 F: drivers/media/radio/dsbr100.c
6493
6494 DT3155 MEDIA DRIVER
6495 M: Hans Verkuil <hverkuil@xs4all.nl>
6496 L: linux-media@vger.kernel.org
6497 S: Odd Fixes
6498 W: https://linuxtv.org
6499 T: git git://linuxtv.org/media_tree.git
6500 F: drivers/media/pci/dt3155/
6501
6502 DVB_USB_AF9015 MEDIA DRIVER
6503 M: Antti Palosaari <crope@iki.fi>
6504 L: linux-media@vger.kernel.org
6505 S: Maintained
6506 W: https://linuxtv.org
6507 W: http://palosaari.fi/linux/
6508 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6509 T: git git://linuxtv.org/anttip/media_tree.git
6510 F: drivers/media/usb/dvb-usb-v2/af9015*
6511
6512 DVB_USB_AF9035 MEDIA DRIVER
6513 M: Antti Palosaari <crope@iki.fi>
6514 L: linux-media@vger.kernel.org
6515 S: Maintained
6516 W: https://linuxtv.org
6517 W: http://palosaari.fi/linux/
6518 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6519 T: git git://linuxtv.org/anttip/media_tree.git
6520 F: drivers/media/usb/dvb-usb-v2/af9035*
6521
6522 DVB_USB_ANYSEE MEDIA DRIVER
6523 M: Antti Palosaari <crope@iki.fi>
6524 L: linux-media@vger.kernel.org
6525 S: Maintained
6526 W: https://linuxtv.org
6527 W: http://palosaari.fi/linux/
6528 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6529 T: git git://linuxtv.org/anttip/media_tree.git
6530 F: drivers/media/usb/dvb-usb-v2/anysee*
6531
6532 DVB_USB_AU6610 MEDIA DRIVER
6533 M: Antti Palosaari <crope@iki.fi>
6534 L: linux-media@vger.kernel.org
6535 S: Maintained
6536 W: https://linuxtv.org
6537 W: http://palosaari.fi/linux/
6538 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6539 T: git git://linuxtv.org/anttip/media_tree.git
6540 F: drivers/media/usb/dvb-usb-v2/au6610*
6541
6542 DVB_USB_CE6230 MEDIA DRIVER
6543 M: Antti Palosaari <crope@iki.fi>
6544 L: linux-media@vger.kernel.org
6545 S: Maintained
6546 W: https://linuxtv.org
6547 W: http://palosaari.fi/linux/
6548 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6549 T: git git://linuxtv.org/anttip/media_tree.git
6550 F: drivers/media/usb/dvb-usb-v2/ce6230*
6551
6552 DVB_USB_CXUSB MEDIA DRIVER
6553 M: Michael Krufky <mkrufky@linuxtv.org>
6554 L: linux-media@vger.kernel.org
6555 S: Maintained
6556 W: https://linuxtv.org
6557 W: http://github.com/mkrufky
6558 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6559 T: git git://linuxtv.org/media_tree.git
6560 F: drivers/media/usb/dvb-usb/cxusb*
6561
6562 DVB_USB_EC168 MEDIA DRIVER
6563 M: Antti Palosaari <crope@iki.fi>
6564 L: linux-media@vger.kernel.org
6565 S: Maintained
6566 W: https://linuxtv.org
6567 W: http://palosaari.fi/linux/
6568 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6569 T: git git://linuxtv.org/anttip/media_tree.git
6570 F: drivers/media/usb/dvb-usb-v2/ec168*
6571
6572 DVB_USB_GL861 MEDIA DRIVER
6573 M: Antti Palosaari <crope@iki.fi>
6574 L: linux-media@vger.kernel.org
6575 S: Maintained
6576 W: https://linuxtv.org
6577 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6578 T: git git://linuxtv.org/anttip/media_tree.git
6579 F: drivers/media/usb/dvb-usb-v2/gl861*
6580
6581 DVB_USB_MXL111SF MEDIA DRIVER
6582 M: Michael Krufky <mkrufky@linuxtv.org>
6583 L: linux-media@vger.kernel.org
6584 S: Maintained
6585 W: https://linuxtv.org
6586 W: http://github.com/mkrufky
6587 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6588 T: git git://linuxtv.org/mkrufky/mxl111sf.git
6589 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
6590
6591 DVB_USB_RTL28XXU MEDIA DRIVER
6592 M: Antti Palosaari <crope@iki.fi>
6593 L: linux-media@vger.kernel.org
6594 S: Maintained
6595 W: https://linuxtv.org
6596 W: http://palosaari.fi/linux/
6597 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6598 T: git git://linuxtv.org/anttip/media_tree.git
6599 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
6600
6601 DVB_USB_V2 MEDIA DRIVER
6602 M: Antti Palosaari <crope@iki.fi>
6603 L: linux-media@vger.kernel.org
6604 S: Maintained
6605 W: https://linuxtv.org
6606 W: http://palosaari.fi/linux/
6607 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6608 T: git git://linuxtv.org/anttip/media_tree.git
6609 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
6610 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
6611
6612 DYNAMIC DEBUG
6613 M: Jason Baron <jbaron@akamai.com>
6614 S: Maintained
6615 F: include/linux/dynamic_debug.h
6616 F: lib/dynamic_debug.c
6617
6618 DYNAMIC INTERRUPT MODERATION
6619 M: Tal Gilboa <talgi@nvidia.com>
6620 S: Maintained
6621 F: Documentation/networking/net_dim.rst
6622 F: include/linux/dim.h
6623 F: lib/dim/
6624
6625 DZ DECSTATION DZ11 SERIAL DRIVER
6626 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
6627 S: Maintained
6628 F: drivers/tty/serial/dz.*
6629
6630 E3X0 POWER BUTTON DRIVER
6631 M: Moritz Fischer <moritz.fischer@ettus.com>
6632 L: usrp-users@lists.ettus.com
6633 S: Supported
6634 W: http://www.ettus.com
6635 F: Documentation/devicetree/bindings/input/e3x0-button.txt
6636 F: drivers/input/misc/e3x0-button.c
6637
6638 E4000 MEDIA DRIVER
6639 M: Antti Palosaari <crope@iki.fi>
6640 L: linux-media@vger.kernel.org
6641 S: Maintained
6642 W: https://linuxtv.org
6643 W: http://palosaari.fi/linux/
6644 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6645 T: git git://linuxtv.org/anttip/media_tree.git
6646 F: drivers/media/tuners/e4000*
6647
6648 EARTH_PT1 MEDIA DRIVER
6649 M: Akihiro Tsukada <tskd08@gmail.com>
6650 L: linux-media@vger.kernel.org
6651 S: Odd Fixes
6652 F: drivers/media/pci/pt1/
6653
6654 EARTH_PT3 MEDIA DRIVER
6655 M: Akihiro Tsukada <tskd08@gmail.com>
6656 L: linux-media@vger.kernel.org
6657 S: Odd Fixes
6658 F: drivers/media/pci/pt3/
6659
6660 EC100 MEDIA DRIVER
6661 M: Antti Palosaari <crope@iki.fi>
6662 L: linux-media@vger.kernel.org
6663 S: Maintained
6664 W: https://linuxtv.org
6665 W: http://palosaari.fi/linux/
6666 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6667 T: git git://linuxtv.org/anttip/media_tree.git
6668 F: drivers/media/dvb-frontends/ec100*
6669
6670 ECRYPT FILE SYSTEM
6671 M: Tyler Hicks <code@tyhicks.com>
6672 L: ecryptfs@vger.kernel.org
6673 S: Odd Fixes
6674 W: http://ecryptfs.org
6675 W: https://launchpad.net/ecryptfs
6676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6677 F: Documentation/filesystems/ecryptfs.rst
6678 F: fs/ecryptfs/
6679
6680 EDAC-AMD64
6681 M: Yazen Ghannam <yazen.ghannam@amd.com>
6682 L: linux-edac@vger.kernel.org
6683 S: Supported
6684 F: drivers/edac/amd64_edac*
6685 F: drivers/edac/mce_amd*
6686
6687 EDAC-ARMADA
6688 M: Jan Luebbe <jlu@pengutronix.de>
6689 L: linux-edac@vger.kernel.org
6690 S: Maintained
6691 F: Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6692 F: drivers/edac/armada_xp_*
6693
6694 EDAC-AST2500
6695 M: Stefan Schaeckeler <sschaeck@cisco.com>
6696 S: Supported
6697 F: Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6698 F: drivers/edac/aspeed_edac.c
6699
6700 EDAC-BLUEFIELD
6701 M: Shravan Kumar Ramani <shravankr@nvidia.com>
6702 S: Supported
6703 F: drivers/edac/bluefield_edac.c
6704
6705 EDAC-CALXEDA
6706 M: Andre Przywara <andre.przywara@arm.com>
6707 L: linux-edac@vger.kernel.org
6708 S: Maintained
6709 F: drivers/edac/highbank*
6710
6711 EDAC-CAVIUM OCTEON
6712 M: Ralf Baechle <ralf@linux-mips.org>
6713 L: linux-edac@vger.kernel.org
6714 L: linux-mips@vger.kernel.org
6715 S: Supported
6716 F: drivers/edac/octeon_edac*
6717
6718 EDAC-CAVIUM THUNDERX
6719 M: Robert Richter <rric@kernel.org>
6720 L: linux-edac@vger.kernel.org
6721 S: Odd Fixes
6722 F: drivers/edac/thunderx_edac*
6723
6724 EDAC-CORE
6725 M: Borislav Petkov <bp@alien8.de>
6726 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6727 M: Tony Luck <tony.luck@intel.com>
6728 R: James Morse <james.morse@arm.com>
6729 R: Robert Richter <rric@kernel.org>
6730 L: linux-edac@vger.kernel.org
6731 S: Supported
6732 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6733 F: Documentation/admin-guide/ras.rst
6734 F: Documentation/driver-api/edac.rst
6735 F: drivers/edac/
6736 F: include/linux/edac.h
6737
6738 EDAC-DMC520
6739 M: Lei Wang <lewan@microsoft.com>
6740 L: linux-edac@vger.kernel.org
6741 S: Supported
6742 F: drivers/edac/dmc520_edac.c
6743
6744 EDAC-E752X
6745 M: Mark Gross <mark.gross@intel.com>
6746 L: linux-edac@vger.kernel.org
6747 S: Maintained
6748 F: drivers/edac/e752x_edac.c
6749
6750 EDAC-E7XXX
6751 L: linux-edac@vger.kernel.org
6752 S: Maintained
6753 F: drivers/edac/e7xxx_edac.c
6754
6755 EDAC-FSL_DDR
6756 M: York Sun <york.sun@nxp.com>
6757 L: linux-edac@vger.kernel.org
6758 S: Maintained
6759 F: drivers/edac/fsl_ddr_edac.*
6760
6761 EDAC-GHES
6762 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6763 L: linux-edac@vger.kernel.org
6764 S: Maintained
6765 F: drivers/edac/ghes_edac.c
6766
6767 EDAC-I10NM
6768 M: Tony Luck <tony.luck@intel.com>
6769 L: linux-edac@vger.kernel.org
6770 S: Maintained
6771 F: drivers/edac/i10nm_base.c
6772
6773 EDAC-I3000
6774 L: linux-edac@vger.kernel.org
6775 S: Orphan
6776 F: drivers/edac/i3000_edac.c
6777
6778 EDAC-I5000
6779 L: linux-edac@vger.kernel.org
6780 S: Maintained
6781 F: drivers/edac/i5000_edac.c
6782
6783 EDAC-I5400
6784 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6785 L: linux-edac@vger.kernel.org
6786 S: Maintained
6787 F: drivers/edac/i5400_edac.c
6788
6789 EDAC-I7300
6790 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6791 L: linux-edac@vger.kernel.org
6792 S: Maintained
6793 F: drivers/edac/i7300_edac.c
6794
6795 EDAC-I7CORE
6796 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6797 L: linux-edac@vger.kernel.org
6798 S: Maintained
6799 F: drivers/edac/i7core_edac.c
6800
6801 EDAC-I82443BXGX
6802 M: Tim Small <tim@buttersideup.com>
6803 L: linux-edac@vger.kernel.org
6804 S: Maintained
6805 F: drivers/edac/i82443bxgx_edac.c
6806
6807 EDAC-I82975X
6808 M: "Arvind R." <arvino55@gmail.com>
6809 L: linux-edac@vger.kernel.org
6810 S: Maintained
6811 F: drivers/edac/i82975x_edac.c
6812
6813 EDAC-IE31200
6814 M: Jason Baron <jbaron@akamai.com>
6815 L: linux-edac@vger.kernel.org
6816 S: Maintained
6817 F: drivers/edac/ie31200_edac.c
6818
6819 EDAC-IGEN6
6820 M: Tony Luck <tony.luck@intel.com>
6821 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6822 L: linux-edac@vger.kernel.org
6823 S: Maintained
6824 F: drivers/edac/igen6_edac.c
6825
6826 EDAC-MPC85XX
6827 M: Johannes Thumshirn <morbidrsa@gmail.com>
6828 L: linux-edac@vger.kernel.org
6829 S: Maintained
6830 F: drivers/edac/mpc85xx_edac.[ch]
6831
6832 EDAC-PASEMI
6833 M: Egor Martovetsky <egor@pasemi.com>
6834 L: linux-edac@vger.kernel.org
6835 S: Maintained
6836 F: drivers/edac/pasemi_edac.c
6837
6838 EDAC-PND2
6839 M: Tony Luck <tony.luck@intel.com>
6840 L: linux-edac@vger.kernel.org
6841 S: Maintained
6842 F: drivers/edac/pnd2_edac.[ch]
6843
6844 EDAC-QCOM
6845 M: Channagoud Kadabi <ckadabi@codeaurora.org>
6846 M: Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6847 L: linux-arm-msm@vger.kernel.org
6848 L: linux-edac@vger.kernel.org
6849 S: Maintained
6850 F: drivers/edac/qcom_edac.c
6851
6852 EDAC-R82600
6853 M: Tim Small <tim@buttersideup.com>
6854 L: linux-edac@vger.kernel.org
6855 S: Maintained
6856 F: drivers/edac/r82600_edac.c
6857
6858 EDAC-SBRIDGE
6859 M: Tony Luck <tony.luck@intel.com>
6860 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6861 L: linux-edac@vger.kernel.org
6862 S: Maintained
6863 F: drivers/edac/sb_edac.c
6864
6865 EDAC-SIFIVE
6866 M: Yash Shah <yash.shah@sifive.com>
6867 L: linux-edac@vger.kernel.org
6868 S: Supported
6869 F: drivers/edac/sifive_edac.c
6870
6871 EDAC-SKYLAKE
6872 M: Tony Luck <tony.luck@intel.com>
6873 L: linux-edac@vger.kernel.org
6874 S: Maintained
6875 F: drivers/edac/skx_*.[ch]
6876
6877 EDAC-TI
6878 M: Tero Kristo <kristo@kernel.org>
6879 L: linux-edac@vger.kernel.org
6880 S: Odd Fixes
6881 F: drivers/edac/ti_edac.c
6882
6883 EDIROL UA-101/UA-1000 DRIVER
6884 M: Clemens Ladisch <clemens@ladisch.de>
6885 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6886 S: Maintained
6887 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6888 F: sound/usb/misc/ua101.c
6889
6890 EFI TEST DRIVER
6891 M: Ivan Hu <ivan.hu@canonical.com>
6892 M: Ard Biesheuvel <ardb@kernel.org>
6893 L: linux-efi@vger.kernel.org
6894 S: Maintained
6895 F: drivers/firmware/efi/test/
6896
6897 EFI VARIABLE FILESYSTEM
6898 M: Matthew Garrett <matthew.garrett@nebula.com>
6899 M: Jeremy Kerr <jk@ozlabs.org>
6900 M: Ard Biesheuvel <ardb@kernel.org>
6901 L: linux-efi@vger.kernel.org
6902 S: Maintained
6903 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6904 F: fs/efivarfs/
6905
6906 EFIFB FRAMEBUFFER DRIVER
6907 M: Peter Jones <pjones@redhat.com>
6908 L: linux-fbdev@vger.kernel.org
6909 S: Maintained
6910 F: drivers/video/fbdev/efifb.c
6911
6912 EFS FILESYSTEM
6913 S: Orphan
6914 W: http://aeschi.ch.eu.org/efs/
6915 F: fs/efs/
6916
6917 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6918 M: Douglas Miller <dougmill@linux.ibm.com>
6919 L: netdev@vger.kernel.org
6920 S: Maintained
6921 F: drivers/net/ethernet/ibm/ehea/
6922
6923 EM28XX VIDEO4LINUX DRIVER
6924 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6925 L: linux-media@vger.kernel.org
6926 S: Maintained
6927 W: https://linuxtv.org
6928 T: git git://linuxtv.org/media_tree.git
6929 F: Documentation/admin-guide/media/em28xx*
6930 F: drivers/media/usb/em28xx/
6931
6932 EMBEDDED LINUX
6933 M: Matt Mackall <mpm@selenic.com>
6934 M: David Woodhouse <dwmw2@infradead.org>
6935 L: linux-embedded@vger.kernel.org
6936 S: Maintained
6937
6938 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6939 M: Adrian Hunter <adrian.hunter@intel.com>
6940 M: Ritesh Harjani <riteshh@codeaurora.org>
6941 M: Asutosh Das <asutoshd@codeaurora.org>
6942 L: linux-mmc@vger.kernel.org
6943 S: Maintained
6944 F: drivers/mmc/host/cqhci*
6945
6946 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6947 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6948 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
6949 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6950 L: linux-scsi@vger.kernel.org
6951 S: Supported
6952 W: http://www.broadcom.com
6953 F: drivers/scsi/be2iscsi/
6954
6955 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6956 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
6957 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6958 M: Somnath Kotur <somnath.kotur@broadcom.com>
6959 L: netdev@vger.kernel.org
6960 S: Supported
6961 W: http://www.emulex.com
6962 F: drivers/net/ethernet/emulex/benet/
6963
6964 EMULEX ONECONNECT ROCE DRIVER
6965 M: Selvin Xavier <selvin.xavier@broadcom.com>
6966 L: linux-rdma@vger.kernel.org
6967 S: Odd Fixes
6968 W: http://www.broadcom.com
6969 F: drivers/infiniband/hw/ocrdma/
6970 F: include/uapi/rdma/ocrdma-abi.h
6971
6972 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6973 M: James Smart <james.smart@broadcom.com>
6974 M: Dick Kennedy <dick.kennedy@broadcom.com>
6975 L: linux-scsi@vger.kernel.org
6976 S: Supported
6977 W: http://www.broadcom.com
6978 F: drivers/scsi/lpfc/
6979
6980 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6981 M: James Smart <james.smart@broadcom.com>
6982 M: Ram Vegesna <ram.vegesna@broadcom.com>
6983 L: linux-scsi@vger.kernel.org
6984 L: target-devel@vger.kernel.org
6985 S: Supported
6986 W: http://www.broadcom.com
6987 F: drivers/scsi/elx/
6988
6989 ENE CB710 FLASH CARD READER DRIVER
6990 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
6991 S: Maintained
6992 F: drivers/misc/cb710/
6993 F: drivers/mmc/host/cb710-mmc.*
6994 F: include/linux/cb710.h
6995
6996 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6997 M: Maxim Levitsky <maximlevitsky@gmail.com>
6998 S: Maintained
6999 F: drivers/media/rc/ene_ir.*
7000
7001 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7002 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
7003 L: linuxppc-dev@lists.ozlabs.org
7004 S: Maintained
7005 F: drivers/tty/ehv_bytechan.c
7006
7007 EPSON S1D13XXX FRAMEBUFFER DRIVER
7008 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
7009 S: Maintained
7010 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7011 F: drivers/video/fbdev/s1d13xxxfb.c
7012 F: include/video/s1d13xxxfb.h
7013
7014 EROFS FILE SYSTEM
7015 M: Gao Xiang <xiang@kernel.org>
7016 M: Chao Yu <chao@kernel.org>
7017 L: linux-erofs@lists.ozlabs.org
7018 S: Maintained
7019 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7020 F: Documentation/filesystems/erofs.rst
7021 F: fs/erofs/
7022 F: include/trace/events/erofs.h
7023
7024 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7025 M: Jeff Layton <jlayton@kernel.org>
7026 S: Maintained
7027 F: include/linux/errseq.h
7028 F: lib/errseq.c
7029
7030 ET131X NETWORK DRIVER
7031 M: Mark Einon <mark.einon@gmail.com>
7032 S: Odd Fixes
7033 F: drivers/net/ethernet/agere/
7034
7035 ETAS ES58X CAN/USB DRIVER
7036 M: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7037 L: linux-can@vger.kernel.org
7038 S: Maintained
7039 F: drivers/net/can/usb/etas_es58x/
7040
7041 ETHERNET BRIDGE
7042 M: Roopa Prabhu <roopa@nvidia.com>
7043 M: Nikolay Aleksandrov <nikolay@nvidia.com>
7044 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
7045 L: netdev@vger.kernel.org
7046 S: Maintained
7047 W: http://www.linuxfoundation.org/en/Net:Bridge
7048 F: include/linux/netfilter_bridge/
7049 F: net/bridge/
7050
7051 ETHERNET PHY LIBRARY
7052 M: Andrew Lunn <andrew@lunn.ch>
7053 M: Heiner Kallweit <hkallweit1@gmail.com>
7054 R: Russell King <linux@armlinux.org.uk>
7055 L: netdev@vger.kernel.org
7056 S: Maintained
7057 F: Documentation/ABI/testing/sysfs-class-net-phydev
7058 F: Documentation/devicetree/bindings/net/ethernet-phy.yaml
7059 F: Documentation/devicetree/bindings/net/mdio*
7060 F: Documentation/devicetree/bindings/net/qca,ar803x.yaml
7061 F: Documentation/networking/phy.rst
7062 F: drivers/net/mdio/
7063 F: drivers/net/mdio/acpi_mdio.c
7064 F: drivers/net/mdio/fwnode_mdio.c
7065 F: drivers/net/mdio/of_mdio.c
7066 F: drivers/net/pcs/
7067 F: drivers/net/phy/
7068 F: include/dt-bindings/net/qca-ar803x.h
7069 F: include/linux/*mdio*.h
7070 F: include/linux/mdio/*.h
7071 F: include/linux/of_net.h
7072 F: include/linux/phy.h
7073 F: include/linux/phy_fixed.h
7074 F: include/linux/platform_data/mdio-bcm-unimac.h
7075 F: include/linux/platform_data/mdio-gpio.h
7076 F: include/trace/events/mdio.h
7077 F: include/uapi/linux/mdio.h
7078 F: include/uapi/linux/mii.h
7079 F: net/core/of_net.c
7080
7081 EXFAT FILE SYSTEM
7082 M: Namjae Jeon <linkinjeon@kernel.org>
7083 M: Sungjong Seo <sj1557.seo@samsung.com>
7084 L: linux-fsdevel@vger.kernel.org
7085 S: Maintained
7086 F: fs/exfat/
7087
7088 EXT2 FILE SYSTEM
7089 M: Jan Kara <jack@suse.com>
7090 L: linux-ext4@vger.kernel.org
7091 S: Maintained
7092 F: Documentation/filesystems/ext2.rst
7093 F: fs/ext2/
7094 F: include/linux/ext2*
7095
7096 EXT4 FILE SYSTEM
7097 M: "Theodore Ts'o" <tytso@mit.edu>
7098 M: Andreas Dilger <adilger.kernel@dilger.ca>
7099 L: linux-ext4@vger.kernel.org
7100 S: Maintained
7101 W: http://ext4.wiki.kernel.org
7102 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
7103 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7104 F: Documentation/filesystems/ext4/
7105 F: fs/ext4/
7106 F: include/trace/events/ext4.h
7107
7108 Extended Verification Module (EVM)
7109 M: Mimi Zohar <zohar@linux.ibm.com>
7110 L: linux-integrity@vger.kernel.org
7111 S: Supported
7112 F: security/integrity/evm/
7113
7114 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7115 M: Ard Biesheuvel <ardb@kernel.org>
7116 L: linux-efi@vger.kernel.org
7117 S: Maintained
7118 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7119 F: Documentation/admin-guide/efi-stub.rst
7120 F: arch/*/include/asm/efi.h
7121 F: arch/*/kernel/efi.c
7122 F: arch/arm/boot/compressed/efi-header.S
7123 F: arch/arm64/kernel/efi-entry.S
7124 F: arch/x86/platform/efi/
7125 F: drivers/firmware/efi/
7126 F: include/linux/efi*.h
7127
7128 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7129 M: MyungJoo Ham <myungjoo.ham@samsung.com>
7130 M: Chanwoo Choi <cw00.choi@samsung.com>
7131 L: linux-kernel@vger.kernel.org
7132 S: Maintained
7133 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7134 F: Documentation/devicetree/bindings/extcon/
7135 F: Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7136 F: drivers/extcon/
7137 F: include/linux/extcon.h
7138 F: include/linux/extcon/
7139
7140 EXTRA BOOT CONFIG
7141 M: Masami Hiramatsu <mhiramat@kernel.org>
7142 S: Maintained
7143 F: Documentation/admin-guide/bootconfig.rst
7144 F: fs/proc/bootconfig.c
7145 F: include/linux/bootconfig.h
7146 F: lib/bootconfig.c
7147 F: tools/bootconfig/*
7148 F: tools/bootconfig/scripts/*
7149
7150 EXYNOS DP DRIVER
7151 M: Jingoo Han <jingoohan1@gmail.com>
7152 L: dri-devel@lists.freedesktop.org
7153 S: Maintained
7154 F: drivers/gpu/drm/exynos/exynos_dp*
7155
7156 EXYNOS SYSMMU (IOMMU) driver
7157 M: Marek Szyprowski <m.szyprowski@samsung.com>
7158 L: iommu@lists.linux-foundation.org
7159 L: iommu@lists.linux.dev
7160 S: Maintained
7161 F: drivers/iommu/exynos-iommu.c
7162
7163 F2FS FILE SYSTEM
7164 M: Jaegeuk Kim <jaegeuk@kernel.org>
7165 M: Chao Yu <chao@kernel.org>
7166 L: linux-f2fs-devel@lists.sourceforge.net
7167 S: Maintained
7168 W: https://f2fs.wiki.kernel.org/
7169 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7170 F: Documentation/ABI/testing/sysfs-fs-f2fs
7171 F: Documentation/filesystems/f2fs.rst
7172 F: fs/f2fs/
7173 F: include/linux/f2fs_fs.h
7174 F: include/trace/events/f2fs.h
7175 F: include/uapi/linux/f2fs.h
7176
7177 F71805F HARDWARE MONITORING DRIVER
7178 M: Jean Delvare <jdelvare@suse.com>
7179 L: linux-hwmon@vger.kernel.org
7180 S: Maintained
7181 F: Documentation/hwmon/f71805f.rst
7182 F: drivers/hwmon/f71805f.c
7183
7184 FADDR2LINE
7185 M: Josh Poimboeuf <jpoimboe@redhat.com>
7186 S: Maintained
7187 F: scripts/faddr2line
7188
7189 FAILOVER MODULE
7190 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
7191 L: netdev@vger.kernel.org
7192 S: Supported
7193 F: Documentation/networking/failover.rst
7194 F: include/net/failover.h
7195 F: net/core/failover.c
7196
7197 FANOTIFY
7198 M: Jan Kara <jack@suse.cz>
7199 R: Amir Goldstein <amir73il@gmail.com>
7200 R: Matthew Bobrowski <repnop@google.com>
7201 L: linux-fsdevel@vger.kernel.org
7202 S: Maintained
7203 F: fs/notify/fanotify/
7204 F: include/linux/fanotify.h
7205 F: include/uapi/linux/fanotify.h
7206
7207 FARSYNC SYNCHRONOUS DRIVER
7208 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
7209 S: Supported
7210 W: http://www.farsite.co.uk/
7211 F: drivers/net/wan/farsync.*
7212
7213 FAULT INJECTION SUPPORT
7214 M: Akinobu Mita <akinobu.mita@gmail.com>
7215 S: Supported
7216 F: Documentation/fault-injection/
7217 F: lib/fault-inject.c
7218
7219 FBTFT Framebuffer drivers
7220 L: dri-devel@lists.freedesktop.org
7221 L: linux-fbdev@vger.kernel.org
7222 S: Orphan
7223 F: drivers/staging/fbtft/
7224
7225 FC0011 TUNER DRIVER
7226 M: Michael Buesch <m@bues.ch>
7227 L: linux-media@vger.kernel.org
7228 S: Maintained
7229 F: drivers/media/tuners/fc0011.c
7230 F: drivers/media/tuners/fc0011.h
7231
7232 FC2580 MEDIA DRIVER
7233 M: Antti Palosaari <crope@iki.fi>
7234 L: linux-media@vger.kernel.org
7235 S: Maintained
7236 W: https://linuxtv.org
7237 W: http://palosaari.fi/linux/
7238 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7239 T: git git://linuxtv.org/anttip/media_tree.git
7240 F: drivers/media/tuners/fc2580*
7241
7242 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7243 M: Hannes Reinecke <hare@suse.de>
7244 L: linux-scsi@vger.kernel.org
7245 S: Supported
7246 W: www.Open-FCoE.org
7247 F: drivers/scsi/fcoe/
7248 F: drivers/scsi/libfc/
7249 F: include/scsi/fc/
7250 F: include/scsi/libfc.h
7251 F: include/scsi/libfcoe.h
7252 F: include/uapi/scsi/fc/
7253
7254 FILE LOCKING (flock() and fcntl()/lockf())
7255 M: Jeff Layton <jlayton@kernel.org>
7256 M: "J. Bruce Fields" <bfields@fieldses.org>
7257 L: linux-fsdevel@vger.kernel.org
7258 S: Maintained
7259 F: fs/fcntl.c
7260 F: fs/locks.c
7261 F: include/linux/fcntl.h
7262 F: include/uapi/linux/fcntl.h
7263
7264 FILESYSTEM DIRECT ACCESS (DAX)
7265 M: Dan Williams <dan.j.williams@intel.com>
7266 R: Matthew Wilcox <willy@infradead.org>
7267 R: Jan Kara <jack@suse.cz>
7268 L: linux-fsdevel@vger.kernel.org
7269 L: nvdimm@lists.linux.dev
7270 S: Supported
7271 F: fs/dax.c
7272 F: include/linux/dax.h
7273 F: include/trace/events/fs_dax.h
7274
7275 FILESYSTEMS (VFS and infrastructure)
7276 M: Alexander Viro <viro@zeniv.linux.org.uk>
7277 L: linux-fsdevel@vger.kernel.org
7278 S: Maintained
7279 F: fs/*
7280 F: include/linux/fs.h
7281 F: include/linux/fs_types.h
7282 F: include/uapi/linux/fs.h
7283 F: include/uapi/linux/openat2.h
7284 X: fs/io-wq.c
7285 X: fs/io-wq.h
7286 X: fs/io_uring.c
7287
7288 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7289 M: Riku Voipio <riku.voipio@iki.fi>
7290 L: linux-hwmon@vger.kernel.org
7291 S: Maintained
7292 F: drivers/hwmon/f75375s.c
7293 F: include/linux/f75375s.h
7294
7295 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7296 M: Clemens Ladisch <clemens@ladisch.de>
7297 M: Takashi Sakamoto <o-takashi@sakamocchi.jp>
7298 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7299 S: Maintained
7300 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7301 F: include/uapi/sound/firewire.h
7302 F: sound/firewire/
7303
7304 FIREWIRE MEDIA DRIVERS (firedtv)
7305 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7306 L: linux-media@vger.kernel.org
7307 L: linux1394-devel@lists.sourceforge.net
7308 S: Maintained
7309 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7310 F: drivers/media/firewire/
7311
7312 FIREWIRE SBP-2 TARGET
7313 M: Chris Boot <bootc@bootc.net>
7314 L: linux-scsi@vger.kernel.org
7315 L: target-devel@vger.kernel.org
7316 L: linux1394-devel@lists.sourceforge.net
7317 S: Maintained
7318 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7319 F: drivers/target/sbp/
7320
7321 FIREWIRE SUBSYSTEM
7322 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
7323 L: linux1394-devel@lists.sourceforge.net
7324 S: Maintained
7325 W: http://ieee1394.wiki.kernel.org/
7326 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7327 F: drivers/firewire/
7328 F: include/linux/firewire.h
7329 F: include/uapi/linux/firewire*.h
7330 F: tools/firewire/
7331
7332 FIRMWARE FRAMEWORK FOR ARMV8-A
7333 M: Sudeep Holla <sudeep.holla@arm.com>
7334 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7335 S: Maintained
7336 F: drivers/firmware/arm_ffa/
7337 F: include/linux/arm_ffa.h
7338
7339 FIRMWARE LOADER (request_firmware)
7340 M: Luis Chamberlain <mcgrof@kernel.org>
7341 L: linux-kernel@vger.kernel.org
7342 S: Maintained
7343 F: Documentation/firmware_class/
7344 F: drivers/base/firmware_loader/
7345 F: include/linux/firmware.h
7346
7347 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7348 M: Joshua Morris <josh.h.morris@us.ibm.com>
7349 M: Philip Kelleher <pjk1939@linux.ibm.com>
7350 S: Maintained
7351 F: drivers/block/rsxx/
7352
7353 FLEXTIMER FTM-QUADDEC DRIVER
7354 M: Patrick Havelange <patrick.havelange@essensium.com>
7355 L: linux-iio@vger.kernel.org
7356 S: Maintained
7357 F: Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7358 F: drivers/counter/ftm-quaddec.c
7359
7360 FLOPPY DRIVER
7361 M: Denis Efremov <efremov@linux.com>
7362 L: linux-block@vger.kernel.org
7363 S: Odd Fixes
7364 F: drivers/block/floppy.c
7365
7366 FLYSKY FSIA6B RC RECEIVER
7367 M: Markus Koch <markus@notsyncing.net>
7368 L: linux-input@vger.kernel.org
7369 S: Maintained
7370 F: drivers/input/joystick/fsia6b.c
7371
7372 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7373 M: Geoffrey D. Bennett <g@b4.vu>
7374 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7375 S: Maintained
7376 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7377 F: sound/usb/mixer_scarlett_gen2.c
7378
7379 FORCEDETH GIGABIT ETHERNET DRIVER
7380 M: Rain River <rain.1986.08.12@gmail.com>
7381 M: Zhu Yanjun <zyjzyj2000@gmail.com>
7382 L: netdev@vger.kernel.org
7383 S: Maintained
7384 F: drivers/net/ethernet/nvidia/*
7385
7386 FPGA DFL DRIVERS
7387 M: Wu Hao <hao.wu@intel.com>
7388 R: Tom Rix <trix@redhat.com>
7389 L: linux-fpga@vger.kernel.org
7390 S: Maintained
7391 F: Documentation/ABI/testing/sysfs-bus-dfl*
7392 F: Documentation/fpga/dfl.rst
7393 F: drivers/fpga/dfl*
7394 F: drivers/uio/uio_dfl.c
7395 F: include/linux/dfl.h
7396 F: include/uapi/linux/fpga-dfl.h
7397
7398 FPGA MANAGER FRAMEWORK
7399 M: Moritz Fischer <mdf@kernel.org>
7400 M: Wu Hao <hao.wu@intel.com>
7401 M: Xu Yilun <yilun.xu@intel.com>
7402 R: Tom Rix <trix@redhat.com>
7403 L: linux-fpga@vger.kernel.org
7404 S: Maintained
7405 Q: http://patchwork.kernel.org/project/linux-fpga/list/
7406 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7407 F: Documentation/devicetree/bindings/fpga/
7408 F: Documentation/driver-api/fpga/
7409 F: Documentation/fpga/
7410 F: drivers/fpga/
7411 F: include/linux/fpga/
7412
7413 FPU EMULATOR
7414 M: Bill Metzenthen <billm@melbpc.org.au>
7415 S: Maintained
7416 W: http://floatingpoint.sourceforge.net/emulator/index.html
7417 F: arch/x86/math-emu/
7418
7419 FRAMEBUFFER LAYER
7420 L: dri-devel@lists.freedesktop.org
7421 L: linux-fbdev@vger.kernel.org
7422 S: Orphan
7423 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
7424 T: git git://anongit.freedesktop.org/drm/drm-misc
7425 F: Documentation/fb/
7426 F: drivers/video/
7427 F: include/linux/fb.h
7428 F: include/uapi/linux/fb.h
7429 F: include/uapi/video/
7430 F: include/video/
7431
7432 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7433 M: Horia Geantă <horia.geanta@nxp.com>
7434 M: Pankaj Gupta <pankaj.gupta@nxp.com>
7435 L: linux-crypto@vger.kernel.org
7436 S: Maintained
7437 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7438 F: drivers/crypto/caam/
7439
7440 FREESCALE COLDFIRE M5441X MMC DRIVER
7441 M: Angelo Dureghello <angelo.dureghello@timesys.com>
7442 L: linux-mmc@vger.kernel.org
7443 S: Maintained
7444 F: drivers/mmc/host/sdhci-esdhc-mcf.c
7445 F: include/linux/platform_data/mmc-esdhc-mcf.h
7446
7447 FREESCALE DIU FRAMEBUFFER DRIVER
7448 M: Timur Tabi <timur@kernel.org>
7449 L: linux-fbdev@vger.kernel.org
7450 S: Maintained
7451 F: drivers/video/fbdev/fsl-diu-fb.*
7452
7453 FREESCALE DMA DRIVER
7454 M: Li Yang <leoyang.li@nxp.com>
7455 M: Zhang Wei <zw@zh-kernel.org>
7456 L: linuxppc-dev@lists.ozlabs.org
7457 S: Maintained
7458 F: drivers/dma/fsldma.*
7459
7460 FREESCALE DSPI DRIVER
7461 M: Vladimir Oltean <olteanv@gmail.com>
7462 L: linux-spi@vger.kernel.org
7463 S: Maintained
7464 F: Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7465 F: drivers/spi/spi-fsl-dspi.c
7466 F: include/linux/spi/spi-fsl-dspi.h
7467
7468 FREESCALE ENETC ETHERNET DRIVERS
7469 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7470 L: netdev@vger.kernel.org
7471 S: Maintained
7472 F: drivers/net/ethernet/freescale/enetc/
7473
7474 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7475 M: Claudiu Manoil <claudiu.manoil@nxp.com>
7476 L: netdev@vger.kernel.org
7477 S: Maintained
7478 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7479 F: drivers/net/ethernet/freescale/gianfar*
7480
7481 FREESCALE GPMI NAND DRIVER
7482 M: Han Xu <han.xu@nxp.com>
7483 L: linux-mtd@lists.infradead.org
7484 S: Maintained
7485 F: drivers/mtd/nand/raw/gpmi-nand/*
7486
7487 FREESCALE I2C CPM DRIVER
7488 M: Jochen Friedrich <jochen@scram.de>
7489 L: linuxppc-dev@lists.ozlabs.org
7490 L: linux-i2c@vger.kernel.org
7491 S: Maintained
7492 F: drivers/i2c/busses/i2c-cpm.c
7493
7494 FREESCALE IMX / MXC FEC DRIVER
7495 M: Joakim Zhang <qiangqing.zhang@nxp.com>
7496 L: netdev@vger.kernel.org
7497 S: Maintained
7498 F: Documentation/devicetree/bindings/net/fsl,fec.yaml
7499 F: drivers/net/ethernet/freescale/fec.h
7500 F: drivers/net/ethernet/freescale/fec_main.c
7501 F: drivers/net/ethernet/freescale/fec_ptp.c
7502
7503 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7504 M: Sascha Hauer <s.hauer@pengutronix.de>
7505 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7506 L: linux-fbdev@vger.kernel.org
7507 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7508 S: Maintained
7509 F: drivers/video/fbdev/imxfb.c
7510 F: include/linux/platform_data/video-imxfb.h
7511
7512 FREESCALE IMX DDR PMU DRIVER
7513 M: Frank Li <Frank.li@nxp.com>
7514 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7515 S: Maintained
7516 F: Documentation/admin-guide/perf/imx-ddr.rst
7517 F: Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7518 F: drivers/perf/fsl_imx8_ddr_perf.c
7519
7520 FREESCALE IMX I2C DRIVER
7521 M: Oleksij Rempel <o.rempel@pengutronix.de>
7522 R: Pengutronix Kernel Team <kernel@pengutronix.de>
7523 L: linux-i2c@vger.kernel.org
7524 S: Maintained
7525 F: Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7526 F: drivers/i2c/busses/i2c-imx.c
7527
7528 FREESCALE IMX LPI2C DRIVER
7529 M: Dong Aisheng <aisheng.dong@nxp.com>
7530 L: linux-i2c@vger.kernel.org
7531 L: linux-imx@nxp.com
7532 S: Maintained
7533 F: Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7534 F: drivers/i2c/busses/i2c-imx-lpi2c.c
7535
7536 FREESCALE MPC I2C DRIVER
7537 M: Chris Packham <chris.packham@alliedtelesis.co.nz>
7538 L: linux-i2c@vger.kernel.org
7539 S: Maintained
7540 F: Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7541 F: drivers/i2c/busses/i2c-mpc.c
7542
7543 FREESCALE QORIQ DPAA ETHERNET DRIVER
7544 M: Madalin Bucur <madalin.bucur@nxp.com>
7545 L: netdev@vger.kernel.org
7546 S: Maintained
7547 F: drivers/net/ethernet/freescale/dpaa
7548
7549 FREESCALE QORIQ DPAA FMAN DRIVER
7550 M: Madalin Bucur <madalin.bucur@nxp.com>
7551 L: netdev@vger.kernel.org
7552 S: Maintained
7553 F: Documentation/devicetree/bindings/net/fsl-fman.txt
7554 F: drivers/net/ethernet/freescale/fman
7555
7556 FREESCALE QORIQ PTP CLOCK DRIVER
7557 M: Yangbo Lu <yangbo.lu@nxp.com>
7558 L: netdev@vger.kernel.org
7559 S: Maintained
7560 F: Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7561 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7562 F: drivers/net/ethernet/freescale/dpaa2/dprtc*
7563 F: drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7564 F: drivers/ptp/ptp_qoriq.c
7565 F: drivers/ptp/ptp_qoriq_debugfs.c
7566 F: include/linux/fsl/ptp_qoriq.h
7567
7568 FREESCALE QUAD SPI DRIVER
7569 M: Han Xu <han.xu@nxp.com>
7570 L: linux-spi@vger.kernel.org
7571 S: Maintained
7572 F: Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7573 F: drivers/spi/spi-fsl-qspi.c
7574
7575 FREESCALE QUICC ENGINE LIBRARY
7576 M: Qiang Zhao <qiang.zhao@nxp.com>
7577 L: linuxppc-dev@lists.ozlabs.org
7578 S: Maintained
7579 F: drivers/soc/fsl/qe/
7580 F: include/soc/fsl/*qe*.h
7581 F: include/soc/fsl/*ucc*.h
7582
7583 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7584 M: Li Yang <leoyang.li@nxp.com>
7585 L: netdev@vger.kernel.org
7586 L: linuxppc-dev@lists.ozlabs.org
7587 S: Maintained
7588 F: drivers/net/ethernet/freescale/ucc_geth*
7589
7590 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7591 M: Zhao Qiang <qiang.zhao@nxp.com>
7592 L: netdev@vger.kernel.org
7593 L: linuxppc-dev@lists.ozlabs.org
7594 S: Maintained
7595 F: drivers/net/wan/fsl_ucc_hdlc*
7596
7597 FREESCALE QUICC ENGINE UCC UART DRIVER
7598 M: Timur Tabi <timur@kernel.org>
7599 L: linuxppc-dev@lists.ozlabs.org
7600 S: Maintained
7601 F: drivers/tty/serial/ucc_uart.c
7602
7603 FREESCALE SOC DRIVERS
7604 M: Li Yang <leoyang.li@nxp.com>
7605 L: linuxppc-dev@lists.ozlabs.org
7606 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7607 S: Maintained
7608 F: Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7609 F: Documentation/devicetree/bindings/soc/fsl/
7610 F: drivers/soc/fsl/
7611 F: include/linux/fsl/
7612
7613 FREESCALE SOC FS_ENET DRIVER
7614 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
7615 L: linuxppc-dev@lists.ozlabs.org
7616 L: netdev@vger.kernel.org
7617 S: Maintained
7618 F: drivers/net/ethernet/freescale/fs_enet/
7619 F: include/linux/fs_enet_pd.h
7620
7621 FREESCALE SOC SOUND DRIVERS
7622 M: Nicolin Chen <nicoleotsuka@gmail.com>
7623 M: Xiubo Li <Xiubo.Lee@gmail.com>
7624 R: Fabio Estevam <festevam@gmail.com>
7625 R: Shengjiu Wang <shengjiu.wang@gmail.com>
7626 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7627 L: linuxppc-dev@lists.ozlabs.org
7628 S: Maintained
7629 F: sound/soc/fsl/fsl*
7630 F: sound/soc/fsl/imx*
7631 F: sound/soc/fsl/mpc8610_hpcd.c
7632
7633 FREESCALE USB PERIPHERAL DRIVERS
7634 M: Li Yang <leoyang.li@nxp.com>
7635 L: linux-usb@vger.kernel.org
7636 L: linuxppc-dev@lists.ozlabs.org
7637 S: Maintained
7638 F: drivers/usb/gadget/udc/fsl*
7639
7640 FREESCALE USB PHY DRIVER
7641 M: Ran Wang <ran.wang_1@nxp.com>
7642 L: linux-usb@vger.kernel.org
7643 L: linuxppc-dev@lists.ozlabs.org
7644 S: Maintained
7645 F: drivers/usb/phy/phy-fsl-usb*
7646
7647 FREEVXFS FILESYSTEM
7648 M: Christoph Hellwig <hch@infradead.org>
7649 S: Maintained
7650 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
7651 F: fs/freevxfs/
7652
7653 FREEZER
7654 M: "Rafael J. Wysocki" <rafael@kernel.org>
7655 M: Pavel Machek <pavel@ucw.cz>
7656 L: linux-pm@vger.kernel.org
7657 S: Supported
7658 F: Documentation/power/freezing-of-tasks.rst
7659 F: include/linux/freezer.h
7660 F: kernel/freezer.c
7661
7662 FRONTSWAP API
7663 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7664 L: linux-kernel@vger.kernel.org
7665 S: Maintained
7666 F: include/linux/frontswap.h
7667 F: mm/frontswap.c
7668
7669 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7670 M: David Howells <dhowells@redhat.com>
7671 L: linux-cachefs@redhat.com (moderated for non-subscribers)
7672 S: Supported
7673 F: Documentation/filesystems/caching/
7674 F: fs/fscache/
7675 F: include/linux/fscache*.h
7676
7677 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7678 M: Theodore Y. Ts'o <tytso@mit.edu>
7679 M: Jaegeuk Kim <jaegeuk@kernel.org>
7680 M: Eric Biggers <ebiggers@kernel.org>
7681 L: linux-fscrypt@vger.kernel.org
7682 S: Supported
7683 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7684 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7685 F: Documentation/filesystems/fscrypt.rst
7686 F: fs/crypto/
7687 F: include/linux/fscrypt*.h
7688 F: include/uapi/linux/fscrypt.h
7689
7690 FSI SUBSYSTEM
7691 M: Jeremy Kerr <jk@ozlabs.org>
7692 M: Joel Stanley <joel@jms.id.au>
7693 R: Alistar Popple <alistair@popple.id.au>
7694 R: Eddie James <eajames@linux.ibm.com>
7695 L: linux-fsi@lists.ozlabs.org
7696 S: Supported
7697 Q: http://patchwork.ozlabs.org/project/linux-fsi/list/
7698 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7699 F: drivers/fsi/
7700 F: include/linux/fsi*.h
7701 F: include/trace/events/fsi*.h
7702
7703 FSI-ATTACHED I2C DRIVER
7704 M: Eddie James <eajames@linux.ibm.com>
7705 L: linux-i2c@vger.kernel.org
7706 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
7707 S: Maintained
7708 F: Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7709 F: drivers/i2c/busses/i2c-fsi.c
7710
7711 FSI-ATTACHED SPI DRIVER
7712 M: Eddie James <eajames@linux.ibm.com>
7713 L: linux-spi@vger.kernel.org
7714 S: Maintained
7715 F: Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7716 F: drivers/spi/spi-fsi.c
7717
7718 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7719 M: Jan Kara <jack@suse.cz>
7720 R: Amir Goldstein <amir73il@gmail.com>
7721 L: linux-fsdevel@vger.kernel.org
7722 S: Maintained
7723 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7724 F: fs/notify/
7725 F: include/linux/fsnotify*.h
7726
7727 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7728 M: Eric Biggers <ebiggers@kernel.org>
7729 M: Theodore Y. Ts'o <tytso@mit.edu>
7730 L: linux-fscrypt@vger.kernel.org
7731 S: Supported
7732 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7733 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7734 F: Documentation/filesystems/fsverity.rst
7735 F: fs/verity/
7736 F: include/linux/fsverity.h
7737 F: include/uapi/linux/fsverity.h
7738
7739 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7740 M: Michael Zaidman <michael.zaidman@gmail.com>
7741 L: linux-i2c@vger.kernel.org
7742 L: linux-input@vger.kernel.org
7743 S: Maintained
7744 F: drivers/hid/hid-ft260.c
7745
7746 FUJITSU LAPTOP EXTRAS
7747 M: Jonathan Woithe <jwoithe@just42.net>
7748 L: platform-driver-x86@vger.kernel.org
7749 S: Maintained
7750 F: drivers/platform/x86/fujitsu-laptop.c
7751
7752 FUJITSU M-5MO LS CAMERA ISP DRIVER
7753 M: Kyungmin Park <kyungmin.park@samsung.com>
7754 M: Heungjun Kim <riverful.kim@samsung.com>
7755 L: linux-media@vger.kernel.org
7756 S: Maintained
7757 F: drivers/media/i2c/m5mols/
7758 F: include/media/i2c/m5mols.h
7759
7760 FUJITSU TABLET EXTRAS
7761 M: Robert Gerlach <khnz@gmx.de>
7762 L: platform-driver-x86@vger.kernel.org
7763 S: Maintained
7764 F: drivers/platform/x86/fujitsu-tablet.c
7765
7766 FUSE: FILESYSTEM IN USERSPACE
7767 M: Miklos Szeredi <miklos@szeredi.hu>
7768 L: linux-fsdevel@vger.kernel.org
7769 S: Maintained
7770 W: https://github.com/libfuse/
7771 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7772 F: Documentation/filesystems/fuse.rst
7773 F: fs/fuse/
7774 F: include/uapi/linux/fuse.h
7775
7776 FUTEX SUBSYSTEM
7777 M: Thomas Gleixner <tglx@linutronix.de>
7778 M: Ingo Molnar <mingo@redhat.com>
7779 R: Peter Zijlstra <peterz@infradead.org>
7780 R: Darren Hart <dvhart@infradead.org>
7781 R: Davidlohr Bueso <dave@stgolabs.net>
7782 L: linux-kernel@vger.kernel.org
7783 S: Maintained
7784 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7785 F: Documentation/locking/*futex*
7786 F: include/asm-generic/futex.h
7787 F: include/linux/futex.h
7788 F: include/uapi/linux/futex.h
7789 F: kernel/futex.c
7790 F: tools/perf/bench/futex*
7791 F: tools/testing/selftests/futex/
7792
7793 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7794 M: Tim Harvey <tharvey@gateworks.com>
7795 M: Robert Jones <rjones@gateworks.com>
7796 S: Maintained
7797 F: Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7798 F: drivers/mfd/gateworks-gsc.c
7799 F: include/linux/mfd/gsc.h
7800 F: Documentation/hwmon/gsc-hwmon.rst
7801 F: drivers/hwmon/gsc-hwmon.c
7802 F: include/linux/platform_data/gsc_hwmon.h
7803
7804 GCC PLUGINS
7805 M: Kees Cook <keescook@chromium.org>
7806 L: linux-hardening@vger.kernel.org
7807 S: Maintained
7808 F: Documentation/kbuild/gcc-plugins.rst
7809 F: scripts/Makefile.gcc-plugins
7810 F: scripts/gcc-plugins/
7811
7812 GCOV BASED KERNEL PROFILING
7813 M: Peter Oberparleiter <oberpar@linux.ibm.com>
7814 S: Maintained
7815 F: Documentation/dev-tools/gcov.rst
7816 F: kernel/gcov/
7817
7818 GDB KERNEL DEBUGGING HELPER SCRIPTS
7819 M: Jan Kiszka <jan.kiszka@siemens.com>
7820 M: Kieran Bingham <kbingham@kernel.org>
7821 S: Supported
7822 F: scripts/gdb/
7823
7824 GEMINI CRYPTO DRIVER
7825 M: Corentin Labbe <clabbe@baylibre.com>
7826 L: linux-crypto@vger.kernel.org
7827 S: Maintained
7828 F: drivers/crypto/gemini/
7829
7830 GEMTEK FM RADIO RECEIVER DRIVER
7831 M: Hans Verkuil <hverkuil@xs4all.nl>
7832 L: linux-media@vger.kernel.org
7833 S: Maintained
7834 W: https://linuxtv.org
7835 T: git git://linuxtv.org/media_tree.git
7836 F: drivers/media/radio/radio-gemtek*
7837
7838 GENERIC ARCHITECTURE TOPOLOGY
7839 M: Sudeep Holla <sudeep.holla@arm.com>
7840 L: linux-kernel@vger.kernel.org
7841 S: Maintained
7842 F: drivers/base/arch_topology.c
7843 F: include/linux/arch_topology.h
7844
7845 GENERIC ENTRY CODE
7846 M: Thomas Gleixner <tglx@linutronix.de>
7847 M: Peter Zijlstra <peterz@infradead.org>
7848 M: Andy Lutomirski <luto@kernel.org>
7849 L: linux-kernel@vger.kernel.org
7850 S: Maintained
7851 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7852 F: include/linux/entry-common.h
7853 F: include/linux/entry-kvm.h
7854 F: kernel/entry/
7855
7856 GENERIC GPIO I2C DRIVER
7857 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7858 S: Supported
7859 F: drivers/i2c/busses/i2c-gpio.c
7860 F: include/linux/platform_data/i2c-gpio.h
7861
7862 GENERIC GPIO I2C MULTIPLEXER DRIVER
7863 M: Peter Korsgaard <peter.korsgaard@barco.com>
7864 L: linux-i2c@vger.kernel.org
7865 S: Supported
7866 F: Documentation/i2c/muxes/i2c-mux-gpio.rst
7867 F: drivers/i2c/muxes/i2c-mux-gpio.c
7868 F: include/linux/platform_data/i2c-mux-gpio.h
7869
7870 GENERIC HDLC (WAN) DRIVERS
7871 M: Krzysztof Halasa <khc@pm.waw.pl>
7872 S: Maintained
7873 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
7874 F: drivers/net/wan/c101.c
7875 F: drivers/net/wan/hd6457*
7876 F: drivers/net/wan/hdlc*
7877 F: drivers/net/wan/n2.c
7878 F: drivers/net/wan/pc300too.c
7879 F: drivers/net/wan/pci200syn.c
7880 F: drivers/net/wan/wanxl*
7881
7882 GENERIC INCLUDE/ASM HEADER FILES
7883 M: Arnd Bergmann <arnd@arndb.de>
7884 L: linux-arch@vger.kernel.org
7885 S: Maintained
7886 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7887 F: include/asm-generic/
7888 F: include/uapi/asm-generic/
7889
7890 GENERIC PHY FRAMEWORK
7891 M: Kishon Vijay Abraham I <kishon@ti.com>
7892 M: Vinod Koul <vkoul@kernel.org>
7893 L: linux-phy@lists.infradead.org
7894 S: Supported
7895 Q: https://patchwork.kernel.org/project/linux-phy/list/
7896 T: git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7897 F: Documentation/devicetree/bindings/phy/
7898 F: drivers/phy/
7899 F: include/linux/phy/
7900
7901 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7902 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7903 S: Supported
7904 F: drivers/i2c/muxes/i2c-demux-pinctrl.c
7905
7906 GENERIC PM DOMAINS
7907 M: "Rafael J. Wysocki" <rafael@kernel.org>
7908 M: Kevin Hilman <khilman@kernel.org>
7909 M: Ulf Hansson <ulf.hansson@linaro.org>
7910 L: linux-pm@vger.kernel.org
7911 S: Supported
7912 F: Documentation/devicetree/bindings/power/power?domain*
7913 F: drivers/base/power/domain*.c
7914 F: include/linux/pm_domain.h
7915
7916 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7917 M: Eugen Hristev <eugen.hristev@microchip.com>
7918 L: linux-input@vger.kernel.org
7919 S: Maintained
7920 F: drivers/input/touchscreen/resistive-adc-touch.c
7921
7922 GENERIC STRING LIBRARY
7923 R: Andy Shevchenko <andy@kernel.org>
7924 S: Maintained
7925 F: lib/string.c
7926 F: lib/string_helpers.c
7927 F: lib/test_string.c
7928 F: lib/test-string_helpers.c
7929
7930 GENERIC UIO DRIVER FOR PCI DEVICES
7931 M: "Michael S. Tsirkin" <mst@redhat.com>
7932 L: kvm@vger.kernel.org
7933 S: Supported
7934 F: drivers/uio/uio_pci_generic.c
7935
7936 GENERIC VDSO LIBRARY
7937 M: Andy Lutomirski <luto@kernel.org>
7938 M: Thomas Gleixner <tglx@linutronix.de>
7939 M: Vincenzo Frascino <vincenzo.frascino@arm.com>
7940 L: linux-kernel@vger.kernel.org
7941 S: Maintained
7942 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7943 F: include/asm-generic/vdso/vsyscall.h
7944 F: include/vdso/
7945 F: kernel/time/vsyscall.c
7946 F: lib/vdso/
7947
7948 GENWQE (IBM Generic Workqueue Card)
7949 M: Frank Haverkamp <haver@linux.ibm.com>
7950 S: Supported
7951 F: drivers/misc/genwqe/
7952
7953 GET_MAINTAINER SCRIPT
7954 M: Joe Perches <joe@perches.com>
7955 S: Maintained
7956 F: scripts/get_maintainer.pl
7957
7958 GFS2 FILE SYSTEM
7959 M: Bob Peterson <rpeterso@redhat.com>
7960 M: Andreas Gruenbacher <agruenba@redhat.com>
7961 L: cluster-devel@redhat.com
7962 S: Supported
7963 B: https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7964 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7965 F: Documentation/filesystems/gfs2*
7966 F: fs/gfs2/
7967 F: include/uapi/linux/gfs2_ondisk.h
7968
7969 GIGABYTE WMI DRIVER
7970 M: Thomas Weißschuh <thomas@weissschuh.net>
7971 L: platform-driver-x86@vger.kernel.org
7972 S: Maintained
7973 F: drivers/platform/x86/gigabyte-wmi.c
7974
7975 GNSS SUBSYSTEM
7976 M: Johan Hovold <johan@kernel.org>
7977 S: Maintained
7978 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7979 F: Documentation/ABI/testing/sysfs-class-gnss
7980 F: Documentation/devicetree/bindings/gnss/
7981 F: drivers/gnss/
7982 F: include/linux/gnss.h
7983
7984 GO7007 MPEG CODEC
7985 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
7986 L: linux-media@vger.kernel.org
7987 S: Maintained
7988 F: drivers/media/usb/go7007/
7989
7990 GOODIX TOUCHSCREEN
7991 M: Bastien Nocera <hadess@hadess.net>
7992 M: Hans de Goede <hdegoede@redhat.com>
7993 L: linux-input@vger.kernel.org
7994 S: Maintained
7995 F: drivers/input/touchscreen/goodix*
7996
7997 GOOGLE ETHERNET DRIVERS
7998 M: Jeroen de Borst <jeroendb@google.com>
7999 R: Catherine Sullivan <csully@google.com>
8000 R: David Awogbemila <awogbemila@google.com>
8001 L: netdev@vger.kernel.org
8002 S: Supported
8003 F: Documentation/networking/device_drivers/ethernet/google/gve.rst
8004 F: drivers/net/ethernet/google
8005
8006 GPD POCKET FAN DRIVER
8007 M: Hans de Goede <hdegoede@redhat.com>
8008 L: platform-driver-x86@vger.kernel.org
8009 S: Maintained
8010 F: drivers/platform/x86/gpd-pocket-fan.c
8011
8012 GPIO ACPI SUPPORT
8013 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8014 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8015 L: linux-gpio@vger.kernel.org
8016 L: linux-acpi@vger.kernel.org
8017 S: Maintained
8018 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8019 F: Documentation/firmware-guide/acpi/gpio-properties.rst
8020 F: drivers/gpio/gpiolib-acpi.c
8021 F: drivers/gpio/gpiolib-acpi.h
8022
8023 GPIO AGGREGATOR
8024 M: Geert Uytterhoeven <geert+renesas@glider.be>
8025 L: linux-gpio@vger.kernel.org
8026 S: Supported
8027 F: Documentation/admin-guide/gpio/gpio-aggregator.rst
8028 F: drivers/gpio/gpio-aggregator.c
8029
8030 GPIO IR Transmitter
8031 M: Sean Young <sean@mess.org>
8032 L: linux-media@vger.kernel.org
8033 S: Maintained
8034 F: drivers/media/rc/gpio-ir-tx.c
8035
8036 GPIO MOCKUP DRIVER
8037 M: Bamvor Jian Zhang <bamv2005@gmail.com>
8038 L: linux-gpio@vger.kernel.org
8039 S: Maintained
8040 F: drivers/gpio/gpio-mockup.c
8041 F: tools/testing/selftests/gpio/
8042
8043 GPIO REGMAP
8044 R: Michael Walle <michael@walle.cc>
8045 S: Maintained
8046 F: drivers/gpio/gpio-regmap.c
8047 F: include/linux/gpio/regmap.h
8048
8049 GPIO SUBSYSTEM
8050 M: Linus Walleij <linus.walleij@linaro.org>
8051 M: Bartosz Golaszewski <brgl@bgdev.pl>
8052 L: linux-gpio@vger.kernel.org
8053 S: Maintained
8054 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8055 F: Documentation/ABI/obsolete/sysfs-gpio
8056 F: Documentation/ABI/testing/gpio-cdev
8057 F: Documentation/admin-guide/gpio/
8058 F: Documentation/devicetree/bindings/gpio/
8059 F: Documentation/driver-api/gpio/
8060 F: drivers/gpio/
8061 F: include/asm-generic/gpio.h
8062 F: include/linux/gpio.h
8063 F: include/linux/gpio/
8064 F: include/linux/of_gpio.h
8065 F: include/uapi/linux/gpio.h
8066 F: tools/gpio/
8067
8068 GRE DEMULTIPLEXER DRIVER
8069 M: Dmitry Kozlov <xeb@mail.ru>
8070 L: netdev@vger.kernel.org
8071 S: Maintained
8072 F: include/net/gre.h
8073 F: net/ipv4/gre_demux.c
8074 F: net/ipv4/gre_offload.c
8075
8076 GRETH 10/100/1G Ethernet MAC device driver
8077 M: Andreas Larsson <andreas@gaisler.com>
8078 L: netdev@vger.kernel.org
8079 S: Maintained
8080 F: drivers/net/ethernet/aeroflex/
8081
8082 GREYBUS AUDIO PROTOCOLS DRIVERS
8083 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
8084 M: Mark Greer <mgreer@animalcreek.com>
8085 S: Maintained
8086 F: drivers/staging/greybus/audio_apbridgea.c
8087 F: drivers/staging/greybus/audio_apbridgea.h
8088 F: drivers/staging/greybus/audio_codec.c
8089 F: drivers/staging/greybus/audio_codec.h
8090 F: drivers/staging/greybus/audio_gb.c
8091 F: drivers/staging/greybus/audio_manager.c
8092 F: drivers/staging/greybus/audio_manager.h
8093 F: drivers/staging/greybus/audio_manager_module.c
8094 F: drivers/staging/greybus/audio_manager_private.h
8095 F: drivers/staging/greybus/audio_manager_sysfs.c
8096 F: drivers/staging/greybus/audio_module.c
8097 F: drivers/staging/greybus/audio_topology.c
8098
8099 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8100 M: Viresh Kumar <vireshk@kernel.org>
8101 S: Maintained
8102 F: drivers/staging/greybus/authentication.c
8103 F: drivers/staging/greybus/bootrom.c
8104 F: drivers/staging/greybus/firmware.h
8105 F: drivers/staging/greybus/fw-core.c
8106 F: drivers/staging/greybus/fw-download.c
8107 F: drivers/staging/greybus/fw-management.c
8108 F: drivers/staging/greybus/greybus_authentication.h
8109 F: drivers/staging/greybus/greybus_firmware.h
8110 F: drivers/staging/greybus/hid.c
8111 F: drivers/staging/greybus/i2c.c
8112 F: drivers/staging/greybus/spi.c
8113 F: drivers/staging/greybus/spilib.c
8114 F: drivers/staging/greybus/spilib.h
8115
8116 GREYBUS LOOPBACK DRIVER
8117 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
8118 S: Maintained
8119 F: drivers/staging/greybus/loopback.c
8120
8121 GREYBUS PLATFORM DRIVERS
8122 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8123 S: Maintained
8124 F: drivers/staging/greybus/arche-apb-ctrl.c
8125 F: drivers/staging/greybus/arche-platform.c
8126 F: drivers/staging/greybus/arche_platform.h
8127
8128 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8129 M: Rui Miguel Silva <rmfrfs@gmail.com>
8130 S: Maintained
8131 F: drivers/staging/greybus/gpio.c
8132 F: drivers/staging/greybus/light.c
8133 F: drivers/staging/greybus/power_supply.c
8134 F: drivers/staging/greybus/sdio.c
8135 F: drivers/staging/greybus/spi.c
8136 F: drivers/staging/greybus/spilib.c
8137
8138 GREYBUS SUBSYSTEM
8139 M: Johan Hovold <johan@kernel.org>
8140 M: Alex Elder <elder@kernel.org>
8141 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8142 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
8143 S: Maintained
8144 F: drivers/greybus/
8145 F: drivers/staging/greybus/
8146 F: include/linux/greybus.h
8147 F: include/linux/greybus/
8148
8149 GREYBUS UART PROTOCOLS DRIVERS
8150 M: David Lin <dtwlin@gmail.com>
8151 S: Maintained
8152 F: drivers/staging/greybus/log.c
8153 F: drivers/staging/greybus/uart.c
8154
8155 GS1662 VIDEO SERIALIZER
8156 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8157 L: linux-media@vger.kernel.org
8158 S: Maintained
8159 T: git git://linuxtv.org/media_tree.git
8160 F: drivers/media/spi/gs1662.c
8161
8162 GSPCA FINEPIX SUBDRIVER
8163 M: Frank Zago <frank@zago.net>
8164 L: linux-media@vger.kernel.org
8165 S: Maintained
8166 T: git git://linuxtv.org/media_tree.git
8167 F: drivers/media/usb/gspca/finepix.c
8168
8169 GSPCA GL860 SUBDRIVER
8170 M: Olivier Lorin <o.lorin@laposte.net>
8171 L: linux-media@vger.kernel.org
8172 S: Maintained
8173 T: git git://linuxtv.org/media_tree.git
8174 F: drivers/media/usb/gspca/gl860/
8175
8176 GSPCA M5602 SUBDRIVER
8177 M: Erik Andren <erik.andren@gmail.com>
8178 L: linux-media@vger.kernel.org
8179 S: Maintained
8180 T: git git://linuxtv.org/media_tree.git
8181 F: drivers/media/usb/gspca/m5602/
8182
8183 GSPCA PAC207 SONIXB SUBDRIVER
8184 M: Hans Verkuil <hverkuil@xs4all.nl>
8185 L: linux-media@vger.kernel.org
8186 S: Odd Fixes
8187 T: git git://linuxtv.org/media_tree.git
8188 F: drivers/media/usb/gspca/pac207.c
8189
8190 GSPCA SN9C20X SUBDRIVER
8191 M: Brian Johnson <brijohn@gmail.com>
8192 L: linux-media@vger.kernel.org
8193 S: Maintained
8194 T: git git://linuxtv.org/media_tree.git
8195 F: drivers/media/usb/gspca/sn9c20x.c
8196
8197 GSPCA T613 SUBDRIVER
8198 M: Leandro Costantino <lcostantino@gmail.com>
8199 L: linux-media@vger.kernel.org
8200 S: Maintained
8201 T: git git://linuxtv.org/media_tree.git
8202 F: drivers/media/usb/gspca/t613.c
8203
8204 GSPCA USB WEBCAM DRIVER
8205 M: Hans Verkuil <hverkuil@xs4all.nl>
8206 L: linux-media@vger.kernel.org
8207 S: Odd Fixes
8208 T: git git://linuxtv.org/media_tree.git
8209 F: drivers/media/usb/gspca/
8210
8211 GTP (GPRS Tunneling Protocol)
8212 M: Pablo Neira Ayuso <pablo@netfilter.org>
8213 M: Harald Welte <laforge@gnumonks.org>
8214 L: osmocom-net-gprs@lists.osmocom.org
8215 S: Maintained
8216 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8217 F: drivers/net/gtp.c
8218
8219 GUID PARTITION TABLE (GPT)
8220 M: Davidlohr Bueso <dave@stgolabs.net>
8221 L: linux-efi@vger.kernel.org
8222 S: Maintained
8223 F: block/partitions/efi.*
8224
8225 H8/300 ARCHITECTURE
8226 M: Yoshinori Sato <ysato@users.sourceforge.jp>
8227 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8228 S: Maintained
8229 W: http://uclinux-h8.sourceforge.jp
8230 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8231 F: arch/h8300/
8232 F: drivers/clk/h8300/
8233 F: drivers/clocksource/h8300_*.c
8234 F: drivers/irqchip/irq-renesas-h8*.c
8235
8236 HABANALABS PCI DRIVER
8237 M: Oded Gabbay <ogabbay@kernel.org>
8238 S: Supported
8239 T: git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8240 F: Documentation/ABI/testing/debugfs-driver-habanalabs
8241 F: Documentation/ABI/testing/sysfs-driver-habanalabs
8242 F: drivers/misc/habanalabs/
8243 F: include/uapi/misc/habanalabs.h
8244
8245 HACKRF MEDIA DRIVER
8246 M: Antti Palosaari <crope@iki.fi>
8247 L: linux-media@vger.kernel.org
8248 S: Maintained
8249 W: https://linuxtv.org
8250 W: http://palosaari.fi/linux/
8251 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8252 T: git git://linuxtv.org/anttip/media_tree.git
8253 F: drivers/media/usb/hackrf/
8254
8255 HANTRO VPU CODEC DRIVER
8256 M: Ezequiel Garcia <ezequiel@collabora.com>
8257 M: Philipp Zabel <p.zabel@pengutronix.de>
8258 L: linux-media@vger.kernel.org
8259 L: linux-rockchip@lists.infradead.org
8260 S: Maintained
8261 F: Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8262 F: Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8263 F: drivers/staging/media/hantro/
8264
8265 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8266 M: Frank Seidel <frank@f-seidel.de>
8267 L: platform-driver-x86@vger.kernel.org
8268 S: Maintained
8269 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8270 F: drivers/platform/x86/hdaps.c
8271
8272 HARDWARE MONITORING
8273 M: Jean Delvare <jdelvare@suse.com>
8274 M: Guenter Roeck <linux@roeck-us.net>
8275 L: linux-hwmon@vger.kernel.org
8276 S: Maintained
8277 W: http://hwmon.wiki.kernel.org/
8278 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8279 F: Documentation/devicetree/bindings/hwmon/
8280 F: Documentation/hwmon/
8281 F: drivers/hwmon/
8282 F: include/linux/hwmon*.h
8283 F: include/trace/events/hwmon*.h
8284 K: (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8285
8286 HARDWARE RANDOM NUMBER GENERATOR CORE
8287 M: Matt Mackall <mpm@selenic.com>
8288 M: Herbert Xu <herbert@gondor.apana.org.au>
8289 L: linux-crypto@vger.kernel.org
8290 S: Odd fixes
8291 F: Documentation/admin-guide/hw_random.rst
8292 F: Documentation/devicetree/bindings/rng/
8293 F: drivers/char/hw_random/
8294 F: include/linux/hw_random.h
8295
8296 HARDWARE SPINLOCK CORE
8297 M: Ohad Ben-Cohen <ohad@wizery.com>
8298 M: Bjorn Andersson <bjorn.andersson@linaro.org>
8299 R: Baolin Wang <baolin.wang7@gmail.com>
8300 L: linux-remoteproc@vger.kernel.org
8301 S: Maintained
8302 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8303 F: Documentation/devicetree/bindings/hwlock/
8304 F: Documentation/locking/hwspinlock.rst
8305 F: drivers/hwspinlock/
8306 F: include/linux/hwspinlock.h
8307
8308 HARDWARE TRACING FACILITIES
8309 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
8310 S: Maintained
8311 F: drivers/hwtracing/
8312
8313 HARMONY SOUND DRIVER
8314 L: linux-parisc@vger.kernel.org
8315 S: Maintained
8316 F: sound/parisc/harmony.*
8317
8318 HDPVR USB VIDEO ENCODER DRIVER
8319 M: Hans Verkuil <hverkuil@xs4all.nl>
8320 L: linux-media@vger.kernel.org
8321 S: Odd Fixes
8322 W: https://linuxtv.org
8323 T: git git://linuxtv.org/media_tree.git
8324 F: drivers/media/usb/hdpvr/
8325
8326 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8327 M: Matt Hsiao <matt.hsiao@hpe.com>
8328 S: Supported
8329 F: drivers/misc/hpilo.[ch]
8330
8331 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8332 M: Jerry Hoemann <jerry.hoemann@hpe.com>
8333 S: Supported
8334 F: Documentation/watchdog/hpwdt.rst
8335 F: drivers/watchdog/hpwdt.c
8336
8337 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8338 M: Don Brace <don.brace@microchip.com>
8339 L: storagedev@microchip.com
8340 L: linux-scsi@vger.kernel.org
8341 S: Supported
8342 F: Documentation/scsi/hpsa.rst
8343 F: drivers/scsi/hpsa*.[ch]
8344 F: include/linux/cciss*.h
8345 F: include/uapi/linux/cciss*.h
8346
8347 HFI1 DRIVER
8348 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8349 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8350 L: linux-rdma@vger.kernel.org
8351 S: Supported
8352 F: drivers/infiniband/hw/hfi1
8353
8354 HFS FILESYSTEM
8355 L: linux-fsdevel@vger.kernel.org
8356 S: Orphan
8357 F: Documentation/filesystems/hfs.rst
8358 F: fs/hfs/
8359
8360 HFSPLUS FILESYSTEM
8361 L: linux-fsdevel@vger.kernel.org
8362 S: Orphan
8363 F: Documentation/filesystems/hfsplus.rst
8364 F: fs/hfsplus/
8365
8366 HGA FRAMEBUFFER DRIVER
8367 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8368 L: linux-nvidia@lists.surfsouth.com
8369 S: Maintained
8370 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8371 F: drivers/video/fbdev/hgafb.c
8372
8373 HIBERNATION (aka Software Suspend, aka swsusp)
8374 M: "Rafael J. Wysocki" <rafael@kernel.org>
8375 M: Pavel Machek <pavel@ucw.cz>
8376 L: linux-pm@vger.kernel.org
8377 S: Supported
8378 B: https://bugzilla.kernel.org
8379 F: arch/*/include/asm/suspend*.h
8380 F: arch/x86/power/
8381 F: drivers/base/power/
8382 F: include/linux/freezer.h
8383 F: include/linux/pm.h
8384 F: include/linux/suspend.h
8385 F: kernel/power/
8386
8387 HID CORE LAYER
8388 M: Jiri Kosina <jikos@kernel.org>
8389 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
8390 L: linux-input@vger.kernel.org
8391 S: Maintained
8392 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8393 F: drivers/hid/
8394 F: include/linux/hid*
8395 F: include/uapi/linux/hid*
8396
8397 HID PLAYSTATION DRIVER
8398 M: Roderick Colenbrander <roderick.colenbrander@sony.com>
8399 L: linux-input@vger.kernel.org
8400 S: Supported
8401 F: drivers/hid/hid-playstation.c
8402
8403 HID SENSOR HUB DRIVERS
8404 M: Jiri Kosina <jikos@kernel.org>
8405 M: Jonathan Cameron <jic23@kernel.org>
8406 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8407 L: linux-input@vger.kernel.org
8408 L: linux-iio@vger.kernel.org
8409 S: Maintained
8410 F: Documentation/hid/hid-sensor*
8411 F: drivers/hid/hid-sensor-*
8412 F: drivers/iio/*/hid-*
8413 F: include/linux/hid-sensor-*
8414
8415 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8416 M: Thomas Gleixner <tglx@linutronix.de>
8417 L: linux-kernel@vger.kernel.org
8418 S: Maintained
8419 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8420 F: Documentation/timers/
8421 F: include/linux/clockchips.h
8422 F: include/linux/hrtimer.h
8423 F: kernel/time/clockevents.c
8424 F: kernel/time/hrtimer.c
8425 F: kernel/time/timer_*.c
8426
8427 HIGH-SPEED SCC DRIVER FOR AX.25
8428 L: linux-hams@vger.kernel.org
8429 S: Orphan
8430 F: drivers/net/hamradio/dmascc.c
8431 F: drivers/net/hamradio/scc.c
8432
8433 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8434 M: HighPoint Linux Team <linux@highpoint-tech.com>
8435 S: Supported
8436 W: http://www.highpoint-tech.com
8437 F: Documentation/scsi/hptiop.rst
8438 F: drivers/scsi/hptiop.c
8439
8440 HIPPI
8441 M: Jes Sorensen <jes@trained-monkey.org>
8442 L: linux-hippi@sunsite.dk
8443 S: Maintained
8444 F: drivers/net/hippi/
8445 F: include/linux/hippidevice.h
8446 F: include/uapi/linux/if_hippi.h
8447 F: net/802/hippi.c
8448
8449 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8450 M: Kurt Kanzenbach <kurt@linutronix.de>
8451 L: netdev@vger.kernel.org
8452 S: Maintained
8453 F: Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8454 F: drivers/net/dsa/hirschmann/*
8455 F: include/linux/platform_data/hirschmann-hellcreek.h
8456 F: net/dsa/tag_hellcreek.c
8457
8458 HISILICON DMA DRIVER
8459 M: Zhou Wang <wangzhou1@hisilicon.com>
8460 L: dmaengine@vger.kernel.org
8461 S: Maintained
8462 F: drivers/dma/hisi_dma.c
8463
8464 HISILICON GPIO DRIVER
8465 M: Luo Jiaxing <luojiaxing@huawei.com>
8466 L: linux-gpio@vger.kernel.org
8467 S: Maintained
8468 F: drivers/gpio/gpio-hisi.c
8469
8470 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8471 M: Zaibo Xu <xuzaibo@huawei.com>
8472 L: linux-crypto@vger.kernel.org
8473 S: Maintained
8474 F: Documentation/ABI/testing/debugfs-hisi-hpre
8475 F: drivers/crypto/hisilicon/hpre/hpre.h
8476 F: drivers/crypto/hisilicon/hpre/hpre_crypto.c
8477 F: drivers/crypto/hisilicon/hpre/hpre_main.c
8478
8479 HISILICON I2C CONTROLLER DRIVER
8480 M: Yicong Yang <yangyicong@hisilicon.com>
8481 L: linux-i2c@vger.kernel.org
8482 S: Maintained
8483 W: https://www.hisilicon.com
8484 F: drivers/i2c/busses/i2c-hisi.c
8485
8486 HISILICON LPC BUS DRIVER
8487 M: john.garry@huawei.com
8488 S: Maintained
8489 W: http://www.hisilicon.com
8490 F: Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8491 F: drivers/bus/hisi_lpc.c
8492
8493 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8494 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8495 M: Salil Mehta <salil.mehta@huawei.com>
8496 L: netdev@vger.kernel.org
8497 S: Maintained
8498 W: http://www.hisilicon.com
8499 F: drivers/net/ethernet/hisilicon/hns3/
8500
8501 HISILICON NETWORK SUBSYSTEM DRIVER
8502 M: Yisen Zhuang <yisen.zhuang@huawei.com>
8503 M: Salil Mehta <salil.mehta@huawei.com>
8504 L: netdev@vger.kernel.org
8505 S: Maintained
8506 W: http://www.hisilicon.com
8507 F: Documentation/devicetree/bindings/net/hisilicon*.txt
8508 F: drivers/net/ethernet/hisilicon/
8509
8510 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8511 M: John Stultz <john.stultz@linaro.org>
8512 L: linux-kernel@vger.kernel.org
8513 S: Maintained
8514 F: drivers/misc/hisi_hikey_usb.c
8515 F: Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8516
8517 HISILICON PMU DRIVER
8518 M: Shaokun Zhang <zhangshaokun@hisilicon.com>
8519 S: Supported
8520 W: http://www.hisilicon.com
8521 F: Documentation/admin-guide/perf/hisi-pmu.rst
8522 F: drivers/perf/hisilicon
8523
8524 HISILICON QM AND ZIP Controller DRIVER
8525 M: Zhou Wang <wangzhou1@hisilicon.com>
8526 L: linux-crypto@vger.kernel.org
8527 S: Maintained
8528 F: Documentation/ABI/testing/debugfs-hisi-zip
8529 F: drivers/crypto/hisilicon/qm.c
8530 F: drivers/crypto/hisilicon/qm.h
8531 F: drivers/crypto/hisilicon/sgl.c
8532 F: drivers/crypto/hisilicon/zip/
8533
8534 HISILICON ROCE DRIVER
8535 M: Wenpeng Liang <liangwenpeng@huawei.com>
8536 M: Weihang Li <liweihang@huawei.com>
8537 L: linux-rdma@vger.kernel.org
8538 S: Maintained
8539 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8540 F: drivers/infiniband/hw/hns/
8541
8542 HISILICON SAS Controller
8543 M: John Garry <john.garry@huawei.com>
8544 S: Supported
8545 W: http://www.hisilicon.com
8546 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8547 F: drivers/scsi/hisi_sas/
8548
8549 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8550 M: Zaibo Xu <xuzaibo@huawei.com>
8551 L: linux-crypto@vger.kernel.org
8552 S: Maintained
8553 F: Documentation/ABI/testing/debugfs-hisi-sec
8554 F: drivers/crypto/hisilicon/sec2/sec.h
8555 F: drivers/crypto/hisilicon/sec2/sec_crypto.c
8556 F: drivers/crypto/hisilicon/sec2/sec_crypto.h
8557 F: drivers/crypto/hisilicon/sec2/sec_main.c
8558
8559 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8560 M: Jay Fang <f.fangjian@huawei.com>
8561 L: linux-spi@vger.kernel.org
8562 S: Maintained
8563 W: http://www.hisilicon.com
8564 F: drivers/spi/spi-hisi-kunpeng.c
8565
8566 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8567 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8568 L: linux-kernel@vger.kernel.org
8569 S: Maintained
8570 F: Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8571 F: drivers/spmi/hisi-spmi-controller.c
8572
8573 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8574 M: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8575 L: linux-kernel@vger.kernel.org
8576 S: Maintained
8577 F: Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8578 F: drivers/mfd/hi6421-spmi-pmic.c
8579
8580 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8581 M: Zaibo Xu <xuzaibo@huawei.com>
8582 S: Maintained
8583 F: drivers/crypto/hisilicon/trng/trng.c
8584
8585 HISILICON V3XX SPI NOR FLASH Controller Driver
8586 M: John Garry <john.garry@huawei.com>
8587 S: Maintained
8588 W: http://www.hisilicon.com
8589 F: drivers/spi/spi-hisi-sfc-v3xx.c
8590
8591 HMM - Heterogeneous Memory Management
8592 M: Jérôme Glisse <jglisse@redhat.com>
8593 L: linux-mm@kvack.org
8594 S: Maintained
8595 F: Documentation/vm/hmm.rst
8596 F: include/linux/hmm*
8597 F: lib/test_hmm*
8598 F: mm/hmm*
8599 F: tools/testing/selftests/vm/*hmm*
8600
8601 HOST AP DRIVER
8602 M: Jouni Malinen <j@w1.fi>
8603 L: linux-wireless@vger.kernel.org
8604 S: Obsolete
8605 W: http://w1.fi/hostap-driver.html
8606 F: drivers/net/wireless/intersil/hostap/
8607
8608 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8609 L: platform-driver-x86@vger.kernel.org
8610 S: Orphan
8611 F: drivers/platform/x86/tc1100-wmi.c
8612
8613 HPET: High Precision Event Timers driver
8614 M: Clemens Ladisch <clemens@ladisch.de>
8615 S: Maintained
8616 F: Documentation/timers/hpet.rst
8617 F: drivers/char/hpet.c
8618 F: include/linux/hpet.h
8619 F: include/uapi/linux/hpet.h
8620
8621 HPET: x86
8622 S: Orphan
8623 F: arch/x86/include/asm/hpet.h
8624 F: arch/x86/kernel/hpet.c
8625
8626 HPFS FILESYSTEM
8627 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8628 S: Maintained
8629 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8630 F: fs/hpfs/
8631
8632 HSI SUBSYSTEM
8633 M: Sebastian Reichel <sre@kernel.org>
8634 S: Maintained
8635 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8636 F: Documentation/ABI/testing/sysfs-bus-hsi
8637 F: Documentation/driver-api/hsi.rst
8638 F: drivers/hsi/
8639 F: include/linux/hsi/
8640 F: include/uapi/linux/hsi/
8641
8642 HSO 3G MODEM DRIVER
8643 L: linux-usb@vger.kernel.org
8644 S: Orphan
8645 F: drivers/net/usb/hso.c
8646
8647 HSR NETWORK PROTOCOL
8648 L: netdev@vger.kernel.org
8649 S: Orphan
8650 F: net/hsr/
8651
8652 HT16K33 LED CONTROLLER DRIVER
8653 M: Robin van der Gracht <robin@protonic.nl>
8654 S: Maintained
8655 F: Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8656 F: drivers/auxdisplay/ht16k33.c
8657
8658 HTCPEN TOUCHSCREEN DRIVER
8659 M: Pau Oliva Fora <pof@eslack.org>
8660 L: linux-input@vger.kernel.org
8661 S: Maintained
8662 F: drivers/input/touchscreen/htcpen.c
8663
8664 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8665 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8666 L: linux-iio@vger.kernel.org
8667 S: Maintained
8668 W: http://www.st.com/
8669 F: Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8670 F: drivers/iio/humidity/hts221*
8671
8672 HUAWEI ETHERNET DRIVER
8673 L: netdev@vger.kernel.org
8674 S: Orphan
8675 F: Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8676 F: drivers/net/ethernet/huawei/hinic/
8677
8678 HUGETLB FILESYSTEM
8679 M: Mike Kravetz <mike.kravetz@oracle.com>
8680 L: linux-mm@kvack.org
8681 S: Maintained
8682 F: Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8683 F: Documentation/admin-guide/mm/hugetlbpage.rst
8684 F: Documentation/vm/hugetlbfs_reserv.rst
8685 F: fs/hugetlbfs/
8686 F: include/linux/hugetlb.h
8687 F: mm/hugetlb.c
8688
8689 HVA ST MEDIA DRIVER
8690 M: Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8691 L: linux-media@vger.kernel.org
8692 S: Supported
8693 W: https://linuxtv.org
8694 T: git git://linuxtv.org/media_tree.git
8695 F: drivers/media/platform/sti/hva
8696
8697 HWPOISON MEMORY FAILURE HANDLING
8698 M: Naoya Horiguchi <naoya.horiguchi@nec.com>
8699 L: linux-mm@kvack.org
8700 S: Maintained
8701 F: mm/hwpoison-inject.c
8702 F: mm/memory-failure.c
8703
8704 HYCON HY46XX TOUCHSCREEN SUPPORT
8705 M: Giulio Benetti <giulio.benetti@benettiengineering.com>
8706 L: linux-input@vger.kernel.org
8707 S: Maintained
8708 F: Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8709 F: drivers/input/touchscreen/hycon-hy46xx.c
8710
8711 HYGON PROCESSOR SUPPORT
8712 M: Pu Wen <puwen@hygon.cn>
8713 L: linux-kernel@vger.kernel.org
8714 S: Maintained
8715 F: arch/x86/kernel/cpu/hygon.c
8716
8717 HYNIX HI556 SENSOR DRIVER
8718 M: Shawn Tu <shawnx.tu@intel.com>
8719 L: linux-media@vger.kernel.org
8720 S: Maintained
8721 T: git git://linuxtv.org/media_tree.git
8722 F: drivers/media/i2c/hi556.c
8723
8724 Hyper-V/Azure CORE AND DRIVERS
8725 M: "K. Y. Srinivasan" <kys@microsoft.com>
8726 M: Haiyang Zhang <haiyangz@microsoft.com>
8727 M: Stephen Hemminger <sthemmin@microsoft.com>
8728 M: Wei Liu <wei.liu@kernel.org>
8729 M: Dexuan Cui <decui@microsoft.com>
8730 L: linux-hyperv@vger.kernel.org
8731 S: Supported
8732 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8733 F: Documentation/ABI/stable/sysfs-bus-vmbus
8734 F: Documentation/ABI/testing/debugfs-hyperv
8735 F: Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8736 F: arch/arm64/hyperv
8737 F: arch/arm64/include/asm/hyperv-tlfs.h
8738 F: arch/arm64/include/asm/mshyperv.h
8739 F: arch/x86/hyperv
8740 F: arch/x86/include/asm/hyperv-tlfs.h
8741 F: arch/x86/include/asm/mshyperv.h
8742 F: arch/x86/include/asm/trace/hyperv.h
8743 F: arch/x86/kernel/cpu/mshyperv.c
8744 F: drivers/clocksource/hyperv_timer.c
8745 F: drivers/hid/hid-hyperv.c
8746 F: drivers/hv/
8747 F: drivers/input/serio/hyperv-keyboard.c
8748 F: drivers/iommu/hyperv-iommu.c
8749 F: drivers/net/ethernet/microsoft/
8750 F: drivers/net/hyperv/
8751 F: drivers/pci/controller/pci-hyperv-intf.c
8752 F: drivers/pci/controller/pci-hyperv.c
8753 F: drivers/scsi/storvsc_drv.c
8754 F: drivers/uio/uio_hv_generic.c
8755 F: drivers/video/fbdev/hyperv_fb.c
8756 F: include/asm-generic/hyperv-tlfs.h
8757 F: include/asm-generic/mshyperv.h
8758 F: include/clocksource/hyperv_timer.h
8759 F: include/linux/hyperv.h
8760 F: include/uapi/linux/hyperv.h
8761 F: net/vmw_vsock/hyperv_transport.c
8762 F: tools/hv/
8763
8764 HYPERBUS SUPPORT
8765 M: Vignesh Raghavendra <vigneshr@ti.com>
8766 L: linux-mtd@lists.infradead.org
8767 S: Supported
8768 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8769 C: irc://irc.oftc.net/mtd
8770 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8771 F: Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8772 F: Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8773 F: drivers/mtd/hyperbus/
8774 F: include/linux/mtd/hyperbus.h
8775
8776 HYPERVISOR VIRTUAL CONSOLE DRIVER
8777 L: linuxppc-dev@lists.ozlabs.org
8778 S: Odd Fixes
8779 F: drivers/tty/hvc/
8780
8781 I2C ACPI SUPPORT
8782 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8783 L: linux-i2c@vger.kernel.org
8784 L: linux-acpi@vger.kernel.org
8785 S: Maintained
8786 F: drivers/i2c/i2c-core-acpi.c
8787
8788 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8789 M: Ajay Gupta <ajayg@nvidia.com>
8790 L: linux-i2c@vger.kernel.org
8791 S: Maintained
8792 F: Documentation/i2c/busses/i2c-nvidia-gpu.rst
8793 F: drivers/i2c/busses/i2c-nvidia-gpu.c
8794
8795 I2C MUXES
8796 M: Peter Rosin <peda@axentia.se>
8797 L: linux-i2c@vger.kernel.org
8798 S: Maintained
8799 F: Documentation/devicetree/bindings/i2c/i2c-arb*
8800 F: Documentation/devicetree/bindings/i2c/i2c-gate*
8801 F: Documentation/devicetree/bindings/i2c/i2c-mux*
8802 F: Documentation/i2c/i2c-topology.rst
8803 F: Documentation/i2c/muxes/
8804 F: drivers/i2c/i2c-mux.c
8805 F: drivers/i2c/muxes/
8806 F: include/linux/i2c-mux.h
8807
8808 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8809 M: Gregory CLEMENT <gregory.clement@bootlin.com>
8810 L: linux-i2c@vger.kernel.org
8811 S: Maintained
8812 F: Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8813 F: drivers/i2c/busses/i2c-mv64xxx.c
8814
8815 I2C OVER PARALLEL PORT
8816 M: Jean Delvare <jdelvare@suse.com>
8817 L: linux-i2c@vger.kernel.org
8818 S: Maintained
8819 F: Documentation/i2c/busses/i2c-parport.rst
8820 F: drivers/i2c/busses/i2c-parport.c
8821
8822 I2C SUBSYSTEM
8823 M: Wolfram Sang <wsa@kernel.org>
8824 L: linux-i2c@vger.kernel.org
8825 S: Maintained
8826 W: https://i2c.wiki.kernel.org/
8827 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8828 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8829 F: Documentation/devicetree/bindings/i2c/i2c.txt
8830 F: Documentation/i2c/
8831 F: drivers/i2c/*
8832 F: include/linux/i2c-dev.h
8833 F: include/linux/i2c-smbus.h
8834 F: include/linux/i2c.h
8835 F: include/uapi/linux/i2c-*.h
8836 F: include/uapi/linux/i2c.h
8837
8838 I2C SUBSYSTEM HOST DRIVERS
8839 L: linux-i2c@vger.kernel.org
8840 S: Odd Fixes
8841 W: https://i2c.wiki.kernel.org/
8842 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8843 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8844 F: Documentation/devicetree/bindings/i2c/
8845 F: drivers/i2c/algos/
8846 F: drivers/i2c/busses/
8847
8848 I2C-TAOS-EVM DRIVER
8849 M: Jean Delvare <jdelvare@suse.com>
8850 L: linux-i2c@vger.kernel.org
8851 S: Maintained
8852 F: Documentation/i2c/busses/i2c-taos-evm.rst
8853 F: drivers/i2c/busses/i2c-taos-evm.c
8854
8855 I2C-TINY-USB DRIVER
8856 M: Till Harbaum <till@harbaum.org>
8857 L: linux-i2c@vger.kernel.org
8858 S: Maintained
8859 W: http://www.harbaum.org/till/i2c_tiny_usb
8860 F: drivers/i2c/busses/i2c-tiny-usb.c
8861
8862 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8863 M: Jean Delvare <jdelvare@suse.com>
8864 L: linux-i2c@vger.kernel.org
8865 S: Maintained
8866 F: Documentation/i2c/busses/i2c-ali1535.rst
8867 F: Documentation/i2c/busses/i2c-ali1563.rst
8868 F: Documentation/i2c/busses/i2c-ali15x3.rst
8869 F: Documentation/i2c/busses/i2c-amd756.rst
8870 F: Documentation/i2c/busses/i2c-amd8111.rst
8871 F: Documentation/i2c/busses/i2c-i801.rst
8872 F: Documentation/i2c/busses/i2c-nforce2.rst
8873 F: Documentation/i2c/busses/i2c-piix4.rst
8874 F: Documentation/i2c/busses/i2c-sis5595.rst
8875 F: Documentation/i2c/busses/i2c-sis630.rst
8876 F: Documentation/i2c/busses/i2c-sis96x.rst
8877 F: Documentation/i2c/busses/i2c-via.rst
8878 F: Documentation/i2c/busses/i2c-viapro.rst
8879 F: drivers/i2c/busses/i2c-ali1535.c
8880 F: drivers/i2c/busses/i2c-ali1563.c
8881 F: drivers/i2c/busses/i2c-ali15x3.c
8882 F: drivers/i2c/busses/i2c-amd756-s4882.c
8883 F: drivers/i2c/busses/i2c-amd756.c
8884 F: drivers/i2c/busses/i2c-amd8111.c
8885 F: drivers/i2c/busses/i2c-i801.c
8886 F: drivers/i2c/busses/i2c-isch.c
8887 F: drivers/i2c/busses/i2c-nforce2-s4985.c
8888 F: drivers/i2c/busses/i2c-nforce2.c
8889 F: drivers/i2c/busses/i2c-piix4.c
8890 F: drivers/i2c/busses/i2c-sis5595.c
8891 F: drivers/i2c/busses/i2c-sis630.c
8892 F: drivers/i2c/busses/i2c-sis96x.c
8893 F: drivers/i2c/busses/i2c-via.c
8894 F: drivers/i2c/busses/i2c-viapro.c
8895
8896 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8897 M: Hans de Goede <hdegoede@redhat.com>
8898 L: linux-i2c@vger.kernel.org
8899 S: Maintained
8900 F: drivers/i2c/busses/i2c-cht-wc.c
8901
8902 I2C/SMBUS ISMT DRIVER
8903 M: Seth Heasley <seth.heasley@intel.com>
8904 M: Neil Horman <nhorman@tuxdriver.com>
8905 L: linux-i2c@vger.kernel.org
8906 F: Documentation/i2c/busses/i2c-ismt.rst
8907 F: drivers/i2c/busses/i2c-ismt.c
8908
8909 I2C/SMBUS STUB DRIVER
8910 M: Jean Delvare <jdelvare@suse.com>
8911 L: linux-i2c@vger.kernel.org
8912 S: Maintained
8913 F: drivers/i2c/i2c-stub.c
8914
8915 I3C DRIVER FOR CADENCE I3C MASTER IP
8916 M: Przemysław Gaj <pgaj@cadence.com>
8917 S: Maintained
8918 F: Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8919 F: drivers/i3c/master/i3c-master-cdns.c
8920
8921 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8922 M: Vitor Soares <vitor.soares@synopsys.com>
8923 S: Maintained
8924 F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8925 F: drivers/i3c/master/dw*
8926
8927 I3C SUBSYSTEM
8928 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
8929 L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
8930 S: Maintained
8931 C: irc://chat.freenode.net/linux-i3c
8932 T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8933 F: Documentation/ABI/testing/sysfs-bus-i3c
8934 F: Documentation/devicetree/bindings/i3c/
8935 F: Documentation/driver-api/i3c
8936 F: drivers/i3c/
8937 F: include/linux/i3c/
8938
8939 IA64 (Itanium) PLATFORM
8940 L: linux-ia64@vger.kernel.org
8941 S: Orphan
8942 F: Documentation/ia64/
8943 F: arch/ia64/
8944
8945 IBM Power 842 compression accelerator
8946 M: Haren Myneni <haren@us.ibm.com>
8947 S: Supported
8948 F: crypto/842.c
8949 F: drivers/crypto/nx/Kconfig
8950 F: drivers/crypto/nx/Makefile
8951 F: drivers/crypto/nx/nx-842*
8952 F: include/linux/sw842.h
8953 F: lib/842/
8954
8955 IBM Power in-Nest Crypto Acceleration
8956 M: Breno Leitão <leitao@debian.org>
8957 M: Nayna Jain <nayna@linux.ibm.com>
8958 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8959 L: linux-crypto@vger.kernel.org
8960 S: Supported
8961 F: drivers/crypto/nx/Kconfig
8962 F: drivers/crypto/nx/Makefile
8963 F: drivers/crypto/nx/nx-aes*
8964 F: drivers/crypto/nx/nx-sha*
8965 F: drivers/crypto/nx/nx.*
8966 F: drivers/crypto/nx/nx_csbcpb.h
8967 F: drivers/crypto/nx/nx_debugfs.c
8968
8969 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8970 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8971 L: linux-pci@vger.kernel.org
8972 L: linuxppc-dev@lists.ozlabs.org
8973 S: Supported
8974 F: drivers/pci/hotplug/rpadlpar*
8975
8976 IBM Power Linux RAID adapter
8977 M: Brian King <brking@us.ibm.com>
8978 S: Supported
8979 F: drivers/scsi/ipr.*
8980
8981 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8982 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8983 L: linux-pci@vger.kernel.org
8984 L: linuxppc-dev@lists.ozlabs.org
8985 S: Supported
8986 F: drivers/pci/hotplug/rpaphp*
8987
8988 IBM Power SRIOV Virtual NIC Device Driver
8989 M: Dany Madden <drt@linux.ibm.com>
8990 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8991 R: Thomas Falcon <tlfalcon@linux.ibm.com>
8992 L: netdev@vger.kernel.org
8993 S: Supported
8994 F: drivers/net/ethernet/ibm/ibmvnic.*
8995
8996 IBM Power Virtual Accelerator Switchboard
8997 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8998 L: linuxppc-dev@lists.ozlabs.org
8999 S: Supported
9000 F: arch/powerpc/include/asm/vas.h
9001 F: arch/powerpc/platforms/powernv/copy-paste.h
9002 F: arch/powerpc/platforms/powernv/vas*
9003
9004 IBM Power Virtual Ethernet Device Driver
9005 M: Cristobal Forno <cforno12@linux.ibm.com>
9006 L: netdev@vger.kernel.org
9007 S: Supported
9008 F: drivers/net/ethernet/ibm/ibmveth.*
9009
9010 IBM Power Virtual FC Device Drivers
9011 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9012 L: linux-scsi@vger.kernel.org
9013 S: Supported
9014 F: drivers/scsi/ibmvscsi/ibmvfc*
9015
9016 IBM Power Virtual Management Channel Driver
9017 M: Brad Warrum <bwarrum@linux.ibm.com>
9018 M: Ritu Agarwal <rituagar@linux.ibm.com>
9019 S: Supported
9020 F: drivers/misc/ibmvmc.*
9021
9022 IBM Power Virtual SCSI Device Drivers
9023 M: Tyrel Datwyler <tyreld@linux.ibm.com>
9024 L: linux-scsi@vger.kernel.org
9025 S: Supported
9026 F: drivers/scsi/ibmvscsi/ibmvscsi*
9027 F: include/scsi/viosrp.h
9028
9029 IBM Power Virtual SCSI Device Target Driver
9030 M: Michael Cyr <mikecyr@linux.ibm.com>
9031 L: linux-scsi@vger.kernel.org
9032 L: target-devel@vger.kernel.org
9033 S: Supported
9034 F: drivers/scsi/ibmvscsi_tgt/
9035
9036 IBM Power VMX Cryptographic instructions
9037 M: Breno Leitão <leitao@debian.org>
9038 M: Nayna Jain <nayna@linux.ibm.com>
9039 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9040 L: linux-crypto@vger.kernel.org
9041 S: Supported
9042 F: drivers/crypto/vmx/Kconfig
9043 F: drivers/crypto/vmx/Makefile
9044 F: drivers/crypto/vmx/aes*
9045 F: drivers/crypto/vmx/ghash*
9046 F: drivers/crypto/vmx/ppc-xlate.pl
9047 F: drivers/crypto/vmx/vmx.c
9048
9049 IBM ServeRAID RAID DRIVER
9050 S: Orphan
9051 F: drivers/scsi/ips.*
9052
9053 ICH LPC AND GPIO DRIVER
9054 M: Peter Tyser <ptyser@xes-inc.com>
9055 S: Maintained
9056 F: drivers/gpio/gpio-ich.c
9057 F: drivers/mfd/lpc_ich.c
9058
9059 ICY I2C DRIVER
9060 M: Max Staudt <max@enpas.org>
9061 L: linux-i2c@vger.kernel.org
9062 S: Maintained
9063 F: drivers/i2c/busses/i2c-icy.c
9064
9065 IDEAPAD LAPTOP EXTRAS DRIVER
9066 M: Ike Panhc <ike.pan@canonical.com>
9067 L: platform-driver-x86@vger.kernel.org
9068 S: Maintained
9069 W: http://launchpad.net/ideapad-laptop
9070 F: drivers/platform/x86/ideapad-laptop.c
9071
9072 IDEAPAD LAPTOP SLIDEBAR DRIVER
9073 M: Andrey Moiseev <o2g.org.ru@gmail.com>
9074 L: linux-input@vger.kernel.org
9075 S: Maintained
9076 W: https://github.com/o2genum/ideapad-slidebar
9077 F: drivers/input/misc/ideapad_slidebar.c
9078
9079 IDT VersaClock 5 CLOCK DRIVER
9080 M: Luca Ceresoli <luca@lucaceresoli.net>
9081 S: Maintained
9082 F: Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9083 F: drivers/clk/clk-versaclock5.c
9084
9085 IEEE 802.15.4 SUBSYSTEM
9086 M: Alexander Aring <alex.aring@gmail.com>
9087 M: Stefan Schmidt <stefan@datenfreihafen.org>
9088 L: linux-wpan@vger.kernel.org
9089 S: Maintained
9090 W: https://linux-wpan.org/
9091 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9092 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9093 F: Documentation/networking/ieee802154.rst
9094 F: drivers/net/ieee802154/
9095 F: include/linux/ieee802154.h
9096 F: include/linux/nl802154.h
9097 F: include/net/af_ieee802154.h
9098 F: include/net/cfg802154.h
9099 F: include/net/ieee802154_netdev.h
9100 F: include/net/mac802154.h
9101 F: include/net/nl802154.h
9102 F: net/ieee802154/
9103 F: net/mac802154/
9104
9105 IFE PROTOCOL
9106 M: Yotam Gigi <yotam.gi@gmail.com>
9107 M: Jamal Hadi Salim <jhs@mojatatu.com>
9108 F: include/net/ife.h
9109 F: include/uapi/linux/ife.h
9110 F: net/ife
9111
9112 IGORPLUG-USB IR RECEIVER
9113 M: Sean Young <sean@mess.org>
9114 L: linux-media@vger.kernel.org
9115 S: Maintained
9116 F: drivers/media/rc/igorplugusb.c
9117
9118 IGUANAWORKS USB IR TRANSCEIVER
9119 M: Sean Young <sean@mess.org>
9120 L: linux-media@vger.kernel.org
9121 S: Maintained
9122 F: drivers/media/rc/iguanair.c
9123
9124 IIO DIGITAL POTENTIOMETER DAC
9125 M: Peter Rosin <peda@axentia.se>
9126 L: linux-iio@vger.kernel.org
9127 S: Maintained
9128 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9129 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9130 F: drivers/iio/dac/dpot-dac.c
9131
9132 IIO ENVELOPE DETECTOR
9133 M: Peter Rosin <peda@axentia.se>
9134 L: linux-iio@vger.kernel.org
9135 S: Maintained
9136 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9137 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9138 F: drivers/iio/adc/envelope-detector.c
9139
9140 IIO MULTIPLEXER
9141 M: Peter Rosin <peda@axentia.se>
9142 L: linux-iio@vger.kernel.org
9143 S: Maintained
9144 F: Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9145 F: drivers/iio/multiplexer/iio-mux.c
9146
9147 IIO SCMI BASED DRIVER
9148 M: Jyoti Bhayana <jbhayana@google.com>
9149 L: linux-iio@vger.kernel.org
9150 S: Maintained
9151 F: drivers/iio/common/scmi_sensors/scmi_iio.c
9152
9153 IIO SUBSYSTEM AND DRIVERS
9154 M: Jonathan Cameron <jic23@kernel.org>
9155 R: Lars-Peter Clausen <lars@metafoo.de>
9156 L: linux-iio@vger.kernel.org
9157 S: Maintained
9158 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9159 F: Documentation/ABI/testing/configfs-iio*
9160 F: Documentation/ABI/testing/sysfs-bus-iio*
9161 F: Documentation/devicetree/bindings/iio/
9162 F: drivers/iio/
9163 F: drivers/staging/iio/
9164 F: include/linux/iio/
9165 F: tools/iio/
9166
9167 IIO UNIT CONVERTER
9168 M: Peter Rosin <peda@axentia.se>
9169 L: linux-iio@vger.kernel.org
9170 S: Maintained
9171 F: Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9172 F: Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9173 F: Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9174 F: drivers/iio/afe/iio-rescale.c
9175
9176 IKANOS/ADI EAGLE ADSL USB DRIVER
9177 M: Matthieu Castet <castet.matthieu@free.fr>
9178 M: Stanislaw Gruszka <stf_xl@wp.pl>
9179 S: Maintained
9180 F: drivers/usb/atm/ueagle-atm.c
9181
9182 IMGTEC ASCII LCD DRIVER
9183 M: Paul Burton <paulburton@kernel.org>
9184 S: Maintained
9185 F: Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9186 F: drivers/auxdisplay/img-ascii-lcd.c
9187
9188 IMGTEC IR DECODER DRIVER
9189 S: Orphan
9190 F: drivers/media/rc/img-ir/
9191
9192 IMON SOUNDGRAPH USB IR RECEIVER
9193 M: Sean Young <sean@mess.org>
9194 L: linux-media@vger.kernel.org
9195 S: Maintained
9196 F: drivers/media/rc/imon.c
9197 F: drivers/media/rc/imon_raw.c
9198
9199 IMS TWINTURBO FRAMEBUFFER DRIVER
9200 L: linux-fbdev@vger.kernel.org
9201 S: Orphan
9202 F: drivers/video/fbdev/imsttfb.c
9203
9204 INA209 HARDWARE MONITOR DRIVER
9205 M: Guenter Roeck <linux@roeck-us.net>
9206 L: linux-hwmon@vger.kernel.org
9207 S: Maintained
9208 F: Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9209 F: Documentation/hwmon/ina209.rst
9210 F: drivers/hwmon/ina209.c
9211
9212 INA2XX HARDWARE MONITOR DRIVER
9213 M: Guenter Roeck <linux@roeck-us.net>
9214 L: linux-hwmon@vger.kernel.org
9215 S: Maintained
9216 F: Documentation/hwmon/ina2xx.rst
9217 F: drivers/hwmon/ina2xx.c
9218 F: include/linux/platform_data/ina2xx.h
9219
9220 INDUSTRY PACK SUBSYSTEM (IPACK)
9221 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9222 M: Jens Taprogge <jens.taprogge@taprogge.org>
9223 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9224 L: industrypack-devel@lists.sourceforge.net
9225 S: Maintained
9226 W: http://industrypack.sourceforge.net
9227 F: drivers/ipack/
9228
9229 INFINEON DPS310 Driver
9230 M: Eddie James <eajames@linux.ibm.com>
9231 L: linux-iio@vger.kernel.org
9232 S: Maintained
9233 F: drivers/iio/pressure/dps310.c
9234
9235 INFINIBAND SUBSYSTEM
9236 M: Doug Ledford <dledford@redhat.com>
9237 M: Jason Gunthorpe <jgg@nvidia.com>
9238 L: linux-rdma@vger.kernel.org
9239 S: Supported
9240 W: https://github.com/linux-rdma/rdma-core
9241 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9242 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9243 F: Documentation/devicetree/bindings/infiniband/
9244 F: Documentation/infiniband/
9245 F: drivers/infiniband/
9246 F: include/rdma/
9247 F: include/trace/events/ib_mad.h
9248 F: include/trace/events/ib_umad.h
9249 F: include/uapi/linux/if_infiniband.h
9250 F: include/uapi/rdma/
9251 F: samples/bpf/ibumad_kern.c
9252 F: samples/bpf/ibumad_user.c
9253
9254 INGENIC JZ4780 NAND DRIVER
9255 M: Harvey Hunt <harveyhuntnexus@gmail.com>
9256 L: linux-mtd@lists.infradead.org
9257 L: linux-mips@vger.kernel.org
9258 S: Maintained
9259 F: drivers/mtd/nand/raw/ingenic/
9260
9261 INGENIC JZ47xx SoCs
9262 M: Paul Cercueil <paul@crapouillou.net>
9263 L: linux-mips@vger.kernel.org
9264 S: Maintained
9265 F: arch/mips/boot/dts/ingenic/
9266 F: arch/mips/generic/board-ingenic.c
9267 F: arch/mips/include/asm/mach-ingenic/
9268 F: arch/mips/ingenic/Kconfig
9269 F: drivers/clk/ingenic/
9270 F: drivers/dma/dma-jz4780.c
9271 F: drivers/gpu/drm/ingenic/
9272 F: drivers/i2c/busses/i2c-jz4780.c
9273 F: drivers/iio/adc/ingenic-adc.c
9274 F: drivers/irqchip/irq-ingenic.c
9275 F: drivers/memory/jz4780-nemc.c
9276 F: drivers/mmc/host/jz4740_mmc.c
9277 F: drivers/mtd/nand/raw/ingenic/
9278 F: drivers/pinctrl/pinctrl-ingenic.c
9279 F: drivers/power/supply/ingenic-battery.c
9280 F: drivers/pwm/pwm-jz4740.c
9281 F: drivers/remoteproc/ingenic_rproc.c
9282 F: drivers/rtc/rtc-jz4740.c
9283 F: drivers/tty/serial/8250/8250_ingenic.c
9284 F: drivers/usb/musb/jz4740.c
9285 F: drivers/watchdog/jz4740_wdt.c
9286 F: include/dt-bindings/iio/adc/ingenic,adc.h
9287 F: include/linux/mfd/ingenic-tcu.h
9288 F: sound/soc/codecs/jz47*
9289 F: sound/soc/jz4740/
9290
9291 INOTIFY
9292 M: Jan Kara <jack@suse.cz>
9293 R: Amir Goldstein <amir73il@gmail.com>
9294 L: linux-fsdevel@vger.kernel.org
9295 S: Maintained
9296 F: Documentation/filesystems/inotify.rst
9297 F: fs/notify/inotify/
9298 F: include/linux/inotify.h
9299 F: include/uapi/linux/inotify.h
9300
9301 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9302 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
9303 L: linux-input@vger.kernel.org
9304 S: Maintained
9305 Q: http://patchwork.kernel.org/project/linux-input/list/
9306 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9307 F: Documentation/devicetree/bindings/input/
9308 F: Documentation/devicetree/bindings/serio/
9309 F: Documentation/input/
9310 F: drivers/input/
9311 F: include/linux/input.h
9312 F: include/linux/input/
9313 F: include/uapi/linux/input-event-codes.h
9314 F: include/uapi/linux/input.h
9315
9316 INPUT MULTITOUCH (MT) PROTOCOL
9317 M: Henrik Rydberg <rydberg@bitmath.org>
9318 L: linux-input@vger.kernel.org
9319 S: Odd fixes
9320 F: Documentation/input/multi-touch-protocol.rst
9321 F: drivers/input/input-mt.c
9322 K: \b(ABS|SYN)_MT_
9323
9324 INSIDE SECURE CRYPTO DRIVER
9325 M: Antoine Tenart <atenart@kernel.org>
9326 L: linux-crypto@vger.kernel.org
9327 S: Maintained
9328 F: drivers/crypto/inside-secure/
9329
9330 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9331 M: Mimi Zohar <zohar@linux.ibm.com>
9332 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9333 L: linux-integrity@vger.kernel.org
9334 S: Supported
9335 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9336 F: security/integrity/ima/
9337
9338 INTEL 810/815 FRAMEBUFFER DRIVER
9339 M: Antonino Daplas <adaplas@gmail.com>
9340 L: linux-fbdev@vger.kernel.org
9341 S: Maintained
9342 F: drivers/video/fbdev/i810/
9343
9344 INTEL ASoC DRIVERS
9345 M: Cezary Rojewski <cezary.rojewski@intel.com>
9346 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9347 M: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9348 M: Jie Yang <yang.jie@linux.intel.com>
9349 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9350 S: Supported
9351 F: sound/soc/intel/
9352
9353 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9354 M: Hans de Goede <hdegoede@redhat.com>
9355 L: platform-driver-x86@vger.kernel.org
9356 S: Maintained
9357 F: drivers/platform/x86/intel/atomisp2/pm.c
9358
9359 INTEL ATOMISP2 LED DRIVER
9360 M: Hans de Goede <hdegoede@redhat.com>
9361 L: platform-driver-x86@vger.kernel.org
9362 S: Maintained
9363 F: drivers/platform/x86/intel/atomisp2/led.c
9364
9365 INTEL BIOS SAR INT1092 DRIVER
9366 M: Shravan Sudhakar <s.shravan@intel.com>
9367 M: Intel Corporation <linuxwwan@intel.com>
9368 L: platform-driver-x86@vger.kernel.org
9369 S: Maintained
9370 F: drivers/platform/x86/intel/int1092/
9371
9372 INTEL BROXTON PMC DRIVER
9373 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9374 M: Zha Qipeng <qipeng.zha@intel.com>
9375 S: Maintained
9376 F: drivers/mfd/intel_pmc_bxt.c
9377 F: include/linux/mfd/intel_pmc_bxt.h
9378
9379 INTEL C600 SERIES SAS CONTROLLER DRIVER
9380 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9381 L: linux-scsi@vger.kernel.org
9382 S: Supported
9383 T: git git://git.code.sf.net/p/intel-sas/isci
9384 F: drivers/scsi/isci/
9385
9386 INTEL CPU family model numbers
9387 M: Tony Luck <tony.luck@intel.com>
9388 M: x86@kernel.org
9389 L: linux-kernel@vger.kernel.org
9390 S: Supported
9391 F: arch/x86/include/asm/intel-family.h
9392
9393 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9394 M: Jani Nikula <jani.nikula@linux.intel.com>
9395 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9396 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
9397 L: intel-gfx@lists.freedesktop.org
9398 S: Supported
9399 W: https://01.org/linuxgraphics/
9400 Q: http://patchwork.freedesktop.org/project/intel-gfx/
9401 B: https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9402 C: irc://irc.oftc.net/intel-gfx
9403 T: git git://anongit.freedesktop.org/drm-intel
9404 F: Documentation/gpu/i915.rst
9405 F: drivers/gpu/drm/i915/
9406 F: include/drm/i915*
9407 F: include/uapi/drm/i915_drm.h
9408
9409 INTEL ETHERNET DRIVERS
9410 M: Jesse Brandeburg <jesse.brandeburg@intel.com>
9411 M: Tony Nguyen <anthony.l.nguyen@intel.com>
9412 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9413 S: Supported
9414 W: http://www.intel.com/support/feedback.htm
9415 W: http://e1000.sourceforge.net/
9416 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9417 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9418 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9419 F: Documentation/networking/device_drivers/ethernet/intel/
9420 F: drivers/net/ethernet/intel/
9421 F: drivers/net/ethernet/intel/*/
9422 F: include/linux/avf/virtchnl.h
9423 F: include/linux/net/intel/iidc.h
9424
9425 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9426 M: Mustafa Ismail <mustafa.ismail@intel.com>
9427 M: Shiraz Saleem <shiraz.saleem@intel.com>
9428 L: linux-rdma@vger.kernel.org
9429 S: Supported
9430 F: drivers/infiniband/hw/irdma/
9431 F: include/uapi/rdma/irdma-abi.h
9432
9433 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9434 M: Maik Broemme <mbroemme@libmpq.org>
9435 L: linux-fbdev@vger.kernel.org
9436 S: Maintained
9437 F: Documentation/fb/intelfb.rst
9438 F: drivers/video/fbdev/intelfb/
9439
9440 INTEL GPIO DRIVERS
9441 M: Andy Shevchenko <andy@kernel.org>
9442 L: linux-gpio@vger.kernel.org
9443 S: Maintained
9444 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9445 F: drivers/gpio/gpio-ich.c
9446 F: drivers/gpio/gpio-merrifield.c
9447 F: drivers/gpio/gpio-ml-ioh.c
9448 F: drivers/gpio/gpio-pch.c
9449 F: drivers/gpio/gpio-sch.c
9450 F: drivers/gpio/gpio-sodaville.c
9451
9452 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9453 M: Zhenyu Wang <zhenyuw@linux.intel.com>
9454 M: Zhi Wang <zhi.a.wang@intel.com>
9455 L: intel-gvt-dev@lists.freedesktop.org
9456 L: intel-gfx@lists.freedesktop.org
9457 S: Supported
9458 W: https://01.org/igvt-g
9459 T: git https://github.com/intel/gvt-linux.git
9460 F: drivers/gpu/drm/i915/gvt/
9461
9462 INTEL HID EVENT DRIVER
9463 M: Alex Hung <alex.hung@canonical.com>
9464 L: platform-driver-x86@vger.kernel.org
9465 S: Maintained
9466 F: drivers/platform/x86/intel/hid.c
9467
9468 INTEL I/OAT DMA DRIVER
9469 M: Dave Jiang <dave.jiang@intel.com>
9470 R: Dan Williams <dan.j.williams@intel.com>
9471 L: dmaengine@vger.kernel.org
9472 S: Supported
9473 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
9474 F: drivers/dma/ioat*
9475
9476 INTEL IADX DRIVER
9477 M: Dave Jiang <dave.jiang@intel.com>
9478 L: dmaengine@vger.kernel.org
9479 S: Supported
9480 F: drivers/dma/idxd/*
9481 F: include/uapi/linux/idxd.h
9482
9483 INTEL IDLE DRIVER
9484 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
9485 M: Len Brown <lenb@kernel.org>
9486 L: linux-pm@vger.kernel.org
9487 S: Supported
9488 B: https://bugzilla.kernel.org
9489 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9490 F: drivers/idle/intel_idle.c
9491
9492 INTEL INTEGRATED SENSOR HUB DRIVER
9493 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9494 M: Jiri Kosina <jikos@kernel.org>
9495 L: linux-input@vger.kernel.org
9496 S: Maintained
9497 F: drivers/hid/intel-ish-hid/
9498
9499 INTEL IOMMU (VT-d)
9500 M: David Woodhouse <dwmw2@infradead.org>
9501 M: Lu Baolu <baolu.lu@linux.intel.com>
9502 L: iommu@lists.linux-foundation.org
9503 L: iommu@lists.linux.dev
9504 S: Supported
9505 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9506 F: drivers/iommu/intel/
9507 F: include/linux/intel-iommu.h
9508 F: include/linux/intel-svm.h
9509
9510 INTEL IOP-ADMA DMA DRIVER
9511 R: Dan Williams <dan.j.williams@intel.com>
9512 S: Odd fixes
9513 F: drivers/dma/iop-adma.c
9514
9515 INTEL IPU3 CSI-2 CIO2 DRIVER
9516 M: Yong Zhi <yong.zhi@intel.com>
9517 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9518 M: Bingbu Cao <bingbu.cao@intel.com>
9519 M: Dan Scally <djrscally@gmail.com>
9520 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9521 L: linux-media@vger.kernel.org
9522 S: Maintained
9523 T: git git://linuxtv.org/media_tree.git
9524 F: Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9525 F: drivers/media/pci/intel/ipu3/
9526
9527 INTEL IPU3 CSI-2 IMGU DRIVER
9528 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9529 R: Bingbu Cao <bingbu.cao@intel.com>
9530 R: Tianshu Qiu <tian.shu.qiu@intel.com>
9531 L: linux-media@vger.kernel.org
9532 S: Maintained
9533 F: Documentation/admin-guide/media/ipu3.rst
9534 F: Documentation/admin-guide/media/ipu3_rcb.svg
9535 F: Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9536 F: drivers/staging/media/ipu3/
9537
9538 INTEL IXP4XX CRYPTO SUPPORT
9539 M: Corentin Labbe <clabbe@baylibre.com>
9540 L: linux-crypto@vger.kernel.org
9541 S: Maintained
9542 F: drivers/crypto/ixp4xx_crypto.c
9543
9544 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9545 M: Krzysztof Halasa <khalasa@piap.pl>
9546 S: Maintained
9547 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
9548 F: drivers/net/wan/ixp4xx_hss.c
9549 F: drivers/soc/ixp4xx/ixp4xx-npe.c
9550 F: drivers/soc/ixp4xx/ixp4xx-qmgr.c
9551 F: include/linux/soc/ixp4xx/npe.h
9552 F: include/linux/soc/ixp4xx/qmgr.h
9553
9554 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9555 M: Deepak Saxena <dsaxena@plexity.net>
9556 S: Maintained
9557 F: Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9558 F: drivers/char/hw_random/ixp4xx-rng.c
9559
9560 INTEL KEEM BAY DRM DRIVER
9561 M: Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9562 M: Edmund Dea <edmund.j.dea@intel.com>
9563 S: Maintained
9564 F: Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9565 F: drivers/gpu/drm/kmb/
9566
9567 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9568 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9569 S: Maintained
9570 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9571 F: drivers/crypto/keembay/Kconfig
9572 F: drivers/crypto/keembay/Makefile
9573 F: drivers/crypto/keembay/keembay-ocs-aes-core.c
9574 F: drivers/crypto/keembay/ocs-aes.c
9575 F: drivers/crypto/keembay/ocs-aes.h
9576
9577 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9578 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9579 M: Declan Murphy <declan.murphy@intel.com>
9580 S: Maintained
9581 F: Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9582 F: drivers/crypto/keembay/Kconfig
9583 F: drivers/crypto/keembay/Makefile
9584 F: drivers/crypto/keembay/keembay-ocs-hcu-core.c
9585 F: drivers/crypto/keembay/ocs-hcu.c
9586 F: drivers/crypto/keembay/ocs-hcu.h
9587
9588 INTEL MANAGEMENT ENGINE (mei)
9589 M: Tomas Winkler <tomas.winkler@intel.com>
9590 L: linux-kernel@vger.kernel.org
9591 S: Supported
9592 F: Documentation/driver-api/mei/*
9593 F: drivers/misc/mei/
9594 F: drivers/watchdog/mei_wdt.c
9595 F: include/linux/mei_cl_bus.h
9596 F: include/uapi/linux/mei.h
9597 F: samples/mei/*
9598
9599 INTEL MAX 10 BMC MFD DRIVER
9600 M: Xu Yilun <yilun.xu@intel.com>
9601 R: Tom Rix <trix@redhat.com>
9602 S: Maintained
9603 F: Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9604 F: Documentation/hwmon/intel-m10-bmc-hwmon.rst
9605 F: drivers/hwmon/intel-m10-bmc-hwmon.c
9606 F: drivers/mfd/intel-m10-bmc.c
9607 F: include/linux/mfd/intel-m10-bmc.h
9608
9609 INTEL MENLOW THERMAL DRIVER
9610 M: Sujith Thomas <sujith.thomas@intel.com>
9611 L: linux-pm@vger.kernel.org
9612 S: Supported
9613 W: https://01.org/linux-acpi
9614 F: drivers/thermal/intel/intel_menlow.c
9615
9616 INTEL P-Unit IPC DRIVER
9617 M: Zha Qipeng <qipeng.zha@intel.com>
9618 L: platform-driver-x86@vger.kernel.org
9619 S: Maintained
9620 F: arch/x86/include/asm/intel_punit_ipc.h
9621 F: drivers/platform/x86/intel/punit_ipc.c
9622
9623 INTEL PMC CORE DRIVER
9624 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9625 M: David E Box <david.e.box@intel.com>
9626 L: platform-driver-x86@vger.kernel.org
9627 S: Maintained
9628 F: Documentation/ABI/testing/sysfs-platform-intel-pmc
9629 F: drivers/platform/x86/intel/pmc/
9630
9631 INTEL PMIC GPIO DRIVERS
9632 M: Andy Shevchenko <andy@kernel.org>
9633 S: Maintained
9634 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9635 F: drivers/gpio/gpio-*cove.c
9636
9637 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9638 M: Andy Shevchenko <andy@kernel.org>
9639 S: Maintained
9640 F: drivers/mfd/intel_soc_pmic*
9641 F: include/linux/mfd/intel_soc_pmic*
9642
9643 INTEL PMT DRIVER
9644 M: "David E. Box" <david.e.box@linux.intel.com>
9645 S: Maintained
9646 F: drivers/mfd/intel_pmt.c
9647 F: drivers/platform/x86/intel/pmt/
9648
9649 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9650 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
9651 L: linux-wireless@vger.kernel.org
9652 S: Maintained
9653 F: Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9654 F: Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9655 F: drivers/net/wireless/intel/ipw2x00/
9656
9657 INTEL PSTATE DRIVER
9658 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9659 M: Len Brown <lenb@kernel.org>
9660 L: linux-pm@vger.kernel.org
9661 S: Supported
9662 F: drivers/cpufreq/intel_pstate.c
9663
9664 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9665 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9666 L: linux-iio@vger.kernel.org
9667 F: drivers/counter/intel-qep.c
9668
9669 INTEL SCU DRIVERS
9670 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9671 S: Maintained
9672 F: arch/x86/include/asm/intel_scu_ipc.h
9673 F: drivers/platform/x86/intel_scu_*
9674
9675 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9676 M: Daniel Scally <djrscally@gmail.com>
9677 S: Maintained
9678 F: drivers/platform/x86/intel/int3472/
9679
9680 INTEL SPEED SELECT TECHNOLOGY
9681 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9682 L: platform-driver-x86@vger.kernel.org
9683 S: Maintained
9684 F: drivers/platform/x86/intel/speed_select_if/
9685 F: include/uapi/linux/isst_if.h
9686 F: tools/power/x86/intel-speed-select/
9687
9688 INTEL STRATIX10 FIRMWARE DRIVERS
9689 M: Dinh Nguyen <dinguyen@kernel.org>
9690 L: linux-kernel@vger.kernel.org
9691 S: Maintained
9692 F: Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9693 F: Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9694 F: drivers/firmware/stratix10-rsu.c
9695 F: drivers/firmware/stratix10-svc.c
9696 F: include/linux/firmware/intel/stratix10-smc.h
9697 F: include/linux/firmware/intel/stratix10-svc-client.h
9698
9699 INTEL TELEMETRY DRIVER
9700 M: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9701 M: "David E. Box" <david.e.box@linux.intel.com>
9702 L: platform-driver-x86@vger.kernel.org
9703 S: Maintained
9704 F: arch/x86/include/asm/intel_telemetry.h
9705 F: drivers/platform/x86/intel/telemetry/
9706
9707 INTEL UNCORE FREQUENCY CONTROL
9708 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9709 L: platform-driver-x86@vger.kernel.org
9710 S: Maintained
9711 F: drivers/platform/x86/intel/uncore-frequency.c
9712
9713 INTEL VIRTUAL BUTTON DRIVER
9714 M: AceLan Kao <acelan.kao@canonical.com>
9715 L: platform-driver-x86@vger.kernel.org
9716 S: Maintained
9717 F: drivers/platform/x86/intel/vbtn.c
9718
9719 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9720 M: Stanislaw Gruszka <stf_xl@wp.pl>
9721 L: linux-wireless@vger.kernel.org
9722 S: Supported
9723 F: drivers/net/wireless/intel/iwlegacy/
9724
9725 INTEL WIRELESS WIFI LINK (iwlwifi)
9726 M: Luca Coelho <luciano.coelho@intel.com>
9727 L: linux-wireless@vger.kernel.org
9728 S: Supported
9729 W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9730 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9731 F: drivers/net/wireless/intel/iwlwifi/
9732
9733 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9734 M: Jithu Joseph <jithu.joseph@intel.com>
9735 R: Maurice Ma <maurice.ma@intel.com>
9736 S: Maintained
9737 W: https://slimbootloader.github.io/security/firmware-update.html
9738 F: drivers/platform/x86/intel/wmi/sbl-fw-update.c
9739
9740 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9741 L: Dell.Client.Kernel@dell.com
9742 S: Maintained
9743 F: drivers/platform/x86/intel/wmi/thunderbolt.c
9744
9745 INTEL WWAN IOSM DRIVER
9746 M: M Chetan Kumar <m.chetan.kumar@intel.com>
9747 M: Intel Corporation <linuxwwan@intel.com>
9748 L: netdev@vger.kernel.org
9749 S: Maintained
9750 F: drivers/net/wwan/iosm/
9751
9752 INTEL(R) TRACE HUB
9753 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9754 S: Supported
9755 F: Documentation/trace/intel_th.rst
9756 F: drivers/hwtracing/intel_th/
9757 F: include/linux/intel_th.h
9758
9759 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9760 M: Ning Sun <ning.sun@intel.com>
9761 L: tboot-devel@lists.sourceforge.net
9762 S: Supported
9763 W: http://tboot.sourceforge.net
9764 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9765 F: Documentation/x86/intel_txt.rst
9766 F: arch/x86/kernel/tboot.c
9767 F: include/linux/tboot.h
9768
9769 INTEL SGX
9770 M: Jarkko Sakkinen <jarkko@kernel.org>
9771 R: Dave Hansen <dave.hansen@linux.intel.com>
9772 L: linux-sgx@vger.kernel.org
9773 S: Supported
9774 Q: https://patchwork.kernel.org/project/intel-sgx/list/
9775 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9776 F: Documentation/x86/sgx.rst
9777 F: arch/x86/entry/vdso/vsgx.S
9778 F: arch/x86/include/asm/sgx.h
9779 F: arch/x86/include/uapi/asm/sgx.h
9780 F: arch/x86/kernel/cpu/sgx/*
9781 F: tools/testing/selftests/sgx/*
9782 K: \bSGX_
9783
9784 INTERCONNECT API
9785 M: Georgi Djakov <djakov@kernel.org>
9786 L: linux-pm@vger.kernel.org
9787 S: Maintained
9788 T: git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9789 F: Documentation/devicetree/bindings/interconnect/
9790 F: Documentation/driver-api/interconnect.rst
9791 F: drivers/interconnect/
9792 F: include/dt-bindings/interconnect/
9793 F: include/linux/interconnect-provider.h
9794 F: include/linux/interconnect.h
9795
9796 INTERRUPT COUNTER DRIVER
9797 M: Oleksij Rempel <o.rempel@pengutronix.de>
9798 R: Pengutronix Kernel Team <kernel@pengutronix.de>
9799 L: linux-iio@vger.kernel.org
9800 F: Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9801 F: drivers/counter/interrupt-cnt.c
9802
9803 INVENSENSE ICM-426xx IMU DRIVER
9804 M: Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9805 L: linux-iio@vger.kernel.org
9806 S: Maintained
9807 W: https://invensense.tdk.com/
9808 F: Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9809 F: drivers/iio/imu/inv_icm42600/
9810
9811 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9812 M: Linus Walleij <linus.walleij@linaro.org>
9813 L: linux-iio@vger.kernel.org
9814 S: Maintained
9815 F: Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9816 F: drivers/iio/gyro/mpu3050*
9817
9818 IOC3 ETHERNET DRIVER
9819 M: Ralf Baechle <ralf@linux-mips.org>
9820 L: linux-mips@vger.kernel.org
9821 S: Maintained
9822 F: drivers/net/ethernet/sgi/ioc3-eth.c
9823
9824 IOMAP FILESYSTEM LIBRARY
9825 M: Christoph Hellwig <hch@infradead.org>
9826 M: Darrick J. Wong <djwong@kernel.org>
9827 M: linux-xfs@vger.kernel.org
9828 M: linux-fsdevel@vger.kernel.org
9829 L: linux-xfs@vger.kernel.org
9830 L: linux-fsdevel@vger.kernel.org
9831 S: Supported
9832 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9833 F: fs/iomap/
9834 F: include/linux/iomap.h
9835
9836 IOMMU DRIVERS
9837 M: Joerg Roedel <joro@8bytes.org>
9838 M: Will Deacon <will@kernel.org>
9839 L: iommu@lists.linux-foundation.org
9840 L: iommu@lists.linux.dev
9841 S: Maintained
9842 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9843 F: Documentation/devicetree/bindings/iommu/
9844 F: Documentation/userspace-api/iommu.rst
9845 F: drivers/iommu/
9846 F: include/linux/iommu.h
9847 F: include/linux/iova.h
9848 F: include/linux/of_iommu.h
9849 F: include/uapi/linux/iommu.h
9850
9851 IO_URING
9852 M: Jens Axboe <axboe@kernel.dk>
9853 R: Pavel Begunkov <asml.silence@gmail.com>
9854 L: io-uring@vger.kernel.org
9855 S: Maintained
9856 T: git git://git.kernel.dk/linux-block
9857 T: git git://git.kernel.dk/liburing
9858 F: fs/io-wq.c
9859 F: fs/io-wq.h
9860 F: fs/io_uring.c
9861 F: include/linux/io_uring.h
9862 F: include/uapi/linux/io_uring.h
9863 F: tools/io_uring/
9864
9865 IPMI SUBSYSTEM
9866 M: Corey Minyard <minyard@acm.org>
9867 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9868 S: Supported
9869 W: http://openipmi.sourceforge.net/
9870 F: Documentation/driver-api/ipmi.rst
9871 F: Documentation/devicetree/bindings/ipmi/
9872 F: drivers/char/ipmi/
9873 F: include/linux/ipmi*
9874 F: include/uapi/linux/ipmi*
9875
9876 IPS SCSI RAID DRIVER
9877 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9878 L: linux-scsi@vger.kernel.org
9879 S: Maintained
9880 W: http://www.adaptec.com/
9881 F: drivers/scsi/ips*
9882
9883 IPVS
9884 M: Simon Horman <horms@verge.net.au>
9885 M: Julian Anastasov <ja@ssi.bg>
9886 L: netdev@vger.kernel.org
9887 L: lvs-devel@vger.kernel.org
9888 S: Maintained
9889 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9890 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9891 F: Documentation/networking/ipvs-sysctl.rst
9892 F: include/net/ip_vs.h
9893 F: include/uapi/linux/ip_vs.h
9894 F: net/netfilter/ipvs/
9895
9896 IPWIRELESS DRIVER
9897 M: Jiri Kosina <jikos@kernel.org>
9898 M: David Sterba <dsterba@suse.com>
9899 S: Odd Fixes
9900 F: drivers/tty/ipwireless/
9901
9902 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9903 M: Marc Zyngier <maz@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/core-api/irq/irq-domain.rst
9907 F: include/linux/irqdomain.h
9908 F: kernel/irq/irqdomain.c
9909 F: kernel/irq/msi.c
9910
9911 IRQ SUBSYSTEM
9912 M: Thomas Gleixner <tglx@linutronix.de>
9913 L: linux-kernel@vger.kernel.org
9914 S: Maintained
9915 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9916 F: kernel/irq/
9917
9918 IRQCHIP DRIVERS
9919 M: Thomas Gleixner <tglx@linutronix.de>
9920 M: Marc Zyngier <maz@kernel.org>
9921 L: linux-kernel@vger.kernel.org
9922 S: Maintained
9923 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9924 F: Documentation/devicetree/bindings/interrupt-controller/
9925 F: drivers/irqchip/
9926
9927 ISA
9928 M: William Breathitt Gray <vilhelm.gray@gmail.com>
9929 S: Maintained
9930 F: Documentation/driver-api/isa.rst
9931 F: drivers/base/isa.c
9932 F: include/linux/isa.h
9933
9934 ISA RADIO MODULE
9935 M: Hans Verkuil <hverkuil@xs4all.nl>
9936 L: linux-media@vger.kernel.org
9937 S: Maintained
9938 W: https://linuxtv.org
9939 T: git git://linuxtv.org/media_tree.git
9940 F: drivers/media/radio/radio-isa*
9941
9942 ISAPNP
9943 M: Jaroslav Kysela <perex@perex.cz>
9944 S: Maintained
9945 F: Documentation/driver-api/isapnp.rst
9946 F: drivers/pnp/isapnp/
9947 F: include/linux/isapnp.h
9948
9949 ISCSI
9950 M: Lee Duncan <lduncan@suse.com>
9951 M: Chris Leech <cleech@redhat.com>
9952 L: open-iscsi@googlegroups.com
9953 L: linux-scsi@vger.kernel.org
9954 S: Maintained
9955 W: www.open-iscsi.com
9956 F: drivers/scsi/*iscsi*
9957 F: include/scsi/*iscsi*
9958
9959 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9960 M: Peter Jones <pjones@redhat.com>
9961 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
9962 S: Maintained
9963 F: drivers/firmware/iscsi_ibft*
9964
9965 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9966 M: Sagi Grimberg <sagi@grimberg.me>
9967 M: Max Gurtovoy <mgurtovoy@nvidia.com>
9968 L: linux-rdma@vger.kernel.org
9969 S: Supported
9970 W: http://www.openfabrics.org
9971 W: www.open-iscsi.org
9972 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9973 F: drivers/infiniband/ulp/iser/
9974
9975 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9976 M: Sagi Grimberg <sagi@grimberg.me>
9977 L: linux-rdma@vger.kernel.org
9978 L: target-devel@vger.kernel.org
9979 S: Supported
9980 W: http://www.linux-iscsi.org
9981 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9982 F: drivers/infiniband/ulp/isert
9983
9984 ISDN/CMTP OVER BLUETOOTH
9985 M: Karsten Keil <isdn@linux-pingi.de>
9986 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9987 L: netdev@vger.kernel.org
9988 S: Odd Fixes
9989 W: http://www.isdn4linux.de
9990 F: Documentation/isdn/
9991 F: drivers/isdn/capi/
9992 F: include/linux/isdn/
9993 F: include/uapi/linux/isdn/
9994 F: net/bluetooth/cmtp/
9995
9996 ISDN/mISDN SUBSYSTEM
9997 M: Karsten Keil <isdn@linux-pingi.de>
9998 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9999 L: netdev@vger.kernel.org
10000 S: Maintained
10001 W: http://www.isdn4linux.de
10002 F: drivers/isdn/Kconfig
10003 F: drivers/isdn/Makefile
10004 F: drivers/isdn/hardware/
10005 F: drivers/isdn/mISDN/
10006
10007 IT87 HARDWARE MONITORING DRIVER
10008 M: Jean Delvare <jdelvare@suse.com>
10009 L: linux-hwmon@vger.kernel.org
10010 S: Maintained
10011 F: Documentation/hwmon/it87.rst
10012 F: drivers/hwmon/it87.c
10013
10014 IT913X MEDIA DRIVER
10015 M: Antti Palosaari <crope@iki.fi>
10016 L: linux-media@vger.kernel.org
10017 S: Maintained
10018 W: https://linuxtv.org
10019 W: http://palosaari.fi/linux/
10020 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10021 T: git git://linuxtv.org/anttip/media_tree.git
10022 F: drivers/media/tuners/it913x*
10023
10024 ITE IT66121 HDMI BRIDGE DRIVER
10025 M: Phong LE <ple@baylibre.com>
10026 M: Neil Armstrong <narmstrong@baylibre.com>
10027 S: Maintained
10028 T: git git://anongit.freedesktop.org/drm/drm-misc
10029 F: Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10030 F: drivers/gpu/drm/bridge/ite-it66121.c
10031
10032 IVTV VIDEO4LINUX DRIVER
10033 M: Andy Walls <awalls@md.metrocast.net>
10034 L: linux-media@vger.kernel.org
10035 S: Maintained
10036 W: https://linuxtv.org
10037 T: git git://linuxtv.org/media_tree.git
10038 F: Documentation/admin-guide/media/ivtv*
10039 F: drivers/media/pci/ivtv/
10040 F: include/uapi/linux/ivtv*
10041
10042 IX2505V MEDIA DRIVER
10043 M: Malcolm Priestley <tvboxspy@gmail.com>
10044 L: linux-media@vger.kernel.org
10045 S: Maintained
10046 W: https://linuxtv.org
10047 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10048 F: drivers/media/dvb-frontends/ix2505v*
10049
10050 JAILHOUSE HYPERVISOR INTERFACE
10051 M: Jan Kiszka <jan.kiszka@siemens.com>
10052 L: jailhouse-dev@googlegroups.com
10053 S: Maintained
10054 F: arch/x86/include/asm/jailhouse_para.h
10055 F: arch/x86/kernel/jailhouse.c
10056
10057 JC42.4 TEMPERATURE SENSOR DRIVER
10058 M: Guenter Roeck <linux@roeck-us.net>
10059 L: linux-hwmon@vger.kernel.org
10060 S: Maintained
10061 F: Documentation/hwmon/jc42.rst
10062 F: drivers/hwmon/jc42.c
10063
10064 JFS FILESYSTEM
10065 M: Dave Kleikamp <shaggy@kernel.org>
10066 L: jfs-discussion@lists.sourceforge.net
10067 S: Maintained
10068 W: http://jfs.sourceforge.net/
10069 T: git git://github.com/kleikamp/linux-shaggy.git
10070 F: Documentation/admin-guide/jfs.rst
10071 F: fs/jfs/
10072
10073 JME NETWORK DRIVER
10074 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
10075 L: netdev@vger.kernel.org
10076 S: Maintained
10077 F: drivers/net/ethernet/jme.*
10078
10079 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10080 M: David Woodhouse <dwmw2@infradead.org>
10081 M: Richard Weinberger <richard@nod.at>
10082 L: linux-mtd@lists.infradead.org
10083 S: Odd Fixes
10084 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
10085 T: git git://git.infradead.org/ubifs-2.6.git
10086 F: fs/jffs2/
10087 F: include/uapi/linux/jffs2.h
10088
10089 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10090 M: "Theodore Ts'o" <tytso@mit.edu>
10091 M: Jan Kara <jack@suse.com>
10092 L: linux-ext4@vger.kernel.org
10093 S: Maintained
10094 F: fs/jbd2/
10095 F: include/linux/jbd2.h
10096
10097 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10098 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10099 L: linux-media@vger.kernel.org
10100 S: Maintained
10101 F: drivers/media/platform/rcar_jpu.c
10102
10103 JSM Neo PCI based serial card
10104 L: linux-serial@vger.kernel.org
10105 S: Orphan
10106 F: drivers/tty/serial/jsm/
10107
10108 K10TEMP HARDWARE MONITORING DRIVER
10109 M: Clemens Ladisch <clemens@ladisch.de>
10110 L: linux-hwmon@vger.kernel.org
10111 S: Maintained
10112 F: Documentation/hwmon/k10temp.rst
10113 F: drivers/hwmon/k10temp.c
10114
10115 K8TEMP HARDWARE MONITORING DRIVER
10116 M: Rudolf Marek <r.marek@assembler.cz>
10117 L: linux-hwmon@vger.kernel.org
10118 S: Maintained
10119 F: Documentation/hwmon/k8temp.rst
10120 F: drivers/hwmon/k8temp.c
10121
10122 KASAN
10123 M: Andrey Ryabinin <ryabinin.a.a@gmail.com>
10124 R: Alexander Potapenko <glider@google.com>
10125 R: Andrey Konovalov <andreyknvl@gmail.com>
10126 R: Dmitry Vyukov <dvyukov@google.com>
10127 L: kasan-dev@googlegroups.com
10128 S: Maintained
10129 F: Documentation/dev-tools/kasan.rst
10130 F: arch/*/include/asm/*kasan.h
10131 F: arch/*/mm/kasan_init*
10132 F: include/linux/kasan*.h
10133 F: lib/Kconfig.kasan
10134 F: lib/test_kasan*.c
10135 F: mm/kasan/
10136 F: scripts/Makefile.kasan
10137
10138 KCONFIG
10139 M: Masahiro Yamada <masahiroy@kernel.org>
10140 L: linux-kbuild@vger.kernel.org
10141 S: Maintained
10142 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10143 F: Documentation/kbuild/kconfig*
10144 F: scripts/Kconfig.include
10145 F: scripts/kconfig/
10146
10147 KCOV
10148 R: Dmitry Vyukov <dvyukov@google.com>
10149 R: Andrey Konovalov <andreyknvl@gmail.com>
10150 L: kasan-dev@googlegroups.com
10151 S: Maintained
10152 F: Documentation/dev-tools/kcov.rst
10153 F: include/linux/kcov.h
10154 F: include/uapi/linux/kcov.h
10155 F: kernel/kcov.c
10156 F: scripts/Makefile.kcov
10157
10158 KCSAN
10159 M: Marco Elver <elver@google.com>
10160 R: Dmitry Vyukov <dvyukov@google.com>
10161 L: kasan-dev@googlegroups.com
10162 S: Maintained
10163 F: Documentation/dev-tools/kcsan.rst
10164 F: include/linux/kcsan*.h
10165 F: kernel/kcsan/
10166 F: lib/Kconfig.kcsan
10167 F: scripts/Makefile.kcsan
10168
10169 KDUMP
10170 M: Dave Young <dyoung@redhat.com>
10171 M: Baoquan He <bhe@redhat.com>
10172 R: Vivek Goyal <vgoyal@redhat.com>
10173 L: kexec@lists.infradead.org
10174 S: Maintained
10175 W: http://lse.sourceforge.net/kdump/
10176 F: Documentation/admin-guide/kdump/
10177 F: fs/proc/vmcore.c
10178 F: include/linux/crash_core.h
10179 F: include/linux/crash_dump.h
10180 F: include/uapi/linux/vmcore.h
10181 F: kernel/crash_*.c
10182
10183 KEENE FM RADIO TRANSMITTER DRIVER
10184 M: Hans Verkuil <hverkuil@xs4all.nl>
10185 L: linux-media@vger.kernel.org
10186 S: Maintained
10187 W: https://linuxtv.org
10188 T: git git://linuxtv.org/media_tree.git
10189 F: drivers/media/radio/radio-keene*
10190
10191 KERNEL AUTOMOUNTER
10192 M: Ian Kent <raven@themaw.net>
10193 L: autofs@vger.kernel.org
10194 S: Maintained
10195 F: fs/autofs/
10196
10197 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10198 M: Masahiro Yamada <masahiroy@kernel.org>
10199 M: Michal Marek <michal.lkml@markovi.net>
10200 R: Nick Desaulniers <ndesaulniers@google.com>
10201 L: linux-kbuild@vger.kernel.org
10202 S: Maintained
10203 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10204 F: Documentation/kbuild/
10205 F: Makefile
10206 F: scripts/*vmlinux*
10207 F: scripts/Kbuild*
10208 F: scripts/Makefile*
10209 F: scripts/basic/
10210 F: scripts/dummy-tools/
10211 F: scripts/mk*
10212 F: scripts/mod/
10213 F: scripts/package/
10214
10215 KERNEL JANITORS
10216 L: kernel-janitors@vger.kernel.org
10217 S: Odd Fixes
10218 W: http://kernelnewbies.org/KernelJanitors
10219
10220 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10221 M: "J. Bruce Fields" <bfields@fieldses.org>
10222 M: Chuck Lever <chuck.lever@oracle.com>
10223 L: linux-nfs@vger.kernel.org
10224 S: Supported
10225 W: http://nfs.sourceforge.net/
10226 T: git git://linux-nfs.org/~bfields/linux.git
10227 F: fs/lockd/
10228 F: fs/nfs_common/
10229 F: fs/nfsd/
10230 F: include/linux/lockd/
10231 F: include/linux/sunrpc/
10232 F: include/uapi/linux/nfsd/
10233 F: include/uapi/linux/sunrpc/
10234 F: net/sunrpc/
10235 F: Documentation/filesystems/nfs/
10236
10237 KERNEL REGRESSIONS
10238 M: Thorsten Leemhuis <linux@leemhuis.info>
10239 L: regressions@lists.linux.dev
10240 S: Supported
10241
10242 KERNEL SELFTEST FRAMEWORK
10243 M: Shuah Khan <shuah@kernel.org>
10244 M: Shuah Khan <skhan@linuxfoundation.org>
10245 L: linux-kselftest@vger.kernel.org
10246 S: Maintained
10247 Q: https://patchwork.kernel.org/project/linux-kselftest/list/
10248 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10249 F: Documentation/dev-tools/kselftest*
10250 F: tools/testing/selftests/
10251
10252 KERNEL SMB3 SERVER (KSMBD)
10253 M: Namjae Jeon <linkinjeon@kernel.org>
10254 M: Sergey Senozhatsky <senozhatsky@chromium.org>
10255 M: Steve French <sfrench@samba.org>
10256 M: Hyunchul Lee <hyc.lee@gmail.com>
10257 L: linux-cifs@vger.kernel.org
10258 S: Maintained
10259 T: git git://git.samba.org/ksmbd.git
10260 F: fs/ksmbd/
10261 F: fs/smbfs_common/
10262
10263 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10264 M: Brendan Higgins <brendanhiggins@google.com>
10265 L: linux-kselftest@vger.kernel.org
10266 L: kunit-dev@googlegroups.com
10267 S: Maintained
10268 W: https://google.github.io/kunit-docs/third_party/kernel/docs/
10269 F: Documentation/dev-tools/kunit/
10270 F: include/kunit/
10271 F: lib/kunit/
10272 F: tools/testing/kunit/
10273
10274 KERNEL USERMODE HELPER
10275 M: Luis Chamberlain <mcgrof@kernel.org>
10276 L: linux-kernel@vger.kernel.org
10277 S: Maintained
10278 F: include/linux/umh.h
10279 F: kernel/umh.c
10280
10281 KERNEL VIRTUAL MACHINE (KVM)
10282 M: Paolo Bonzini <pbonzini@redhat.com>
10283 L: kvm@vger.kernel.org
10284 S: Supported
10285 W: http://www.linux-kvm.org
10286 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10287 F: Documentation/virt/kvm/
10288 F: include/asm-generic/kvm*
10289 F: include/kvm/iodev.h
10290 F: include/linux/kvm*
10291 F: include/trace/events/kvm.h
10292 F: include/uapi/asm-generic/kvm*
10293 F: include/uapi/linux/kvm*
10294 F: tools/kvm/
10295 F: tools/testing/selftests/kvm/
10296 F: virt/kvm/*
10297
10298 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10299 M: Marc Zyngier <maz@kernel.org>
10300 R: James Morse <james.morse@arm.com>
10301 R: Alexandru Elisei <alexandru.elisei@arm.com>
10302 R: Suzuki K Poulose <suzuki.poulose@arm.com>
10303 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10304 L: kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10305 S: Maintained
10306 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10307 F: arch/arm64/include/asm/kvm*
10308 F: arch/arm64/include/uapi/asm/kvm*
10309 F: arch/arm64/kvm/
10310 F: include/kvm/arm_*
10311 F: tools/testing/selftests/kvm/*/aarch64/
10312 F: tools/testing/selftests/kvm/aarch64/
10313
10314 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10315 M: Huacai Chen <chenhuacai@kernel.org>
10316 M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10317 L: linux-mips@vger.kernel.org
10318 L: kvm@vger.kernel.org
10319 S: Maintained
10320 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10321 F: arch/mips/include/asm/kvm*
10322 F: arch/mips/include/uapi/asm/kvm*
10323 F: arch/mips/kvm/
10324
10325 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10326 M: Paul Mackerras <paulus@ozlabs.org>
10327 L: kvm-ppc@vger.kernel.org
10328 S: Supported
10329 W: http://www.linux-kvm.org/
10330 T: git git://github.com/agraf/linux-2.6.git
10331 F: arch/powerpc/include/asm/kvm*
10332 F: arch/powerpc/include/uapi/asm/kvm*
10333 F: arch/powerpc/kernel/kvm*
10334 F: arch/powerpc/kvm/
10335
10336 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10337 M: Christian Borntraeger <borntraeger@de.ibm.com>
10338 M: Janosch Frank <frankja@linux.ibm.com>
10339 R: David Hildenbrand <david@redhat.com>
10340 R: Claudio Imbrenda <imbrenda@linux.ibm.com>
10341 L: kvm@vger.kernel.org
10342 S: Supported
10343 W: http://www.ibm.com/developerworks/linux/linux390/
10344 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10345 F: Documentation/virt/kvm/s390*
10346 F: arch/s390/include/asm/gmap.h
10347 F: arch/s390/include/asm/kvm*
10348 F: arch/s390/include/uapi/asm/kvm*
10349 F: arch/s390/include/uapi/asm/uvdevice.h
10350 F: arch/s390/kernel/uv.c
10351 F: arch/s390/kvm/
10352 F: arch/s390/mm/gmap.c
10353 F: drivers/s390/char/uvdevice.c
10354 F: tools/testing/selftests/kvm/*/s390x/
10355 F: tools/testing/selftests/kvm/s390x/
10356
10357 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10358 M: Paolo Bonzini <pbonzini@redhat.com>
10359 R: Sean Christopherson <seanjc@google.com>
10360 R: Vitaly Kuznetsov <vkuznets@redhat.com>
10361 R: Wanpeng Li <wanpengli@tencent.com>
10362 R: Jim Mattson <jmattson@google.com>
10363 R: Joerg Roedel <joro@8bytes.org>
10364 L: kvm@vger.kernel.org
10365 S: Supported
10366 W: http://www.linux-kvm.org
10367 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10368 F: arch/x86/include/asm/kvm*
10369 F: arch/x86/include/asm/pvclock-abi.h
10370 F: arch/x86/include/asm/svm.h
10371 F: arch/x86/include/asm/vmx*.h
10372 F: arch/x86/include/uapi/asm/kvm*
10373 F: arch/x86/include/uapi/asm/svm.h
10374 F: arch/x86/include/uapi/asm/vmx.h
10375 F: arch/x86/kernel/kvm.c
10376 F: arch/x86/kernel/kvmclock.c
10377 F: arch/x86/kvm/
10378 F: arch/x86/kvm/*/
10379
10380 KERNFS
10381 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10382 M: Tejun Heo <tj@kernel.org>
10383 S: Supported
10384 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10385 F: fs/kernfs/
10386 F: include/linux/kernfs.h
10387
10388 KEXEC
10389 M: Eric Biederman <ebiederm@xmission.com>
10390 L: kexec@lists.infradead.org
10391 S: Maintained
10392 W: http://kernel.org/pub/linux/utils/kernel/kexec/
10393 F: include/linux/kexec.h
10394 F: include/uapi/linux/kexec.h
10395 F: kernel/kexec*
10396
10397 KEYS-ENCRYPTED
10398 M: Mimi Zohar <zohar@linux.ibm.com>
10399 L: linux-integrity@vger.kernel.org
10400 L: keyrings@vger.kernel.org
10401 S: Supported
10402 F: Documentation/security/keys/trusted-encrypted.rst
10403 F: include/keys/encrypted-type.h
10404 F: security/keys/encrypted-keys/
10405
10406 KEYS-TRUSTED
10407 M: James Bottomley <jejb@linux.ibm.com>
10408 M: Jarkko Sakkinen <jarkko@kernel.org>
10409 M: Mimi Zohar <zohar@linux.ibm.com>
10410 L: linux-integrity@vger.kernel.org
10411 L: keyrings@vger.kernel.org
10412 S: Supported
10413 F: Documentation/security/keys/trusted-encrypted.rst
10414 F: include/keys/trusted-type.h
10415 F: include/keys/trusted_tpm.h
10416 F: security/keys/trusted-keys/
10417
10418 KEYS-TRUSTED-TEE
10419 M: Sumit Garg <sumit.garg@linaro.org>
10420 L: linux-integrity@vger.kernel.org
10421 L: keyrings@vger.kernel.org
10422 S: Supported
10423 F: include/keys/trusted_tee.h
10424 F: security/keys/trusted-keys/trusted_tee.c
10425
10426 KEYS/KEYRINGS
10427 M: David Howells <dhowells@redhat.com>
10428 M: Jarkko Sakkinen <jarkko@kernel.org>
10429 L: keyrings@vger.kernel.org
10430 S: Maintained
10431 F: Documentation/security/keys/core.rst
10432 F: include/keys/
10433 F: include/linux/key-type.h
10434 F: include/linux/key.h
10435 F: include/linux/keyctl.h
10436 F: include/uapi/linux/keyctl.h
10437 F: security/keys/
10438
10439 KFENCE
10440 M: Alexander Potapenko <glider@google.com>
10441 M: Marco Elver <elver@google.com>
10442 R: Dmitry Vyukov <dvyukov@google.com>
10443 L: kasan-dev@googlegroups.com
10444 S: Maintained
10445 F: Documentation/dev-tools/kfence.rst
10446 F: arch/*/include/asm/kfence.h
10447 F: include/linux/kfence.h
10448 F: lib/Kconfig.kfence
10449 F: mm/kfence/
10450
10451 KFIFO
10452 M: Stefani Seibold <stefani@seibold.net>
10453 S: Maintained
10454 F: include/linux/kfifo.h
10455 F: lib/kfifo.c
10456 F: samples/kfifo/
10457
10458 KGDB / KDB /debug_core
10459 M: Jason Wessel <jason.wessel@windriver.com>
10460 M: Daniel Thompson <daniel.thompson@linaro.org>
10461 R: Douglas Anderson <dianders@chromium.org>
10462 L: kgdb-bugreport@lists.sourceforge.net
10463 S: Maintained
10464 W: http://kgdb.wiki.kernel.org/
10465 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10466 F: Documentation/dev-tools/kgdb.rst
10467 F: drivers/misc/kgdbts.c
10468 F: drivers/tty/serial/kgdboc.c
10469 F: include/linux/kdb.h
10470 F: include/linux/kgdb.h
10471 F: kernel/debug/
10472
10473 KHADAS MCU MFD DRIVER
10474 M: Neil Armstrong <narmstrong@baylibre.com>
10475 L: linux-amlogic@lists.infradead.org
10476 S: Maintained
10477 F: Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10478 F: drivers/mfd/khadas-mcu.c
10479 F: include/linux/mfd/khadas-mcu.h
10480 F: drivers/thermal/khadas_mcu_fan.c
10481
10482 KMEMLEAK
10483 M: Catalin Marinas <catalin.marinas@arm.com>
10484 S: Maintained
10485 F: Documentation/dev-tools/kmemleak.rst
10486 F: include/linux/kmemleak.h
10487 F: mm/kmemleak.c
10488 F: samples/kmemleak/kmemleak-test.c
10489
10490 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10491 M: Luis Chamberlain <mcgrof@kernel.org>
10492 L: linux-kernel@vger.kernel.org
10493 S: Maintained
10494 F: include/linux/kmod.h
10495 F: kernel/kmod.c
10496 F: lib/test_kmod.c
10497 F: tools/testing/selftests/kmod/
10498
10499 KPROBES
10500 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10501 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10502 M: "David S. Miller" <davem@davemloft.net>
10503 M: Masami Hiramatsu <mhiramat@kernel.org>
10504 S: Maintained
10505 F: Documentation/trace/kprobes.rst
10506 F: include/asm-generic/kprobes.h
10507 F: include/linux/kprobes.h
10508 F: kernel/kprobes.c
10509
10510 KS0108 LCD CONTROLLER DRIVER
10511 M: Miguel Ojeda <ojeda@kernel.org>
10512 S: Maintained
10513 F: Documentation/admin-guide/auxdisplay/ks0108.rst
10514 F: drivers/auxdisplay/ks0108.c
10515 F: include/linux/ks0108.h
10516
10517 KTD253 BACKLIGHT DRIVER
10518 M: Linus Walleij <linus.walleij@linaro.org>
10519 S: Maintained
10520 F: Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10521 F: drivers/video/backlight/ktd253-backlight.c
10522
10523 KTEST
10524 M: Steven Rostedt <rostedt@goodmis.org>
10525 M: John Hawley <warthog9@eaglescrag.net>
10526 S: Maintained
10527 F: tools/testing/ktest
10528
10529 L3MDEV
10530 M: David Ahern <dsahern@kernel.org>
10531 L: netdev@vger.kernel.org
10532 S: Maintained
10533 F: include/net/l3mdev.h
10534 F: net/l3mdev
10535
10536 L7 BPF FRAMEWORK
10537 M: John Fastabend <john.fastabend@gmail.com>
10538 M: Daniel Borkmann <daniel@iogearbox.net>
10539 M: Jakub Sitnicki <jakub@cloudflare.com>
10540 M: Lorenz Bauer <lmb@cloudflare.com>
10541 L: netdev@vger.kernel.org
10542 L: bpf@vger.kernel.org
10543 S: Maintained
10544 F: include/linux/skmsg.h
10545 F: net/core/skmsg.c
10546 F: net/core/sock_map.c
10547 F: net/ipv4/tcp_bpf.c
10548 F: net/ipv4/udp_bpf.c
10549 F: net/unix/unix_bpf.c
10550
10551 LANDLOCK SECURITY MODULE
10552 M: Mickaël Salaün <mic@digikod.net>
10553 L: linux-security-module@vger.kernel.org
10554 S: Supported
10555 W: https://landlock.io
10556 T: git https://github.com/landlock-lsm/linux.git
10557 F: Documentation/security/landlock.rst
10558 F: Documentation/userspace-api/landlock.rst
10559 F: include/uapi/linux/landlock.h
10560 F: samples/landlock/
10561 F: security/landlock/
10562 F: tools/testing/selftests/landlock/
10563 K: landlock
10564 K: LANDLOCK
10565
10566 LANTIQ / INTEL Ethernet drivers
10567 M: Hauke Mehrtens <hauke@hauke-m.de>
10568 L: netdev@vger.kernel.org
10569 S: Maintained
10570 F: drivers/net/dsa/lantiq_gswip.c
10571 F: drivers/net/dsa/lantiq_pce.h
10572 F: drivers/net/ethernet/lantiq_xrx200.c
10573 F: net/dsa/tag_gswip.c
10574
10575 LANTIQ MIPS ARCHITECTURE
10576 M: John Crispin <john@phrozen.org>
10577 L: linux-mips@vger.kernel.org
10578 S: Maintained
10579 F: arch/mips/lantiq
10580 F: drivers/soc/lantiq
10581
10582 LASI 53c700 driver for PARISC
10583 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10584 L: linux-scsi@vger.kernel.org
10585 S: Maintained
10586 F: Documentation/scsi/53c700.rst
10587 F: drivers/scsi/53c700*
10588
10589 LEAKING_ADDRESSES
10590 M: Tobin C. Harding <me@tobin.cc>
10591 M: Tycho Andersen <tycho@tycho.pizza>
10592 L: linux-hardening@vger.kernel.org
10593 S: Maintained
10594 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10595 F: scripts/leaking_addresses.pl
10596
10597 LED SUBSYSTEM
10598 M: Pavel Machek <pavel@ucw.cz>
10599 L: linux-leds@vger.kernel.org
10600 S: Maintained
10601 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10602 F: Documentation/devicetree/bindings/leds/
10603 F: drivers/leds/
10604 F: include/linux/leds.h
10605
10606 LEGACY EEPROM DRIVER
10607 M: Jean Delvare <jdelvare@suse.com>
10608 S: Maintained
10609 F: Documentation/misc-devices/eeprom.rst
10610 F: drivers/misc/eeprom/eeprom.c
10611
10612 LEGO MINDSTORMS EV3
10613 R: David Lechner <david@lechnology.com>
10614 S: Maintained
10615 F: Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10616 F: arch/arm/boot/dts/da850-lego-ev3.dts
10617 F: drivers/power/supply/lego_ev3_battery.c
10618
10619 LEGO USB Tower driver
10620 M: Juergen Stuber <starblue@users.sourceforge.net>
10621 L: legousb-devel@lists.sourceforge.net
10622 S: Maintained
10623 W: http://legousb.sourceforge.net/
10624 F: drivers/usb/misc/legousbtower.c
10625
10626 LG LAPTOP EXTRAS
10627 M: Matan Ziv-Av <matan@svgalib.org>
10628 L: platform-driver-x86@vger.kernel.org
10629 S: Maintained
10630 F: Documentation/ABI/testing/sysfs-platform-lg-laptop
10631 F: Documentation/admin-guide/laptops/lg-laptop.rst
10632 F: drivers/platform/x86/lg-laptop.c
10633
10634 LG2160 MEDIA DRIVER
10635 M: Michael Krufky <mkrufky@linuxtv.org>
10636 L: linux-media@vger.kernel.org
10637 S: Maintained
10638 W: https://linuxtv.org
10639 W: http://github.com/mkrufky
10640 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10641 T: git git://linuxtv.org/mkrufky/tuners.git
10642 F: drivers/media/dvb-frontends/lg2160.*
10643
10644 LGDT3305 MEDIA DRIVER
10645 M: Michael Krufky <mkrufky@linuxtv.org>
10646 L: linux-media@vger.kernel.org
10647 S: Maintained
10648 W: https://linuxtv.org
10649 W: http://github.com/mkrufky
10650 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10651 T: git git://linuxtv.org/mkrufky/tuners.git
10652 F: drivers/media/dvb-frontends/lgdt3305.*
10653
10654 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10655 M: Viresh Kumar <vireshk@kernel.org>
10656 L: linux-ide@vger.kernel.org
10657 S: Maintained
10658 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10659 F: drivers/ata/pata_arasan_cf.c
10660 F: include/linux/pata_arasan_cf_data.h
10661
10662 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10663 M: Linus Walleij <linus.walleij@linaro.org>
10664 L: linux-ide@vger.kernel.org
10665 S: Maintained
10666 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10667 F: drivers/ata/pata_ftide010.c
10668 F: drivers/ata/sata_gemini.c
10669 F: drivers/ata/sata_gemini.h
10670
10671 LIBATA SATA AHCI PLATFORM devices support
10672 M: Hans de Goede <hdegoede@redhat.com>
10673 M: Jens Axboe <axboe@kernel.dk>
10674 L: linux-ide@vger.kernel.org
10675 S: Maintained
10676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10677 F: drivers/ata/ahci_platform.c
10678 F: drivers/ata/libahci_platform.c
10679 F: include/linux/ahci_platform.h
10680
10681 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10682 M: Mikael Pettersson <mikpelinux@gmail.com>
10683 L: linux-ide@vger.kernel.org
10684 S: Maintained
10685 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10686 F: drivers/ata/sata_promise.*
10687
10688 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10689 M: Damien Le Moal <damien.lemoal@opensource.wdc.com>
10690 L: linux-ide@vger.kernel.org
10691 S: Maintained
10692 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10693 F: Documentation/devicetree/bindings/ata/
10694 F: drivers/ata/
10695 F: include/linux/ata.h
10696 F: include/linux/libata.h
10697
10698 LIBLOCKDEP
10699 M: Sasha Levin <alexander.levin@microsoft.com>
10700 S: Maintained
10701 F: tools/lib/lockdep/
10702
10703 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10704 M: Dan Williams <dan.j.williams@intel.com>
10705 M: Vishal Verma <vishal.l.verma@intel.com>
10706 M: Dave Jiang <dave.jiang@intel.com>
10707 L: nvdimm@lists.linux.dev
10708 S: Supported
10709 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10710 P: Documentation/nvdimm/maintainer-entry-profile.rst
10711 F: drivers/nvdimm/blk.c
10712 F: drivers/nvdimm/region_devs.c
10713
10714 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10715 M: Vishal Verma <vishal.l.verma@intel.com>
10716 M: Dan Williams <dan.j.williams@intel.com>
10717 M: Dave Jiang <dave.jiang@intel.com>
10718 L: nvdimm@lists.linux.dev
10719 S: Supported
10720 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10721 P: Documentation/nvdimm/maintainer-entry-profile.rst
10722 F: drivers/nvdimm/btt*
10723
10724 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10725 M: Dan Williams <dan.j.williams@intel.com>
10726 M: Vishal Verma <vishal.l.verma@intel.com>
10727 M: Dave Jiang <dave.jiang@intel.com>
10728 L: nvdimm@lists.linux.dev
10729 S: Supported
10730 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10731 P: Documentation/nvdimm/maintainer-entry-profile.rst
10732 F: drivers/nvdimm/pmem*
10733
10734 LIBNVDIMM: DEVICETREE BINDINGS
10735 M: Oliver O'Halloran <oohall@gmail.com>
10736 L: nvdimm@lists.linux.dev
10737 S: Supported
10738 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10739 F: Documentation/devicetree/bindings/pmem/pmem-region.txt
10740 F: drivers/nvdimm/of_pmem.c
10741
10742 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10743 M: Dan Williams <dan.j.williams@intel.com>
10744 M: Vishal Verma <vishal.l.verma@intel.com>
10745 M: Dave Jiang <dave.jiang@intel.com>
10746 M: Ira Weiny <ira.weiny@intel.com>
10747 L: nvdimm@lists.linux.dev
10748 S: Supported
10749 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
10750 P: Documentation/nvdimm/maintainer-entry-profile.rst
10751 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10752 F: drivers/acpi/nfit/*
10753 F: drivers/nvdimm/*
10754 F: include/linux/libnvdimm.h
10755 F: include/linux/nd.h
10756 F: include/uapi/linux/ndctl.h
10757 F: tools/testing/nvdimm/
10758
10759 LICENSES and SPDX stuff
10760 M: Thomas Gleixner <tglx@linutronix.de>
10761 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10762 L: linux-spdx@vger.kernel.org
10763 S: Maintained
10764 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10765 F: COPYING
10766 F: Documentation/process/license-rules.rst
10767 F: LICENSES/
10768 F: scripts/spdxcheck-test.sh
10769 F: scripts/spdxcheck.py
10770
10771 LINEAR RANGES HELPERS
10772 M: Mark Brown <broonie@kernel.org>
10773 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10774 F: lib/linear_ranges.c
10775 F: lib/test_linear_ranges.c
10776 F: include/linux/linear_range.h
10777
10778 LINUX FOR POWER MACINTOSH
10779 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10780 L: linuxppc-dev@lists.ozlabs.org
10781 S: Odd Fixes
10782 F: arch/powerpc/platforms/powermac/
10783 F: drivers/macintosh/
10784
10785 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10786 M: Michael Ellerman <mpe@ellerman.id.au>
10787 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10788 R: Paul Mackerras <paulus@samba.org>
10789 L: linuxppc-dev@lists.ozlabs.org
10790 S: Supported
10791 W: https://github.com/linuxppc/wiki/wiki
10792 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10793 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10794 F: Documentation/ABI/stable/sysfs-firmware-opal-*
10795 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
10796 F: Documentation/devicetree/bindings/powerpc/
10797 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
10798 F: Documentation/powerpc/
10799 F: arch/powerpc/
10800 F: drivers/*/*/*pasemi*
10801 F: drivers/*/*pasemi*
10802 F: drivers/char/tpm/tpm_ibmvtpm*
10803 F: drivers/crypto/nx/
10804 F: drivers/crypto/vmx/
10805 F: drivers/i2c/busses/i2c-opal.c
10806 F: drivers/net/ethernet/ibm/ibmveth.*
10807 F: drivers/net/ethernet/ibm/ibmvnic.*
10808 F: drivers/pci/hotplug/pnv_php.c
10809 F: drivers/pci/hotplug/rpa*
10810 F: drivers/rtc/rtc-opal.c
10811 F: drivers/scsi/ibmvscsi/
10812 F: drivers/tty/hvc/hvc_opal.c
10813 F: drivers/watchdog/wdrtas.c
10814 F: tools/testing/selftests/powerpc
10815 N: /pmac
10816 N: powermac
10817 N: powernv
10818 N: [^a-z0-9]ps3
10819 N: pseries
10820
10821 LINUX FOR POWERPC EMBEDDED MPC5XXX
10822 M: Anatolij Gustschin <agust@denx.de>
10823 L: linuxppc-dev@lists.ozlabs.org
10824 S: Odd Fixes
10825 F: arch/powerpc/platforms/512x/
10826 F: arch/powerpc/platforms/52xx/
10827
10828 LINUX FOR POWERPC EMBEDDED PPC4XX
10829 L: linuxppc-dev@lists.ozlabs.org
10830 S: Orphan
10831 F: arch/powerpc/platforms/40x/
10832 F: arch/powerpc/platforms/44x/
10833
10834 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10835 M: Scott Wood <oss@buserror.net>
10836 L: linuxppc-dev@lists.ozlabs.org
10837 S: Odd fixes
10838 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10839 F: Documentation/devicetree/bindings/powerpc/fsl/
10840 F: arch/powerpc/platforms/83xx/
10841 F: arch/powerpc/platforms/85xx/
10842
10843 LINUX FOR POWERPC EMBEDDED PPC8XX
10844 M: Christophe Leroy <christophe.leroy@csgroup.eu>
10845 L: linuxppc-dev@lists.ozlabs.org
10846 S: Maintained
10847 F: arch/powerpc/platforms/8xx/
10848
10849 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10850 M: Kees Cook <keescook@chromium.org>
10851 S: Maintained
10852 F: drivers/misc/lkdtm/*
10853 F: tools/testing/selftests/lkdtm/*
10854
10855 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10856 M: Alan Stern <stern@rowland.harvard.edu>
10857 M: Andrea Parri <parri.andrea@gmail.com>
10858 M: Will Deacon <will@kernel.org>
10859 M: Peter Zijlstra <peterz@infradead.org>
10860 M: Boqun Feng <boqun.feng@gmail.com>
10861 M: Nicholas Piggin <npiggin@gmail.com>
10862 M: David Howells <dhowells@redhat.com>
10863 M: Jade Alglave <j.alglave@ucl.ac.uk>
10864 M: Luc Maranget <luc.maranget@inria.fr>
10865 M: "Paul E. McKenney" <paulmck@kernel.org>
10866 R: Akira Yokosawa <akiyks@gmail.com>
10867 R: Daniel Lustig <dlustig@nvidia.com>
10868 R: Joel Fernandes <joel@joelfernandes.org>
10869 L: linux-kernel@vger.kernel.org
10870 L: linux-arch@vger.kernel.org
10871 S: Supported
10872 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10873 F: Documentation/atomic_bitops.txt
10874 F: Documentation/atomic_t.txt
10875 F: Documentation/core-api/refcount-vs-atomic.rst
10876 F: Documentation/litmus-tests/
10877 F: Documentation/memory-barriers.txt
10878 F: tools/memory-model/
10879
10880 LIS3LV02D ACCELEROMETER DRIVER
10881 M: Eric Piel <eric.piel@tremplin-utc.net>
10882 S: Maintained
10883 F: Documentation/misc-devices/lis3lv02d.rst
10884 F: drivers/misc/lis3lv02d/
10885 F: drivers/platform/x86/hp_accel.c
10886
10887 LIST KUNIT TEST
10888 M: David Gow <davidgow@google.com>
10889 L: linux-kselftest@vger.kernel.org
10890 L: kunit-dev@googlegroups.com
10891 S: Maintained
10892 F: lib/list-test.c
10893
10894 LITEX PLATFORM
10895 M: Karol Gugala <kgugala@antmicro.com>
10896 M: Mateusz Holenko <mholenko@antmicro.com>
10897 S: Maintained
10898 F: Documentation/devicetree/bindings/*/litex,*.yaml
10899 F: arch/openrisc/boot/dts/or1klitex.dts
10900 F: drivers/soc/litex/litex_soc_ctrl.c
10901 F: drivers/tty/serial/liteuart.c
10902 F: include/linux/litex.h
10903
10904 LIVE PATCHING
10905 M: Josh Poimboeuf <jpoimboe@redhat.com>
10906 M: Jiri Kosina <jikos@kernel.org>
10907 M: Miroslav Benes <mbenes@suse.cz>
10908 M: Petr Mladek <pmladek@suse.com>
10909 R: Joe Lawrence <joe.lawrence@redhat.com>
10910 L: live-patching@vger.kernel.org
10911 S: Maintained
10912 T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10913 F: Documentation/ABI/testing/sysfs-kernel-livepatch
10914 F: Documentation/livepatch/
10915 F: arch/powerpc/include/asm/livepatch.h
10916 F: arch/s390/include/asm/livepatch.h
10917 F: arch/x86/include/asm/livepatch.h
10918 F: include/linux/livepatch.h
10919 F: kernel/livepatch/
10920 F: lib/livepatch/
10921 F: samples/livepatch/
10922 F: tools/testing/selftests/livepatch/
10923
10924 LLC (802.2)
10925 L: netdev@vger.kernel.org
10926 S: Odd fixes
10927 F: include/linux/llc.h
10928 F: include/net/llc*
10929 F: include/uapi/linux/llc.h
10930 F: net/llc/
10931
10932 LM73 HARDWARE MONITOR DRIVER
10933 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
10934 L: linux-hwmon@vger.kernel.org
10935 S: Maintained
10936 F: drivers/hwmon/lm73.c
10937
10938 LM78 HARDWARE MONITOR DRIVER
10939 M: Jean Delvare <jdelvare@suse.com>
10940 L: linux-hwmon@vger.kernel.org
10941 S: Maintained
10942 F: Documentation/hwmon/lm78.rst
10943 F: drivers/hwmon/lm78.c
10944
10945 LM83 HARDWARE MONITOR DRIVER
10946 M: Jean Delvare <jdelvare@suse.com>
10947 L: linux-hwmon@vger.kernel.org
10948 S: Maintained
10949 F: Documentation/hwmon/lm83.rst
10950 F: drivers/hwmon/lm83.c
10951
10952 LM90 HARDWARE MONITOR DRIVER
10953 M: Jean Delvare <jdelvare@suse.com>
10954 L: linux-hwmon@vger.kernel.org
10955 S: Maintained
10956 F: Documentation/devicetree/bindings/hwmon/lm90.txt
10957 F: Documentation/hwmon/lm90.rst
10958 F: drivers/hwmon/lm90.c
10959 F: include/dt-bindings/thermal/lm90.h
10960
10961 LM95234 HARDWARE MONITOR DRIVER
10962 M: Guenter Roeck <linux@roeck-us.net>
10963 L: linux-hwmon@vger.kernel.org
10964 S: Maintained
10965 F: Documentation/hwmon/lm95234.rst
10966 F: drivers/hwmon/lm95234.c
10967
10968 LME2510 MEDIA DRIVER
10969 M: Malcolm Priestley <tvboxspy@gmail.com>
10970 L: linux-media@vger.kernel.org
10971 S: Maintained
10972 W: https://linuxtv.org
10973 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10974 F: drivers/media/usb/dvb-usb-v2/lmedm04*
10975
10976 LOADPIN SECURITY MODULE
10977 M: Kees Cook <keescook@chromium.org>
10978 S: Supported
10979 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10980 F: Documentation/admin-guide/LSM/LoadPin.rst
10981 F: security/loadpin/
10982
10983 LOCKING PRIMITIVES
10984 M: Peter Zijlstra <peterz@infradead.org>
10985 M: Ingo Molnar <mingo@redhat.com>
10986 M: Will Deacon <will@kernel.org>
10987 R: Waiman Long <longman@redhat.com>
10988 R: Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10989 L: linux-kernel@vger.kernel.org
10990 S: Maintained
10991 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10992 F: Documentation/locking/
10993 F: arch/*/include/asm/spinlock*.h
10994 F: include/linux/lockdep.h
10995 F: include/linux/mutex*.h
10996 F: include/linux/rwlock*.h
10997 F: include/linux/rwsem*.h
10998 F: include/linux/seqlock.h
10999 F: include/linux/spinlock*.h
11000 F: kernel/locking/
11001 F: lib/locking*.[ch]
11002 X: kernel/locking/locktorture.c
11003
11004 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11005 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
11006 L: linux-ntfs-dev@lists.sourceforge.net
11007 S: Maintained
11008 W: http://www.linux-ntfs.org/content/view/19/37/
11009 F: Documentation/admin-guide/ldm.rst
11010 F: block/partitions/ldm.*
11011
11012 LOGITECH HID GAMING KEYBOARDS
11013 M: Hans de Goede <hdegoede@redhat.com>
11014 L: linux-input@vger.kernel.org
11015 S: Maintained
11016 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11017 F: drivers/hid/hid-lg-g15.c
11018
11019 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11020 M: Adrien Grassein <adrien.grassein@gmail.com>
11021 S: Maintained
11022 F: Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11023 F: drivers/gpu/drm/bridge/lontium-lt8912b.c
11024
11025 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11026 M: Sathya Prakash <sathya.prakash@broadcom.com>
11027 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11028 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11029 L: MPT-FusionLinux.pdl@broadcom.com
11030 L: linux-scsi@vger.kernel.org
11031 S: Supported
11032 W: http://www.avagotech.com/support/
11033 F: drivers/message/fusion/
11034 F: drivers/scsi/mpt3sas/
11035
11036 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11037 M: Matthew Wilcox <willy@infradead.org>
11038 L: linux-scsi@vger.kernel.org
11039 S: Maintained
11040 F: drivers/scsi/sym53c8xx_2/
11041
11042 LTC1660 DAC DRIVER
11043 M: Marcus Folkesson <marcus.folkesson@gmail.com>
11044 L: linux-iio@vger.kernel.org
11045 S: Maintained
11046 F: Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11047 F: drivers/iio/dac/ltc1660.c
11048
11049 LTC2947 HARDWARE MONITOR DRIVER
11050 M: Nuno Sá <nuno.sa@analog.com>
11051 L: linux-hwmon@vger.kernel.org
11052 S: Supported
11053 W: http://ez.analog.com/community/linux-device-drivers
11054 F: Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11055 F: drivers/hwmon/ltc2947-core.c
11056 F: drivers/hwmon/ltc2947-i2c.c
11057 F: drivers/hwmon/ltc2947-spi.c
11058 F: drivers/hwmon/ltc2947.h
11059
11060 LTC2983 IIO TEMPERATURE DRIVER
11061 M: Nuno Sá <nuno.sa@analog.com>
11062 L: linux-iio@vger.kernel.org
11063 S: Supported
11064 W: http://ez.analog.com/community/linux-device-drivers
11065 F: Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11066 F: drivers/iio/temperature/ltc2983.c
11067
11068 LTC4261 HARDWARE MONITOR DRIVER
11069 M: Guenter Roeck <linux@roeck-us.net>
11070 L: linux-hwmon@vger.kernel.org
11071 S: Maintained
11072 F: Documentation/hwmon/ltc4261.rst
11073 F: drivers/hwmon/ltc4261.c
11074
11075 LTC4306 I2C MULTIPLEXER DRIVER
11076 M: Michael Hennerich <michael.hennerich@analog.com>
11077 L: linux-i2c@vger.kernel.org
11078 S: Supported
11079 W: http://ez.analog.com/community/linux-device-drivers
11080 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11081 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
11082
11083 LTP (Linux Test Project)
11084 M: Mike Frysinger <vapier@gentoo.org>
11085 M: Cyril Hrubis <chrubis@suse.cz>
11086 M: Wanlong Gao <wanlong.gao@gmail.com>
11087 M: Jan Stancek <jstancek@redhat.com>
11088 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11089 M: Alexey Kodanev <alexey.kodanev@oracle.com>
11090 L: ltp@lists.linux.it (subscribers-only)
11091 S: Maintained
11092 W: http://linux-test-project.github.io/
11093 T: git git://github.com/linux-test-project/ltp.git
11094
11095 LYNX PCS MODULE
11096 M: Ioana Ciornei <ioana.ciornei@nxp.com>
11097 L: netdev@vger.kernel.org
11098 S: Supported
11099 F: drivers/net/pcs/pcs-lynx.c
11100 F: include/linux/pcs-lynx.h
11101
11102 M68K ARCHITECTURE
11103 M: Geert Uytterhoeven <geert@linux-m68k.org>
11104 L: linux-m68k@lists.linux-m68k.org
11105 S: Maintained
11106 W: http://www.linux-m68k.org/
11107 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11108 F: arch/m68k/
11109 F: drivers/zorro/
11110
11111 M68K ON APPLE MACINTOSH
11112 M: Joshua Thompson <funaho@jurai.org>
11113 L: linux-m68k@lists.linux-m68k.org
11114 S: Maintained
11115 W: http://www.mac.linux-m68k.org/
11116 F: arch/m68k/mac/
11117 F: drivers/macintosh/adb-iop.c
11118 F: drivers/macintosh/via-macii.c
11119
11120 M68K ON HP9000/300
11121 M: Philip Blundell <philb@gnu.org>
11122 S: Maintained
11123 W: http://www.tazenda.demon.co.uk/phil/linux-hp
11124 F: arch/m68k/hp300/
11125
11126 M88DS3103 MEDIA DRIVER
11127 M: Antti Palosaari <crope@iki.fi>
11128 L: linux-media@vger.kernel.org
11129 S: Maintained
11130 W: https://linuxtv.org
11131 W: http://palosaari.fi/linux/
11132 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11133 T: git git://linuxtv.org/anttip/media_tree.git
11134 F: drivers/media/dvb-frontends/m88ds3103*
11135
11136 M88RS2000 MEDIA DRIVER
11137 M: Malcolm Priestley <tvboxspy@gmail.com>
11138 L: linux-media@vger.kernel.org
11139 S: Maintained
11140 W: https://linuxtv.org
11141 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11142 F: drivers/media/dvb-frontends/m88rs2000*
11143
11144 MA901 MASTERKIT USB FM RADIO DRIVER
11145 M: Alexey Klimov <klimov.linux@gmail.com>
11146 L: linux-media@vger.kernel.org
11147 S: Maintained
11148 T: git git://linuxtv.org/media_tree.git
11149 F: drivers/media/radio/radio-ma901.c
11150
11151 MAC80211
11152 M: Johannes Berg <johannes@sipsolutions.net>
11153 L: linux-wireless@vger.kernel.org
11154 S: Maintained
11155 W: https://wireless.wiki.kernel.org/
11156 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11157 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11158 F: Documentation/networking/mac80211-injection.rst
11159 F: Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11160 F: drivers/net/wireless/mac80211_hwsim.[ch]
11161 F: include/net/mac80211.h
11162 F: net/mac80211/
11163
11164 MAILBOX API
11165 M: Jassi Brar <jassisinghbrar@gmail.com>
11166 L: linux-kernel@vger.kernel.org
11167 S: Maintained
11168 F: drivers/mailbox/
11169 F: include/linux/mailbox_client.h
11170 F: include/linux/mailbox_controller.h
11171 F: include/dt-bindings/mailbox/
11172 F: Documentation/devicetree/bindings/mailbox/
11173
11174 MAILBOX ARM MHUv2
11175 M: Viresh Kumar <viresh.kumar@linaro.org>
11176 M: Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11177 L: linux-kernel@vger.kernel.org
11178 S: Maintained
11179 F: drivers/mailbox/arm_mhuv2.c
11180 F: include/linux/mailbox/arm_mhuv2_message.h
11181 F: Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11182
11183 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11184 M: Jeremy Kerr <jk@codeconstruct.com.au>
11185 M: Matt Johnston <matt@codeconstruct.com.au>
11186 L: netdev@vger.kernel.org
11187 S: Maintained
11188 F: Documentation/networking/mctp.rst
11189 F: drivers/net/mctp/
11190 F: include/net/mctp.h
11191 F: include/net/mctpdevice.h
11192 F: include/net/netns/mctp.h
11193 F: net/mctp/
11194
11195 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11196 M: Michael Kerrisk <mtk.manpages@gmail.com>
11197 L: linux-man@vger.kernel.org
11198 S: Maintained
11199 W: http://www.kernel.org/doc/man-pages
11200
11201 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11202 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
11203 L: linux-mips@vger.kernel.org
11204 S: Maintained
11205 F: arch/mips/boot/dts/img/pistachio*
11206
11207 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11208 M: Andrew Lunn <andrew@lunn.ch>
11209 M: Vivien Didelot <vivien.didelot@gmail.com>
11210 L: netdev@vger.kernel.org
11211 S: Maintained
11212 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
11213 F: Documentation/networking/devlink/mv88e6xxx.rst
11214 F: drivers/net/dsa/mv88e6xxx/
11215 F: include/linux/dsa/mv88e6xxx.h
11216 F: include/linux/platform_data/mv88e6xxx.h
11217
11218 MARVELL ARMADA 3700 PHY DRIVERS
11219 M: Miquel Raynal <miquel.raynal@bootlin.com>
11220 S: Maintained
11221 F: Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11222 F: Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11223 F: drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11224 F: drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11225
11226 MARVELL ARMADA DRM SUPPORT
11227 M: Russell King <linux@armlinux.org.uk>
11228 S: Maintained
11229 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11230 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11231 F: Documentation/devicetree/bindings/display/armada/
11232 F: drivers/gpu/drm/armada/
11233 F: include/uapi/drm/armada_drm.h
11234
11235 MARVELL CRYPTO DRIVER
11236 M: Boris Brezillon <bbrezillon@kernel.org>
11237 M: Arnaud Ebalard <arno@natisbad.org>
11238 M: Srujana Challa <schalla@marvell.com>
11239 L: linux-crypto@vger.kernel.org
11240 S: Maintained
11241 F: drivers/crypto/marvell/
11242 F: include/linux/soc/marvell/octeontx2/
11243
11244 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11245 M: Mirko Lindner <mlindner@marvell.com>
11246 M: Stephen Hemminger <stephen@networkplumber.org>
11247 L: netdev@vger.kernel.org
11248 S: Maintained
11249 F: drivers/net/ethernet/marvell/sk*
11250
11251 MARVELL LIBERTAS WIRELESS DRIVER
11252 L: libertas-dev@lists.infradead.org
11253 S: Orphan
11254 F: drivers/net/wireless/marvell/libertas/
11255
11256 MARVELL MACCHIATOBIN SUPPORT
11257 M: Russell King <linux@armlinux.org.uk>
11258 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11259 S: Maintained
11260 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11261
11262 MARVELL MV643XX ETHERNET DRIVER
11263 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11264 L: netdev@vger.kernel.org
11265 S: Maintained
11266 F: drivers/net/ethernet/marvell/mv643xx_eth.*
11267 F: include/linux/mv643xx.h
11268
11269 MARVELL MV88X3310 PHY DRIVER
11270 M: Russell King <linux@armlinux.org.uk>
11271 M: Marek Behún <kabel@kernel.org>
11272 L: netdev@vger.kernel.org
11273 S: Maintained
11274 F: drivers/net/phy/marvell10g.c
11275
11276 MARVELL MVEBU THERMAL DRIVER
11277 M: Miquel Raynal <miquel.raynal@bootlin.com>
11278 S: Maintained
11279 F: drivers/thermal/armada_thermal.c
11280
11281 MARVELL MVNETA ETHERNET DRIVER
11282 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11283 L: netdev@vger.kernel.org
11284 S: Maintained
11285 F: drivers/net/ethernet/marvell/mvneta.*
11286
11287 MARVELL MVPP2 ETHERNET DRIVER
11288 M: Marcin Wojtas <mw@semihalf.com>
11289 M: Russell King <linux@armlinux.org.uk>
11290 L: netdev@vger.kernel.org
11291 S: Maintained
11292 F: Documentation/devicetree/bindings/net/marvell-pp2.txt
11293 F: drivers/net/ethernet/marvell/mvpp2/
11294
11295 MARVELL MWIFIEX WIRELESS DRIVER
11296 M: Amitkumar Karwar <amitkarwar@gmail.com>
11297 M: Ganapathi Bhat <ganapathi017@gmail.com>
11298 M: Sharvari Harisangam <sharvari.harisangam@nxp.com>
11299 M: Xinming Hu <huxinming820@gmail.com>
11300 L: linux-wireless@vger.kernel.org
11301 S: Maintained
11302 F: drivers/net/wireless/marvell/mwifiex/
11303
11304 MARVELL MWL8K WIRELESS DRIVER
11305 M: Lennert Buytenhek <buytenh@wantstofly.org>
11306 L: linux-wireless@vger.kernel.org
11307 S: Odd Fixes
11308 F: drivers/net/wireless/marvell/mwl8k.c
11309
11310 MARVELL NAND CONTROLLER DRIVER
11311 M: Miquel Raynal <miquel.raynal@bootlin.com>
11312 L: linux-mtd@lists.infradead.org
11313 S: Maintained
11314 F: Documentation/devicetree/bindings/mtd/marvell-nand.txt
11315 F: drivers/mtd/nand/raw/marvell_nand.c
11316
11317 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11318 M: Sunil Goutham <sgoutham@marvell.com>
11319 M: Geetha sowjanya <gakula@marvell.com>
11320 M: Subbaraya Sundeep <sbhatta@marvell.com>
11321 M: hariprasad <hkelam@marvell.com>
11322 L: netdev@vger.kernel.org
11323 S: Supported
11324 F: drivers/net/ethernet/marvell/octeontx2/nic/
11325 F: include/linux/soc/marvell/octeontx2/
11326
11327 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11328 M: Sunil Goutham <sgoutham@marvell.com>
11329 M: Linu Cherian <lcherian@marvell.com>
11330 M: Geetha sowjanya <gakula@marvell.com>
11331 M: Jerin Jacob <jerinj@marvell.com>
11332 M: hariprasad <hkelam@marvell.com>
11333 M: Subbaraya Sundeep <sbhatta@marvell.com>
11334 L: netdev@vger.kernel.org
11335 S: Supported
11336 F: Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11337 F: drivers/net/ethernet/marvell/octeontx2/af/
11338
11339 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11340 M: Taras Chornyi <tchornyi@marvell.com>
11341 S: Supported
11342 W: https://github.com/Marvell-switching/switchdev-prestera
11343 F: drivers/net/ethernet/marvell/prestera/
11344
11345 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11346 M: Nicolas Pitre <nico@fluxnic.net>
11347 S: Odd Fixes
11348 F: drivers/mmc/host/mvsdio.*
11349
11350 MARVELL USB MDIO CONTROLLER DRIVER
11351 M: Tobias Waldekranz <tobias@waldekranz.com>
11352 L: netdev@vger.kernel.org
11353 S: Maintained
11354 F: Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11355 F: drivers/net/mdio/mdio-mvusb.c
11356
11357 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11358 M: Hu Ziji <huziji@marvell.com>
11359 L: linux-mmc@vger.kernel.org
11360 S: Supported
11361 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11362 F: drivers/mmc/host/sdhci-xenon*
11363
11364 MATROX FRAMEBUFFER DRIVER
11365 L: linux-fbdev@vger.kernel.org
11366 S: Orphan
11367 F: drivers/video/fbdev/matrox/matroxfb_*
11368 F: include/uapi/linux/matroxfb.h
11369
11370 MAX15301 DRIVER
11371 M: Daniel Nilsson <daniel.nilsson@flex.com>
11372 L: linux-hwmon@vger.kernel.org
11373 S: Maintained
11374 F: Documentation/hwmon/max15301.rst
11375 F: drivers/hwmon/pmbus/max15301.c
11376
11377 MAX16065 HARDWARE MONITOR DRIVER
11378 M: Guenter Roeck <linux@roeck-us.net>
11379 L: linux-hwmon@vger.kernel.org
11380 S: Maintained
11381 F: Documentation/hwmon/max16065.rst
11382 F: drivers/hwmon/max16065.c
11383
11384 MAX2175 SDR TUNER DRIVER
11385 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
11386 L: linux-media@vger.kernel.org
11387 S: Maintained
11388 T: git git://linuxtv.org/media_tree.git
11389 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
11390 F: Documentation/userspace-api/media/drivers/max2175.rst
11391 F: drivers/media/i2c/max2175*
11392 F: include/uapi/linux/max2175.h
11393
11394 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11395 L: linux-hwmon@vger.kernel.org
11396 S: Orphan
11397 F: Documentation/hwmon/max6650.rst
11398 F: drivers/hwmon/max6650.c
11399
11400 MAX6697 HARDWARE MONITOR DRIVER
11401 M: Guenter Roeck <linux@roeck-us.net>
11402 L: linux-hwmon@vger.kernel.org
11403 S: Maintained
11404 F: Documentation/devicetree/bindings/hwmon/max6697.txt
11405 F: Documentation/hwmon/max6697.rst
11406 F: drivers/hwmon/max6697.c
11407 F: include/linux/platform_data/max6697.h
11408
11409 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11410 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
11411 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11412 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11413 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11414 L: linux-media@vger.kernel.org
11415 S: Maintained
11416 F: Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11417 F: drivers/media/i2c/max9286.c
11418
11419 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11420 M: Peter Rosin <peda@axentia.se>
11421 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11422 S: Maintained
11423 F: Documentation/devicetree/bindings/sound/max9860.txt
11424 F: sound/soc/codecs/max9860.*
11425
11426 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11427 M: Andreas Klinger <ak@it-klinger.de>
11428 L: linux-iio@vger.kernel.org
11429 S: Maintained
11430 F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11431 F: drivers/iio/proximity/mb1232.c
11432
11433 MAXIM MAX77650 PMIC MFD DRIVER
11434 M: Bartosz Golaszewski <brgl@bgdev.pl>
11435 L: linux-kernel@vger.kernel.org
11436 S: Maintained
11437 F: Documentation/devicetree/bindings/*/*max77650.yaml
11438 F: Documentation/devicetree/bindings/*/max77650*.yaml
11439 F: drivers/gpio/gpio-max77650.c
11440 F: drivers/input/misc/max77650-onkey.c
11441 F: drivers/leds/leds-max77650.c
11442 F: drivers/mfd/max77650.c
11443 F: drivers/power/supply/max77650-charger.c
11444 F: drivers/regulator/max77650-regulator.c
11445 F: include/linux/mfd/max77650.h
11446
11447 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11448 M: Javier Martinez Canillas <javier@dowhile0.org>
11449 L: linux-kernel@vger.kernel.org
11450 S: Supported
11451 F: Documentation/devicetree/bindings/*/*max77802.txt
11452 F: drivers/regulator/max77802-regulator.c
11453 F: include/dt-bindings/*/*max77802.h
11454
11455 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11456 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11457 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11458 L: linux-pm@vger.kernel.org
11459 S: Supported
11460 F: drivers/power/supply/max14577_charger.c
11461 F: drivers/power/supply/max77693_charger.c
11462
11463 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11464 M: Chanwoo Choi <cw00.choi@samsung.com>
11465 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11466 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11467 L: linux-kernel@vger.kernel.org
11468 S: Supported
11469 F: Documentation/devicetree/bindings/*/max77686.txt
11470 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
11471 F: Documentation/devicetree/bindings/mfd/max14577.txt
11472 F: Documentation/devicetree/bindings/mfd/max77693.txt
11473 F: drivers/*/max14577*.c
11474 F: drivers/*/max77686*.c
11475 F: drivers/*/max77693*.c
11476 F: drivers/clk/clk-max77686.c
11477 F: drivers/extcon/extcon-max14577.c
11478 F: drivers/extcon/extcon-max77693.c
11479 F: drivers/rtc/rtc-max77686.c
11480 F: include/linux/mfd/max14577*.h
11481 F: include/linux/mfd/max77686*.h
11482 F: include/linux/mfd/max77693*.h
11483
11484 MAXIRADIO FM RADIO RECEIVER DRIVER
11485 M: Hans Verkuil <hverkuil@xs4all.nl>
11486 L: linux-media@vger.kernel.org
11487 S: Maintained
11488 W: https://linuxtv.org
11489 T: git git://linuxtv.org/media_tree.git
11490 F: drivers/media/radio/radio-maxiradio*
11491
11492 MAXLINEAR ETHERNET PHY DRIVER
11493 M: Xu Liang <lxu@maxlinear.com>
11494 L: netdev@vger.kernel.org
11495 S: Supported
11496 F: drivers/net/phy/mxl-gpy.c
11497
11498 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11499 R: Yasushi SHOJI <yashi@spacecubics.com>
11500 L: linux-can@vger.kernel.org
11501 S: Maintained
11502 F: drivers/net/can/usb/mcba_usb.c
11503
11504 MCAN MMIO DEVICE DRIVER
11505 M: Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11506 L: linux-can@vger.kernel.org
11507 S: Maintained
11508 F: Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11509 F: drivers/net/can/m_can/m_can.c
11510 F: drivers/net/can/m_can/m_can.h
11511 F: drivers/net/can/m_can/m_can_platform.c
11512
11513 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11514 M: Rishi Gupta <gupt21@gmail.com>
11515 L: linux-i2c@vger.kernel.org
11516 L: linux-input@vger.kernel.org
11517 S: Maintained
11518 F: drivers/hid/hid-mcp2221.c
11519
11520 MCP251XFD SPI-CAN NETWORK DRIVER
11521 M: Marc Kleine-Budde <mkl@pengutronix.de>
11522 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11523 R: Thomas Kopp <thomas.kopp@microchip.com>
11524 L: linux-can@vger.kernel.org
11525 S: Maintained
11526 F: Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11527 F: drivers/net/can/spi/mcp251xfd/
11528
11529 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11530 M: Peter Rosin <peda@axentia.se>
11531 L: linux-iio@vger.kernel.org
11532 S: Maintained
11533 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11534 F: drivers/iio/potentiometer/mcp4018.c
11535 F: drivers/iio/potentiometer/mcp4531.c
11536
11537 MCR20A IEEE-802.15.4 RADIO DRIVER
11538 M: Xue Liu <liuxuenetmail@gmail.com>
11539 L: linux-wpan@vger.kernel.org
11540 S: Maintained
11541 W: https://github.com/xueliu/mcr20a-linux
11542 F: Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11543 F: drivers/net/ieee802154/mcr20a.c
11544 F: drivers/net/ieee802154/mcr20a.h
11545
11546 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11547 M: William Breathitt Gray <vilhelm.gray@gmail.com>
11548 L: linux-iio@vger.kernel.org
11549 S: Maintained
11550 F: drivers/iio/dac/cio-dac.c
11551
11552 MEDIA CONTROLLER FRAMEWORK
11553 M: Sakari Ailus <sakari.ailus@linux.intel.com>
11554 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11555 L: linux-media@vger.kernel.org
11556 S: Supported
11557 W: https://www.linuxtv.org
11558 T: git git://linuxtv.org/media_tree.git
11559 F: drivers/media/mc/
11560 F: include/media/media-*.h
11561 F: include/uapi/linux/media.h
11562
11563 MEDIA DRIVER FOR FREESCALE IMX PXP
11564 M: Philipp Zabel <p.zabel@pengutronix.de>
11565 L: linux-media@vger.kernel.org
11566 S: Maintained
11567 T: git git://linuxtv.org/media_tree.git
11568 F: drivers/media/platform/imx-pxp.[ch]
11569
11570 MEDIA DRIVERS FOR ASCOT2E
11571 M: Sergey Kozlov <serjk@netup.ru>
11572 M: Abylay Ospan <aospan@netup.ru>
11573 L: linux-media@vger.kernel.org
11574 S: Supported
11575 W: https://linuxtv.org
11576 W: http://netup.tv/
11577 T: git git://linuxtv.org/media_tree.git
11578 F: drivers/media/dvb-frontends/ascot2e*
11579
11580 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11581 M: Jasmin Jessich <jasmin@anw.at>
11582 L: linux-media@vger.kernel.org
11583 S: Maintained
11584 W: https://linuxtv.org
11585 T: git git://linuxtv.org/media_tree.git
11586 F: drivers/media/dvb-frontends/cxd2099*
11587
11588 MEDIA DRIVERS FOR CXD2841ER
11589 M: Sergey Kozlov <serjk@netup.ru>
11590 M: Abylay Ospan <aospan@netup.ru>
11591 L: linux-media@vger.kernel.org
11592 S: Supported
11593 W: https://linuxtv.org
11594 W: http://netup.tv/
11595 T: git git://linuxtv.org/media_tree.git
11596 F: drivers/media/dvb-frontends/cxd2841er*
11597
11598 MEDIA DRIVERS FOR CXD2880
11599 M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11600 L: linux-media@vger.kernel.org
11601 S: Supported
11602 W: http://linuxtv.org/
11603 T: git git://linuxtv.org/media_tree.git
11604 F: drivers/media/dvb-frontends/cxd2880/*
11605 F: drivers/media/spi/cxd2880*
11606
11607 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11608 L: linux-media@vger.kernel.org
11609 S: Orphan
11610 W: https://linuxtv.org
11611 T: git git://linuxtv.org/media_tree.git
11612 F: drivers/media/pci/ddbridge/*
11613
11614 MEDIA DRIVERS FOR FREESCALE IMX
11615 M: Steve Longerbeam <slongerbeam@gmail.com>
11616 M: Philipp Zabel <p.zabel@pengutronix.de>
11617 L: linux-media@vger.kernel.org
11618 S: Maintained
11619 T: git git://linuxtv.org/media_tree.git
11620 F: Documentation/admin-guide/media/imx.rst
11621 F: Documentation/devicetree/bindings/media/imx.txt
11622 F: drivers/staging/media/imx/
11623 F: include/linux/imx-media.h
11624 F: include/media/imx.h
11625
11626 MEDIA DRIVERS FOR FREESCALE IMX7
11627 M: Rui Miguel Silva <rmfrfs@gmail.com>
11628 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11629 L: linux-media@vger.kernel.org
11630 S: Maintained
11631 T: git git://linuxtv.org/media_tree.git
11632 F: Documentation/admin-guide/media/imx7.rst
11633 F: Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11634 F: Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11635 F: drivers/staging/media/imx/imx7-media-csi.c
11636 F: drivers/staging/media/imx/imx7-mipi-csis.c
11637
11638 MEDIA DRIVERS FOR HELENE
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/helene*
11646
11647 MEDIA DRIVERS FOR HORUS3A
11648 M: Sergey Kozlov <serjk@netup.ru>
11649 M: Abylay Ospan <aospan@netup.ru>
11650 L: linux-media@vger.kernel.org
11651 S: Supported
11652 W: https://linuxtv.org
11653 W: http://netup.tv/
11654 T: git git://linuxtv.org/media_tree.git
11655 F: drivers/media/dvb-frontends/horus3a*
11656
11657 MEDIA DRIVERS FOR LNBH25
11658 M: Sergey Kozlov <serjk@netup.ru>
11659 M: Abylay Ospan <aospan@netup.ru>
11660 L: linux-media@vger.kernel.org
11661 S: Supported
11662 W: https://linuxtv.org
11663 W: http://netup.tv/
11664 T: git git://linuxtv.org/media_tree.git
11665 F: drivers/media/dvb-frontends/lnbh25*
11666
11667 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11668 L: linux-media@vger.kernel.org
11669 S: Orphan
11670 W: https://linuxtv.org
11671 T: git git://linuxtv.org/media_tree.git
11672 F: drivers/media/dvb-frontends/mxl5xx*
11673
11674 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11675 M: Sergey Kozlov <serjk@netup.ru>
11676 M: Abylay Ospan <aospan@netup.ru>
11677 L: linux-media@vger.kernel.org
11678 S: Supported
11679 W: https://linuxtv.org
11680 W: http://netup.tv/
11681 T: git git://linuxtv.org/media_tree.git
11682 F: drivers/media/pci/netup_unidvb/*
11683
11684 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11685 M: Dmitry Osipenko <digetx@gmail.com>
11686 L: linux-media@vger.kernel.org
11687 L: linux-tegra@vger.kernel.org
11688 S: Maintained
11689 T: git git://linuxtv.org/media_tree.git
11690 F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11691 F: drivers/staging/media/tegra-vde/
11692
11693 MEDIA DRIVERS FOR RENESAS - CEU
11694 M: Jacopo Mondi <jacopo@jmondi.org>
11695 L: linux-media@vger.kernel.org
11696 L: linux-renesas-soc@vger.kernel.org
11697 S: Supported
11698 T: git git://linuxtv.org/media_tree.git
11699 F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
11700 F: drivers/media/platform/renesas-ceu.c
11701 F: include/media/drv-intf/renesas-ceu.h
11702
11703 MEDIA DRIVERS FOR RENESAS - DRIF
11704 M: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11705 L: linux-media@vger.kernel.org
11706 L: linux-renesas-soc@vger.kernel.org
11707 S: Supported
11708 T: git git://linuxtv.org/media_tree.git
11709 F: Documentation/devicetree/bindings/media/renesas,drif.yaml
11710 F: drivers/media/platform/rcar_drif.c
11711
11712 MEDIA DRIVERS FOR RENESAS - FCP
11713 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11714 L: linux-media@vger.kernel.org
11715 L: linux-renesas-soc@vger.kernel.org
11716 S: Supported
11717 T: git git://linuxtv.org/media_tree.git
11718 F: Documentation/devicetree/bindings/media/renesas,fcp.yaml
11719 F: drivers/media/platform/rcar-fcp.c
11720 F: include/media/rcar-fcp.h
11721
11722 MEDIA DRIVERS FOR RENESAS - FDP1
11723 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11724 L: linux-media@vger.kernel.org
11725 L: linux-renesas-soc@vger.kernel.org
11726 S: Supported
11727 T: git git://linuxtv.org/media_tree.git
11728 F: Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11729 F: drivers/media/platform/rcar_fdp1.c
11730
11731 MEDIA DRIVERS FOR RENESAS - VIN
11732 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
11733 L: linux-media@vger.kernel.org
11734 L: linux-renesas-soc@vger.kernel.org
11735 S: Supported
11736 T: git git://linuxtv.org/media_tree.git
11737 F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
11738 F: Documentation/devicetree/bindings/media/renesas,isp.yaml
11739 F: Documentation/devicetree/bindings/media/renesas,vin.yaml
11740 F: drivers/media/platform/rcar-vin/
11741
11742 MEDIA DRIVERS FOR RENESAS - VSP1
11743 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11744 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11745 L: linux-media@vger.kernel.org
11746 L: linux-renesas-soc@vger.kernel.org
11747 S: Supported
11748 T: git git://linuxtv.org/media_tree.git
11749 F: Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11750 F: drivers/media/platform/vsp1/
11751
11752 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11753 L: linux-media@vger.kernel.org
11754 S: Orphan
11755 W: https://linuxtv.org
11756 T: git git://linuxtv.org/media_tree.git
11757 F: drivers/media/dvb-frontends/stv0910*
11758
11759 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11760 L: linux-media@vger.kernel.org
11761 S: Orphan
11762 W: https://linuxtv.org
11763 T: git git://linuxtv.org/media_tree.git
11764 F: drivers/media/dvb-frontends/stv6111*
11765
11766 MEDIA DRIVERS FOR STM32 - DCMI
11767 M: Hugues Fruchet <hugues.fruchet@foss.st.com>
11768 L: linux-media@vger.kernel.org
11769 S: Supported
11770 T: git git://linuxtv.org/media_tree.git
11771 F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11772 F: drivers/media/platform/stm32/stm32-dcmi.c
11773
11774 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11775 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11776 L: linux-media@vger.kernel.org
11777 S: Maintained
11778 W: https://linuxtv.org
11779 Q: http://patchwork.kernel.org/project/linux-media/list/
11780 T: git git://linuxtv.org/media_tree.git
11781 F: Documentation/admin-guide/media/
11782 F: Documentation/devicetree/bindings/media/
11783 F: Documentation/driver-api/media/
11784 F: Documentation/userspace-api/media/
11785 F: drivers/media/
11786 F: drivers/staging/media/
11787 F: include/linux/platform_data/media/
11788 F: include/media/
11789 F: include/uapi/linux/dvb/
11790 F: include/uapi/linux/ivtv*
11791 F: include/uapi/linux/media.h
11792 F: include/uapi/linux/meye.h
11793 F: include/uapi/linux/uvcvideo.h
11794 F: include/uapi/linux/v4l2-*
11795 F: include/uapi/linux/videodev2.h
11796
11797 MEDIATEK BLUETOOTH DRIVER
11798 M: Sean Wang <sean.wang@mediatek.com>
11799 L: linux-bluetooth@vger.kernel.org
11800 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11801 S: Maintained
11802 F: Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11803 F: drivers/bluetooth/btmtkuart.c
11804
11805 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11806 M: Sean Wang <sean.wang@mediatek.com>
11807 L: linux-pm@vger.kernel.org
11808 S: Maintained
11809 F: Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11810 F: drivers/power/reset/mt6323-poweroff.c
11811
11812 MEDIATEK CIR DRIVER
11813 M: Sean Wang <sean.wang@mediatek.com>
11814 S: Maintained
11815 F: drivers/media/rc/mtk-cir.c
11816
11817 MEDIATEK DMA DRIVER
11818 M: Sean Wang <sean.wang@mediatek.com>
11819 L: dmaengine@vger.kernel.org
11820 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11821 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11822 S: Maintained
11823 F: Documentation/devicetree/bindings/dma/mtk-*
11824 F: drivers/dma/mediatek/
11825
11826 MEDIATEK ETHERNET DRIVER
11827 M: Felix Fietkau <nbd@nbd.name>
11828 M: John Crispin <john@phrozen.org>
11829 M: Sean Wang <sean.wang@mediatek.com>
11830 M: Mark Lee <Mark-MC.Lee@mediatek.com>
11831 L: netdev@vger.kernel.org
11832 S: Maintained
11833 F: drivers/net/ethernet/mediatek/
11834
11835 MEDIATEK I2C CONTROLLER DRIVER
11836 M: Qii Wang <qii.wang@mediatek.com>
11837 L: linux-i2c@vger.kernel.org
11838 S: Maintained
11839 F: Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11840 F: drivers/i2c/busses/i2c-mt65xx.c
11841
11842 MEDIATEK IOMMU DRIVER
11843 M: Yong Wu <yong.wu@mediatek.com>
11844 L: iommu@lists.linux-foundation.org
11845 L: iommu@lists.linux.dev
11846 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11847 S: Supported
11848 F: Documentation/devicetree/bindings/iommu/mediatek*
11849 F: drivers/iommu/mtk_iommu*
11850 F: include/dt-bindings/memory/mt*-port.h
11851
11852 MEDIATEK JPEG DRIVER
11853 M: Rick Chang <rick.chang@mediatek.com>
11854 M: Bin Liu <bin.liu@mediatek.com>
11855 S: Supported
11856 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11857 F: drivers/media/platform/mtk-jpeg/
11858
11859 MEDIATEK MDP DRIVER
11860 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11861 M: Houlong Wei <houlong.wei@mediatek.com>
11862 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11863 S: Supported
11864 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
11865 F: drivers/media/platform/mtk-mdp/
11866 F: drivers/media/platform/mtk-vpu/
11867
11868 MEDIATEK MEDIA DRIVER
11869 M: Tiffany Lin <tiffany.lin@mediatek.com>
11870 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11871 S: Supported
11872 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11873 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
11874 F: drivers/media/platform/mtk-vcodec/
11875 F: drivers/media/platform/mtk-vpu/
11876
11877 MEDIATEK MMC/SD/SDIO DRIVER
11878 M: Chaotian Jing <chaotian.jing@mediatek.com>
11879 S: Maintained
11880 F: Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11881 F: drivers/mmc/host/mtk-sd.c
11882
11883 MEDIATEK MT76 WIRELESS LAN DRIVER
11884 M: Felix Fietkau <nbd@nbd.name>
11885 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11886 R: Ryder Lee <ryder.lee@mediatek.com>
11887 L: linux-wireless@vger.kernel.org
11888 S: Maintained
11889 F: drivers/net/wireless/mediatek/mt76/
11890
11891 MEDIATEK MT7601U WIRELESS LAN DRIVER
11892 M: Jakub Kicinski <kubakici@wp.pl>
11893 L: linux-wireless@vger.kernel.org
11894 S: Maintained
11895 F: drivers/net/wireless/mediatek/mt7601u/
11896
11897 MEDIATEK MT7621 CLOCK DRIVER
11898 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11899 S: Maintained
11900 F: Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11901 F: drivers/clk/ralink/clk-mt7621.c
11902
11903 MEDIATEK MT7621/28/88 I2C DRIVER
11904 M: Stefan Roese <sr@denx.de>
11905 L: linux-i2c@vger.kernel.org
11906 S: Maintained
11907 F: Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11908 F: drivers/i2c/busses/i2c-mt7621.c
11909
11910 MEDIATEK MT7621 PHY PCI DRIVER
11911 M: Sergio Paracuellos <sergio.paracuellos@gmail.com>
11912 S: Maintained
11913 F: Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11914 F: drivers/phy/ralink/phy-mt7621-pci.c
11915
11916 MEDIATEK NAND CONTROLLER DRIVER
11917 L: linux-mtd@lists.infradead.org
11918 S: Orphan
11919 F: Documentation/devicetree/bindings/mtd/mtk-nand.txt
11920 F: drivers/mtd/nand/raw/mtk_*
11921
11922 MEDIATEK PMIC LED DRIVER
11923 M: Sean Wang <sean.wang@mediatek.com>
11924 S: Maintained
11925 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
11926 F: drivers/leds/leds-mt6323.c
11927
11928 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11929 M: Sean Wang <sean.wang@mediatek.com>
11930 S: Maintained
11931 F: drivers/char/hw_random/mtk-rng.c
11932
11933 MEDIATEK SWITCH DRIVER
11934 M: Sean Wang <sean.wang@mediatek.com>
11935 M: Landen Chao <Landen.Chao@mediatek.com>
11936 M: DENG Qingfang <dqfext@gmail.com>
11937 L: netdev@vger.kernel.org
11938 S: Maintained
11939 F: drivers/net/dsa/mt7530.*
11940 F: net/dsa/tag_mtk.c
11941
11942 MEDIATEK USB3 DRD IP DRIVER
11943 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
11944 L: linux-usb@vger.kernel.org
11945 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11946 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11947 S: Maintained
11948 F: Documentation/devicetree/bindings/usb/mediatek,*
11949 F: drivers/usb/host/xhci-mtk*
11950 F: drivers/usb/mtu3/
11951
11952 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11953 M: Peter Senna Tschudin <peter.senna@gmail.com>
11954 M: Martin Donnelly <martin.donnelly@ge.com>
11955 M: Martyn Welch <martyn.welch@collabora.co.uk>
11956 S: Maintained
11957 F: Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11958 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11959
11960 MEGARAID SCSI/SAS DRIVERS
11961 M: Kashyap Desai <kashyap.desai@broadcom.com>
11962 M: Sumit Saxena <sumit.saxena@broadcom.com>
11963 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11964 L: megaraidlinux.pdl@broadcom.com
11965 L: linux-scsi@vger.kernel.org
11966 S: Maintained
11967 W: http://www.avagotech.com/support/
11968 F: Documentation/scsi/megaraid.rst
11969 F: drivers/scsi/megaraid.*
11970 F: drivers/scsi/megaraid/
11971
11972 MELEXIS MLX90614 DRIVER
11973 M: Crt Mori <cmo@melexis.com>
11974 L: linux-iio@vger.kernel.org
11975 S: Supported
11976 W: http://www.melexis.com
11977 F: drivers/iio/temperature/mlx90614.c
11978
11979 MELEXIS MLX90632 DRIVER
11980 M: Crt Mori <cmo@melexis.com>
11981 L: linux-iio@vger.kernel.org
11982 S: Supported
11983 W: http://www.melexis.com
11984 F: drivers/iio/temperature/mlx90632.c
11985
11986 MELFAS MIP4 TOUCHSCREEN DRIVER
11987 M: Sangwon Jee <jeesw@melfas.com>
11988 S: Supported
11989 W: http://www.melfas.com
11990 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11991 F: drivers/input/touchscreen/melfas_mip4.c
11992
11993 MELLANOX BLUEFIELD I2C DRIVER
11994 M: Khalil Blaiech <kblaiech@nvidia.com>
11995 L: linux-i2c@vger.kernel.org
11996 S: Supported
11997 F: Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11998 F: drivers/i2c/busses/i2c-mlxbf.c
11999
12000 MELLANOX ETHERNET DRIVER (mlx4_en)
12001 M: Tariq Toukan <tariqt@nvidia.com>
12002 L: netdev@vger.kernel.org
12003 S: Supported
12004 W: http://www.mellanox.com
12005 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12006 F: drivers/net/ethernet/mellanox/mlx4/en_*
12007
12008 MELLANOX ETHERNET DRIVER (mlx5e)
12009 M: Saeed Mahameed <saeedm@nvidia.com>
12010 L: netdev@vger.kernel.org
12011 S: Supported
12012 W: http://www.mellanox.com
12013 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12014 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
12015
12016 MELLANOX ETHERNET INNOVA DRIVERS
12017 R: Boris Pismenny <borisp@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/mlx5/core/accel/*
12023 F: drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12024 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12025 F: include/linux/mlx5/mlx5_ifc_fpga.h
12026
12027 MELLANOX ETHERNET SWITCH DRIVERS
12028 M: Jiri Pirko <jiri@nvidia.com>
12029 M: Ido Schimmel <idosch@nvidia.com>
12030 L: netdev@vger.kernel.org
12031 S: Supported
12032 W: http://www.mellanox.com
12033 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12034 F: drivers/net/ethernet/mellanox/mlxsw/
12035 F: tools/testing/selftests/drivers/net/mlxsw/
12036
12037 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12038 M: mlxsw@nvidia.com
12039 L: netdev@vger.kernel.org
12040 S: Supported
12041 W: http://www.mellanox.com
12042 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12043 F: drivers/net/ethernet/mellanox/mlxfw/
12044
12045 MELLANOX HARDWARE PLATFORM SUPPORT
12046 M: Hans de Goede <hdegoede@redhat.com>
12047 M: Mark Gross <mgross@linux.intel.com>
12048 M: Vadim Pasternak <vadimp@nvidia.com>
12049 L: platform-driver-x86@vger.kernel.org
12050 S: Supported
12051 F: Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12052 F: drivers/platform/mellanox/
12053 F: include/linux/platform_data/mlxreg.h
12054
12055 MELLANOX MLX4 core VPI driver
12056 M: Tariq Toukan <tariqt@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: drivers/net/ethernet/mellanox/mlx4/
12063 F: include/linux/mlx4/
12064
12065 MELLANOX MLX4 IB driver
12066 M: Yishai Hadas <yishaih@nvidia.com>
12067 L: linux-rdma@vger.kernel.org
12068 S: Supported
12069 W: http://www.mellanox.com
12070 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12071 F: drivers/infiniband/hw/mlx4/
12072 F: include/linux/mlx4/
12073 F: include/uapi/rdma/mlx4-abi.h
12074
12075 MELLANOX MLX5 core VPI driver
12076 M: Saeed Mahameed <saeedm@nvidia.com>
12077 M: Leon Romanovsky <leonro@nvidia.com>
12078 L: netdev@vger.kernel.org
12079 L: linux-rdma@vger.kernel.org
12080 S: Supported
12081 W: http://www.mellanox.com
12082 Q: https://patchwork.kernel.org/project/netdevbpf/list/
12083 F: Documentation/networking/device_drivers/ethernet/mellanox/
12084 F: drivers/net/ethernet/mellanox/mlx5/core/
12085 F: include/linux/mlx5/
12086
12087 MELLANOX MLX5 IB driver
12088 M: Leon Romanovsky <leonro@nvidia.com>
12089 L: linux-rdma@vger.kernel.org
12090 S: Supported
12091 W: http://www.mellanox.com
12092 Q: http://patchwork.kernel.org/project/linux-rdma/list/
12093 F: drivers/infiniband/hw/mlx5/
12094 F: include/linux/mlx5/
12095 F: include/uapi/rdma/mlx5-abi.h
12096
12097 MELLANOX MLXCPLD I2C AND MUX DRIVER
12098 M: Vadim Pasternak <vadimp@nvidia.com>
12099 M: Michael Shych <michaelsh@nvidia.com>
12100 L: linux-i2c@vger.kernel.org
12101 S: Supported
12102 F: Documentation/i2c/busses/i2c-mlxcpld.rst
12103 F: drivers/i2c/busses/i2c-mlxcpld.c
12104 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
12105
12106 MELLANOX MLXCPLD LED DRIVER
12107 M: Vadim Pasternak <vadimp@nvidia.com>
12108 L: linux-leds@vger.kernel.org
12109 S: Supported
12110 F: Documentation/leds/leds-mlxcpld.rst
12111 F: drivers/leds/leds-mlxcpld.c
12112 F: drivers/leds/leds-mlxreg.c
12113
12114 MELLANOX PLATFORM DRIVER
12115 M: Vadim Pasternak <vadimp@nvidia.com>
12116 L: platform-driver-x86@vger.kernel.org
12117 S: Supported
12118 F: drivers/platform/x86/mlx-platform.c
12119
12120 MEMBARRIER SUPPORT
12121 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12122 M: "Paul E. McKenney" <paulmck@kernel.org>
12123 L: linux-kernel@vger.kernel.org
12124 S: Supported
12125 F: arch/powerpc/include/asm/membarrier.h
12126 F: include/uapi/linux/membarrier.h
12127 F: kernel/sched/membarrier.c
12128
12129 MEMBLOCK
12130 M: Mike Rapoport <rppt@linux.ibm.com>
12131 L: linux-mm@kvack.org
12132 S: Maintained
12133 F: Documentation/core-api/boot-time-mm.rst
12134 F: include/linux/memblock.h
12135 F: mm/memblock.c
12136
12137 MEMORY CONTROLLER DRIVERS
12138 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12139 L: linux-kernel@vger.kernel.org
12140 S: Maintained
12141 T: git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12142 F: Documentation/devicetree/bindings/memory-controllers/
12143 F: drivers/memory/
12144 F: include/dt-bindings/memory/
12145 F: include/memory/
12146
12147 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12148 M: Dmitry Osipenko <digetx@gmail.com>
12149 L: linux-pm@vger.kernel.org
12150 L: linux-tegra@vger.kernel.org
12151 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12152 S: Maintained
12153 F: drivers/devfreq/tegra30-devfreq.c
12154
12155 MEMORY MANAGEMENT
12156 M: Andrew Morton <akpm@linux-foundation.org>
12157 L: linux-mm@kvack.org
12158 S: Maintained
12159 W: http://www.linux-mm.org
12160 T: quilt https://ozlabs.org/~akpm/mmotm/
12161 T: quilt https://ozlabs.org/~akpm/mmots/
12162 T: git git://github.com/hnaz/linux-mm.git
12163 F: include/linux/gfp.h
12164 F: include/linux/memory_hotplug.h
12165 F: include/linux/mm.h
12166 F: include/linux/mmzone.h
12167 F: include/linux/pagewalk.h
12168 F: include/linux/vmalloc.h
12169 F: mm/
12170 F: tools/testing/selftests/vm/
12171
12172 MEMORY TECHNOLOGY DEVICES (MTD)
12173 M: Miquel Raynal <miquel.raynal@bootlin.com>
12174 M: Richard Weinberger <richard@nod.at>
12175 M: Vignesh Raghavendra <vigneshr@ti.com>
12176 L: linux-mtd@lists.infradead.org
12177 S: Maintained
12178 W: http://www.linux-mtd.infradead.org/
12179 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12180 C: irc://irc.oftc.net/mtd
12181 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12182 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12183 F: Documentation/devicetree/bindings/mtd/
12184 F: drivers/mtd/
12185 F: include/linux/mtd/
12186 F: include/uapi/mtd/
12187
12188 MEN A21 WATCHDOG DRIVER
12189 M: Johannes Thumshirn <morbidrsa@gmail.com>
12190 L: linux-watchdog@vger.kernel.org
12191 S: Maintained
12192 F: drivers/watchdog/mena21_wdt.c
12193
12194 MEN CHAMELEON BUS (mcb)
12195 M: Johannes Thumshirn <morbidrsa@gmail.com>
12196 S: Maintained
12197 F: Documentation/driver-api/men-chameleon-bus.rst
12198 F: drivers/mcb/
12199 F: include/linux/mcb.h
12200
12201 MEN F21BMC (Board Management Controller)
12202 M: Andreas Werner <andreas.werner@men.de>
12203 S: Supported
12204 F: Documentation/hwmon/menf21bmc.rst
12205 F: drivers/hwmon/menf21bmc_hwmon.c
12206 F: drivers/leds/leds-menf21bmc.c
12207 F: drivers/mfd/menf21bmc.c
12208 F: drivers/watchdog/menf21bmc_wdt.c
12209
12210 MEN Z069 WATCHDOG DRIVER
12211 M: Johannes Thumshirn <jth@kernel.org>
12212 L: linux-watchdog@vger.kernel.org
12213 S: Maintained
12214 F: drivers/watchdog/menz69_wdt.c
12215
12216 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12217 M: Neil Armstrong <narmstrong@baylibre.com>
12218 L: linux-media@vger.kernel.org
12219 L: linux-amlogic@lists.infradead.org
12220 S: Supported
12221 W: http://linux-meson.com/
12222 T: git git://linuxtv.org/media_tree.git
12223 F: Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12224 F: drivers/media/cec/platform/meson/ao-cec-g12a.c
12225 F: drivers/media/cec/platform/meson/ao-cec.c
12226
12227 MESON GE2D DRIVER FOR AMLOGIC SOCS
12228 M: Neil Armstrong <narmstrong@baylibre.com>
12229 L: linux-media@vger.kernel.org
12230 L: linux-amlogic@lists.infradead.org
12231 S: Supported
12232 T: git git://linuxtv.org/media_tree.git
12233 F: Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12234 F: drivers/media/platform/meson/ge2d/
12235
12236 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12237 M: Liang Yang <liang.yang@amlogic.com>
12238 L: linux-mtd@lists.infradead.org
12239 S: Maintained
12240 F: Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12241 F: drivers/mtd/nand/raw/meson_*
12242
12243 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12244 M: Neil Armstrong <narmstrong@baylibre.com>
12245 L: linux-media@vger.kernel.org
12246 L: linux-amlogic@lists.infradead.org
12247 S: Supported
12248 T: git git://linuxtv.org/media_tree.git
12249 F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12250 F: drivers/staging/media/meson/vdec/
12251
12252 METHODE UDPU SUPPORT
12253 M: Vladimir Vid <vladimir.vid@sartura.hr>
12254 S: Maintained
12255 F: arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12256
12257 MHI BUS
12258 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12259 M: Hemant Kumar <hemantk@codeaurora.org>
12260 L: linux-arm-msm@vger.kernel.org
12261 S: Maintained
12262 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12263 F: Documentation/ABI/stable/sysfs-bus-mhi
12264 F: Documentation/mhi/
12265 F: drivers/bus/mhi/
12266 F: include/linux/mhi.h
12267
12268 MICROBLAZE ARCHITECTURE
12269 M: Michal Simek <monstr@monstr.eu>
12270 S: Supported
12271 W: http://www.monstr.eu/fdt/
12272 T: git git://git.monstr.eu/linux-2.6-microblaze.git
12273 F: arch/microblaze/
12274
12275 MICROCHIP AT91 DMA DRIVERS
12276 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12277 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12278 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12279 L: dmaengine@vger.kernel.org
12280 S: Supported
12281 F: Documentation/devicetree/bindings/dma/atmel-dma.txt
12282 F: drivers/dma/at_hdmac.c
12283 F: drivers/dma/at_hdmac_regs.h
12284 F: drivers/dma/at_xdmac.c
12285 F: include/dt-bindings/dma/at91.h
12286
12287 MICROCHIP AT91 SERIAL DRIVER
12288 M: Richard Genoud <richard.genoud@gmail.com>
12289 S: Maintained
12290 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12291 F: drivers/tty/serial/atmel_serial.c
12292 F: drivers/tty/serial/atmel_serial.h
12293
12294 MICROCHIP AT91 USART MFD DRIVER
12295 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12296 L: linux-kernel@vger.kernel.org
12297 S: Supported
12298 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12299 F: drivers/mfd/at91-usart.c
12300 F: include/dt-bindings/mfd/at91-usart.h
12301
12302 MICROCHIP AT91 USART SPI DRIVER
12303 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
12304 L: linux-spi@vger.kernel.org
12305 S: Supported
12306 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
12307 F: drivers/spi/spi-at91-usart.c
12308
12309 MICROCHIP AUDIO ASOC DRIVERS
12310 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12311 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12312 S: Supported
12313 F: sound/soc/atmel
12314
12315 MICROCHIP ECC DRIVER
12316 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12317 L: linux-crypto@vger.kernel.org
12318 S: Maintained
12319 F: drivers/crypto/atmel-ecc.*
12320
12321 MICROCHIP I2C DRIVER
12322 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12323 L: linux-i2c@vger.kernel.org
12324 S: Supported
12325 F: drivers/i2c/busses/i2c-at91-*.c
12326 F: drivers/i2c/busses/i2c-at91.h
12327
12328 MICROCHIP ISC DRIVER
12329 M: Eugen Hristev <eugen.hristev@microchip.com>
12330 L: linux-media@vger.kernel.org
12331 S: Supported
12332 F: Documentation/devicetree/bindings/media/atmel,isc.yaml
12333 F: Documentation/devicetree/bindings/media/microchip,xisc.yaml
12334 F: drivers/media/platform/atmel/atmel-isc-base.c
12335 F: drivers/media/platform/atmel/atmel-isc-regs.h
12336 F: drivers/media/platform/atmel/atmel-isc.h
12337 F: drivers/media/platform/atmel/atmel-sama5d2-isc.c
12338 F: drivers/media/platform/atmel/atmel-sama7g5-isc.c
12339 F: include/linux/atmel-isc-media.h
12340
12341 MICROCHIP ISI DRIVER
12342 M: Eugen Hristev <eugen.hristev@microchip.com>
12343 L: linux-media@vger.kernel.org
12344 S: Supported
12345 F: drivers/media/platform/atmel/atmel-isi.c
12346 F: drivers/media/platform/atmel/atmel-isi.h
12347
12348 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12349 M: Woojung Huh <woojung.huh@microchip.com>
12350 M: UNGLinuxDriver@microchip.com
12351 L: netdev@vger.kernel.org
12352 S: Maintained
12353 F: Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12354 F: drivers/net/dsa/microchip/*
12355 F: include/linux/platform_data/microchip-ksz.h
12356 F: net/dsa/tag_ksz.c
12357
12358 MICROCHIP LAN743X ETHERNET DRIVER
12359 M: Bryan Whitehead <bryan.whitehead@microchip.com>
12360 M: UNGLinuxDriver@microchip.com
12361 L: netdev@vger.kernel.org
12362 S: Maintained
12363 F: drivers/net/ethernet/microchip/lan743x_*
12364
12365 MICROCHIP LCDFB DRIVER
12366 M: Nicolas Ferre <nicolas.ferre@microchip.com>
12367 L: linux-fbdev@vger.kernel.org
12368 S: Maintained
12369 F: drivers/video/fbdev/atmel_lcdfb.c
12370 F: include/video/atmel_lcdc.h
12371
12372 MICROCHIP MCP16502 PMIC DRIVER
12373 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12374 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12375 S: Supported
12376 F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12377 F: drivers/regulator/mcp16502.c
12378
12379 MICROCHIP MCP3911 ADC DRIVER
12380 M: Marcus Folkesson <marcus.folkesson@gmail.com>
12381 M: Kent Gustavsson <kent@minoris.se>
12382 L: linux-iio@vger.kernel.org
12383 S: Supported
12384 F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12385 F: drivers/iio/adc/mcp3911.c
12386
12387 MICROCHIP MMC/SD/SDIO MCI DRIVER
12388 M: Ludovic Desroches <ludovic.desroches@microchip.com>
12389 S: Maintained
12390 F: drivers/mmc/host/atmel-mci.c
12391
12392 MICROCHIP NAND DRIVER
12393 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12394 L: linux-mtd@lists.infradead.org
12395 S: Supported
12396 F: Documentation/devicetree/bindings/mtd/atmel-nand.txt
12397 F: drivers/mtd/nand/raw/atmel/*
12398
12399 MICROCHIP PWM DRIVER
12400 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12401 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12402 L: linux-pwm@vger.kernel.org
12403 S: Supported
12404 F: Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12405 F: drivers/pwm/pwm-atmel.c
12406
12407 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12408 M: Eugen Hristev <eugen.hristev@microchip.com>
12409 L: linux-iio@vger.kernel.org
12410 S: Supported
12411 F: Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12412 F: drivers/iio/adc/at91-sama5d2_adc.c
12413 F: include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12414
12415 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12416 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12417 S: Supported
12418 F: drivers/power/reset/at91-sama5d2_shdwc.c
12419
12420 MICROCHIP SPI DRIVER
12421 M: Tudor Ambarus <tudor.ambarus@microchip.com>
12422 S: Supported
12423 F: drivers/spi/spi-atmel.*
12424
12425 MICROCHIP SSC DRIVER
12426 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12427 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12428 S: Supported
12429 F: drivers/misc/atmel-ssc.c
12430 F: include/linux/atmel-ssc.h
12431
12432 MICROCHIP USB251XB DRIVER
12433 M: Richard Leitner <richard.leitner@skidata.com>
12434 L: linux-usb@vger.kernel.org
12435 S: Maintained
12436 F: Documentation/devicetree/bindings/usb/usb251xb.txt
12437 F: drivers/usb/misc/usb251xb.c
12438
12439 MICROCHIP USBA UDC DRIVER
12440 M: Cristian Birsan <cristian.birsan@microchip.com>
12441 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12442 S: Supported
12443 F: drivers/usb/gadget/udc/atmel_usba_udc.*
12444
12445 MICROCHIP WILC1000 WIFI DRIVER
12446 M: Ajay Singh <ajay.kathat@microchip.com>
12447 M: Claudiu Beznea <claudiu.beznea@microchip.com>
12448 L: linux-wireless@vger.kernel.org
12449 S: Supported
12450 F: drivers/net/wireless/microchip/wilc1000/
12451
12452 MICROSEMI MIPS SOCS
12453 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
12454 M: UNGLinuxDriver@microchip.com
12455 L: linux-mips@vger.kernel.org
12456 S: Supported
12457 F: Documentation/devicetree/bindings/mips/mscc.txt
12458 F: Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12459 F: arch/mips/boot/dts/mscc/
12460 F: arch/mips/configs/generic/board-ocelot.config
12461 F: arch/mips/generic/board-ocelot.c
12462
12463 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12464 M: Don Brace <don.brace@microchip.com>
12465 L: storagedev@microchip.com
12466 L: linux-scsi@vger.kernel.org
12467 S: Supported
12468 F: Documentation/scsi/smartpqi.rst
12469 F: drivers/scsi/smartpqi/Kconfig
12470 F: drivers/scsi/smartpqi/Makefile
12471 F: drivers/scsi/smartpqi/smartpqi*.[ch]
12472 F: include/linux/cciss*.h
12473 F: include/uapi/linux/cciss*.h
12474
12475 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12476 M: Maximilian Luz <luzmaximilian@gmail.com>
12477 L: linux-pm@vger.kernel.org
12478 L: platform-driver-x86@vger.kernel.org
12479 S: Maintained
12480 F: drivers/power/supply/surface_battery.c
12481 F: drivers/power/supply/surface_charger.c
12482
12483 MICROSOFT SURFACE DTX DRIVER
12484 M: Maximilian Luz <luzmaximilian@gmail.com>
12485 L: platform-driver-x86@vger.kernel.org
12486 S: Maintained
12487 F: Documentation/driver-api/surface_aggregator/clients/dtx.rst
12488 F: drivers/platform/surface/surface_dtx.c
12489 F: include/uapi/linux/surface_aggregator/dtx.h
12490
12491 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12492 M: Maximilian Luz <luzmaximilian@gmail.com>
12493 L: platform-driver-x86@vger.kernel.org
12494 S: Maintained
12495 F: drivers/platform/surface/surface_gpe.c
12496
12497 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12498 M: Hans de Goede <hdegoede@redhat.com>
12499 M: Mark Gross <mgross@linux.intel.com>
12500 M: Maximilian Luz <luzmaximilian@gmail.com>
12501 L: platform-driver-x86@vger.kernel.org
12502 S: Maintained
12503 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12504 F: drivers/platform/surface/
12505
12506 MICROSOFT SURFACE HID TRANSPORT DRIVER
12507 M: Maximilian Luz <luzmaximilian@gmail.com>
12508 L: linux-input@vger.kernel.org
12509 L: platform-driver-x86@vger.kernel.org
12510 S: Maintained
12511 F: drivers/hid/surface-hid/
12512
12513 MICROSOFT SURFACE HOT-PLUG DRIVER
12514 M: Maximilian Luz <luzmaximilian@gmail.com>
12515 L: platform-driver-x86@vger.kernel.org
12516 S: Maintained
12517 F: drivers/platform/surface/surface_hotplug.c
12518
12519 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12520 M: Maximilian Luz <luzmaximilian@gmail.com>
12521 L: platform-driver-x86@vger.kernel.org
12522 S: Maintained
12523 F: drivers/platform/surface/surface_platform_profile.c
12524
12525 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12526 M: Chen Yu <yu.c.chen@intel.com>
12527 L: platform-driver-x86@vger.kernel.org
12528 S: Supported
12529 F: drivers/platform/surface/surfacepro3_button.c
12530
12531 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12532 M: Maximilian Luz <luzmaximilian@gmail.com>
12533 L: platform-driver-x86@vger.kernel.org
12534 S: Maintained
12535 W: https://github.com/linux-surface/surface-aggregator-module
12536 C: irc://irc.libera.chat/linux-surface
12537 F: Documentation/driver-api/surface_aggregator/
12538 F: drivers/platform/surface/aggregator/
12539 F: drivers/platform/surface/surface_acpi_notify.c
12540 F: drivers/platform/surface/surface_aggregator_cdev.c
12541 F: drivers/platform/surface/surface_aggregator_registry.c
12542 F: include/linux/surface_acpi_notify.h
12543 F: include/linux/surface_aggregator/
12544 F: include/uapi/linux/surface_aggregator/
12545
12546 MICROTEK X6 SCANNER
12547 M: Oliver Neukum <oliver@neukum.org>
12548 S: Maintained
12549 F: drivers/usb/image/microtek.*
12550
12551 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12552 M: Luka Kovacic <luka.kovacic@sartura.hr>
12553 M: Luka Perkov <luka.perkov@sartura.hr>
12554 S: Maintained
12555 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12556 F: arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12557 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12558 F: arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12559 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12560 F: arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12561
12562 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12563 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12564 L: linux-media@vger.kernel.org
12565 S: Maintained
12566 F: Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12567 F: Documentation/driver-api/media/drivers/ccs/
12568 F: Documentation/userspace-api/media/drivers/ccs.rst
12569 F: drivers/media/i2c/ccs-pll.c
12570 F: drivers/media/i2c/ccs-pll.h
12571 F: drivers/media/i2c/ccs/
12572 F: include/uapi/linux/ccs.h
12573 F: include/uapi/linux/smiapp.h
12574
12575 MIPS
12576 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12577 L: linux-mips@vger.kernel.org
12578 S: Maintained
12579 W: http://www.linux-mips.org/
12580 Q: https://patchwork.kernel.org/project/linux-mips/list/
12581 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12582 F: Documentation/devicetree/bindings/mips/
12583 F: Documentation/mips/
12584 F: arch/mips/
12585 F: drivers/platform/mips/
12586
12587 MIPS BOSTON DEVELOPMENT BOARD
12588 M: Paul Burton <paulburton@kernel.org>
12589 L: linux-mips@vger.kernel.org
12590 S: Maintained
12591 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
12592 F: arch/mips/boot/dts/img/boston.dts
12593 F: arch/mips/configs/generic/board-boston.config
12594 F: drivers/clk/imgtec/clk-boston.c
12595 F: include/dt-bindings/clock/boston-clock.h
12596
12597 MIPS CORE DRIVERS
12598 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12599 M: Serge Semin <fancer.lancer@gmail.com>
12600 L: linux-mips@vger.kernel.org
12601 S: Supported
12602 F: drivers/bus/mips_cdmm.c
12603 F: drivers/clocksource/mips-gic-timer.c
12604 F: drivers/cpuidle/cpuidle-cps.c
12605 F: drivers/irqchip/irq-mips-cpu.c
12606 F: drivers/irqchip/irq-mips-gic.c
12607
12608 MIPS GENERIC PLATFORM
12609 M: Paul Burton <paulburton@kernel.org>
12610 L: linux-mips@vger.kernel.org
12611 S: Supported
12612 F: Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12613 F: arch/mips/generic/
12614 F: arch/mips/tools/generic-board-config.sh
12615
12616 MIPS RINT INSTRUCTION EMULATION
12617 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
12618 L: linux-mips@vger.kernel.org
12619 S: Supported
12620 F: arch/mips/math-emu/dp_rint.c
12621 F: arch/mips/math-emu/sp_rint.c
12622
12623 MIPS/LOONGSON1 ARCHITECTURE
12624 M: Keguang Zhang <keguang.zhang@gmail.com>
12625 L: linux-mips@vger.kernel.org
12626 S: Maintained
12627 F: arch/mips/include/asm/mach-loongson32/
12628 F: arch/mips/loongson32/
12629 F: drivers/*/*/*loongson1*
12630 F: drivers/*/*loongson1*
12631
12632 MIPS/LOONGSON2EF ARCHITECTURE
12633 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12634 L: linux-mips@vger.kernel.org
12635 S: Maintained
12636 F: arch/mips/include/asm/mach-loongson2ef/
12637 F: arch/mips/loongson2ef/
12638 F: drivers/cpufreq/loongson2_cpufreq.c
12639
12640 MIPS/LOONGSON64 ARCHITECTURE
12641 M: Huacai Chen <chenhuacai@kernel.org>
12642 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
12643 L: linux-mips@vger.kernel.org
12644 S: Maintained
12645 F: arch/mips/include/asm/mach-loongson64/
12646 F: arch/mips/loongson64/
12647 F: drivers/irqchip/irq-loongson*
12648 F: drivers/platform/mips/cpu_hwmon.c
12649
12650 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12651 M: Hans Verkuil <hverkuil@xs4all.nl>
12652 L: linux-media@vger.kernel.org
12653 S: Odd Fixes
12654 W: https://linuxtv.org
12655 T: git git://linuxtv.org/media_tree.git
12656 F: drivers/media/radio/radio-miropcm20*
12657
12658 MMP SUPPORT
12659 R: Lubomir Rintel <lkundrak@v3.sk>
12660 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12661 S: Odd Fixes
12662 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12663 F: arch/arm/boot/dts/mmp*
12664 F: arch/arm/mach-mmp/
12665 F: include/linux/soc/mmp/
12666
12667 MMP USB PHY DRIVERS
12668 R: Lubomir Rintel <lkundrak@v3.sk>
12669 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12670 S: Maintained
12671 F: drivers/phy/marvell/phy-mmp3-usb.c
12672 F: drivers/phy/marvell/phy-pxa-usb.c
12673
12674 MMU GATHER AND TLB INVALIDATION
12675 M: Will Deacon <will@kernel.org>
12676 M: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12677 M: Andrew Morton <akpm@linux-foundation.org>
12678 M: Nick Piggin <npiggin@gmail.com>
12679 M: Peter Zijlstra <peterz@infradead.org>
12680 L: linux-arch@vger.kernel.org
12681 L: linux-mm@kvack.org
12682 S: Maintained
12683 F: arch/*/include/asm/tlb.h
12684 F: include/asm-generic/tlb.h
12685 F: mm/mmu_gather.c
12686
12687 MN88472 MEDIA DRIVER
12688 M: Antti Palosaari <crope@iki.fi>
12689 L: linux-media@vger.kernel.org
12690 S: Maintained
12691 W: https://linuxtv.org
12692 W: http://palosaari.fi/linux/
12693 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12694 F: drivers/media/dvb-frontends/mn88472*
12695
12696 MN88473 MEDIA DRIVER
12697 M: Antti Palosaari <crope@iki.fi>
12698 L: linux-media@vger.kernel.org
12699 S: Maintained
12700 W: https://linuxtv.org
12701 W: http://palosaari.fi/linux/
12702 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12703 F: drivers/media/dvb-frontends/mn88473*
12704
12705 MODULE SUPPORT
12706 M: Luis Chamberlain <mcgrof@kernel.org>
12707 M: Jessica Yu <jeyu@kernel.org>
12708 S: Maintained
12709 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12710 F: include/linux/module.h
12711 F: kernel/module.c
12712
12713 MONOLITHIC POWER SYSTEM PMIC DRIVER
12714 M: Saravanan Sekar <sravanhome@gmail.com>
12715 S: Maintained
12716 F: Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12717 F: Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12718 F: drivers/iio/adc/mp2629_adc.c
12719 F: drivers/mfd/mp2629.c
12720 F: drivers/power/supply/mp2629_charger.c
12721 F: drivers/regulator/mp5416.c
12722 F: drivers/regulator/mpq7920.c
12723 F: drivers/regulator/mpq7920.h
12724 F: include/linux/mfd/mp2629.h
12725
12726 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12727 S: Orphan
12728 W: http://popies.net/meye/
12729 F: Documentation/userspace-api/media/drivers/meye*
12730 F: drivers/media/pci/meye/
12731 F: include/uapi/linux/meye.h
12732
12733 MOTORCOMM PHY DRIVER
12734 M: Peter Geis <pgwipeout@gmail.com>
12735 L: netdev@vger.kernel.org
12736 S: Maintained
12737 F: drivers/net/phy/motorcomm.c
12738
12739 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12740 M: Jiri Slaby <jirislaby@kernel.org>
12741 S: Maintained
12742 F: Documentation/driver-api/serial/moxa-smartio.rst
12743 F: drivers/tty/mxser.*
12744
12745 MR800 AVERMEDIA USB FM RADIO DRIVER
12746 M: Alexey Klimov <klimov.linux@gmail.com>
12747 L: linux-media@vger.kernel.org
12748 S: Maintained
12749 T: git git://linuxtv.org/media_tree.git
12750 F: drivers/media/radio/radio-mr800.c
12751
12752 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12753 M: Alan Ott <alan@signal11.us>
12754 L: linux-wpan@vger.kernel.org
12755 S: Maintained
12756 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12757 F: drivers/net/ieee802154/mrf24j40.c
12758
12759 MSI LAPTOP SUPPORT
12760 M: "Lee, Chun-Yi" <jlee@suse.com>
12761 L: platform-driver-x86@vger.kernel.org
12762 S: Maintained
12763 F: drivers/platform/x86/msi-laptop.c
12764
12765 MSI WMI SUPPORT
12766 L: platform-driver-x86@vger.kernel.org
12767 S: Orphan
12768 F: drivers/platform/x86/msi-wmi.c
12769
12770 MSI001 MEDIA DRIVER
12771 M: Antti Palosaari <crope@iki.fi>
12772 L: linux-media@vger.kernel.org
12773 S: Maintained
12774 W: https://linuxtv.org
12775 W: http://palosaari.fi/linux/
12776 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12777 T: git git://linuxtv.org/anttip/media_tree.git
12778 F: drivers/media/tuners/msi001*
12779
12780 MSI2500 MEDIA DRIVER
12781 M: Antti Palosaari <crope@iki.fi>
12782 L: linux-media@vger.kernel.org
12783 S: Maintained
12784 W: https://linuxtv.org
12785 W: http://palosaari.fi/linux/
12786 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12787 T: git git://linuxtv.org/anttip/media_tree.git
12788 F: drivers/media/usb/msi2500/
12789
12790 MSTAR INTERRUPT CONTROLLER DRIVER
12791 M: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12792 M: Daniel Palmer <daniel@thingy.jp>
12793 S: Maintained
12794 F: Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12795 F: drivers/irqchip/irq-mst-intc.c
12796
12797 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12798 M: Robert Jarzmik <robert.jarzmik@free.fr>
12799 L: linux-mtd@lists.infradead.org
12800 S: Maintained
12801 F: drivers/mtd/devices/docg3*
12802
12803 MT9M032 APTINA SENSOR DRIVER
12804 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12805 L: linux-media@vger.kernel.org
12806 S: Maintained
12807 T: git git://linuxtv.org/media_tree.git
12808 F: drivers/media/i2c/mt9m032.c
12809 F: include/media/i2c/mt9m032.h
12810
12811 MT9P031 APTINA CAMERA SENSOR
12812 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12813 L: linux-media@vger.kernel.org
12814 S: Maintained
12815 T: git git://linuxtv.org/media_tree.git
12816 F: drivers/media/i2c/mt9p031.c
12817 F: include/media/i2c/mt9p031.h
12818
12819 MT9T001 APTINA CAMERA SENSOR
12820 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12821 L: linux-media@vger.kernel.org
12822 S: Maintained
12823 T: git git://linuxtv.org/media_tree.git
12824 F: drivers/media/i2c/mt9t001.c
12825 F: include/media/i2c/mt9t001.h
12826
12827 MT9T112 APTINA CAMERA SENSOR
12828 M: Jacopo Mondi <jacopo@jmondi.org>
12829 L: linux-media@vger.kernel.org
12830 S: Odd Fixes
12831 T: git git://linuxtv.org/media_tree.git
12832 F: drivers/media/i2c/mt9t112.c
12833 F: include/media/i2c/mt9t112.h
12834
12835 MT9V032 APTINA CAMERA SENSOR
12836 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12837 L: linux-media@vger.kernel.org
12838 S: Maintained
12839 T: git git://linuxtv.org/media_tree.git
12840 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12841 F: drivers/media/i2c/mt9v032.c
12842 F: include/media/i2c/mt9v032.h
12843
12844 MT9V111 APTINA CAMERA SENSOR
12845 M: Jacopo Mondi <jacopo@jmondi.org>
12846 L: linux-media@vger.kernel.org
12847 S: Maintained
12848 T: git git://linuxtv.org/media_tree.git
12849 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12850 F: drivers/media/i2c/mt9v111.c
12851
12852 MULTIFUNCTION DEVICES (MFD)
12853 M: Lee Jones <lee.jones@linaro.org>
12854 S: Supported
12855 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12856 F: Documentation/devicetree/bindings/mfd/
12857 F: drivers/mfd/
12858 F: include/dt-bindings/mfd/
12859 F: include/linux/mfd/
12860
12861 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12862 S: Orphan
12863 F: drivers/mmc/host/mmc_spi.c
12864 F: include/linux/spi/mmc_spi.h
12865
12866 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12867 M: Ulf Hansson <ulf.hansson@linaro.org>
12868 L: linux-mmc@vger.kernel.org
12869 S: Maintained
12870 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12871 F: Documentation/devicetree/bindings/mmc/
12872 F: drivers/mmc/
12873 F: include/linux/mmc/
12874 F: include/uapi/linux/mmc/
12875
12876 MULTIPLEXER SUBSYSTEM
12877 M: Peter Rosin <peda@axentia.se>
12878 S: Maintained
12879 F: Documentation/ABI/testing/sysfs-class-mux*
12880 F: Documentation/devicetree/bindings/mux/
12881 F: drivers/mux/
12882 F: include/dt-bindings/mux/
12883 F: include/linux/mux/
12884
12885 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12886 M: Bin Liu <b-liu@ti.com>
12887 L: linux-usb@vger.kernel.org
12888 S: Maintained
12889 F: drivers/usb/musb/
12890
12891 MXL301RF MEDIA DRIVER
12892 M: Akihiro Tsukada <tskd08@gmail.com>
12893 L: linux-media@vger.kernel.org
12894 S: Odd Fixes
12895 F: drivers/media/tuners/mxl301rf*
12896
12897 MXL5007T MEDIA DRIVER
12898 M: Michael Krufky <mkrufky@linuxtv.org>
12899 L: linux-media@vger.kernel.org
12900 S: Maintained
12901 W: https://linuxtv.org
12902 W: http://github.com/mkrufky
12903 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12904 T: git git://linuxtv.org/mkrufky/tuners.git
12905 F: drivers/media/tuners/mxl5007t.*
12906
12907 MXSFB DRM DRIVER
12908 M: Marek Vasut <marex@denx.de>
12909 M: Stefan Agner <stefan@agner.ch>
12910 L: dri-devel@lists.freedesktop.org
12911 S: Supported
12912 T: git git://anongit.freedesktop.org/drm/drm-misc
12913 F: Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12914 F: drivers/gpu/drm/mxsfb/
12915
12916 MYLEX DAC960 PCI RAID Controller
12917 M: Hannes Reinecke <hare@kernel.org>
12918 L: linux-scsi@vger.kernel.org
12919 S: Supported
12920 F: drivers/scsi/myrb.*
12921 F: drivers/scsi/myrs.*
12922
12923 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12924 M: Chris Lee <christopher.lee@cspi.com>
12925 L: netdev@vger.kernel.org
12926 S: Supported
12927 W: https://www.cspi.com/ethernet-products/support/downloads/
12928 F: drivers/net/ethernet/myricom/myri10ge/
12929
12930 NAND FLASH SUBSYSTEM
12931 M: Miquel Raynal <miquel.raynal@bootlin.com>
12932 R: Richard Weinberger <richard@nod.at>
12933 L: linux-mtd@lists.infradead.org
12934 S: Maintained
12935 W: http://www.linux-mtd.infradead.org/
12936 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12937 C: irc://irc.oftc.net/mtd
12938 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12939 F: drivers/mtd/nand/
12940 F: include/linux/mtd/*nand*.h
12941
12942 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12943 M: Daniel Mack <zonque@gmail.com>
12944 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12945 S: Maintained
12946 W: http://www.native-instruments.com
12947 F: sound/usb/caiaq/
12948
12949 NATSEMI ETHERNET DRIVER (DP8381x)
12950 S: Orphan
12951 F: drivers/net/ethernet/natsemi/natsemi.c
12952
12953 NCR 5380 SCSI DRIVERS
12954 M: Finn Thain <fthain@linux-m68k.org>
12955 M: Michael Schmitz <schmitzmic@gmail.com>
12956 L: linux-scsi@vger.kernel.org
12957 S: Maintained
12958 F: Documentation/scsi/g_NCR5380.rst
12959 F: drivers/scsi/NCR5380.*
12960 F: drivers/scsi/arm/cumana_1.c
12961 F: drivers/scsi/arm/oak.c
12962 F: drivers/scsi/atari_scsi.*
12963 F: drivers/scsi/dmx3191d.c
12964 F: drivers/scsi/g_NCR5380.*
12965 F: drivers/scsi/mac_scsi.*
12966 F: drivers/scsi/sun3_scsi.*
12967 F: drivers/scsi/sun3_scsi_vme.c
12968
12969 NCSI LIBRARY
12970 M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
12971 S: Maintained
12972 F: net/ncsi/
12973
12974 NCT6775 HARDWARE MONITOR DRIVER
12975 M: Guenter Roeck <linux@roeck-us.net>
12976 L: linux-hwmon@vger.kernel.org
12977 S: Maintained
12978 F: Documentation/hwmon/nct6775.rst
12979 F: drivers/hwmon/nct6775.c
12980
12981 NETDEVSIM
12982 M: Jakub Kicinski <kuba@kernel.org>
12983 S: Maintained
12984 F: drivers/net/netdevsim/*
12985
12986 NETEM NETWORK EMULATOR
12987 M: Stephen Hemminger <stephen@networkplumber.org>
12988 L: netdev@vger.kernel.org
12989 S: Maintained
12990 F: net/sched/sch_netem.c
12991
12992 NETERION 10GbE DRIVERS (s2io/vxge)
12993 M: Jon Mason <jdmason@kudzu.us>
12994 L: netdev@vger.kernel.org
12995 S: Supported
12996 F: Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12997 F: Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12998 F: drivers/net/ethernet/neterion/
12999
13000 NETFILTER
13001 M: Pablo Neira Ayuso <pablo@netfilter.org>
13002 M: Jozsef Kadlecsik <kadlec@netfilter.org>
13003 M: Florian Westphal <fw@strlen.de>
13004 L: netfilter-devel@vger.kernel.org
13005 L: coreteam@netfilter.org
13006 S: Maintained
13007 W: http://www.netfilter.org/
13008 W: http://www.iptables.org/
13009 W: http://www.nftables.org/
13010 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
13011 C: irc://irc.libera.chat/netfilter
13012 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13013 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13014 F: include/linux/netfilter*
13015 F: include/linux/netfilter/
13016 F: include/net/netfilter/
13017 F: include/uapi/linux/netfilter*
13018 F: include/uapi/linux/netfilter/
13019 F: net/*/netfilter.c
13020 F: net/*/netfilter/
13021 F: net/bridge/br_netfilter*.c
13022 F: net/netfilter/
13023
13024 NETROM NETWORK LAYER
13025 M: Ralf Baechle <ralf@linux-mips.org>
13026 L: linux-hams@vger.kernel.org
13027 S: Maintained
13028 W: http://www.linux-ax25.org/
13029 F: include/net/netrom.h
13030 F: include/uapi/linux/netrom.h
13031 F: net/netrom/
13032
13033 NETRONIX EMBEDDED CONTROLLER
13034 M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13035 S: Maintained
13036 F: Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13037 F: drivers/mfd/ntxec.c
13038 F: drivers/pwm/pwm-ntxec.c
13039 F: drivers/rtc/rtc-ntxec.c
13040 F: include/linux/mfd/ntxec.h
13041
13042 NETRONOME ETHERNET DRIVERS
13043 M: Simon Horman <simon.horman@corigine.com>
13044 R: Jakub Kicinski <kuba@kernel.org>
13045 L: oss-drivers@corigine.com
13046 S: Maintained
13047 F: drivers/net/ethernet/netronome/
13048
13049 NETWORK BLOCK DEVICE (NBD)
13050 M: Josef Bacik <josef@toxicpanda.com>
13051 L: linux-block@vger.kernel.org
13052 L: nbd@other.debian.org
13053 S: Maintained
13054 F: Documentation/admin-guide/blockdev/nbd.rst
13055 F: drivers/block/nbd.c
13056 F: include/trace/events/nbd.h
13057 F: include/uapi/linux/nbd.h
13058
13059 NETWORK DROP MONITOR
13060 M: Neil Horman <nhorman@tuxdriver.com>
13061 L: netdev@vger.kernel.org
13062 S: Maintained
13063 W: https://fedorahosted.org/dropwatch/
13064 F: include/uapi/linux/net_dropmon.h
13065 F: net/core/drop_monitor.c
13066
13067 NETWORKING DRIVERS
13068 M: "David S. Miller" <davem@davemloft.net>
13069 M: Jakub Kicinski <kuba@kernel.org>
13070 L: netdev@vger.kernel.org
13071 S: Maintained
13072 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13073 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13074 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13075 F: Documentation/devicetree/bindings/net/
13076 F: drivers/connector/
13077 F: drivers/net/
13078 F: include/linux/etherdevice.h
13079 F: include/linux/fcdevice.h
13080 F: include/linux/fddidevice.h
13081 F: include/linux/hippidevice.h
13082 F: include/linux/if_*
13083 F: include/linux/inetdevice.h
13084 F: include/linux/netdevice.h
13085 F: include/uapi/linux/if_*
13086 F: include/uapi/linux/netdevice.h
13087
13088 NETWORKING DRIVERS (WIRELESS)
13089 M: Kalle Valo <kvalo@codeaurora.org>
13090 L: linux-wireless@vger.kernel.org
13091 S: Maintained
13092 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13093 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13094 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13095 F: Documentation/devicetree/bindings/net/wireless/
13096 F: drivers/net/wireless/
13097
13098 NETWORKING [DSA]
13099 M: Andrew Lunn <andrew@lunn.ch>
13100 M: Vivien Didelot <vivien.didelot@gmail.com>
13101 M: Florian Fainelli <f.fainelli@gmail.com>
13102 M: Vladimir Oltean <olteanv@gmail.com>
13103 S: Maintained
13104 F: Documentation/devicetree/bindings/net/dsa/
13105 F: drivers/net/dsa/
13106 F: include/linux/dsa/
13107 F: include/linux/platform_data/dsa.h
13108 F: include/net/dsa.h
13109 F: net/dsa/
13110
13111 NETWORKING [GENERAL]
13112 M: "David S. Miller" <davem@davemloft.net>
13113 M: Jakub Kicinski <kuba@kernel.org>
13114 L: netdev@vger.kernel.org
13115 S: Maintained
13116 Q: https://patchwork.kernel.org/project/netdevbpf/list/
13117 B: mailto:netdev@vger.kernel.org
13118 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13119 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13120 F: Documentation/networking/
13121 F: include/linux/in.h
13122 F: include/linux/net.h
13123 F: include/linux/netdevice.h
13124 F: include/net/
13125 F: include/uapi/linux/in.h
13126 F: include/uapi/linux/net.h
13127 F: include/uapi/linux/net_namespace.h
13128 F: include/uapi/linux/netdevice.h
13129 F: lib/net_utils.c
13130 F: lib/random32.c
13131 F: net/
13132 F: tools/testing/selftests/net/
13133
13134 NETWORKING [IPSEC]
13135 M: Steffen Klassert <steffen.klassert@secunet.com>
13136 M: Herbert Xu <herbert@gondor.apana.org.au>
13137 M: "David S. Miller" <davem@davemloft.net>
13138 L: netdev@vger.kernel.org
13139 S: Maintained
13140 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13141 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13142 F: include/net/xfrm.h
13143 F: include/uapi/linux/xfrm.h
13144 F: net/ipv4/ah4.c
13145 F: net/ipv4/esp4*
13146 F: net/ipv4/ip_vti.c
13147 F: net/ipv4/ipcomp.c
13148 F: net/ipv4/xfrm*
13149 F: net/ipv6/ah6.c
13150 F: net/ipv6/esp6*
13151 F: net/ipv6/ip6_vti.c
13152 F: net/ipv6/ipcomp6.c
13153 F: net/ipv6/xfrm*
13154 F: net/key/
13155 F: net/xfrm/
13156 F: tools/testing/selftests/net/ipsec.c
13157
13158 NETWORKING [IPv4/IPv6]
13159 M: "David S. Miller" <davem@davemloft.net>
13160 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13161 M: David Ahern <dsahern@kernel.org>
13162 L: netdev@vger.kernel.org
13163 S: Maintained
13164 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13165 F: arch/x86/net/*
13166 F: include/net/ip*
13167 F: net/ipv4/
13168 F: net/ipv6/
13169
13170 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13171 M: Paul Moore <paul@paul-moore.com>
13172 L: netdev@vger.kernel.org
13173 L: linux-security-module@vger.kernel.org
13174 S: Maintained
13175 W: https://github.com/netlabel
13176 F: Documentation/netlabel/
13177 F: include/net/calipso.h
13178 F: include/net/cipso_ipv4.h
13179 F: include/net/netlabel.h
13180 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
13181 F: include/uapi/linux/netfilter/xt_SECMARK.h
13182 F: net/ipv4/cipso_ipv4.c
13183 F: net/ipv6/calipso.c
13184 F: net/netfilter/xt_CONNSECMARK.c
13185 F: net/netfilter/xt_SECMARK.c
13186 F: net/netlabel/
13187
13188 NETWORKING [MPTCP]
13189 M: Mat Martineau <mathew.j.martineau@linux.intel.com>
13190 M: Matthieu Baerts <matthieu.baerts@tessares.net>
13191 L: netdev@vger.kernel.org
13192 L: mptcp@lists.linux.dev
13193 S: Maintained
13194 W: https://github.com/multipath-tcp/mptcp_net-next/wiki
13195 B: https://github.com/multipath-tcp/mptcp_net-next/issues
13196 F: Documentation/networking/mptcp-sysctl.rst
13197 F: include/net/mptcp.h
13198 F: include/trace/events/mptcp.h
13199 F: include/uapi/linux/mptcp.h
13200 F: net/mptcp/
13201 F: tools/testing/selftests/net/mptcp/
13202
13203 NETWORKING [TCP]
13204 M: Eric Dumazet <edumazet@google.com>
13205 L: netdev@vger.kernel.org
13206 S: Maintained
13207 F: include/linux/tcp.h
13208 F: include/net/tcp.h
13209 F: include/trace/events/tcp.h
13210 F: include/uapi/linux/tcp.h
13211 F: net/ipv4/syncookies.c
13212 F: net/ipv4/tcp*.c
13213 F: net/ipv6/syncookies.c
13214 F: net/ipv6/tcp*.c
13215
13216 NETWORKING [TLS]
13217 M: Boris Pismenny <borisp@nvidia.com>
13218 M: John Fastabend <john.fastabend@gmail.com>
13219 M: Daniel Borkmann <daniel@iogearbox.net>
13220 M: Jakub Kicinski <kuba@kernel.org>
13221 L: netdev@vger.kernel.org
13222 S: Maintained
13223 F: include/net/tls.h
13224 F: include/uapi/linux/tls.h
13225 F: net/tls/*
13226
13227 NETWORKING [WIRELESS]
13228 L: linux-wireless@vger.kernel.org
13229 Q: http://patchwork.kernel.org/project/linux-wireless/list/
13230
13231 NETXEN (1/10) GbE SUPPORT
13232 M: Manish Chopra <manishc@marvell.com>
13233 M: Rahul Verma <rahulv@marvell.com>
13234 M: GR-Linux-NIC-Dev@marvell.com
13235 L: netdev@vger.kernel.org
13236 S: Supported
13237 F: drivers/net/ethernet/qlogic/netxen/
13238
13239 NET_FAILOVER MODULE
13240 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
13241 L: netdev@vger.kernel.org
13242 S: Supported
13243 F: Documentation/networking/net_failover.rst
13244 F: drivers/net/net_failover.c
13245 F: include/net/net_failover.h
13246
13247 NEXTHOP
13248 M: David Ahern <dsahern@kernel.org>
13249 L: netdev@vger.kernel.org
13250 S: Maintained
13251 F: include/net/netns/nexthop.h
13252 F: include/net/nexthop.h
13253 F: include/uapi/linux/nexthop.h
13254 F: net/ipv4/nexthop.c
13255
13256 NFC SUBSYSTEM
13257 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13258 L: linux-nfc@lists.01.org (subscribers-only)
13259 L: netdev@vger.kernel.org
13260 S: Maintained
13261 F: Documentation/devicetree/bindings/net/nfc/
13262 F: drivers/nfc/
13263 F: include/linux/platform_data/nfcmrvl.h
13264 F: include/net/nfc/
13265 F: include/uapi/linux/nfc.h
13266 F: net/nfc/
13267
13268 NFC VIRTUAL NCI DEVICE DRIVER
13269 M: Bongsu Jeon <bongsu.jeon@samsung.com>
13270 L: netdev@vger.kernel.org
13271 L: linux-nfc@lists.01.org (subscribers-only)
13272 S: Supported
13273 F: drivers/nfc/virtual_ncidev.c
13274 F: tools/testing/selftests/nci/
13275
13276 NFS, SUNRPC, AND LOCKD CLIENTS
13277 M: Trond Myklebust <trond.myklebust@hammerspace.com>
13278 M: Anna Schumaker <anna.schumaker@netapp.com>
13279 L: linux-nfs@vger.kernel.org
13280 S: Maintained
13281 W: http://client.linux-nfs.org
13282 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13283 F: fs/lockd/
13284 F: fs/nfs/
13285 F: fs/nfs_common/
13286 F: include/linux/lockd/
13287 F: include/linux/nfs*
13288 F: include/linux/sunrpc/
13289 F: include/uapi/linux/nfs*
13290 F: include/uapi/linux/sunrpc/
13291 F: net/sunrpc/
13292 F: Documentation/filesystems/nfs/
13293
13294 NILFS2 FILESYSTEM
13295 M: Ryusuke Konishi <konishi.ryusuke@gmail.com>
13296 L: linux-nilfs@vger.kernel.org
13297 S: Supported
13298 W: https://nilfs.sourceforge.io/
13299 W: https://nilfs.osdn.jp/
13300 T: git git://github.com/konis/nilfs2.git
13301 F: Documentation/filesystems/nilfs2.rst
13302 F: fs/nilfs2/
13303 F: include/trace/events/nilfs2.h
13304 F: include/uapi/linux/nilfs2_api.h
13305 F: include/uapi/linux/nilfs2_ondisk.h
13306
13307 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13308 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13309 S: Maintained
13310 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13311 F: Documentation/scsi/NinjaSCSI.rst
13312 F: drivers/scsi/pcmcia/nsp_*
13313
13314 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13315 M: GOTO Masanori <gotom@debian.or.jp>
13316 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13317 S: Maintained
13318 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13319 F: Documentation/scsi/NinjaSCSI.rst
13320 F: drivers/scsi/nsp32*
13321
13322 NIOS2 ARCHITECTURE
13323 M: Dinh Nguyen <dinguyen@kernel.org>
13324 S: Maintained
13325 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13326 F: arch/nios2/
13327
13328 NITRO ENCLAVES (NE)
13329 M: Andra Paraschiv <andraprs@amazon.com>
13330 M: Alexandru Vasile <lexnv@amazon.com>
13331 M: Alexandru Ciobotaru <alcioa@amazon.com>
13332 L: linux-kernel@vger.kernel.org
13333 S: Supported
13334 W: https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13335 F: Documentation/virt/ne_overview.rst
13336 F: drivers/virt/nitro_enclaves/
13337 F: include/linux/nitro_enclaves.h
13338 F: include/uapi/linux/nitro_enclaves.h
13339 F: samples/nitro_enclaves/
13340
13341 NOHZ, DYNTICKS SUPPORT
13342 M: Frederic Weisbecker <fweisbec@gmail.com>
13343 M: Thomas Gleixner <tglx@linutronix.de>
13344 M: Ingo Molnar <mingo@kernel.org>
13345 L: linux-kernel@vger.kernel.org
13346 S: Maintained
13347 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13348 F: include/linux/sched/nohz.h
13349 F: include/linux/tick.h
13350 F: kernel/time/tick*.*
13351
13352 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13353 M: Pavel Machek <pavel@ucw.cz>
13354 M: Sakari Ailus <sakari.ailus@iki.fi>
13355 L: linux-media@vger.kernel.org
13356 S: Maintained
13357 F: drivers/media/i2c/ad5820.c
13358 F: drivers/media/i2c/et8ek8
13359
13360 NOKIA N900 POWER SUPPLY DRIVERS
13361 R: Pali Rohár <pali@kernel.org>
13362 F: drivers/power/supply/bq2415x_charger.c
13363 F: drivers/power/supply/bq27xxx_battery.c
13364 F: drivers/power/supply/bq27xxx_battery_i2c.c
13365 F: drivers/power/supply/isp1704_charger.c
13366 F: drivers/power/supply/rx51_battery.c
13367 F: include/linux/power/bq2415x_charger.h
13368 F: include/linux/power/bq27xxx_battery.h
13369
13370 NOLIBC HEADER FILE
13371 M: Willy Tarreau <w@1wt.eu>
13372 S: Maintained
13373 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13374 F: tools/include/nolibc/
13375
13376 NSDEPS
13377 M: Matthias Maennich <maennich@google.com>
13378 S: Maintained
13379 F: Documentation/core-api/symbol-namespaces.rst
13380 F: scripts/nsdeps
13381
13382 NTB AMD DRIVER
13383 M: Sanjay R Mehta <sanju.mehta@amd.com>
13384 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13385 L: linux-ntb@googlegroups.com
13386 S: Supported
13387 F: drivers/ntb/hw/amd/
13388
13389 NTB DRIVER CORE
13390 M: Jon Mason <jdmason@kudzu.us>
13391 M: Dave Jiang <dave.jiang@intel.com>
13392 M: Allen Hubbe <allenbh@gmail.com>
13393 L: linux-ntb@googlegroups.com
13394 S: Supported
13395 W: https://github.com/jonmason/ntb/wiki
13396 T: git git://github.com/jonmason/ntb.git
13397 F: drivers/net/ntb_netdev.c
13398 F: drivers/ntb/
13399 F: include/linux/ntb.h
13400 F: include/linux/ntb_transport.h
13401 F: tools/testing/selftests/ntb/
13402
13403 NTB IDT DRIVER
13404 M: Serge Semin <fancer.lancer@gmail.com>
13405 L: linux-ntb@googlegroups.com
13406 S: Supported
13407 F: drivers/ntb/hw/idt/
13408
13409 NTB INTEL DRIVER
13410 M: Dave Jiang <dave.jiang@intel.com>
13411 L: linux-ntb@googlegroups.com
13412 S: Supported
13413 W: https://github.com/davejiang/linux/wiki
13414 T: git https://github.com/davejiang/linux.git
13415 F: drivers/ntb/hw/intel/
13416
13417 NTFS FILESYSTEM
13418 M: Anton Altaparmakov <anton@tuxera.com>
13419 L: linux-ntfs-dev@lists.sourceforge.net
13420 S: Supported
13421 W: http://www.tuxera.com/
13422 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13423 F: Documentation/filesystems/ntfs.rst
13424 F: fs/ntfs/
13425
13426 NTFS3 FILESYSTEM
13427 M: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13428 L: ntfs3@lists.linux.dev
13429 S: Supported
13430 W: http://www.paragon-software.com/
13431 T: git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13432 F: Documentation/filesystems/ntfs3.rst
13433 F: fs/ntfs3/
13434
13435 NUBUS SUBSYSTEM
13436 M: Finn Thain <fthain@linux-m68k.org>
13437 L: linux-m68k@lists.linux-m68k.org
13438 S: Maintained
13439 F: arch/*/include/asm/nubus.h
13440 F: drivers/nubus/
13441 F: include/linux/nubus.h
13442 F: include/uapi/linux/nubus.h
13443
13444 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13445 M: Antonino Daplas <adaplas@gmail.com>
13446 L: linux-fbdev@vger.kernel.org
13447 S: Maintained
13448 F: drivers/video/fbdev/nvidia/
13449 F: drivers/video/fbdev/riva/
13450
13451 NVIDIA WMI EC BACKLIGHT DRIVER
13452 M: Daniel Dadap <ddadap@nvidia.com>
13453 L: platform-driver-x86@vger.kernel.org
13454 S: Supported
13455 F: drivers/platform/x86/nvidia-wmi-ec-backlight.c
13456
13457 NVM EXPRESS DRIVER
13458 M: Keith Busch <kbusch@kernel.org>
13459 M: Jens Axboe <axboe@fb.com>
13460 M: Christoph Hellwig <hch@lst.de>
13461 M: Sagi Grimberg <sagi@grimberg.me>
13462 L: linux-nvme@lists.infradead.org
13463 S: Supported
13464 W: http://git.infradead.org/nvme.git
13465 T: git://git.infradead.org/nvme.git
13466 F: drivers/nvme/host/
13467 F: include/linux/nvme.h
13468 F: include/uapi/linux/nvme_ioctl.h
13469
13470 NVM EXPRESS FC TRANSPORT DRIVERS
13471 M: James Smart <james.smart@broadcom.com>
13472 L: linux-nvme@lists.infradead.org
13473 S: Supported
13474 F: drivers/nvme/host/fc.c
13475 F: drivers/nvme/target/fc.c
13476 F: drivers/nvme/target/fcloop.c
13477 F: include/linux/nvme-fc-driver.h
13478 F: include/linux/nvme-fc.h
13479
13480 NVM EXPRESS TARGET DRIVER
13481 M: Christoph Hellwig <hch@lst.de>
13482 M: Sagi Grimberg <sagi@grimberg.me>
13483 M: Chaitanya Kulkarni <kch@nvidia.com>
13484 L: linux-nvme@lists.infradead.org
13485 S: Supported
13486 W: http://git.infradead.org/nvme.git
13487 T: git://git.infradead.org/nvme.git
13488 F: drivers/nvme/target/
13489
13490 NVMEM FRAMEWORK
13491 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13492 S: Maintained
13493 T: git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13494 F: Documentation/ABI/stable/sysfs-bus-nvmem
13495 F: Documentation/devicetree/bindings/nvmem/
13496 F: drivers/nvmem/
13497 F: include/linux/nvmem-consumer.h
13498 F: include/linux/nvmem-provider.h
13499
13500 NXP C45 TJA11XX PHY DRIVER
13501 M: Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13502 L: netdev@vger.kernel.org
13503 S: Maintained
13504 F: drivers/net/phy/nxp-c45-tja11xx.c
13505
13506 NXP FSPI DRIVER
13507 M: Ashish Kumar <ashish.kumar@nxp.com>
13508 R: Yogesh Gaur <yogeshgaur.83@gmail.com>
13509 L: linux-spi@vger.kernel.org
13510 S: Maintained
13511 F: Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13512 F: drivers/spi/spi-nxp-fspi.c
13513
13514 NXP FXAS21002C DRIVER
13515 M: Rui Miguel Silva <rmfrfs@gmail.com>
13516 L: linux-iio@vger.kernel.org
13517 S: Maintained
13518 F: Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13519 F: drivers/iio/gyro/fxas21002c.h
13520 F: drivers/iio/gyro/fxas21002c_core.c
13521 F: drivers/iio/gyro/fxas21002c_i2c.c
13522 F: drivers/iio/gyro/fxas21002c_spi.c
13523
13524 NXP i.MX CLOCK DRIVERS
13525 M: Abel Vesa <abel.vesa@nxp.com>
13526 L: linux-clk@vger.kernel.org
13527 L: linux-imx@nxp.com
13528 S: Maintained
13529 F: drivers/clk/imx/
13530
13531 NXP i.MX 8MQ DCSS DRIVER
13532 M: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13533 R: Lucas Stach <l.stach@pengutronix.de>
13534 L: dri-devel@lists.freedesktop.org
13535 S: Maintained
13536 F: Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13537 F: drivers/gpu/drm/imx/dcss/
13538
13539 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13540 M: Jagan Teki <jagan@amarulasolutions.com>
13541 S: Maintained
13542 F: Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13543 F: drivers/regulator/pf8x00-regulator.c
13544
13545 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13546 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13547 L: linux-kernel@vger.kernel.org
13548 S: Maintained
13549 F: Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13550 F: drivers/extcon/extcon-ptn5150.c
13551
13552 NXP SGTL5000 DRIVER
13553 M: Fabio Estevam <festevam@gmail.com>
13554 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13555 S: Maintained
13556 F: Documentation/devicetree/bindings/sound/sgtl5000.yaml
13557 F: sound/soc/codecs/sgtl5000*
13558
13559 NXP SJA1105 ETHERNET SWITCH DRIVER
13560 M: Vladimir Oltean <olteanv@gmail.com>
13561 L: linux-kernel@vger.kernel.org
13562 S: Maintained
13563 F: drivers/net/dsa/sja1105
13564 F: drivers/net/pcs/pcs-xpcs-nxp.c
13565
13566 NXP TDA998X DRM DRIVER
13567 M: Russell King <linux@armlinux.org.uk>
13568 S: Maintained
13569 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13570 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13571 F: drivers/gpu/drm/i2c/tda998x_drv.c
13572 F: include/drm/i2c/tda998x.h
13573 F: include/dt-bindings/display/tda998x.h
13574 K: "nxp,tda998x"
13575
13576 NXP TFA9879 DRIVER
13577 M: Peter Rosin <peda@axentia.se>
13578 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13579 S: Maintained
13580 F: Documentation/devicetree/bindings/sound/tfa9879.txt
13581 F: sound/soc/codecs/tfa9879*
13582
13583 NXP/Goodix TFA989X (TFA1) DRIVER
13584 M: Stephan Gerhold <stephan@gerhold.net>
13585 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13586 S: Maintained
13587 F: Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13588 F: sound/soc/codecs/tfa989x.c
13589
13590 NXP-NCI NFC DRIVER
13591 R: Charles Gorand <charles.gorand@effinnov.com>
13592 L: linux-nfc@lists.01.org (subscribers-only)
13593 S: Supported
13594 F: drivers/nfc/nxp-nci
13595
13596 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13597 M: Mirela Rabulea <mirela.rabulea@nxp.com>
13598 R: NXP Linux Team <linux-imx@nxp.com>
13599 L: linux-media@vger.kernel.org
13600 S: Maintained
13601 F: Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13602 F: drivers/media/platform/imx-jpeg
13603
13604 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13605 M: Jonas Malaco <jonas@protocubo.io>
13606 L: linux-hwmon@vger.kernel.org
13607 S: Maintained
13608 F: Documentation/hwmon/nzxt-kraken2.rst
13609 F: drivers/hwmon/nzxt-kraken2.c
13610
13611 OBJAGG
13612 M: Jiri Pirko <jiri@nvidia.com>
13613 L: netdev@vger.kernel.org
13614 S: Supported
13615 F: include/linux/objagg.h
13616 F: lib/objagg.c
13617 F: lib/test_objagg.c
13618
13619 OBJTOOL
13620 M: Josh Poimboeuf <jpoimboe@redhat.com>
13621 M: Peter Zijlstra <peterz@infradead.org>
13622 S: Supported
13623 F: tools/objtool/
13624 F: include/linux/objtool.h
13625
13626 OCELOT ETHERNET SWITCH DRIVER
13627 M: Vladimir Oltean <vladimir.oltean@nxp.com>
13628 M: Claudiu Manoil <claudiu.manoil@nxp.com>
13629 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
13630 M: UNGLinuxDriver@microchip.com
13631 L: netdev@vger.kernel.org
13632 S: Supported
13633 F: drivers/net/dsa/ocelot/*
13634 F: drivers/net/ethernet/mscc/
13635 F: include/soc/mscc/ocelot*
13636 F: net/dsa/tag_ocelot.c
13637 F: net/dsa/tag_ocelot_8021q.c
13638 F: tools/testing/selftests/drivers/net/ocelot/*
13639
13640 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13641 M: Frederic Barrat <fbarrat@linux.ibm.com>
13642 M: Andrew Donnellan <ajd@linux.ibm.com>
13643 L: linuxppc-dev@lists.ozlabs.org
13644 S: Supported
13645 F: Documentation/userspace-api/accelerators/ocxl.rst
13646 F: arch/powerpc/include/asm/pnv-ocxl.h
13647 F: arch/powerpc/platforms/powernv/ocxl.c
13648 F: drivers/misc/ocxl/
13649 F: include/misc/ocxl*
13650 F: include/uapi/misc/ocxl.h
13651
13652 OMAP AUDIO SUPPORT
13653 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
13654 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
13655 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13656 L: linux-omap@vger.kernel.org
13657 S: Maintained
13658 F: sound/soc/ti/n810.c
13659 F: sound/soc/ti/omap*
13660 F: sound/soc/ti/rx51.c
13661 F: sound/soc/ti/sdma-pcm.*
13662
13663 OMAP CLOCK FRAMEWORK SUPPORT
13664 M: Paul Walmsley <paul@pwsan.com>
13665 L: linux-omap@vger.kernel.org
13666 S: Maintained
13667 F: arch/arm/*omap*/*clock*
13668
13669 OMAP DEVICE TREE SUPPORT
13670 M: Benoît Cousson <bcousson@baylibre.com>
13671 M: Tony Lindgren <tony@atomide.com>
13672 L: linux-omap@vger.kernel.org
13673 L: devicetree@vger.kernel.org
13674 S: Maintained
13675 F: arch/arm/boot/dts/*am3*
13676 F: arch/arm/boot/dts/*am4*
13677 F: arch/arm/boot/dts/*am5*
13678 F: arch/arm/boot/dts/*dra7*
13679 F: arch/arm/boot/dts/*omap*
13680 F: arch/arm/boot/dts/logicpd-som-lv*
13681 F: arch/arm/boot/dts/logicpd-torpedo*
13682
13683 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13684 L: linux-omap@vger.kernel.org
13685 L: linux-fbdev@vger.kernel.org
13686 S: Orphan
13687 F: Documentation/arm/omap/dss.rst
13688 F: drivers/video/fbdev/omap2/
13689
13690 OMAP FRAMEBUFFER SUPPORT
13691 L: linux-fbdev@vger.kernel.org
13692 L: linux-omap@vger.kernel.org
13693 S: Orphan
13694 F: drivers/video/fbdev/omap/
13695
13696 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13697 M: Roger Quadros <rogerq@kernel.org>
13698 M: Tony Lindgren <tony@atomide.com>
13699 L: linux-omap@vger.kernel.org
13700 S: Maintained
13701 F: arch/arm/mach-omap2/*gpmc*
13702 F: drivers/memory/omap-gpmc.c
13703
13704 OMAP GPIO DRIVER
13705 M: Grygorii Strashko <grygorii.strashko@ti.com>
13706 M: Santosh Shilimkar <ssantosh@kernel.org>
13707 M: Kevin Hilman <khilman@kernel.org>
13708 L: linux-omap@vger.kernel.org
13709 S: Maintained
13710 F: Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13711 F: drivers/gpio/gpio-omap.c
13712
13713 OMAP HARDWARE SPINLOCK SUPPORT
13714 M: Ohad Ben-Cohen <ohad@wizery.com>
13715 L: linux-omap@vger.kernel.org
13716 S: Maintained
13717 F: drivers/hwspinlock/omap_hwspinlock.c
13718
13719 OMAP HS MMC SUPPORT
13720 L: linux-mmc@vger.kernel.org
13721 L: linux-omap@vger.kernel.org
13722 S: Orphan
13723 F: drivers/mmc/host/omap_hsmmc.c
13724
13725 OMAP HWMOD DATA
13726 M: Paul Walmsley <paul@pwsan.com>
13727 L: linux-omap@vger.kernel.org
13728 S: Maintained
13729 F: arch/arm/mach-omap2/omap_hwmod*data*
13730
13731 OMAP HWMOD SUPPORT
13732 M: Benoît Cousson <bcousson@baylibre.com>
13733 M: Paul Walmsley <paul@pwsan.com>
13734 L: linux-omap@vger.kernel.org
13735 S: Maintained
13736 F: arch/arm/mach-omap2/omap_hwmod.*
13737
13738 OMAP I2C DRIVER
13739 M: Vignesh R <vigneshr@ti.com>
13740 L: linux-omap@vger.kernel.org
13741 L: linux-i2c@vger.kernel.org
13742 S: Maintained
13743 F: Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13744 F: drivers/i2c/busses/i2c-omap.c
13745
13746 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13747 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13748 L: linux-media@vger.kernel.org
13749 S: Maintained
13750 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
13751 F: drivers/media/platform/omap3isp/
13752 F: drivers/staging/media/omap4iss/
13753
13754 OMAP MMC SUPPORT
13755 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13756 L: linux-omap@vger.kernel.org
13757 S: Odd Fixes
13758 F: drivers/mmc/host/omap.c
13759
13760 OMAP POWER MANAGEMENT SUPPORT
13761 M: Kevin Hilman <khilman@kernel.org>
13762 L: linux-omap@vger.kernel.org
13763 S: Maintained
13764 F: arch/arm/*omap*/*pm*
13765 F: drivers/cpufreq/omap-cpufreq.c
13766
13767 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13768 M: Rajendra Nayak <rnayak@codeaurora.org>
13769 M: Paul Walmsley <paul@pwsan.com>
13770 L: linux-omap@vger.kernel.org
13771 S: Maintained
13772 F: arch/arm/mach-omap2/prm*
13773
13774 OMAP RANDOM NUMBER GENERATOR SUPPORT
13775 M: Deepak Saxena <dsaxena@plexity.net>
13776 S: Maintained
13777 F: drivers/char/hw_random/omap-rng.c
13778
13779 OMAP USB SUPPORT
13780 L: linux-usb@vger.kernel.org
13781 L: linux-omap@vger.kernel.org
13782 S: Orphan
13783 F: arch/arm/*omap*/usb*
13784 F: drivers/usb/*/*omap*
13785
13786 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13787 M: Mark Jackson <mpfj@newflow.co.uk>
13788 L: linux-omap@vger.kernel.org
13789 S: Maintained
13790 F: arch/arm/boot/dts/am335x-nano.dts
13791
13792 OMAP1 SUPPORT
13793 M: Aaro Koskinen <aaro.koskinen@iki.fi>
13794 M: Tony Lindgren <tony@atomide.com>
13795 L: linux-omap@vger.kernel.org
13796 S: Maintained
13797 Q: http://patchwork.kernel.org/project/linux-omap/list/
13798 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13799 F: arch/arm/configs/omap1_defconfig
13800 F: arch/arm/mach-omap1/
13801 F: arch/arm/plat-omap/
13802 F: drivers/i2c/busses/i2c-omap.c
13803 F: include/linux/platform_data/ams-delta-fiq.h
13804 F: include/linux/platform_data/i2c-omap.h
13805
13806 OMAP2+ SUPPORT
13807 M: Tony Lindgren <tony@atomide.com>
13808 L: linux-omap@vger.kernel.org
13809 S: Maintained
13810 W: http://www.muru.com/linux/omap/
13811 W: http://linux.omap.com/
13812 Q: http://patchwork.kernel.org/project/linux-omap/list/
13813 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13814 F: arch/arm/configs/omap2plus_defconfig
13815 F: arch/arm/mach-omap2/
13816 F: arch/arm/plat-omap/
13817 F: drivers/bus/ti-sysc.c
13818 F: drivers/i2c/busses/i2c-omap.c
13819 F: drivers/irqchip/irq-omap-intc.c
13820 F: drivers/mfd/*omap*.c
13821 F: drivers/mfd/menelaus.c
13822 F: drivers/mfd/palmas.c
13823 F: drivers/mfd/tps65217.c
13824 F: drivers/mfd/tps65218.c
13825 F: drivers/mfd/tps65910.c
13826 F: drivers/mfd/twl-core.[ch]
13827 F: drivers/mfd/twl4030*.c
13828 F: drivers/mfd/twl6030*.c
13829 F: drivers/mfd/twl6040*.c
13830 F: drivers/regulator/palmas-regulator*.c
13831 F: drivers/regulator/pbias-regulator.c
13832 F: drivers/regulator/tps65217-regulator.c
13833 F: drivers/regulator/tps65218-regulator.c
13834 F: drivers/regulator/tps65910-regulator.c
13835 F: drivers/regulator/twl-regulator.c
13836 F: drivers/regulator/twl6030-regulator.c
13837 F: include/linux/platform_data/i2c-omap.h
13838 F: include/linux/platform_data/ti-sysc.h
13839
13840 OMFS FILESYSTEM
13841 M: Bob Copeland <me@bobcopeland.com>
13842 L: linux-karma-devel@lists.sourceforge.net
13843 S: Maintained
13844 F: Documentation/filesystems/omfs.rst
13845 F: fs/omfs/
13846
13847 OMNIKEY CARDMAN 4000 DRIVER
13848 M: Harald Welte <laforge@gnumonks.org>
13849 S: Maintained
13850 F: drivers/char/pcmcia/cm4000_cs.c
13851 F: include/linux/cm4000_cs.h
13852 F: include/uapi/linux/cm4000_cs.h
13853
13854 OMNIKEY CARDMAN 4040 DRIVER
13855 M: Harald Welte <laforge@gnumonks.org>
13856 S: Maintained
13857 F: drivers/char/pcmcia/cm4040_cs.*
13858
13859 OMNIVISION OV02A10 SENSOR DRIVER
13860 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13861 L: linux-media@vger.kernel.org
13862 S: Maintained
13863 T: git git://linuxtv.org/media_tree.git
13864 F: Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13865 F: drivers/media/i2c/ov02a10.c
13866
13867 OMNIVISION OV13858 SENSOR DRIVER
13868 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13869 L: linux-media@vger.kernel.org
13870 S: Maintained
13871 T: git git://linuxtv.org/media_tree.git
13872 F: drivers/media/i2c/ov13858.c
13873
13874 OMNIVISION OV2680 SENSOR DRIVER
13875 M: Rui Miguel Silva <rmfrfs@gmail.com>
13876 L: linux-media@vger.kernel.org
13877 S: Maintained
13878 T: git git://linuxtv.org/media_tree.git
13879 F: Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13880 F: drivers/media/i2c/ov2680.c
13881
13882 OMNIVISION OV2685 SENSOR DRIVER
13883 M: Shunqian Zheng <zhengsq@rock-chips.com>
13884 L: linux-media@vger.kernel.org
13885 S: Maintained
13886 T: git git://linuxtv.org/media_tree.git
13887 F: drivers/media/i2c/ov2685.c
13888
13889 OMNIVISION OV2740 SENSOR DRIVER
13890 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13891 R: Shawn Tu <shawnx.tu@intel.com>
13892 R: Bingbu Cao <bingbu.cao@intel.com>
13893 L: linux-media@vger.kernel.org
13894 S: Maintained
13895 T: git git://linuxtv.org/media_tree.git
13896 F: drivers/media/i2c/ov2740.c
13897
13898 OMNIVISION OV5640 SENSOR DRIVER
13899 M: Steve Longerbeam <slongerbeam@gmail.com>
13900 L: linux-media@vger.kernel.org
13901 S: Maintained
13902 T: git git://linuxtv.org/media_tree.git
13903 F: drivers/media/i2c/ov5640.c
13904
13905 OMNIVISION OV5647 SENSOR DRIVER
13906 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
13907 M: Jacopo Mondi <jacopo@jmondi.org>
13908 L: linux-media@vger.kernel.org
13909 S: Maintained
13910 T: git git://linuxtv.org/media_tree.git
13911 F: Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13912 F: drivers/media/i2c/ov5647.c
13913
13914 OMNIVISION OV5670 SENSOR DRIVER
13915 M: Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13916 M: Hyungwoo Yang <hyungwoo.yang@intel.com>
13917 L: linux-media@vger.kernel.org
13918 S: Maintained
13919 T: git git://linuxtv.org/media_tree.git
13920 F: drivers/media/i2c/ov5670.c
13921
13922 OMNIVISION OV5675 SENSOR DRIVER
13923 M: Shawn Tu <shawnx.tu@intel.com>
13924 L: linux-media@vger.kernel.org
13925 S: Maintained
13926 T: git git://linuxtv.org/media_tree.git
13927 F: drivers/media/i2c/ov5675.c
13928
13929 OMNIVISION OV5695 SENSOR DRIVER
13930 M: Shunqian Zheng <zhengsq@rock-chips.com>
13931 L: linux-media@vger.kernel.org
13932 S: Maintained
13933 T: git git://linuxtv.org/media_tree.git
13934 F: drivers/media/i2c/ov5695.c
13935
13936 OMNIVISION OV7670 SENSOR DRIVER
13937 L: linux-media@vger.kernel.org
13938 S: Orphan
13939 T: git git://linuxtv.org/media_tree.git
13940 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
13941 F: drivers/media/i2c/ov7670.c
13942
13943 OMNIVISION OV772x SENSOR DRIVER
13944 M: Jacopo Mondi <jacopo@jmondi.org>
13945 L: linux-media@vger.kernel.org
13946 S: Odd fixes
13947 T: git git://linuxtv.org/media_tree.git
13948 F: Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13949 F: drivers/media/i2c/ov772x.c
13950 F: include/media/i2c/ov772x.h
13951
13952 OMNIVISION OV7740 SENSOR DRIVER
13953 M: Wenyou Yang <wenyou.yang@microchip.com>
13954 L: linux-media@vger.kernel.org
13955 S: Maintained
13956 T: git git://linuxtv.org/media_tree.git
13957 F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
13958 F: drivers/media/i2c/ov7740.c
13959
13960 OMNIVISION OV8856 SENSOR DRIVER
13961 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
13962 L: linux-media@vger.kernel.org
13963 S: Maintained
13964 T: git git://linuxtv.org/media_tree.git
13965 F: Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13966 F: drivers/media/i2c/ov8856.c
13967
13968 OMNIVISION OV9282 SENSOR DRIVER
13969 M: Paul J. Murphy <paul.j.murphy@intel.com>
13970 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
13971 L: linux-media@vger.kernel.org
13972 S: Maintained
13973 T: git git://linuxtv.org/media_tree.git
13974 F: Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
13975 F: drivers/media/i2c/ov9282.c
13976
13977 OMNIVISION OV9640 SENSOR DRIVER
13978 M: Petr Cvek <petrcvekcz@gmail.com>
13979 L: linux-media@vger.kernel.org
13980 S: Maintained
13981 F: drivers/media/i2c/ov9640.*
13982
13983 OMNIVISION OV9650 SENSOR DRIVER
13984 M: Sakari Ailus <sakari.ailus@linux.intel.com>
13985 R: Akinobu Mita <akinobu.mita@gmail.com>
13986 R: Sylwester Nawrocki <s.nawrocki@samsung.com>
13987 L: linux-media@vger.kernel.org
13988 S: Maintained
13989 T: git git://linuxtv.org/media_tree.git
13990 F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
13991 F: drivers/media/i2c/ov9650.c
13992
13993 OMNIVISION OV9734 SENSOR DRIVER
13994 M: Tianshu Qiu <tian.shu.qiu@intel.com>
13995 R: Bingbu Cao <bingbu.cao@intel.com>
13996 L: linux-media@vger.kernel.org
13997 S: Maintained
13998 T: git git://linuxtv.org/media_tree.git
13999 F: drivers/media/i2c/ov9734.c
14000
14001 ONENAND FLASH DRIVER
14002 M: Kyungmin Park <kyungmin.park@samsung.com>
14003 L: linux-mtd@lists.infradead.org
14004 S: Maintained
14005 F: drivers/mtd/nand/onenand/
14006 F: include/linux/mtd/onenand*.h
14007
14008 ONION OMEGA2+ BOARD
14009 M: Harvey Hunt <harveyhuntnexus@gmail.com>
14010 L: linux-mips@vger.kernel.org
14011 S: Maintained
14012 F: arch/mips/boot/dts/ralink/omega2p.dts
14013
14014 OP-TEE DRIVER
14015 M: Jens Wiklander <jens.wiklander@linaro.org>
14016 L: op-tee@lists.trustedfirmware.org
14017 S: Maintained
14018 F: Documentation/ABI/testing/sysfs-bus-optee-devices
14019 F: drivers/tee/optee/
14020
14021 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14022 M: Sumit Garg <sumit.garg@linaro.org>
14023 L: op-tee@lists.trustedfirmware.org
14024 S: Maintained
14025 F: drivers/char/hw_random/optee-rng.c
14026
14027 OPA-VNIC DRIVER
14028 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14029 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14030 L: linux-rdma@vger.kernel.org
14031 S: Supported
14032 F: drivers/infiniband/ulp/opa_vnic
14033
14034 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14035 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14036 M: Frank Rowand <frowand.list@gmail.com>
14037 L: devicetree@vger.kernel.org
14038 S: Maintained
14039 F: Documentation/devicetree/dynamic-resolution-notes.rst
14040 F: Documentation/devicetree/overlay-notes.rst
14041 F: drivers/of/overlay.c
14042 F: drivers/of/resolver.c
14043 K: of_overlay_notifier_
14044
14045 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14046 M: Rob Herring <robh+dt@kernel.org>
14047 M: Frank Rowand <frowand.list@gmail.com>
14048 L: devicetree@vger.kernel.org
14049 S: Maintained
14050 W: http://www.devicetree.org/
14051 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14052 F: Documentation/ABI/testing/sysfs-firmware-ofw
14053 F: drivers/of/
14054 F: include/linux/of*.h
14055 F: scripts/dtc/
14056
14057 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14058 M: Rob Herring <robh+dt@kernel.org>
14059 L: devicetree@vger.kernel.org
14060 S: Maintained
14061 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14062 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14063 F: Documentation/devicetree/
14064 F: arch/*/boot/dts/
14065 F: include/dt-bindings/
14066
14067 OPENCOMPUTE PTP CLOCK DRIVER
14068 M: Jonathan Lemon <jonathan.lemon@gmail.com>
14069 L: netdev@vger.kernel.org
14070 S: Maintained
14071 F: drivers/ptp/ptp_ocp.c
14072
14073 OPENCORES I2C BUS DRIVER
14074 M: Peter Korsgaard <peter@korsgaard.com>
14075 M: Andrew Lunn <andrew@lunn.ch>
14076 L: linux-i2c@vger.kernel.org
14077 S: Maintained
14078 F: Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14079 F: Documentation/i2c/busses/i2c-ocores.rst
14080 F: drivers/i2c/busses/i2c-ocores.c
14081 F: include/linux/platform_data/i2c-ocores.h
14082
14083 OPENRISC ARCHITECTURE
14084 M: Jonas Bonn <jonas@southpole.se>
14085 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14086 M: Stafford Horne <shorne@gmail.com>
14087 L: openrisc@lists.librecores.org
14088 S: Maintained
14089 W: http://openrisc.io
14090 T: git git://github.com/openrisc/linux.git
14091 F: Documentation/devicetree/bindings/openrisc/
14092 F: Documentation/openrisc/
14093 F: arch/openrisc/
14094 F: drivers/irqchip/irq-ompic.c
14095 F: drivers/irqchip/irq-or1k-*
14096
14097 OPENVSWITCH
14098 M: Pravin B Shelar <pshelar@ovn.org>
14099 L: netdev@vger.kernel.org
14100 L: dev@openvswitch.org
14101 S: Maintained
14102 W: http://openvswitch.org
14103 F: include/uapi/linux/openvswitch.h
14104 F: net/openvswitch/
14105
14106 OPERATING PERFORMANCE POINTS (OPP)
14107 M: Viresh Kumar <vireshk@kernel.org>
14108 M: Nishanth Menon <nm@ti.com>
14109 M: Stephen Boyd <sboyd@kernel.org>
14110 L: linux-pm@vger.kernel.org
14111 S: Maintained
14112 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14113 F: Documentation/devicetree/bindings/opp/
14114 F: Documentation/power/opp.rst
14115 F: drivers/opp/
14116 F: include/linux/pm_opp.h
14117
14118 OPL4 DRIVER
14119 M: Clemens Ladisch <clemens@ladisch.de>
14120 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14121 S: Maintained
14122 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14123 F: sound/drivers/opl4/
14124
14125 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14126 M: Mark Fasheh <mark@fasheh.com>
14127 M: Joel Becker <jlbec@evilplan.org>
14128 M: Joseph Qi <joseph.qi@linux.alibaba.com>
14129 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14130 S: Supported
14131 W: http://ocfs2.wiki.kernel.org
14132 F: Documentation/filesystems/dlmfs.rst
14133 F: Documentation/filesystems/ocfs2.rst
14134 F: fs/ocfs2/
14135
14136 ORANGEFS FILESYSTEM
14137 M: Mike Marshall <hubcap@omnibond.com>
14138 R: Martin Brandenburg <martin@omnibond.com>
14139 L: devel@lists.orangefs.org
14140 S: Supported
14141 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14142 F: Documentation/filesystems/orangefs.rst
14143 F: fs/orangefs/
14144
14145 ORINOCO DRIVER
14146 L: linux-wireless@vger.kernel.org
14147 S: Orphan
14148 W: https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14149 W: http://www.nongnu.org/orinoco/
14150 F: drivers/net/wireless/intersil/orinoco/
14151
14152 OV2659 OMNIVISION SENSOR DRIVER
14153 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14154 L: linux-media@vger.kernel.org
14155 S: Maintained
14156 W: https://linuxtv.org
14157 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14158 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14159 F: drivers/media/i2c/ov2659.c
14160 F: include/media/i2c/ov2659.h
14161
14162 OVERLAY FILESYSTEM
14163 M: Miklos Szeredi <miklos@szeredi.hu>
14164 L: linux-unionfs@vger.kernel.org
14165 S: Supported
14166 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14167 F: Documentation/filesystems/overlayfs.rst
14168 F: fs/overlayfs/
14169
14170 P54 WIRELESS DRIVER
14171 M: Christian Lamparter <chunkeey@googlemail.com>
14172 L: linux-wireless@vger.kernel.org
14173 S: Maintained
14174 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
14175 F: drivers/net/wireless/intersil/p54/
14176
14177 PACKING
14178 M: Vladimir Oltean <olteanv@gmail.com>
14179 L: netdev@vger.kernel.org
14180 S: Supported
14181 F: Documentation/core-api/packing.rst
14182 F: include/linux/packing.h
14183 F: lib/packing.c
14184
14185 PADATA PARALLEL EXECUTION MECHANISM
14186 M: Steffen Klassert <steffen.klassert@secunet.com>
14187 M: Daniel Jordan <daniel.m.jordan@oracle.com>
14188 L: linux-crypto@vger.kernel.org
14189 L: linux-kernel@vger.kernel.org
14190 S: Maintained
14191 F: Documentation/core-api/padata.rst
14192 F: include/linux/padata.h
14193 F: kernel/padata.c
14194
14195 PAGE POOL
14196 M: Jesper Dangaard Brouer <hawk@kernel.org>
14197 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
14198 L: netdev@vger.kernel.org
14199 S: Supported
14200 F: Documentation/networking/page_pool.rst
14201 F: include/net/page_pool.h
14202 F: include/trace/events/page_pool.h
14203 F: net/core/page_pool.c
14204
14205 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14206 M: Kenneth Chan <kenneth.t.chan@gmail.com>
14207 L: platform-driver-x86@vger.kernel.org
14208 S: Maintained
14209 F: drivers/platform/x86/panasonic-laptop.c
14210
14211 PARALLAX PING IIO SENSOR DRIVER
14212 M: Andreas Klinger <ak@it-klinger.de>
14213 L: linux-iio@vger.kernel.org
14214 S: Maintained
14215 F: Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14216 F: drivers/iio/proximity/ping.c
14217
14218 PARALLEL LCD/KEYPAD PANEL DRIVER
14219 M: Willy Tarreau <willy@haproxy.com>
14220 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14221 S: Odd Fixes
14222 F: Documentation/admin-guide/lcd-panel-cgram.rst
14223 F: drivers/auxdisplay/panel.c
14224
14225 PARALLEL PORT SUBSYSTEM
14226 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14227 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14228 L: linux-parport@lists.infradead.org (subscribers-only)
14229 S: Maintained
14230 F: Documentation/driver-api/parport*.rst
14231 F: drivers/char/ppdev.c
14232 F: drivers/parport/
14233 F: include/linux/parport*.h
14234 F: include/uapi/linux/ppdev.h
14235
14236 PARAVIRT_OPS INTERFACE
14237 M: Juergen Gross <jgross@suse.com>
14238 M: Deep Shah <sdeep@vmware.com>
14239 M: "VMware, Inc." <pv-drivers@vmware.com>
14240 L: virtualization@lists.linux-foundation.org
14241 S: Supported
14242 F: Documentation/virt/paravirt_ops.rst
14243 F: arch/*/include/asm/paravirt*.h
14244 F: arch/*/kernel/paravirt*
14245 F: include/linux/hypervisor.h
14246
14247 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14248 M: Tim Waugh <tim@cyberelk.net>
14249 L: linux-parport@lists.infradead.org (subscribers-only)
14250 S: Maintained
14251 F: Documentation/admin-guide/blockdev/paride.rst
14252 F: drivers/block/paride/
14253
14254 PARISC ARCHITECTURE
14255 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14256 M: Helge Deller <deller@gmx.de>
14257 L: linux-parisc@vger.kernel.org
14258 S: Maintained
14259 W: https://parisc.wiki.kernel.org
14260 Q: http://patchwork.kernel.org/project/linux-parisc/list/
14261 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14262 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14263 F: Documentation/parisc/
14264 F: arch/parisc/
14265 F: drivers/char/agp/parisc-agp.c
14266 F: drivers/input/misc/hp_sdc_rtc.c
14267 F: drivers/input/serio/gscps2.c
14268 F: drivers/input/serio/hp_sdc*
14269 F: drivers/parisc/
14270 F: drivers/parport/parport_gsc.*
14271 F: drivers/tty/serial/8250/8250_gsc.c
14272 F: drivers/video/console/sti*
14273 F: drivers/video/fbdev/sti*
14274 F: drivers/video/logo/logo_parisc*
14275 F: include/linux/hp_sdc.h
14276
14277 PARMAN
14278 M: Jiri Pirko <jiri@nvidia.com>
14279 L: netdev@vger.kernel.org
14280 S: Supported
14281 F: include/linux/parman.h
14282 F: lib/parman.c
14283 F: lib/test_parman.c
14284
14285 PC ENGINES APU BOARD DRIVER
14286 M: Enrico Weigelt, metux IT consult <info@metux.net>
14287 S: Maintained
14288 F: drivers/platform/x86/pcengines-apuv2.c
14289
14290 PC87360 HARDWARE MONITORING DRIVER
14291 M: Jim Cromie <jim.cromie@gmail.com>
14292 L: linux-hwmon@vger.kernel.org
14293 S: Maintained
14294 F: Documentation/hwmon/pc87360.rst
14295 F: drivers/hwmon/pc87360.c
14296
14297 PC8736x GPIO DRIVER
14298 M: Jim Cromie <jim.cromie@gmail.com>
14299 S: Maintained
14300 F: drivers/char/pc8736x_gpio.c
14301
14302 PC87427 HARDWARE MONITORING DRIVER
14303 M: Jean Delvare <jdelvare@suse.com>
14304 L: linux-hwmon@vger.kernel.org
14305 S: Maintained
14306 F: Documentation/hwmon/pc87427.rst
14307 F: drivers/hwmon/pc87427.c
14308
14309 PCA9532 LED DRIVER
14310 M: Riku Voipio <riku.voipio@iki.fi>
14311 S: Maintained
14312 F: drivers/leds/leds-pca9532.c
14313 F: include/linux/leds-pca9532.h
14314
14315 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14316 M: Guenter Roeck <linux@roeck-us.net>
14317 L: linux-i2c@vger.kernel.org
14318 S: Maintained
14319 F: drivers/i2c/muxes/i2c-mux-pca9541.c
14320
14321 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14322 M: Khalid Aziz <khalid@gonehiking.org>
14323 S: Maintained
14324 F: drivers/firmware/pcdp.*
14325
14326 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14327 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14328 M: Pali Rohár <pali@kernel.org>
14329 L: linux-pci@vger.kernel.org
14330 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14331 S: Maintained
14332 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
14333 F: drivers/pci/controller/pci-aardvark.c
14334
14335 PCI DRIVER FOR ALTERA PCIE IP
14336 M: Joyce Ooi <joyce.ooi@intel.com>
14337 L: linux-pci@vger.kernel.org
14338 S: Supported
14339 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
14340 F: drivers/pci/controller/pcie-altera.c
14341
14342 PCI DRIVER FOR APPLIEDMICRO XGENE
14343 M: Toan Le <toan@os.amperecomputing.com>
14344 L: linux-pci@vger.kernel.org
14345 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14346 S: Maintained
14347 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
14348 F: drivers/pci/controller/pci-xgene.c
14349
14350 PCI DRIVER FOR ARM VERSATILE PLATFORM
14351 M: Rob Herring <robh@kernel.org>
14352 L: linux-pci@vger.kernel.org
14353 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14354 S: Maintained
14355 F: Documentation/devicetree/bindings/pci/versatile.yaml
14356 F: drivers/pci/controller/pci-versatile.c
14357
14358 PCI DRIVER FOR ARMADA 8K
14359 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14360 L: linux-pci@vger.kernel.org
14361 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14362 S: Maintained
14363 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
14364 F: drivers/pci/controller/dwc/pcie-armada8k.c
14365
14366 PCI DRIVER FOR CADENCE PCIE IP
14367 M: Tom Joseph <tjoseph@cadence.com>
14368 L: linux-pci@vger.kernel.org
14369 S: Maintained
14370 F: Documentation/devicetree/bindings/pci/cdns,*
14371 F: drivers/pci/controller/cadence/
14372
14373 PCI DRIVER FOR FREESCALE LAYERSCAPE
14374 M: Minghuan Lian <minghuan.Lian@nxp.com>
14375 M: Mingkai Hu <mingkai.hu@nxp.com>
14376 M: Roy Zang <roy.zang@nxp.com>
14377 L: linuxppc-dev@lists.ozlabs.org
14378 L: linux-pci@vger.kernel.org
14379 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14380 S: Maintained
14381 F: drivers/pci/controller/dwc/*layerscape*
14382
14383 PCI DRIVER FOR GENERIC OF HOSTS
14384 M: Will Deacon <will@kernel.org>
14385 L: linux-pci@vger.kernel.org
14386 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14387 S: Maintained
14388 F: Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14389 F: drivers/pci/controller/pci-host-common.c
14390 F: drivers/pci/controller/pci-host-generic.c
14391
14392 PCI DRIVER FOR IMX6
14393 M: Richard Zhu <hongxing.zhu@nxp.com>
14394 M: Lucas Stach <l.stach@pengutronix.de>
14395 L: linux-pci@vger.kernel.org
14396 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14397 S: Maintained
14398 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14399 F: drivers/pci/controller/dwc/*imx6*
14400
14401 PCI DRIVER FOR FU740
14402 M: Paul Walmsley <paul.walmsley@sifive.com>
14403 M: Greentime Hu <greentime.hu@sifive.com>
14404 L: linux-pci@vger.kernel.org
14405 S: Maintained
14406 F: Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14407 F: drivers/pci/controller/dwc/pcie-fu740.c
14408
14409 PCI DRIVER FOR INTEL IXP4XX
14410 M: Linus Walleij <linus.walleij@linaro.org>
14411 S: Maintained
14412 F: Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14413 F: drivers/pci/controller/pci-ixp4xx.c
14414
14415 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14416 M: Nirmal Patel <nirmal.patel@linux.intel.com>
14417 R: Jonathan Derrick <jonathan.derrick@linux.dev>
14418 L: linux-pci@vger.kernel.org
14419 S: Supported
14420 F: drivers/pci/controller/vmd.c
14421
14422 PCI DRIVER FOR MICROSEMI SWITCHTEC
14423 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14424 M: Logan Gunthorpe <logang@deltatee.com>
14425 L: linux-pci@vger.kernel.org
14426 S: Maintained
14427 F: Documentation/ABI/testing/sysfs-class-switchtec
14428 F: Documentation/driver-api/switchtec.rst
14429 F: drivers/ntb/hw/mscc/
14430 F: drivers/pci/switch/switchtec*
14431 F: include/linux/switchtec.h
14432 F: include/uapi/linux/switchtec_ioctl.h
14433
14434 PCI DRIVER FOR MOBIVEIL PCIE IP
14435 M: Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14436 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14437 L: linux-pci@vger.kernel.org
14438 S: Supported
14439 F: Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14440 F: drivers/pci/controller/mobiveil/pcie-mobiveil*
14441
14442 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14443 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14444 L: linux-pci@vger.kernel.org
14445 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14446 S: Maintained
14447 F: drivers/pci/controller/*mvebu*
14448
14449 PCI DRIVER FOR NVIDIA TEGRA
14450 M: Thierry Reding <thierry.reding@gmail.com>
14451 L: linux-tegra@vger.kernel.org
14452 L: linux-pci@vger.kernel.org
14453 S: Supported
14454 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14455 F: drivers/pci/controller/pci-tegra.c
14456
14457 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14458 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14459 L: linux-pci@vger.kernel.org
14460 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14461 S: Maintained
14462 F: Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14463 F: drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14464
14465 PCI DRIVER FOR RENESAS R-CAR
14466 M: Marek Vasut <marek.vasut+renesas@gmail.com>
14467 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14468 L: linux-pci@vger.kernel.org
14469 L: linux-renesas-soc@vger.kernel.org
14470 S: Maintained
14471 F: Documentation/devicetree/bindings/pci/*rcar*
14472 F: drivers/pci/controller/*rcar*
14473
14474 PCI DRIVER FOR SAMSUNG EXYNOS
14475 M: Jingoo Han <jingoohan1@gmail.com>
14476 L: linux-pci@vger.kernel.org
14477 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14478 L: linux-samsung-soc@vger.kernel.org
14479 S: Maintained
14480 F: drivers/pci/controller/dwc/pci-exynos.c
14481
14482 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14483 M: Jingoo Han <jingoohan1@gmail.com>
14484 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14485 L: linux-pci@vger.kernel.org
14486 S: Maintained
14487 F: Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14488 F: Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14489 F: drivers/pci/controller/dwc/*designware*
14490
14491 PCI DRIVER FOR TI DRA7XX/J721E
14492 M: Kishon Vijay Abraham I <kishon@ti.com>
14493 L: linux-omap@vger.kernel.org
14494 L: linux-pci@vger.kernel.org
14495 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14496 S: Supported
14497 F: Documentation/devicetree/bindings/pci/ti-pci.txt
14498 F: drivers/pci/controller/cadence/pci-j721e.c
14499 F: drivers/pci/controller/dwc/pci-dra7xx.c
14500
14501 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14502 M: Linus Walleij <linus.walleij@linaro.org>
14503 L: linux-pci@vger.kernel.org
14504 S: Maintained
14505 F: Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14506 F: drivers/pci/controller/pci-v3-semi.c
14507
14508 PCI ENDPOINT SUBSYSTEM
14509 M: Kishon Vijay Abraham I <kishon@ti.com>
14510 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14511 R: Krzysztof Wilczyński <kw@linux.com>
14512 L: linux-pci@vger.kernel.org
14513 S: Supported
14514 F: Documentation/PCI/endpoint/*
14515 F: Documentation/misc-devices/pci-endpoint-test.rst
14516 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14517 F: drivers/misc/pci_endpoint_test.c
14518 F: drivers/pci/endpoint/
14519 F: tools/pci/
14520
14521 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14522 M: Russell Currey <ruscur@russell.cc>
14523 M: Oliver O'Halloran <oohall@gmail.com>
14524 L: linuxppc-dev@lists.ozlabs.org
14525 S: Supported
14526 F: Documentation/PCI/pci-error-recovery.rst
14527 F: Documentation/powerpc/eeh-pci-error-recovery.rst
14528 F: arch/powerpc/include/*/eeh*.h
14529 F: arch/powerpc/kernel/eeh*.c
14530 F: arch/powerpc/platforms/*/eeh*.c
14531 F: drivers/pci/pcie/aer.c
14532 F: drivers/pci/pcie/dpc.c
14533 F: drivers/pci/pcie/err.c
14534
14535 PCI ERROR RECOVERY
14536 M: Linas Vepstas <linasvepstas@gmail.com>
14537 L: linux-pci@vger.kernel.org
14538 S: Supported
14539 F: Documentation/PCI/pci-error-recovery.rst
14540
14541 PCI MSI DRIVER FOR ALTERA MSI IP
14542 M: Joyce Ooi <joyce.ooi@intel.com>
14543 L: linux-pci@vger.kernel.org
14544 S: Supported
14545 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14546 F: drivers/pci/controller/pcie-altera-msi.c
14547
14548 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14549 M: Toan Le <toan@os.amperecomputing.com>
14550 L: linux-pci@vger.kernel.org
14551 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14552 S: Maintained
14553 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14554 F: drivers/pci/controller/pci-xgene-msi.c
14555
14556 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14557 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14558 R: Rob Herring <robh@kernel.org>
14559 R: Krzysztof Wilczyński <kw@linux.com>
14560 L: linux-pci@vger.kernel.org
14561 S: Supported
14562 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14563 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14564 F: drivers/pci/controller/
14565
14566 PCI SUBSYSTEM
14567 M: Bjorn Helgaas <bhelgaas@google.com>
14568 L: linux-pci@vger.kernel.org
14569 S: Supported
14570 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
14571 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14572 F: Documentation/PCI/
14573 F: Documentation/devicetree/bindings/pci/
14574 F: arch/x86/kernel/early-quirks.c
14575 F: arch/x86/kernel/quirks.c
14576 F: arch/x86/pci/
14577 F: drivers/acpi/pci*
14578 F: drivers/pci/
14579 F: include/asm-generic/pci*
14580 F: include/linux/of_pci.h
14581 F: include/linux/pci*
14582 F: include/uapi/linux/pci*
14583 F: lib/pci*
14584
14585 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14586 M: Jonathan Chocron <jonnyc@amazon.com>
14587 L: linux-pci@vger.kernel.org
14588 S: Maintained
14589 F: Documentation/devicetree/bindings/pci/pcie-al.txt
14590 F: drivers/pci/controller/dwc/pcie-al.c
14591
14592 PCIE DRIVER FOR AMLOGIC MESON
14593 M: Yue Wang <yue.wang@Amlogic.com>
14594 L: linux-pci@vger.kernel.org
14595 L: linux-amlogic@lists.infradead.org
14596 S: Maintained
14597 F: drivers/pci/controller/dwc/pci-meson.c
14598
14599 PCIE DRIVER FOR AXIS ARTPEC
14600 M: Jesper Nilsson <jesper.nilsson@axis.com>
14601 L: linux-arm-kernel@axis.com
14602 L: linux-pci@vger.kernel.org
14603 S: Maintained
14604 F: Documentation/devicetree/bindings/pci/axis,artpec*
14605 F: drivers/pci/controller/dwc/*artpec*
14606
14607 PCIE DRIVER FOR CAVIUM THUNDERX
14608 M: Robert Richter <rric@kernel.org>
14609 L: linux-pci@vger.kernel.org
14610 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14611 S: Odd Fixes
14612 F: drivers/pci/controller/pci-thunder-*
14613
14614 PCIE DRIVER FOR HISILICON
14615 M: Zhou Wang <wangzhou1@hisilicon.com>
14616 L: linux-pci@vger.kernel.org
14617 S: Maintained
14618 F: drivers/pci/controller/dwc/pcie-hisi.c
14619
14620 PCIE DRIVER FOR HISILICON KIRIN
14621 M: Xiaowei Song <songxiaowei@hisilicon.com>
14622 M: Binghui Wang <wangbinghui@hisilicon.com>
14623 L: linux-pci@vger.kernel.org
14624 S: Maintained
14625 F: Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14626 F: drivers/pci/controller/dwc/pcie-kirin.c
14627
14628 PCIE DRIVER FOR HISILICON STB
14629 M: Shawn Guo <shawn.guo@linaro.org>
14630 L: linux-pci@vger.kernel.org
14631 S: Maintained
14632 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14633 F: drivers/pci/controller/dwc/pcie-histb.c
14634
14635 PCIE DRIVER FOR INTEL KEEM BAY
14636 M: Srikanth Thokala <srikanth.thokala@intel.com>
14637 L: linux-pci@vger.kernel.org
14638 S: Supported
14639 F: Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14640 F: drivers/pci/controller/dwc/pcie-keembay.c
14641
14642 PCIE DRIVER FOR INTEL LGM GW SOC
14643 M: Rahul Tanwar <rtanwar@maxlinear.com>
14644 L: linux-pci@vger.kernel.org
14645 S: Maintained
14646 F: Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14647 F: drivers/pci/controller/dwc/pcie-intel-gw.c
14648
14649 PCIE DRIVER FOR MEDIATEK
14650 M: Ryder Lee <ryder.lee@mediatek.com>
14651 M: Jianjun Wang <jianjun.wang@mediatek.com>
14652 L: linux-pci@vger.kernel.org
14653 L: linux-mediatek@lists.infradead.org
14654 S: Supported
14655 F: Documentation/devicetree/bindings/pci/mediatek*
14656 F: drivers/pci/controller/*mediatek*
14657
14658 PCIE DRIVER FOR MICROCHIP
14659 M: Daire McNamara <daire.mcnamara@microchip.com>
14660 L: linux-pci@vger.kernel.org
14661 S: Supported
14662 F: Documentation/devicetree/bindings/pci/microchip*
14663 F: drivers/pci/controller/*microchip*
14664
14665 PCIE DRIVER FOR QUALCOMM MSM
14666 M: Stanimir Varbanov <svarbanov@mm-sol.com>
14667 L: linux-pci@vger.kernel.org
14668 L: linux-arm-msm@vger.kernel.org
14669 S: Maintained
14670 F: drivers/pci/controller/dwc/*qcom*
14671
14672 PCIE DRIVER FOR ROCKCHIP
14673 M: Shawn Lin <shawn.lin@rock-chips.com>
14674 L: linux-pci@vger.kernel.org
14675 L: linux-rockchip@lists.infradead.org
14676 S: Maintained
14677 F: Documentation/devicetree/bindings/pci/rockchip-pcie*
14678 F: drivers/pci/controller/pcie-rockchip*
14679
14680 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14681 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14682 L: linux-pci@vger.kernel.org
14683 S: Maintained
14684 F: Documentation/devicetree/bindings/pci/uniphier-pcie*
14685 F: drivers/pci/controller/dwc/pcie-uniphier*
14686
14687 PCIE DRIVER FOR ST SPEAR13XX
14688 M: Pratyush Anand <pratyush.anand@gmail.com>
14689 L: linux-pci@vger.kernel.org
14690 S: Maintained
14691 F: drivers/pci/controller/dwc/*spear*
14692
14693 PCMCIA SUBSYSTEM
14694 M: Dominik Brodowski <linux@dominikbrodowski.net>
14695 S: Odd Fixes
14696 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14697 F: Documentation/pcmcia/
14698 F: drivers/pcmcia/
14699 F: include/pcmcia/
14700 F: tools/pcmcia/
14701
14702 PCNET32 NETWORK DRIVER
14703 M: Don Fry <pcnet32@frontier.com>
14704 L: netdev@vger.kernel.org
14705 S: Maintained
14706 F: drivers/net/ethernet/amd/pcnet32.c
14707
14708 PCRYPT PARALLEL CRYPTO ENGINE
14709 M: Steffen Klassert <steffen.klassert@secunet.com>
14710 L: linux-crypto@vger.kernel.org
14711 S: Maintained
14712 F: crypto/pcrypt.c
14713 F: include/crypto/pcrypt.h
14714
14715 PEAQ WMI HOTKEYS DRIVER
14716 M: Hans de Goede <hdegoede@redhat.com>
14717 L: platform-driver-x86@vger.kernel.org
14718 S: Maintained
14719 F: drivers/platform/x86/peaq-wmi.c
14720
14721 PENSANDO ETHERNET DRIVERS
14722 M: Shannon Nelson <snelson@pensando.io>
14723 M: drivers@pensando.io
14724 L: netdev@vger.kernel.org
14725 S: Supported
14726 F: Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14727 F: drivers/net/ethernet/pensando/
14728
14729 PER-CPU MEMORY ALLOCATOR
14730 M: Dennis Zhou <dennis@kernel.org>
14731 M: Tejun Heo <tj@kernel.org>
14732 M: Christoph Lameter <cl@linux.com>
14733 L: linux-mm@kvack.org
14734 S: Maintained
14735 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14736 F: arch/*/include/asm/percpu.h
14737 F: include/linux/percpu*.h
14738 F: lib/percpu*.c
14739 F: mm/percpu*.c
14740
14741 PER-TASK DELAY ACCOUNTING
14742 M: Balbir Singh <bsingharora@gmail.com>
14743 S: Maintained
14744 F: include/linux/delayacct.h
14745 F: kernel/delayacct.c
14746
14747 PERFORMANCE EVENTS SUBSYSTEM
14748 M: Peter Zijlstra <peterz@infradead.org>
14749 M: Ingo Molnar <mingo@redhat.com>
14750 M: Arnaldo Carvalho de Melo <acme@kernel.org>
14751 R: Mark Rutland <mark.rutland@arm.com>
14752 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
14753 R: Jiri Olsa <jolsa@redhat.com>
14754 R: Namhyung Kim <namhyung@kernel.org>
14755 L: linux-perf-users@vger.kernel.org
14756 L: linux-kernel@vger.kernel.org
14757 S: Supported
14758 W: https://perf.wiki.kernel.org/
14759 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14760 F: arch/*/events/*
14761 F: arch/*/events/*/*
14762 F: arch/*/include/asm/perf_event.h
14763 F: arch/*/kernel/*/*/perf_event*.c
14764 F: arch/*/kernel/*/perf_event*.c
14765 F: arch/*/kernel/perf_callchain.c
14766 F: arch/*/kernel/perf_event*.c
14767 F: include/linux/perf_event.h
14768 F: include/uapi/linux/perf_event.h
14769 F: kernel/events/*
14770 F: tools/lib/perf/
14771 F: tools/perf/
14772
14773 PERFORMANCE EVENTS TOOLING ARM64
14774 R: John Garry <john.garry@huawei.com>
14775 R: Will Deacon <will@kernel.org>
14776 R: Mathieu Poirier <mathieu.poirier@linaro.org>
14777 R: Leo Yan <leo.yan@linaro.org>
14778 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14779 S: Supported
14780 F: tools/build/feature/test-libopencsd.c
14781 F: tools/perf/arch/arm*/
14782 F: tools/perf/pmu-events/arch/arm64/
14783 F: tools/perf/util/arm-spe*
14784 F: tools/perf/util/cs-etm*
14785
14786 PERSONALITY HANDLING
14787 M: Christoph Hellwig <hch@infradead.org>
14788 L: linux-abi-devel@lists.sourceforge.net
14789 S: Maintained
14790 F: include/linux/personality.h
14791 F: include/uapi/linux/personality.h
14792
14793 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14794 M: Marcus Folkesson <marcus.folkesson@gmail.com>
14795 L: linux-input@vger.kernel.org
14796 S: Maintained
14797 F: Documentation/input/devices/pxrc.rst
14798 F: drivers/input/joystick/pxrc.c
14799
14800 PHONET PROTOCOL
14801 M: Remi Denis-Courmont <courmisch@gmail.com>
14802 S: Supported
14803 F: Documentation/networking/phonet.rst
14804 F: include/linux/phonet.h
14805 F: include/net/phonet/
14806 F: include/uapi/linux/phonet.h
14807 F: net/phonet/
14808
14809 PHRAM MTD DRIVER
14810 M: Joern Engel <joern@lazybastard.org>
14811 L: linux-mtd@lists.infradead.org
14812 S: Maintained
14813 F: drivers/mtd/devices/phram.c
14814
14815 PICOLCD HID DRIVER
14816 M: Bruno Prémont <bonbons@linux-vserver.org>
14817 L: linux-input@vger.kernel.org
14818 S: Maintained
14819 F: drivers/hid/hid-picolcd*
14820
14821 PIDFD API
14822 M: Christian Brauner <christian@brauner.io>
14823 L: linux-kernel@vger.kernel.org
14824 S: Maintained
14825 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14826 F: samples/pidfd/
14827 F: tools/testing/selftests/clone3/
14828 F: tools/testing/selftests/pid_namespace/
14829 F: tools/testing/selftests/pidfd/
14830 K: (?i)pidfd
14831 K: (?i)clone3
14832 K: \b(clone_args|kernel_clone_args)\b
14833
14834 PIN CONTROL SUBSYSTEM
14835 M: Linus Walleij <linus.walleij@linaro.org>
14836 L: linux-gpio@vger.kernel.org
14837 S: Maintained
14838 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14839 F: Documentation/devicetree/bindings/pinctrl/
14840 F: Documentation/driver-api/pin-control.rst
14841 F: drivers/pinctrl/
14842 F: include/linux/pinctrl/
14843
14844 PIN CONTROLLER - AMD
14845 M: Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14846 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14847 S: Maintained
14848 F: drivers/pinctrl/pinctrl-amd.c
14849
14850 PIN CONTROLLER - FREESCALE
14851 M: Dong Aisheng <aisheng.dong@nxp.com>
14852 M: Fabio Estevam <festevam@gmail.com>
14853 M: Shawn Guo <shawnguo@kernel.org>
14854 M: Stefan Agner <stefan@agner.ch>
14855 R: Pengutronix Kernel Team <kernel@pengutronix.de>
14856 L: linux-gpio@vger.kernel.org
14857 S: Maintained
14858 F: Documentation/devicetree/bindings/pinctrl/fsl,*
14859 F: drivers/pinctrl/freescale/
14860
14861 PIN CONTROLLER - INTEL
14862 M: Mika Westerberg <mika.westerberg@linux.intel.com>
14863 M: Andy Shevchenko <andy@kernel.org>
14864 S: Maintained
14865 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14866 F: drivers/pinctrl/intel/
14867
14868 PIN CONTROLLER - KEEMBAY
14869 M: Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14870 S: Supported
14871 F: drivers/pinctrl/pinctrl-keembay*
14872
14873 PIN CONTROLLER - MEDIATEK
14874 M: Sean Wang <sean.wang@kernel.org>
14875 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14876 S: Maintained
14877 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14878 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14879 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14880 F: Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14881 F: drivers/pinctrl/mediatek/
14882
14883 PIN CONTROLLER - MICROCHIP AT91
14884 M: Ludovic Desroches <ludovic.desroches@microchip.com>
14885 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14886 L: linux-gpio@vger.kernel.org
14887 S: Supported
14888 F: drivers/gpio/gpio-sama5d2-piobu.c
14889 F: drivers/pinctrl/pinctrl-at91*
14890
14891 PIN CONTROLLER - QUALCOMM
14892 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14893 L: linux-arm-msm@vger.kernel.org
14894 S: Maintained
14895 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14896 F: drivers/pinctrl/qcom/
14897
14898 PIN CONTROLLER - RENESAS
14899 M: Geert Uytterhoeven <geert+renesas@glider.be>
14900 L: linux-renesas-soc@vger.kernel.org
14901 S: Supported
14902 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14903 F: Documentation/devicetree/bindings/pinctrl/renesas,*
14904 F: drivers/pinctrl/renesas/
14905
14906 PIN CONTROLLER - SAMSUNG
14907 M: Tomasz Figa <tomasz.figa@gmail.com>
14908 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14909 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14910 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14911 L: linux-samsung-soc@vger.kernel.org
14912 S: Maintained
14913 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
14914 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14915 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14916 F: drivers/pinctrl/samsung/
14917 F: include/dt-bindings/pinctrl/samsung.h
14918
14919 PIN CONTROLLER - SINGLE
14920 M: Tony Lindgren <tony@atomide.com>
14921 M: Haojian Zhuang <haojian.zhuang@linaro.org>
14922 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14923 L: linux-omap@vger.kernel.org
14924 S: Maintained
14925 F: drivers/pinctrl/pinctrl-single.c
14926
14927 PIN CONTROLLER - ST SPEAR
14928 M: Viresh Kumar <vireshk@kernel.org>
14929 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14930 S: Maintained
14931 W: http://www.st.com/spear
14932 F: drivers/pinctrl/spear/
14933
14934 PKTCDVD DRIVER
14935 M: linux-block@vger.kernel.org
14936 S: Orphan
14937 F: drivers/block/pktcdvd.c
14938 F: include/linux/pktcdvd.h
14939 F: include/uapi/linux/pktcdvd.h
14940
14941 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14942 M: Tomasz Duszynski <tduszyns@gmail.com>
14943 S: Maintained
14944 F: Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14945 F: drivers/iio/chemical/pms7003.c
14946
14947 PLDMFW LIBRARY
14948 M: Jacob Keller <jacob.e.keller@intel.com>
14949 S: Maintained
14950 F: Documentation/driver-api/pldmfw/
14951 F: include/linux/pldmfw.h
14952 F: lib/pldmfw/
14953
14954 PLX DMA DRIVER
14955 M: Logan Gunthorpe <logang@deltatee.com>
14956 S: Maintained
14957 F: drivers/dma/plx_dma.c
14958
14959 PM6764TR DRIVER
14960 M: Charles Hsu <hsu.yungteng@gmail.com>
14961 L: linux-hwmon@vger.kernel.org
14962 S: Maintained
14963 F: Documentation/hwmon/pm6764tr.rst
14964 F: drivers/hwmon/pmbus/pm6764tr.c
14965
14966 PM-GRAPH UTILITY
14967 M: "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14968 L: linux-pm@vger.kernel.org
14969 S: Supported
14970 W: https://01.org/pm-graph
14971 B: https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14972 T: git git://github.com/intel/pm-graph
14973 F: tools/power/pm-graph
14974
14975 PMBUS HARDWARE MONITORING DRIVERS
14976 M: Guenter Roeck <linux@roeck-us.net>
14977 L: linux-hwmon@vger.kernel.org
14978 S: Maintained
14979 W: http://hwmon.wiki.kernel.org/
14980 W: http://www.roeck-us.net/linux/drivers/
14981 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14982 F: Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14983 F: Documentation/devicetree/bindings/hwmon/ltc2978.txt
14984 F: Documentation/devicetree/bindings/hwmon/max31785.txt
14985 F: Documentation/hwmon/adm1275.rst
14986 F: Documentation/hwmon/ibm-cffps.rst
14987 F: Documentation/hwmon/ir35221.rst
14988 F: Documentation/hwmon/lm25066.rst
14989 F: Documentation/hwmon/ltc2978.rst
14990 F: Documentation/hwmon/ltc3815.rst
14991 F: Documentation/hwmon/max16064.rst
14992 F: Documentation/hwmon/max20751.rst
14993 F: Documentation/hwmon/max31785.rst
14994 F: Documentation/hwmon/max34440.rst
14995 F: Documentation/hwmon/max8688.rst
14996 F: Documentation/hwmon/pmbus-core.rst
14997 F: Documentation/hwmon/pmbus.rst
14998 F: Documentation/hwmon/tps40422.rst
14999 F: Documentation/hwmon/ucd9000.rst
15000 F: Documentation/hwmon/ucd9200.rst
15001 F: Documentation/hwmon/zl6100.rst
15002 F: drivers/hwmon/pmbus/
15003 F: include/linux/pmbus.h
15004
15005 PMC SIERRA MaxRAID DRIVER
15006 L: linux-scsi@vger.kernel.org
15007 S: Orphan
15008 W: http://www.pmc-sierra.com/
15009 F: drivers/scsi/pmcraid.*
15010
15011 PMC SIERRA PM8001 DRIVER
15012 M: Jack Wang <jinpu.wang@cloud.ionos.com>
15013 L: linux-scsi@vger.kernel.org
15014 S: Supported
15015 F: drivers/scsi/pm8001/
15016
15017 PNI RM3100 IIO DRIVER
15018 M: Song Qiang <songqiang1304521@gmail.com>
15019 L: linux-iio@vger.kernel.org
15020 S: Maintained
15021 F: Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15022 F: drivers/iio/magnetometer/rm3100*
15023
15024 PNP SUPPORT
15025 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15026 L: linux-acpi@vger.kernel.org
15027 S: Maintained
15028 F: drivers/pnp/
15029 F: include/linux/pnp.h
15030
15031 POSIX CLOCKS and TIMERS
15032 M: Thomas Gleixner <tglx@linutronix.de>
15033 L: linux-kernel@vger.kernel.org
15034 S: Maintained
15035 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15036 F: fs/timerfd.c
15037 F: include/linux/time_namespace.h
15038 F: include/linux/timer*
15039 F: kernel/time/*timer*
15040 F: kernel/time/namespace.c
15041
15042 POWER MANAGEMENT CORE
15043 M: "Rafael J. Wysocki" <rafael@kernel.org>
15044 L: linux-pm@vger.kernel.org
15045 S: Supported
15046 B: https://bugzilla.kernel.org
15047 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15048 F: drivers/base/power/
15049 F: drivers/powercap/
15050 F: include/linux/intel_rapl.h
15051 F: include/linux/pm.h
15052 F: include/linux/pm_*
15053 F: include/linux/powercap.h
15054 F: kernel/configs/nopm.config
15055
15056 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15057 M: Daniel Lezcano <daniel.lezcano@kernel.org>
15058 L: linux-pm@vger.kernel.org
15059 S: Supported
15060 B: https://bugzilla.kernel.org
15061 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15062 F: drivers/powercap/dtpm*
15063 F: include/linux/dtpm.h
15064
15065 POWER STATE COORDINATION INTERFACE (PSCI)
15066 M: Mark Rutland <mark.rutland@arm.com>
15067 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15068 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15069 S: Maintained
15070 F: drivers/firmware/psci/
15071 F: include/linux/psci.h
15072 F: include/uapi/linux/psci.h
15073
15074 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15075 M: Sebastian Reichel <sre@kernel.org>
15076 L: linux-pm@vger.kernel.org
15077 S: Maintained
15078 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15079 F: Documentation/ABI/testing/sysfs-class-power
15080 F: Documentation/devicetree/bindings/power/supply/
15081 F: drivers/power/supply/
15082 F: include/linux/power/
15083 F: include/linux/power_supply.h
15084
15085 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15086 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15087 L: linuxppc-dev@lists.ozlabs.org
15088 S: Maintained
15089 F: drivers/char/powernv-op-panel.c
15090
15091 PPP OVER ATM (RFC 2364)
15092 M: Mitchell Blank Jr <mitch@sfgoth.com>
15093 S: Maintained
15094 F: include/uapi/linux/atmppp.h
15095 F: net/atm/pppoatm.c
15096
15097 PPP OVER ETHERNET
15098 M: Michal Ostrowski <mostrows@earthlink.net>
15099 S: Maintained
15100 F: drivers/net/ppp/pppoe.c
15101 F: drivers/net/ppp/pppox.c
15102
15103 PPP OVER L2TP
15104 M: James Chapman <jchapman@katalix.com>
15105 S: Maintained
15106 F: include/linux/if_pppol2tp.h
15107 F: include/uapi/linux/if_pppol2tp.h
15108 F: net/l2tp/l2tp_ppp.c
15109
15110 PPP PROTOCOL DRIVERS AND COMPRESSORS
15111 M: Paul Mackerras <paulus@samba.org>
15112 L: linux-ppp@vger.kernel.org
15113 S: Maintained
15114 F: drivers/net/ppp/ppp_*
15115
15116 PPS SUPPORT
15117 M: Rodolfo Giometti <giometti@enneenne.com>
15118 L: linuxpps@ml.enneenne.com (subscribers-only)
15119 S: Maintained
15120 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
15121 F: Documentation/ABI/testing/sysfs-pps
15122 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
15123 F: Documentation/driver-api/pps.rst
15124 F: drivers/pps/
15125 F: include/linux/pps*.h
15126 F: include/uapi/linux/pps.h
15127
15128 PPTP DRIVER
15129 M: Dmitry Kozlov <xeb@mail.ru>
15130 L: netdev@vger.kernel.org
15131 S: Maintained
15132 W: http://sourceforge.net/projects/accel-pptp
15133 F: drivers/net/ppp/pptp.c
15134
15135 PRESSURE STALL INFORMATION (PSI)
15136 M: Johannes Weiner <hannes@cmpxchg.org>
15137 S: Maintained
15138 F: include/linux/psi*
15139 F: kernel/sched/psi.c
15140
15141 PRINTK
15142 M: Petr Mladek <pmladek@suse.com>
15143 M: Sergey Senozhatsky <senozhatsky@chromium.org>
15144 R: Steven Rostedt <rostedt@goodmis.org>
15145 R: John Ogness <john.ogness@linutronix.de>
15146 S: Maintained
15147 F: include/linux/printk.h
15148 F: kernel/printk/
15149
15150 PRINTK INDEXING
15151 R: Chris Down <chris@chrisdown.name>
15152 S: Maintained
15153 F: kernel/printk/index.c
15154
15155 PROC FILESYSTEM
15156 L: linux-kernel@vger.kernel.org
15157 L: linux-fsdevel@vger.kernel.org
15158 S: Maintained
15159 F: Documentation/filesystems/proc.rst
15160 F: fs/proc/
15161 F: include/linux/proc_fs.h
15162 F: tools/testing/selftests/proc/
15163
15164 PROC SYSCTL
15165 M: Luis Chamberlain <mcgrof@kernel.org>
15166 M: Kees Cook <keescook@chromium.org>
15167 M: Iurii Zaikin <yzaikin@google.com>
15168 L: linux-kernel@vger.kernel.org
15169 L: linux-fsdevel@vger.kernel.org
15170 S: Maintained
15171 F: fs/proc/proc_sysctl.c
15172 F: include/linux/sysctl.h
15173 F: kernel/sysctl-test.c
15174 F: kernel/sysctl.c
15175 F: tools/testing/selftests/sysctl/
15176
15177 PS3 NETWORK SUPPORT
15178 M: Geoff Levand <geoff@infradead.org>
15179 L: netdev@vger.kernel.org
15180 L: linuxppc-dev@lists.ozlabs.org
15181 S: Maintained
15182 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
15183
15184 PS3 PLATFORM SUPPORT
15185 M: Geoff Levand <geoff@infradead.org>
15186 L: linuxppc-dev@lists.ozlabs.org
15187 S: Maintained
15188 F: arch/powerpc/boot/ps3*
15189 F: arch/powerpc/include/asm/lv1call.h
15190 F: arch/powerpc/include/asm/ps3*.h
15191 F: arch/powerpc/platforms/ps3/
15192 F: drivers/*/ps3*
15193 F: drivers/ps3/
15194 F: drivers/rtc/rtc-ps3.c
15195 F: drivers/usb/host/*ps3.c
15196 F: sound/ppc/snd_ps3*
15197
15198 PS3VRAM DRIVER
15199 M: Jim Paris <jim@jtan.com>
15200 M: Geoff Levand <geoff@infradead.org>
15201 L: linuxppc-dev@lists.ozlabs.org
15202 S: Maintained
15203 F: drivers/block/ps3vram.c
15204
15205 PSAMPLE PACKET SAMPLING SUPPORT
15206 M: Yotam Gigi <yotam.gi@gmail.com>
15207 S: Maintained
15208 F: include/net/psample.h
15209 F: include/uapi/linux/psample.h
15210 F: net/psample
15211
15212 PSTORE FILESYSTEM
15213 M: Kees Cook <keescook@chromium.org>
15214 M: Anton Vorontsov <anton@enomsg.org>
15215 M: Colin Cross <ccross@android.com>
15216 M: Tony Luck <tony.luck@intel.com>
15217 S: Maintained
15218 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15219 F: Documentation/admin-guide/ramoops.rst
15220 F: Documentation/admin-guide/pstore-blk.rst
15221 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15222 F: drivers/acpi/apei/erst.c
15223 F: drivers/firmware/efi/efi-pstore.c
15224 F: fs/pstore/
15225 F: include/linux/pstore*
15226 K: \b(pstore|ramoops)
15227
15228 PTP HARDWARE CLOCK SUPPORT
15229 M: Richard Cochran <richardcochran@gmail.com>
15230 L: netdev@vger.kernel.org
15231 S: Maintained
15232 W: http://linuxptp.sourceforge.net/
15233 F: Documentation/ABI/testing/sysfs-ptp
15234 F: Documentation/driver-api/ptp.rst
15235 F: drivers/net/phy/dp83640*
15236 F: drivers/ptp/*
15237 F: include/linux/ptp_cl*
15238
15239 PTP VIRTUAL CLOCK SUPPORT
15240 M: Yangbo Lu <yangbo.lu@nxp.com>
15241 L: netdev@vger.kernel.org
15242 S: Maintained
15243 F: drivers/ptp/ptp_vclock.c
15244 F: net/ethtool/phc_vclocks.c
15245
15246 PTRACE SUPPORT
15247 M: Oleg Nesterov <oleg@redhat.com>
15248 S: Maintained
15249 F: arch/*/*/ptrace*.c
15250 F: arch/*/include/asm/ptrace*.h
15251 F: arch/*/ptrace*.c
15252 F: include/asm-generic/syscall.h
15253 F: include/linux/ptrace.h
15254 F: include/linux/regset.h
15255 F: include/linux/tracehook.h
15256 F: include/uapi/linux/ptrace.h
15257 F: include/uapi/linux/ptrace.h
15258 F: kernel/ptrace.c
15259
15260 PULSE8-CEC DRIVER
15261 M: Hans Verkuil <hverkuil@xs4all.nl>
15262 L: linux-media@vger.kernel.org
15263 S: Maintained
15264 T: git git://linuxtv.org/media_tree.git
15265 F: Documentation/admin-guide/media/pulse8-cec.rst
15266 F: drivers/media/cec/usb/pulse8/
15267
15268 PVRUSB2 VIDEO4LINUX DRIVER
15269 M: Mike Isely <isely@pobox.com>
15270 L: pvrusb2@isely.net (subscribers-only)
15271 L: linux-media@vger.kernel.org
15272 S: Maintained
15273 W: http://www.isely.net/pvrusb2/
15274 T: git git://linuxtv.org/media_tree.git
15275 F: Documentation/driver-api/media/drivers/pvrusb2*
15276 F: drivers/media/usb/pvrusb2/
15277
15278 PWC WEBCAM DRIVER
15279 M: Hans Verkuil <hverkuil@xs4all.nl>
15280 L: linux-media@vger.kernel.org
15281 S: Odd Fixes
15282 T: git git://linuxtv.org/media_tree.git
15283 F: drivers/media/usb/pwc/*
15284 F: include/trace/events/pwc.h
15285
15286 PWM FAN DRIVER
15287 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15288 L: linux-hwmon@vger.kernel.org
15289 S: Supported
15290 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15291 F: Documentation/hwmon/pwm-fan.rst
15292 F: drivers/hwmon/pwm-fan.c
15293
15294 PWM IR Transmitter
15295 M: Sean Young <sean@mess.org>
15296 L: linux-media@vger.kernel.org
15297 S: Maintained
15298 F: drivers/media/rc/pwm-ir-tx.c
15299
15300 PWM SUBSYSTEM
15301 M: Thierry Reding <thierry.reding@gmail.com>
15302 R: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15303 M: Lee Jones <lee.jones@linaro.org>
15304 L: linux-pwm@vger.kernel.org
15305 S: Maintained
15306 Q: https://patchwork.ozlabs.org/project/linux-pwm/list/
15307 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15308 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15309 F: Documentation/devicetree/bindings/pwm/
15310 F: Documentation/driver-api/pwm.rst
15311 F: drivers/gpio/gpio-mvebu.c
15312 F: drivers/pwm/
15313 F: drivers/video/backlight/pwm_bl.c
15314 F: include/linux/pwm.h
15315 F: include/linux/pwm_backlight.h
15316 K: pwm_(config|apply_state|ops)
15317
15318 PXA GPIO DRIVER
15319 M: Robert Jarzmik <robert.jarzmik@free.fr>
15320 L: linux-gpio@vger.kernel.org
15321 S: Maintained
15322 F: drivers/gpio/gpio-pxa.c
15323
15324 PXA MMCI DRIVER
15325 S: Orphan
15326
15327 PXA RTC DRIVER
15328 M: Robert Jarzmik <robert.jarzmik@free.fr>
15329 L: linux-rtc@vger.kernel.org
15330 S: Maintained
15331
15332 PXA2xx/PXA3xx SUPPORT
15333 M: Daniel Mack <daniel@zonque.org>
15334 M: Haojian Zhuang <haojian.zhuang@gmail.com>
15335 M: Robert Jarzmik <robert.jarzmik@free.fr>
15336 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15337 S: Maintained
15338 T: git git://github.com/hzhuang1/linux.git
15339 T: git git://github.com/rjarzmik/linux.git
15340 F: arch/arm/boot/dts/pxa*
15341 F: arch/arm/mach-pxa/
15342 F: drivers/dma/pxa*
15343 F: drivers/pcmcia/pxa2xx*
15344 F: drivers/pinctrl/pxa/
15345 F: drivers/spi/spi-pxa2xx*
15346 F: drivers/usb/gadget/udc/pxa2*
15347 F: include/sound/pxa2xx-lib.h
15348 F: sound/arm/pxa*
15349 F: sound/soc/pxa/
15350
15351 QAT DRIVER
15352 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15353 L: qat-linux@intel.com
15354 S: Supported
15355 F: drivers/crypto/qat/
15356
15357 QCOM AUDIO (ASoC) DRIVERS
15358 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15359 M: Banajit Goswami <bgoswami@codeaurora.org>
15360 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15361 S: Supported
15362 F: sound/soc/codecs/lpass-va-macro.c
15363 F: sound/soc/codecs/lpass-wsa-macro.*
15364 F: sound/soc/codecs/msm8916-wcd-analog.c
15365 F: sound/soc/codecs/msm8916-wcd-digital.c
15366 F: sound/soc/codecs/wcd9335.*
15367 F: sound/soc/codecs/wcd934x.c
15368 F: sound/soc/codecs/wcd-clsh-v2.*
15369 F: sound/soc/codecs/wsa881x.c
15370 F: sound/soc/qcom/
15371
15372 QCOM IPA DRIVER
15373 M: Alex Elder <elder@kernel.org>
15374 L: netdev@vger.kernel.org
15375 S: Supported
15376 F: drivers/net/ipa/
15377
15378 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15379 M: Gabriel Somlo <somlo@cmu.edu>
15380 M: "Michael S. Tsirkin" <mst@redhat.com>
15381 L: qemu-devel@nongnu.org
15382 S: Maintained
15383 F: drivers/firmware/qemu_fw_cfg.c
15384 F: include/uapi/linux/qemu_fw_cfg.h
15385
15386 QIB DRIVER
15387 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15388 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15389 L: linux-rdma@vger.kernel.org
15390 S: Supported
15391 F: drivers/infiniband/hw/qib/
15392
15393 QLOGIC QL41xxx FCOE DRIVER
15394 M: Saurav Kashyap <skashyap@marvell.com>
15395 M: Javed Hasan <jhasan@marvell.com>
15396 M: GR-QLogic-Storage-Upstream@marvell.com
15397 L: linux-scsi@vger.kernel.org
15398 S: Supported
15399 F: drivers/scsi/qedf/
15400
15401 QLOGIC QL41xxx ISCSI DRIVER
15402 M: Nilesh Javali <njavali@marvell.com>
15403 M: Manish Rangankar <mrangankar@marvell.com>
15404 M: GR-QLogic-Storage-Upstream@marvell.com
15405 L: linux-scsi@vger.kernel.org
15406 S: Supported
15407 F: drivers/scsi/qedi/
15408
15409 QLOGIC QL4xxx ETHERNET DRIVER
15410 M: Ariel Elior <aelior@marvell.com>
15411 M: GR-everest-linux-l2@marvell.com
15412 L: netdev@vger.kernel.org
15413 S: Supported
15414 F: drivers/net/ethernet/qlogic/qed/
15415 F: drivers/net/ethernet/qlogic/qede/
15416 F: include/linux/qed/
15417
15418 QLOGIC QL4xxx RDMA DRIVER
15419 M: Michal Kalderon <mkalderon@marvell.com>
15420 M: Ariel Elior <aelior@marvell.com>
15421 L: linux-rdma@vger.kernel.org
15422 S: Supported
15423 F: drivers/infiniband/hw/qedr/
15424 F: include/uapi/rdma/qedr-abi.h
15425
15426 QLOGIC QLA1280 SCSI DRIVER
15427 M: Michael Reed <mdr@sgi.com>
15428 L: linux-scsi@vger.kernel.org
15429 S: Maintained
15430 F: drivers/scsi/qla1280.[ch]
15431
15432 QLOGIC QLA2XXX FC-SCSI DRIVER
15433 M: Nilesh Javali <njavali@marvell.com>
15434 M: GR-QLogic-Storage-Upstream@marvell.com
15435 L: linux-scsi@vger.kernel.org
15436 S: Supported
15437 F: drivers/scsi/qla2xxx/
15438
15439 QLOGIC QLA3XXX NETWORK DRIVER
15440 M: GR-Linux-NIC-Dev@marvell.com
15441 L: netdev@vger.kernel.org
15442 S: Supported
15443 F: drivers/net/ethernet/qlogic/qla3xxx.*
15444
15445 QLOGIC QLA4XXX iSCSI DRIVER
15446 M: Nilesh Javali <njavali@marvell.com>
15447 M: Manish Rangankar <mrangankar@marvell.com>
15448 M: GR-QLogic-Storage-Upstream@marvell.com
15449 L: linux-scsi@vger.kernel.org
15450 S: Supported
15451 F: drivers/scsi/qla4xxx/
15452
15453 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15454 M: Shahed Shaikh <shshaikh@marvell.com>
15455 M: Manish Chopra <manishc@marvell.com>
15456 M: GR-Linux-NIC-Dev@marvell.com
15457 L: netdev@vger.kernel.org
15458 S: Supported
15459 F: drivers/net/ethernet/qlogic/qlcnic/
15460
15461 QLOGIC QLGE 10Gb ETHERNET DRIVER
15462 M: Manish Chopra <manishc@marvell.com>
15463 M: GR-Linux-NIC-Dev@marvell.com
15464 M: Coiby Xu <coiby.xu@gmail.com>
15465 L: netdev@vger.kernel.org
15466 S: Supported
15467 F: Documentation/networking/device_drivers/qlogic/qlge.rst
15468 F: drivers/staging/qlge/
15469
15470 QM1D1B0004 MEDIA DRIVER
15471 M: Akihiro Tsukada <tskd08@gmail.com>
15472 L: linux-media@vger.kernel.org
15473 S: Odd Fixes
15474 F: drivers/media/tuners/qm1d1b0004*
15475
15476 QM1D1C0042 MEDIA DRIVER
15477 M: Akihiro Tsukada <tskd08@gmail.com>
15478 L: linux-media@vger.kernel.org
15479 S: Odd Fixes
15480 F: drivers/media/tuners/qm1d1c0042*
15481
15482 QNX4 FILESYSTEM
15483 M: Anders Larsen <al@alarsen.net>
15484 S: Maintained
15485 W: http://www.alarsen.net/linux/qnx4fs/
15486 F: fs/qnx4/
15487 F: include/uapi/linux/qnx4_fs.h
15488 F: include/uapi/linux/qnxtypes.h
15489
15490 QORIQ DPAA2 FSL-MC BUS DRIVER
15491 M: Stuart Yoder <stuyoder@gmail.com>
15492 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
15493 L: linux-kernel@vger.kernel.org
15494 S: Maintained
15495 F: Documentation/ABI/stable/sysfs-bus-fsl-mc
15496 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15497 F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15498 F: drivers/bus/fsl-mc/
15499 F: include/uapi/linux/fsl_mc.h
15500
15501 QT1010 MEDIA DRIVER
15502 M: Antti Palosaari <crope@iki.fi>
15503 L: linux-media@vger.kernel.org
15504 S: Maintained
15505 W: https://linuxtv.org
15506 W: http://palosaari.fi/linux/
15507 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15508 T: git git://linuxtv.org/anttip/media_tree.git
15509 F: drivers/media/tuners/qt1010*
15510
15511 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15512 M: Kalle Valo <kvalo@codeaurora.org>
15513 L: ath10k@lists.infradead.org
15514 S: Supported
15515 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15516 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15517 F: drivers/net/wireless/ath/ath10k/
15518
15519 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15520 M: Kalle Valo <kvalo@codeaurora.org>
15521 L: ath11k@lists.infradead.org
15522 S: Supported
15523 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15524 F: drivers/net/wireless/ath/ath11k/
15525
15526 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15527 M: ath9k-devel@qca.qualcomm.com
15528 L: linux-wireless@vger.kernel.org
15529 S: Supported
15530 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15531 F: drivers/net/wireless/ath/ath9k/
15532
15533 QUALCOMM CAMERA SUBSYSTEM DRIVER
15534 M: Robert Foss <robert.foss@linaro.org>
15535 M: Todor Tomov <todor.too@gmail.com>
15536 L: linux-media@vger.kernel.org
15537 S: Maintained
15538 F: Documentation/admin-guide/media/qcom_camss.rst
15539 F: Documentation/devicetree/bindings/media/*camss*
15540 F: drivers/media/platform/qcom/camss/
15541
15542 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15543 M: Niklas Cassel <nks@flawful.org>
15544 L: linux-pm@vger.kernel.org
15545 L: linux-arm-msm@vger.kernel.org
15546 S: Maintained
15547 F: Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15548 F: drivers/soc/qcom/cpr.c
15549
15550 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15551 M: Ilia Lin <ilia.lin@kernel.org>
15552 L: linux-pm@vger.kernel.org
15553 S: Maintained
15554 F: Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15555 F: drivers/cpufreq/qcom-cpufreq-nvmem.c
15556
15557 QUALCOMM CRYPTO DRIVERS
15558 M: Thara Gopinath <thara.gopinath@linaro.org>
15559 L: linux-crypto@vger.kernel.org
15560 L: linux-arm-msm@vger.kernel.org
15561 S: Maintained
15562 F: drivers/crypto/qce/
15563
15564 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15565 M: Timur Tabi <timur@kernel.org>
15566 L: netdev@vger.kernel.org
15567 S: Maintained
15568 F: drivers/net/ethernet/qualcomm/emac/
15569
15570 QUALCOMM ETHQOS ETHERNET DRIVER
15571 M: Vinod Koul <vkoul@kernel.org>
15572 L: netdev@vger.kernel.org
15573 S: Maintained
15574 F: Documentation/devicetree/bindings/net/qcom,ethqos.txt
15575 F: drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15576
15577 QUALCOMM GENERIC INTERFACE I2C DRIVER
15578 M: Akash Asthana <akashast@codeaurora.org>
15579 M: Mukesh Savaliya <msavaliy@codeaurora.org>
15580 L: linux-i2c@vger.kernel.org
15581 L: linux-arm-msm@vger.kernel.org
15582 S: Supported
15583 F: drivers/i2c/busses/i2c-qcom-geni.c
15584
15585 QUALCOMM HEXAGON ARCHITECTURE
15586 M: Brian Cain <bcain@codeaurora.org>
15587 L: linux-hexagon@vger.kernel.org
15588 S: Supported
15589 F: arch/hexagon/
15590
15591 QUALCOMM HIDMA DRIVER
15592 M: Sinan Kaya <okaya@kernel.org>
15593 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15594 L: linux-arm-msm@vger.kernel.org
15595 L: dmaengine@vger.kernel.org
15596 S: Supported
15597 F: drivers/dma/qcom/hidma*
15598
15599 QUALCOMM I2C CCI DRIVER
15600 M: Loic Poulain <loic.poulain@linaro.org>
15601 M: Robert Foss <robert.foss@linaro.org>
15602 L: linux-i2c@vger.kernel.org
15603 L: linux-arm-msm@vger.kernel.org
15604 S: Maintained
15605 F: Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15606 F: drivers/i2c/busses/i2c-qcom-cci.c
15607
15608 QUALCOMM IOMMU
15609 M: Rob Clark <robdclark@gmail.com>
15610 L: iommu@lists.linux-foundation.org
15611 L: iommu@lists.linux.dev
15612 L: linux-arm-msm@vger.kernel.org
15613 S: Maintained
15614 F: drivers/iommu/arm/arm-smmu/qcom_iommu.c
15615
15616 QUALCOMM IPC ROUTER (QRTR) DRIVER
15617 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15618 L: linux-arm-msm@vger.kernel.org
15619 S: Maintained
15620 F: include/trace/events/qrtr.h
15621 F: include/uapi/linux/qrtr.h
15622 F: net/qrtr/
15623
15624 QUALCOMM IPCC MAILBOX DRIVER
15625 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15626 L: linux-arm-msm@vger.kernel.org
15627 S: Supported
15628 F: Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15629 F: drivers/mailbox/qcom-ipcc.c
15630 F: include/dt-bindings/mailbox/qcom-ipcc.h
15631
15632 QUALCOMM IPQ4019 USB PHY DRIVER
15633 M: Robert Marko <robert.marko@sartura.hr>
15634 M: Luka Perkov <luka.perkov@sartura.hr>
15635 L: linux-arm-msm@vger.kernel.org
15636 S: Maintained
15637 F: Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15638 F: drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15639
15640 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15641 M: Robert Marko <robert.marko@sartura.hr>
15642 M: Luka Perkov <luka.perkov@sartura.hr>
15643 L: linux-arm-msm@vger.kernel.org
15644 S: Maintained
15645 F: Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15646 F: drivers/regulator/vqmmc-ipq4019-regulator.c
15647
15648 QUALCOMM RMNET DRIVER
15649 M: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15650 M: Sean Tranchetti <stranche@codeaurora.org>
15651 L: netdev@vger.kernel.org
15652 S: Maintained
15653 F: Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15654 F: drivers/net/ethernet/qualcomm/rmnet/
15655 F: include/linux/if_rmnet.h
15656
15657 QUALCOMM TSENS THERMAL DRIVER
15658 M: Amit Kucheria <amitk@kernel.org>
15659 M: Thara Gopinath <thara.gopinath@linaro.org>
15660 L: linux-pm@vger.kernel.org
15661 L: linux-arm-msm@vger.kernel.org
15662 S: Maintained
15663 F: Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15664 F: drivers/thermal/qcom/
15665
15666 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15667 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
15668 L: linux-media@vger.kernel.org
15669 L: linux-arm-msm@vger.kernel.org
15670 S: Maintained
15671 T: git git://linuxtv.org/media_tree.git
15672 F: Documentation/devicetree/bindings/media/*venus*
15673 F: drivers/media/platform/qcom/venus/
15674
15675 QUALCOMM WCN36XX WIRELESS DRIVER
15676 M: Kalle Valo <kvalo@codeaurora.org>
15677 L: wcn36xx@lists.infradead.org
15678 S: Supported
15679 W: https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15680 T: git git://github.com/KrasnikovEugene/wcn36xx.git
15681 F: drivers/net/wireless/ath/wcn36xx/
15682
15683 QUANTENNA QTNFMAC WIRELESS DRIVER
15684 M: Igor Mitsyanko <imitsyanko@quantenna.com>
15685 R: Sergey Matyukevich <geomatsi@gmail.com>
15686 L: linux-wireless@vger.kernel.org
15687 S: Maintained
15688 F: drivers/net/wireless/quantenna
15689
15690 RADEON and AMDGPU DRM DRIVERS
15691 M: Alex Deucher <alexander.deucher@amd.com>
15692 M: Christian König <christian.koenig@amd.com>
15693 M: Pan, Xinhui <Xinhui.Pan@amd.com>
15694 L: amd-gfx@lists.freedesktop.org
15695 S: Supported
15696 T: git https://gitlab.freedesktop.org/agd5f/linux.git
15697 B: https://gitlab.freedesktop.org/drm/amd/-/issues
15698 C: irc://irc.oftc.net/radeon
15699 F: drivers/gpu/drm/amd/
15700 F: drivers/gpu/drm/radeon/
15701 F: include/uapi/drm/amdgpu_drm.h
15702 F: include/uapi/drm/radeon_drm.h
15703
15704 RADEON FRAMEBUFFER DISPLAY DRIVER
15705 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
15706 L: linux-fbdev@vger.kernel.org
15707 S: Maintained
15708 F: drivers/video/fbdev/aty/radeon*
15709 F: include/uapi/linux/radeonfb.h
15710
15711 RADIOSHARK RADIO DRIVER
15712 M: Hans Verkuil <hverkuil@xs4all.nl>
15713 L: linux-media@vger.kernel.org
15714 S: Maintained
15715 T: git git://linuxtv.org/media_tree.git
15716 F: drivers/media/radio/radio-shark.c
15717
15718 RADIOSHARK2 RADIO DRIVER
15719 M: Hans Verkuil <hverkuil@xs4all.nl>
15720 L: linux-media@vger.kernel.org
15721 S: Maintained
15722 T: git git://linuxtv.org/media_tree.git
15723 F: drivers/media/radio/radio-shark2.c
15724 F: drivers/media/radio/radio-tea5777.c
15725
15726 RADOS BLOCK DEVICE (RBD)
15727 M: Ilya Dryomov <idryomov@gmail.com>
15728 R: Dongsheng Yang <dongsheng.yang@easystack.cn>
15729 L: ceph-devel@vger.kernel.org
15730 S: Supported
15731 W: http://ceph.com/
15732 T: git git://github.com/ceph/ceph-client.git
15733 F: Documentation/ABI/testing/sysfs-bus-rbd
15734 F: drivers/block/rbd.c
15735 F: drivers/block/rbd_types.h
15736
15737 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15738 M: Paul Mackerras <paulus@samba.org>
15739 L: linux-fbdev@vger.kernel.org
15740 S: Maintained
15741 F: drivers/video/fbdev/aty/aty128fb.c
15742
15743 RAINSHADOW-CEC DRIVER
15744 M: Hans Verkuil <hverkuil@xs4all.nl>
15745 L: linux-media@vger.kernel.org
15746 S: Maintained
15747 T: git git://linuxtv.org/media_tree.git
15748 F: drivers/media/cec/usb/rainshadow/
15749
15750 RALINK MIPS ARCHITECTURE
15751 M: John Crispin <john@phrozen.org>
15752 L: linux-mips@vger.kernel.org
15753 S: Maintained
15754 F: arch/mips/ralink
15755
15756 RALINK RT2X00 WIRELESS LAN DRIVER
15757 M: Stanislaw Gruszka <stf_xl@wp.pl>
15758 M: Helmut Schaa <helmut.schaa@googlemail.com>
15759 L: linux-wireless@vger.kernel.org
15760 S: Maintained
15761 F: drivers/net/wireless/ralink/rt2x00/
15762
15763 RAMDISK RAM BLOCK DEVICE DRIVER
15764 M: Jens Axboe <axboe@kernel.dk>
15765 S: Maintained
15766 F: Documentation/admin-guide/blockdev/ramdisk.rst
15767 F: drivers/block/brd.c
15768
15769 RANCHU VIRTUAL BOARD FOR MIPS
15770 M: Miodrag Dinic <miodrag.dinic@mips.com>
15771 L: linux-mips@vger.kernel.org
15772 S: Supported
15773 F: arch/mips/configs/generic/board-ranchu.config
15774 F: arch/mips/generic/board-ranchu.c
15775
15776 RANDOM NUMBER DRIVER
15777 M: "Theodore Ts'o" <tytso@mit.edu>
15778 M: Jason A. Donenfeld <Jason@zx2c4.com>
15779 T: git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
15780 S: Maintained
15781 F: drivers/char/random.c
15782
15783 RAPIDIO SUBSYSTEM
15784 M: Matt Porter <mporter@kernel.crashing.org>
15785 M: Alexandre Bounine <alex.bou9@gmail.com>
15786 S: Maintained
15787 F: drivers/rapidio/
15788
15789 RAS INFRASTRUCTURE
15790 M: Tony Luck <tony.luck@intel.com>
15791 M: Borislav Petkov <bp@alien8.de>
15792 L: linux-edac@vger.kernel.org
15793 S: Maintained
15794 F: Documentation/admin-guide/ras.rst
15795 F: drivers/ras/
15796 F: include/linux/ras.h
15797 F: include/ras/ras_event.h
15798
15799 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15800 L: linux-wireless@vger.kernel.org
15801 S: Orphan
15802 F: drivers/net/wireless/ray*
15803
15804 RC-CORE / LIRC FRAMEWORK
15805 M: Sean Young <sean@mess.org>
15806 L: linux-media@vger.kernel.org
15807 S: Maintained
15808 W: http://linuxtv.org
15809 T: git git://linuxtv.org/media_tree.git
15810 F: Documentation/driver-api/media/rc-core.rst
15811 F: Documentation/userspace-api/media/rc/
15812 F: drivers/media/rc/
15813 F: include/media/rc-map.h
15814 F: include/media/rc-core.h
15815 F: include/uapi/linux/lirc.h
15816
15817 RCMM REMOTE CONTROLS DECODER
15818 M: Patrick Lerda <patrick9876@free.fr>
15819 S: Maintained
15820 F: drivers/media/rc/ir-rcmm-decoder.c
15821
15822 RCUTORTURE TEST FRAMEWORK
15823 M: "Paul E. McKenney" <paulmck@kernel.org>
15824 M: Josh Triplett <josh@joshtriplett.org>
15825 R: Steven Rostedt <rostedt@goodmis.org>
15826 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15827 R: Lai Jiangshan <jiangshanlai@gmail.com>
15828 L: rcu@vger.kernel.org
15829 S: Supported
15830 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15831 F: tools/testing/selftests/rcutorture
15832
15833 RDACM20 Camera Sensor
15834 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15835 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15836 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15837 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15838 L: linux-media@vger.kernel.org
15839 S: Maintained
15840 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15841 F: drivers/media/i2c/max9271.c
15842 F: drivers/media/i2c/max9271.h
15843 F: drivers/media/i2c/rdacm20.c
15844
15845 RDACM21 Camera Sensor
15846 M: Jacopo Mondi <jacopo+renesas@jmondi.org>
15847 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15848 M: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15849 M: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15850 L: linux-media@vger.kernel.org
15851 S: Maintained
15852 F: Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15853 F: drivers/media/i2c/max9271.c
15854 F: drivers/media/i2c/max9271.h
15855 F: drivers/media/i2c/rdacm21.c
15856
15857 RDC R-321X SoC
15858 M: Florian Fainelli <florian@openwrt.org>
15859 S: Maintained
15860
15861 RDC R6040 FAST ETHERNET DRIVER
15862 M: Florian Fainelli <f.fainelli@gmail.com>
15863 L: netdev@vger.kernel.org
15864 S: Maintained
15865 F: drivers/net/ethernet/rdc/r6040.c
15866
15867 RDMAVT - RDMA verbs software
15868 M: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15869 M: Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15870 L: linux-rdma@vger.kernel.org
15871 S: Supported
15872 F: drivers/infiniband/sw/rdmavt
15873
15874 RDS - RELIABLE DATAGRAM SOCKETS
15875 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
15876 L: netdev@vger.kernel.org
15877 L: linux-rdma@vger.kernel.org
15878 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
15879 S: Supported
15880 W: https://oss.oracle.com/projects/rds/
15881 F: Documentation/networking/rds.rst
15882 F: net/rds/
15883
15884 RDT - RESOURCE ALLOCATION
15885 M: Fenghua Yu <fenghua.yu@intel.com>
15886 M: Reinette Chatre <reinette.chatre@intel.com>
15887 L: linux-kernel@vger.kernel.org
15888 S: Supported
15889 F: Documentation/x86/resctrl*
15890 F: arch/x86/include/asm/resctrl.h
15891 F: arch/x86/kernel/cpu/resctrl/
15892 F: tools/testing/selftests/resctrl/
15893
15894 READ-COPY UPDATE (RCU)
15895 M: "Paul E. McKenney" <paulmck@kernel.org>
15896 M: Josh Triplett <josh@joshtriplett.org>
15897 R: Steven Rostedt <rostedt@goodmis.org>
15898 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15899 R: Lai Jiangshan <jiangshanlai@gmail.com>
15900 R: Joel Fernandes <joel@joelfernandes.org>
15901 L: rcu@vger.kernel.org
15902 S: Supported
15903 W: http://www.rdrop.com/users/paulmck/RCU/
15904 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15905 F: Documentation/RCU/
15906 F: include/linux/rcu*
15907 F: kernel/rcu/
15908 X: Documentation/RCU/torture.rst
15909 X: include/linux/srcu*.h
15910 X: kernel/rcu/srcu*.c
15911
15912 REAL TIME CLOCK (RTC) SUBSYSTEM
15913 M: Alessandro Zummo <a.zummo@towertech.it>
15914 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
15915 L: linux-rtc@vger.kernel.org
15916 S: Maintained
15917 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
15918 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15919 F: Documentation/admin-guide/rtc.rst
15920 F: Documentation/devicetree/bindings/rtc/
15921 F: drivers/rtc/
15922 F: include/linux/platform_data/rtc-*
15923 F: include/linux/rtc.h
15924 F: include/linux/rtc/
15925 F: include/uapi/linux/rtc.h
15926 F: tools/testing/selftests/rtc/
15927
15928 REALTEK AUDIO CODECS
15929 M: Oder Chiou <oder_chiou@realtek.com>
15930 S: Maintained
15931 F: include/sound/rt*.h
15932 F: sound/soc/codecs/rt*
15933
15934 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15935 M: Linus Walleij <linus.walleij@linaro.org>
15936 S: Maintained
15937 F: Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15938 F: drivers/net/dsa/realtek-smi*
15939 F: drivers/net/dsa/rtl83*
15940
15941 REALTEK WIRELESS DRIVER (rtlwifi family)
15942 M: Ping-Ke Shih <pkshih@realtek.com>
15943 L: linux-wireless@vger.kernel.org
15944 S: Maintained
15945 W: https://wireless.wiki.kernel.org/
15946 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15947 F: drivers/net/wireless/realtek/rtlwifi/
15948
15949 REALTEK WIRELESS DRIVER (rtw88)
15950 M: Yan-Hsuan Chuang <tony0620emma@gmail.com>
15951 L: linux-wireless@vger.kernel.org
15952 S: Maintained
15953 F: drivers/net/wireless/realtek/rtw88/
15954
15955 REDPINE WIRELESS DRIVER
15956 M: Amitkumar Karwar <amitkarwar@gmail.com>
15957 M: Siva Rebbagondla <siva8118@gmail.com>
15958 L: linux-wireless@vger.kernel.org
15959 S: Maintained
15960 F: drivers/net/wireless/rsi/
15961
15962 REGISTER MAP ABSTRACTION
15963 M: Mark Brown <broonie@kernel.org>
15964 L: linux-kernel@vger.kernel.org
15965 S: Supported
15966 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15967 F: Documentation/devicetree/bindings/regmap/
15968 F: drivers/base/regmap/
15969 F: include/linux/regmap.h
15970
15971 REISERFS FILE SYSTEM
15972 L: reiserfs-devel@vger.kernel.org
15973 S: Supported
15974 F: fs/reiserfs/
15975
15976 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15977 M: Ohad Ben-Cohen <ohad@wizery.com>
15978 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15979 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15980 L: linux-remoteproc@vger.kernel.org
15981 S: Maintained
15982 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15983 F: Documentation/ABI/testing/sysfs-class-remoteproc
15984 F: Documentation/devicetree/bindings/remoteproc/
15985 F: Documentation/staging/remoteproc.rst
15986 F: drivers/remoteproc/
15987 F: include/linux/remoteproc.h
15988 F: include/linux/remoteproc/
15989
15990 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15991 M: Ohad Ben-Cohen <ohad@wizery.com>
15992 M: Bjorn Andersson <bjorn.andersson@linaro.org>
15993 M: Mathieu Poirier <mathieu.poirier@linaro.org>
15994 L: linux-remoteproc@vger.kernel.org
15995 S: Maintained
15996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15997 F: Documentation/ABI/testing/sysfs-bus-rpmsg
15998 F: Documentation/staging/rpmsg.rst
15999 F: drivers/rpmsg/
16000 F: include/linux/rpmsg.h
16001 F: include/linux/rpmsg/
16002 F: include/uapi/linux/rpmsg.h
16003 F: samples/rpmsg/
16004
16005 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16006 M: Stephan Gerhold <stephan@gerhold.net>
16007 L: netdev@vger.kernel.org
16008 L: linux-remoteproc@vger.kernel.org
16009 S: Maintained
16010 F: drivers/net/wwan/rpmsg_wwan_ctrl.c
16011
16012 RENESAS CLOCK DRIVERS
16013 M: Geert Uytterhoeven <geert+renesas@glider.be>
16014 L: linux-renesas-soc@vger.kernel.org
16015 S: Supported
16016 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16017 F: Documentation/devicetree/bindings/clock/renesas,*
16018 F: drivers/clk/renesas/
16019
16020 RENESAS EMEV2 I2C DRIVER
16021 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
16022 L: linux-renesas-soc@vger.kernel.org
16023 S: Supported
16024 F: Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16025 F: drivers/i2c/busses/i2c-emev2.c
16026
16027 RENESAS ETHERNET DRIVERS
16028 R: Sergey Shtylyov <s.shtylyov@omp.ru>
16029 L: netdev@vger.kernel.org
16030 L: linux-renesas-soc@vger.kernel.org
16031 F: Documentation/devicetree/bindings/net/renesas,*.yaml
16032 F: drivers/net/ethernet/renesas/
16033 F: include/linux/sh_eth.h
16034
16035 RENESAS R-CAR GYROADC DRIVER
16036 M: Marek Vasut <marek.vasut@gmail.com>
16037 L: linux-iio@vger.kernel.org
16038 S: Supported
16039 F: Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16040 F: drivers/iio/adc/rcar-gyroadc.c
16041
16042 RENESAS R-CAR I2C DRIVERS
16043 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
16044 L: linux-renesas-soc@vger.kernel.org
16045 S: Supported
16046 F: Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16047 F: Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16048 F: drivers/i2c/busses/i2c-rcar.c
16049 F: drivers/i2c/busses/i2c-sh_mobile.c
16050
16051 RENESAS R-CAR THERMAL DRIVERS
16052 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
16053 L: linux-renesas-soc@vger.kernel.org
16054 S: Supported
16055 F: Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16056 F: Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16057 F: drivers/thermal/rcar_gen3_thermal.c
16058 F: drivers/thermal/rcar_thermal.c
16059
16060 RENESAS RIIC DRIVER
16061 M: Chris Brandt <chris.brandt@renesas.com>
16062 L: linux-renesas-soc@vger.kernel.org
16063 S: Supported
16064 F: Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16065 F: drivers/i2c/busses/i2c-riic.c
16066
16067 RENESAS USB PHY DRIVER
16068 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16069 L: linux-renesas-soc@vger.kernel.org
16070 S: Maintained
16071 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
16072
16073 RENESAS RZ/G2L A/D DRIVER
16074 M: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16075 L: linux-iio@vger.kernel.org
16076 L: linux-renesas-soc@vger.kernel.org
16077 S: Supported
16078 F: Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16079 F: drivers/iio/adc/rzg2l_adc.c
16080
16081 RESET CONTROLLER FRAMEWORK
16082 M: Philipp Zabel <p.zabel@pengutronix.de>
16083 S: Maintained
16084 T: git git://git.pengutronix.de/git/pza/linux
16085 F: Documentation/devicetree/bindings/reset/
16086 F: Documentation/driver-api/reset.rst
16087 F: drivers/reset/
16088 F: include/dt-bindings/reset/
16089 F: include/linux/reset-controller.h
16090 F: include/linux/reset.h
16091 F: include/linux/reset/
16092 K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16093
16094 RESTARTABLE SEQUENCES SUPPORT
16095 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16096 M: Peter Zijlstra <peterz@infradead.org>
16097 M: "Paul E. McKenney" <paulmck@kernel.org>
16098 M: Boqun Feng <boqun.feng@gmail.com>
16099 L: linux-kernel@vger.kernel.org
16100 S: Supported
16101 F: include/trace/events/rseq.h
16102 F: include/uapi/linux/rseq.h
16103 F: kernel/rseq.c
16104 F: tools/testing/selftests/rseq/
16105
16106 RFKILL
16107 M: Johannes Berg <johannes@sipsolutions.net>
16108 L: linux-wireless@vger.kernel.org
16109 S: Maintained
16110 W: https://wireless.wiki.kernel.org/
16111 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16112 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16113 F: Documentation/ABI/stable/sysfs-class-rfkill
16114 F: Documentation/driver-api/rfkill.rst
16115 F: include/linux/rfkill.h
16116 F: include/uapi/linux/rfkill.h
16117 F: net/rfkill/
16118
16119 RHASHTABLE
16120 M: Thomas Graf <tgraf@suug.ch>
16121 M: Herbert Xu <herbert@gondor.apana.org.au>
16122 L: netdev@vger.kernel.org
16123 S: Maintained
16124 F: include/linux/rhashtable-types.h
16125 F: include/linux/rhashtable.h
16126 F: lib/rhashtable.c
16127 F: lib/test_rhashtable.c
16128
16129 RICOH R5C592 MEMORYSTICK DRIVER
16130 M: Maxim Levitsky <maximlevitsky@gmail.com>
16131 S: Maintained
16132 F: drivers/memstick/host/r592.*
16133
16134 RICOH SMARTMEDIA/XD DRIVER
16135 M: Maxim Levitsky <maximlevitsky@gmail.com>
16136 S: Maintained
16137 F: drivers/mtd/nand/raw/r852.c
16138 F: drivers/mtd/nand/raw/r852.h
16139
16140 RISC-V ARCHITECTURE
16141 M: Paul Walmsley <paul.walmsley@sifive.com>
16142 M: Palmer Dabbelt <palmer@dabbelt.com>
16143 M: Albert Ou <aou@eecs.berkeley.edu>
16144 L: linux-riscv@lists.infradead.org
16145 S: Supported
16146 P: Documentation/riscv/patch-acceptance.rst
16147 T: git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16148 F: arch/riscv/
16149 N: riscv
16150 K: riscv
16151
16152 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16153 M: Lewis Hanly <lewis.hanly@microchip.com>
16154 L: linux-riscv@lists.infradead.org
16155 S: Supported
16156 F: drivers/mailbox/mailbox-mpfs.c
16157 F: drivers/soc/microchip/
16158 F: include/soc/microchip/mpfs.h
16159
16160 RNBD BLOCK DRIVERS
16161 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16162 M: Jack Wang <jinpu.wang@ionos.com>
16163 L: linux-block@vger.kernel.org
16164 S: Maintained
16165 F: drivers/block/rnbd/
16166
16167 ROCCAT DRIVERS
16168 M: Stefan Achatz <erazor_de@users.sourceforge.net>
16169 S: Maintained
16170 W: http://sourceforge.net/projects/roccat/
16171 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
16172 F: drivers/hid/hid-roccat*
16173 F: include/linux/hid-roccat*
16174
16175 ROCKCHIP ISP V1 DRIVER
16176 M: Helen Koike <helen.koike@collabora.com>
16177 M: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16178 L: linux-media@vger.kernel.org
16179 L: linux-rockchip@lists.infradead.org
16180 S: Maintained
16181 F: Documentation/admin-guide/media/rkisp1.rst
16182 F: Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16183 F: Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16184 F: drivers/media/platform/rockchip/rkisp1
16185 F: include/uapi/linux/rkisp1-config.h
16186
16187 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16188 M: Jacob Chen <jacob-chen@iotwrt.com>
16189 M: Ezequiel Garcia <ezequiel@collabora.com>
16190 L: linux-media@vger.kernel.org
16191 L: linux-rockchip@lists.infradead.org
16192 S: Maintained
16193 F: Documentation/devicetree/bindings/media/rockchip-rga.yaml
16194 F: drivers/media/platform/rockchip/rga/
16195
16196 ROCKCHIP VIDEO DECODER DRIVER
16197 M: Ezequiel Garcia <ezequiel@collabora.com>
16198 L: linux-media@vger.kernel.org
16199 L: linux-rockchip@lists.infradead.org
16200 S: Maintained
16201 F: Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16202 F: drivers/staging/media/rkvdec/
16203
16204 ROCKER DRIVER
16205 M: Jiri Pirko <jiri@resnulli.us>
16206 L: netdev@vger.kernel.org
16207 S: Supported
16208 F: drivers/net/ethernet/rocker/
16209
16210 ROCKETPORT EXPRESS/INFINITY DRIVER
16211 M: Kevin Cernekee <cernekee@gmail.com>
16212 L: linux-serial@vger.kernel.org
16213 S: Odd Fixes
16214 F: drivers/tty/serial/rp2.*
16215
16216 ROHM BD99954 CHARGER IC
16217 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16218 L: linux-power@fi.rohmeurope.com
16219 S: Supported
16220 F: drivers/power/supply/bd99954-charger.c
16221 F: drivers/power/supply/bd99954-charger.h
16222
16223 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16224 M: Tomasz Duszynski <tduszyns@gmail.com>
16225 S: Maintained
16226 F: Documentation/devicetree/bindings/iio/light/bh1750.yaml
16227 F: drivers/iio/light/bh1750.c
16228
16229 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16230 M: Marek Vasut <marek.vasut+renesas@gmail.com>
16231 L: linux-kernel@vger.kernel.org
16232 L: linux-renesas-soc@vger.kernel.org
16233 S: Supported
16234 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16235 F: drivers/gpio/gpio-bd9571mwv.c
16236 F: drivers/mfd/bd9571mwv.c
16237 F: drivers/regulator/bd9571mwv-regulator.c
16238 F: include/linux/mfd/bd9571mwv.h
16239
16240 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16241 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16242 L: linux-power@fi.rohmeurope.com
16243 S: Supported
16244 F: Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16245 F: Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16246 F: drivers/clk/clk-bd718x7.c
16247 F: drivers/gpio/gpio-bd70528.c
16248 F: drivers/gpio/gpio-bd71815.c
16249 F: drivers/gpio/gpio-bd71828.c
16250 F: drivers/mfd/rohm-bd70528.c
16251 F: drivers/mfd/rohm-bd71828.c
16252 F: drivers/mfd/rohm-bd718x7.c
16253 F: drivers/mfd/rohm-bd9576.c
16254 F: drivers/power/supply/bd70528-charger.c
16255 F: drivers/regulator/bd70528-regulator.c
16256 F: drivers/regulator/bd71815-regulator.c
16257 F: drivers/regulator/bd71828-regulator.c
16258 F: drivers/regulator/bd718x7-regulator.c
16259 F: drivers/regulator/bd9576-regulator.c
16260 F: drivers/regulator/rohm-regulator.c
16261 F: drivers/rtc/rtc-bd70528.c
16262 F: drivers/watchdog/bd70528_wdt.c
16263 F: drivers/watchdog/bd9576_wdt.c
16264 F: include/linux/mfd/rohm-bd70528.h
16265 F: include/linux/mfd/rohm-bd71815.h
16266 F: include/linux/mfd/rohm-bd71828.h
16267 F: include/linux/mfd/rohm-bd718x7.h
16268 F: include/linux/mfd/rohm-bd957x.h
16269 F: include/linux/mfd/rohm-generic.h
16270 F: include/linux/mfd/rohm-shared.h
16271
16272 ROSE NETWORK LAYER
16273 M: Ralf Baechle <ralf@linux-mips.org>
16274 L: linux-hams@vger.kernel.org
16275 S: Maintained
16276 W: http://www.linux-ax25.org/
16277 F: include/net/rose.h
16278 F: include/uapi/linux/rose.h
16279 F: net/rose/
16280
16281 ROTATION DRIVER FOR ALLWINNER A83T
16282 M: Jernej Skrabec <jernej.skrabec@gmail.com>
16283 L: linux-media@vger.kernel.org
16284 S: Maintained
16285 T: git git://linuxtv.org/media_tree.git
16286 F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16287 F: drivers/media/platform/sunxi/sun8i-rotate/
16288
16289 RTL2830 MEDIA DRIVER
16290 M: Antti Palosaari <crope@iki.fi>
16291 L: linux-media@vger.kernel.org
16292 S: Maintained
16293 W: https://linuxtv.org
16294 W: http://palosaari.fi/linux/
16295 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16296 T: git git://linuxtv.org/anttip/media_tree.git
16297 F: drivers/media/dvb-frontends/rtl2830*
16298
16299 RTL2832 MEDIA DRIVER
16300 M: Antti Palosaari <crope@iki.fi>
16301 L: linux-media@vger.kernel.org
16302 S: Maintained
16303 W: https://linuxtv.org
16304 W: http://palosaari.fi/linux/
16305 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16306 T: git git://linuxtv.org/anttip/media_tree.git
16307 F: drivers/media/dvb-frontends/rtl2832*
16308
16309 RTL2832_SDR MEDIA DRIVER
16310 M: Antti Palosaari <crope@iki.fi>
16311 L: linux-media@vger.kernel.org
16312 S: Maintained
16313 W: https://linuxtv.org
16314 W: http://palosaari.fi/linux/
16315 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16316 T: git git://linuxtv.org/anttip/media_tree.git
16317 F: drivers/media/dvb-frontends/rtl2832_sdr*
16318
16319 RTL8180 WIRELESS DRIVER
16320 L: linux-wireless@vger.kernel.org
16321 S: Orphan
16322 W: https://wireless.wiki.kernel.org/
16323 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16324 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
16325
16326 RTL8187 WIRELESS DRIVER
16327 M: Herton Ronaldo Krzesinski <herton@canonical.com>
16328 M: Hin-Tak Leung <htl10@users.sourceforge.net>
16329 M: Larry Finger <Larry.Finger@lwfinger.net>
16330 L: linux-wireless@vger.kernel.org
16331 S: Maintained
16332 W: https://wireless.wiki.kernel.org/
16333 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16334 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
16335
16336 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16337 M: Jes Sorensen <Jes.Sorensen@gmail.com>
16338 L: linux-wireless@vger.kernel.org
16339 S: Maintained
16340 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16341 F: drivers/net/wireless/realtek/rtl8xxxu/
16342
16343 RTRS TRANSPORT DRIVERS
16344 M: Md. Haris Iqbal <haris.iqbal@ionos.com>
16345 M: Jack Wang <jinpu.wang@ionos.com>
16346 L: linux-rdma@vger.kernel.org
16347 S: Maintained
16348 F: drivers/infiniband/ulp/rtrs/
16349
16350 RXRPC SOCKETS (AF_RXRPC)
16351 M: David Howells <dhowells@redhat.com>
16352 M: Marc Dionne <marc.dionne@auristor.com>
16353 L: linux-afs@lists.infradead.org
16354 S: Supported
16355 W: https://www.infradead.org/~dhowells/kafs/
16356 F: Documentation/networking/rxrpc.rst
16357 F: include/keys/rxrpc-type.h
16358 F: include/net/af_rxrpc.h
16359 F: include/trace/events/rxrpc.h
16360 F: include/uapi/linux/rxrpc.h
16361 F: net/rxrpc/
16362
16363 S3 SAVAGE FRAMEBUFFER DRIVER
16364 M: Antonino Daplas <adaplas@gmail.com>
16365 L: linux-fbdev@vger.kernel.org
16366 S: Maintained
16367 F: drivers/video/fbdev/savage/
16368
16369 S390
16370 M: Heiko Carstens <hca@linux.ibm.com>
16371 M: Vasily Gorbik <gor@linux.ibm.com>
16372 M: Christian Borntraeger <borntraeger@de.ibm.com>
16373 R: Alexander Gordeev <agordeev@linux.ibm.com>
16374 L: linux-s390@vger.kernel.org
16375 S: Supported
16376 W: http://www.ibm.com/developerworks/linux/linux390/
16377 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16378 F: Documentation/driver-api/s390-drivers.rst
16379 F: Documentation/s390/
16380 F: arch/s390/
16381 F: drivers/s390/
16382
16383 S390 COMMON I/O LAYER
16384 M: Vineeth Vijayan <vneethv@linux.ibm.com>
16385 M: Peter Oberparleiter <oberpar@linux.ibm.com>
16386 L: linux-s390@vger.kernel.org
16387 S: Supported
16388 W: http://www.ibm.com/developerworks/linux/linux390/
16389 F: drivers/s390/cio/
16390
16391 S390 DASD DRIVER
16392 M: Stefan Haberland <sth@linux.ibm.com>
16393 M: Jan Hoeppner <hoeppner@linux.ibm.com>
16394 L: linux-s390@vger.kernel.org
16395 S: Supported
16396 W: http://www.ibm.com/developerworks/linux/linux390/
16397 F: block/partitions/ibm.c
16398 F: drivers/s390/block/dasd*
16399 F: include/linux/dasd_mod.h
16400
16401 S390 IOMMU (PCI)
16402 M: Matthew Rosato <mjrosato@linux.ibm.com>
16403 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16404 L: linux-s390@vger.kernel.org
16405 S: Supported
16406 W: http://www.ibm.com/developerworks/linux/linux390/
16407 F: drivers/iommu/s390-iommu.c
16408
16409 S390 IUCV NETWORK LAYER
16410 M: Julian Wiedmann <jwi@linux.ibm.com>
16411 M: Karsten Graul <kgraul@linux.ibm.com>
16412 L: linux-s390@vger.kernel.org
16413 L: netdev@vger.kernel.org
16414 S: Supported
16415 W: http://www.ibm.com/developerworks/linux/linux390/
16416 F: drivers/s390/net/*iucv*
16417 F: include/net/iucv/
16418 F: net/iucv/
16419
16420 S390 NETWORK DRIVERS
16421 M: Julian Wiedmann <jwi@linux.ibm.com>
16422 M: Karsten Graul <kgraul@linux.ibm.com>
16423 L: linux-s390@vger.kernel.org
16424 L: netdev@vger.kernel.org
16425 S: Supported
16426 W: http://www.ibm.com/developerworks/linux/linux390/
16427 F: drivers/s390/net/
16428
16429 S390 PCI SUBSYSTEM
16430 M: Niklas Schnelle <schnelle@linux.ibm.com>
16431 M: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16432 L: linux-s390@vger.kernel.org
16433 S: Supported
16434 W: http://www.ibm.com/developerworks/linux/linux390/
16435 F: arch/s390/pci/
16436 F: drivers/pci/hotplug/s390_pci_hpc.c
16437 F: Documentation/s390/pci.rst
16438
16439 S390 VFIO AP DRIVER
16440 M: Tony Krowiak <akrowiak@linux.ibm.com>
16441 M: Halil Pasic <pasic@linux.ibm.com>
16442 M: Jason Herne <jjherne@linux.ibm.com>
16443 L: linux-s390@vger.kernel.org
16444 S: Supported
16445 W: http://www.ibm.com/developerworks/linux/linux390/
16446 F: Documentation/s390/vfio-ap.rst
16447 F: drivers/s390/crypto/vfio_ap_drv.c
16448 F: drivers/s390/crypto/vfio_ap_ops.c
16449 F: drivers/s390/crypto/vfio_ap_private.h
16450
16451 S390 VFIO-CCW DRIVER
16452 M: Eric Farman <farman@linux.ibm.com>
16453 M: Matthew Rosato <mjrosato@linux.ibm.com>
16454 R: Halil Pasic <pasic@linux.ibm.com>
16455 L: linux-s390@vger.kernel.org
16456 L: kvm@vger.kernel.org
16457 S: Supported
16458 F: Documentation/s390/vfio-ccw.rst
16459 F: drivers/s390/cio/vfio_ccw*
16460 F: include/uapi/linux/vfio_ccw.h
16461
16462 S390 VFIO-PCI DRIVER
16463 M: Matthew Rosato <mjrosato@linux.ibm.com>
16464 M: Eric Farman <farman@linux.ibm.com>
16465 L: linux-s390@vger.kernel.org
16466 L: kvm@vger.kernel.org
16467 S: Supported
16468 F: drivers/vfio/pci/vfio_pci_zdev.c
16469 F: include/uapi/linux/vfio_zdev.h
16470
16471 S390 ZCRYPT DRIVER
16472 M: Harald Freudenberger <freude@linux.ibm.com>
16473 L: linux-s390@vger.kernel.org
16474 S: Supported
16475 W: http://www.ibm.com/developerworks/linux/linux390/
16476 F: drivers/s390/crypto/
16477
16478 S390 ZFCP DRIVER
16479 M: Steffen Maier <maier@linux.ibm.com>
16480 M: Benjamin Block <bblock@linux.ibm.com>
16481 L: linux-s390@vger.kernel.org
16482 S: Supported
16483 W: http://www.ibm.com/developerworks/linux/linux390/
16484 F: drivers/s390/scsi/zfcp_*
16485
16486 S3C ADC BATTERY DRIVER
16487 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16488 L: linux-samsung-soc@vger.kernel.org
16489 S: Odd Fixes
16490 F: drivers/power/supply/s3c_adc_battery.c
16491 F: include/linux/s3c_adc_battery.h
16492
16493 S3C24XX SD/MMC Driver
16494 M: Ben Dooks <ben-linux@fluff.org>
16495 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16496 S: Supported
16497 F: drivers/mmc/host/s3cmci.*
16498
16499 SAA6588 RDS RECEIVER DRIVER
16500 M: Hans Verkuil <hverkuil@xs4all.nl>
16501 L: linux-media@vger.kernel.org
16502 S: Odd Fixes
16503 W: https://linuxtv.org
16504 T: git git://linuxtv.org/media_tree.git
16505 F: drivers/media/i2c/saa6588*
16506
16507 SAA7134 VIDEO4LINUX DRIVER
16508 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16509 L: linux-media@vger.kernel.org
16510 S: Odd fixes
16511 W: https://linuxtv.org
16512 T: git git://linuxtv.org/media_tree.git
16513 F: Documentation/driver-api/media/drivers/saa7134*
16514 F: drivers/media/pci/saa7134/
16515
16516 SAA7146 VIDEO4LINUX-2 DRIVER
16517 M: Hans Verkuil <hverkuil@xs4all.nl>
16518 L: linux-media@vger.kernel.org
16519 S: Maintained
16520 T: git git://linuxtv.org/media_tree.git
16521 F: drivers/media/common/saa7146/
16522 F: drivers/media/pci/saa7146/
16523 F: include/media/drv-intf/saa7146*
16524
16525 SAFESETID SECURITY MODULE
16526 M: Micah Morton <mortonm@chromium.org>
16527 S: Supported
16528 F: Documentation/admin-guide/LSM/SafeSetID.rst
16529 F: security/safesetid/
16530
16531 SAMSUNG AUDIO (ASoC) DRIVERS
16532 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16533 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16534 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16535 S: Supported
16536 F: Documentation/devicetree/bindings/sound/samsung*
16537 F: sound/soc/samsung/
16538
16539 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16540 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16541 L: linux-crypto@vger.kernel.org
16542 L: linux-samsung-soc@vger.kernel.org
16543 S: Maintained
16544 F: Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16545 F: drivers/crypto/exynos-rng.c
16546
16547 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16548 M: Łukasz Stelmach <l.stelmach@samsung.com>
16549 L: linux-samsung-soc@vger.kernel.org
16550 S: Maintained
16551 F: Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16552 F: drivers/char/hw_random/exynos-trng.c
16553
16554 SAMSUNG FRAMEBUFFER DRIVER
16555 M: Jingoo Han <jingoohan1@gmail.com>
16556 L: linux-fbdev@vger.kernel.org
16557 S: Maintained
16558 F: drivers/video/fbdev/s3c-fb.c
16559
16560 SAMSUNG INTERCONNECT DRIVERS
16561 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16562 M: Artur Świgoń <a.swigon@samsung.com>
16563 L: linux-pm@vger.kernel.org
16564 L: linux-samsung-soc@vger.kernel.org
16565 S: Supported
16566 F: drivers/interconnect/samsung/
16567
16568 SAMSUNG LAPTOP DRIVER
16569 M: Corentin Chary <corentin.chary@gmail.com>
16570 L: platform-driver-x86@vger.kernel.org
16571 S: Maintained
16572 F: drivers/platform/x86/samsung-laptop.c
16573
16574 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16575 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16576 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16577 L: linux-kernel@vger.kernel.org
16578 L: linux-samsung-soc@vger.kernel.org
16579 S: Supported
16580 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16581 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16582 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16583 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16584 F: drivers/clk/clk-s2mps11.c
16585 F: drivers/mfd/sec*.c
16586 F: drivers/regulator/s2m*.c
16587 F: drivers/regulator/s5m*.c
16588 F: drivers/rtc/rtc-s5m.c
16589 F: include/linux/mfd/samsung/
16590
16591 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16592 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16593 L: linux-media@vger.kernel.org
16594 L: linux-samsung-soc@vger.kernel.org
16595 S: Maintained
16596 F: drivers/media/platform/s3c-camif/
16597 F: include/media/drv-intf/s3c_camif.h
16598
16599 SAMSUNG S3FWRN5 NFC DRIVER
16600 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16601 M: Krzysztof Opasiak <k.opasiak@samsung.com>
16602 L: linux-nfc@lists.01.org (subscribers-only)
16603 S: Maintained
16604 F: Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16605 F: drivers/nfc/s3fwrn5
16606
16607 SAMSUNG S5C73M3 CAMERA DRIVER
16608 M: Andrzej Hajda <a.hajda@samsung.com>
16609 L: linux-media@vger.kernel.org
16610 S: Supported
16611 F: drivers/media/i2c/s5c73m3/*
16612
16613 SAMSUNG S5K5BAF CAMERA DRIVER
16614 M: Andrzej Hajda <a.hajda@samsung.com>
16615 L: linux-media@vger.kernel.org
16616 S: Supported
16617 F: drivers/media/i2c/s5k5baf.c
16618
16619 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16620 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16621 M: Vladimir Zapolskiy <vz@mleia.com>
16622 L: linux-crypto@vger.kernel.org
16623 L: linux-samsung-soc@vger.kernel.org
16624 S: Maintained
16625 F: Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16626 F: Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16627 F: drivers/crypto/s5p-sss.c
16628
16629 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16630 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16631 L: linux-media@vger.kernel.org
16632 S: Supported
16633 Q: https://patchwork.linuxtv.org/project/linux-media/list/
16634 F: drivers/media/platform/exynos4-is/
16635
16636 SAMSUNG SOC CLOCK DRIVERS
16637 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16638 M: Tomasz Figa <tomasz.figa@gmail.com>
16639 M: Chanwoo Choi <cw00.choi@samsung.com>
16640 L: linux-samsung-soc@vger.kernel.org
16641 S: Supported
16642 T: git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16643 F: Documentation/devicetree/bindings/clock/exynos*.txt
16644 F: Documentation/devicetree/bindings/clock/samsung,*.yaml
16645 F: Documentation/devicetree/bindings/clock/samsung,s3c*
16646 F: Documentation/devicetree/bindings/clock/samsung,s5p*
16647 F: drivers/clk/samsung/
16648 F: include/dt-bindings/clock/exynos*.h
16649 F: include/dt-bindings/clock/s3c*.h
16650 F: include/dt-bindings/clock/s5p*.h
16651 F: include/dt-bindings/clock/samsung,*.h
16652 F: include/linux/clk/samsung.h
16653 F: include/linux/platform_data/clk-s3c2410.h
16654
16655 SAMSUNG SPI DRIVERS
16656 M: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16657 M: Andi Shyti <andi@etezian.org>
16658 L: linux-spi@vger.kernel.org
16659 L: linux-samsung-soc@vger.kernel.org
16660 S: Maintained
16661 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
16662 F: drivers/spi/spi-s3c*
16663 F: include/linux/platform_data/spi-s3c64xx.h
16664 F: include/linux/spi/s3c24xx-fiq.h
16665
16666 SAMSUNG SXGBE DRIVERS
16667 M: Byungho An <bh74.an@samsung.com>
16668 L: netdev@vger.kernel.org
16669 S: Supported
16670 F: drivers/net/ethernet/samsung/sxgbe/
16671
16672 SAMSUNG THERMAL DRIVER
16673 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16674 L: linux-pm@vger.kernel.org
16675 L: linux-samsung-soc@vger.kernel.org
16676 S: Supported
16677 T: git https://github.com/lmajewski/linux-samsung-thermal.git
16678 F: drivers/thermal/samsung/
16679
16680 SAMSUNG USB2 PHY DRIVER
16681 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
16682 L: linux-kernel@vger.kernel.org
16683 S: Supported
16684 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
16685 F: Documentation/driver-api/phy/samsung-usb2.rst
16686 F: drivers/phy/samsung/phy-exynos4210-usb2.c
16687 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
16688 F: drivers/phy/samsung/phy-exynos5250-usb2.c
16689 F: drivers/phy/samsung/phy-s5pv210-usb2.c
16690 F: drivers/phy/samsung/phy-samsung-usb2.c
16691 F: drivers/phy/samsung/phy-samsung-usb2.h
16692
16693 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16694 M: Paul Barker <paul.barker@sancloud.com>
16695 R: Marc Murphy <marc.murphy@sancloud.com>
16696 S: Supported
16697 F: arch/arm/boot/dts/am335x-sancloud*
16698
16699 SC1200 WDT DRIVER
16700 M: Zwane Mwaikambo <zwanem@gmail.com>
16701 S: Maintained
16702 F: drivers/watchdog/sc1200wdt.c
16703
16704 SCHEDULER
16705 M: Ingo Molnar <mingo@redhat.com>
16706 M: Peter Zijlstra <peterz@infradead.org>
16707 M: Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16708 M: Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16709 R: Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16710 R: Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16711 R: Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16712 R: Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16713 R: Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16714 L: linux-kernel@vger.kernel.org
16715 S: Maintained
16716 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16717 F: include/linux/preempt.h
16718 F: include/linux/sched.h
16719 F: include/linux/wait.h
16720 F: include/uapi/linux/sched.h
16721 F: kernel/sched/
16722
16723 SCR24X CHIP CARD INTERFACE DRIVER
16724 M: Lubomir Rintel <lkundrak@v3.sk>
16725 S: Supported
16726 F: drivers/char/pcmcia/scr24x_cs.c
16727
16728 SCSI RDMA PROTOCOL (SRP) INITIATOR
16729 M: Bart Van Assche <bvanassche@acm.org>
16730 L: linux-rdma@vger.kernel.org
16731 S: Supported
16732 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16733 F: drivers/infiniband/ulp/srp/
16734 F: include/scsi/srp.h
16735
16736 SCSI RDMA PROTOCOL (SRP) TARGET
16737 M: Bart Van Assche <bvanassche@acm.org>
16738 L: linux-rdma@vger.kernel.org
16739 L: target-devel@vger.kernel.org
16740 S: Supported
16741 Q: http://patchwork.kernel.org/project/linux-rdma/list/
16742 F: drivers/infiniband/ulp/srpt/
16743
16744 SCSI SG DRIVER
16745 M: Doug Gilbert <dgilbert@interlog.com>
16746 L: linux-scsi@vger.kernel.org
16747 S: Maintained
16748 W: http://sg.danny.cz/sg
16749 F: Documentation/scsi/scsi-generic.rst
16750 F: drivers/scsi/sg.c
16751 F: include/scsi/sg.h
16752
16753 SCSI SUBSYSTEM
16754 M: "James E.J. Bottomley" <jejb@linux.ibm.com>
16755 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16756 L: linux-scsi@vger.kernel.org
16757 S: Maintained
16758 Q: https://patchwork.kernel.org/project/linux-scsi/list/
16759 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16760 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16761 F: Documentation/devicetree/bindings/scsi/
16762 F: drivers/scsi/
16763 F: include/scsi/
16764
16765 SCSI TAPE DRIVER
16766 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16767 L: linux-scsi@vger.kernel.org
16768 S: Maintained
16769 F: Documentation/scsi/st.rst
16770 F: drivers/scsi/st.*
16771 F: drivers/scsi/st_*.h
16772
16773 SCSI TARGET CORE USER DRIVER
16774 M: Bodo Stroesser <bostroesser@gmail.com>
16775 L: linux-scsi@vger.kernel.org
16776 L: target-devel@vger.kernel.org
16777 S: Supported
16778 F: Documentation/target/tcmu-design.rst
16779 F: drivers/target/target_core_user.c
16780 F: include/uapi/linux/target_core_user.h
16781
16782 SCSI TARGET SUBSYSTEM
16783 M: "Martin K. Petersen" <martin.petersen@oracle.com>
16784 L: linux-scsi@vger.kernel.org
16785 L: target-devel@vger.kernel.org
16786 S: Supported
16787 W: http://www.linux-iscsi.org
16788 Q: https://patchwork.kernel.org/project/target-devel/list/
16789 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16790 F: Documentation/target/
16791 F: drivers/target/
16792 F: include/target/
16793
16794 SCTP PROTOCOL
16795 M: Vlad Yasevich <vyasevich@gmail.com>
16796 M: Neil Horman <nhorman@tuxdriver.com>
16797 M: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16798 L: linux-sctp@vger.kernel.org
16799 S: Maintained
16800 W: http://lksctp.sourceforge.net
16801 F: Documentation/networking/sctp.rst
16802 F: include/linux/sctp.h
16803 F: include/net/sctp/
16804 F: include/uapi/linux/sctp.h
16805 F: net/sctp/
16806
16807 SCx200 CPU SUPPORT
16808 M: Jim Cromie <jim.cromie@gmail.com>
16809 S: Odd Fixes
16810 F: Documentation/i2c/busses/scx200_acb.rst
16811 F: arch/x86/platform/scx200/
16812 F: drivers/i2c/busses/scx200*
16813 F: drivers/mtd/maps/scx200_docflash.c
16814 F: drivers/watchdog/scx200_wdt.c
16815 F: include/linux/scx200.h
16816
16817 SCx200 GPIO DRIVER
16818 M: Jim Cromie <jim.cromie@gmail.com>
16819 S: Maintained
16820 F: drivers/char/scx200_gpio.c
16821 F: include/linux/scx200_gpio.h
16822
16823 SCx200 HRT CLOCKSOURCE DRIVER
16824 M: Jim Cromie <jim.cromie@gmail.com>
16825 S: Maintained
16826 F: drivers/clocksource/scx200_hrt.c
16827
16828 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16829 M: Sascha Sommer <saschasommer@freenet.de>
16830 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16831 S: Maintained
16832 F: drivers/mmc/host/sdricoh_cs.c
16833
16834 SECO BOARDS CEC DRIVER
16835 M: Ettore Chimenti <ek5.chimenti@gmail.com>
16836 S: Maintained
16837 F: drivers/media/cec/platform/seco/seco-cec.c
16838 F: drivers/media/cec/platform/seco/seco-cec.h
16839
16840 SECURE COMPUTING
16841 M: Kees Cook <keescook@chromium.org>
16842 R: Andy Lutomirski <luto@amacapital.net>
16843 R: Will Drewry <wad@chromium.org>
16844 S: Supported
16845 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16846 F: Documentation/userspace-api/seccomp_filter.rst
16847 F: include/linux/seccomp.h
16848 F: include/uapi/linux/seccomp.h
16849 F: kernel/seccomp.c
16850 F: tools/testing/selftests/kselftest_harness.h
16851 F: tools/testing/selftests/seccomp/*
16852 K: \bsecure_computing
16853 K: \bTIF_SECCOMP\b
16854
16855 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16856 M: Al Cooper <alcooperx@gmail.com>
16857 L: linux-mmc@vger.kernel.org
16858 L: bcm-kernel-feedback-list@broadcom.com
16859 S: Maintained
16860 F: drivers/mmc/host/sdhci-brcmstb*
16861
16862 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16863 M: Adrian Hunter <adrian.hunter@intel.com>
16864 L: linux-mmc@vger.kernel.org
16865 S: Maintained
16866 F: drivers/mmc/host/sdhci*
16867 F: include/linux/mmc/sdhci*
16868
16869 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16870 M: Eugen Hristev <eugen.hristev@microchip.com>
16871 L: linux-mmc@vger.kernel.org
16872 S: Supported
16873 F: drivers/mmc/host/sdhci-of-at91.c
16874
16875 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16876 M: Ben Dooks <ben-linux@fluff.org>
16877 M: Jaehoon Chung <jh80.chung@samsung.com>
16878 L: linux-mmc@vger.kernel.org
16879 S: Maintained
16880 F: drivers/mmc/host/sdhci-s3c*
16881
16882 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16883 M: Viresh Kumar <vireshk@kernel.org>
16884 L: linux-mmc@vger.kernel.org
16885 S: Maintained
16886 F: drivers/mmc/host/sdhci-spear.c
16887
16888 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16889 M: Kishon Vijay Abraham I <kishon@ti.com>
16890 L: linux-mmc@vger.kernel.org
16891 S: Maintained
16892 F: drivers/mmc/host/sdhci-omap.c
16893
16894 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16895 M: Jonathan Derrick <jonathan.derrick@intel.com>
16896 M: Revanth Rajashekar <revanth.rajashekar@intel.com>
16897 L: linux-block@vger.kernel.org
16898 S: Supported
16899 F: block/opal_proto.h
16900 F: block/sed*
16901 F: include/linux/sed*
16902 F: include/uapi/linux/sed*
16903
16904 SECURITY CONTACT
16905 M: Security Officers <security@kernel.org>
16906 S: Supported
16907 F: Documentation/admin-guide/security-bugs.rst
16908
16909 SECURITY SUBSYSTEM
16910 M: James Morris <jmorris@namei.org>
16911 M: "Serge E. Hallyn" <serge@hallyn.com>
16912 L: linux-security-module@vger.kernel.org (suggested Cc:)
16913 S: Supported
16914 W: http://kernsec.org/
16915 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16916 F: security/
16917 X: security/selinux/
16918
16919 SELINUX SECURITY MODULE
16920 M: Paul Moore <paul@paul-moore.com>
16921 M: Stephen Smalley <stephen.smalley.work@gmail.com>
16922 M: Eric Paris <eparis@parisplace.org>
16923 L: selinux@vger.kernel.org
16924 S: Supported
16925 W: https://selinuxproject.org
16926 W: https://github.com/SELinuxProject
16927 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16928 F: Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16929 F: Documentation/ABI/obsolete/sysfs-selinux-disable
16930 F: Documentation/admin-guide/LSM/SELinux.rst
16931 F: include/trace/events/avc.h
16932 F: include/uapi/linux/selinux_netlink.h
16933 F: scripts/selinux/
16934 F: security/selinux/
16935
16936 SENSABLE PHANTOM
16937 M: Jiri Slaby <jirislaby@kernel.org>
16938 S: Maintained
16939 F: drivers/misc/phantom.c
16940 F: include/uapi/linux/phantom.h
16941
16942 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16943 M: Tomasz Duszynski <tomasz.duszynski@octakon.com>
16944 S: Maintained
16945 F: Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16946 F: drivers/iio/chemical/scd30.h
16947 F: drivers/iio/chemical/scd30_core.c
16948 F: drivers/iio/chemical/scd30_i2c.c
16949 F: drivers/iio/chemical/scd30_serial.c
16950
16951 SENSIRION SGP40 GAS SENSOR DRIVER
16952 M: Andreas Klinger <ak@it-klinger.de>
16953 S: Maintained
16954 F: Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16955 F: drivers/iio/chemical/sgp40.c
16956
16957 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16958 M: Tomasz Duszynski <tduszyns@gmail.com>
16959 S: Maintained
16960 F: Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16961 F: drivers/iio/chemical/sps30.c
16962 F: drivers/iio/chemical/sps30_i2c.c
16963 F: drivers/iio/chemical/sps30_serial.c
16964
16965 SERIAL DEVICE BUS
16966 M: Rob Herring <robh@kernel.org>
16967 L: linux-serial@vger.kernel.org
16968 S: Maintained
16969 F: Documentation/devicetree/bindings/serial/serial.yaml
16970 F: drivers/tty/serdev/
16971 F: include/linux/serdev.h
16972
16973 SERIAL DRIVERS
16974 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16975 L: linux-serial@vger.kernel.org
16976 S: Maintained
16977 F: Documentation/devicetree/bindings/serial/
16978 F: drivers/tty/serial/
16979
16980 SERIAL IR RECEIVER
16981 M: Sean Young <sean@mess.org>
16982 L: linux-media@vger.kernel.org
16983 S: Maintained
16984 F: drivers/media/rc/serial_ir.c
16985
16986 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16987 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16988 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16989 S: Maintained
16990 F: Documentation/devicetree/bindings/slimbus/
16991 F: drivers/slimbus/
16992 F: include/linux/slimbus.h
16993
16994 SFC NETWORK DRIVER
16995 M: Edward Cree <ecree.xilinx@gmail.com>
16996 M: Martin Habets <habetsm.xilinx@gmail.com>
16997 L: netdev@vger.kernel.org
16998 S: Supported
16999 F: drivers/net/ethernet/sfc/
17000
17001 SFF/SFP/SFP+ MODULE SUPPORT
17002 M: Russell King <linux@armlinux.org.uk>
17003 L: netdev@vger.kernel.org
17004 S: Maintained
17005 F: drivers/net/phy/phylink.c
17006 F: drivers/net/phy/sfp*
17007 F: include/linux/mdio/mdio-i2c.h
17008 F: include/linux/phylink.h
17009 F: include/linux/sfp.h
17010 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)
17011
17012 SGI GRU DRIVER
17013 M: Dimitri Sivanich <dimitri.sivanich@hpe.com>
17014 S: Maintained
17015 F: drivers/misc/sgi-gru/
17016
17017 SGI XP/XPC/XPNET DRIVER
17018 M: Robin Holt <robinmholt@gmail.com>
17019 M: Steve Wahl <steve.wahl@hpe.com>
17020 R: Mike Travis <mike.travis@hpe.com>
17021 S: Maintained
17022 F: drivers/misc/sgi-xp/
17023
17024 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17025 M: Karsten Graul <kgraul@linux.ibm.com>
17026 L: linux-s390@vger.kernel.org
17027 S: Supported
17028 W: http://www.ibm.com/developerworks/linux/linux390/
17029 F: net/smc/
17030
17031 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17032 M: Linus Walleij <linus.walleij@linaro.org>
17033 L: linux-iio@vger.kernel.org
17034 S: Maintained
17035 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17036 F: Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17037 F: drivers/iio/light/gp2ap002.c
17038
17039 SHARP RJ54N1CB0C SENSOR DRIVER
17040 M: Jacopo Mondi <jacopo@jmondi.org>
17041 L: linux-media@vger.kernel.org
17042 S: Odd fixes
17043 T: git git://linuxtv.org/media_tree.git
17044 F: drivers/media/i2c/rj54n1cb0c.c
17045 F: include/media/i2c/rj54n1cb0c.h
17046
17047 SH_VOU V4L2 OUTPUT DRIVER
17048 L: linux-media@vger.kernel.org
17049 S: Orphan
17050 F: drivers/media/platform/sh_vou.c
17051 F: include/media/drv-intf/sh_vou.h
17052
17053 SI2157 MEDIA DRIVER
17054 M: Antti Palosaari <crope@iki.fi>
17055 L: linux-media@vger.kernel.org
17056 S: Maintained
17057 W: https://linuxtv.org
17058 W: http://palosaari.fi/linux/
17059 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17060 T: git git://linuxtv.org/anttip/media_tree.git
17061 F: drivers/media/tuners/si2157*
17062
17063 SI2165 MEDIA DRIVER
17064 M: Matthias Schwarzott <zzam@gentoo.org>
17065 L: linux-media@vger.kernel.org
17066 S: Maintained
17067 W: https://linuxtv.org
17068 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17069 F: drivers/media/dvb-frontends/si2165*
17070
17071 SI2168 MEDIA DRIVER
17072 M: Antti Palosaari <crope@iki.fi>
17073 L: linux-media@vger.kernel.org
17074 S: Maintained
17075 W: https://linuxtv.org
17076 W: http://palosaari.fi/linux/
17077 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17078 T: git git://linuxtv.org/anttip/media_tree.git
17079 F: drivers/media/dvb-frontends/si2168*
17080
17081 SI470X FM RADIO RECEIVER I2C DRIVER
17082 M: Hans Verkuil <hverkuil@xs4all.nl>
17083 L: linux-media@vger.kernel.org
17084 S: Odd Fixes
17085 W: https://linuxtv.org
17086 T: git git://linuxtv.org/media_tree.git
17087 F: drivers/media/radio/si470x/radio-si470x-i2c.c
17088
17089 SI470X FM RADIO RECEIVER USB DRIVER
17090 M: Hans Verkuil <hverkuil@xs4all.nl>
17091 L: linux-media@vger.kernel.org
17092 S: Maintained
17093 W: https://linuxtv.org
17094 T: git git://linuxtv.org/media_tree.git
17095 F: drivers/media/radio/si470x/radio-si470x-common.c
17096 F: drivers/media/radio/si470x/radio-si470x-usb.c
17097 F: drivers/media/radio/si470x/radio-si470x.h
17098
17099 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17100 M: Eduardo Valentin <edubezval@gmail.com>
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/radio/si4713/si4713.?
17106
17107 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17108 M: Eduardo Valentin <edubezval@gmail.com>
17109 L: linux-media@vger.kernel.org
17110 S: Odd Fixes
17111 W: https://linuxtv.org
17112 T: git git://linuxtv.org/media_tree.git
17113 F: drivers/media/radio/si4713/radio-platform-si4713.c
17114
17115 SI4713 FM RADIO TRANSMITTER USB DRIVER
17116 M: Hans Verkuil <hverkuil@xs4all.nl>
17117 L: linux-media@vger.kernel.org
17118 S: Maintained
17119 W: https://linuxtv.org
17120 T: git git://linuxtv.org/media_tree.git
17121 F: drivers/media/radio/si4713/radio-usb-si4713.c
17122
17123 SIANO DVB DRIVER
17124 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17125 L: linux-media@vger.kernel.org
17126 S: Odd fixes
17127 W: https://linuxtv.org
17128 T: git git://linuxtv.org/media_tree.git
17129 F: drivers/media/common/siano/
17130 F: drivers/media/mmc/siano/
17131 F: drivers/media/usb/siano/
17132 F: drivers/media/usb/siano/
17133
17134 SIFIVE DRIVERS
17135 M: Palmer Dabbelt <palmer@dabbelt.com>
17136 M: Paul Walmsley <paul.walmsley@sifive.com>
17137 L: linux-riscv@lists.infradead.org
17138 S: Supported
17139 T: git git://github.com/sifive/riscv-linux.git
17140 N: sifive
17141 K: [^@]sifive
17142
17143 SIFIVE FU540 SYSTEM-ON-CHIP
17144 M: Paul Walmsley <paul.walmsley@sifive.com>
17145 M: Palmer Dabbelt <palmer@dabbelt.com>
17146 L: linux-riscv@lists.infradead.org
17147 S: Supported
17148 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17149 N: fu540
17150 K: fu540
17151
17152 SIFIVE PDMA DRIVER
17153 M: Green Wan <green.wan@sifive.com>
17154 S: Maintained
17155 F: Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17156 F: drivers/dma/sf-pdma/
17157
17158 SILEAD TOUCHSCREEN DRIVER
17159 M: Hans de Goede <hdegoede@redhat.com>
17160 L: linux-input@vger.kernel.org
17161 L: platform-driver-x86@vger.kernel.org
17162 S: Maintained
17163 F: drivers/input/touchscreen/silead.c
17164 F: drivers/platform/x86/touchscreen_dmi.c
17165
17166 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17167 M: Jérôme Pouiller <jerome.pouiller@silabs.com>
17168 S: Supported
17169 F: drivers/staging/wfx/
17170
17171 SILICON MOTION SM712 FRAME BUFFER DRIVER
17172 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17173 M: Teddy Wang <teddy.wang@siliconmotion.com>
17174 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17175 L: linux-fbdev@vger.kernel.org
17176 S: Maintained
17177 F: Documentation/fb/sm712fb.rst
17178 F: drivers/video/fbdev/sm712*
17179
17180 SILVACO I3C DUAL-ROLE MASTER
17181 M: Miquel Raynal <miquel.raynal@bootlin.com>
17182 M: Conor Culhane <conor.culhane@silvaco.com>
17183 L: linux-i3c@lists.infradead.org
17184 S: Maintained
17185 F: Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17186 F: drivers/i3c/master/svc-i3c-master.c
17187
17188 SIMPLEFB FB DRIVER
17189 M: Hans de Goede <hdegoede@redhat.com>
17190 L: linux-fbdev@vger.kernel.org
17191 S: Maintained
17192 F: Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17193 F: drivers/video/fbdev/simplefb.c
17194 F: include/linux/platform_data/simplefb.h
17195
17196 SIMTEC EB110ATX (Chalice CATS)
17197 M: Simtec Linux Team <linux@simtec.co.uk>
17198 S: Supported
17199 W: http://www.simtec.co.uk/products/EB110ATX/
17200
17201 SIMTEC EB2410ITX (BAST)
17202 M: Simtec Linux Team <linux@simtec.co.uk>
17203 S: Supported
17204 W: http://www.simtec.co.uk/products/EB2410ITX/
17205 F: arch/arm/mach-s3c/bast-ide.c
17206 F: arch/arm/mach-s3c/bast-irq.c
17207 F: arch/arm/mach-s3c/mach-bast.c
17208
17209 SIOX
17210 M: Thorsten Scherer <t.scherer@eckelmann.de>
17211 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17212 R: Pengutronix Kernel Team <kernel@pengutronix.de>
17213 S: Supported
17214 F: drivers/gpio/gpio-siox.c
17215 F: drivers/siox/*
17216 F: include/trace/events/siox.h
17217
17218 SIPHASH PRF ROUTINES
17219 M: Jason A. Donenfeld <Jason@zx2c4.com>
17220 S: Maintained
17221 F: include/linux/siphash.h
17222 F: lib/siphash.c
17223 F: lib/test_siphash.c
17224
17225 SIS 190 ETHERNET DRIVER
17226 M: Francois Romieu <romieu@fr.zoreil.com>
17227 L: netdev@vger.kernel.org
17228 S: Maintained
17229 F: drivers/net/ethernet/sis/sis190.c
17230
17231 SIS 900/7016 FAST ETHERNET DRIVER
17232 M: Daniele Venzano <venza@brownhat.org>
17233 L: netdev@vger.kernel.org
17234 S: Maintained
17235 W: http://www.brownhat.org/sis900.html
17236 F: drivers/net/ethernet/sis/sis900.*
17237
17238 SIS FRAMEBUFFER DRIVER
17239 M: Thomas Winischhofer <thomas@winischhofer.net>
17240 S: Maintained
17241 W: http://www.winischhofer.net/linuxsisvga.shtml
17242 F: Documentation/fb/sisfb.rst
17243 F: drivers/video/fbdev/sis/
17244 F: include/video/sisfb.h
17245
17246 SIS I2C TOUCHSCREEN DRIVER
17247 M: Mika Penttilä <mika.penttila@nextfour.com>
17248 L: linux-input@vger.kernel.org
17249 S: Maintained
17250 F: Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17251 F: drivers/input/touchscreen/sis_i2c.c
17252
17253 SIS USB2VGA DRIVER
17254 M: Thomas Winischhofer <thomas@winischhofer.net>
17255 S: Maintained
17256 W: http://www.winischhofer.at/linuxsisusbvga.shtml
17257 F: drivers/usb/misc/sisusbvga/
17258
17259 SLAB ALLOCATOR
17260 M: Christoph Lameter <cl@linux.com>
17261 M: Pekka Enberg <penberg@kernel.org>
17262 M: David Rientjes <rientjes@google.com>
17263 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
17264 M: Andrew Morton <akpm@linux-foundation.org>
17265 M: Vlastimil Babka <vbabka@suse.cz>
17266 L: linux-mm@kvack.org
17267 S: Maintained
17268 F: include/linux/sl?b*.h
17269 F: mm/sl?b*
17270
17271 SLEEPABLE READ-COPY UPDATE (SRCU)
17272 M: Lai Jiangshan <jiangshanlai@gmail.com>
17273 M: "Paul E. McKenney" <paulmck@kernel.org>
17274 M: Josh Triplett <josh@joshtriplett.org>
17275 R: Steven Rostedt <rostedt@goodmis.org>
17276 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17277 L: rcu@vger.kernel.org
17278 S: Supported
17279 W: http://www.rdrop.com/users/paulmck/RCU/
17280 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17281 F: include/linux/srcu*.h
17282 F: kernel/rcu/srcu*.c
17283
17284 SMACK SECURITY MODULE
17285 M: Casey Schaufler <casey@schaufler-ca.com>
17286 L: linux-security-module@vger.kernel.org
17287 S: Maintained
17288 W: http://schaufler-ca.com
17289 T: git git://github.com/cschaufler/smack-next
17290 F: Documentation/admin-guide/LSM/Smack.rst
17291 F: security/smack/
17292
17293 SMC91x ETHERNET DRIVER
17294 M: Nicolas Pitre <nico@fluxnic.net>
17295 S: Odd Fixes
17296 F: drivers/net/ethernet/smsc/smc91x.*
17297
17298 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17299 M: Mark Rutland <mark.rutland@arm.com>
17300 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17301 M: Sudeep Holla <sudeep.holla@arm.com>
17302 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17303 S: Maintained
17304 F: drivers/firmware/smccc/
17305 F: include/linux/arm-smccc.h
17306
17307 SMM665 HARDWARE MONITOR DRIVER
17308 M: Guenter Roeck <linux@roeck-us.net>
17309 L: linux-hwmon@vger.kernel.org
17310 S: Maintained
17311 F: Documentation/hwmon/smm665.rst
17312 F: drivers/hwmon/smm665.c
17313
17314 SMSC EMC2103 HARDWARE MONITOR DRIVER
17315 M: Steve Glendinning <steve.glendinning@shawell.net>
17316 L: linux-hwmon@vger.kernel.org
17317 S: Maintained
17318 F: Documentation/hwmon/emc2103.rst
17319 F: drivers/hwmon/emc2103.c
17320
17321 SMSC SCH5627 HARDWARE MONITOR DRIVER
17322 M: Hans de Goede <hdegoede@redhat.com>
17323 L: linux-hwmon@vger.kernel.org
17324 S: Supported
17325 F: Documentation/hwmon/sch5627.rst
17326 F: drivers/hwmon/sch5627.c
17327
17328 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17329 M: Steve Glendinning <steve.glendinning@shawell.net>
17330 L: linux-fbdev@vger.kernel.org
17331 S: Maintained
17332 F: drivers/video/fbdev/smscufx.c
17333
17334 SMSC47B397 HARDWARE MONITOR DRIVER
17335 M: Jean Delvare <jdelvare@suse.com>
17336 L: linux-hwmon@vger.kernel.org
17337 S: Maintained
17338 F: Documentation/hwmon/smsc47b397.rst
17339 F: drivers/hwmon/smsc47b397.c
17340
17341 SMSC911x ETHERNET DRIVER
17342 M: Steve Glendinning <steve.glendinning@shawell.net>
17343 L: netdev@vger.kernel.org
17344 S: Maintained
17345 F: drivers/net/ethernet/smsc/smsc911x.*
17346 F: include/linux/smsc911x.h
17347
17348 SMSC9420 PCI ETHERNET DRIVER
17349 M: Steve Glendinning <steve.glendinning@shawell.net>
17350 L: netdev@vger.kernel.org
17351 S: Maintained
17352 F: drivers/net/ethernet/smsc/smsc9420.*
17353
17354 SOCIONEXT (SNI) AVE NETWORK DRIVER
17355 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17356 L: netdev@vger.kernel.org
17357 S: Maintained
17358 F: Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17359 F: drivers/net/ethernet/socionext/sni_ave.c
17360
17361 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17362 M: Jassi Brar <jaswinder.singh@linaro.org>
17363 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
17364 L: netdev@vger.kernel.org
17365 S: Maintained
17366 F: Documentation/devicetree/bindings/net/socionext-netsec.txt
17367 F: drivers/net/ethernet/socionext/netsec.c
17368
17369 SOCIONEXT (SNI) Synquacer SPI DRIVER
17370 M: Masahisa Kojima <masahisa.kojima@linaro.org>
17371 M: Jassi Brar <jaswinder.singh@linaro.org>
17372 L: linux-spi@vger.kernel.org
17373 S: Maintained
17374 F: Documentation/devicetree/bindings/spi/spi-synquacer.txt
17375 F: drivers/spi/spi-synquacer.c
17376
17377 SOCIONEXT SYNQUACER I2C DRIVER
17378 M: Ard Biesheuvel <ardb@kernel.org>
17379 L: linux-i2c@vger.kernel.org
17380 S: Maintained
17381 F: Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17382 F: drivers/i2c/busses/i2c-synquacer.c
17383
17384 SOCIONEXT UNIPHIER SOUND DRIVER
17385 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17386 S: Orphan
17387 F: sound/soc/uniphier/
17388
17389 SOEKRIS NET48XX LED SUPPORT
17390 M: Chris Boot <bootc@bootc.net>
17391 S: Maintained
17392 F: drivers/leds/leds-net48xx.c
17393
17394 SOFT-IWARP DRIVER (siw)
17395 M: Bernard Metzler <bmt@zurich.ibm.com>
17396 L: linux-rdma@vger.kernel.org
17397 S: Supported
17398 F: drivers/infiniband/sw/siw/
17399 F: include/uapi/rdma/siw-abi.h
17400
17401 SOFT-ROCE DRIVER (rxe)
17402 M: Zhu Yanjun <zyjzyj2000@gmail.com>
17403 L: linux-rdma@vger.kernel.org
17404 S: Supported
17405 F: drivers/infiniband/sw/rxe/
17406 F: include/uapi/rdma/rdma_user_rxe.h
17407
17408 SOFTLOGIC 6x10 MPEG CODEC
17409 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17410 M: Anton Sviridenko <anton@corp.bluecherry.net>
17411 M: Andrey Utkin <andrey_utkin@fastmail.com>
17412 M: Ismael Luceno <ismael@iodev.co.uk>
17413 L: linux-media@vger.kernel.org
17414 S: Supported
17415 F: drivers/media/pci/solo6x10/
17416
17417 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17418 M: James Morse <james.morse@arm.com>
17419 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17420 S: Maintained
17421 F: Documentation/devicetree/bindings/arm/firmware/sdei.txt
17422 F: drivers/firmware/arm_sdei.c
17423 F: include/linux/arm_sdei.h
17424 F: include/uapi/linux/arm_sdei.h
17425
17426 SOFTWARE NODES
17427 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17428 R: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17429 L: linux-acpi@vger.kernel.org
17430 S: Maintained
17431 F: drivers/base/swnode.c
17432
17433 SOFTWARE RAID (Multiple Disks) SUPPORT
17434 M: Song Liu <song@kernel.org>
17435 L: linux-raid@vger.kernel.org
17436 S: Supported
17437 T: git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17438 F: drivers/md/Kconfig
17439 F: drivers/md/Makefile
17440 F: drivers/md/md*
17441 F: drivers/md/raid*
17442 F: include/linux/raid/
17443 F: include/uapi/linux/raid/
17444
17445 SOLIDRUN CLEARFOG SUPPORT
17446 M: Russell King <linux@armlinux.org.uk>
17447 S: Maintained
17448 F: arch/arm/boot/dts/armada-388-clearfog*
17449 F: arch/arm/boot/dts/armada-38x-solidrun-*
17450
17451 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17452 M: Russell King <linux@armlinux.org.uk>
17453 S: Maintained
17454 F: arch/arm/boot/dts/imx6*-cubox-i*
17455 F: arch/arm/boot/dts/imx6*-hummingboard*
17456 F: arch/arm/boot/dts/imx6*-sr-*
17457
17458 SONIC NETWORK DRIVER
17459 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17460 L: netdev@vger.kernel.org
17461 S: Maintained
17462 F: drivers/net/ethernet/natsemi/sonic.*
17463
17464 SONICS SILICON BACKPLANE DRIVER (SSB)
17465 M: Michael Buesch <m@bues.ch>
17466 L: linux-wireless@vger.kernel.org
17467 S: Maintained
17468 F: drivers/ssb/
17469 F: include/linux/ssb/
17470
17471 SONY IMX208 SENSOR DRIVER
17472 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17473 L: linux-media@vger.kernel.org
17474 S: Maintained
17475 T: git git://linuxtv.org/media_tree.git
17476 F: drivers/media/i2c/imx208.c
17477
17478 SONY IMX214 SENSOR DRIVER
17479 M: Ricardo Ribalda <ribalda@kernel.org>
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,imx214.yaml
17484 F: drivers/media/i2c/imx214.c
17485
17486 SONY IMX219 SENSOR DRIVER
17487 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
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/imx219.yaml
17492 F: drivers/media/i2c/imx219.c
17493
17494 SONY IMX258 SENSOR DRIVER
17495 M: Sakari Ailus <sakari.ailus@linux.intel.com>
17496 L: linux-media@vger.kernel.org
17497 S: Maintained
17498 T: git git://linuxtv.org/media_tree.git
17499 F: Documentation/devicetree/bindings/media/i2c/imx258.yaml
17500 F: drivers/media/i2c/imx258.c
17501
17502 SONY IMX274 SENSOR DRIVER
17503 M: Leon Luo <leonl@leopardimaging.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,imx274.yaml
17508 F: drivers/media/i2c/imx274.c
17509
17510 SONY IMX290 SENSOR DRIVER
17511 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17512 L: linux-media@vger.kernel.org
17513 S: Maintained
17514 T: git git://linuxtv.org/media_tree.git
17515 F: Documentation/devicetree/bindings/media/i2c/imx290.txt
17516 F: drivers/media/i2c/imx290.c
17517
17518 SONY IMX319 SENSOR DRIVER
17519 M: Bingbu Cao <bingbu.cao@intel.com>
17520 L: linux-media@vger.kernel.org
17521 S: Maintained
17522 T: git git://linuxtv.org/media_tree.git
17523 F: drivers/media/i2c/imx319.c
17524
17525 SONY IMX334 SENSOR DRIVER
17526 M: Paul J. Murphy <paul.j.murphy@intel.com>
17527 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17528 L: linux-media@vger.kernel.org
17529 S: Maintained
17530 T: git git://linuxtv.org/media_tree.git
17531 F: Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17532 F: drivers/media/i2c/imx334.c
17533
17534 SONY IMX335 SENSOR DRIVER
17535 M: Paul J. Murphy <paul.j.murphy@intel.com>
17536 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17537 L: linux-media@vger.kernel.org
17538 S: Maintained
17539 T: git git://linuxtv.org/media_tree.git
17540 F: Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17541 F: drivers/media/i2c/imx335.c
17542
17543 SONY IMX355 SENSOR DRIVER
17544 M: Tianshu Qiu <tian.shu.qiu@intel.com>
17545 L: linux-media@vger.kernel.org
17546 S: Maintained
17547 T: git git://linuxtv.org/media_tree.git
17548 F: drivers/media/i2c/imx355.c
17549
17550 SONY IMX412 SENSOR DRIVER
17551 M: Paul J. Murphy <paul.j.murphy@intel.com>
17552 M: Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17553 L: linux-media@vger.kernel.org
17554 S: Maintained
17555 T: git git://linuxtv.org/media_tree.git
17556 F: Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17557 F: drivers/media/i2c/imx412.c
17558
17559 SONY MEMORYSTICK SUBSYSTEM
17560 M: Maxim Levitsky <maximlevitsky@gmail.com>
17561 M: Alex Dubov <oakad@yahoo.com>
17562 M: Ulf Hansson <ulf.hansson@linaro.org>
17563 L: linux-mmc@vger.kernel.org
17564 S: Maintained
17565 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17566 F: drivers/memstick/
17567 F: include/linux/memstick.h
17568
17569 SONY VAIO CONTROL DEVICE DRIVER
17570 M: Mattia Dongili <malattia@linux.it>
17571 L: platform-driver-x86@vger.kernel.org
17572 S: Maintained
17573 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17574 F: Documentation/admin-guide/laptops/sony-laptop.rst
17575 F: drivers/char/sonypi.c
17576 F: drivers/platform/x86/sony-laptop.c
17577 F: include/linux/sony-laptop.h
17578
17579 SOUND
17580 M: Jaroslav Kysela <perex@perex.cz>
17581 M: Takashi Iwai <tiwai@suse.com>
17582 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17583 S: Maintained
17584 W: http://www.alsa-project.org/
17585 Q: http://patchwork.kernel.org/project/alsa-devel/list/
17586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17587 F: Documentation/sound/
17588 F: include/sound/
17589 F: include/uapi/sound/
17590 F: sound/
17591
17592 SOUND - COMPRESSED AUDIO
17593 M: Vinod Koul <vkoul@kernel.org>
17594 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17595 S: Supported
17596 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17597 F: Documentation/sound/designs/compress-offload.rst
17598 F: include/sound/compress_driver.h
17599 F: include/uapi/sound/compress_*
17600 F: sound/core/compress_offload.c
17601 F: sound/soc/soc-compress.c
17602
17603 SOUND - DMAENGINE HELPERS
17604 M: Lars-Peter Clausen <lars@metafoo.de>
17605 S: Supported
17606 F: include/sound/dmaengine_pcm.h
17607 F: sound/core/pcm_dmaengine.c
17608 F: sound/soc/soc-generic-dmaengine-pcm.c
17609
17610 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17611 M: Liam Girdwood <lgirdwood@gmail.com>
17612 M: Mark Brown <broonie@kernel.org>
17613 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17614 S: Supported
17615 W: http://alsa-project.org/main/index.php/ASoC
17616 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17617 F: Documentation/devicetree/bindings/sound/
17618 F: Documentation/sound/soc/
17619 F: include/dt-bindings/sound/
17620 F: include/sound/soc*
17621 F: sound/soc/
17622
17623 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17624 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17625 M: Liam Girdwood <lgirdwood@gmail.com>
17626 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17627 M: Kai Vehmanen <kai.vehmanen@linux.intel.com>
17628 M: Daniel Baluta <daniel.baluta@nxp.com>
17629 L: sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17630 S: Supported
17631 W: https://github.com/thesofproject/linux/
17632 F: sound/soc/sof/
17633
17634 SOUNDWIRE SUBSYSTEM
17635 M: Vinod Koul <vkoul@kernel.org>
17636 M: Bard Liao <yung-chuan.liao@linux.intel.com>
17637 R: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17638 R: Sanyog Kale <sanyog.r.kale@intel.com>
17639 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17640 S: Supported
17641 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17642 F: Documentation/driver-api/soundwire/
17643 F: drivers/soundwire/
17644 F: include/linux/soundwire/
17645
17646 SP2 MEDIA DRIVER
17647 M: Olli Salonen <olli.salonen@iki.fi>
17648 L: linux-media@vger.kernel.org
17649 S: Maintained
17650 W: https://linuxtv.org
17651 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17652 F: drivers/media/dvb-frontends/sp2*
17653
17654 SPARC + UltraSPARC (sparc/sparc64)
17655 M: "David S. Miller" <davem@davemloft.net>
17656 L: sparclinux@vger.kernel.org
17657 S: Maintained
17658 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
17659 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17660 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17661 F: arch/sparc/
17662 F: drivers/sbus/
17663
17664 SPARC SERIAL DRIVERS
17665 M: "David S. Miller" <davem@davemloft.net>
17666 L: sparclinux@vger.kernel.org
17667 S: Maintained
17668 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17669 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17670 F: drivers/tty/serial/suncore.c
17671 F: drivers/tty/serial/sunhv.c
17672 F: drivers/tty/serial/sunsab.c
17673 F: drivers/tty/serial/sunsab.h
17674 F: drivers/tty/serial/sunsu.c
17675 F: drivers/tty/serial/sunzilog.c
17676 F: drivers/tty/serial/sunzilog.h
17677 F: drivers/tty/vcc.c
17678 F: include/linux/sunserialcore.h
17679
17680 SPARSE CHECKER
17681 M: "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17682 L: linux-sparse@vger.kernel.org
17683 S: Maintained
17684 W: https://sparse.docs.kernel.org/
17685 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17686 Q: https://patchwork.kernel.org/project/linux-sparse/list/
17687 B: https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17688 F: include/linux/compiler.h
17689
17690 SPEAKUP CONSOLE SPEECH DRIVER
17691 M: William Hubbs <w.d.hubbs@gmail.com>
17692 M: Chris Brannon <chris@the-brannons.com>
17693 M: Kirk Reiser <kirk@reisers.ca>
17694 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
17695 L: speakup@linux-speakup.org
17696 S: Odd Fixes
17697 W: http://www.linux-speakup.org/
17698 W: https://github.com/linux-speakup/speakup
17699 B: https://github.com/linux-speakup/speakup/issues
17700 F: drivers/accessibility/speakup/
17701
17702 SPEAR CLOCK FRAMEWORK SUPPORT
17703 M: Viresh Kumar <vireshk@kernel.org>
17704 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17705 S: Maintained
17706 W: http://www.st.com/spear
17707 F: drivers/clk/spear/
17708
17709 SPEAR PLATFORM SUPPORT
17710 M: Viresh Kumar <vireshk@kernel.org>
17711 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17712 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17713 S: Maintained
17714 W: http://www.st.com/spear
17715 F: arch/arm/boot/dts/spear*
17716 F: arch/arm/mach-spear/
17717
17718 SPI NOR SUBSYSTEM
17719 M: Tudor Ambarus <tudor.ambarus@microchip.com>
17720 R: Michael Walle <michael@walle.cc>
17721 R: Pratyush Yadav <p.yadav@ti.com>
17722 L: linux-mtd@lists.infradead.org
17723 S: Maintained
17724 W: http://www.linux-mtd.infradead.org/
17725 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
17726 C: irc://irc.oftc.net/mtd
17727 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17728 F: drivers/mtd/spi-nor/
17729 F: include/linux/mtd/spi-nor.h
17730
17731 SPI SUBSYSTEM
17732 M: Mark Brown <broonie@kernel.org>
17733 L: linux-spi@vger.kernel.org
17734 S: Maintained
17735 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
17736 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17737 F: Documentation/devicetree/bindings/spi/
17738 F: Documentation/spi/
17739 F: drivers/spi/
17740 F: include/linux/spi/
17741 F: include/uapi/linux/spi/
17742 F: tools/spi/
17743
17744 SPIDERNET NETWORK DRIVER for CELL
17745 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17746 M: Geoff Levand <geoff@infradead.org>
17747 L: netdev@vger.kernel.org
17748 L: linuxppc-dev@lists.ozlabs.org
17749 S: Maintained
17750 F: Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17751 F: drivers/net/ethernet/toshiba/spider_net*
17752
17753 SPMI SUBSYSTEM
17754 M: Stephen Boyd <sboyd@kernel.org>
17755 L: linux-kernel@vger.kernel.org
17756 S: Maintained
17757 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17758 F: Documentation/devicetree/bindings/spmi/
17759 F: drivers/spmi/
17760 F: include/dt-bindings/spmi/spmi.h
17761 F: include/linux/spmi.h
17762 F: include/trace/events/spmi.h
17763
17764 SPU FILE SYSTEM
17765 M: Jeremy Kerr <jk@ozlabs.org>
17766 L: linuxppc-dev@lists.ozlabs.org
17767 S: Supported
17768 W: http://www.ibm.com/developerworks/power/cell/
17769 F: Documentation/filesystems/spufs/spufs.rst
17770 F: arch/powerpc/platforms/cell/spufs/
17771
17772 SQUASHFS FILE SYSTEM
17773 M: Phillip Lougher <phillip@squashfs.org.uk>
17774 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
17775 S: Maintained
17776 W: http://squashfs.org.uk
17777 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17778 F: Documentation/filesystems/squashfs.rst
17779 F: fs/squashfs/
17780
17781 SRM (Alpha) environment access
17782 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
17783 S: Maintained
17784 F: arch/alpha/kernel/srm_env.c
17785
17786 ST LSM6DSx IMU IIO DRIVER
17787 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17788 L: linux-iio@vger.kernel.org
17789 S: Maintained
17790 W: http://www.st.com/
17791 F: Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17792 F: drivers/iio/imu/st_lsm6dsx/
17793
17794 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17795 M: Mickael Guene <mickael.guene@st.com>
17796 L: linux-media@vger.kernel.org
17797 S: Maintained
17798 T: git git://linuxtv.org/media_tree.git
17799 F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17800 F: drivers/media/i2c/st-mipid02.c
17801
17802 ST STM32 I2C/SMBUS DRIVER
17803 M: Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17804 M: Alain Volmat <alain.volmat@foss.st.com>
17805 L: linux-i2c@vger.kernel.org
17806 S: Maintained
17807 F: drivers/i2c/busses/i2c-stm32*
17808
17809 ST STM32 SPI DRIVER
17810 M: Alain Volmat <alain.volmat@foss.st.com>
17811 L: linux-spi@vger.kernel.org
17812 S: Maintained
17813 F: drivers/spi/spi-stm32.c
17814
17815 ST STPDDC60 DRIVER
17816 M: Daniel Nilsson <daniel.nilsson@flex.com>
17817 L: linux-hwmon@vger.kernel.org
17818 S: Maintained
17819 F: Documentation/hwmon/stpddc60.rst
17820 F: drivers/hwmon/pmbus/stpddc60.c
17821
17822 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17823 M: Song Qiang <songqiang1304521@gmail.com>
17824 L: linux-iio@vger.kernel.org
17825 S: Maintained
17826 F: Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17827 F: drivers/iio/proximity/vl53l0x-i2c.c
17828
17829 STABLE BRANCH
17830 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17831 M: Sasha Levin <sashal@kernel.org>
17832 L: stable@vger.kernel.org
17833 S: Supported
17834 F: Documentation/process/stable-kernel-rules.rst
17835
17836 STAGING - ATOMISP DRIVER
17837 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17838 R: Sakari Ailus <sakari.ailus@linux.intel.com>
17839 L: linux-media@vger.kernel.org
17840 S: Maintained
17841 F: drivers/staging/media/atomisp/
17842
17843 STAGING - FIELDBUS SUBSYSTEM
17844 M: Sven Van Asbroeck <TheSven73@gmail.com>
17845 S: Maintained
17846 F: drivers/staging/fieldbus/*
17847 F: drivers/staging/fieldbus/Documentation/
17848
17849 STAGING - HMS ANYBUS-S BUS
17850 M: Sven Van Asbroeck <TheSven73@gmail.com>
17851 S: Maintained
17852 F: drivers/staging/fieldbus/anybuss/
17853
17854 STAGING - INDUSTRIAL IO
17855 M: Jonathan Cameron <jic23@kernel.org>
17856 L: linux-iio@vger.kernel.org
17857 S: Odd Fixes
17858 F: Documentation/devicetree/bindings/staging/iio/
17859 F: drivers/staging/iio/
17860
17861 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17862 M: Marc Dietrich <marvin24@gmx.de>
17863 L: ac100@lists.launchpad.net (moderated for non-subscribers)
17864 L: linux-tegra@vger.kernel.org
17865 S: Maintained
17866 F: drivers/staging/nvec/
17867
17868 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17869 M: Jens Frederich <jfrederich@gmail.com>
17870 M: Jon Nettleton <jon.nettleton@gmail.com>
17871 S: Maintained
17872 W: http://wiki.laptop.org/go/DCON
17873 F: drivers/staging/olpc_dcon/
17874
17875 STAGING - REALTEK RTL8188EU DRIVERS
17876 M: Larry Finger <Larry.Finger@lwfinger.net>
17877 M: Phillip Potter <phil@philpotter.co.uk>
17878 S: Supported
17879 F: drivers/staging/r8188eu/
17880
17881 STAGING - REALTEK RTL8712U DRIVERS
17882 M: Larry Finger <Larry.Finger@lwfinger.net>
17883 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17884 S: Odd Fixes
17885 F: drivers/staging/rtl8712/
17886
17887 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17888 M: Michael Hennerich <michael.hennerich@analog.com>
17889 L: linux-fbdev@vger.kernel.org
17890 S: Supported
17891 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17892 F: drivers/staging/fbtft/fb_seps525.c
17893
17894 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17895 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17896 M: Teddy Wang <teddy.wang@siliconmotion.com>
17897 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17898 L: linux-fbdev@vger.kernel.org
17899 S: Maintained
17900 F: drivers/staging/sm750fb/
17901
17902 STAGING - VIA VT665X DRIVERS
17903 M: Forest Bond <forest@alittletooquiet.net>
17904 S: Odd Fixes
17905 F: drivers/staging/vt665?/
17906
17907 STAGING SUBSYSTEM
17908 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17909 L: linux-staging@lists.linux.dev
17910 S: Supported
17911 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17912 F: drivers/staging/
17913
17914 STARFIRE/DURALAN NETWORK DRIVER
17915 M: Ion Badulescu <ionut@badula.org>
17916 S: Odd Fixes
17917 F: drivers/net/ethernet/adaptec/starfire*
17918
17919 STATIC BRANCH/CALL
17920 M: Peter Zijlstra <peterz@infradead.org>
17921 M: Josh Poimboeuf <jpoimboe@redhat.com>
17922 M: Jason Baron <jbaron@akamai.com>
17923 R: Steven Rostedt <rostedt@goodmis.org>
17924 R: Ard Biesheuvel <ardb@kernel.org>
17925 S: Supported
17926 F: arch/*/include/asm/jump_label*.h
17927 F: arch/*/include/asm/static_call*.h
17928 F: arch/*/kernel/jump_label.c
17929 F: arch/*/kernel/static_call.c
17930 F: include/linux/jump_label*.h
17931 F: include/linux/static_call*.h
17932 F: kernel/jump_label.c
17933 F: kernel/static_call.c
17934
17935 STI AUDIO (ASoC) DRIVERS
17936 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17937 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17938 S: Maintained
17939 F: Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17940 F: sound/soc/sti/
17941
17942 STI CEC DRIVER
17943 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
17944 S: Maintained
17945 F: Documentation/devicetree/bindings/media/stih-cec.txt
17946 F: drivers/media/cec/platform/sti/
17947
17948 STK1160 USB VIDEO CAPTURE DRIVER
17949 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17950 L: linux-media@vger.kernel.org
17951 S: Maintained
17952 T: git git://linuxtv.org/media_tree.git
17953 F: drivers/media/usb/stk1160/
17954
17955 STM32 AUDIO (ASoC) DRIVERS
17956 M: Olivier Moysan <olivier.moysan@foss.st.com>
17957 M: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17958 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17959 S: Maintained
17960 F: Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17961 F: Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17962 F: sound/soc/stm/
17963
17964 STM32 TIMER/LPTIMER DRIVERS
17965 M: Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17966 S: Maintained
17967 F: Documentation/ABI/testing/*timer-stm32
17968 F: Documentation/devicetree/bindings/*/*stm32-*timer*
17969 F: drivers/*/stm32-*timer*
17970 F: drivers/pwm/pwm-stm32*
17971 F: include/linux/*/stm32-*tim*
17972
17973 STMMAC ETHERNET DRIVER
17974 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
17975 M: Alexandre Torgue <alexandre.torgue@foss.st.com>
17976 M: Jose Abreu <joabreu@synopsys.com>
17977 L: netdev@vger.kernel.org
17978 S: Supported
17979 W: http://www.stlinux.com
17980 F: Documentation/networking/device_drivers/ethernet/stmicro/
17981 F: drivers/net/ethernet/stmicro/stmmac/
17982
17983 SUN3/3X
17984 M: Sam Creasey <sammy@sammy.net>
17985 S: Maintained
17986 W: http://sammy.net/sun3/
17987 F: arch/m68k/include/asm/sun3*
17988 F: arch/m68k/kernel/*sun3*
17989 F: arch/m68k/sun3*/
17990 F: drivers/net/ethernet/i825xx/sun3*
17991
17992 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17993 M: Hans de Goede <hdegoede@redhat.com>
17994 L: linux-input@vger.kernel.org
17995 S: Maintained
17996 F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17997 F: drivers/input/keyboard/sun4i-lradc-keys.c
17998
17999 SUNDANCE NETWORK DRIVER
18000 M: Denis Kirjanov <kda@linux-powerpc.org>
18001 L: netdev@vger.kernel.org
18002 S: Maintained
18003 F: drivers/net/ethernet/dlink/sundance.c
18004
18005 SUPERH
18006 M: Yoshinori Sato <ysato@users.sourceforge.jp>
18007 M: Rich Felker <dalias@libc.org>
18008 L: linux-sh@vger.kernel.org
18009 S: Maintained
18010 Q: http://patchwork.kernel.org/project/linux-sh/list/
18011 F: Documentation/sh/
18012 F: arch/sh/
18013 F: drivers/sh/
18014
18015 SUSPEND TO RAM
18016 M: "Rafael J. Wysocki" <rafael@kernel.org>
18017 M: Len Brown <len.brown@intel.com>
18018 M: Pavel Machek <pavel@ucw.cz>
18019 L: linux-pm@vger.kernel.org
18020 S: Supported
18021 B: https://bugzilla.kernel.org
18022 F: Documentation/power/
18023 F: arch/x86/kernel/acpi/
18024 F: drivers/base/power/
18025 F: include/linux/freezer.h
18026 F: include/linux/pm.h
18027 F: include/linux/suspend.h
18028 F: kernel/power/
18029
18030 SVGA HANDLING
18031 M: Martin Mares <mj@ucw.cz>
18032 L: linux-video@atrey.karlin.mff.cuni.cz
18033 S: Maintained
18034 F: Documentation/admin-guide/svga.rst
18035 F: arch/x86/boot/video*
18036
18037 SWIOTLB SUBSYSTEM
18038 M: Christoph Hellwig <hch@infradead.org>
18039 L: iommu@lists.linux-foundation.org
18040 L: iommu@lists.linux.dev
18041 S: Supported
18042 W: http://git.infradead.org/users/hch/dma-mapping.git
18043 T: git git://git.infradead.org/users/hch/dma-mapping.git
18044 F: arch/*/kernel/pci-swiotlb.c
18045 F: include/linux/swiotlb.h
18046 F: kernel/dma/swiotlb.c
18047
18048 SWITCHDEV
18049 M: Jiri Pirko <jiri@resnulli.us>
18050 M: Ivan Vecera <ivecera@redhat.com>
18051 L: netdev@vger.kernel.org
18052 S: Supported
18053 F: include/net/switchdev.h
18054 F: net/switchdev/
18055
18056 SY8106A REGULATOR DRIVER
18057 M: Icenowy Zheng <icenowy@aosc.io>
18058 S: Maintained
18059 F: Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18060 F: drivers/regulator/sy8106a-regulator.c
18061
18062 SYNC FILE FRAMEWORK
18063 M: Sumit Semwal <sumit.semwal@linaro.org>
18064 R: Gustavo Padovan <gustavo@padovan.org>
18065 L: linux-media@vger.kernel.org
18066 L: dri-devel@lists.freedesktop.org
18067 S: Maintained
18068 T: git git://anongit.freedesktop.org/drm/drm-misc
18069 F: Documentation/driver-api/sync_file.rst
18070 F: drivers/dma-buf/dma-fence*
18071 F: drivers/dma-buf/sw_sync.c
18072 F: drivers/dma-buf/sync_*
18073 F: include/linux/sync_file.h
18074 F: include/uapi/linux/sync_file.h
18075
18076 SYNOPSYS ARC ARCHITECTURE
18077 M: Vineet Gupta <vgupta@kernel.org>
18078 L: linux-snps-arc@lists.infradead.org
18079 S: Supported
18080 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18081 F: Documentation/devicetree/bindings/arc/*
18082 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18083 F: arch/arc/
18084 F: drivers/clocksource/arc_timer.c
18085 F: drivers/tty/serial/arc_uart.c
18086
18087 SYNOPSYS ARC HSDK SDP pll clock driver
18088 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18089 S: Supported
18090 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18091 F: drivers/clk/clk-hsdk-pll.c
18092
18093 SYNOPSYS ARC SDP clock driver
18094 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18095 S: Supported
18096 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18097 F: drivers/clk/axs10x/*
18098
18099 SYNOPSYS ARC SDP platform support
18100 M: Alexey Brodkin <abrodkin@synopsys.com>
18101 S: Supported
18102 F: Documentation/devicetree/bindings/arc/axs10*
18103 F: arch/arc/boot/dts/ax*
18104 F: arch/arc/plat-axs10x
18105
18106 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18107 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18108 S: Supported
18109 F: Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18110 F: drivers/reset/reset-axs10x.c
18111
18112 SYNOPSYS CREG GPIO DRIVER
18113 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18114 S: Maintained
18115 F: Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18116 F: drivers/gpio/gpio-creg-snps.c
18117
18118 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18119 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18120 S: Maintained
18121 F: drivers/tty/serial/8250/8250_dw.c
18122 F: drivers/tty/serial/8250/8250_dwlib.*
18123 F: drivers/tty/serial/8250/8250_lpss.c
18124
18125 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18126 M: Hoan Tran <hoan@os.amperecomputing.com>
18127 M: Serge Semin <fancer.lancer@gmail.com>
18128 L: linux-gpio@vger.kernel.org
18129 S: Maintained
18130 F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18131 F: drivers/gpio/gpio-dwapb.c
18132
18133 SYNOPSYS DESIGNWARE APB SSI DRIVER
18134 M: Serge Semin <fancer.lancer@gmail.com>
18135 L: linux-spi@vger.kernel.org
18136 S: Supported
18137 F: Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18138 F: drivers/spi/spi-dw*
18139
18140 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18141 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18142 S: Maintained
18143 F: Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18144 F: drivers/dma/dw-axi-dmac/
18145
18146 SYNOPSYS DESIGNWARE DMAC DRIVER
18147 M: Viresh Kumar <vireshk@kernel.org>
18148 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18149 S: Maintained
18150 F: Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18151 F: drivers/dma/dw/
18152 F: include/dt-bindings/dma/dw-dmac.h
18153 F: include/linux/dma/dw.h
18154 F: include/linux/platform_data/dma-dw.h
18155
18156 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18157 M: Jose Abreu <Jose.Abreu@synopsys.com>
18158 L: netdev@vger.kernel.org
18159 S: Supported
18160 F: drivers/net/ethernet/synopsys/
18161
18162 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18163 M: Jose Abreu <Jose.Abreu@synopsys.com>
18164 L: netdev@vger.kernel.org
18165 S: Supported
18166 F: drivers/net/pcs/pcs-xpcs.c
18167 F: drivers/net/pcs/pcs-xpcs.h
18168 F: include/linux/pcs/pcs-xpcs.h
18169
18170 SYNOPSYS DESIGNWARE I2C DRIVER
18171 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
18172 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18173 R: Mika Westerberg <mika.westerberg@linux.intel.com>
18174 L: linux-i2c@vger.kernel.org
18175 S: Maintained
18176 F: drivers/i2c/busses/i2c-designware-*
18177
18178 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18179 M: Jaehoon Chung <jh80.chung@samsung.com>
18180 L: linux-mmc@vger.kernel.org
18181 S: Maintained
18182 F: drivers/mmc/host/dw_mmc*
18183
18184 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18185 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18186 S: Supported
18187 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18188 F: drivers/reset/reset-hsdk.c
18189 F: include/dt-bindings/reset/snps,hsdk-reset.h
18190
18191 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18192 M: Prabu Thangamuthu <prabu.t@synopsys.com>
18193 M: Manjunath M B <manjumb@synopsys.com>
18194 L: linux-mmc@vger.kernel.org
18195 S: Maintained
18196 F: drivers/mmc/host/sdhci-pci-dwc-mshc.c
18197
18198 SYSTEM CONFIGURATION (SYSCON)
18199 M: Lee Jones <lee.jones@linaro.org>
18200 M: Arnd Bergmann <arnd@arndb.de>
18201 S: Supported
18202 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18203 F: drivers/mfd/syscon.c
18204
18205 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18206 M: Sudeep Holla <sudeep.holla@arm.com>
18207 R: Cristian Marussi <cristian.marussi@arm.com>
18208 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18209 S: Maintained
18210 F: Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18211 F: drivers/clk/clk-sc[mp]i.c
18212 F: drivers/cpufreq/sc[mp]i-cpufreq.c
18213 F: drivers/firmware/arm_scmi/
18214 F: drivers/firmware/arm_scpi.c
18215 F: drivers/regulator/scmi-regulator.c
18216 F: drivers/reset/reset-scmi.c
18217 F: include/linux/sc[mp]i_protocol.h
18218 F: include/trace/events/scmi.h
18219 F: include/uapi/linux/virtio_scmi.h
18220
18221 SYSTEM RESET/SHUTDOWN DRIVERS
18222 M: Sebastian Reichel <sre@kernel.org>
18223 L: linux-pm@vger.kernel.org
18224 S: Maintained
18225 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18226 F: Documentation/devicetree/bindings/power/reset/
18227 F: drivers/power/reset/
18228
18229 SYSTEM TRACE MODULE CLASS
18230 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
18231 S: Maintained
18232 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18233 F: Documentation/trace/stm.rst
18234 F: drivers/hwtracing/stm/
18235 F: include/linux/stm.h
18236 F: include/uapi/linux/stm.h
18237
18238 SYSTEM76 ACPI DRIVER
18239 M: Jeremy Soller <jeremy@system76.com>
18240 M: System76 Product Development <productdev@system76.com>
18241 L: platform-driver-x86@vger.kernel.org
18242 S: Maintained
18243 F: drivers/platform/x86/system76_acpi.c
18244
18245 SYSV FILESYSTEM
18246 M: Christoph Hellwig <hch@infradead.org>
18247 S: Maintained
18248 F: Documentation/filesystems/sysv-fs.rst
18249 F: fs/sysv/
18250 F: include/linux/sysv_fs.h
18251
18252 TASKSTATS STATISTICS INTERFACE
18253 M: Balbir Singh <bsingharora@gmail.com>
18254 S: Maintained
18255 F: Documentation/accounting/taskstats*
18256 F: include/linux/taskstats*
18257 F: kernel/taskstats.c
18258
18259 TC subsystem
18260 M: Jamal Hadi Salim <jhs@mojatatu.com>
18261 M: Cong Wang <xiyou.wangcong@gmail.com>
18262 M: Jiri Pirko <jiri@resnulli.us>
18263 L: netdev@vger.kernel.org
18264 S: Maintained
18265 F: include/net/pkt_cls.h
18266 F: include/net/pkt_sched.h
18267 F: include/net/tc_act/
18268 F: include/uapi/linux/pkt_cls.h
18269 F: include/uapi/linux/pkt_sched.h
18270 F: include/uapi/linux/tc_act/
18271 F: include/uapi/linux/tc_ematch/
18272 F: net/sched/
18273
18274 TC90522 MEDIA DRIVER
18275 M: Akihiro Tsukada <tskd08@gmail.com>
18276 L: linux-media@vger.kernel.org
18277 S: Odd Fixes
18278 F: drivers/media/dvb-frontends/tc90522*
18279
18280 TCP LOW PRIORITY MODULE
18281 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18282 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18283 S: Maintained
18284 W: http://tcp-lp-mod.sourceforge.net/
18285 F: net/ipv4/tcp_lp.c
18286
18287 TDA10071 MEDIA DRIVER
18288 M: Antti Palosaari <crope@iki.fi>
18289 L: linux-media@vger.kernel.org
18290 S: Maintained
18291 W: https://linuxtv.org
18292 W: http://palosaari.fi/linux/
18293 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18294 T: git git://linuxtv.org/anttip/media_tree.git
18295 F: drivers/media/dvb-frontends/tda10071*
18296
18297 TDA18212 MEDIA DRIVER
18298 M: Antti Palosaari <crope@iki.fi>
18299 L: linux-media@vger.kernel.org
18300 S: Maintained
18301 W: https://linuxtv.org
18302 W: http://palosaari.fi/linux/
18303 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18304 T: git git://linuxtv.org/anttip/media_tree.git
18305 F: drivers/media/tuners/tda18212*
18306
18307 TDA18218 MEDIA DRIVER
18308 M: Antti Palosaari <crope@iki.fi>
18309 L: linux-media@vger.kernel.org
18310 S: Maintained
18311 W: https://linuxtv.org
18312 W: http://palosaari.fi/linux/
18313 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18314 T: git git://linuxtv.org/anttip/media_tree.git
18315 F: drivers/media/tuners/tda18218*
18316
18317 TDA18250 MEDIA DRIVER
18318 M: Olli Salonen <olli.salonen@iki.fi>
18319 L: linux-media@vger.kernel.org
18320 S: Maintained
18321 W: https://linuxtv.org
18322 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18323 T: git git://linuxtv.org/media_tree.git
18324 F: drivers/media/tuners/tda18250*
18325
18326 TDA18271 MEDIA DRIVER
18327 M: Michael Krufky <mkrufky@linuxtv.org>
18328 L: linux-media@vger.kernel.org
18329 S: Maintained
18330 W: https://linuxtv.org
18331 W: http://github.com/mkrufky
18332 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18333 T: git git://linuxtv.org/mkrufky/tuners.git
18334 F: drivers/media/tuners/tda18271*
18335
18336 TDA1997x MEDIA DRIVER
18337 M: Tim Harvey <tharvey@gateworks.com>
18338 L: linux-media@vger.kernel.org
18339 S: Maintained
18340 W: https://linuxtv.org
18341 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18342 F: drivers/media/i2c/tda1997x.*
18343
18344 TDA827x MEDIA DRIVER
18345 M: Michael Krufky <mkrufky@linuxtv.org>
18346 L: linux-media@vger.kernel.org
18347 S: Maintained
18348 W: https://linuxtv.org
18349 W: http://github.com/mkrufky
18350 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18351 T: git git://linuxtv.org/mkrufky/tuners.git
18352 F: drivers/media/tuners/tda8290.*
18353
18354 TDA8290 MEDIA DRIVER
18355 M: Michael Krufky <mkrufky@linuxtv.org>
18356 L: linux-media@vger.kernel.org
18357 S: Maintained
18358 W: https://linuxtv.org
18359 W: http://github.com/mkrufky
18360 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18361 T: git git://linuxtv.org/mkrufky/tuners.git
18362 F: drivers/media/tuners/tda8290.*
18363
18364 TDA9840 MEDIA DRIVER
18365 M: Hans Verkuil <hverkuil@xs4all.nl>
18366 L: linux-media@vger.kernel.org
18367 S: Maintained
18368 W: https://linuxtv.org
18369 T: git git://linuxtv.org/media_tree.git
18370 F: drivers/media/i2c/tda9840*
18371
18372 TEA5761 TUNER DRIVER
18373 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18374 L: linux-media@vger.kernel.org
18375 S: Odd fixes
18376 W: https://linuxtv.org
18377 T: git git://linuxtv.org/media_tree.git
18378 F: drivers/media/tuners/tea5761.*
18379
18380 TEA5767 TUNER DRIVER
18381 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18382 L: linux-media@vger.kernel.org
18383 S: Maintained
18384 W: https://linuxtv.org
18385 T: git git://linuxtv.org/media_tree.git
18386 F: drivers/media/tuners/tea5767.*
18387
18388 TEA6415C MEDIA DRIVER
18389 M: Hans Verkuil <hverkuil@xs4all.nl>
18390 L: linux-media@vger.kernel.org
18391 S: Maintained
18392 W: https://linuxtv.org
18393 T: git git://linuxtv.org/media_tree.git
18394 F: drivers/media/i2c/tea6415c*
18395
18396 TEA6420 MEDIA DRIVER
18397 M: Hans Verkuil <hverkuil@xs4all.nl>
18398 L: linux-media@vger.kernel.org
18399 S: Maintained
18400 W: https://linuxtv.org
18401 T: git git://linuxtv.org/media_tree.git
18402 F: drivers/media/i2c/tea6420*
18403
18404 TEAM DRIVER
18405 M: Jiri Pirko <jiri@resnulli.us>
18406 L: netdev@vger.kernel.org
18407 S: Supported
18408 F: drivers/net/team/
18409 F: include/linux/if_team.h
18410 F: include/uapi/linux/if_team.h
18411
18412 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18413 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18414 S: Maintained
18415 F: arch/x86/platform/ts5500/
18416
18417 TECHNOTREND USB IR RECEIVER
18418 M: Sean Young <sean@mess.org>
18419 L: linux-media@vger.kernel.org
18420 S: Maintained
18421 F: drivers/media/rc/ttusbir.c
18422
18423 TECHWELL TW9910 VIDEO DECODER
18424 L: linux-media@vger.kernel.org
18425 S: Orphan
18426 F: drivers/media/i2c/tw9910.c
18427 F: include/media/i2c/tw9910.h
18428
18429 TEE SUBSYSTEM
18430 M: Jens Wiklander <jens.wiklander@linaro.org>
18431 R: Sumit Garg <sumit.garg@linaro.org>
18432 L: op-tee@lists.trustedfirmware.org
18433 S: Maintained
18434 F: Documentation/staging/tee.rst
18435 F: drivers/tee/
18436 F: include/linux/tee_drv.h
18437 F: include/uapi/linux/tee.h
18438
18439 TEGRA ARCHITECTURE SUPPORT
18440 M: Thierry Reding <thierry.reding@gmail.com>
18441 M: Jonathan Hunter <jonathanh@nvidia.com>
18442 L: linux-tegra@vger.kernel.org
18443 S: Supported
18444 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
18445 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18446 N: [^a-z]tegra
18447
18448 TEGRA CLOCK DRIVER
18449 M: Peter De Schrijver <pdeschrijver@nvidia.com>
18450 M: Prashant Gaikwad <pgaikwad@nvidia.com>
18451 S: Supported
18452 F: drivers/clk/tegra/
18453
18454 TEGRA DMA DRIVERS
18455 M: Laxman Dewangan <ldewangan@nvidia.com>
18456 M: Jon Hunter <jonathanh@nvidia.com>
18457 S: Supported
18458 F: drivers/dma/tegra*
18459
18460 TEGRA I2C DRIVER
18461 M: Laxman Dewangan <ldewangan@nvidia.com>
18462 R: Dmitry Osipenko <digetx@gmail.com>
18463 S: Supported
18464 F: drivers/i2c/busses/i2c-tegra.c
18465
18466 TEGRA IOMMU DRIVERS
18467 M: Thierry Reding <thierry.reding@gmail.com>
18468 R: Krishna Reddy <vdumpa@nvidia.com>
18469 L: linux-tegra@vger.kernel.org
18470 S: Supported
18471 F: drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18472 F: drivers/iommu/tegra*
18473
18474 TEGRA KBC DRIVER
18475 M: Laxman Dewangan <ldewangan@nvidia.com>
18476 S: Supported
18477 F: drivers/input/keyboard/tegra-kbc.c
18478
18479 TEGRA NAND DRIVER
18480 M: Stefan Agner <stefan@agner.ch>
18481 M: Lucas Stach <dev@lynxeye.de>
18482 S: Maintained
18483 F: Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18484 F: drivers/mtd/nand/raw/tegra_nand.c
18485
18486 TEGRA PWM DRIVER
18487 M: Thierry Reding <thierry.reding@gmail.com>
18488 S: Supported
18489 F: drivers/pwm/pwm-tegra.c
18490
18491 TEGRA SERIAL DRIVER
18492 M: Laxman Dewangan <ldewangan@nvidia.com>
18493 S: Supported
18494 F: drivers/tty/serial/serial-tegra.c
18495
18496 TEGRA SPI DRIVER
18497 M: Laxman Dewangan <ldewangan@nvidia.com>
18498 S: Supported
18499 F: drivers/spi/spi-tegra*
18500
18501 TEGRA QUAD SPI DRIVER
18502 M: Thierry Reding <thierry.reding@gmail.com>
18503 M: Jonathan Hunter <jonathanh@nvidia.com>
18504 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18505 L: linux-tegra@vger.kernel.org
18506 S: Maintained
18507 F: drivers/spi/spi-tegra210-quad.c
18508
18509 TEGRA VIDEO DRIVER
18510 M: Thierry Reding <thierry.reding@gmail.com>
18511 M: Jonathan Hunter <jonathanh@nvidia.com>
18512 M: Sowjanya Komatineni <skomatineni@nvidia.com>
18513 L: linux-media@vger.kernel.org
18514 L: linux-tegra@vger.kernel.org
18515 S: Maintained
18516 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18517 F: drivers/staging/media/tegra-video/
18518
18519 TEGRA XUSB PADCTL DRIVER
18520 M: JC Kuo <jckuo@nvidia.com>
18521 S: Supported
18522 F: drivers/phy/tegra/xusb*
18523
18524 TEHUTI ETHERNET DRIVER
18525 M: Andy Gospodarek <andy@greyhouse.net>
18526 L: netdev@vger.kernel.org
18527 S: Supported
18528 F: drivers/net/ethernet/tehuti/*
18529
18530 TELECOM CLOCK DRIVER FOR MCPL0010
18531 M: Mark Gross <mark.gross@intel.com>
18532 S: Supported
18533 F: drivers/char/tlclk.c
18534
18535 TEMPO SEMICONDUCTOR DRIVERS
18536 M: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18537 S: Maintained
18538 F: Documentation/devicetree/bindings/sound/tscs*.txt
18539 F: sound/soc/codecs/tscs*.c
18540 F: sound/soc/codecs/tscs*.h
18541
18542 TENSILICA XTENSA PORT (xtensa)
18543 M: Chris Zankel <chris@zankel.net>
18544 M: Max Filippov <jcmvbkbc@gmail.com>
18545 L: linux-xtensa@linux-xtensa.org
18546 S: Maintained
18547 T: git git://github.com/czankel/xtensa-linux.git
18548 F: arch/xtensa/
18549 F: drivers/irqchip/irq-xtensa-*
18550
18551 TEXAS INSTRUMENTS ASoC DRIVERS
18552 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18553 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18554 S: Maintained
18555 F: sound/soc/ti/
18556
18557 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18558 M: Ricardo Ribalda <ribalda@kernel.org>
18559 L: linux-iio@vger.kernel.org
18560 S: Supported
18561 F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18562 F: drivers/iio/dac/ti-dac7612.c
18563
18564 TEXAS INSTRUMENTS DMA DRIVERS
18565 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18566 L: dmaengine@vger.kernel.org
18567 S: Maintained
18568 F: Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18569 F: Documentation/devicetree/bindings/dma/ti-edma.txt
18570 F: Documentation/devicetree/bindings/dma/ti/
18571 F: drivers/dma/ti/
18572 X: drivers/dma/ti/cppi41.c
18573 F: include/linux/dma/k3-udma-glue.h
18574 F: include/linux/dma/ti-cppi5.h
18575 F: include/linux/dma/k3-psil.h
18576
18577 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18578 M: Nishanth Menon <nm@ti.com>
18579 M: Tero Kristo <kristo@kernel.org>
18580 M: Santosh Shilimkar <ssantosh@kernel.org>
18581 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18582 S: Maintained
18583 F: Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18584 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18585 F: Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18586 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18587 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18588 F: Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18589 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18590 F: drivers/clk/keystone/sci-clk.c
18591 F: drivers/firmware/ti_sci*
18592 F: drivers/irqchip/irq-ti-sci-inta.c
18593 F: drivers/irqchip/irq-ti-sci-intr.c
18594 F: drivers/reset/reset-ti-sci.c
18595 F: drivers/soc/ti/ti_sci_inta_msi.c
18596 F: drivers/soc/ti/ti_sci_pm_domains.c
18597 F: include/dt-bindings/soc/ti,sci_pm_domain.h
18598 F: include/linux/soc/ti/ti_sci_inta_msi.h
18599 F: include/linux/soc/ti/ti_sci_protocol.h
18600
18601 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18602 M: Robert Marko <robert.marko@sartura.hr>
18603 M: Luka Perkov <luka.perkov@sartura.hr>
18604 L: linux-hwmon@vger.kernel.org
18605 S: Maintained
18606 F: Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18607 F: Documentation/hwmon/tps23861.rst
18608 F: drivers/hwmon/tps23861.c
18609
18610 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18611 M: Puranjay Mohan <puranjay12@gmail.com>
18612 L: linux-iio@vger.kernel.org
18613 S: Supported
18614 F: Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18615 F: drivers/iio/temperature/tmp117.c
18616
18617 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18618 M: Hans Verkuil <hverkuil@xs4all.nl>
18619 L: linux-media@vger.kernel.org
18620 S: Maintained
18621 W: https://linuxtv.org
18622 T: git git://linuxtv.org/media_tree.git
18623 F: drivers/media/radio/radio-raremono.c
18624
18625 THERMAL
18626 M: Rafael J. Wysocki <rafael@kernel.org>
18627 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18628 R: Amit Kucheria <amitk@kernel.org>
18629 R: Zhang Rui <rui.zhang@intel.com>
18630 L: linux-pm@vger.kernel.org
18631 S: Supported
18632 Q: https://patchwork.kernel.org/project/linux-pm/list/
18633 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18634 F: Documentation/devicetree/bindings/thermal/
18635 F: drivers/thermal/
18636 F: include/linux/cpu_cooling.h
18637 F: include/linux/thermal.h
18638 F: include/uapi/linux/thermal.h
18639 F: tools/thermal/
18640
18641 THERMAL DRIVER FOR AMLOGIC SOCS
18642 M: Guillaume La Roque <glaroque@baylibre.com>
18643 L: linux-pm@vger.kernel.org
18644 L: linux-amlogic@lists.infradead.org
18645 S: Supported
18646 W: http://linux-meson.com/
18647 F: Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18648 F: drivers/thermal/amlogic_thermal.c
18649
18650 THERMAL/CPU_COOLING
18651 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
18652 M: Daniel Lezcano <daniel.lezcano@linaro.org>
18653 M: Viresh Kumar <viresh.kumar@linaro.org>
18654 R: Lukasz Luba <lukasz.luba@arm.com>
18655 L: linux-pm@vger.kernel.org
18656 S: Supported
18657 F: Documentation/driver-api/thermal/cpu-cooling-api.rst
18658 F: Documentation/driver-api/thermal/cpu-idle-cooling.rst
18659 F: drivers/thermal/cpufreq_cooling.c
18660 F: drivers/thermal/cpuidle_cooling.c
18661 F: include/linux/cpu_cooling.h
18662
18663 THERMAL/POWER_ALLOCATOR
18664 M: Lukasz Luba <lukasz.luba@arm.com>
18665 L: linux-pm@vger.kernel.org
18666 S: Maintained
18667 F: Documentation/driver-api/thermal/power_allocator.rst
18668 F: drivers/thermal/gov_power_allocator.c
18669 F: include/trace/events/thermal_power_allocator.h
18670
18671 THINKPAD ACPI EXTRAS DRIVER
18672 M: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18673 L: ibm-acpi-devel@lists.sourceforge.net
18674 L: platform-driver-x86@vger.kernel.org
18675 S: Maintained
18676 W: http://ibm-acpi.sourceforge.net
18677 W: http://thinkwiki.org/wiki/Ibm-acpi
18678 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18679 F: drivers/platform/x86/thinkpad_acpi.c
18680
18681 THINKPAD LMI DRIVER
18682 M: Mark Pearson <markpearson@lenovo.com>
18683 L: platform-driver-x86@vger.kernel.org
18684 S: Maintained
18685 F: Documentation/ABI/testing/sysfs-class-firmware-attributes
18686 F: drivers/platform/x86/think-lmi.?
18687
18688 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18689 M: Isaac Hazan <isaac.hazan@intel.com>
18690 L: linux-usb@vger.kernel.org
18691 S: Maintained
18692 F: drivers/thunderbolt/dma_test.c
18693
18694 THUNDERBOLT DRIVER
18695 M: Andreas Noever <andreas.noever@gmail.com>
18696 M: Michael Jamet <michael.jamet@intel.com>
18697 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18698 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18699 L: linux-usb@vger.kernel.org
18700 S: Maintained
18701 T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18702 F: Documentation/admin-guide/thunderbolt.rst
18703 F: drivers/thunderbolt/
18704 F: include/linux/thunderbolt.h
18705
18706 THUNDERBOLT NETWORK DRIVER
18707 M: Michael Jamet <michael.jamet@intel.com>
18708 M: Mika Westerberg <mika.westerberg@linux.intel.com>
18709 M: Yehezkel Bernat <YehezkelShB@gmail.com>
18710 L: netdev@vger.kernel.org
18711 S: Maintained
18712 F: drivers/net/thunderbolt.c
18713
18714 THUNDERX GPIO DRIVER
18715 M: Robert Richter <rric@kernel.org>
18716 S: Odd Fixes
18717 F: drivers/gpio/gpio-thunderx.c
18718
18719 TI ADS131E0X ADC SERIES DRIVER
18720 M: Tomislav Denis <tomislav.denis@avl.com>
18721 L: linux-iio@vger.kernel.org
18722 S: Maintained
18723 F: Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18724 F: drivers/iio/adc/ti-ads131e08.c
18725
18726 TI AM437X VPFE DRIVER
18727 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18728 L: linux-media@vger.kernel.org
18729 S: Maintained
18730 W: https://linuxtv.org
18731 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18732 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18733 F: drivers/media/platform/am437x/
18734
18735 TI BANDGAP AND THERMAL DRIVER
18736 M: Eduardo Valentin <edubezval@gmail.com>
18737 M: Keerthy <j-keerthy@ti.com>
18738 L: linux-pm@vger.kernel.org
18739 L: linux-omap@vger.kernel.org
18740 S: Maintained
18741 F: drivers/thermal/ti-soc-thermal/
18742
18743 TI BQ27XXX POWER SUPPLY DRIVER
18744 F: drivers/power/supply/bq27xxx_battery.c
18745 F: drivers/power/supply/bq27xxx_battery_i2c.c
18746 F: include/linux/power/bq27xxx_battery.h
18747
18748 TI CDCE706 CLOCK DRIVER
18749 M: Max Filippov <jcmvbkbc@gmail.com>
18750 S: Maintained
18751 F: drivers/clk/clk-cdce706.c
18752
18753 TI CLOCK DRIVER
18754 M: Tero Kristo <kristo@kernel.org>
18755 L: linux-omap@vger.kernel.org
18756 S: Odd Fixes
18757 F: drivers/clk/ti/
18758 F: include/linux/clk/ti.h
18759
18760 TI DAVINCI MACHINE SUPPORT
18761 M: Sekhar Nori <nsekhar@ti.com>
18762 R: Bartosz Golaszewski <brgl@bgdev.pl>
18763 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18764 S: Supported
18765 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18766 F: Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18767 F: arch/arm/boot/dts/da850*
18768 F: arch/arm/mach-davinci/
18769 F: drivers/i2c/busses/i2c-davinci.c
18770
18771 TI DAVINCI SERIES CLOCK DRIVER
18772 M: David Lechner <david@lechnology.com>
18773 R: Sekhar Nori <nsekhar@ti.com>
18774 S: Maintained
18775 F: Documentation/devicetree/bindings/clock/ti/davinci/
18776 F: drivers/clk/davinci/
18777
18778 TI DAVINCI SERIES GPIO DRIVER
18779 M: Keerthy <j-keerthy@ti.com>
18780 L: linux-gpio@vger.kernel.org
18781 S: Maintained
18782 F: Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18783 F: drivers/gpio/gpio-davinci.c
18784
18785 TI DAVINCI SERIES MEDIA DRIVER
18786 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18787 L: linux-media@vger.kernel.org
18788 S: Maintained
18789 W: https://linuxtv.org
18790 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18791 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18792 F: drivers/media/platform/davinci/
18793 F: include/media/davinci/
18794
18795 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18796 R: David Lechner <david@lechnology.com>
18797 L: linux-iio@vger.kernel.org
18798 F: Documentation/devicetree/bindings/counter/ti-eqep.yaml
18799 F: drivers/counter/ti-eqep.c
18800
18801 TI ETHERNET SWITCH DRIVER (CPSW)
18802 R: Grygorii Strashko <grygorii.strashko@ti.com>
18803 L: linux-omap@vger.kernel.org
18804 L: netdev@vger.kernel.org
18805 S: Maintained
18806 F: drivers/net/ethernet/ti/cpsw*
18807 F: drivers/net/ethernet/ti/davinci*
18808
18809 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18810 M: Alex Dubov <oakad@yahoo.com>
18811 S: Maintained
18812 W: http://tifmxx.berlios.de/
18813 F: drivers/memstick/host/tifm_ms.c
18814 F: drivers/misc/tifm*
18815 F: drivers/mmc/host/tifm_sd.c
18816 F: include/linux/tifm.h
18817
18818 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18819 M: Santosh Shilimkar <ssantosh@kernel.org>
18820 L: linux-kernel@vger.kernel.org
18821 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18822 S: Maintained
18823 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18824 F: drivers/soc/ti/*
18825
18826 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18827 M: M R Swami Reddy <mr.swami.reddy@ti.com>
18828 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18829 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18830 S: Maintained
18831 F: sound/soc/codecs/isabelle*
18832 F: sound/soc/codecs/lm49453*
18833
18834 TI PCM3060 ASoC CODEC DRIVER
18835 M: Kirill Marinushkin <kmarinushkin@birdec.com>
18836 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18837 S: Maintained
18838 F: Documentation/devicetree/bindings/sound/pcm3060.txt
18839 F: sound/soc/codecs/pcm3060*
18840
18841 TI TAS571X FAMILY ASoC CODEC DRIVER
18842 M: Kevin Cernekee <cernekee@chromium.org>
18843 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18844 S: Odd Fixes
18845 F: sound/soc/codecs/tas571x*
18846
18847 TI TRF7970A NFC DRIVER
18848 M: Mark Greer <mgreer@animalcreek.com>
18849 L: linux-wireless@vger.kernel.org
18850 L: linux-nfc@lists.01.org (subscribers-only)
18851 S: Supported
18852 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18853 F: drivers/nfc/trf7970a.c
18854
18855 TI TSC2046 ADC DRIVER
18856 M: Oleksij Rempel <o.rempel@pengutronix.de>
18857 R: kernel@pengutronix.de
18858 L: linux-iio@vger.kernel.org
18859 S: Maintained
18860 F: Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18861 F: drivers/iio/adc/ti-tsc2046.c
18862
18863 TI TWL4030 SERIES SOC CODEC DRIVER
18864 M: Peter Ujfalusi <peter.ujfalusi@gmail.com>
18865 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18866 S: Maintained
18867 F: sound/soc/codecs/twl4030*
18868
18869 TI VPE/CAL DRIVERS
18870 M: Benoit Parrot <bparrot@ti.com>
18871 L: linux-media@vger.kernel.org
18872 S: Maintained
18873 W: http://linuxtv.org/
18874 Q: http://patchwork.linuxtv.org/project/linux-media/list/
18875 F: Documentation/devicetree/bindings/media/ti,cal.yaml
18876 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
18877 F: drivers/media/platform/ti-vpe/
18878
18879 TI WILINK WIRELESS DRIVERS
18880 L: linux-wireless@vger.kernel.org
18881 S: Orphan
18882 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18883 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18884 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18885 F: drivers/net/wireless/ti/
18886 F: include/linux/wl12xx.h
18887
18888 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18889 M: John Stultz <john.stultz@linaro.org>
18890 M: Thomas Gleixner <tglx@linutronix.de>
18891 R: Stephen Boyd <sboyd@kernel.org>
18892 L: linux-kernel@vger.kernel.org
18893 S: Supported
18894 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18895 F: include/linux/clocksource.h
18896 F: include/linux/time.h
18897 F: include/linux/timex.h
18898 F: include/uapi/linux/time.h
18899 F: include/uapi/linux/timex.h
18900 F: kernel/time/alarmtimer.c
18901 F: kernel/time/clocksource.c
18902 F: kernel/time/ntp.c
18903 F: kernel/time/time*.c
18904 F: tools/testing/selftests/timers/
18905
18906 TIPC NETWORK LAYER
18907 M: Jon Maloy <jmaloy@redhat.com>
18908 M: Ying Xue <ying.xue@windriver.com>
18909 L: netdev@vger.kernel.org (core kernel code)
18910 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18911 S: Maintained
18912 W: http://tipc.sourceforge.net/
18913 F: include/uapi/linux/tipc*.h
18914 F: net/tipc/
18915
18916 TLAN NETWORK DRIVER
18917 M: Samuel Chessman <chessman@tux.org>
18918 L: tlan-devel@lists.sourceforge.net (subscribers-only)
18919 S: Maintained
18920 W: http://sourceforge.net/projects/tlan/
18921 F: Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18922 F: drivers/net/ethernet/ti/tlan.*
18923
18924 TM6000 VIDEO4LINUX DRIVER
18925 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18926 L: linux-media@vger.kernel.org
18927 S: Odd fixes
18928 W: https://linuxtv.org
18929 T: git git://linuxtv.org/media_tree.git
18930 F: Documentation/admin-guide/media/tm6000*
18931 F: drivers/media/usb/tm6000/
18932
18933 TMIO/SDHI MMC DRIVER
18934 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
18935 L: linux-mmc@vger.kernel.org
18936 S: Supported
18937 F: drivers/mmc/host/renesas_sdhi*
18938 F: drivers/mmc/host/tmio_mmc*
18939 F: include/linux/mfd/tmio.h
18940
18941 TMP401 HARDWARE MONITOR DRIVER
18942 M: Guenter Roeck <linux@roeck-us.net>
18943 L: linux-hwmon@vger.kernel.org
18944 S: Maintained
18945 F: Documentation/hwmon/tmp401.rst
18946 F: drivers/hwmon/tmp401.c
18947
18948 TMP513 HARDWARE MONITOR DRIVER
18949 M: Eric Tremblay <etremblay@distech-controls.com>
18950 L: linux-hwmon@vger.kernel.org
18951 S: Maintained
18952 F: Documentation/hwmon/tmp513.rst
18953 F: drivers/hwmon/tmp513.c
18954
18955 TMPFS (SHMEM FILESYSTEM)
18956 M: Hugh Dickins <hughd@google.com>
18957 L: linux-mm@kvack.org
18958 S: Maintained
18959 F: include/linux/shmem_fs.h
18960 F: mm/shmem.c
18961
18962 TOMOYO SECURITY MODULE
18963 M: Kentaro Takeda <takedakn@nttdata.co.jp>
18964 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18965 L: tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18966 L: tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18967 L: tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18968 L: tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18969 S: Maintained
18970 W: https://tomoyo.osdn.jp/
18971 F: security/tomoyo/
18972
18973 TOPSTAR LAPTOP EXTRAS DRIVER
18974 M: Herton Ronaldo Krzesinski <herton@canonical.com>
18975 L: platform-driver-x86@vger.kernel.org
18976 S: Maintained
18977 F: drivers/platform/x86/topstar-laptop.c
18978
18979 TORTURE-TEST MODULES
18980 M: Davidlohr Bueso <dave@stgolabs.net>
18981 M: "Paul E. McKenney" <paulmck@kernel.org>
18982 M: Josh Triplett <josh@joshtriplett.org>
18983 L: linux-kernel@vger.kernel.org
18984 S: Supported
18985 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18986 F: Documentation/RCU/torture.rst
18987 F: kernel/locking/locktorture.c
18988 F: kernel/rcu/rcuscale.c
18989 F: kernel/rcu/rcutorture.c
18990 F: kernel/rcu/refscale.c
18991 F: kernel/torture.c
18992
18993 TOSHIBA ACPI EXTRAS DRIVER
18994 M: Azael Avalos <coproscefalo@gmail.com>
18995 L: platform-driver-x86@vger.kernel.org
18996 S: Maintained
18997 F: drivers/platform/x86/toshiba_acpi.c
18998
18999 TOSHIBA BLUETOOTH DRIVER
19000 M: Azael Avalos <coproscefalo@gmail.com>
19001 L: platform-driver-x86@vger.kernel.org
19002 S: Maintained
19003 F: drivers/platform/x86/toshiba_bluetooth.c
19004
19005 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19006 M: Azael Avalos <coproscefalo@gmail.com>
19007 L: platform-driver-x86@vger.kernel.org
19008 S: Maintained
19009 F: drivers/platform/x86/toshiba_haps.c
19010
19011 TOSHIBA SMM DRIVER
19012 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
19013 S: Maintained
19014 W: http://www.buzzard.org.uk/toshiba/
19015 F: drivers/char/toshiba.c
19016 F: include/linux/toshiba.h
19017 F: include/uapi/linux/toshiba.h
19018
19019 TOSHIBA TC358743 DRIVER
19020 M: Mats Randgaard <matrandg@cisco.com>
19021 L: linux-media@vger.kernel.org
19022 S: Maintained
19023 F: drivers/media/i2c/tc358743*
19024 F: include/media/i2c/tc358743.h
19025
19026 TOSHIBA WMI HOTKEYS DRIVER
19027 M: Azael Avalos <coproscefalo@gmail.com>
19028 L: platform-driver-x86@vger.kernel.org
19029 S: Maintained
19030 F: drivers/platform/x86/toshiba-wmi.c
19031
19032 TPM DEVICE DRIVER
19033 M: Peter Huewe <peterhuewe@gmx.de>
19034 M: Jarkko Sakkinen <jarkko@kernel.org>
19035 R: Jason Gunthorpe <jgg@ziepe.ca>
19036 L: linux-integrity@vger.kernel.org
19037 S: Maintained
19038 W: https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19039 Q: https://patchwork.kernel.org/project/linux-integrity/list/
19040 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19041 F: drivers/char/tpm/
19042
19043 TRACING
19044 M: Steven Rostedt <rostedt@goodmis.org>
19045 M: Ingo Molnar <mingo@redhat.com>
19046 S: Maintained
19047 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
19048 F: Documentation/trace/ftrace.rst
19049 F: arch/*/*/*/ftrace.h
19050 F: arch/*/kernel/ftrace.c
19051 F: fs/tracefs/
19052 F: include/*/ftrace.h
19053 F: include/linux/trace*.h
19054 F: include/trace/
19055 F: kernel/trace/
19056 F: tools/testing/selftests/ftrace/
19057
19058 TRACING MMIO ACCESSES (MMIOTRACE)
19059 M: Steven Rostedt <rostedt@goodmis.org>
19060 M: Ingo Molnar <mingo@kernel.org>
19061 R: Karol Herbst <karolherbst@gmail.com>
19062 R: Pekka Paalanen <ppaalanen@gmail.com>
19063 L: linux-kernel@vger.kernel.org
19064 L: nouveau@lists.freedesktop.org
19065 S: Maintained
19066 F: arch/x86/mm/kmmio.c
19067 F: arch/x86/mm/mmio-mod.c
19068 F: arch/x86/mm/testmmiotrace.c
19069 F: include/linux/mmiotrace.h
19070 F: kernel/trace/trace_mmiotrace.c
19071
19072 TRACING OS NOISE / LATENCY TRACERS
19073 M: Steven Rostedt <rostedt@goodmis.org>
19074 M: Daniel Bristot de Oliveira <bristot@kernel.org>
19075 S: Maintained
19076 F: kernel/trace/trace_osnoise.c
19077 F: include/trace/events/osnoise.h
19078 F: kernel/trace/trace_hwlat.c
19079 F: kernel/trace/trace_irqsoff.c
19080 F: kernel/trace/trace_sched_wakeup.c
19081 F: Documentation/trace/osnoise-tracer.rst
19082 F: Documentation/trace/timerlat-tracer.rst
19083 F: Documentation/trace/hwlat_detector.rst
19084 F: arch/*/kernel/trace.c
19085
19086 TRADITIONAL CHINESE DOCUMENTATION
19087 M: Hu Haowen <src.res@email.cn>
19088 L: linux-doc-tw-discuss@lists.sourceforge.net
19089 S: Maintained
19090 W: https://github.com/srcres258/linux-doc
19091 T: git git://github.com/srcres258/linux-doc.git doc-zh-tw
19092 F: Documentation/translations/zh_TW/
19093
19094 TRIVIAL PATCHES
19095 M: Jiri Kosina <trivial@kernel.org>
19096 S: Maintained
19097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19098 K: ^Subject:.*(?i)trivial
19099
19100 TTY LAYER
19101 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19102 M: Jiri Slaby <jirislaby@kernel.org>
19103 S: Supported
19104 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19105 F: Documentation/driver-api/serial/
19106 F: drivers/tty/
19107 F: drivers/tty/serial/serial_core.c
19108 F: include/linux/selection.h
19109 F: include/linux/serial.h
19110 F: include/linux/serial_core.h
19111 F: include/linux/sysrq.h
19112 F: include/linux/tty*.h
19113 F: include/linux/vt.h
19114 F: include/linux/vt_*.h
19115 F: include/uapi/linux/serial.h
19116 F: include/uapi/linux/serial_core.h
19117 F: include/uapi/linux/tty.h
19118
19119 TUA9001 MEDIA DRIVER
19120 M: Antti Palosaari <crope@iki.fi>
19121 L: linux-media@vger.kernel.org
19122 S: Maintained
19123 W: https://linuxtv.org
19124 W: http://palosaari.fi/linux/
19125 Q: http://patchwork.linuxtv.org/project/linux-media/list/
19126 T: git git://linuxtv.org/anttip/media_tree.git
19127 F: drivers/media/tuners/tua9001*
19128
19129 TULIP NETWORK DRIVERS
19130 L: netdev@vger.kernel.org
19131 L: linux-parisc@vger.kernel.org
19132 S: Orphan
19133 F: drivers/net/ethernet/dec/tulip/
19134
19135 TUN/TAP driver
19136 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
19137 S: Maintained
19138 W: http://vtun.sourceforge.net/tun
19139 F: Documentation/networking/tuntap.rst
19140 F: arch/um/os-Linux/drivers/
19141
19142 TURBOCHANNEL SUBSYSTEM
19143 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
19144 M: Ralf Baechle <ralf@linux-mips.org>
19145 L: linux-mips@vger.kernel.org
19146 S: Maintained
19147 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
19148 F: drivers/tc/
19149 F: include/linux/tc.h
19150
19151 TURBOSTAT UTILITY
19152 M: "Len Brown" <lenb@kernel.org>
19153 L: linux-pm@vger.kernel.org
19154 S: Supported
19155 Q: https://patchwork.kernel.org/project/linux-pm/list/
19156 B: https://bugzilla.kernel.org
19157 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19158 F: tools/power/x86/turbostat/
19159
19160 TW5864 VIDEO4LINUX DRIVER
19161 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19162 M: Anton Sviridenko <anton@corp.bluecherry.net>
19163 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19164 M: Andrey Utkin <andrey_utkin@fastmail.com>
19165 L: linux-media@vger.kernel.org
19166 S: Supported
19167 F: drivers/media/pci/tw5864/
19168
19169 TW68 VIDEO4LINUX DRIVER
19170 M: Hans Verkuil <hverkuil@xs4all.nl>
19171 L: linux-media@vger.kernel.org
19172 S: Odd Fixes
19173 W: https://linuxtv.org
19174 T: git git://linuxtv.org/media_tree.git
19175 F: drivers/media/pci/tw68/
19176
19177 TW686X VIDEO4LINUX DRIVER
19178 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19179 L: linux-media@vger.kernel.org
19180 S: Maintained
19181 W: http://linuxtv.org
19182 T: git git://linuxtv.org/media_tree.git
19183 F: drivers/media/pci/tw686x/
19184
19185 UACCE ACCELERATOR FRAMEWORK
19186 M: Zhangfei Gao <zhangfei.gao@linaro.org>
19187 M: Zhou Wang <wangzhou1@hisilicon.com>
19188 L: linux-accelerators@lists.ozlabs.org
19189 L: linux-kernel@vger.kernel.org
19190 S: Maintained
19191 F: Documentation/ABI/testing/sysfs-driver-uacce
19192 F: Documentation/misc-devices/uacce.rst
19193 F: drivers/misc/uacce/
19194 F: include/linux/uacce.h
19195 F: include/uapi/misc/uacce/
19196
19197 UBI FILE SYSTEM (UBIFS)
19198 M: Richard Weinberger <richard@nod.at>
19199 L: linux-mtd@lists.infradead.org
19200 S: Supported
19201 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
19202 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19203 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19204 F: Documentation/filesystems/ubifs-authentication.rst
19205 F: Documentation/filesystems/ubifs.rst
19206 F: fs/ubifs/
19207
19208 UCLINUX (M68KNOMMU AND COLDFIRE)
19209 M: Greg Ungerer <gerg@linux-m68k.org>
19210 L: linux-m68k@lists.linux-m68k.org
19211 L: uclinux-dev@uclinux.org (subscribers-only)
19212 S: Maintained
19213 W: http://www.linux-m68k.org/
19214 W: http://www.uclinux.org/
19215 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19216 F: arch/m68k/*/*_no.*
19217 F: arch/m68k/68*/
19218 F: arch/m68k/coldfire/
19219 F: arch/m68k/include/asm/*_no.*
19220
19221 UDF FILESYSTEM
19222 M: Jan Kara <jack@suse.com>
19223 S: Maintained
19224 F: Documentation/filesystems/udf.rst
19225 F: fs/udf/
19226
19227 UDRAW TABLET
19228 M: Bastien Nocera <hadess@hadess.net>
19229 L: linux-input@vger.kernel.org
19230 S: Maintained
19231 F: drivers/hid/hid-udraw-ps3.c
19232
19233 UFS FILESYSTEM
19234 M: Evgeniy Dushistov <dushistov@mail.ru>
19235 S: Maintained
19236 F: Documentation/admin-guide/ufs.rst
19237 F: fs/ufs/
19238
19239 UHID USERSPACE HID IO DRIVER
19240 M: David Rheinsberg <david.rheinsberg@gmail.com>
19241 L: linux-input@vger.kernel.org
19242 S: Maintained
19243 F: drivers/hid/uhid.c
19244 F: include/uapi/linux/uhid.h
19245
19246 ULPI BUS
19247 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19248 L: linux-usb@vger.kernel.org
19249 S: Maintained
19250 F: drivers/usb/common/ulpi.c
19251 F: include/linux/ulpi/
19252
19253 UNICODE SUBSYSTEM
19254 M: Gabriel Krisman Bertazi <krisman@collabora.com>
19255 L: linux-fsdevel@vger.kernel.org
19256 S: Supported
19257 F: fs/unicode/
19258
19259 UNIFDEF
19260 M: Tony Finch <dot@dotat.at>
19261 S: Maintained
19262 W: http://dotat.at/prog/unifdef
19263 F: scripts/unifdef.c
19264
19265 UNIFORM CDROM DRIVER
19266 M: Phillip Potter <phil@philpotter.co.uk>
19267 S: Maintained
19268 F: Documentation/cdrom/
19269 F: drivers/cdrom/cdrom.c
19270 F: include/linux/cdrom.h
19271 F: include/uapi/linux/cdrom.h
19272
19273 UNISYS S-PAR DRIVERS
19274 M: David Kershner <david.kershner@unisys.com>
19275 L: sparmaintainer@unisys.com (Unisys internal)
19276 S: Supported
19277 F: drivers/staging/unisys/
19278 F: drivers/visorbus/
19279 F: include/linux/visorbus.h
19280
19281 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19282 R: Alim Akhtar <alim.akhtar@samsung.com>
19283 R: Avri Altman <avri.altman@wdc.com>
19284 L: linux-scsi@vger.kernel.org
19285 S: Supported
19286 F: Documentation/scsi/ufs.rst
19287 F: drivers/scsi/ufs/
19288
19289 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19290 M: Pedro Sousa <pedrom.sousa@synopsys.com>
19291 L: linux-scsi@vger.kernel.org
19292 S: Supported
19293 F: drivers/scsi/ufs/*dwc*
19294
19295 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19296 M: Stanley Chu <stanley.chu@mediatek.com>
19297 L: linux-scsi@vger.kernel.org
19298 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19299 S: Maintained
19300 F: drivers/scsi/ufs/ufs-mediatek*
19301
19302 UNSORTED BLOCK IMAGES (UBI)
19303 M: Richard Weinberger <richard@nod.at>
19304 L: linux-mtd@lists.infradead.org
19305 S: Supported
19306 W: http://www.linux-mtd.infradead.org/
19307 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19308 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19309 F: drivers/mtd/ubi/
19310 F: include/linux/mtd/ubi.h
19311 F: include/uapi/mtd/ubi-user.h
19312
19313 USB "USBNET" DRIVER FRAMEWORK
19314 M: Oliver Neukum <oneukum@suse.com>
19315 L: netdev@vger.kernel.org
19316 S: Maintained
19317 W: http://www.linux-usb.org/usbnet
19318 F: drivers/net/usb/usbnet.c
19319 F: include/linux/usb/usbnet.h
19320
19321 USB ACM DRIVER
19322 M: Oliver Neukum <oneukum@suse.com>
19323 L: linux-usb@vger.kernel.org
19324 S: Maintained
19325 F: Documentation/usb/acm.rst
19326 F: drivers/usb/class/cdc-acm.*
19327
19328 USB APPLE MFI FASTCHARGE DRIVER
19329 M: Bastien Nocera <hadess@hadess.net>
19330 L: linux-usb@vger.kernel.org
19331 S: Maintained
19332 F: drivers/usb/misc/apple-mfi-fastcharge.c
19333
19334 USB AR5523 WIRELESS DRIVER
19335 M: Pontus Fuchs <pontus.fuchs@gmail.com>
19336 L: linux-wireless@vger.kernel.org
19337 S: Maintained
19338 F: drivers/net/wireless/ath/ar5523/
19339
19340 USB ATTACHED SCSI
19341 M: Oliver Neukum <oneukum@suse.com>
19342 L: linux-usb@vger.kernel.org
19343 L: linux-scsi@vger.kernel.org
19344 S: Maintained
19345 F: drivers/usb/storage/uas.c
19346
19347 USB CDC ETHERNET DRIVER
19348 M: Oliver Neukum <oliver@neukum.org>
19349 L: linux-usb@vger.kernel.org
19350 S: Maintained
19351 F: drivers/net/usb/cdc_*.c
19352 F: include/uapi/linux/usb/cdc.h
19353
19354 USB CHAOSKEY DRIVER
19355 M: Keith Packard <keithp@keithp.com>
19356 L: linux-usb@vger.kernel.org
19357 S: Maintained
19358 F: drivers/usb/misc/chaoskey.c
19359
19360 USB CYPRESS C67X00 DRIVER
19361 L: linux-usb@vger.kernel.org
19362 S: Orphan
19363 F: drivers/usb/c67x00/
19364
19365 USB DAVICOM DM9601 DRIVER
19366 M: Peter Korsgaard <peter@korsgaard.com>
19367 L: netdev@vger.kernel.org
19368 S: Maintained
19369 W: http://www.linux-usb.org/usbnet
19370 F: drivers/net/usb/dm9601.c
19371
19372 USB EHCI DRIVER
19373 M: Alan Stern <stern@rowland.harvard.edu>
19374 L: linux-usb@vger.kernel.org
19375 S: Maintained
19376 F: Documentation/usb/ehci.rst
19377 F: drivers/usb/host/ehci*
19378
19379 USB GADGET/PERIPHERAL SUBSYSTEM
19380 M: Felipe Balbi <balbi@kernel.org>
19381 L: linux-usb@vger.kernel.org
19382 S: Maintained
19383 W: http://www.linux-usb.org/gadget
19384 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19385 F: drivers/usb/gadget/
19386 F: include/linux/usb/gadget*
19387
19388 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19389 M: Jiri Kosina <jikos@kernel.org>
19390 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
19391 L: linux-usb@vger.kernel.org
19392 S: Maintained
19393 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19394 F: Documentation/hid/hiddev.rst
19395 F: drivers/hid/usbhid/
19396
19397 USB INTEL XHCI ROLE MUX DRIVER
19398 M: Hans de Goede <hdegoede@redhat.com>
19399 L: linux-usb@vger.kernel.org
19400 S: Maintained
19401 F: drivers/usb/roles/intel-xhci-usb-role-switch.c
19402
19403 USB IP DRIVER FOR HISILICON KIRIN 960
19404 M: Yu Chen <chenyu56@huawei.com>
19405 M: Binghui Wang <wangbinghui@hisilicon.com>
19406 L: linux-usb@vger.kernel.org
19407 S: Maintained
19408 F: Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19409 F: drivers/phy/hisilicon/phy-hi3660-usb3.c
19410
19411 USB IP DRIVER FOR HISILICON KIRIN 970
19412 M: Mauro Carvalho Chehab <mchehab@kernel.org>
19413 L: linux-usb@vger.kernel.org
19414 S: Maintained
19415 F: Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19416 F: drivers/phy/hisilicon/phy-hi3670-usb3.c
19417
19418 USB ISP116X DRIVER
19419 M: Olav Kongas <ok@artecdesign.ee>
19420 L: linux-usb@vger.kernel.org
19421 S: Maintained
19422 F: drivers/usb/host/isp116x*
19423 F: include/linux/usb/isp116x.h
19424
19425 USB ISP1760 DRIVER
19426 M: Rui Miguel Silva <rui.silva@linaro.org>
19427 L: linux-usb@vger.kernel.org
19428 S: Maintained
19429 F: drivers/usb/isp1760/*
19430 F: Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19431
19432 USB LAN78XX ETHERNET DRIVER
19433 M: Woojung Huh <woojung.huh@microchip.com>
19434 M: UNGLinuxDriver@microchip.com
19435 L: netdev@vger.kernel.org
19436 S: Maintained
19437 F: Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19438 F: drivers/net/usb/lan78xx.*
19439 F: include/dt-bindings/net/microchip-lan78xx.h
19440
19441 USB MASS STORAGE DRIVER
19442 M: Alan Stern <stern@rowland.harvard.edu>
19443 L: linux-usb@vger.kernel.org
19444 L: usb-storage@lists.one-eyed-alien.net
19445 S: Maintained
19446 F: drivers/usb/storage/
19447
19448 USB MIDI DRIVER
19449 M: Clemens Ladisch <clemens@ladisch.de>
19450 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
19451 S: Maintained
19452 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19453 F: sound/usb/midi.*
19454
19455 USB NETWORKING DRIVERS
19456 L: linux-usb@vger.kernel.org
19457 S: Odd Fixes
19458 F: drivers/net/usb/
19459
19460 USB OHCI DRIVER
19461 M: Alan Stern <stern@rowland.harvard.edu>
19462 L: linux-usb@vger.kernel.org
19463 S: Maintained
19464 F: Documentation/usb/ohci.rst
19465 F: drivers/usb/host/ohci*
19466
19467 USB OTG FSM (Finite State Machine)
19468 M: Peter Chen <peter.chen@kernel.org>
19469 L: linux-usb@vger.kernel.org
19470 S: Maintained
19471 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19472 F: drivers/usb/common/usb-otg-fsm.c
19473
19474 USB OVER IP DRIVER
19475 M: Valentina Manea <valentina.manea.m@gmail.com>
19476 M: Shuah Khan <shuah@kernel.org>
19477 M: Shuah Khan <skhan@linuxfoundation.org>
19478 L: linux-usb@vger.kernel.org
19479 S: Maintained
19480 F: Documentation/usb/usbip_protocol.rst
19481 F: drivers/usb/usbip/
19482 F: tools/testing/selftests/drivers/usb/usbip/
19483 F: tools/usb/usbip/
19484
19485 USB PEGASUS DRIVER
19486 M: Petko Manolov <petkan@nucleusys.com>
19487 L: linux-usb@vger.kernel.org
19488 L: netdev@vger.kernel.org
19489 S: Maintained
19490 W: https://github.com/petkan/pegasus
19491 T: git git://github.com/petkan/pegasus.git
19492 F: drivers/net/usb/pegasus.*
19493
19494 USB PHY LAYER
19495 M: Felipe Balbi <balbi@kernel.org>
19496 L: linux-usb@vger.kernel.org
19497 S: Maintained
19498 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19499 F: drivers/usb/phy/
19500
19501 USB PRINTER DRIVER (usblp)
19502 M: Pete Zaitcev <zaitcev@redhat.com>
19503 L: linux-usb@vger.kernel.org
19504 S: Supported
19505 F: drivers/usb/class/usblp.c
19506
19507 USB RAW GADGET DRIVER
19508 R: Andrey Konovalov <andreyknvl@gmail.com>
19509 L: linux-usb@vger.kernel.org
19510 S: Maintained
19511 F: Documentation/usb/raw-gadget.rst
19512 F: drivers/usb/gadget/legacy/raw_gadget.c
19513 F: include/uapi/linux/usb/raw_gadget.h
19514
19515 USB QMI WWAN NETWORK DRIVER
19516 M: Bjørn Mork <bjorn@mork.no>
19517 L: netdev@vger.kernel.org
19518 S: Maintained
19519 F: Documentation/ABI/testing/sysfs-class-net-qmi
19520 F: drivers/net/usb/qmi_wwan.c
19521
19522 USB RTL8150 DRIVER
19523 M: Petko Manolov <petkan@nucleusys.com>
19524 L: linux-usb@vger.kernel.org
19525 L: netdev@vger.kernel.org
19526 S: Maintained
19527 W: https://github.com/petkan/rtl8150
19528 T: git git://github.com/petkan/rtl8150.git
19529 F: drivers/net/usb/rtl8150.c
19530
19531 USB SERIAL SUBSYSTEM
19532 M: Johan Hovold <johan@kernel.org>
19533 L: linux-usb@vger.kernel.org
19534 S: Maintained
19535 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19536 F: Documentation/usb/usb-serial.rst
19537 F: drivers/usb/serial/
19538 F: include/linux/usb/serial.h
19539
19540 USB SMSC75XX ETHERNET DRIVER
19541 M: Steve Glendinning <steve.glendinning@shawell.net>
19542 L: netdev@vger.kernel.org
19543 S: Maintained
19544 F: drivers/net/usb/smsc75xx.*
19545
19546 USB SMSC95XX ETHERNET DRIVER
19547 M: Steve Glendinning <steve.glendinning@shawell.net>
19548 M: UNGLinuxDriver@microchip.com
19549 L: netdev@vger.kernel.org
19550 S: Maintained
19551 F: drivers/net/usb/smsc95xx.*
19552
19553 USB SUBSYSTEM
19554 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19555 L: linux-usb@vger.kernel.org
19556 S: Supported
19557 W: http://www.linux-usb.org
19558 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19559 F: Documentation/devicetree/bindings/usb/
19560 F: Documentation/usb/
19561 F: drivers/usb/
19562 F: include/linux/usb.h
19563 F: include/linux/usb/
19564
19565 USB TYPEC BUS FOR ALTERNATE MODES
19566 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19567 L: linux-usb@vger.kernel.org
19568 S: Maintained
19569 F: Documentation/ABI/testing/sysfs-bus-typec
19570 F: Documentation/driver-api/usb/typec_bus.rst
19571 F: drivers/usb/typec/altmodes/
19572 F: include/linux/usb/typec_altmode.h
19573
19574 USB TYPEC CLASS
19575 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19576 L: linux-usb@vger.kernel.org
19577 S: Maintained
19578 F: Documentation/ABI/testing/sysfs-class-typec
19579 F: Documentation/driver-api/usb/typec.rst
19580 F: drivers/usb/typec/
19581 F: include/linux/usb/typec.h
19582
19583 USB TYPEC INTEL PMC MUX DRIVER
19584 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
19585 L: linux-usb@vger.kernel.org
19586 S: Maintained
19587 F: Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19588 F: drivers/usb/typec/mux/intel_pmc_mux.c
19589
19590 USB TYPEC PI3USB30532 MUX DRIVER
19591 M: Hans de Goede <hdegoede@redhat.com>
19592 L: linux-usb@vger.kernel.org
19593 S: Maintained
19594 F: drivers/usb/typec/mux/pi3usb30532.c
19595
19596 USB TYPEC PORT CONTROLLER DRIVERS
19597 M: Guenter Roeck <linux@roeck-us.net>
19598 L: linux-usb@vger.kernel.org
19599 S: Maintained
19600 F: drivers/usb/typec/tcpm/
19601
19602 USB UHCI DRIVER
19603 M: Alan Stern <stern@rowland.harvard.edu>
19604 L: linux-usb@vger.kernel.org
19605 S: Maintained
19606 F: drivers/usb/host/uhci*
19607
19608 USB VIDEO CLASS
19609 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19610 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19611 L: linux-media@vger.kernel.org
19612 S: Maintained
19613 W: http://www.ideasonboard.org/uvc/
19614 T: git git://linuxtv.org/media_tree.git
19615 F: drivers/media/usb/uvc/
19616 F: include/uapi/linux/uvcvideo.h
19617
19618 USB WEBCAM GADGET
19619 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19620 L: linux-usb@vger.kernel.org
19621 S: Maintained
19622 F: drivers/usb/gadget/function/*uvc*
19623 F: drivers/usb/gadget/legacy/webcam.c
19624 F: include/uapi/linux/usb/g_uvc.h
19625
19626 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19627 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
19628 L: linux-wireless@vger.kernel.org
19629 S: Maintained
19630 F: drivers/net/wireless/rndis_wlan.c
19631
19632 USB XHCI DRIVER
19633 M: Mathias Nyman <mathias.nyman@intel.com>
19634 L: linux-usb@vger.kernel.org
19635 S: Supported
19636 F: drivers/usb/host/pci-quirks*
19637 F: drivers/usb/host/xhci*
19638
19639 USB ZD1201 DRIVER
19640 L: linux-wireless@vger.kernel.org
19641 S: Orphan
19642 W: http://linux-lc100020.sourceforge.net
19643 F: drivers/net/wireless/zydas/zd1201.*
19644
19645 USB ZR364XX DRIVER
19646 M: Antoine Jacquet <royale@zerezo.com>
19647 L: linux-usb@vger.kernel.org
19648 L: linux-media@vger.kernel.org
19649 S: Maintained
19650 W: http://royale.zerezo.com/zr364xx/
19651 T: git git://linuxtv.org/media_tree.git
19652 F: Documentation/admin-guide/media/zr364xx*
19653 F: drivers/media/usb/zr364xx/
19654
19655 USER-MODE LINUX (UML)
19656 M: Jeff Dike <jdike@addtoit.com>
19657 M: Richard Weinberger <richard@nod.at>
19658 M: Anton Ivanov <anton.ivanov@cambridgegreys.com>
19659 L: linux-um@lists.infradead.org
19660 S: Maintained
19661 W: http://user-mode-linux.sourceforge.net
19662 Q: https://patchwork.ozlabs.org/project/linux-um/list/
19663 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19664 F: Documentation/virt/uml/
19665 F: arch/um/
19666 F: arch/x86/um/
19667 F: fs/hostfs/
19668
19669 USERSPACE COPYIN/COPYOUT (UIOVEC)
19670 M: Alexander Viro <viro@zeniv.linux.org.uk>
19671 S: Maintained
19672 F: include/linux/uio.h
19673 F: lib/iov_iter.c
19674
19675 USERSPACE DMA BUFFER DRIVER
19676 M: Gerd Hoffmann <kraxel@redhat.com>
19677 L: dri-devel@lists.freedesktop.org
19678 S: Maintained
19679 T: git git://anongit.freedesktop.org/drm/drm-misc
19680 F: drivers/dma-buf/udmabuf.c
19681 F: include/uapi/linux/udmabuf.h
19682
19683 USERSPACE I/O (UIO)
19684 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19685 S: Maintained
19686 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19687 F: Documentation/driver-api/uio-howto.rst
19688 F: drivers/uio/
19689 F: include/linux/uio_driver.h
19690
19691 UTIL-LINUX PACKAGE
19692 M: Karel Zak <kzak@redhat.com>
19693 L: util-linux@vger.kernel.org
19694 S: Maintained
19695 W: http://en.wikipedia.org/wiki/Util-linux
19696 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19697
19698 UUID HELPERS
19699 M: Christoph Hellwig <hch@lst.de>
19700 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19701 L: linux-kernel@vger.kernel.org
19702 S: Maintained
19703 T: git git://git.infradead.org/users/hch/uuid.git
19704 F: include/linux/uuid.h
19705 F: include/uapi/linux/uuid.h
19706 F: lib/test_uuid.c
19707 F: lib/uuid.c
19708
19709 UV SYSFS DRIVER
19710 M: Justin Ernst <justin.ernst@hpe.com>
19711 L: platform-driver-x86@vger.kernel.org
19712 S: Maintained
19713 F: drivers/platform/x86/uv_sysfs.c
19714
19715 UVESAFB DRIVER
19716 M: Michal Januszewski <spock@gentoo.org>
19717 L: linux-fbdev@vger.kernel.org
19718 S: Maintained
19719 W: https://github.com/mjanusz/v86d
19720 F: Documentation/fb/uvesafb.rst
19721 F: drivers/video/fbdev/uvesafb.*
19722
19723 Ux500 CLOCK DRIVERS
19724 M: Ulf Hansson <ulf.hansson@linaro.org>
19725 L: linux-clk@vger.kernel.org
19726 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19727 S: Maintained
19728 F: drivers/clk/ux500/
19729
19730 VF610 NAND DRIVER
19731 M: Stefan Agner <stefan@agner.ch>
19732 L: linux-mtd@lists.infradead.org
19733 S: Supported
19734 F: drivers/mtd/nand/raw/vf610_nfc.c
19735
19736 VFAT/FAT/MSDOS FILESYSTEM
19737 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19738 S: Maintained
19739 F: Documentation/filesystems/vfat.rst
19740 F: fs/fat/
19741
19742 VFIO DRIVER
19743 M: Alex Williamson <alex.williamson@redhat.com>
19744 R: Cornelia Huck <cohuck@redhat.com>
19745 L: kvm@vger.kernel.org
19746 S: Maintained
19747 T: git git://github.com/awilliam/linux-vfio.git
19748 F: Documentation/driver-api/vfio.rst
19749 F: drivers/vfio/
19750 F: include/linux/vfio.h
19751 F: include/linux/vfio_pci_core.h
19752 F: include/uapi/linux/vfio.h
19753
19754 VFIO FSL-MC DRIVER
19755 M: Diana Craciun <diana.craciun@oss.nxp.com>
19756 L: kvm@vger.kernel.org
19757 S: Maintained
19758 F: drivers/vfio/fsl-mc/
19759
19760 VFIO MEDIATED DEVICE DRIVERS
19761 M: Kirti Wankhede <kwankhede@nvidia.com>
19762 L: kvm@vger.kernel.org
19763 S: Maintained
19764 F: Documentation/driver-api/vfio-mediated-device.rst
19765 F: drivers/vfio/mdev/
19766 F: include/linux/mdev.h
19767 F: samples/vfio-mdev/
19768
19769 VFIO PLATFORM DRIVER
19770 M: Eric Auger <eric.auger@redhat.com>
19771 L: kvm@vger.kernel.org
19772 S: Maintained
19773 F: drivers/vfio/platform/
19774
19775 VGA_SWITCHEROO
19776 R: Lukas Wunner <lukas@wunner.de>
19777 S: Maintained
19778 T: git git://anongit.freedesktop.org/drm/drm-misc
19779 F: Documentation/gpu/vga-switcheroo.rst
19780 F: drivers/gpu/vga/vga_switcheroo.c
19781 F: include/linux/vga_switcheroo.h
19782
19783 VIA RHINE NETWORK DRIVER
19784 S: Maintained
19785 M: Kevin Brace <kevinbrace@bracecomputerlab.com>
19786 F: drivers/net/ethernet/via/via-rhine.c
19787
19788 VIA SD/MMC CARD CONTROLLER DRIVER
19789 M: Bruce Chang <brucechang@via.com.tw>
19790 M: Harald Welte <HaraldWelte@viatech.com>
19791 S: Maintained
19792 F: drivers/mmc/host/via-sdmmc.c
19793
19794 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19795 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19796 L: linux-fbdev@vger.kernel.org
19797 S: Maintained
19798 F: drivers/video/fbdev/via/
19799 F: include/linux/via-core.h
19800 F: include/linux/via-gpio.h
19801 F: include/linux/via_i2c.h
19802
19803 VIA VELOCITY NETWORK DRIVER
19804 M: Francois Romieu <romieu@fr.zoreil.com>
19805 L: netdev@vger.kernel.org
19806 S: Maintained
19807 F: drivers/net/ethernet/via/via-velocity.*
19808
19809 VICODEC VIRTUAL CODEC DRIVER
19810 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
19811 L: linux-media@vger.kernel.org
19812 S: Maintained
19813 W: https://linuxtv.org
19814 T: git git://linuxtv.org/media_tree.git
19815 F: drivers/media/test-drivers/vicodec/*
19816
19817 VIDEO I2C POLLING DRIVER
19818 M: Matt Ranostay <matt.ranostay@konsulko.com>
19819 L: linux-media@vger.kernel.org
19820 S: Maintained
19821 F: drivers/media/i2c/video-i2c.c
19822
19823 VIDEO MULTIPLEXER DRIVER
19824 M: Philipp Zabel <p.zabel@pengutronix.de>
19825 L: linux-media@vger.kernel.org
19826 S: Maintained
19827 F: drivers/media/platform/video-mux.c
19828
19829 VIDEOBUF2 FRAMEWORK
19830 M: Tomasz Figa <tfiga@chromium.org>
19831 M: Marek Szyprowski <m.szyprowski@samsung.com>
19832 L: linux-media@vger.kernel.org
19833 S: Maintained
19834 F: drivers/media/common/videobuf2/*
19835 F: include/media/videobuf2-*
19836
19837 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19838 M: Helen Koike <helen.koike@collabora.com>
19839 R: Shuah Khan <skhan@linuxfoundation.org>
19840 L: linux-media@vger.kernel.org
19841 S: Maintained
19842 W: https://linuxtv.org
19843 T: git git://linuxtv.org/media_tree.git
19844 F: drivers/media/test-drivers/vimc/*
19845
19846 VIRT LIB
19847 M: Alex Williamson <alex.williamson@redhat.com>
19848 M: Paolo Bonzini <pbonzini@redhat.com>
19849 L: kvm@vger.kernel.org
19850 S: Supported
19851 F: virt/lib/
19852
19853 VIRTIO AND VHOST VSOCK DRIVER
19854 M: Stefan Hajnoczi <stefanha@redhat.com>
19855 M: Stefano Garzarella <sgarzare@redhat.com>
19856 L: kvm@vger.kernel.org
19857 L: virtualization@lists.linux-foundation.org
19858 L: netdev@vger.kernel.org
19859 S: Maintained
19860 F: drivers/vhost/vsock.c
19861 F: include/linux/virtio_vsock.h
19862 F: include/uapi/linux/virtio_vsock.h
19863 F: net/vmw_vsock/virtio_transport.c
19864 F: net/vmw_vsock/virtio_transport_common.c
19865
19866 VIRTIO BLOCK AND SCSI DRIVERS
19867 M: "Michael S. Tsirkin" <mst@redhat.com>
19868 M: Jason Wang <jasowang@redhat.com>
19869 R: Paolo Bonzini <pbonzini@redhat.com>
19870 R: Stefan Hajnoczi <stefanha@redhat.com>
19871 L: virtualization@lists.linux-foundation.org
19872 S: Maintained
19873 F: drivers/block/virtio_blk.c
19874 F: drivers/scsi/virtio_scsi.c
19875 F: drivers/vhost/scsi.c
19876 F: include/uapi/linux/virtio_blk.h
19877 F: include/uapi/linux/virtio_scsi.h
19878
19879 VIRTIO CONSOLE DRIVER
19880 M: Amit Shah <amit@kernel.org>
19881 L: virtualization@lists.linux-foundation.org
19882 S: Maintained
19883 F: drivers/char/virtio_console.c
19884 F: include/linux/virtio_console.h
19885 F: include/uapi/linux/virtio_console.h
19886
19887 VIRTIO CORE AND NET DRIVERS
19888 M: "Michael S. Tsirkin" <mst@redhat.com>
19889 M: Jason Wang <jasowang@redhat.com>
19890 L: virtualization@lists.linux-foundation.org
19891 S: Maintained
19892 F: Documentation/devicetree/bindings/virtio/
19893 F: drivers/block/virtio_blk.c
19894 F: drivers/crypto/virtio/
19895 F: drivers/net/virtio_net.c
19896 F: drivers/vdpa/
19897 F: drivers/virtio/
19898 F: include/linux/vdpa.h
19899 F: include/linux/virtio*.h
19900 F: include/uapi/linux/virtio_*.h
19901 F: tools/virtio/
19902
19903 VIRTIO BALLOON
19904 M: "Michael S. Tsirkin" <mst@redhat.com>
19905 M: David Hildenbrand <david@redhat.com>
19906 L: virtualization@lists.linux-foundation.org
19907 S: Maintained
19908 F: drivers/virtio/virtio_balloon.c
19909 F: include/uapi/linux/virtio_balloon.h
19910 F: include/linux/balloon_compaction.h
19911 F: mm/balloon_compaction.c
19912
19913 VIRTIO CRYPTO DRIVER
19914 M: Gonglei <arei.gonglei@huawei.com>
19915 L: virtualization@lists.linux-foundation.org
19916 L: linux-crypto@vger.kernel.org
19917 S: Maintained
19918 F: drivers/crypto/virtio/
19919 F: include/uapi/linux/virtio_crypto.h
19920
19921 VIRTIO DRIVERS FOR S390
19922 M: Cornelia Huck <cohuck@redhat.com>
19923 M: Halil Pasic <pasic@linux.ibm.com>
19924 L: linux-s390@vger.kernel.org
19925 L: virtualization@lists.linux-foundation.org
19926 L: kvm@vger.kernel.org
19927 S: Supported
19928 F: arch/s390/include/uapi/asm/virtio-ccw.h
19929 F: drivers/s390/virtio/
19930
19931 VIRTIO FILE SYSTEM
19932 M: Vivek Goyal <vgoyal@redhat.com>
19933 M: Stefan Hajnoczi <stefanha@redhat.com>
19934 M: Miklos Szeredi <miklos@szeredi.hu>
19935 L: virtualization@lists.linux-foundation.org
19936 L: linux-fsdevel@vger.kernel.org
19937 S: Supported
19938 W: https://virtio-fs.gitlab.io/
19939 F: Documentation/filesystems/virtiofs.rst
19940 F: fs/fuse/virtio_fs.c
19941 F: include/uapi/linux/virtio_fs.h
19942
19943 VIRTIO GPIO DRIVER
19944 M: Enrico Weigelt, metux IT consult <info@metux.net>
19945 M: Viresh Kumar <vireshk@kernel.org>
19946 L: linux-gpio@vger.kernel.org
19947 L: virtualization@lists.linux-foundation.org
19948 S: Maintained
19949 F: drivers/gpio/gpio-virtio.c
19950 F: include/uapi/linux/virtio_gpio.h
19951
19952 VIRTIO GPU DRIVER
19953 M: David Airlie <airlied@linux.ie>
19954 M: Gerd Hoffmann <kraxel@redhat.com>
19955 L: dri-devel@lists.freedesktop.org
19956 L: virtualization@lists.linux-foundation.org
19957 S: Maintained
19958 T: git git://anongit.freedesktop.org/drm/drm-misc
19959 F: drivers/gpu/drm/virtio/
19960 F: include/uapi/linux/virtio_gpu.h
19961
19962 VIRTIO HOST (VHOST)
19963 M: "Michael S. Tsirkin" <mst@redhat.com>
19964 M: Jason Wang <jasowang@redhat.com>
19965 L: kvm@vger.kernel.org
19966 L: virtualization@lists.linux-foundation.org
19967 L: netdev@vger.kernel.org
19968 S: Maintained
19969 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19970 F: drivers/vhost/
19971 F: include/linux/vhost_iotlb.h
19972 F: include/uapi/linux/vhost.h
19973
19974 VIRTIO INPUT DRIVER
19975 M: Gerd Hoffmann <kraxel@redhat.com>
19976 S: Maintained
19977 F: drivers/virtio/virtio_input.c
19978 F: include/uapi/linux/virtio_input.h
19979
19980 VIRTIO IOMMU DRIVER
19981 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
19982 L: virtualization@lists.linux-foundation.org
19983 S: Maintained
19984 F: drivers/iommu/virtio-iommu.c
19985 F: include/uapi/linux/virtio_iommu.h
19986
19987 VIRTIO MEM DRIVER
19988 M: David Hildenbrand <david@redhat.com>
19989 L: virtualization@lists.linux-foundation.org
19990 S: Maintained
19991 W: https://virtio-mem.gitlab.io/
19992 F: drivers/virtio/virtio_mem.c
19993 F: include/uapi/linux/virtio_mem.h
19994
19995 VIRTIO SOUND DRIVER
19996 M: Anton Yakovlev <anton.yakovlev@opensynergy.com>
19997 M: "Michael S. Tsirkin" <mst@redhat.com>
19998 L: virtualization@lists.linux-foundation.org
19999 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20000 S: Maintained
20001 F: include/uapi/linux/virtio_snd.h
20002 F: sound/virtio/*
20003
20004 VIRTIO I2C DRIVER
20005 M: Jie Deng <jie.deng@intel.com>
20006 M: Viresh Kumar <viresh.kumar@linaro.org>
20007 L: linux-i2c@vger.kernel.org
20008 L: virtualization@lists.linux-foundation.org
20009 S: Maintained
20010 F: drivers/i2c/busses/i2c-virtio.c
20011 F: include/uapi/linux/virtio_i2c.h
20012
20013 VIRTUAL BOX GUEST DEVICE DRIVER
20014 M: Hans de Goede <hdegoede@redhat.com>
20015 M: Arnd Bergmann <arnd@arndb.de>
20016 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20017 S: Maintained
20018 F: drivers/virt/vboxguest/
20019 F: include/linux/vbox_utils.h
20020 F: include/uapi/linux/vbox*.h
20021
20022 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20023 M: Hans de Goede <hdegoede@redhat.com>
20024 L: linux-fsdevel@vger.kernel.org
20025 S: Maintained
20026 F: fs/vboxsf/*
20027
20028 VIRTUAL SERIO DEVICE DRIVER
20029 M: Stephen Chandler Paul <thatslyude@gmail.com>
20030 S: Maintained
20031 F: drivers/input/serio/userio.c
20032 F: include/uapi/linux/userio.h
20033
20034 VIVID VIRTUAL VIDEO DRIVER
20035 M: Hans Verkuil <hverkuil@xs4all.nl>
20036 L: linux-media@vger.kernel.org
20037 S: Maintained
20038 W: https://linuxtv.org
20039 T: git git://linuxtv.org/media_tree.git
20040 F: drivers/media/test-drivers/vivid/*
20041
20042 VIDTV VIRTUAL DIGITAL TV DRIVER
20043 M: Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20044 L: linux-media@vger.kernel.org
20045 S: Maintained
20046 W: https://linuxtv.org
20047 T: git git://linuxtv.org/media_tree.git
20048 F: drivers/media/test-drivers/vidtv/*
20049
20050 VLYNQ BUS
20051 M: Florian Fainelli <f.fainelli@gmail.com>
20052 L: openwrt-devel@lists.openwrt.org (subscribers-only)
20053 S: Maintained
20054 F: drivers/vlynq/vlynq.c
20055 F: include/linux/vlynq.h
20056
20057 VME SUBSYSTEM
20058 M: Martyn Welch <martyn@welchs.me.uk>
20059 M: Manohar Vanga <manohar.vanga@gmail.com>
20060 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20061 L: linux-kernel@vger.kernel.org
20062 S: Maintained
20063 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20064 F: Documentation/driver-api/vme.rst
20065 F: drivers/staging/vme/
20066 F: drivers/vme/
20067 F: include/linux/vme*
20068
20069 VM SOCKETS (AF_VSOCK)
20070 M: Stefano Garzarella <sgarzare@redhat.com>
20071 L: virtualization@lists.linux-foundation.org
20072 L: netdev@vger.kernel.org
20073 S: Maintained
20074 F: drivers/net/vsockmon.c
20075 F: include/net/af_vsock.h
20076 F: include/uapi/linux/vm_sockets.h
20077 F: include/uapi/linux/vm_sockets_diag.h
20078 F: include/uapi/linux/vsockmon.h
20079 F: net/vmw_vsock/
20080 F: tools/testing/vsock/
20081
20082 VMWARE BALLOON DRIVER
20083 M: Nadav Amit <namit@vmware.com>
20084 M: "VMware, Inc." <pv-drivers@vmware.com>
20085 L: linux-kernel@vger.kernel.org
20086 S: Maintained
20087 F: drivers/misc/vmw_balloon.c
20088
20089 VMWARE HYPERVISOR INTERFACE
20090 M: Deep Shah <sdeep@vmware.com>
20091 M: "VMware, Inc." <pv-drivers@vmware.com>
20092 L: virtualization@lists.linux-foundation.org
20093 S: Supported
20094 F: arch/x86/include/asm/vmware.h
20095 F: arch/x86/kernel/cpu/vmware.c
20096
20097 VMWARE PVRDMA DRIVER
20098 M: Adit Ranadive <aditr@vmware.com>
20099 M: VMware PV-Drivers <pv-drivers@vmware.com>
20100 L: linux-rdma@vger.kernel.org
20101 S: Maintained
20102 F: drivers/infiniband/hw/vmw_pvrdma/
20103
20104 VMware PVSCSI driver
20105 M: Vishal Bhakta <vbhakta@vmware.com>
20106 M: VMware PV-Drivers <pv-drivers@vmware.com>
20107 L: linux-scsi@vger.kernel.org
20108 S: Maintained
20109 F: drivers/scsi/vmw_pvscsi.c
20110 F: drivers/scsi/vmw_pvscsi.h
20111
20112 VMWARE VIRTUAL PTP CLOCK DRIVER
20113 M: Vivek Thampi <vithampi@vmware.com>
20114 M: "VMware, Inc." <pv-drivers@vmware.com>
20115 L: netdev@vger.kernel.org
20116 S: Supported
20117 F: drivers/ptp/ptp_vmw.c
20118
20119 VMWARE VMCI DRIVER
20120 M: Jorgen Hansen <jhansen@vmware.com>
20121 M: Vishnu Dasa <vdasa@vmware.com>
20122 L: linux-kernel@vger.kernel.org
20123 L: pv-drivers@vmware.com (private)
20124 S: Maintained
20125 F: drivers/misc/vmw_vmci/
20126
20127 VMWARE VMMOUSE SUBDRIVER
20128 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20129 M: "VMware, Inc." <pv-drivers@vmware.com>
20130 L: linux-input@vger.kernel.org
20131 S: Maintained
20132 F: drivers/input/mouse/vmmouse.c
20133 F: drivers/input/mouse/vmmouse.h
20134
20135 VMWARE VMXNET3 ETHERNET DRIVER
20136 M: Ronak Doshi <doshir@vmware.com>
20137 M: pv-drivers@vmware.com
20138 L: netdev@vger.kernel.org
20139 S: Maintained
20140 F: drivers/net/vmxnet3/
20141
20142 VOCORE VOCORE2 BOARD
20143 M: Harvey Hunt <harveyhuntnexus@gmail.com>
20144 L: linux-mips@vger.kernel.org
20145 S: Maintained
20146 F: arch/mips/boot/dts/ralink/vocore2.dts
20147
20148 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20149 M: Liam Girdwood <lgirdwood@gmail.com>
20150 M: Mark Brown <broonie@kernel.org>
20151 L: linux-kernel@vger.kernel.org
20152 S: Supported
20153 W: http://www.slimlogic.co.uk/?p=48
20154 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20155 F: Documentation/devicetree/bindings/regulator/
20156 F: Documentation/power/regulator/
20157 F: drivers/regulator/
20158 F: include/dt-bindings/regulator/
20159 F: include/linux/regulator/
20160 K: regulator_get_optional
20161
20162 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20163 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20164 F: drivers/regulator/irq_helpers.c
20165
20166 VRF
20167 M: David Ahern <dsahern@kernel.org>
20168 L: netdev@vger.kernel.org
20169 S: Maintained
20170 F: Documentation/networking/vrf.rst
20171 F: drivers/net/vrf.c
20172
20173 VSPRINTF
20174 M: Petr Mladek <pmladek@suse.com>
20175 M: Steven Rostedt <rostedt@goodmis.org>
20176 M: Sergey Senozhatsky <senozhatsky@chromium.org>
20177 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20178 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
20179 S: Maintained
20180 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20181 F: Documentation/core-api/printk-formats.rst
20182 F: lib/test_printf.c
20183 F: lib/test_scanf.c
20184 F: lib/vsprintf.c
20185
20186 VT1211 HARDWARE MONITOR DRIVER
20187 M: Juerg Haefliger <juergh@gmail.com>
20188 L: linux-hwmon@vger.kernel.org
20189 S: Maintained
20190 F: Documentation/hwmon/vt1211.rst
20191 F: drivers/hwmon/vt1211.c
20192
20193 VT8231 HARDWARE MONITOR DRIVER
20194 M: Roger Lucas <vt8231@hiddenengine.co.uk>
20195 L: linux-hwmon@vger.kernel.org
20196 S: Maintained
20197 F: drivers/hwmon/vt8231.c
20198
20199 VUB300 USB to SDIO/SD/MMC bridge chip
20200 L: linux-mmc@vger.kernel.org
20201 S: Orphan
20202 F: drivers/mmc/host/vub300.c
20203
20204 W1 DALLAS'S 1-WIRE BUS
20205 M: Evgeniy Polyakov <zbr@ioremap.net>
20206 S: Maintained
20207 F: Documentation/devicetree/bindings/w1/
20208 F: Documentation/w1/
20209 F: drivers/w1/
20210 F: include/linux/w1.h
20211
20212 W83791D HARDWARE MONITORING DRIVER
20213 M: Marc Hulsman <m.hulsman@tudelft.nl>
20214 L: linux-hwmon@vger.kernel.org
20215 S: Maintained
20216 F: Documentation/hwmon/w83791d.rst
20217 F: drivers/hwmon/w83791d.c
20218
20219 W83793 HARDWARE MONITORING DRIVER
20220 M: Rudolf Marek <r.marek@assembler.cz>
20221 L: linux-hwmon@vger.kernel.org
20222 S: Maintained
20223 F: Documentation/hwmon/w83793.rst
20224 F: drivers/hwmon/w83793.c
20225
20226 W83795 HARDWARE MONITORING DRIVER
20227 M: Jean Delvare <jdelvare@suse.com>
20228 L: linux-hwmon@vger.kernel.org
20229 S: Maintained
20230 F: drivers/hwmon/w83795.c
20231
20232 W83L51xD SD/MMC CARD INTERFACE DRIVER
20233 M: Pierre Ossman <pierre@ossman.eu>
20234 S: Maintained
20235 F: drivers/mmc/host/wbsd.*
20236
20237 WACOM PROTOCOL 4 SERIAL TABLETS
20238 M: Julian Squires <julian@cipht.net>
20239 M: Hans de Goede <hdegoede@redhat.com>
20240 L: linux-input@vger.kernel.org
20241 S: Maintained
20242 F: drivers/input/tablet/wacom_serial4.c
20243
20244 WATCHDOG DEVICE DRIVERS
20245 M: Wim Van Sebroeck <wim@linux-watchdog.org>
20246 M: Guenter Roeck <linux@roeck-us.net>
20247 L: linux-watchdog@vger.kernel.org
20248 S: Maintained
20249 W: http://www.linux-watchdog.org/
20250 T: git git://www.linux-watchdog.org/linux-watchdog.git
20251 F: Documentation/devicetree/bindings/watchdog/
20252 F: Documentation/watchdog/
20253 F: drivers/watchdog/
20254 F: include/linux/watchdog.h
20255 F: include/uapi/linux/watchdog.h
20256
20257 WHISKEYCOVE PMIC GPIO DRIVER
20258 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20259 L: linux-gpio@vger.kernel.org
20260 S: Maintained
20261 F: drivers/gpio/gpio-wcove.c
20262
20263 WHWAVE RTC DRIVER
20264 M: Dianlong Li <long17.cool@163.com>
20265 L: linux-rtc@vger.kernel.org
20266 S: Maintained
20267 F: drivers/rtc/rtc-sd3078.c
20268
20269 WIIMOTE HID DRIVER
20270 M: David Rheinsberg <david.rheinsberg@gmail.com>
20271 L: linux-input@vger.kernel.org
20272 S: Maintained
20273 F: drivers/hid/hid-wiimote*
20274
20275 WILOCITY WIL6210 WIRELESS DRIVER
20276 M: Maya Erez <merez@codeaurora.org>
20277 L: linux-wireless@vger.kernel.org
20278 L: wil6210@qti.qualcomm.com
20279 S: Supported
20280 W: https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20281 F: drivers/net/wireless/ath/wil6210/
20282
20283 WINBOND CIR DRIVER
20284 M: David Härdeman <david@hardeman.nu>
20285 S: Maintained
20286 F: drivers/media/rc/winbond-cir.c
20287
20288 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20289 M: William Breathitt Gray <vilhelm.gray@gmail.com>
20290 L: linux-watchdog@vger.kernel.org
20291 S: Maintained
20292 F: drivers/watchdog/ebc-c384_wdt.c
20293
20294 WINSYSTEMS WS16C48 GPIO DRIVER
20295 M: William Breathitt Gray <vilhelm.gray@gmail.com>
20296 L: linux-gpio@vger.kernel.org
20297 S: Maintained
20298 F: drivers/gpio/gpio-ws16c48.c
20299
20300 WIREGUARD SECURE NETWORK TUNNEL
20301 M: Jason A. Donenfeld <Jason@zx2c4.com>
20302 L: wireguard@lists.zx2c4.com
20303 L: netdev@vger.kernel.org
20304 S: Maintained
20305 F: drivers/net/wireguard/
20306 F: tools/testing/selftests/wireguard/
20307
20308 WISTRON LAPTOP BUTTON DRIVER
20309 M: Miloslav Trmac <mitr@volny.cz>
20310 S: Maintained
20311 F: drivers/input/misc/wistron_btns.c
20312
20313 WL3501 WIRELESS PCMCIA CARD DRIVER
20314 L: linux-wireless@vger.kernel.org
20315 S: Odd fixes
20316 F: drivers/net/wireless/wl3501*
20317
20318 WOLFSON MICROELECTRONICS DRIVERS
20319 L: patches@opensource.cirrus.com
20320 S: Supported
20321 W: https://github.com/CirrusLogic/linux-drivers/wiki
20322 T: git https://github.com/CirrusLogic/linux-drivers.git
20323 F: Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20324 F: Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20325 F: Documentation/devicetree/bindings/mfd/wm831x.txt
20326 F: Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20327 F: Documentation/devicetree/bindings/sound/wlf,*.yaml
20328 F: Documentation/devicetree/bindings/sound/wm*
20329 F: Documentation/hwmon/wm83??.rst
20330 F: arch/arm/mach-s3c/mach-crag6410*
20331 F: drivers/clk/clk-wm83*.c
20332 F: drivers/gpio/gpio-*wm*.c
20333 F: drivers/gpio/gpio-arizona.c
20334 F: drivers/hwmon/wm83??-hwmon.c
20335 F: drivers/input/misc/wm831x-on.c
20336 F: drivers/input/touchscreen/wm831x-ts.c
20337 F: drivers/input/touchscreen/wm97*.c
20338 F: drivers/leds/leds-wm83*.c
20339 F: drivers/mfd/arizona*
20340 F: drivers/mfd/cs47l24*
20341 F: drivers/mfd/wm*.c
20342 F: drivers/power/supply/wm83*.c
20343 F: drivers/regulator/arizona*
20344 F: drivers/regulator/wm8*.c
20345 F: drivers/rtc/rtc-wm83*.c
20346 F: drivers/video/backlight/wm83*_bl.c
20347 F: drivers/watchdog/wm83*_wdt.c
20348 F: include/linux/mfd/arizona/
20349 F: include/linux/mfd/wm831x/
20350 F: include/linux/mfd/wm8350/
20351 F: include/linux/mfd/wm8400*
20352 F: include/linux/regulator/arizona*
20353 F: include/linux/wm97xx.h
20354 F: include/sound/wm????.h
20355 F: sound/soc/codecs/arizona*
20356 F: sound/soc/codecs/cs47l24*
20357 F: sound/soc/codecs/wm*
20358
20359 WORKQUEUE
20360 M: Tejun Heo <tj@kernel.org>
20361 R: Lai Jiangshan <jiangshanlai@gmail.com>
20362 S: Maintained
20363 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20364 F: Documentation/core-api/workqueue.rst
20365 F: include/linux/workqueue.h
20366 F: kernel/workqueue.c
20367
20368 WWAN DRIVERS
20369 M: Loic Poulain <loic.poulain@linaro.org>
20370 M: Sergey Ryazanov <ryazanov.s.a@gmail.com>
20371 R: Johannes Berg <johannes@sipsolutions.net>
20372 L: netdev@vger.kernel.org
20373 S: Maintained
20374 F: drivers/net/wwan/
20375 F: include/linux/wwan.h
20376 F: include/uapi/linux/wwan.h
20377
20378 X-POWERS AXP288 PMIC DRIVERS
20379 M: Hans de Goede <hdegoede@redhat.com>
20380 S: Maintained
20381 F: drivers/acpi/pmic/intel_pmic_xpower.c
20382 N: axp288
20383
20384 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20385 M: Chen-Yu Tsai <wens@csie.org>
20386 L: linux-kernel@vger.kernel.org
20387 S: Maintained
20388 N: axp[128]
20389
20390 X.25 STACK
20391 M: Martin Schiller <ms@dev.tdt.de>
20392 L: linux-x25@vger.kernel.org
20393 S: Maintained
20394 F: Documentation/networking/lapb-module.rst
20395 F: Documentation/networking/x25*
20396 F: drivers/net/wan/hdlc_x25.c
20397 F: drivers/net/wan/lapbether.c
20398 F: include/*/lapb.h
20399 F: include/net/x25*
20400 F: include/uapi/linux/x25.h
20401 F: net/lapb/
20402 F: net/x25/
20403
20404 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20405 M: Thomas Gleixner <tglx@linutronix.de>
20406 M: Ingo Molnar <mingo@redhat.com>
20407 M: Borislav Petkov <bp@alien8.de>
20408 M: Dave Hansen <dave.hansen@linux.intel.com>
20409 M: x86@kernel.org
20410 R: "H. Peter Anvin" <hpa@zytor.com>
20411 L: linux-kernel@vger.kernel.org
20412 S: Maintained
20413 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20414 F: Documentation/devicetree/bindings/x86/
20415 F: Documentation/x86/
20416 F: arch/x86/
20417
20418 X86 ENTRY CODE
20419 M: Andy Lutomirski <luto@kernel.org>
20420 L: linux-kernel@vger.kernel.org
20421 S: Maintained
20422 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20423 F: arch/x86/entry/
20424
20425 X86 MCE INFRASTRUCTURE
20426 M: Tony Luck <tony.luck@intel.com>
20427 M: Borislav Petkov <bp@alien8.de>
20428 L: linux-edac@vger.kernel.org
20429 S: Maintained
20430 F: arch/x86/kernel/cpu/mce/*
20431
20432 X86 MICROCODE UPDATE SUPPORT
20433 M: Borislav Petkov <bp@alien8.de>
20434 S: Maintained
20435 F: arch/x86/kernel/cpu/microcode/*
20436
20437 X86 MM
20438 M: Dave Hansen <dave.hansen@linux.intel.com>
20439 M: Andy Lutomirski <luto@kernel.org>
20440 M: Peter Zijlstra <peterz@infradead.org>
20441 L: linux-kernel@vger.kernel.org
20442 S: Maintained
20443 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20444 F: arch/x86/mm/
20445
20446 X86 PLATFORM DRIVERS
20447 M: Hans de Goede <hdegoede@redhat.com>
20448 M: Mark Gross <mgross@linux.intel.com>
20449 L: platform-driver-x86@vger.kernel.org
20450 S: Maintained
20451 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20452 F: drivers/platform/olpc/
20453 F: drivers/platform/x86/
20454
20455 X86 PLATFORM DRIVERS - ARCH
20456 R: Darren Hart <dvhart@infradead.org>
20457 R: Andy Shevchenko <andy@infradead.org>
20458 L: platform-driver-x86@vger.kernel.org
20459 L: x86@kernel.org
20460 S: Maintained
20461 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20462 F: arch/x86/platform
20463
20464 X86 PLATFORM UV HPE SUPERDOME FLEX
20465 M: Steve Wahl <steve.wahl@hpe.com>
20466 R: Mike Travis <mike.travis@hpe.com>
20467 R: Dimitri Sivanich <dimitri.sivanich@hpe.com>
20468 R: Russ Anderson <russ.anderson@hpe.com>
20469 S: Supported
20470 F: arch/x86/include/asm/uv/
20471 F: arch/x86/kernel/apic/x2apic_uv_x.c
20472 F: arch/x86/platform/uv/
20473
20474 X86 VDSO
20475 M: Andy Lutomirski <luto@kernel.org>
20476 L: linux-kernel@vger.kernel.org
20477 S: Maintained
20478 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20479 F: arch/x86/entry/vdso/
20480
20481 XARRAY
20482 M: Matthew Wilcox <willy@infradead.org>
20483 L: linux-fsdevel@vger.kernel.org
20484 S: Supported
20485 F: Documentation/core-api/xarray.rst
20486 F: include/linux/idr.h
20487 F: include/linux/xarray.h
20488 F: lib/idr.c
20489 F: lib/xarray.c
20490 F: tools/testing/radix-tree
20491
20492 XBOX DVD IR REMOTE
20493 M: Benjamin Valentin <benpicco@googlemail.com>
20494 S: Maintained
20495 F: drivers/media/rc/keymaps/rc-xbox-dvd.c
20496 F: drivers/media/rc/xbox_remote.c
20497
20498 XC2028/3028 TUNER DRIVER
20499 M: Mauro Carvalho Chehab <mchehab@kernel.org>
20500 L: linux-media@vger.kernel.org
20501 S: Maintained
20502 W: https://linuxtv.org
20503 T: git git://linuxtv.org/media_tree.git
20504 F: drivers/media/tuners/tuner-xc2028.*
20505
20506 XDP (eXpress Data Path)
20507 M: Alexei Starovoitov <ast@kernel.org>
20508 M: Daniel Borkmann <daniel@iogearbox.net>
20509 M: David S. Miller <davem@davemloft.net>
20510 M: Jakub Kicinski <kuba@kernel.org>
20511 M: Jesper Dangaard Brouer <hawk@kernel.org>
20512 M: John Fastabend <john.fastabend@gmail.com>
20513 L: netdev@vger.kernel.org
20514 L: bpf@vger.kernel.org
20515 S: Supported
20516 F: include/net/xdp.h
20517 F: include/net/xdp_priv.h
20518 F: include/trace/events/xdp.h
20519 F: kernel/bpf/cpumap.c
20520 F: kernel/bpf/devmap.c
20521 F: net/core/xdp.c
20522 F: samples/bpf/xdp*
20523 F: tools/testing/selftests/bpf/*xdp*
20524 F: tools/testing/selftests/bpf/*/*xdp*
20525 F: drivers/net/ethernet/*/*/*/*/*xdp*
20526 F: drivers/net/ethernet/*/*/*xdp*
20527 K: (?:\b|_)xdp(?:\b|_)
20528
20529 XDP SOCKETS (AF_XDP)
20530 M: Björn Töpel <bjorn@kernel.org>
20531 M: Magnus Karlsson <magnus.karlsson@intel.com>
20532 R: Jonathan Lemon <jonathan.lemon@gmail.com>
20533 L: netdev@vger.kernel.org
20534 L: bpf@vger.kernel.org
20535 S: Maintained
20536 F: Documentation/networking/af_xdp.rst
20537 F: include/net/xdp_sock*
20538 F: include/net/xsk_buff_pool.h
20539 F: include/uapi/linux/if_xdp.h
20540 F: include/uapi/linux/xdp_diag.h
20541 F: include/net/netns/xdp.h
20542 F: net/xdp/
20543 F: samples/bpf/xdpsock*
20544 F: tools/lib/bpf/xsk*
20545
20546 XEN BLOCK SUBSYSTEM
20547 M: Roger Pau Monné <roger.pau@citrix.com>
20548 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20549 S: Supported
20550 F: drivers/block/xen*
20551 F: drivers/block/xen-blkback/*
20552
20553 XEN HYPERVISOR ARM
20554 M: Stefano Stabellini <sstabellini@kernel.org>
20555 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20556 S: Maintained
20557 F: arch/arm/include/asm/xen/
20558 F: arch/arm/xen/
20559
20560 XEN HYPERVISOR ARM64
20561 M: Stefano Stabellini <sstabellini@kernel.org>
20562 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20563 S: Maintained
20564 F: arch/arm64/include/asm/xen/
20565 F: arch/arm64/xen/
20566
20567 XEN HYPERVISOR INTERFACE
20568 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
20569 M: Juergen Gross <jgross@suse.com>
20570 R: Stefano Stabellini <sstabellini@kernel.org>
20571 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20572 S: Supported
20573 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20574 F: Documentation/ABI/stable/sysfs-hypervisor-xen
20575 F: Documentation/ABI/testing/sysfs-hypervisor-xen
20576 F: arch/x86/include/asm/pvclock-abi.h
20577 F: arch/x86/include/asm/xen/
20578 F: arch/x86/platform/pvh/
20579 F: arch/x86/xen/
20580 F: drivers/*/xen-*front.c
20581 F: drivers/xen/
20582 F: include/uapi/xen/
20583 F: include/xen/
20584
20585 XEN NETWORK BACKEND DRIVER
20586 M: Wei Liu <wei.liu@kernel.org>
20587 M: Paul Durrant <paul@xen.org>
20588 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20589 L: netdev@vger.kernel.org
20590 S: Supported
20591 F: drivers/net/xen-netback/*
20592
20593 XEN PCI SUBSYSTEM
20594 M: Juergen Gross <jgross@suse.com>
20595 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20596 S: Supported
20597 F: arch/x86/pci/*xen*
20598 F: drivers/pci/*xen*
20599
20600 XEN PVSCSI DRIVERS
20601 M: Juergen Gross <jgross@suse.com>
20602 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20603 L: linux-scsi@vger.kernel.org
20604 S: Supported
20605 F: drivers/scsi/xen-scsifront.c
20606 F: drivers/xen/xen-scsiback.c
20607 F: include/xen/interface/io/vscsiif.h
20608
20609 XEN SOUND FRONTEND DRIVER
20610 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20611 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20612 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
20613 S: Supported
20614 F: sound/xen/*
20615
20616 XEN SWIOTLB SUBSYSTEM
20617 M: Juergen Gross <jgross@suse.com>
20618 M: Stefano Stabellini <sstabellini@kernel.org>
20619 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
20620 L: iommu@lists.linux-foundation.org
20621 L: iommu@lists.linux.dev
20622 S: Supported
20623 F: arch/x86/xen/*swiotlb*
20624 F: drivers/xen/*swiotlb*
20625
20626 XFS FILESYSTEM
20627 C: irc://irc.oftc.net/xfs
20628 M: Leah Rumancik <leah.rumancik@gmail.com>
20629 M: Darrick J. Wong <djwong@kernel.org>
20630 M: linux-xfs@vger.kernel.org
20631 L: linux-xfs@vger.kernel.org
20632 S: Supported
20633 W: http://xfs.org/
20634 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20635 F: Documentation/ABI/testing/sysfs-fs-xfs
20636 F: Documentation/admin-guide/xfs.rst
20637 F: Documentation/filesystems/xfs-delayed-logging-design.rst
20638 F: Documentation/filesystems/xfs-self-describing-metadata.rst
20639 F: fs/xfs/
20640 F: include/uapi/linux/dqblk_xfs.h
20641 F: include/uapi/linux/fsmap.h
20642
20643 XILINX AXI ETHERNET DRIVER
20644 M: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20645 S: Maintained
20646 F: drivers/net/ethernet/xilinx/xilinx_axienet*
20647
20648 XILINX CAN DRIVER
20649 M: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20650 R: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20651 L: linux-can@vger.kernel.org
20652 S: Maintained
20653 F: Documentation/devicetree/bindings/net/can/xilinx_can.txt
20654 F: drivers/net/can/xilinx_can.c
20655
20656 XILINX GPIO DRIVER
20657 M: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20658 R: Srinivas Neeli <srinivas.neeli@xilinx.com>
20659 R: Michal Simek <michal.simek@xilinx.com>
20660 S: Maintained
20661 F: Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20662 F: Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20663 F: drivers/gpio/gpio-xilinx.c
20664 F: drivers/gpio/gpio-zynq.c
20665
20666 XILINX SD-FEC IP CORES
20667 M: Derek Kiernan <derek.kiernan@xilinx.com>
20668 M: Dragan Cvetic <dragan.cvetic@xilinx.com>
20669 S: Maintained
20670 F: Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20671 F: Documentation/misc-devices/xilinx_sdfec.rst
20672 F: drivers/misc/Kconfig
20673 F: drivers/misc/Makefile
20674 F: drivers/misc/xilinx_sdfec.c
20675 F: include/uapi/misc/xilinx_sdfec.h
20676
20677 XILINX UARTLITE SERIAL DRIVER
20678 M: Peter Korsgaard <jacmet@sunsite.dk>
20679 L: linux-serial@vger.kernel.org
20680 S: Maintained
20681 F: drivers/tty/serial/uartlite.c
20682
20683 XILINX VIDEO IP CORES
20684 M: Hyun Kwon <hyun.kwon@xilinx.com>
20685 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20686 L: linux-media@vger.kernel.org
20687 S: Supported
20688 T: git git://linuxtv.org/media_tree.git
20689 F: Documentation/devicetree/bindings/media/xilinx/
20690 F: drivers/media/platform/xilinx/
20691 F: include/uapi/linux/xilinx-v4l2-controls.h
20692
20693 XILINX ZYNQMP DPDMA DRIVER
20694 M: Hyun Kwon <hyun.kwon@xilinx.com>
20695 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20696 L: dmaengine@vger.kernel.org
20697 S: Supported
20698 F: Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20699 F: drivers/dma/xilinx/xilinx_dpdma.c
20700 F: include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20701
20702 XILINX ZYNQMP PSGTR PHY DRIVER
20703 M: Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20704 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20705 L: linux-kernel@vger.kernel.org
20706 S: Supported
20707 T: git https://github.com/Xilinx/linux-xlnx.git
20708 F: Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20709 F: drivers/phy/xilinx/phy-zynqmp.c
20710
20711 XILLYBUS DRIVER
20712 M: Eli Billauer <eli.billauer@gmail.com>
20713 L: linux-kernel@vger.kernel.org
20714 S: Supported
20715 F: drivers/char/xillybus/
20716
20717 XLP9XX I2C DRIVER
20718 M: George Cherian <gcherian@marvell.com>
20719 L: linux-i2c@vger.kernel.org
20720 S: Supported
20721 W: http://www.marvell.com
20722 F: Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20723 F: drivers/i2c/busses/i2c-xlp9xx.c
20724
20725 XRA1403 GPIO EXPANDER
20726 M: Nandor Han <nandor.han@ge.com>
20727 M: Semi Malinen <semi.malinen@ge.com>
20728 L: linux-gpio@vger.kernel.org
20729 S: Maintained
20730 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20731 F: drivers/gpio/gpio-xra1403.c
20732
20733 XTENSA XTFPGA PLATFORM SUPPORT
20734 M: Max Filippov <jcmvbkbc@gmail.com>
20735 L: linux-xtensa@linux-xtensa.org
20736 S: Maintained
20737 F: drivers/spi/spi-xtensa-xtfpga.c
20738 F: sound/soc/xtensa/xtfpga-i2s.c
20739
20740 YAM DRIVER FOR AX.25
20741 M: Jean-Paul Roubelat <jpr@f6fbb.org>
20742 L: linux-hams@vger.kernel.org
20743 S: Maintained
20744 F: drivers/net/hamradio/yam*
20745 F: include/linux/yam.h
20746
20747 YAMA SECURITY MODULE
20748 M: Kees Cook <keescook@chromium.org>
20749 S: Supported
20750 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20751 F: Documentation/admin-guide/LSM/Yama.rst
20752 F: security/yama/
20753
20754 YEALINK PHONE DRIVER
20755 M: Henk Vergonet <Henk.Vergonet@gmail.com>
20756 L: usbb2k-api-dev@nongnu.org
20757 S: Maintained
20758 F: Documentation/input/devices/yealink.rst
20759 F: drivers/input/misc/yealink.*
20760
20761 Z8530 DRIVER FOR AX.25
20762 M: Joerg Reuter <jreuter@yaina.de>
20763 L: linux-hams@vger.kernel.org
20764 S: Maintained
20765 W: http://yaina.de/jreuter/
20766 W: http://www.qsl.net/dl1bke/
20767 F: Documentation/networking/device_drivers/hamradio/z8530drv.rst
20768 F: drivers/net/hamradio/*scc.c
20769 F: drivers/net/hamradio/z8530.h
20770
20771 ZBUD COMPRESSED PAGE ALLOCATOR
20772 M: Seth Jennings <sjenning@redhat.com>
20773 M: Dan Streetman <ddstreet@ieee.org>
20774 L: linux-mm@kvack.org
20775 S: Maintained
20776 F: mm/zbud.c
20777
20778 ZD1211RW WIRELESS DRIVER
20779 M: Ulrich Kunitz <kune@deine-taler.de>
20780 L: linux-wireless@vger.kernel.org
20781 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
20782 S: Maintained
20783 W: http://zd1211.ath.cx/wiki/DriverRewrite
20784 F: drivers/net/wireless/zydas/zd1211rw/
20785
20786 ZD1301 MEDIA DRIVER
20787 M: Antti Palosaari <crope@iki.fi>
20788 L: linux-media@vger.kernel.org
20789 S: Maintained
20790 W: https://linuxtv.org/
20791 W: http://palosaari.fi/linux/
20792 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20793 F: drivers/media/usb/dvb-usb-v2/zd1301*
20794
20795 ZD1301_DEMOD MEDIA DRIVER
20796 M: Antti Palosaari <crope@iki.fi>
20797 L: linux-media@vger.kernel.org
20798 S: Maintained
20799 W: https://linuxtv.org/
20800 W: http://palosaari.fi/linux/
20801 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20802 F: drivers/media/dvb-frontends/zd1301_demod*
20803
20804 ZHAOXIN PROCESSOR SUPPORT
20805 M: Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20806 L: linux-kernel@vger.kernel.org
20807 S: Maintained
20808 F: arch/x86/kernel/cpu/zhaoxin.c
20809
20810 ZONEFS FILESYSTEM
20811 M: Damien Le Moal <damien.lemoal@wdc.com>
20812 M: Naohiro Aota <naohiro.aota@wdc.com>
20813 R: Johannes Thumshirn <jth@kernel.org>
20814 L: linux-fsdevel@vger.kernel.org
20815 S: Maintained
20816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20817 F: Documentation/filesystems/zonefs.rst
20818 F: fs/zonefs/
20819
20820 ZPOOL COMPRESSED PAGE STORAGE API
20821 M: Dan Streetman <ddstreet@ieee.org>
20822 L: linux-mm@kvack.org
20823 S: Maintained
20824 F: include/linux/zpool.h
20825 F: mm/zpool.c
20826
20827 ZR36067 VIDEO FOR LINUX DRIVER
20828 M: Corentin Labbe <clabbe@baylibre.com>
20829 L: mjpeg-users@lists.sourceforge.net
20830 L: linux-media@vger.kernel.org
20831 S: Maintained
20832 W: http://mjpeg.sourceforge.net/driver-zoran/
20833 Q: https://patchwork.linuxtv.org/project/linux-media/list/
20834 F: Documentation/driver-api/media/drivers/zoran.rst
20835 F: drivers/staging/media/zoran/
20836
20837 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20838 M: Minchan Kim <minchan@kernel.org>
20839 M: Nitin Gupta <ngupta@vflare.org>
20840 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20841 L: linux-kernel@vger.kernel.org
20842 S: Maintained
20843 F: Documentation/admin-guide/blockdev/zram.rst
20844 F: drivers/block/zram/
20845
20846 ZS DECSTATION Z85C30 SERIAL DRIVER
20847 M: "Maciej W. Rozycki" <macro@orcam.me.uk>
20848 S: Maintained
20849 F: drivers/tty/serial/zs.*
20850
20851 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20852 M: Minchan Kim <minchan@kernel.org>
20853 M: Nitin Gupta <ngupta@vflare.org>
20854 R: Sergey Senozhatsky <senozhatsky@chromium.org>
20855 L: linux-mm@kvack.org
20856 S: Maintained
20857 F: Documentation/vm/zsmalloc.rst
20858 F: include/linux/zsmalloc.h
20859 F: mm/zsmalloc.c
20860
20861 ZSWAP COMPRESSED SWAP CACHING
20862 M: Seth Jennings <sjenning@redhat.com>
20863 M: Dan Streetman <ddstreet@ieee.org>
20864 M: Vitaly Wool <vitaly.wool@konsulko.com>
20865 L: linux-mm@kvack.org
20866 S: Maintained
20867 F: mm/zswap.c
20868
20869 THE REST
20870 M: Linus Torvalds <torvalds@linux-foundation.org>
20871 L: linux-kernel@vger.kernel.org
20872 S: Buried alive in reporters
20873 Q: http://patchwork.kernel.org/project/LKML/list/
20874 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20875 F: *
20876 F: */