]> Git Repo - linux.git/blob - MAINTAINERS
MIPS: Remove the obsoleted code for include/linux/mv643xx.h
[linux.git] / MAINTAINERS
1 List of maintainers
2 ===================
3
4 Descriptions of section entries and preferred order
5 ---------------------------------------------------
6
7         M: *Mail* patches to: FullName <address@domain>
8         R: Designated *Reviewer*: FullName <address@domain>
9            These reviewers should be CCed on patches.
10         L: *Mailing list* that is relevant to this area
11         S: *Status*, one of the following:
12            Supported:   Someone is actually paid to look after this.
13            Maintained:  Someone actually looks after it.
14            Odd Fixes:   It has a maintainer but they don't have time to do
15                         much other than throw the odd patch in. See below..
16            Orphan:      No current maintainer [but maybe you could take the
17                         role as you write your new code].
18            Obsolete:    Old code. Something tagged obsolete generally means
19                         it has been replaced by a better system and you
20                         should be using that.
21         W: *Web-page* with status/info
22         Q: *Patchwork* web based patch tracking system site
23         B: URI for where to file *bugs*. A web-page with detailed bug
24            filing info, a direct bug tracker link, or a mailto: URI.
25         C: URI for *chat* protocol, server and channel where developers
26            usually hang out, for example irc://server/channel.
27         P: *Subsystem Profile* document for more details submitting
28            patches to the given subsystem. This is either an in-tree file,
29            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
30            for details.
31         T: *SCM* tree type and location.
32            Type is one of: git, hg, quilt, stgit, topgit
33         F: *Files* and directories wildcard patterns.
34            A trailing slash includes all files and subdirectory files.
35            F:   drivers/net/    all files in and below drivers/net
36            F:   drivers/net/*   all files in drivers/net, but not below
37            F:   */net/*         all files in "any top level directory"/net
38            One pattern per line.  Multiple F: lines acceptable.
39         X: *Excluded* files and directories that are NOT maintained, same
40            rules as F:. Files exclusions are tested before file matches.
41            Can be useful for excluding a specific subdirectory, for instance:
42            F:   net/
43            X:   net/ipv6/
44            matches all files in and below net excluding net/ipv6/
45         N: Files and directories *Regex* patterns.
46            N:   [^a-z]tegra     all files whose path contains tegra
47                                 (not including files like integrator)
48            One pattern per line.  Multiple N: lines acceptable.
49            scripts/get_maintainer.pl has different behavior for files that
50            match F: pattern and matches of N: patterns.  By default,
51            get_maintainer will not look at git log history when an F: pattern
52            match occurs.  When an N: match occurs, git log history is used
53            to also notify the people that have git commit signatures.
54         K: *Content regex* (perl extended) pattern match in a patch or file.
55            For instance:
56            K: of_get_profile
57               matches patches or files that contain "of_get_profile"
58            K: \b(printk|pr_(info|err))\b
59               matches patches or files that contain one or more of the words
60               printk, pr_info or pr_err
61            One regex pattern per line.  Multiple K: lines acceptable.
62
63 Maintainers List
64 ----------------
65
66 .. note:: When reading this list, please look for the most precise areas
67           first. When adding to this list, please keep the entries in
68           alphabetical order.
69
70 3C59X NETWORK DRIVER
71 M:      Steffen Klassert <[email protected]>
72 L:      [email protected]
73 S:      Odd Fixes
74 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
75 F:      drivers/net/ethernet/3com/3c59x.c
76
77 3CR990 NETWORK DRIVER
78 M:      David Dillow <[email protected]>
79 L:      [email protected]
80 S:      Maintained
81 F:      drivers/net/ethernet/3com/typhoon*
82
83 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
84 M:      Adam Radford <[email protected]>
85 L:      [email protected]
86 S:      Supported
87 W:      http://www.lsi.com
88 F:      drivers/scsi/3w-*
89
90 53C700 AND 53C700-66 SCSI DRIVER
91 M:      "James E.J. Bottomley" <[email protected]>
92 L:      [email protected]
93 S:      Maintained
94 F:      drivers/scsi/53c700*
95
96 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
97 M:      Alexander Aring <[email protected]>
98 L:      [email protected]
99 L:      [email protected]
100 S:      Maintained
101 F:      Documentation/networking/6lowpan.rst
102 F:      include/net/6lowpan.h
103 F:      net/6lowpan/
104
105 6PACK NETWORK DRIVER FOR AX.25
106 M:      Andreas Koensgen <[email protected]>
107 L:      [email protected]
108 S:      Maintained
109 F:      drivers/net/hamradio/6pack.c
110
111 802.11 (including CFG80211/NL80211)
112 M:      Johannes Berg <[email protected]>
113 L:      [email protected]
114 S:      Maintained
115 W:      https://wireless.wiki.kernel.org/
116 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
119 F:      Documentation/driver-api/80211/cfg80211.rst
120 F:      Documentation/networking/regulatory.rst
121 F:      include/linux/ieee80211.h
122 F:      include/net/cfg80211.h
123 F:      include/net/ieee80211_radiotap.h
124 F:      include/net/iw_handler.h
125 F:      include/net/wext.h
126 F:      include/uapi/linux/nl80211.h
127 F:      include/uapi/linux/wireless.h
128 F:      net/wireless/
129
130 8169 10/100/1000 GIGABIT ETHERNET DRIVER
131 M:      Heiner Kallweit <[email protected]>
132 M:      [email protected]
133 L:      [email protected]
134 S:      Maintained
135 F:      drivers/net/ethernet/realtek/r8169*
136
137 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
138 M:      Greg Kroah-Hartman <[email protected]>
139 L:      [email protected]
140 S:      Maintained
141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
142 F:      drivers/tty/serial/8250*
143 F:      include/linux/serial_8250.h
144
145 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
146 L:      [email protected]
147 S:      Orphan / Obsolete
148 F:      drivers/net/ethernet/8390/
149
150 9P FILE SYSTEM
151 M:      Eric Van Hensbergen <[email protected]>
152 M:      Latchesar Ionkov <[email protected]>
153 M:      Dominique Martinet <[email protected]>
154 R:      Christian Schoenebeck <[email protected]>
155 L:      [email protected]
156 S:      Maintained
157 W:      http://github.com/v9fs
158 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
160 T:      git git://github.com/martinetd/linux.git
161 F:      Documentation/filesystems/9p.rst
162 F:      fs/9p/
163 F:      include/net/9p/
164 F:      include/trace/events/9p.h
165 F:      include/uapi/linux/virtio_9p.h
166 F:      net/9p/
167
168 A64FX DIAG DRIVER
169 M:      Hitomi Hasegawa <[email protected]>
170 S:      Supported
171 F:      drivers/soc/fujitsu/a64fx-diag.c
172
173 A8293 MEDIA DRIVER
174 L:      [email protected]
175 S:      Orphan
176 W:      https://linuxtv.org
177 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
178 F:      drivers/media/dvb-frontends/a8293*
179
180 AACRAID SCSI RAID DRIVER
181 M:      Adaptec OEM Raid Solutions <[email protected]>
182 L:      [email protected]
183 S:      Supported
184 W:      http://www.adaptec.com/
185 F:      Documentation/scsi/aacraid.rst
186 F:      drivers/scsi/aacraid/
187
188 AB8500 BATTERY AND CHARGER DRIVERS
189 M:      Linus Walleij <[email protected]>
190 F:      Documentation/devicetree/bindings/power/supply/*ab8500*
191 F:      drivers/power/supply/*ab8500*
192
193 ABI/API
194 L:      [email protected]
195 F:      include/linux/syscalls.h
196 F:      kernel/sys_ni.c
197 X:      arch/*/include/uapi/
198 X:      include/uapi/
199
200 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
201 M:      Hans de Goede <[email protected]>
202 L:      [email protected]
203 S:      Maintained
204 F:      drivers/hwmon/abituguru.c
205
206 ABIT UGURU 3 HARDWARE MONITOR DRIVER
207 M:      Alistair John Strachan <[email protected]>
208 L:      [email protected]
209 S:      Maintained
210 F:      drivers/hwmon/abituguru3.c
211
212 ACCES 104-DIO-48E GPIO DRIVER
213 M:      William Breathitt Gray <[email protected]>
214 L:      [email protected]
215 S:      Maintained
216 F:      drivers/gpio/gpio-104-dio-48e.c
217
218 ACCES 104-IDI-48 GPIO DRIVER
219 M:      William Breathitt Gray <[email protected]>
220 L:      [email protected]
221 S:      Maintained
222 F:      drivers/gpio/gpio-104-idi-48.c
223
224 ACCES 104-IDIO-16 GPIO DRIVER
225 M:      William Breathitt Gray <[email protected]>
226 L:      [email protected]
227 S:      Maintained
228 F:      drivers/gpio/gpio-104-idio-16.c
229
230 ACCES 104-QUAD-8 DRIVER
231 M:      William Breathitt Gray <[email protected]>
232 L:      [email protected]
233 S:      Maintained
234 F:      drivers/counter/104-quad-8.c
235
236 ACCES IDIO-16 GPIO LIBRARY
237 M:      William Breathitt Gray <[email protected]>
238 L:      [email protected]
239 S:      Maintained
240 F:      drivers/gpio/gpio-idio-16.c
241 F:      drivers/gpio/gpio-idio-16.h
242
243 ACCES PCI-IDIO-16 GPIO DRIVER
244 M:      William Breathitt Gray <[email protected]>
245 L:      [email protected]
246 S:      Maintained
247 F:      drivers/gpio/gpio-pci-idio-16.c
248
249 ACCES PCIe-IDIO-24 GPIO DRIVER
250 M:      William Breathitt Gray <[email protected]>
251 L:      [email protected]
252 S:      Maintained
253 F:      drivers/gpio/gpio-pcie-idio-24.c
254
255 ACENIC DRIVER
256 M:      Jes Sorensen <[email protected]>
257 L:      [email protected]
258 S:      Maintained
259 F:      drivers/net/ethernet/alteon/acenic*
260
261 ACER ASPIRE 1 EMBEDDED CONTROLLER DRIVER
262 M:      Nikita Travkin <[email protected]>
263 S:      Maintained
264 F:      Documentation/devicetree/bindings/platform/acer,aspire1-ec.yaml
265 F:      drivers/platform/arm64/acer-aspire1-ec.c
266
267 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
268 M:      Peter Kaestle <[email protected]>
269 L:      [email protected]
270 S:      Maintained
271 W:      http://piie.net/?section=acerhdf
272 F:      drivers/platform/x86/acerhdf.c
273
274 ACER WMI LAPTOP EXTRAS
275 M:      "Lee, Chun-Yi" <[email protected]>
276 L:      [email protected]
277 S:      Maintained
278 F:      drivers/platform/x86/acer-wmi.c
279
280 ACPI
281 M:      "Rafael J. Wysocki" <[email protected]>
282 R:      Len Brown <[email protected]>
283 L:      [email protected]
284 S:      Supported
285 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
286 B:      https://bugzilla.kernel.org
287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
288 F:      Documentation/ABI/testing/configfs-acpi
289 F:      Documentation/ABI/testing/sysfs-bus-acpi
290 F:      Documentation/firmware-guide/acpi/
291 F:      arch/x86/kernel/acpi/
292 F:      arch/x86/pci/acpi.c
293 F:      drivers/acpi/
294 F:      drivers/pci/*/*acpi*
295 F:      drivers/pci/*acpi*
296 F:      drivers/pnp/pnpacpi/
297 F:      include/acpi/
298 F:      include/linux/acpi.h
299 F:      include/linux/fwnode.h
300 F:      include/linux/fw_table.h
301 F:      lib/fw_table.c
302 F:      tools/power/acpi/
303
304 ACPI APEI
305 M:      "Rafael J. Wysocki" <[email protected]>
306 R:      Len Brown <[email protected]>
307 R:      James Morse <[email protected]>
308 R:      Tony Luck <[email protected]>
309 R:      Borislav Petkov <[email protected]>
310 L:      [email protected]
311 F:      drivers/acpi/apei/
312
313 ACPI COMPONENT ARCHITECTURE (ACPICA)
314 M:      Robert Moore <[email protected]>
315 M:      "Rafael J. Wysocki" <[email protected]>
316 L:      [email protected]
317 L:      [email protected]
318 S:      Supported
319 W:      https://acpica.org/
320 W:      https://github.com/acpica/acpica/
321 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
322 B:      https://bugzilla.kernel.org
323 B:      https://bugs.acpica.org
324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
325 F:      drivers/acpi/acpica/
326 F:      include/acpi/
327 F:      tools/power/acpi/
328
329 ACPI FOR ARM64 (ACPI/arm64)
330 M:      Lorenzo Pieralisi <[email protected]>
331 M:      Hanjun Guo <[email protected]>
332 M:      Sudeep Holla <[email protected]>
333 L:      [email protected]
334 L:      [email protected] (moderated for non-subscribers)
335 S:      Maintained
336 F:      drivers/acpi/arm64
337
338 ACPI FOR RISC-V (ACPI/riscv)
339 M:      Sunil V L <[email protected]>
340 L:      [email protected]
341 L:      [email protected]
342 S:      Maintained
343 F:      drivers/acpi/riscv/
344
345 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
346 M:      Sudeep Holla <[email protected]>
347 L:      [email protected]
348 S:      Supported
349 F:      drivers/mailbox/pcc.c
350
351 ACPI PMIC DRIVERS
352 M:      "Rafael J. Wysocki" <[email protected]>
353 M:      Len Brown <[email protected]>
354 R:      Andy Shevchenko <[email protected]>
355 R:      Mika Westerberg <[email protected]>
356 L:      [email protected]
357 S:      Supported
358 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
359 B:      https://bugzilla.kernel.org
360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
361 F:      drivers/acpi/pmic/
362
363 ACPI QUICKSTART DRIVER
364 M:      Armin Wolf <[email protected]>
365 L:      [email protected]
366 S:      Maintained
367 F:      drivers/platform/x86/quickstart.c
368
369 ACPI SERIAL MULTI INSTANTIATE DRIVER
370 M:      Hans de Goede <[email protected]>
371 L:      [email protected]
372 S:      Maintained
373 F:      drivers/platform/x86/serial-multi-instantiate.c
374
375 ACPI THERMAL DRIVER
376 M:      Rafael J. Wysocki <[email protected]>
377 R:      Zhang Rui <[email protected]>
378 L:      [email protected]
379 S:      Supported
380 B:      https://bugzilla.kernel.org
381 F:      drivers/acpi/*thermal*
382
383 ACPI VIOT DRIVER
384 M:      Jean-Philippe Brucker <[email protected]>
385 L:      [email protected]
386 L:      [email protected]
387 S:      Maintained
388 F:      drivers/acpi/viot.c
389 F:      include/linux/acpi_viot.h
390
391 ACPI WMI DRIVER
392 M:      Armin Wolf <[email protected]>
393 L:      [email protected]
394 S:      Maintained
395 F:      Documentation/ABI/testing/sysfs-bus-wmi
396 F:      Documentation/driver-api/wmi.rst
397 F:      Documentation/wmi/
398 F:      drivers/platform/x86/wmi.c
399 F:      include/uapi/linux/wmi.h
400
401 ACRN HYPERVISOR SERVICE MODULE
402 M:      Fei Li <[email protected]>
403 L:      [email protected] (subscribers-only)
404 S:      Supported
405 W:      https://projectacrn.org
406 F:      Documentation/virt/acrn/
407 F:      drivers/virt/acrn/
408 F:      include/uapi/linux/acrn.h
409
410 AD1889 ALSA SOUND DRIVER
411 L:      [email protected]
412 S:      Maintained
413 W:      https://parisc.wiki.kernel.org/index.php/AD1889
414 F:      sound/pci/ad1889.*
415
416 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
417 M:      Mugilraj Dhavachelvan <[email protected]>
418 L:      [email protected]
419 S:      Supported
420 F:      drivers/iio/potentiometer/ad5110.c
421
422 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
423 M:      Michael Hennerich <[email protected]>
424 S:      Supported
425 W:      http://wiki.analog.com/AD5254
426 W:      https://ez.analog.com/linux-software-drivers
427 F:      drivers/misc/ad525x_dpot.c
428
429 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
430 M:      Michael Hennerich <[email protected]>
431 S:      Supported
432 W:      http://wiki.analog.com/AD5398
433 W:      https://ez.analog.com/linux-software-drivers
434 F:      drivers/regulator/ad5398.c
435
436 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
437 M:      Michael Hennerich <[email protected]>
438 S:      Supported
439 W:      http://wiki.analog.com/AD7142
440 W:      https://ez.analog.com/linux-software-drivers
441 F:      drivers/input/misc/ad714x.c
442
443 AD738X ADC DRIVER (AD7380/1/2/4)
444 M:      Michael Hennerich <[email protected]>
445 M:      Nuno Sá <[email protected]>
446 R:      David Lechner <[email protected]>
447 S:      Supported
448 W:      https://wiki.analog.com/resources/tools-software/linux-drivers/iio-adc/ad738x
449 W:      https://ez.analog.com/linux-software-drivers
450 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7380.yaml
451 F:      drivers/iio/adc/ad7380.c
452
453 AD7877 TOUCHSCREEN DRIVER
454 M:      Michael Hennerich <[email protected]>
455 S:      Supported
456 W:      http://wiki.analog.com/AD7877
457 W:      https://ez.analog.com/linux-software-drivers
458 F:      drivers/input/touchscreen/ad7877.c
459
460 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
461 M:      Michael Hennerich <[email protected]>
462 S:      Supported
463 W:      http://wiki.analog.com/AD7879
464 W:      https://ez.analog.com/linux-software-drivers
465 F:      drivers/input/touchscreen/ad7879.c
466
467 AD7944 ADC DRIVER (AD7944/AD7985/AD7986)
468 M:      Michael Hennerich <[email protected]>
469 M:      Nuno Sá <[email protected]>
470 R:      David Lechner <[email protected]>
471 S:      Supported
472 W:      https://ez.analog.com/linux-software-drivers
473 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7944.yaml
474 F:      Documentation/iio/ad7944.rst
475 F:      drivers/iio/adc/ad7944.c
476
477 ADAFRUIT MINI I2C GAMEPAD
478 M:      Anshul Dalal <[email protected]>
479 L:      [email protected]
480 S:      Maintained
481 F:      Documentation/devicetree/bindings/input/adafruit,seesaw-gamepad.yaml
482 F:      drivers/input/joystick/adafruit-seesaw.c
483
484 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
485 M:      Jiri Kosina <[email protected]>
486 S:      Maintained
487
488 ADF7242 IEEE 802.15.4 RADIO DRIVER
489 M:      Michael Hennerich <[email protected]>
490 L:      [email protected]
491 S:      Supported
492 W:      https://wiki.analog.com/ADF7242
493 W:      https://ez.analog.com/linux-software-drivers
494 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
495 F:      drivers/net/ieee802154/adf7242.c
496
497 ADM1025 HARDWARE MONITOR DRIVER
498 M:      Jean Delvare <[email protected]>
499 L:      [email protected]
500 S:      Maintained
501 F:      Documentation/hwmon/adm1025.rst
502 F:      drivers/hwmon/adm1025.c
503
504 ADM1029 HARDWARE MONITOR DRIVER
505 M:      Corentin Labbe <[email protected]>
506 L:      [email protected]
507 S:      Maintained
508 F:      drivers/hwmon/adm1029.c
509
510 ADM8211 WIRELESS DRIVER
511 L:      [email protected]
512 S:      Orphan
513 F:      drivers/net/wireless/admtek/adm8211.*
514
515 ADP1050 HARDWARE MONITOR DRIVER
516 M:      Radu Sabau <[email protected]>
517 L:      [email protected]
518 S:      Supported
519 W:      https://ez.analog.com/linux-software-drivers
520 F:      Documentation/devicetree/bindings/hwmon/pmbus/adi,adp1050.yaml
521
522 ADP1653 FLASH CONTROLLER DRIVER
523 M:      Sakari Ailus <[email protected]>
524 L:      [email protected]
525 S:      Maintained
526 F:      drivers/media/i2c/adp1653.c
527 F:      include/media/i2c/adp1653.h
528
529 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
530 M:      Michael Hennerich <[email protected]>
531 S:      Supported
532 W:      http://wiki.analog.com/ADP5520
533 W:      https://ez.analog.com/linux-software-drivers
534 F:      drivers/gpio/gpio-adp5520.c
535 F:      drivers/input/keyboard/adp5520-keys.c
536 F:      drivers/leds/leds-adp5520.c
537 F:      drivers/mfd/adp5520.c
538 F:      drivers/video/backlight/adp5520_bl.c
539
540 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
541 M:      Michael Hennerich <[email protected]>
542 S:      Supported
543 W:      http://wiki.analog.com/ADP5588
544 W:      https://ez.analog.com/linux-software-drivers
545 F:      Documentation/devicetree/bindings/input/adi,adp5588.yaml
546 F:      drivers/input/keyboard/adp5588-keys.c
547
548 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
549 M:      Michael Hennerich <[email protected]>
550 S:      Supported
551 W:      http://wiki.analog.com/ADP8860
552 W:      https://ez.analog.com/linux-software-drivers
553 F:      drivers/video/backlight/adp8860_bl.c
554
555 ADT746X FAN DRIVER
556 M:      Colin Leroy <[email protected]>
557 S:      Maintained
558 F:      drivers/macintosh/therm_adt746x.c
559
560 ADT7475 HARDWARE MONITOR DRIVER
561 M:      Jean Delvare <[email protected]>
562 L:      [email protected]
563 S:      Maintained
564 F:      Documentation/hwmon/adt7475.rst
565 F:      drivers/hwmon/adt7475.c
566
567 ADVANSYS SCSI DRIVER
568 M:      Matthew Wilcox <[email protected]>
569 M:      Hannes Reinecke <[email protected]>
570 L:      [email protected]
571 S:      Maintained
572 F:      Documentation/scsi/advansys.rst
573 F:      drivers/scsi/advansys.c
574
575 ADVANTECH SWBTN DRIVER
576 M:      Andrea Ho <[email protected]>
577 L:      [email protected]
578 S:      Maintained
579 F:      drivers/platform/x86/adv_swbutton.c
580
581 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
582 M:      Lucas Stankus <[email protected]>
583 S:      Supported
584 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
585 F:      drivers/iio/accel/adxl313*
586
587 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
588 M:      Michael Hennerich <[email protected]>
589 S:      Supported
590 W:      http://wiki.analog.com/ADXL345
591 W:      https://ez.analog.com/linux-software-drivers
592 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
593 F:      drivers/input/misc/adxl34x.c
594
595 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
596 M:      Puranjay Mohan <[email protected]>
597 L:      [email protected]
598 S:      Supported
599 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
600 F:      drivers/iio/accel/adxl355.h
601 F:      drivers/iio/accel/adxl355_core.c
602 F:      drivers/iio/accel/adxl355_i2c.c
603 F:      drivers/iio/accel/adxl355_spi.c
604
605 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
606 M:      Cosmin Tanislav <[email protected]>
607 L:      [email protected]
608 S:      Supported
609 W:      https://ez.analog.com/linux-software-drivers
610 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
611 F:      drivers/iio/accel/adxl367*
612
613 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
614 M:      Michael Hennerich <[email protected]>
615 S:      Supported
616 W:      https://ez.analog.com/linux-software-drivers
617 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
618 F:      drivers/iio/accel/adxl372.c
619 F:      drivers/iio/accel/adxl372_i2c.c
620 F:      drivers/iio/accel/adxl372_spi.c
621
622 AF8133J THREE-AXIS MAGNETOMETER DRIVER
623 M:      Ondřej Jirman <[email protected]>
624 S:      Maintained
625 F:      Documentation/devicetree/bindings/iio/magnetometer/voltafield,af8133j.yaml
626 F:      drivers/iio/magnetometer/af8133j.c
627
628 AF9013 MEDIA DRIVER
629 L:      [email protected]
630 S:      Orphan
631 W:      https://linuxtv.org
632 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
633 F:      drivers/media/dvb-frontends/af9013*
634
635 AF9033 MEDIA DRIVER
636 L:      [email protected]
637 S:      Orphan
638 W:      https://linuxtv.org
639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
640 F:      drivers/media/dvb-frontends/af9033*
641
642 AFFS FILE SYSTEM
643 M:      David Sterba <[email protected]>
644 L:      [email protected]
645 S:      Odd Fixes
646 F:      Documentation/filesystems/affs.rst
647 F:      fs/affs/
648
649 AFS FILESYSTEM
650 M:      David Howells <[email protected]>
651 M:      Marc Dionne <[email protected]>
652 L:      [email protected]
653 S:      Supported
654 W:      https://www.infradead.org/~dhowells/kafs/
655 F:      Documentation/filesystems/afs.rst
656 F:      fs/afs/
657 F:      include/trace/events/afs.h
658
659 AGPGART DRIVER
660 M:      David Airlie <[email protected]>
661 L:      [email protected]
662 S:      Maintained
663 T:      git https://gitlab.freedesktop.org/drm/kernel.git
664 F:      drivers/char/agp/
665 F:      include/linux/agp*
666 F:      include/uapi/linux/agp*
667
668 AHA152X SCSI DRIVER
669 M:      "Juergen E. Fischer" <[email protected]>
670 L:      [email protected]
671 S:      Maintained
672 F:      drivers/scsi/aha152x*
673 F:      drivers/scsi/pcmcia/aha152x*
674
675 AIC7XXX / AIC79XX SCSI DRIVER
676 M:      Hannes Reinecke <[email protected]>
677 L:      [email protected]
678 S:      Maintained
679 F:      drivers/scsi/aic7xxx/
680
681 AIMSLAB FM RADIO RECEIVER DRIVER
682 M:      Hans Verkuil <[email protected]>
683 L:      [email protected]
684 S:      Maintained
685 W:      https://linuxtv.org
686 T:      git git://linuxtv.org/media_tree.git
687 F:      drivers/media/radio/radio-aimslab*
688
689 AIO
690 M:      Benjamin LaHaise <[email protected]>
691 L:      [email protected]
692 S:      Supported
693 F:      fs/aio.c
694 F:      include/linux/*aio*.h
695
696 AIROHA ETHERNET DRIVER
697 M:      Lorenzo Bianconi <[email protected]>
698 L:      [email protected] (moderated for non-subscribers)
699 L:      [email protected] (moderated for non-subscribers)
700 L:      [email protected]
701 S:      Maintained
702 F:      Documentation/devicetree/bindings/net/airoha,en7581-eth.yaml
703 F:      drivers/net/ethernet/mediatek/airoha_eth.c
704
705 AIROHA PCIE PHY DRIVER
706 M:      Lorenzo Bianconi <[email protected]>
707 L:      [email protected] (moderated for non-subscribers)
708 S:      Maintained
709 F:      Documentation/devicetree/bindings/phy/airoha,en7581-pcie-phy.yaml
710 F:      drivers/phy/phy-airoha-pcie-regs.h
711 F:      drivers/phy/phy-airoha-pcie.c
712
713 AIROHA SPI SNFI DRIVER
714 M:      Lorenzo Bianconi <[email protected]>
715 M:      Ray Liu <[email protected]>
716 L:      [email protected] (moderated for non-subscribers)
717 L:      [email protected]
718 S:      Maintained
719 F:      Documentation/devicetree/bindings/spi/airoha,en7581-snand.yaml
720 F:      drivers/spi/spi-airoha-snfi.c
721
722 AIRSPY MEDIA DRIVER
723 L:      [email protected]
724 S:      Orphan
725 W:      https://linuxtv.org
726 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
727 F:      drivers/media/usb/airspy/
728
729 ALACRITECH GIGABIT ETHERNET DRIVER
730 M:      Lino Sanfilippo <[email protected]>
731 S:      Maintained
732 F:      drivers/net/ethernet/alacritech/*
733
734 ALCATEL SPEEDTOUCH USB DRIVER
735 M:      Duncan Sands <[email protected]>
736 L:      [email protected]
737 S:      Maintained
738 W:      http://www.linux-usb.org/SpeedTouch/
739 F:      drivers/usb/atm/speedtch.c
740 F:      drivers/usb/atm/usbatm.c
741
742 ALCHEMY AU1XX0 MMC DRIVER
743 M:      Manuel Lauss <[email protected]>
744 S:      Maintained
745 F:      drivers/mmc/host/au1xmmc.c
746
747 ALI1563 I2C DRIVER
748 M:      Rudolf Marek <[email protected]>
749 L:      [email protected]
750 S:      Maintained
751 F:      Documentation/i2c/busses/i2c-ali1563.rst
752 F:      drivers/i2c/busses/i2c-ali1563.c
753
754 ALIBABA ELASTIC RDMA DRIVER
755 M:      Cheng Xu <[email protected]>
756 M:      Kai Shen <[email protected]>
757 L:      [email protected]
758 S:      Supported
759 F:      drivers/infiniband/hw/erdma
760 F:      include/uapi/rdma/erdma-abi.h
761
762 ALIBABA PMU DRIVER
763 M:      Shuai Xue <[email protected]>
764 S:      Supported
765 F:      Documentation/admin-guide/perf/alibaba_pmu.rst
766 F:      drivers/perf/alibaba_uncore_drw_pmu.c
767
768 ALIENWARE WMI DRIVER
769 L:      [email protected]
770 S:      Maintained
771 F:      drivers/platform/x86/dell/alienware-wmi.c
772
773 ALLEGRO DVT VIDEO IP CORE DRIVER
774 M:      Michael Tretter <[email protected]>
775 R:      Pengutronix Kernel Team <[email protected]>
776 L:      [email protected]
777 S:      Maintained
778 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
779 F:      drivers/media/platform/allegro-dvt/
780
781 ALLIED VISION ALVIUM CAMERA DRIVER
782 M:      Tommaso Merciai <[email protected]>
783 M:      Martin Hecht <[email protected]>
784 L:      [email protected]
785 S:      Maintained
786 F:      Documentation/devicetree/bindings/media/i2c/alliedvision,alvium-csi2.yaml
787 F:      drivers/media/i2c/alvium-csi2.c
788 F:      drivers/media/i2c/alvium-csi2.h
789
790 ALLWINNER A10 CSI DRIVER
791 M:      Maxime Ripard <[email protected]>
792 L:      [email protected]
793 S:      Maintained
794 T:      git git://linuxtv.org/media_tree.git
795 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
796 F:      drivers/media/platform/sunxi/sun4i-csi/
797
798 ALLWINNER A31 CSI DRIVER
799 M:      Yong Deng <[email protected]>
800 M:      Paul Kocialkowski <[email protected]>
801 L:      [email protected]
802 S:      Maintained
803 T:      git git://linuxtv.org/media_tree.git
804 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
805 F:      drivers/media/platform/sunxi/sun6i-csi/
806
807 ALLWINNER A31 ISP DRIVER
808 M:      Paul Kocialkowski <[email protected]>
809 L:      [email protected]
810 S:      Maintained
811 T:      git git://linuxtv.org/media_tree.git
812 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml
813 F:      drivers/staging/media/sunxi/sun6i-isp/
814 F:      drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h
815
816 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
817 M:      Paul Kocialkowski <[email protected]>
818 L:      [email protected]
819 S:      Maintained
820 T:      git git://linuxtv.org/media_tree.git
821 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
822 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
823
824 ALLWINNER CPUFREQ DRIVER
825 M:      Yangtao Li <[email protected]>
826 L:      [email protected]
827 S:      Maintained
828 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
829 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
830
831 ALLWINNER CRYPTO DRIVERS
832 M:      Corentin Labbe <[email protected]>
833 L:      [email protected]
834 S:      Maintained
835 F:      drivers/crypto/allwinner/
836
837 ALLWINNER DMIC DRIVERS
838 M:      Ban Tao <[email protected]>
839 L:      [email protected] (moderated for non-subscribers)
840 S:      Maintained
841 F:      Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
842 F:      sound/soc/sunxi/sun50i-dmic.c
843
844 ALLWINNER HARDWARE SPINLOCK SUPPORT
845 M:      Wilken Gottwalt <[email protected]>
846 S:      Maintained
847 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
848 F:      drivers/hwspinlock/sun6i_hwspinlock.c
849
850 ALLWINNER THERMAL DRIVER
851 M:      Vasily Khoruzhick <[email protected]>
852 M:      Yangtao Li <[email protected]>
853 L:      [email protected]
854 S:      Maintained
855 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
856 F:      drivers/thermal/sun8i_thermal.c
857
858 ALLWINNER VPU DRIVER
859 M:      Maxime Ripard <[email protected]>
860 M:      Paul Kocialkowski <[email protected]>
861 L:      [email protected]
862 S:      Maintained
863 F:      drivers/staging/media/sunxi/cedrus/
864
865 ALPHA PORT
866 M:      Richard Henderson <[email protected]>
867 M:      Ivan Kokshaysky <[email protected]>
868 M:      Matt Turner <[email protected]>
869 L:      [email protected]
870 S:      Odd Fixes
871 F:      arch/alpha/
872
873 ALPS PS/2 TOUCHPAD DRIVER
874 R:      Pali Rohár <[email protected]>
875 F:      drivers/input/mouse/alps.*
876
877 ALTERA MAILBOX DRIVER
878 M:      Mun Yew Tham <[email protected]>
879 S:      Maintained
880 F:      drivers/mailbox/mailbox-altera.c
881
882 ALTERA MSGDMA IP CORE DRIVER
883 M:      Olivier Dautricourt <[email protected]>
884 R:      Stefan Roese <[email protected]>
885 L:      [email protected]
886 S:      Odd Fixes
887 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
888 F:      drivers/dma/altera-msgdma.c
889
890 ALTERA PIO DRIVER
891 M:      Mun Yew Tham <[email protected]>
892 L:      [email protected]
893 S:      Maintained
894 F:      drivers/gpio/gpio-altera.c
895
896 ALTERA TRIPLE SPEED ETHERNET DRIVER
897 M:      Joyce Ooi <[email protected]>
898 L:      [email protected]
899 S:      Maintained
900 F:      drivers/net/ethernet/altera/
901
902 ALTERA UART/JTAG UART SERIAL DRIVERS
903 M:      Tobias Klauser <[email protected]>
904 L:      [email protected]
905 S:      Maintained
906 F:      drivers/tty/serial/altera_jtaguart.c
907 F:      drivers/tty/serial/altera_uart.c
908 F:      include/linux/altera_jtaguart.h
909 F:      include/linux/altera_uart.h
910
911 AMAZON ANNAPURNA LABS FIC DRIVER
912 M:      Talel Shenhar <[email protected]>
913 S:      Maintained
914 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
915 F:      drivers/irqchip/irq-al-fic.c
916
917 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
918 M:      Talel Shenhar <[email protected]>
919 M:      Talel Shenhar <[email protected]>
920 S:      Maintained
921 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
922 F:      drivers/edac/al_mc_edac.c
923
924 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
925 M:      Talel Shenhar <[email protected]>
926 S:      Maintained
927 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
928 F:      drivers/thermal/thermal_mmio.c
929
930 AMAZON ETHERNET DRIVERS
931 M:      Shay Agroskin <[email protected]>
932 M:      Arthur Kiyanovski <[email protected]>
933 R:      David Arinzon <[email protected]>
934 R:      Noam Dagan <[email protected]>
935 R:      Saeed Bishara <[email protected]>
936 L:      [email protected]
937 S:      Supported
938 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
939 F:      drivers/net/ethernet/amazon/
940
941 AMAZON RDMA EFA DRIVER
942 M:      Michael Margolin <[email protected]>
943 R:      Gal Pressman <[email protected]>
944 R:      Yossi Leybovich <[email protected]>
945 L:      [email protected]
946 S:      Supported
947 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
948 F:      drivers/infiniband/hw/efa/
949 F:      include/uapi/rdma/efa-abi.h
950
951 AMD ADDRESS TRANSLATION LIBRARY (ATL)
952 M:      Yazen Ghannam <[email protected]>
953 L:      [email protected]
954 S:      Supported
955 F:      drivers/ras/amd/atl/*
956
957 AMD AXI W1 DRIVER
958 M:      Kris Chaplin <[email protected]>
959 R:      Thomas Delev <[email protected]>
960 R:      Michal Simek <[email protected]>
961 S:      Maintained
962 F:      Documentation/devicetree/bindings/w1/amd,axi-1wire-host.yaml
963 F:      drivers/w1/masters/amd_axi_w1.c
964
965 AMD CDX BUS DRIVER
966 M:      Nipun Gupta <[email protected]>
967 M:      Nikhil Agarwal <[email protected]>
968 S:      Maintained
969 F:      Documentation/devicetree/bindings/bus/xlnx,versal-net-cdx.yaml
970 F:      drivers/cdx/*
971 F:      include/linux/cdx/*
972
973 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
974 M:      Tom Lendacky <[email protected]>
975 M:      John Allen <[email protected]>
976 L:      [email protected]
977 S:      Supported
978 F:      drivers/crypto/ccp/
979 F:      include/linux/ccp.h
980
981 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
982 M:      Ashish Kalra <[email protected]>
983 M:      Tom Lendacky <[email protected]>
984 L:      [email protected]
985 S:      Supported
986 F:      drivers/crypto/ccp/sev*
987 F:      include/uapi/linux/psp-sev.h
988
989 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - DBC SUPPORT
990 M:      Mario Limonciello <[email protected]>
991 L:      [email protected]
992 S:      Supported
993 F:      drivers/crypto/ccp/dbc.c
994 F:      drivers/crypto/ccp/dbc.h
995 F:      drivers/crypto/ccp/platform-access.c
996 F:      drivers/crypto/ccp/platform-access.h
997 F:      include/uapi/linux/psp-dbc.h
998 F:      tools/crypto/ccp/*.c
999 F:      tools/crypto/ccp/*.py
1000
1001 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - HSTI SUPPORT
1002 M:      Mario Limonciello <[email protected]>
1003 L:      [email protected]
1004 S:      Supported
1005 F:      drivers/crypto/ccp/hsti.*
1006
1007 AMD DISPLAY CORE
1008 M:      Harry Wentland <[email protected]>
1009 M:      Leo Li <[email protected]>
1010 M:      Rodrigo Siqueira <[email protected]>
1011 L:      [email protected]
1012 S:      Supported
1013 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1014 F:      drivers/gpu/drm/amd/display/
1015
1016 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
1017 M:      Huang Rui <[email protected]>
1018 L:      [email protected]
1019 S:      Supported
1020 F:      Documentation/hwmon/fam15h_power.rst
1021 F:      drivers/hwmon/fam15h_power.c
1022
1023 AMD FCH GPIO DRIVER
1024 M:      Enrico Weigelt, metux IT consult <[email protected]>
1025 L:      [email protected]
1026 S:      Maintained
1027 F:      drivers/gpio/gpio-amd-fch.c
1028 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
1029
1030 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
1031 L:      [email protected] (moderated for non-subscribers)
1032 S:      Orphan
1033 F:      drivers/usb/gadget/udc/amd5536udc.*
1034
1035 AMD GEODE PROCESSOR/CHIPSET SUPPORT
1036 M:      Andres Salomon <[email protected]>
1037 L:      [email protected] (moderated for non-subscribers)
1038 S:      Supported
1039 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
1040 F:      arch/x86/include/asm/geode.h
1041 F:      drivers/char/hw_random/geode-rng.c
1042 F:      drivers/crypto/geode*
1043 F:      drivers/video/fbdev/geode/
1044
1045 AMD HSMP DRIVER
1046 M:      Naveen Krishna Chatradhi <[email protected]>
1047 R:      Carlos Bilbao <[email protected]>
1048 L:      [email protected]
1049 S:      Maintained
1050 F:      Documentation/arch/x86/amd_hsmp.rst
1051 F:      arch/x86/include/asm/amd_hsmp.h
1052 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1053 F:      drivers/platform/x86/amd/hsmp.c
1054
1055 AMD IOMMU (AMD-VI)
1056 M:      Joerg Roedel <[email protected]>
1057 R:      Suravee Suthikulpanit <[email protected]>
1058 L:      [email protected]
1059 S:      Maintained
1060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iommu/linux.git
1061 F:      drivers/iommu/amd/
1062 F:      include/linux/amd-iommu.h
1063
1064 AMD KFD
1065 M:      Felix Kuehling <[email protected]>
1066 L:      [email protected]
1067 S:      Supported
1068 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1069 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
1070 F:      drivers/gpu/drm/amd/amdkfd/
1071 F:      drivers/gpu/drm/amd/include/cik_structs.h
1072 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
1073 F:      drivers/gpu/drm/amd/include/v9_structs.h
1074 F:      drivers/gpu/drm/amd/include/vi_structs.h
1075 F:      include/uapi/linux/kfd_ioctl.h
1076 F:      include/uapi/linux/kfd_sysfs.h
1077
1078 AMD MP2 I2C DRIVER
1079 M:      Elie Morisse <[email protected]>
1080 M:      Shyam Sundar S K <[email protected]>
1081 L:      [email protected]
1082 S:      Maintained
1083 F:      drivers/i2c/busses/i2c-amd-mp2*
1084
1085 AMD PDS CORE DRIVER
1086 M:      Shannon Nelson <[email protected]>
1087 M:      Brett Creeley <[email protected]>
1088 L:      [email protected]
1089 S:      Supported
1090 F:      Documentation/networking/device_drivers/ethernet/amd/pds_core.rst
1091 F:      drivers/net/ethernet/amd/pds_core/
1092 F:      include/linux/pds/
1093
1094 AMD PMC DRIVER
1095 M:      Shyam Sundar S K <[email protected]>
1096 L:      [email protected]
1097 S:      Maintained
1098 F:      drivers/platform/x86/amd/pmc/
1099
1100 AMD PMF DRIVER
1101 M:      Shyam Sundar S K <[email protected]>
1102 L:      [email protected]
1103 S:      Maintained
1104 F:      Documentation/ABI/testing/sysfs-amd-pmf
1105 F:      drivers/platform/x86/amd/pmf/
1106
1107 AMD POWERPLAY AND SWSMU
1108 M:      Kenneth Feng <[email protected]>
1109 L:      [email protected]
1110 S:      Supported
1111 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1112 F:      drivers/gpu/drm/amd/pm/
1113
1114 AMD PSTATE DRIVER
1115 M:      Huang Rui <[email protected]>
1116 M:      Gautham R. Shenoy <[email protected]>
1117 M:      Mario Limonciello <[email protected]>
1118 R:      Perry Yuan <[email protected]>
1119 L:      [email protected]
1120 S:      Supported
1121 F:      Documentation/admin-guide/pm/amd-pstate.rst
1122 F:      drivers/cpufreq/amd-pstate*
1123 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1124
1125 AMD PTDMA DRIVER
1126 M:      Basavaraj Natikar <[email protected]>
1127 L:      [email protected]
1128 S:      Maintained
1129 F:      drivers/dma/ptdma/
1130
1131 AMD SEATTLE DEVICE TREE SUPPORT
1132 M:      Suravee Suthikulpanit <[email protected]>
1133 M:      Tom Lendacky <[email protected]>
1134 S:      Supported
1135 F:      arch/arm64/boot/dts/amd/
1136
1137 AMD SENSOR FUSION HUB DRIVER
1138 M:      Basavaraj Natikar <[email protected]>
1139 L:      [email protected]
1140 S:      Maintained
1141 F:      Documentation/hid/amd-sfh*
1142 F:      drivers/hid/amd-sfh-hid/
1143
1144 AMD SPI DRIVER
1145 M:      Sanjay R Mehta <[email protected]>
1146 S:      Maintained
1147 F:      drivers/spi/spi-amd.c
1148
1149 AMD XGBE DRIVER
1150 M:      "Shyam Sundar S K" <[email protected]>
1151 L:      [email protected]
1152 S:      Supported
1153 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1154 F:      drivers/net/ethernet/amd/xgbe/
1155
1156 AMLOGIC BLUETOOTH DRIVER
1157 M:      Yang Li <[email protected]>
1158 L:      [email protected]
1159 S:      Maintained
1160 F:      Documentation/devicetree/bindings/net/bluetooth/amlogic,w155s2-bt.yaml
1161 F:      drivers/bluetooth/hci_aml.c
1162
1163 AMLOGIC DDR PMU DRIVER
1164 M:      Jiucheng Xu <[email protected]>
1165 L:      [email protected]
1166 S:      Supported
1167 W:      http://www.amlogic.com
1168 F:      Documentation/admin-guide/perf/meson-ddr-pmu.rst
1169 F:      Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1170 F:      drivers/perf/amlogic/
1171 F:      include/soc/amlogic/
1172
1173 AMPHENOL CHIPCAP 2 HUMIDITY-TEMPERATURE IIO DRIVER
1174 M:      Javier Carrasco <[email protected]>
1175 L:      [email protected]
1176 S:      Maintained
1177 F:      Documentation/devicetree/bindings/hwmon/amphenol,chipcap2.yaml
1178 F:      Documentation/hwmon/chipcap2.rst
1179 F:      drivers/hwmon/chipcap2.c
1180
1181 AMPHION VPU CODEC V4L2 DRIVER
1182 M:      Ming Qian <[email protected]>
1183 M:      Zhou Peng <[email protected]>
1184 L:      [email protected]
1185 S:      Maintained
1186 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1187 F:      drivers/media/platform/amphion/
1188
1189 AMS AS73211 DRIVER
1190 M:      Christian Eggers <[email protected]>
1191 L:      [email protected]
1192 S:      Maintained
1193 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1194 F:      drivers/iio/light/as73211.c
1195
1196 AMT (Automatic Multicast Tunneling)
1197 M:      Taehee Yoo <[email protected]>
1198 L:      [email protected]
1199 S:      Maintained
1200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1202 F:      drivers/net/amt.c
1203
1204 ANALOG DEVICES INC AD3552R DRIVER
1205 M:      Nuno Sá <[email protected]>
1206 L:      [email protected]
1207 S:      Supported
1208 W:      https://ez.analog.com/linux-software-drivers
1209 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1210 F:      drivers/iio/dac/ad3552r.c
1211
1212 ANALOG DEVICES INC AD4130 DRIVER
1213 M:      Cosmin Tanislav <[email protected]>
1214 L:      [email protected]
1215 S:      Supported
1216 W:      https://ez.analog.com/linux-software-drivers
1217 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1218 F:      Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1219 F:      drivers/iio/adc/ad4130.c
1220
1221 ANALOG DEVICES INC AD7091R DRIVER
1222 M:      Marcelo Schmitt <[email protected]>
1223 L:      [email protected]
1224 S:      Supported
1225 W:      http://ez.analog.com/community/linux-device-drivers
1226 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r*
1227 F:      drivers/iio/adc/ad7091r*
1228
1229 ANALOG DEVICES INC AD7192 DRIVER
1230 M:      Alisa-Dariana Roman <[email protected]>
1231 L:      [email protected]
1232 S:      Supported
1233 W:      https://ez.analog.com/linux-software-drivers
1234 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1235 F:      drivers/iio/adc/ad7192.c
1236
1237 ANALOG DEVICES INC AD7292 DRIVER
1238 M:      Marcelo Schmitt <[email protected]>
1239 L:      [email protected]
1240 S:      Supported
1241 W:      https://ez.analog.com/linux-software-drivers
1242 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1243 F:      drivers/iio/adc/ad7292.c
1244
1245 ANALOG DEVICES INC AD7293 DRIVER
1246 M:      Antoniu Miclaus <[email protected]>
1247 L:      [email protected]
1248 S:      Supported
1249 W:      https://ez.analog.com/linux-software-drivers
1250 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1251 F:      drivers/iio/dac/ad7293.c
1252
1253 ANALOG DEVICES INC AD74115 DRIVER
1254 M:      Cosmin Tanislav <[email protected]>
1255 L:      [email protected]
1256 S:      Supported
1257 W:      https://ez.analog.com/linux-software-drivers
1258 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1259 F:      drivers/iio/addac/ad74115.c
1260
1261 ANALOG DEVICES INC AD74413R DRIVER
1262 M:      Cosmin Tanislav <[email protected]>
1263 L:      [email protected]
1264 S:      Supported
1265 W:      https://ez.analog.com/linux-software-drivers
1266 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1267 F:      drivers/iio/addac/ad74413r.c
1268 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1269
1270 ANALOG DEVICES INC AD7768-1 DRIVER
1271 M:      Michael Hennerich <[email protected]>
1272 L:      [email protected]
1273 S:      Supported
1274 W:      https://ez.analog.com/linux-software-drivers
1275 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1276 F:      drivers/iio/adc/ad7768-1.c
1277
1278 ANALOG DEVICES INC AD7780 DRIVER
1279 M:      Michael Hennerich <[email protected]>
1280 M:      Renato Lui Geh <[email protected]>
1281 L:      [email protected]
1282 S:      Supported
1283 W:      https://ez.analog.com/linux-software-drivers
1284 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1285 F:      drivers/iio/adc/ad7780.c
1286
1287 ANALOG DEVICES INC AD9739a DRIVER
1288 M:      Nuno Sa <[email protected]>
1289 M:      Dragos Bogdan <[email protected]>
1290 L:      [email protected]
1291 S:      Supported
1292 W:      https://ez.analog.com/linux-software-drivers
1293 F:      Documentation/devicetree/bindings/iio/dac/adi,ad9739a.yaml
1294 F:      drivers/iio/dac/ad9739a.c
1295
1296 ANALOG DEVICES INC ADA4250 DRIVER
1297 M:      Antoniu Miclaus <[email protected]>
1298 L:      [email protected]
1299 S:      Supported
1300 W:      https://ez.analog.com/linux-software-drivers
1301 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1302 F:      drivers/iio/amplifiers/ada4250.c
1303
1304 ANALOG DEVICES INC ADF4377 DRIVER
1305 M:      Antoniu Miclaus <[email protected]>
1306 L:      [email protected]
1307 S:      Supported
1308 W:      https://ez.analog.com/linux-software-drivers
1309 F:      Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1310 F:      drivers/iio/frequency/adf4377.c
1311
1312 ANALOG DEVICES INC ADGS1408 DRIVER
1313 M:      Mircea Caprioru <[email protected]>
1314 S:      Supported
1315 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1316 F:      drivers/mux/adgs1408.c
1317
1318 ANALOG DEVICES INC ADIN DRIVER
1319 M:      Michael Hennerich <[email protected]>
1320 L:      [email protected]
1321 S:      Supported
1322 W:      https://ez.analog.com/linux-software-drivers
1323 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1324 F:      drivers/net/phy/adin.c
1325
1326 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1327 M:      Nuno Sa <[email protected]>
1328 L:      [email protected]
1329 S:      Supported
1330 F:      drivers/iio/imu/adis.c
1331 F:      drivers/iio/imu/adis_buffer.c
1332 F:      drivers/iio/imu/adis_trigger.c
1333 F:      include/linux/iio/imu/adis.h
1334
1335 ANALOG DEVICES INC ADIS16460 DRIVER
1336 M:      Dragos Bogdan <[email protected]>
1337 L:      [email protected]
1338 S:      Supported
1339 W:      https://ez.analog.com/linux-software-drivers
1340 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1341 F:      drivers/iio/imu/adis16460.c
1342
1343 ANALOG DEVICES INC ADIS16475 DRIVER
1344 M:      Nuno Sa <[email protected]>
1345 L:      [email protected]
1346 S:      Supported
1347 W:      https://ez.analog.com/linux-software-drivers
1348 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1349 F:      drivers/iio/imu/adis16475.c
1350
1351 ANALOG DEVICES INC ADM1177 DRIVER
1352 M:      Michael Hennerich <[email protected]>
1353 L:      [email protected]
1354 S:      Supported
1355 W:      https://ez.analog.com/linux-software-drivers
1356 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1357 F:      drivers/hwmon/adm1177.c
1358
1359 ANALOG DEVICES INC ADMFM2000 DRIVER
1360 M:      Kim Seer Paller <[email protected]>
1361 L:      [email protected]
1362 S:      Supported
1363 W:      https://ez.analog.com/linux-software-drivers
1364 F:      Documentation/devicetree/bindings/iio/frequency/adi,admfm2000.yaml
1365 F:      drivers/iio/frequency/admfm2000.c
1366
1367 ANALOG DEVICES INC ADMV1013 DRIVER
1368 M:      Antoniu Miclaus <[email protected]>
1369 L:      [email protected]
1370 S:      Supported
1371 W:      https://ez.analog.com/linux-software-drivers
1372 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1373 F:      drivers/iio/frequency/admv1013.c
1374
1375 ANALOG DEVICES INC ADMV1014 DRIVER
1376 M:      Antoniu Miclaus <[email protected]>
1377 L:      [email protected]
1378 S:      Supported
1379 W:      https://ez.analog.com/linux-software-drivers
1380 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1381 F:      drivers/iio/frequency/admv1014.c
1382
1383 ANALOG DEVICES INC ADMV8818 DRIVER
1384 M:      Antoniu Miclaus <[email protected]>
1385 L:      [email protected]
1386 S:      Supported
1387 W:      https://ez.analog.com/linux-software-drivers
1388 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1389 F:      drivers/iio/filter/admv8818.c
1390
1391 ANALOG DEVICES INC ADP5061 DRIVER
1392 M:      Michael Hennerich <[email protected]>
1393 L:      [email protected]
1394 S:      Supported
1395 W:      https://ez.analog.com/linux-software-drivers
1396 F:      drivers/power/supply/adp5061.c
1397
1398 ANALOG DEVICES INC ADRF6780 DRIVER
1399 M:      Antoniu Miclaus <[email protected]>
1400 L:      [email protected]
1401 S:      Supported
1402 W:      https://ez.analog.com/linux-software-drivers
1403 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1404 F:      drivers/iio/frequency/adrf6780.c
1405
1406 ANALOG DEVICES INC ADV7180 DRIVER
1407 M:      Lars-Peter Clausen <[email protected]>
1408 L:      [email protected]
1409 S:      Supported
1410 W:      https://ez.analog.com/linux-software-drivers
1411 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1412 F:      drivers/media/i2c/adv7180.c
1413
1414 ANALOG DEVICES INC ADV748X DRIVER
1415 M:      Kieran Bingham <[email protected]>
1416 L:      [email protected]
1417 S:      Maintained
1418 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1419 F:      drivers/media/i2c/adv748x/*
1420
1421 ANALOG DEVICES INC ADV7511 DRIVER
1422 M:      Hans Verkuil <[email protected]>
1423 L:      [email protected]
1424 S:      Maintained
1425 F:      drivers/media/i2c/adv7511*
1426
1427 ANALOG DEVICES INC ADV7604 DRIVER
1428 M:      Hans Verkuil <[email protected]>
1429 L:      [email protected]
1430 S:      Maintained
1431 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1432 F:      drivers/media/i2c/adv7604*
1433
1434 ANALOG DEVICES INC ADV7842 DRIVER
1435 M:      Hans Verkuil <[email protected]>
1436 L:      [email protected]
1437 S:      Maintained
1438 F:      drivers/media/i2c/adv7842*
1439
1440 ANALOG DEVICES INC ADXRS290 DRIVER
1441 M:      Nishant Malpani <[email protected]>
1442 L:      [email protected]
1443 S:      Supported
1444 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1445 F:      drivers/iio/gyro/adxrs290.c
1446
1447 ANALOG DEVICES INC ASOC CODEC DRIVERS
1448 M:      Lars-Peter Clausen <[email protected]>
1449 M:      Nuno Sá <[email protected]>
1450 L:      [email protected] (moderated for non-subscribers)
1451 S:      Supported
1452 W:      http://wiki.analog.com/
1453 W:      https://ez.analog.com/linux-software-drivers
1454 F:      sound/soc/codecs/ad1*
1455 F:      sound/soc/codecs/ad7*
1456 F:      sound/soc/codecs/adau*
1457 F:      sound/soc/codecs/adav*
1458 F:      sound/soc/codecs/sigmadsp.*
1459 F:      sound/soc/codecs/ssm*
1460
1461 ANALOG DEVICES INC AXI DAC DRIVER
1462 M:      Nuno Sa <[email protected]>
1463 L:      [email protected]
1464 S:      Supported
1465 W:      https://ez.analog.com/linux-software-drivers
1466 F:      Documentation/devicetree/bindings/iio/dac/adi,axi-dac.yaml
1467 F:      drivers/iio/dac/adi-axi-dac.c
1468
1469 ANALOG DEVICES INC DMA DRIVERS
1470 M:      Lars-Peter Clausen <[email protected]>
1471 S:      Supported
1472 W:      https://ez.analog.com/linux-software-drivers
1473 F:      drivers/dma/dma-axi-dmac.c
1474
1475 ANALOG DEVICES INC IIO DRIVERS
1476 M:      Lars-Peter Clausen <[email protected]>
1477 M:      Michael Hennerich <[email protected]>
1478 S:      Supported
1479 W:      http://wiki.analog.com/
1480 W:      https://ez.analog.com/linux-software-drivers
1481 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1482 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1483 F:      Documentation/devicetree/bindings/iio/*/adi,*
1484 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1485 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1486 F:      drivers/iio/*/ad*
1487 F:      drivers/iio/adc/ltc249*
1488 F:      drivers/iio/amplifiers/hmc425a.c
1489 F:      drivers/staging/iio/*/ad*
1490 X:      drivers/iio/*/adjd*
1491
1492 ANALOGBITS PLL LIBRARIES
1493 M:      Paul Walmsley <[email protected]>
1494 M:      Samuel Holland <[email protected]>
1495 S:      Supported
1496 F:      drivers/clk/analogbits/*
1497 F:      include/linux/clk/analogbits*
1498
1499 ANDROID DRIVERS
1500 M:      Greg Kroah-Hartman <[email protected]>
1501 M:      Arve Hjønnevåg <[email protected]>
1502 M:      Todd Kjos <[email protected]>
1503 M:      Martijn Coenen <[email protected]>
1504 M:      Joel Fernandes <[email protected]>
1505 M:      Christian Brauner <[email protected]>
1506 M:      Carlos Llamas <[email protected]>
1507 M:      Suren Baghdasaryan <[email protected]>
1508 L:      [email protected]
1509 S:      Supported
1510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1511 F:      drivers/android/
1512
1513 ANDROID GOLDFISH PIC DRIVER
1514 M:      Miodrag Dinic <[email protected]>
1515 S:      Supported
1516 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1517 F:      drivers/irqchip/irq-goldfish-pic.c
1518
1519 ANDROID GOLDFISH RTC DRIVER
1520 M:      Jiaxun Yang <[email protected]>
1521 S:      Supported
1522 F:      drivers/rtc/rtc-goldfish.c
1523
1524 AOA (Apple Onboard Audio) ALSA DRIVER
1525 M:      Johannes Berg <[email protected]>
1526 L:      [email protected]
1527 L:      [email protected] (moderated for non-subscribers)
1528 S:      Maintained
1529 F:      sound/aoa/
1530
1531 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1532 M:      William Breathitt Gray <[email protected]>
1533 L:      [email protected]
1534 S:      Maintained
1535 F:      drivers/iio/addac/stx104.c
1536
1537 APM DRIVER
1538 M:      Jiri Kosina <[email protected]>
1539 S:      Odd fixes
1540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1541 F:      arch/x86/kernel/apm_32.c
1542 F:      drivers/char/apm-emulation.c
1543 F:      include/linux/apm_bios.h
1544 F:      include/uapi/linux/apm_bios.h
1545
1546 APPARMOR SECURITY MODULE
1547 M:      John Johansen <[email protected]>
1548 M:      John Johansen <[email protected]>
1549 L:      [email protected] (moderated for non-subscribers)
1550 S:      Supported
1551 W:      apparmor.net
1552 B:      https://gitlab.com/apparmor/apparmor-kernel
1553 C:      irc://irc.oftc.net/apparmor
1554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1555 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1556 F:      Documentation/admin-guide/LSM/apparmor.rst
1557 F:      security/apparmor/
1558
1559 APPLE BCM5974 MULTITOUCH DRIVER
1560 M:      Henrik Rydberg <[email protected]>
1561 L:      [email protected]
1562 S:      Odd fixes
1563 F:      drivers/input/mouse/bcm5974.c
1564
1565 APPLE PCIE CONTROLLER DRIVER
1566 M:      Alyssa Rosenzweig <[email protected]>
1567 M:      Marc Zyngier <[email protected]>
1568 L:      [email protected]
1569 S:      Maintained
1570 F:      drivers/pci/controller/pcie-apple.c
1571
1572 APPLE SMC DRIVER
1573 M:      Henrik Rydberg <[email protected]>
1574 L:      [email protected]
1575 S:      Odd fixes
1576 F:      drivers/hwmon/applesmc.c
1577
1578 APPLETALK NETWORK LAYER
1579 L:      [email protected]
1580 S:      Odd fixes
1581 F:      include/linux/atalk.h
1582 F:      include/uapi/linux/atalk.h
1583 F:      net/appletalk/
1584
1585 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1586 M:      Khuong Dinh <[email protected]>
1587 S:      Supported
1588 F:      arch/arm64/boot/dts/apm/
1589
1590 APPLIED MICRO (APM) X-GENE SOC EDAC
1591 M:      Khuong Dinh <[email protected]>
1592 S:      Supported
1593 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1594 F:      drivers/edac/xgene_edac.c
1595
1596 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1597 M:      Iyappan Subramanian <[email protected]>
1598 M:      Keyur Chudgar <[email protected]>
1599 S:      Supported
1600 F:      drivers/net/ethernet/apm/xgene-v2/
1601
1602 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1603 M:      Iyappan Subramanian <[email protected]>
1604 M:      Keyur Chudgar <[email protected]>
1605 M:      Quan Nguyen <[email protected]>
1606 S:      Supported
1607 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1608 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1609 F:      drivers/net/ethernet/apm/xgene/
1610 F:      drivers/net/mdio/mdio-xgene.c
1611
1612 APPLIED MICRO (APM) X-GENE SOC PMU
1613 M:      Khuong Dinh <[email protected]>
1614 S:      Supported
1615 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1616 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1617 F:      drivers/perf/xgene_pmu.c
1618
1619 APPLIED MICRO QT2025 PHY DRIVER
1620 M:      FUJITA Tomonori <[email protected]>
1621 R:      Trevor Gross <[email protected]>
1622 L:      [email protected]
1623 L:      [email protected]
1624 S:      Maintained
1625 F:      drivers/net/phy/qt2025.rs
1626
1627 APTINA CAMERA SENSOR PLL
1628 M:      Laurent Pinchart <[email protected]>
1629 L:      [email protected]
1630 S:      Maintained
1631 F:      drivers/media/i2c/aptina-pll.*
1632
1633 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1634 M:      Aleksa Savic <[email protected]>
1635 M:      Jack Doan <[email protected]>
1636 L:      [email protected]
1637 S:      Maintained
1638 F:      Documentation/hwmon/aquacomputer_d5next.rst
1639 F:      drivers/hwmon/aquacomputer_d5next.c
1640
1641 AQUANTIA ETHERNET DRIVER (atlantic)
1642 M:      Igor Russkikh <[email protected]>
1643 L:      [email protected]
1644 S:      Supported
1645 W:      https://www.marvell.com/
1646 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1647 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1648 F:      drivers/net/ethernet/aquantia/atlantic/
1649
1650 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1651 M:      Egor Pomozov <[email protected]>
1652 L:      [email protected]
1653 S:      Supported
1654 W:      http://www.aquantia.com
1655 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1656
1657 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1658 M:      Krzysztof Hałasa <[email protected]>
1659 L:      [email protected]
1660 S:      Maintained
1661 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1662 F:      drivers/media/i2c/ar0521.c
1663
1664 ARASAN NAND CONTROLLER DRIVER
1665 M:      Miquel Raynal <[email protected]>
1666 R:      Michal Simek <[email protected]>
1667 L:      [email protected]
1668 S:      Maintained
1669 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1670 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1671
1672 ARC FRAMEBUFFER DRIVER
1673 M:      Jaya Kumar <[email protected]>
1674 S:      Maintained
1675 F:      drivers/video/fbdev/arcfb.c
1676 F:      drivers/video/fbdev/core/fb_defio.c
1677
1678 ARC PGU DRM DRIVER
1679 M:      Alexey Brodkin <[email protected]>
1680 S:      Supported
1681 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1682 F:      drivers/gpu/drm/tiny/arcpgu.c
1683
1684 ARCNET NETWORK LAYER
1685 M:      Michael Grzeschik <[email protected]>
1686 L:      [email protected]
1687 S:      Maintained
1688 F:      drivers/net/arcnet/
1689 F:      include/uapi/linux/if_arcnet.h
1690
1691 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1692 M:      Arnd Bergmann <[email protected]>
1693 M:      Olof Johansson <[email protected]>
1694 M:      [email protected]
1695 L:      [email protected] (moderated for non-subscribers)
1696 S:      Maintained
1697 P:      Documentation/process/maintainer-soc.rst
1698 C:      irc://irc.libera.chat/armlinux
1699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1700 F:      Documentation/process/maintainer-soc*.rst
1701 F:      arch/arm/boot/dts/Makefile
1702 F:      arch/arm64/boot/dts/Makefile
1703
1704 ARM ARCHITECTED TIMER DRIVER
1705 M:      Mark Rutland <[email protected]>
1706 M:      Marc Zyngier <[email protected]>
1707 L:      [email protected] (moderated for non-subscribers)
1708 S:      Maintained
1709 F:      arch/arm/include/asm/arch_timer.h
1710 F:      arch/arm64/include/asm/arch_timer.h
1711 F:      drivers/clocksource/arm_arch_timer.c
1712
1713 ARM GENERIC INTERRUPT CONTROLLER DRIVERS
1714 M:      Marc Zyngier <[email protected]>
1715 L:      [email protected] (moderated for non-subscribers)
1716 S:      Maintained
1717 F:      Documentation/devicetree/bindings/interrupt-controller/arm,gic*
1718 F:      arch/arm/include/asm/arch_gicv3.h
1719 F:      arch/arm64/include/asm/arch_gicv3.h
1720 F:      drivers/irqchip/irq-gic*.[ch]
1721 F:      include/linux/irqchip/arm-gic*.h
1722 F:      include/linux/irqchip/arm-vgic-info.h
1723
1724 ARM HDLCD DRM DRIVER
1725 M:      Liviu Dudau <[email protected]>
1726 S:      Supported
1727 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1728 F:      drivers/gpu/drm/arm/hdlcd_*
1729
1730 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1731 M:      Linus Walleij <[email protected]>
1732 L:      [email protected] (moderated for non-subscribers)
1733 S:      Maintained
1734 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1735 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1736 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1737 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1738 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1739 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1740 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1741 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1742 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1743 F:      arch/arm/boot/dts/arm/arm-realview-*
1744 F:      arch/arm/boot/dts/arm/integrator*
1745 F:      arch/arm/boot/dts/arm/versatile*
1746 F:      arch/arm/mach-versatile/
1747 F:      drivers/bus/arm-integrator-lm.c
1748 F:      drivers/clk/versatile/
1749 F:      drivers/i2c/busses/i2c-versatile.c
1750 F:      drivers/irqchip/irq-versatile-fpga.c
1751 F:      drivers/mtd/maps/physmap-versatile.*
1752 F:      drivers/power/reset/arm-versatile-reboot.c
1753 F:      drivers/soc/versatile/
1754
1755 ARM KOMEDA DRM-KMS DRIVER
1756 M:      Liviu Dudau <[email protected]>
1757 S:      Supported
1758 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
1759 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1760 F:      Documentation/gpu/komeda-kms.rst
1761 F:      drivers/gpu/drm/arm/display/include/
1762 F:      drivers/gpu/drm/arm/display/komeda/
1763
1764 ARM MALI PANFROST DRM DRIVER
1765 M:      Boris Brezillon <[email protected]>
1766 M:      Rob Herring <[email protected]>
1767 R:      Steven Price <[email protected]>
1768 L:      [email protected]
1769 S:      Supported
1770 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
1771 F:      Documentation/gpu/panfrost.rst
1772 F:      drivers/gpu/drm/panfrost/
1773 F:      include/uapi/drm/panfrost_drm.h
1774
1775 ARM MALI PANTHOR DRM DRIVER
1776 M:      Boris Brezillon <[email protected]>
1777 M:      Steven Price <[email protected]>
1778 M:      Liviu Dudau <[email protected]>
1779 L:      [email protected]
1780 S:      Supported
1781 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
1782 F:      Documentation/devicetree/bindings/gpu/arm,mali-valhall-csf.yaml
1783 F:      drivers/gpu/drm/panthor/
1784 F:      include/uapi/drm/panthor_drm.h
1785
1786 ARM MALI-DP DRM DRIVER
1787 M:      Liviu Dudau <[email protected]>
1788 S:      Supported
1789 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
1790 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1791 F:      Documentation/gpu/afbc.rst
1792 F:      drivers/gpu/drm/arm/
1793
1794 ARM MFM AND FLOPPY DRIVERS
1795 M:      Ian Molton <[email protected]>
1796 S:      Maintained
1797 F:      arch/arm/include/asm/floppy.h
1798 F:      arch/arm/mach-rpc/floppydma.S
1799
1800 ARM PMU PROFILING AND DEBUGGING
1801 M:      Will Deacon <[email protected]>
1802 M:      Mark Rutland <[email protected]>
1803 L:      [email protected] (moderated for non-subscribers)
1804 S:      Maintained
1805 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1806 F:      Documentation/devicetree/bindings/perf/
1807 F:      arch/arm*/include/asm/hw_breakpoint.h
1808 F:      arch/arm*/include/asm/perf_event.h
1809 F:      arch/arm*/kernel/hw_breakpoint.c
1810 F:      arch/arm*/kernel/perf_*
1811 F:      drivers/perf/
1812 F:      include/linux/perf/arm_pmu*.h
1813
1814 ARM PORT
1815 M:      Russell King <[email protected]>
1816 L:      [email protected] (moderated for non-subscribers)
1817 S:      Odd Fixes
1818 W:      http://www.armlinux.org.uk/
1819 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1820 F:      arch/arm/
1821 X:      arch/arm/boot/dts/
1822
1823 ARM PRIMECELL AACI PL041 DRIVER
1824 M:      Russell King <[email protected]>
1825 S:      Odd Fixes
1826 F:      sound/arm/aaci.*
1827
1828 ARM PRIMECELL BUS SUPPORT
1829 M:      Russell King <[email protected]>
1830 S:      Odd Fixes
1831 F:      drivers/amba/
1832 F:      include/linux/amba/bus.h
1833
1834 ARM PRIMECELL KMI PL050 DRIVER
1835 M:      Russell King <[email protected]>
1836 S:      Odd Fixes
1837 F:      drivers/input/serio/ambakmi.*
1838 F:      include/linux/amba/kmi.h
1839
1840 ARM PRIMECELL MMCI PL180/1 DRIVER
1841 M:      Russell King <[email protected]>
1842 S:      Odd Fixes
1843 F:      drivers/mmc/host/mmci.*
1844 F:      include/linux/amba/mmci.h
1845
1846 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1847 M:      Miquel Raynal <[email protected]>
1848 R:      Michal Simek <[email protected]>
1849 L:      [email protected]
1850 S:      Maintained
1851 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1852 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1853
1854 ARM PRIMECELL PL35X SMC DRIVER
1855 M:      Miquel Raynal <[email protected]>
1856 R:      Michal Simek <[email protected]>
1857 L:      [email protected] (moderated for non-subscribers)
1858 S:      Maintained
1859 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1860 F:      drivers/memory/pl353-smc.c
1861
1862 ARM PRIMECELL SSP PL022 SPI DRIVER
1863 M:      Linus Walleij <[email protected]>
1864 L:      [email protected] (moderated for non-subscribers)
1865 S:      Maintained
1866 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1867 F:      drivers/spi/spi-pl022.c
1868
1869 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1870 M:      Russell King <[email protected]>
1871 S:      Odd Fixes
1872 F:      drivers/tty/serial/amba-pl01*.c
1873 F:      include/linux/amba/serial.h
1874
1875 ARM PRIMECELL VIC PL190/PL192 DRIVER
1876 M:      Linus Walleij <[email protected]>
1877 L:      [email protected] (moderated for non-subscribers)
1878 S:      Maintained
1879 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1880 F:      drivers/irqchip/irq-vic.c
1881
1882 ARM SMC WATCHDOG DRIVER
1883 M:      Julius Werner <[email protected]>
1884 R:      Evan Benn <[email protected]>
1885 S:      Maintained
1886 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1887 F:      drivers/watchdog/arm_smc_wdt.c
1888
1889 ARM SMMU DRIVERS
1890 M:      Will Deacon <[email protected]>
1891 R:      Robin Murphy <[email protected]>
1892 L:      [email protected] (moderated for non-subscribers)
1893 S:      Maintained
1894 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1895 F:      drivers/iommu/arm/
1896 F:      drivers/iommu/io-pgtable-arm*
1897
1898 ARM SMMU SVA SUPPORT
1899 R:      Jean-Philippe Brucker <[email protected]>
1900 F:      drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-sva.c
1901
1902 ARM SUB-ARCHITECTURES
1903 L:      [email protected] (moderated for non-subscribers)
1904 S:      Maintained
1905 C:      irc://irc.libera.chat/armlinux
1906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1907 F:      arch/arm/mach-*/
1908 F:      arch/arm/plat-*/
1909
1910 ARM/ACTIONS SEMI ARCHITECTURE
1911 M:      Andreas Färber <[email protected]>
1912 M:      Manivannan Sadhasivam <[email protected]>
1913 L:      [email protected] (moderated for non-subscribers)
1914 L:      [email protected] (moderated for non-subscribers)
1915 S:      Maintained
1916 F:      Documentation/devicetree/bindings/arm/actions.yaml
1917 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1918 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1919 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1920 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1921 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1922 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1923 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1924 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1925 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1926 F:      arch/arm/boot/dts/actions/
1927 F:      arch/arm/mach-actions/
1928 F:      arch/arm64/boot/dts/actions/
1929 F:      drivers/clk/actions/
1930 F:      drivers/clocksource/timer-owl*
1931 F:      drivers/dma/owl-dma.c
1932 F:      drivers/i2c/busses/i2c-owl.c
1933 F:      drivers/irqchip/irq-owl-sirq.c
1934 F:      drivers/mmc/host/owl-mmc.c
1935 F:      drivers/net/ethernet/actions/
1936 F:      drivers/pinctrl/actions/*
1937 F:      drivers/pmdomain/actions/
1938 F:      include/dt-bindings/power/owl-*
1939 F:      include/dt-bindings/reset/actions,*
1940 F:      include/linux/soc/actions/
1941 N:      owl
1942
1943 ARM/AIROHA SOC SUPPORT
1944 M:      Matthias Brugger <[email protected]>
1945 M:      AngeloGioacchino Del Regno <[email protected]>
1946 L:      [email protected] (moderated for non-subscribers)
1947 L:      [email protected] (moderated for non-subscribers)
1948 S:      Odd Fixes
1949 F:      arch/arm/boot/dts/airoha/
1950 F:      arch/arm64/boot/dts/airoha/
1951
1952 ARM/Allwinner SoC Clock Support
1953 M:      Emilio López <[email protected]>
1954 S:      Maintained
1955 F:      drivers/clk/sunxi/
1956
1957 ARM/Allwinner sunXi SoC support
1958 M:      Chen-Yu Tsai <[email protected]>
1959 M:      Jernej Skrabec <[email protected]>
1960 M:      Samuel Holland <[email protected]>
1961 L:      [email protected] (moderated for non-subscribers)
1962 L:      [email protected]
1963 S:      Maintained
1964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1965 F:      arch/arm/mach-sunxi/
1966 F:      arch/arm64/boot/dts/allwinner/
1967 F:      drivers/clk/sunxi-ng/
1968 F:      drivers/pinctrl/sunxi/
1969 F:      drivers/soc/sunxi/
1970 N:      allwinner
1971 N:      sun[x456789]i
1972 N:      sun[25]0i
1973
1974 ARM/ALPHASCALE ARCHITECTURE
1975 M:      Krzysztof Kozlowski <[email protected]>
1976 L:      [email protected] (moderated for non-subscribers)
1977 S:      Odd Fixes
1978 F:      arch/arm/boot/dts/alphascale/
1979 F:      drivers/clk/clk-asm9260.c
1980 F:      drivers/clocksource/asm9260_timer.c
1981 F:      drivers/rtc/rtc-asm9260.c
1982 F:      drivers/watchdog/asm9260_wdt.c
1983
1984 ARM/AMD PENSANDO ARM64 ARCHITECTURE
1985 M:      Brad Larson <[email protected]>
1986 L:      [email protected] (moderated for non-subscribers)
1987 S:      Supported
1988 F:      Documentation/devicetree/bindings/*/amd,pensando*
1989 F:      arch/arm64/boot/dts/amd/elba*
1990
1991 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1992 M:      Neil Armstrong <[email protected]>
1993 M:      Jerome Brunet <[email protected]>
1994 L:      [email protected]
1995 S:      Maintained
1996 F:      Documentation/devicetree/bindings/clock/amlogic*
1997 F:      drivers/clk/meson/
1998 F:      include/dt-bindings/clock/amlogic,a1*
1999 F:      include/dt-bindings/clock/gxbb*
2000 F:      include/dt-bindings/clock/meson*
2001
2002 ARM/Amlogic Meson SoC Crypto Drivers
2003 M:      Corentin Labbe <[email protected]>
2004 L:      [email protected]
2005 L:      [email protected]
2006 S:      Maintained
2007 F:      Documentation/devicetree/bindings/crypto/amlogic*
2008 F:      drivers/crypto/amlogic/
2009
2010 ARM/Amlogic Meson SoC Sound Drivers
2011 M:      Jerome Brunet <[email protected]>
2012 L:      [email protected] (moderated for non-subscribers)
2013 S:      Maintained
2014 F:      Documentation/devicetree/bindings/sound/amlogic*
2015 F:      sound/soc/meson/
2016
2017 ARM/Amlogic Meson SoC support
2018 M:      Neil Armstrong <[email protected]>
2019 M:      Kevin Hilman <[email protected]>
2020 R:      Jerome Brunet <[email protected]>
2021 R:      Martin Blumenstingl <[email protected]>
2022 L:      [email protected] (moderated for non-subscribers)
2023 L:      [email protected]
2024 S:      Maintained
2025 W:      http://linux-meson.com/
2026 F:      Documentation/devicetree/bindings/phy/amlogic*
2027 F:      arch/arm/boot/dts/amlogic/
2028 F:      arch/arm/mach-meson/
2029 F:      arch/arm64/boot/dts/amlogic/
2030 F:      drivers/pmdomain/amlogic/
2031 F:      drivers/mmc/host/meson*
2032 F:      drivers/phy/amlogic/
2033 F:      drivers/pinctrl/meson/
2034 F:      drivers/rtc/rtc-meson*
2035 F:      drivers/soc/amlogic/
2036 N:      meson
2037
2038 ARM/Annapurna Labs ALPINE ARCHITECTURE
2039 M:      Antoine Tenart <[email protected]>
2040 L:      [email protected] (moderated for non-subscribers)
2041 S:      Odd Fixes
2042 F:      arch/arm/boot/dts/amazon/
2043 F:      arch/arm/mach-alpine/
2044 F:      arch/arm64/boot/dts/amazon/
2045 F:      drivers/*/*alpine*
2046
2047 ARM/APPLE MACHINE SOUND DRIVERS
2048 M:      Martin Povišer <[email protected]>
2049 L:      [email protected]
2050 L:      [email protected] (moderated for non-subscribers)
2051 S:      Maintained
2052 F:      Documentation/devicetree/bindings/sound/adi,ssm3515.yaml
2053 F:      Documentation/devicetree/bindings/sound/apple,*
2054 F:      sound/soc/apple/*
2055 F:      sound/soc/codecs/cs42l83-i2c.c
2056 F:      sound/soc/codecs/ssm3515.c
2057
2058 ARM/APPLE MACHINE SUPPORT
2059 M:      Hector Martin <[email protected]>
2060 M:      Sven Peter <[email protected]>
2061 R:      Alyssa Rosenzweig <[email protected]>
2062 L:      [email protected]
2063 L:      [email protected] (moderated for non-subscribers)
2064 S:      Maintained
2065 W:      https://asahilinux.org
2066 B:      https://github.com/AsahiLinux/linux/issues
2067 C:      irc://irc.oftc.net/asahi-dev
2068 T:      git https://github.com/AsahiLinux/linux.git
2069 F:      Documentation/devicetree/bindings/arm/apple.yaml
2070 F:      Documentation/devicetree/bindings/arm/apple/*
2071 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
2072 F:      Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
2073 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
2074 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
2075 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
2076 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
2077 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
2078 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
2079 F:      Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
2080 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
2081 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
2082 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
2083 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
2084 F:      Documentation/devicetree/bindings/power/apple*
2085 F:      Documentation/devicetree/bindings/pwm/apple,s5l-fpwm.yaml
2086 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
2087 F:      arch/arm64/boot/dts/apple/
2088 F:      drivers/bluetooth/hci_bcm4377.c
2089 F:      drivers/clk/clk-apple-nco.c
2090 F:      drivers/cpufreq/apple-soc-cpufreq.c
2091 F:      drivers/dma/apple-admac.c
2092 F:      drivers/pmdomain/apple/
2093 F:      drivers/i2c/busses/i2c-pasemi-core.c
2094 F:      drivers/i2c/busses/i2c-pasemi-platform.c
2095 F:      drivers/iommu/apple-dart.c
2096 F:      drivers/iommu/io-pgtable-dart.c
2097 F:      drivers/irqchip/irq-apple-aic.c
2098 F:      drivers/nvme/host/apple.c
2099 F:      drivers/nvmem/apple-efuses.c
2100 F:      drivers/pinctrl/pinctrl-apple-gpio.c
2101 F:      drivers/pwm/pwm-apple.c
2102 F:      drivers/soc/apple/*
2103 F:      drivers/watchdog/apple_wdt.c
2104 F:      include/dt-bindings/interrupt-controller/apple-aic.h
2105 F:      include/dt-bindings/pinctrl/apple.h
2106 F:      include/linux/soc/apple/*
2107
2108 ARM/ARTPEC MACHINE SUPPORT
2109 M:      Jesper Nilsson <[email protected]>
2110 M:      Lars Persson <[email protected]>
2111 L:      [email protected]
2112 S:      Maintained
2113 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
2114 F:      arch/arm/boot/dts/axis/
2115 F:      arch/arm/mach-artpec
2116 F:      drivers/clk/axis
2117 F:      drivers/crypto/axis
2118 F:      drivers/mmc/host/usdhi6rol0.c
2119 F:      drivers/pinctrl/pinctrl-artpec*
2120
2121 ARM/ASPEED I2C DRIVER
2122 M:      Brendan Higgins <[email protected]>
2123 R:      Benjamin Herrenschmidt <[email protected]>
2124 R:      Joel Stanley <[email protected]>
2125 L:      [email protected]
2126 L:      [email protected] (moderated for non-subscribers)
2127 S:      Maintained
2128 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2129 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2130 F:      drivers/i2c/busses/i2c-aspeed.c
2131 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
2132
2133 ARM/ASPEED MACHINE SUPPORT
2134 M:      Joel Stanley <[email protected]>
2135 R:      Andrew Jeffery <[email protected]>
2136 L:      [email protected] (moderated for non-subscribers)
2137 L:      [email protected] (moderated for non-subscribers)
2138 S:      Supported
2139 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
2140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/bmc.git
2141 F:      Documentation/devicetree/bindings/arm/aspeed/
2142 F:      arch/arm/boot/dts/aspeed/
2143 F:      arch/arm/mach-aspeed/
2144 N:      aspeed
2145
2146 ARM/AXM LSI SOC
2147 M:      Krzysztof Kozlowski <[email protected]>
2148 L:      [email protected] (moderated for non-subscribers)
2149 S:      Odd Fixes
2150 F:      Documentation/devicetree/bindings/arm/axxia.yaml
2151 F:      arch/arm/boot/dts/intel/axm/
2152 F:      arch/arm/mach-axxia/
2153
2154 ARM/BITMAIN ARCHITECTURE
2155 M:      Manivannan Sadhasivam <[email protected]>
2156 L:      [email protected] (moderated for non-subscribers)
2157 S:      Maintained
2158 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
2159 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2160 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2161 F:      arch/arm64/boot/dts/bitmain/
2162 F:      drivers/clk/clk-bm1880.c
2163 F:      drivers/pinctrl/pinctrl-bm1880.c
2164
2165 ARM/CALXEDA HIGHBANK ARCHITECTURE
2166 M:      Andre Przywara <[email protected]>
2167 L:      [email protected] (moderated for non-subscribers)
2168 S:      Maintained
2169 F:      arch/arm/boot/dts/calxeda/
2170 F:      arch/arm/mach-highbank/
2171
2172 ARM/CAVIUM THUNDER NETWORK DRIVER
2173 M:      Sunil Goutham <[email protected]>
2174 L:      [email protected] (moderated for non-subscribers)
2175 S:      Supported
2176 F:      drivers/net/ethernet/cavium/thunder/
2177
2178 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2179 M:      Lukasz Majewski <[email protected]>
2180 L:      [email protected] (moderated for non-subscribers)
2181 S:      Maintained
2182 F:      arch/arm/mach-ep93xx/ts72xx.c
2183
2184 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2185 M:      Alexander Shiyan <[email protected]>
2186 L:      [email protected] (moderated for non-subscribers)
2187 S:      Odd Fixes
2188 N:      clps711x
2189
2190 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2191 M:      Hartley Sweeten <[email protected]>
2192 M:      Alexander Sverdlin <[email protected]>
2193 L:      [email protected] (moderated for non-subscribers)
2194 S:      Maintained
2195 F:      Documentation/devicetree/bindings/iio/adc/cirrus,ep9301-adc.yaml
2196 F:      Documentation/devicetree/bindings/sound/cirrus,ep9301-*
2197 F:      arch/arm/boot/compressed/misc-ep93xx.h
2198 F:      arch/arm/mach-ep93xx/
2199 F:      drivers/iio/adc/ep93xx_adc.c
2200
2201 ARM/CLKDEV SUPPORT
2202 M:      Russell King <[email protected]>
2203 L:      [email protected] (moderated for non-subscribers)
2204 S:      Maintained
2205 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2206 F:      drivers/clk/clkdev.c
2207
2208 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2209 M:      Baruch Siach <[email protected]>
2210 L:      [email protected] (moderated for non-subscribers)
2211 S:      Maintained
2212 F:      arch/arm/boot/dts/cnxt/
2213 N:      digicolor
2214
2215 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2216 M:      Suzuki K Poulose <[email protected]>
2217 R:      Mike Leach <[email protected]>
2218 R:      James Clark <[email protected]>
2219 L:      [email protected] (moderated for non-subscribers)
2220 L:      [email protected] (moderated for non-subscribers)
2221 S:      Maintained
2222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2223 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2224 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2225 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2226 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2227 F:      Documentation/devicetree/bindings/arm/qcom,coresight-*.yaml
2228 F:      Documentation/trace/coresight/*
2229 F:      drivers/hwtracing/coresight/*
2230 F:      include/dt-bindings/arm/coresight-cti-dt.h
2231 F:      include/linux/coresight*
2232 F:      include/uapi/linux/coresight*
2233 F:      samples/coresight/*
2234 F:      tools/perf/Documentation/arm-coresight.txt
2235 F:      tools/perf/arch/arm/util/auxtrace.c
2236 F:      tools/perf/arch/arm/util/cs-etm.c
2237 F:      tools/perf/arch/arm/util/cs-etm.h
2238 F:      tools/perf/arch/arm/util/pmu.c
2239 F:      tools/perf/tests/shell/*coresight*
2240 F:      tools/perf/tests/shell/coresight/*
2241 F:      tools/perf/tests/shell/lib/*coresight*
2242 F:      tools/perf/util/cs-etm-decoder/*
2243 F:      tools/perf/util/cs-etm.*
2244
2245 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2246 M:      Hans Ulli Kroll <[email protected]>
2247 M:      Linus Walleij <[email protected]>
2248 L:      [email protected] (moderated for non-subscribers)
2249 S:      Maintained
2250 T:      git git://github.com/ulli-kroll/linux.git
2251 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2252 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2253 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2254 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2255 F:      arch/arm/boot/dts/gemini/
2256 F:      arch/arm/mach-gemini/
2257 F:      drivers/crypto/gemini/
2258 F:      drivers/net/ethernet/cortina/
2259 F:      drivers/pinctrl/pinctrl-gemini.c
2260 F:      drivers/rtc/rtc-ftrtc010.c
2261
2262 ARM/CZ.NIC TURRIS SUPPORT
2263 M:      Marek Behún <[email protected]>
2264 S:      Maintained
2265 W:      https://www.turris.cz/
2266 F:      Documentation/ABI/testing/debugfs-moxtet
2267 F:      Documentation/ABI/testing/sysfs-bus-i2c-devices-turris-omnia-mcu
2268 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2269 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2270 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2271 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2272 F:      Documentation/devicetree/bindings/firmware/cznic,turris-omnia-mcu.yaml
2273 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2274 F:      Documentation/devicetree/bindings/interrupt-controller/marvell,mpic.yaml
2275 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2276 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2277 F:      drivers/bus/moxtet.c
2278 F:      drivers/firmware/turris-mox-rwtm.c
2279 F:      drivers/gpio/gpio-moxtet.c
2280 F:      drivers/leds/leds-turris-omnia.c
2281 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2282 F:      drivers/platform/cznic/
2283 F:      drivers/watchdog/armada_37xx_wdt.c
2284 F:      include/dt-bindings/bus/moxtet.h
2285 F:      include/linux/armada-37xx-rwtm-mailbox.h
2286 F:      include/linux/moxtet.h
2287 F:      include/linux/turris-omnia-mcu-interface.h
2288
2289 ARM/FARADAY FA526 PORT
2290 M:      Hans Ulli Kroll <[email protected]>
2291 L:      [email protected] (moderated for non-subscribers)
2292 S:      Maintained
2293 T:      git git://git.berlios.de/gemini-board
2294 F:      arch/arm/mm/*-fa*
2295
2296 ARM/FOOTBRIDGE ARCHITECTURE
2297 M:      Russell King <[email protected]>
2298 L:      [email protected] (moderated for non-subscribers)
2299 S:      Maintained
2300 W:      http://www.armlinux.org.uk/
2301 F:      arch/arm/include/asm/hardware/dec21285.h
2302 F:      arch/arm/mach-footbridge/
2303
2304 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2305 M:      Shawn Guo <[email protected]>
2306 M:      Sascha Hauer <[email protected]>
2307 R:      Pengutronix Kernel Team <[email protected]>
2308 R:      Fabio Estevam <[email protected]>
2309 L:      [email protected]
2310 L:      [email protected] (moderated for non-subscribers)
2311 S:      Maintained
2312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2313 F:      arch/arm/boot/dts/nxp/imx/
2314 F:      arch/arm/boot/dts/nxp/mxs/
2315 F:      arch/arm64/boot/dts/freescale/
2316 X:      arch/arm64/boot/dts/freescale/fsl-*
2317 X:      arch/arm64/boot/dts/freescale/qoriq-*
2318 X:      drivers/media/i2c/
2319 N:      imx
2320 N:      mxs
2321
2322 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2323 M:      Shawn Guo <[email protected]>
2324 L:      [email protected] (moderated for non-subscribers)
2325 S:      Maintained
2326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2327 F:      arch/arm/boot/dts/nxp/ls/
2328 F:      arch/arm64/boot/dts/freescale/fsl-*
2329 F:      arch/arm64/boot/dts/freescale/qoriq-*
2330
2331 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2332 M:      Shawn Guo <[email protected]>
2333 M:      Sascha Hauer <[email protected]>
2334 R:      Pengutronix Kernel Team <[email protected]>
2335 R:      Stefan Agner <[email protected]>
2336 L:      [email protected] (moderated for non-subscribers)
2337 S:      Maintained
2338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2339 F:      arch/arm/boot/dts/nxp/vf/
2340 F:      arch/arm/mach-imx/*vf610*
2341
2342 ARM/GUMSTIX MACHINE SUPPORT
2343 M:      Steve Sakoman <[email protected]>
2344 L:      [email protected] (moderated for non-subscribers)
2345 S:      Maintained
2346
2347 ARM/HISILICON SOC SUPPORT
2348 M:      Wei Xu <[email protected]>
2349 L:      [email protected] (moderated for non-subscribers)
2350 S:      Supported
2351 W:      http://www.hisilicon.com
2352 T:      git https://github.com/hisilicon/linux-hisi.git
2353 F:      arch/arm/boot/dts/hisilicon/
2354 F:      arch/arm/mach-hisi/
2355 F:      arch/arm64/boot/dts/hisilicon/
2356
2357 ARM/HP JORNADA 7XX MACHINE SUPPORT
2358 M:      Kristoffer Ericson <[email protected]>
2359 S:      Maintained
2360 W:      www.jlime.com
2361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2362 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2363 F:      arch/arm/mach-sa1100/jornada720.c
2364
2365 ARM/HPE GXP ARCHITECTURE
2366 M:      Jean-Marie Verdun <[email protected]>
2367 M:      Nick Hawkins <[email protected]>
2368 S:      Maintained
2369 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2370 F:      Documentation/devicetree/bindings/hwmon/hpe,gxp-fan-ctrl.yaml
2371 F:      Documentation/devicetree/bindings/i2c/hpe,gxp-i2c.yaml
2372 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2373 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2374 F:      Documentation/hwmon/gxp-fan-ctrl.rst
2375 F:      arch/arm/boot/dts/hpe/
2376 F:      arch/arm/mach-hpe/
2377 F:      drivers/clocksource/timer-gxp.c
2378 F:      drivers/hwmon/gxp-fan-ctrl.c
2379 F:      drivers/i2c/busses/i2c-gxp.c
2380 F:      drivers/spi/spi-gxp.c
2381 F:      drivers/watchdog/gxp-wdt.c
2382
2383 ARM/IGEP MACHINE SUPPORT
2384 M:      Enric Balletbo i Serra <[email protected]>
2385 M:      Javier Martinez Canillas <[email protected]>
2386 L:      [email protected]
2387 L:      [email protected] (moderated for non-subscribers)
2388 S:      Maintained
2389 F:      arch/arm/boot/dts/ti/omap/omap3-igep*
2390
2391 ARM/INTEL IXP4XX ARM ARCHITECTURE
2392 M:      Linus Walleij <[email protected]>
2393 M:      Imre Kaloz <[email protected]>
2394 L:      [email protected] (moderated for non-subscribers)
2395 S:      Maintained
2396 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2397 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.yaml
2398 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2399 F:      Documentation/devicetree/bindings/memory-controllers/intel,ixp4xx-expansion*
2400 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
2401 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2402 F:      arch/arm/boot/dts/intel/ixp/
2403 F:      arch/arm/mach-ixp4xx/
2404 F:      drivers/bus/intel-ixp4xx-eb.c
2405 F:      drivers/char/hw_random/ixp4xx-rng.c
2406 F:      drivers/clocksource/timer-ixp4xx.c
2407 F:      drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
2408 F:      drivers/gpio/gpio-ixp4xx.c
2409 F:      drivers/irqchip/irq-ixp4xx.c
2410 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
2411 F:      drivers/net/wan/ixp4xx_hss.c
2412 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
2413 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
2414 F:      include/linux/soc/ixp4xx/npe.h
2415 F:      include/linux/soc/ixp4xx/qmgr.h
2416
2417 ARM/INTEL KEEMBAY ARCHITECTURE
2418 M:      Paul J. Murphy <[email protected]>
2419 M:      Daniele Alessandrelli <[email protected]>
2420 S:      Maintained
2421 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2422 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2423 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2424
2425 ARM/INTEL XSC3 (MANZANO) ARM CORE
2426 M:      Lennert Buytenhek <[email protected]>
2427 L:      [email protected] (moderated for non-subscribers)
2428 S:      Maintained
2429
2430 ARM/LG1K ARCHITECTURE
2431 M:      Chanho Min <[email protected]>
2432 L:      [email protected] (moderated for non-subscribers)
2433 S:      Maintained
2434 F:      arch/arm64/boot/dts/lg/
2435
2436 ARM/LPC18XX ARCHITECTURE
2437 M:      Vladimir Zapolskiy <[email protected]>
2438 L:      [email protected] (moderated for non-subscribers)
2439 S:      Maintained
2440 F:      Documentation/devicetree/bindings/i2c/nxp,lpc1788-i2c.yaml
2441 F:      arch/arm/boot/dts/nxp/lpc/lpc43*
2442 F:      drivers/i2c/busses/i2c-lpc2k.c
2443 F:      drivers/memory/pl172.c
2444 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2445 F:      drivers/rtc/rtc-lpc24xx.c
2446 N:      lpc18xx
2447
2448 ARM/LPC32XX SOC SUPPORT
2449 M:      Vladimir Zapolskiy <[email protected]>
2450 L:      [email protected] (moderated for non-subscribers)
2451 S:      Maintained
2452 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2453 F:      Documentation/devicetree/bindings/i2c/nxp,pnx-i2c.yaml
2454 F:      arch/arm/boot/dts/nxp/lpc/lpc32*
2455 F:      arch/arm/mach-lpc32xx/
2456 F:      drivers/i2c/busses/i2c-pnx.c
2457 F:      drivers/net/ethernet/nxp/lpc_eth.c
2458 F:      drivers/usb/host/ohci-nxp.c
2459 F:      drivers/watchdog/pnx4008_wdt.c
2460 N:      lpc32xx
2461
2462 ARM/Marvell Dove/MV78xx0/Orion SOC support
2463 M:      Andrew Lunn <[email protected]>
2464 M:      Sebastian Hesselbarth <[email protected]>
2465 M:      Gregory Clement <[email protected]>
2466 L:      [email protected] (moderated for non-subscribers)
2467 S:      Maintained
2468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2469 F:      Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2470 F:      Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2471 F:      Documentation/devicetree/bindings/soc/dove/
2472 F:      arch/arm/boot/dts/marvell/dove*
2473 F:      arch/arm/boot/dts/marvell/orion5x*
2474 F:      arch/arm/mach-dove/
2475 F:      arch/arm/mach-mv78xx0/
2476 F:      arch/arm/mach-orion5x/
2477 F:      arch/arm/plat-orion/
2478 F:      drivers/bus/mvebu-mbus.c
2479 F:      drivers/soc/dove/
2480
2481 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2482 M:      Andrew Lunn <[email protected]>
2483 M:      Gregory Clement <[email protected]>
2484 M:      Sebastian Hesselbarth <[email protected]>
2485 L:      [email protected] (moderated for non-subscribers)
2486 S:      Maintained
2487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2488 F:      Documentation/devicetree/bindings/arm/marvell/
2489 F:      arch/arm/boot/dts/marvell/armada*
2490 F:      arch/arm/boot/dts/marvell/kirkwood*
2491 F:      arch/arm/configs/mvebu_*_defconfig
2492 F:      arch/arm/mach-mvebu/
2493 F:      arch/arm64/boot/dts/marvell/
2494 F:      drivers/clk/mvebu/
2495 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2496 F:      drivers/cpufreq/armada-8k-cpufreq.c
2497 F:      drivers/cpufreq/mvebu-cpufreq.c
2498 F:      drivers/irqchip/irq-armada-370-xp.c
2499 F:      drivers/irqchip/irq-mvebu-*
2500 F:      drivers/pinctrl/mvebu/
2501 F:      drivers/rtc/rtc-armada38x.c
2502
2503 ARM/Mediatek RTC DRIVER
2504 M:      Eddie Huang <[email protected]>
2505 M:      Sean Wang <[email protected]>
2506 L:      [email protected] (moderated for non-subscribers)
2507 L:      [email protected] (moderated for non-subscribers)
2508 S:      Maintained
2509 F:      Documentation/devicetree/bindings/rtc/mediatek,mt2712-rtc.yaml
2510 F:      Documentation/devicetree/bindings/rtc/mediatek,mt7622-rtc.yaml
2511 F:      drivers/rtc/rtc-mt2712.c
2512 F:      drivers/rtc/rtc-mt6397.c
2513 F:      drivers/rtc/rtc-mt7622.c
2514
2515 ARM/Mediatek SoC support
2516 M:      Matthias Brugger <[email protected]>
2517 M:      AngeloGioacchino Del Regno <[email protected]>
2518 L:      [email protected]
2519 L:      [email protected] (moderated for non-subscribers)
2520 L:      [email protected] (moderated for non-subscribers)
2521 S:      Maintained
2522 W:      https://mtk.wiki.kernel.org/
2523 C:      irc://irc.libera.chat/linux-mediatek
2524 F:      arch/arm/boot/dts/mediatek/
2525 F:      arch/arm/mach-mediatek/
2526 F:      arch/arm64/boot/dts/mediatek/
2527 F:      drivers/soc/mediatek/
2528 N:      mtk
2529 N:      mt[2678]
2530 K:      mediatek
2531
2532 ARM/Mediatek USB3 PHY DRIVER
2533 M:      Chunfeng Yun <[email protected]>
2534 L:      [email protected] (moderated for non-subscribers)
2535 L:      [email protected] (moderated for non-subscribers)
2536 S:      Maintained
2537 F:      Documentation/devicetree/bindings/phy/mediatek,*
2538 F:      drivers/phy/mediatek/
2539
2540 ARM/MICROCHIP (ARM64) SoC support
2541 M:      Conor Dooley <[email protected]>
2542 M:      Nicolas Ferre <[email protected]>
2543 M:      Claudiu Beznea <[email protected]>
2544 L:      [email protected] (moderated for non-subscribers)
2545 S:      Supported
2546 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2547 F:      arch/arm64/boot/dts/microchip/
2548
2549 ARM/Microchip (AT91) SoC support
2550 M:      Nicolas Ferre <[email protected]>
2551 M:      Alexandre Belloni <[email protected]>
2552 M:      Claudiu Beznea <[email protected]>
2553 L:      [email protected] (moderated for non-subscribers)
2554 S:      Supported
2555 W:      http://www.linux4sam.org
2556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2557 F:      arch/arm/boot/dts/microchip/
2558 F:      arch/arm/include/debug/at91.S
2559 F:      arch/arm/mach-at91/
2560 F:      drivers/memory/atmel*
2561 F:      drivers/watchdog/sama5d4_wdt.c
2562 F:      include/soc/at91/
2563 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2564 N:      at91
2565 N:      atmel
2566
2567 ARM/Microchip Sparx5 SoC support
2568 M:      Lars Povlsen <[email protected]>
2569 M:      Steen Hegelund <[email protected]>
2570 M:      Daniel Machon <[email protected]>
2571 M:      [email protected]
2572 L:      [email protected] (moderated for non-subscribers)
2573 S:      Supported
2574 F:      arch/arm64/boot/dts/microchip/sparx*
2575 F:      drivers/net/ethernet/microchip/vcap/
2576 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2577 N:      sparx5
2578
2579 ARM/MILBEAUT ARCHITECTURE
2580 M:      Taichi Sugaya <[email protected]>
2581 M:      Takao Orito <[email protected]>
2582 L:      [email protected] (moderated for non-subscribers)
2583 S:      Maintained
2584 F:      arch/arm/boot/dts/socionext/milbeaut*
2585 F:      arch/arm/mach-milbeaut/
2586 N:      milbeaut
2587
2588 ARM/MOXA ART SOC
2589 M:      Krzysztof Kozlowski <[email protected]>
2590 L:      [email protected] (moderated for non-subscribers)
2591 S:      Odd Fixes
2592 F:      Documentation/devicetree/bindings/arm/moxart.yaml
2593 F:      Documentation/devicetree/bindings/clock/moxa,moxart-clock.txt
2594 F:      arch/arm/boot/dts/moxa/
2595 F:      drivers/clk/clk-moxart.c
2596
2597 ARM/MStar/Sigmastar Armv7 SoC support
2598 M:      Daniel Palmer <[email protected]>
2599 M:      Romain Perier <[email protected]>
2600 L:      [email protected] (moderated for non-subscribers)
2601 S:      Maintained
2602 W:      http://linux-chenxing.org/
2603 T:      git git://github.com/linux-chenxing/linux.git
2604 F:      Documentation/devicetree/bindings/arm/mstar/*
2605 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2606 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2607 F:      arch/arm/boot/dts/sigmastar/
2608 F:      arch/arm/mach-mstar/
2609 F:      drivers/clk/mstar/
2610 F:      drivers/clocksource/timer-msc313e.c
2611 F:      drivers/gpio/gpio-msc313.c
2612 F:      drivers/rtc/rtc-msc313.c
2613 F:      drivers/watchdog/msc313e_wdt.c
2614 F:      include/dt-bindings/clock/mstar-*
2615 F:      include/dt-bindings/gpio/msc313-gpio.h
2616
2617 ARM/NOMADIK/Ux500 ARCHITECTURES
2618 M:      Linus Walleij <[email protected]>
2619 L:      [email protected] (moderated for non-subscribers)
2620 S:      Maintained
2621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2622 F:      Documentation/devicetree/bindings/arm/ste-*
2623 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2624 F:      Documentation/devicetree/bindings/arm/ux500/
2625 F:      Documentation/devicetree/bindings/gpio/st,nomadik-gpio.yaml
2626 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2627 F:      arch/arm/boot/dts/st/ste-*
2628 F:      arch/arm/mach-nomadik/
2629 F:      arch/arm/mach-ux500/
2630 F:      drivers/clk/clk-nomadik.c
2631 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2632 F:      drivers/dma/ste_dma40*
2633 F:      drivers/pmdomain/st/ste-ux500-pm-domain.c
2634 F:      drivers/gpio/gpio-nomadik.c
2635 F:      drivers/hwspinlock/u8500_hsem.c
2636 F:      drivers/i2c/busses/i2c-nomadik.c
2637 F:      drivers/iio/adc/ab8500-gpadc.c
2638 F:      drivers/mfd/ab8500*
2639 F:      drivers/mfd/abx500*
2640 F:      drivers/mfd/db8500*
2641 F:      drivers/pinctrl/nomadik/
2642 F:      drivers/rtc/rtc-ab8500.c
2643 F:      drivers/rtc/rtc-pl031.c
2644 F:      drivers/soc/ux500/
2645
2646 ARM/NUVOTON MA35 ARCHITECTURE
2647 M:      Jacky Huang <[email protected]>
2648 M:      Shan-Chun Hung <[email protected]>
2649 L:      [email protected] (moderated for non-subscribers)
2650 S:      Supported
2651 F:      Documentation/devicetree/bindings/*/*/*ma35*
2652 F:      Documentation/devicetree/bindings/*/*ma35*
2653 F:      arch/arm64/boot/dts/nuvoton/*ma35*
2654 F:      drivers/*/*/*ma35*
2655 F:      drivers/*/*ma35*
2656 K:      ma35d1
2657
2658 ARM/NUVOTON NPCM ARCHITECTURE
2659 M:      Avi Fishman <[email protected]>
2660 M:      Tomer Maimon <[email protected]>
2661 M:      Tali Perry <[email protected]>
2662 R:      Patrick Venture <[email protected]>
2663 R:      Nancy Yuen <[email protected]>
2664 R:      Benjamin Fair <[email protected]>
2665 L:      [email protected] (moderated for non-subscribers)
2666 S:      Supported
2667 F:      Documentation/devicetree/bindings/*/*/*npcm*
2668 F:      Documentation/devicetree/bindings/*/*npcm*
2669 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2670 F:      arch/arm/boot/dts/nuvoton/nuvoton-npcm*
2671 F:      arch/arm/mach-npcm/
2672 F:      arch/arm64/boot/dts/nuvoton/
2673 F:      drivers/*/*/*npcm*
2674 F:      drivers/*/*npcm*
2675 F:      drivers/rtc/rtc-nct3018y.c
2676 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2677 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2678
2679 ARM/NUVOTON NPCM VIDEO ENGINE DRIVER
2680 M:      Joseph Liu <[email protected]>
2681 M:      Marvin Lin <[email protected]>
2682 L:      [email protected]
2683 L:      [email protected] (moderated for non-subscribers)
2684 S:      Maintained
2685 F:      Documentation/devicetree/bindings/media/nuvoton,npcm-ece.yaml
2686 F:      Documentation/devicetree/bindings/media/nuvoton,npcm-vcd.yaml
2687 F:      Documentation/userspace-api/media/drivers/npcm-video.rst
2688 F:      drivers/media/platform/nuvoton/
2689 F:      include/uapi/linux/npcm-video.h
2690
2691 ARM/NUVOTON WPCM450 ARCHITECTURE
2692 M:      Jonathan Neuschäfer <[email protected]>
2693 L:      [email protected] (moderated for non-subscribers)
2694 S:      Maintained
2695 W:      https://github.com/neuschaefer/wpcm450/wiki
2696 F:      Documentation/devicetree/bindings/*/*wpcm*
2697 F:      arch/arm/boot/dts/nuvoton/nuvoton-wpcm450*
2698 F:      arch/arm/configs/wpcm450_defconfig
2699 F:      arch/arm/mach-npcm/wpcm450.c
2700 F:      drivers/*/*/*wpcm*
2701 F:      drivers/*/*wpcm*
2702
2703 ARM/NXP S32G ARCHITECTURE
2704 R:      Chester Lin <[email protected]>
2705 R:      Matthias Brugger <[email protected]>
2706 R:      Ghennadi Procopciuc <[email protected]>
2707 L:      NXP S32 Linux Team <[email protected]>
2708 L:      [email protected] (moderated for non-subscribers)
2709 S:      Maintained
2710 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2711 F:      drivers/pinctrl/nxp/
2712
2713 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2714 M:      Alexander Clouter <[email protected]>
2715 L:      [email protected] (moderated for non-subscribers)
2716 S:      Maintained
2717 W:      http://www.digriz.org.uk/ts78xx/kernel
2718 F:      arch/arm/mach-orion5x/ts78xx-*
2719
2720 ARM/QUALCOMM CHROMEBOOK SUPPORT
2721 R:      [email protected]
2722 F:      arch/arm64/boot/dts/qcom/sc7180*
2723 F:      arch/arm64/boot/dts/qcom/sc7280*
2724 F:      arch/arm64/boot/dts/qcom/sdm845-cheza*
2725
2726 ARM/QUALCOMM MAILING LIST
2727 L:      [email protected]
2728 F:      Documentation/devicetree/bindings/*/qcom*
2729 F:      Documentation/devicetree/bindings/soc/qcom/
2730 F:      arch/arm/boot/dts/qcom/
2731 F:      arch/arm/configs/qcom_defconfig
2732 F:      arch/arm/mach-qcom/
2733 F:      arch/arm64/boot/dts/qcom/
2734 F:      drivers/*/*/pm8???-*
2735 F:      drivers/*/*/qcom*
2736 F:      drivers/*/*/qcom/
2737 F:      drivers/*/qcom*
2738 F:      drivers/*/qcom/
2739 F:      drivers/bluetooth/btqcomsmd.c
2740 F:      drivers/clocksource/timer-qcom.c
2741 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2742 F:      drivers/extcon/extcon-qcom*
2743 F:      drivers/i2c/busses/i2c-qcom-geni.c
2744 F:      drivers/i2c/busses/i2c-qup.c
2745 F:      drivers/iommu/msm*
2746 F:      drivers/mfd/ssbi.c
2747 F:      drivers/mmc/host/mmci_qcom*
2748 F:      drivers/mmc/host/sdhci-msm.c
2749 F:      drivers/pci/controller/dwc/pcie-qcom.c
2750 F:      drivers/phy/qualcomm/
2751 F:      drivers/power/*/msm*
2752 F:      drivers/reset/reset-qcom-*
2753 F:      drivers/rtc/rtc-pm8xxx.c
2754 F:      drivers/spi/spi-geni-qcom.c
2755 F:      drivers/spi/spi-qcom-qspi.c
2756 F:      drivers/spi/spi-qup.c
2757 F:      drivers/tty/serial/msm_serial.c
2758 F:      drivers/ufs/host/ufs-qcom*
2759 F:      drivers/usb/dwc3/dwc3-qcom.c
2760 F:      include/dt-bindings/*/qcom*
2761 F:      include/linux/*/qcom*
2762 F:      include/linux/soc/qcom/
2763
2764 ARM/QUALCOMM SUPPORT
2765 M:      Bjorn Andersson <[email protected]>
2766 M:      Konrad Dybcio <[email protected]>
2767 L:      [email protected]
2768 S:      Maintained
2769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2770 F:      Documentation/devicetree/bindings/arm/qcom-soc.yaml
2771 F:      Documentation/devicetree/bindings/arm/qcom.yaml
2772 F:      Documentation/devicetree/bindings/bus/qcom*
2773 F:      Documentation/devicetree/bindings/cache/qcom,llcc.yaml
2774 F:      Documentation/devicetree/bindings/firmware/qcom,scm.yaml
2775 F:      Documentation/devicetree/bindings/reserved-memory/qcom
2776 F:      Documentation/devicetree/bindings/soc/qcom/
2777 F:      arch/arm/boot/dts/qcom/
2778 F:      arch/arm/configs/qcom_defconfig
2779 F:      arch/arm/mach-qcom/
2780 F:      arch/arm64/boot/dts/qcom/
2781 F:      drivers/bus/qcom*
2782 F:      drivers/firmware/qcom/
2783 F:      drivers/soc/qcom/
2784 F:      include/dt-bindings/arm/qcom,ids.h
2785 F:      include/dt-bindings/firmware/qcom,scm.h
2786 F:      include/dt-bindings/soc/qcom*
2787 F:      include/linux/firmware/qcom
2788 F:      include/linux/soc/qcom/
2789 F:      include/soc/qcom/
2790
2791 ARM/RDA MICRO ARCHITECTURE
2792 M:      Manivannan Sadhasivam <[email protected]>
2793 L:      [email protected] (moderated for non-subscribers)
2794 L:      [email protected] (moderated for non-subscribers)
2795 S:      Maintained
2796 F:      Documentation/devicetree/bindings/arm/rda.yaml
2797 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2798 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2799 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2800 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2801 F:      arch/arm/boot/dts/unisoc/
2802 F:      drivers/clocksource/timer-rda.c
2803 F:      drivers/gpio/gpio-rda.c
2804 F:      drivers/irqchip/irq-rda-intc.c
2805 F:      drivers/tty/serial/rda-uart.c
2806
2807 ARM/REALTEK ARCHITECTURE
2808 M:      Andreas Färber <[email protected]>
2809 L:      [email protected] (moderated for non-subscribers)
2810 L:      [email protected] (moderated for non-subscribers)
2811 S:      Maintained
2812 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2813 F:      arch/arm/boot/dts/realtek/
2814 F:      arch/arm/mach-realtek/
2815 F:      arch/arm64/boot/dts/realtek/
2816
2817 ARM/RISC-V/RENESAS ARCHITECTURE
2818 M:      Geert Uytterhoeven <[email protected]>
2819 M:      Magnus Damm <[email protected]>
2820 L:      [email protected]
2821 S:      Supported
2822 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2823 C:      irc://irc.libera.chat/renesas-soc
2824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2825 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2826 F:      Documentation/devicetree/bindings/soc/renesas/
2827 F:      arch/arm/boot/dts/renesas/
2828 F:      arch/arm/configs/shmobile_defconfig
2829 F:      arch/arm/include/debug/renesas-scif.S
2830 F:      arch/arm/mach-shmobile/
2831 F:      arch/arm64/boot/dts/renesas/
2832 F:      arch/riscv/boot/dts/renesas/
2833 F:      drivers/pmdomain/renesas/
2834 F:      drivers/soc/renesas/
2835 F:      include/linux/soc/renesas/
2836 K:      \brenesas,
2837
2838 ARM/RISCPC ARCHITECTURE
2839 M:      Russell King <[email protected]>
2840 L:      [email protected] (moderated for non-subscribers)
2841 S:      Maintained
2842 W:      http://www.armlinux.org.uk/
2843 F:      arch/arm/include/asm/hardware/ioc.h
2844 F:      arch/arm/include/asm/hardware/iomd.h
2845 F:      arch/arm/include/asm/hardware/memc.h
2846 F:      arch/arm/mach-rpc/
2847 F:      drivers/net/ethernet/8390/etherh.c
2848 F:      drivers/net/ethernet/i825xx/ether1*
2849 F:      drivers/net/ethernet/seeq/ether3*
2850 F:      drivers/scsi/arm/
2851
2852 ARM/Rockchip SoC support
2853 M:      Heiko Stuebner <[email protected]>
2854 L:      [email protected] (moderated for non-subscribers)
2855 L:      [email protected]
2856 S:      Maintained
2857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2858 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2859 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2860 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2861 F:      arch/arm/boot/dts/rockchip/
2862 F:      arch/arm/mach-rockchip/
2863 F:      drivers/*/*/*rockchip*
2864 F:      drivers/*/*rockchip*
2865 F:      drivers/clk/rockchip/
2866 F:      drivers/i2c/busses/i2c-rk3x.c
2867 F:      sound/soc/rockchip/
2868 N:      rockchip
2869
2870 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2871 M:      Krzysztof Kozlowski <[email protected]>
2872 R:      Alim Akhtar <[email protected]>
2873 L:      [email protected] (moderated for non-subscribers)
2874 L:      [email protected]
2875 S:      Maintained
2876 P:      Documentation/process/maintainer-soc-clean-dts.rst
2877 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2878 B:      mailto:[email protected]
2879 C:      irc://irc.libera.chat/linux-exynos
2880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2881 F:      Documentation/arch/arm/samsung/
2882 F:      Documentation/devicetree/bindings/arm/samsung/
2883 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2884 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2885 F:      Documentation/devicetree/bindings/soc/samsung/
2886 F:      arch/arm/boot/dts/samsung/
2887 F:      arch/arm/mach-exynos*/
2888 F:      arch/arm/mach-s3c/
2889 F:      arch/arm/mach-s5p*/
2890 F:      arch/arm64/boot/dts/exynos/
2891 F:      drivers/*/*/*s3c24*
2892 F:      drivers/*/*s3c24*
2893 F:      drivers/*/*s3c64xx*
2894 F:      drivers/*/*s5pv210*
2895 F:      drivers/clocksource/samsung_pwm_timer.c
2896 F:      drivers/memory/samsung/
2897 F:      drivers/pwm/pwm-samsung.c
2898 F:      drivers/soc/samsung/
2899 F:      drivers/tty/serial/samsung*
2900 F:      include/clocksource/samsung_pwm.h
2901 F:      include/linux/platform_data/*s3c*
2902 F:      include/linux/serial_s3c.h
2903 F:      include/linux/soc/samsung/
2904 N:      exynos
2905 N:      s3c64xx
2906 N:      s5pv210
2907
2908 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2909 M:      Łukasz Stelmach <[email protected]>
2910 L:      [email protected] (moderated for non-subscribers)
2911 L:      [email protected]
2912 S:      Maintained
2913 F:      drivers/media/platform/samsung/s5p-g2d/
2914
2915 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2916 M:      Marek Szyprowski <[email protected]>
2917 L:      [email protected]
2918 L:      [email protected]
2919 S:      Maintained
2920 F:      Documentation/devicetree/bindings/media/cec/samsung,s5p-cec.yaml
2921 F:      drivers/media/cec/platform/s5p/
2922
2923 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2924 M:      Andrzej Pietrasiewicz <[email protected]>
2925 M:      Jacek Anaszewski <[email protected]>
2926 M:      Sylwester Nawrocki <[email protected]>
2927 L:      [email protected] (moderated for non-subscribers)
2928 L:      [email protected]
2929 S:      Maintained
2930 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2931 F:      drivers/media/platform/samsung/s5p-jpeg/
2932
2933 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2934 M:      Marek Szyprowski <[email protected]>
2935 M:      Andrzej Hajda <[email protected]>
2936 L:      [email protected] (moderated for non-subscribers)
2937 L:      [email protected]
2938 S:      Maintained
2939 F:      Documentation/devicetree/bindings/media/samsung,s5p-mfc.yaml
2940 F:      drivers/media/platform/samsung/s5p-mfc/
2941
2942 ARM/SOCFPGA ARCHITECTURE
2943 M:      Dinh Nguyen <[email protected]>
2944 S:      Maintained
2945 W:      http://www.rocketboards.org
2946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2947 F:      arch/arm/boot/dts/intel/socfpga/
2948 F:      arch/arm/configs/socfpga_defconfig
2949 F:      arch/arm/mach-socfpga/
2950 F:      arch/arm64/boot/dts/altera/
2951 F:      arch/arm64/boot/dts/intel/
2952
2953 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2954 M:      Dinh Nguyen <[email protected]>
2955 S:      Maintained
2956 F:      drivers/clk/socfpga/
2957
2958 ARM/SOCFPGA EDAC SUPPORT
2959 M:      Dinh Nguyen <[email protected]>
2960 S:      Maintained
2961 F:      drivers/edac/altera_edac.[ch]
2962
2963 ARM/SPREADTRUM SoC SUPPORT
2964 M:      Orson Zhai <[email protected]>
2965 M:      Baolin Wang <[email protected]>
2966 R:      Chunyan Zhang <[email protected]>
2967 S:      Maintained
2968 F:      arch/arm64/boot/dts/sprd
2969 N:      sprd
2970 N:      sc27xx
2971 N:      sc2731
2972
2973 ARM/STI ARCHITECTURE
2974 M:      Patrice Chotard <[email protected]>
2975 L:      [email protected] (moderated for non-subscribers)
2976 S:      Maintained
2977 W:      http://www.stlinux.com
2978 F:      Documentation/devicetree/bindings/i2c/st,sti-i2c.yaml
2979 F:      Documentation/devicetree/bindings/spi/st,ssc-spi.yaml
2980 F:      arch/arm/boot/dts/st/sti*
2981 F:      arch/arm/mach-sti/
2982 F:      drivers/ata/ahci_st.c
2983 F:      drivers/char/hw_random/st-rng.c
2984 F:      drivers/clocksource/arm_global_timer.c
2985 F:      drivers/clocksource/clksrc_st_lpc.c
2986 F:      drivers/cpufreq/sti-cpufreq.c
2987 F:      drivers/dma/st_fdma*
2988 F:      drivers/i2c/busses/i2c-st.c
2989 F:      drivers/media/platform/st/sti/c8sectpfe/
2990 F:      drivers/media/rc/st_rc.c
2991 F:      drivers/mmc/host/sdhci-st.c
2992 F:      drivers/phy/st/phy-miphy28lp.c
2993 F:      drivers/phy/st/phy-stih407-usb.c
2994 F:      drivers/pinctrl/pinctrl-st.c
2995 F:      drivers/remoteproc/st_remoteproc.c
2996 F:      drivers/remoteproc/st_slim_rproc.c
2997 F:      drivers/reset/sti/
2998 F:      drivers/rtc/rtc-st-lpc.c
2999 F:      drivers/tty/serial/st-asc.c
3000 F:      drivers/usb/dwc3/dwc3-st.c
3001 F:      drivers/usb/host/ehci-st.c
3002 F:      drivers/usb/host/ohci-st.c
3003 F:      drivers/watchdog/st_lpc_wdt.c
3004 F:      include/linux/remoteproc/st_slim_rproc.h
3005
3006 ARM/STM32 ARCHITECTURE
3007 M:      Maxime Coquelin <[email protected]>
3008 M:      Alexandre Torgue <[email protected]>
3009 L:      [email protected] (moderated for non-subscribers)
3010 L:      [email protected] (moderated for non-subscribers)
3011 S:      Maintained
3012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
3013 F:      arch/arm/boot/dts/st/stm32*
3014 F:      arch/arm/mach-stm32/
3015 F:      arch/arm64/boot/dts/st/
3016 F:      drivers/clocksource/armv7m_systick.c
3017 N:      stm32
3018 N:      stm
3019
3020 ARM/SUNPLUS SP7021 SOC SUPPORT
3021 M:      Qin Jian <[email protected]>
3022 L:      [email protected] (moderated for mon-subscribers)
3023 S:      Maintained
3024 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
3025 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
3026 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
3027 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
3028 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
3029 F:      arch/arm/boot/dts/sunplus/
3030 F:      arch/arm/configs/sp7021_*defconfig
3031 F:      drivers/clk/clk-sp7021.c
3032 F:      drivers/irqchip/irq-sp7021-intc.c
3033 F:      drivers/reset/reset-sunplus.c
3034 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
3035 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
3036
3037 ARM/Synaptics SoC support
3038 M:      Jisheng Zhang <[email protected]>
3039 M:      Sebastian Hesselbarth <[email protected]>
3040 L:      [email protected] (moderated for non-subscribers)
3041 S:      Maintained
3042 F:      arch/arm/boot/dts/synaptics/
3043 F:      arch/arm/mach-berlin/
3044 F:      arch/arm64/boot/dts/synaptics/
3045
3046 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
3047 M:      Hans Verkuil <[email protected]>
3048 L:      [email protected]
3049 L:      [email protected]
3050 S:      Maintained
3051 F:      Documentation/devicetree/bindings/media/cec/nvidia,tegra114-cec.yaml
3052 F:      drivers/media/cec/platform/tegra/
3053
3054 ARM/TESLA FSD SoC SUPPORT
3055 M:      Alim Akhtar <[email protected]>
3056 M:      [email protected]
3057 L:      [email protected] (moderated for non-subscribers)
3058 L:      [email protected]
3059 S:      Maintained
3060 F:      arch/arm64/boot/dts/tesla/
3061
3062 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
3063 M:      Santosh Shilimkar <[email protected]>
3064 L:      [email protected]
3065 S:      Maintained
3066 F:      drivers/memory/*emif*
3067
3068 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
3069 M:      Nishanth Menon <[email protected]>
3070 M:      Santosh Shilimkar <[email protected]>
3071 L:      [email protected] (moderated for non-subscribers)
3072 S:      Maintained
3073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
3074 F:      arch/arm/boot/dts/ti/keystone/
3075 F:      arch/arm/mach-keystone/
3076
3077 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
3078 M:      Santosh Shilimkar <[email protected]>
3079 L:      [email protected]
3080 S:      Maintained
3081 F:      drivers/clk/keystone/
3082
3083 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
3084 M:      Santosh Shilimkar <[email protected]>
3085 L:      [email protected] (moderated for non-subscribers)
3086 L:      [email protected]
3087 S:      Maintained
3088 F:      drivers/clocksource/timer-keystone.c
3089
3090 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
3091 M:      Santosh Shilimkar <[email protected]>
3092 L:      [email protected]
3093 S:      Maintained
3094 F:      drivers/power/reset/keystone-reset.c
3095
3096 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
3097 M:      Nishanth Menon <[email protected]>
3098 M:      Vignesh Raghavendra <[email protected]>
3099 M:      Tero Kristo <[email protected]>
3100 L:      [email protected] (moderated for non-subscribers)
3101 S:      Supported
3102 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
3103 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
3104 F:      arch/arm64/boot/dts/ti/Makefile
3105 F:      arch/arm64/boot/dts/ti/k3-*
3106
3107 ARM/TEXAS INSTRUMENTS NSPIRE ARCHITECTURE
3108 M:      Krzysztof Kozlowski <[email protected]>
3109 L:      [email protected] (moderated for non-subscribers)
3110 S:      Odd Fixes
3111 F:      Documentation/devicetree/bindings/*/*/ti,nspire*
3112 F:      Documentation/devicetree/bindings/*/ti,nspire*
3113 F:      Documentation/devicetree/bindings/arm/ti/nspire.yaml
3114 F:      arch/arm/boot/dts/nspire/
3115
3116 ARM/TOSHIBA VISCONTI ARCHITECTURE
3117 M:      Nobuhiro Iwamatsu <[email protected]>
3118 L:      [email protected] (moderated for non-subscribers)
3119 S:      Supported
3120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
3121 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
3122 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
3123 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
3124 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
3125 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
3126 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
3127 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
3128 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
3129 F:      arch/arm64/boot/dts/toshiba/
3130 F:      drivers/clk/visconti/
3131 F:      drivers/gpio/gpio-visconti.c
3132 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
3133 F:      drivers/pci/controller/dwc/pcie-visconti.c
3134 F:      drivers/pinctrl/visconti/
3135 F:      drivers/watchdog/visconti_wdt.c
3136 N:      visconti
3137
3138 ARM/UNIPHIER ARCHITECTURE
3139 M:      Kunihiko Hayashi <[email protected]>
3140 M:      Masami Hiramatsu <[email protected]>
3141 L:      [email protected] (moderated for non-subscribers)
3142 S:      Maintained
3143 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
3144 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
3145 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
3146 F:      Documentation/devicetree/bindings/soc/socionext/socionext,uniphier*.yaml
3147 F:      arch/arm/boot/dts/socionext/uniphier*
3148 F:      arch/arm/include/asm/hardware/cache-uniphier.h
3149 F:      arch/arm/mm/cache-uniphier.c
3150 F:      arch/arm64/boot/dts/socionext/uniphier*
3151 F:      drivers/bus/uniphier-system-bus.c
3152 F:      drivers/clk/uniphier/
3153 F:      drivers/dma/uniphier-mdmac.c
3154 F:      drivers/gpio/gpio-uniphier.c
3155 F:      drivers/i2c/busses/i2c-uniphier*
3156 F:      drivers/irqchip/irq-uniphier-aidet.c
3157 F:      drivers/mmc/host/uniphier-sd.c
3158 F:      drivers/pinctrl/uniphier/
3159 F:      drivers/reset/reset-uniphier.c
3160 F:      drivers/tty/serial/8250/8250_uniphier.c
3161 N:      uniphier
3162
3163 ARM/VERSATILE EXPRESS PLATFORM
3164 M:      Liviu Dudau <[email protected]>
3165 M:      Sudeep Holla <[email protected]>
3166 M:      Lorenzo Pieralisi <[email protected]>
3167 L:      [email protected] (moderated for non-subscribers)
3168 S:      Maintained
3169 N:      mps2
3170 N:      vexpress
3171 F:      arch/arm/mach-versatile/
3172 F:      arch/arm64/boot/dts/arm/
3173 F:      drivers/clocksource/timer-versatile.c
3174 X:      drivers/cpufreq/vexpress-spc-cpufreq.c
3175 X:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
3176
3177 ARM/VFP SUPPORT
3178 M:      Russell King <[email protected]>
3179 L:      [email protected] (moderated for non-subscribers)
3180 S:      Maintained
3181 W:      http://www.armlinux.org.uk/
3182 F:      arch/arm/vfp/
3183
3184 ARM/VT8500 ARM ARCHITECTURE
3185 M:      Alexey Charkov <[email protected]>
3186 M:      Krzysztof Kozlowski <[email protected]>
3187 L:      [email protected] (moderated for non-subscribers)
3188 S:      Odd Fixes
3189 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3190 F:      arch/arm/boot/dts/vt8500/
3191 F:      arch/arm/mach-vt8500/
3192 F:      drivers/clocksource/timer-vt8500.c
3193 F:      drivers/i2c/busses/i2c-viai2c-wmt.c
3194 F:      drivers/mmc/host/wmt-sdmmc.c
3195 F:      drivers/pwm/pwm-vt8500.c
3196 F:      drivers/rtc/rtc-vt8500.c
3197 F:      drivers/tty/serial/vt8500_serial.c
3198 F:      drivers/video/fbdev/vt8500lcdfb.*
3199 F:      drivers/video/fbdev/wm8505fb*
3200 F:      drivers/video/fbdev/wmt_ge_rops.*
3201
3202 ARM/ZYNQ ARCHITECTURE
3203 M:      Michal Simek <[email protected]>
3204 L:      [email protected] (moderated for non-subscribers)
3205 S:      Supported
3206 W:      http://wiki.xilinx.com
3207 T:      git https://github.com/Xilinx/linux-xlnx.git
3208 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3209 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3210 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3211 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3212 F:      Documentation/devicetree/bindings/soc/xilinx/xilinx.yaml
3213 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3214 F:      arch/arm/mach-zynq/
3215 F:      drivers/clocksource/timer-cadence-ttc.c
3216 F:      drivers/cpuidle/cpuidle-zynq.c
3217 F:      drivers/edac/synopsys_edac.c
3218 F:      drivers/i2c/busses/i2c-cadence.c
3219 F:      drivers/i2c/busses/i2c-xiic.c
3220 F:      drivers/mmc/host/sdhci-of-arasan.c
3221 N:      zynq
3222 N:      xilinx
3223
3224 ARM64 FIT SUPPORT
3225 M:      Simon Glass <[email protected]>
3226 L:      [email protected] (moderated for non-subscribers)
3227 S:      Maintained
3228 F:      arch/arm64/boot/Makefile
3229 F:      scripts/make_fit.py
3230
3231 ARM64 PLATFORM DRIVERS
3232 M:      Hans de Goede <[email protected]>
3233 M:      Ilpo Järvinen <[email protected]>
3234 R:      Bryan O'Donoghue <[email protected]>
3235 L:      [email protected]
3236 S:      Maintained
3237 Q:      https://patchwork.kernel.org/project/platform-driver-x86/list/
3238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3239 F:      drivers/platform/arm64/
3240
3241 ARM64 PORT (AARCH64 ARCHITECTURE)
3242 M:      Catalin Marinas <[email protected]>
3243 M:      Will Deacon <[email protected]>
3244 L:      [email protected] (moderated for non-subscribers)
3245 S:      Maintained
3246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3247 F:      Documentation/arch/arm64/
3248 F:      arch/arm64/
3249 F:      tools/testing/selftests/arm64/
3250 X:      arch/arm64/boot/dts/
3251
3252 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3253 M:      George McCollister <[email protected]>
3254 L:      [email protected]
3255 S:      Maintained
3256 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3257 F:      drivers/net/dsa/xrs700x/*
3258 F:      net/dsa/tag_xrs700x.c
3259
3260 AS3645A LED FLASH CONTROLLER DRIVER
3261 M:      Sakari Ailus <[email protected]>
3262 L:      [email protected]
3263 S:      Maintained
3264 F:      drivers/leds/flash/leds-as3645a.c
3265
3266 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3267 M:      Tianshu Qiu <[email protected]>
3268 L:      [email protected]
3269 S:      Maintained
3270 T:      git git://linuxtv.org/media_tree.git
3271 F:      Documentation/devicetree/bindings/media/i2c/asahi-kasei,ak7375.yaml
3272 F:      drivers/media/i2c/ak7375.c
3273
3274 ASAHI KASEI AK8974 DRIVER
3275 M:      Linus Walleij <[email protected]>
3276 L:      [email protected]
3277 S:      Supported
3278 W:      http://www.akm.com/
3279 F:      drivers/iio/magnetometer/ak8974.c
3280
3281 AOSONG AGS02MA TVOC SENSOR DRIVER
3282 M:      Anshul Dalal <[email protected]>
3283 L:      [email protected]
3284 S:      Maintained
3285 F:      Documentation/devicetree/bindings/iio/chemical/aosong,ags02ma.yaml
3286 F:      drivers/iio/chemical/ags02ma.c
3287
3288 ASC7621 HARDWARE MONITOR DRIVER
3289 M:      George Joseph <[email protected]>
3290 L:      [email protected]
3291 S:      Maintained
3292 F:      Documentation/hwmon/asc7621.rst
3293 F:      drivers/hwmon/asc7621.c
3294
3295 ASIX AX88796C SPI ETHERNET ADAPTER
3296 M:      Łukasz Stelmach <[email protected]>
3297 S:      Maintained
3298 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3299 F:      drivers/net/ethernet/asix/ax88796c_*
3300
3301 ASIX PHY DRIVER [RUST]
3302 M:      FUJITA Tomonori <[email protected]>
3303 R:      Trevor Gross <[email protected]>
3304 L:      [email protected]
3305 L:      [email protected]
3306 S:      Maintained
3307 F:      drivers/net/phy/ax88796b_rust.rs
3308
3309 ASPEED CRYPTO DRIVER
3310 M:      Neal Liu <[email protected]>
3311 L:      [email protected] (moderated for non-subscribers)
3312 S:      Maintained
3313 F:      Documentation/devicetree/bindings/crypto/aspeed,*
3314 F:      drivers/crypto/aspeed/
3315
3316 ASPEED PECI CONTROLLER
3317 M:      Iwona Winiarska <[email protected]>
3318 L:      [email protected] (moderated for non-subscribers)
3319 L:      [email protected] (moderated for non-subscribers)
3320 S:      Supported
3321 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3322 F:      drivers/peci/controller/peci-aspeed.c
3323
3324 ASPEED PINCTRL DRIVERS
3325 M:      Andrew Jeffery <[email protected]>
3326 L:      [email protected] (moderated for non-subscribers)
3327 L:      [email protected] (moderated for non-subscribers)
3328 L:      [email protected]
3329 S:      Maintained
3330 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3331 F:      drivers/pinctrl/aspeed/
3332
3333 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3334 M:      Eddie James <[email protected]>
3335 L:      [email protected] (moderated for non-subscribers)
3336 S:      Maintained
3337 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3338 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3339 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3340
3341 ASPEED SD/MMC DRIVER
3342 M:      Andrew Jeffery <[email protected]>
3343 L:      [email protected] (moderated for non-subscribers)
3344 L:      [email protected] (moderated for non-subscribers)
3345 L:      [email protected]
3346 S:      Maintained
3347 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3348 F:      drivers/mmc/host/sdhci-of-aspeed*
3349
3350 ASPEED SMC SPI DRIVER
3351 M:      Chin-Ting Kuo <[email protected]>
3352 M:      Cédric Le Goater <[email protected]>
3353 L:      [email protected] (moderated for non-subscribers)
3354 L:      [email protected] (moderated for non-subscribers)
3355 L:      [email protected]
3356 S:      Maintained
3357 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3358 F:      drivers/spi/spi-aspeed-smc.c
3359
3360 ASPEED USB UDC DRIVER
3361 M:      Neal Liu <[email protected]>
3362 L:      [email protected] (moderated for non-subscribers)
3363 S:      Maintained
3364 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3365 F:      drivers/usb/gadget/udc/aspeed_udc.c
3366
3367 ASPEED VIDEO ENGINE DRIVER
3368 M:      Eddie James <[email protected]>
3369 L:      [email protected]
3370 L:      [email protected] (moderated for non-subscribers)
3371 S:      Maintained
3372 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3373 F:      drivers/media/platform/aspeed/
3374
3375 ASUS EC HARDWARE MONITOR DRIVER
3376 M:      Eugene Shalygin <[email protected]>
3377 L:      [email protected]
3378 S:      Maintained
3379 F:      drivers/hwmon/asus-ec-sensors.c
3380
3381 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3382 M:      Corentin Chary <[email protected]>
3383 M:      Luke D. Jones <[email protected]>
3384 L:      [email protected]
3385 S:      Maintained
3386 W:      https://asus-linux.org/
3387 F:      drivers/platform/x86/asus*.c
3388 F:      drivers/platform/x86/eeepc*.c
3389
3390 ASUS TF103C DOCK DRIVER
3391 M:      Hans de Goede <[email protected]>
3392 L:      [email protected]
3393 S:      Maintained
3394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3395 F:      drivers/platform/x86/asus-tf103c-dock.c
3396
3397 ASUS ROG RYUJIN AIO HARDWARE MONITOR DRIVER
3398 M:      Aleksa Savic <[email protected]>
3399 L:      [email protected]
3400 S:      Maintained
3401 F:      drivers/hwmon/asus_rog_ryujin.c
3402
3403 ASUS WIRELESS RADIO CONTROL DRIVER
3404 M:      João Paulo Rechi Vita <[email protected]>
3405 L:      [email protected]
3406 S:      Maintained
3407 F:      drivers/platform/x86/asus-wireless.c
3408
3409 ASUS WMI HARDWARE MONITOR DRIVER
3410 M:      Ed Brindley <[email protected]>
3411 M:      Denis Pauk <[email protected]>
3412 L:      [email protected]
3413 S:      Maintained
3414 F:      drivers/hwmon/asus_wmi_sensors.c
3415
3416 ASYMMETRIC KEYS
3417 M:      David Howells <[email protected]>
3418 L:      [email protected]
3419 S:      Maintained
3420 F:      Documentation/crypto/asymmetric-keys.rst
3421 F:      crypto/asymmetric_keys/
3422 F:      include/crypto/pkcs7.h
3423 F:      include/crypto/public_key.h
3424 F:      include/linux/verification.h
3425
3426 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3427 R:      Dan Williams <[email protected]>
3428 S:      Odd fixes
3429 W:      http://sourceforge.net/projects/xscaleiop
3430 F:      Documentation/crypto/async-tx-api.rst
3431 F:      crypto/async_tx/
3432 F:      include/linux/async_tx.h
3433
3434 AT24 EEPROM DRIVER
3435 M:      Bartosz Golaszewski <[email protected]>
3436 L:      [email protected]
3437 S:      Maintained
3438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3439 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3440 F:      drivers/misc/eeprom/at24.c
3441
3442 ATA OVER ETHERNET (AOE) DRIVER
3443 M:      "Justin Sanders" <[email protected]>
3444 S:      Supported
3445 W:      http://www.openaoe.org/
3446 F:      Documentation/admin-guide/aoe/
3447 F:      drivers/block/aoe/
3448
3449 ATC260X PMIC MFD DRIVER
3450 M:      Manivannan Sadhasivam <[email protected]>
3451 M:      Cristian Ciocaltea <[email protected]>
3452 L:      [email protected]
3453 S:      Maintained
3454 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3455 F:      drivers/input/misc/atc260x-onkey.c
3456 F:      drivers/mfd/atc260*
3457 F:      drivers/power/reset/atc260x-poweroff.c
3458 F:      drivers/regulator/atc260x-regulator.c
3459 F:      include/linux/mfd/atc260x/*
3460
3461 ATHEROS 71XX/9XXX GPIO DRIVER
3462 M:      Alban Bedel <[email protected]>
3463 S:      Maintained
3464 W:      https://github.com/AlbanBedel/linux
3465 T:      git git://github.com/AlbanBedel/linux
3466 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3467 F:      drivers/gpio/gpio-ath79.c
3468
3469 ATHEROS 71XX/9XXX USB PHY DRIVER
3470 M:      Alban Bedel <[email protected]>
3471 S:      Maintained
3472 W:      https://github.com/AlbanBedel/linux
3473 T:      git git://github.com/AlbanBedel/linux
3474 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3475 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3476
3477 ATHEROS ATH GENERIC UTILITIES
3478 M:      Kalle Valo <[email protected]>
3479 L:      [email protected]
3480 S:      Supported
3481 F:      drivers/net/wireless/ath/*
3482
3483 ATHEROS ATH5K WIRELESS DRIVER
3484 M:      Jiri Slaby <[email protected]>
3485 M:      Nick Kossifidis <[email protected]>
3486 M:      Luis Chamberlain <[email protected]>
3487 L:      [email protected]
3488 S:      Maintained
3489 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3490 F:      drivers/net/wireless/ath/ath5k/
3491
3492 ATHEROS ATH6KL WIRELESS DRIVER
3493 L:      [email protected]
3494 S:      Orphan
3495 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3496 F:      drivers/net/wireless/ath/ath6kl/
3497
3498 ATI_REMOTE2 DRIVER
3499 M:      Ville Syrjala <[email protected]>
3500 S:      Maintained
3501 F:      drivers/input/misc/ati_remote2.c
3502
3503 ATK0110 HWMON DRIVER
3504 M:      Luca Tettamanti <[email protected]>
3505 L:      [email protected]
3506 S:      Maintained
3507 F:      drivers/hwmon/asus_atk0110.c
3508
3509 ATLX ETHERNET DRIVERS
3510 M:      Chris Snook <[email protected]>
3511 L:      [email protected]
3512 S:      Maintained
3513 W:      http://sourceforge.net/projects/atl1
3514 W:      http://atl1.sourceforge.net
3515 F:      drivers/net/ethernet/atheros/
3516
3517 ATM
3518 M:      Chas Williams <[email protected]>
3519 L:      [email protected] (moderated for non-subscribers)
3520 L:      [email protected]
3521 S:      Maintained
3522 W:      http://linux-atm.sourceforge.net
3523 F:      drivers/atm/
3524 F:      include/linux/atm*
3525 F:      include/linux/sonet.h
3526 F:      include/uapi/linux/atm*
3527 F:      include/uapi/linux/sonet.h
3528
3529 ATMEL MACB ETHERNET DRIVER
3530 M:      Nicolas Ferre <[email protected]>
3531 M:      Claudiu Beznea <[email protected]>
3532 S:      Supported
3533 F:      drivers/net/ethernet/cadence/
3534
3535 ATMEL MAXTOUCH DRIVER
3536 M:      Nick Dyer <[email protected]>
3537 S:      Maintained
3538 T:      git git://github.com/ndyer/linux.git
3539 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3540 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3541
3542 ATOMIC INFRASTRUCTURE
3543 M:      Will Deacon <[email protected]>
3544 M:      Peter Zijlstra <[email protected]>
3545 R:      Boqun Feng <[email protected]>
3546 R:      Mark Rutland <[email protected]>
3547 L:      [email protected]
3548 S:      Maintained
3549 F:      Documentation/atomic_*.txt
3550 F:      arch/*/include/asm/atomic*.h
3551 F:      include/*/atomic*.h
3552 F:      include/linux/refcount.h
3553 F:      scripts/atomic/
3554
3555 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3556 M:      Bradley Grove <[email protected]>
3557 L:      [email protected]
3558 S:      Supported
3559 W:      http://www.attotech.com
3560 F:      drivers/scsi/esas2r
3561
3562 ATUSB IEEE 802.15.4 RADIO DRIVER
3563 M:      Stefan Schmidt <[email protected]>
3564 L:      [email protected]
3565 S:      Maintained
3566 F:      drivers/net/ieee802154/at86rf230.h
3567 F:      drivers/net/ieee802154/atusb.c
3568 F:      drivers/net/ieee802154/atusb.h
3569
3570 AUDIT SUBSYSTEM
3571 M:      Paul Moore <[email protected]>
3572 M:      Eric Paris <[email protected]>
3573 L:      [email protected]
3574 S:      Supported
3575 W:      https://github.com/linux-audit
3576 Q:      https://patchwork.kernel.org/project/audit/list
3577 B:      mailto:[email protected]
3578 P:      https://github.com/linux-audit/audit-kernel/blob/main/README.md
3579 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3580 F:      include/asm-generic/audit_*.h
3581 F:      include/linux/audit.h
3582 F:      include/linux/audit_arch.h
3583 F:      include/uapi/linux/audit.h
3584 F:      kernel/audit*
3585 F:      lib/*audit.c
3586 K:      \baudit_[a-z_0-9]\+\b
3587
3588 AUXILIARY BUS DRIVER
3589 M:      Greg Kroah-Hartman <[email protected]>
3590 R:      Dave Ertman <[email protected]>
3591 R:      Ira Weiny <[email protected]>
3592 S:      Supported
3593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3594 F:      Documentation/driver-api/auxiliary_bus.rst
3595 F:      drivers/base/auxiliary.c
3596 F:      include/linux/auxiliary_bus.h
3597
3598 AUXILIARY DISPLAY DRIVERS
3599 M:      Andy Shevchenko <[email protected]>
3600 R:      Geert Uytterhoeven <[email protected]>
3601 S:      Odd Fixes
3602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-auxdisplay.git
3603 F:      Documentation/devicetree/bindings/auxdisplay/
3604 F:      drivers/auxdisplay/
3605 F:      include/linux/cfag12864b.h
3606 F:      include/uapi/linux/map_to_14segment.h
3607 F:      include/uapi/linux/map_to_7segment.h
3608
3609 AVAGO APDS9306 AMBIENT LIGHT SENSOR DRIVER
3610 M:      Subhajit Ghosh <[email protected]>
3611 L:      [email protected]
3612 S:      Maintained
3613 F:      Documentation/devicetree/bindings/iio/light/avago,apds9300.yaml
3614 F:      drivers/iio/light/apds9306.c
3615
3616 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3617 M:      Andreas Klinger <[email protected]>
3618 L:      [email protected]
3619 S:      Maintained
3620 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3621 F:      drivers/iio/adc/hx711.c
3622
3623 AX.25 NETWORK LAYER
3624 L:      [email protected]
3625 S:      Orphan
3626 W:      https://linux-ax25.in-berlin.de
3627 F:      include/net/ax25.h
3628 F:      include/uapi/linux/ax25.h
3629 F:      net/ax25/
3630
3631 AXENTIA ARM DEVICES
3632 M:      Peter Rosin <[email protected]>
3633 L:      [email protected] (moderated for non-subscribers)
3634 S:      Maintained
3635 F:      arch/arm/boot/dts/microchip/at91-linea.dtsi
3636 F:      arch/arm/boot/dts/microchip/at91-natte.dtsi
3637 F:      arch/arm/boot/dts/microchip/at91-nattis-2-natte-2.dts
3638 F:      arch/arm/boot/dts/microchip/at91-tse850-3.dts
3639
3640 AXENTIA ASOC DRIVERS
3641 M:      Peter Rosin <[email protected]>
3642 L:      [email protected] (moderated for non-subscribers)
3643 S:      Maintained
3644 F:      Documentation/devicetree/bindings/sound/axentia,*
3645 F:      sound/soc/atmel/tse850-pcm5142.c
3646
3647 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3648 M:      Nuno Sá <[email protected]>
3649 L:      [email protected]
3650 S:      Supported
3651 W:      https://ez.analog.com/linux-software-drivers
3652 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3653 F:      drivers/hwmon/axi-fan-control.c
3654
3655 AXI SPI ENGINE
3656 M:      Michael Hennerich <[email protected]>
3657 M:      Nuno Sá <[email protected]>
3658 R:      David Lechner <[email protected]>
3659 L:      [email protected]
3660 S:      Supported
3661 W:      https://ez.analog.com/linux-software-drivers
3662 F:      Documentation/devicetree/bindings/spi/adi,axi-spi-engine.yaml
3663 F:      drivers/spi/spi-axi-spi-engine.c
3664
3665 AXI PWM GENERATOR
3666 M:      Michael Hennerich <[email protected]>
3667 M:      Nuno Sá <[email protected]>
3668 L:      [email protected]
3669 S:      Supported
3670 W:      https://ez.analog.com/linux-software-drivers
3671 F:      Documentation/devicetree/bindings/pwm/adi,axi-pwmgen.yaml
3672 F:      drivers/pwm/pwm-axi-pwmgen.c
3673
3674 AXXIA I2C CONTROLLER
3675 M:      Krzysztof Adamski <[email protected]>
3676 L:      [email protected]
3677 S:      Maintained
3678 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3679 F:      drivers/i2c/busses/i2c-axxia.c
3680
3681 AZ6007 DVB DRIVER
3682 M:      Mauro Carvalho Chehab <[email protected]>
3683 L:      [email protected]
3684 S:      Maintained
3685 W:      https://linuxtv.org
3686 T:      git git://linuxtv.org/media_tree.git
3687 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3688
3689 AZTECH FM RADIO RECEIVER DRIVER
3690 M:      Hans Verkuil <[email protected]>
3691 L:      [email protected]
3692 S:      Maintained
3693 W:      https://linuxtv.org
3694 T:      git git://linuxtv.org/media_tree.git
3695 F:      drivers/media/radio/radio-aztech*
3696
3697 B43 WIRELESS DRIVER
3698 L:      [email protected]
3699 L:      [email protected]
3700 S:      Orphan
3701 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3702 F:      drivers/net/wireless/broadcom/b43/
3703
3704 B43LEGACY WIRELESS DRIVER
3705 L:      [email protected]
3706 L:      [email protected]
3707 S:      Orphan
3708 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3709 F:      drivers/net/wireless/broadcom/b43legacy/
3710
3711 BACKLIGHT CLASS/SUBSYSTEM
3712 M:      Lee Jones <[email protected]>
3713 M:      Daniel Thompson <[email protected]>
3714 M:      Jingoo Han <[email protected]>
3715 L:      [email protected]
3716 S:      Maintained
3717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3718 F:      Documentation/ABI/stable/sysfs-class-backlight
3719 F:      Documentation/ABI/testing/sysfs-class-backlight
3720 F:      Documentation/devicetree/bindings/leds/backlight
3721 F:      drivers/video/backlight/
3722 F:      include/linux/backlight.h
3723 F:      include/linux/pwm_backlight.h
3724
3725 BAIKAL-T1 PVT HARDWARE MONITOR DRIVER
3726 M:      Serge Semin <[email protected]>
3727 L:      [email protected]
3728 S:      Supported
3729 F:      Documentation/devicetree/bindings/hwmon/baikal,bt1-pvt.yaml
3730 F:      Documentation/hwmon/bt1-pvt.rst
3731 F:      drivers/hwmon/bt1-pvt.[ch]
3732
3733 BARCO P50 GPIO DRIVER
3734 M:      Santosh Kumar Yadav <[email protected]>
3735 M:      Peter Korsgaard <[email protected]>
3736 S:      Maintained
3737 F:      drivers/platform/x86/barco-p50-gpio.c
3738
3739 BATMAN ADVANCED
3740 M:      Marek Lindner <[email protected]>
3741 M:      Simon Wunderlich <[email protected]>
3742 M:      Antonio Quartulli <[email protected]>
3743 M:      Sven Eckelmann <[email protected]>
3744 L:      [email protected] (moderated for non-subscribers)
3745 S:      Maintained
3746 W:      https://www.open-mesh.org/
3747 Q:      https://patchwork.open-mesh.org/project/batman/list/
3748 B:      https://www.open-mesh.org/projects/batman-adv/issues
3749 C:      ircs://irc.hackint.org/batadv
3750 T:      git https://git.open-mesh.org/linux-merge.git
3751 F:      Documentation/networking/batman-adv.rst
3752 F:      include/uapi/linux/batadv_packet.h
3753 F:      include/uapi/linux/batman_adv.h
3754 F:      net/batman-adv/
3755
3756 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3757 M:      Thomas Sailer <[email protected]>
3758 L:      [email protected]
3759 S:      Maintained
3760 W:      http://www.baycom.org/~tom/ham/ham.html
3761 F:      drivers/net/hamradio/baycom*
3762
3763 BCACHE (BLOCK LAYER CACHE)
3764 M:      Coly Li <[email protected]>
3765 M:      Kent Overstreet <[email protected]>
3766 L:      [email protected]
3767 S:      Maintained
3768 W:      http://bcache.evilpiepirate.org
3769 C:      irc://irc.oftc.net/bcache
3770 F:      drivers/md/bcache/
3771
3772 BCACHEFS
3773 M:      Kent Overstreet <[email protected]>
3774 L:      [email protected]
3775 S:      Supported
3776 C:      irc://irc.oftc.net/bcache
3777 T:      git https://evilpiepirate.org/git/bcachefs.git
3778 F:      fs/bcachefs/
3779 F:      Documentation/filesystems/bcachefs/
3780
3781 BDISP ST MEDIA DRIVER
3782 M:      Fabien Dessenne <[email protected]>
3783 L:      [email protected]
3784 S:      Supported
3785 W:      https://linuxtv.org
3786 T:      git git://linuxtv.org/media_tree.git
3787 F:      drivers/media/platform/st/sti/bdisp
3788
3789 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3790 M:      Dariusz Marcinkiewicz <[email protected]>
3791 L:      [email protected]
3792 S:      Maintained
3793 F:      drivers/net/ethernet/ec_bhf.c
3794
3795 BEFS FILE SYSTEM
3796 M:      Luis de Bethencourt <[email protected]>
3797 M:      Salah Triki <[email protected]>
3798 S:      Maintained
3799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3800 F:      Documentation/filesystems/befs.rst
3801 F:      fs/befs/
3802
3803 BFQ I/O SCHEDULER
3804 M:      Paolo Valente <[email protected]>
3805 M:      Jens Axboe <[email protected]>
3806 L:      [email protected]
3807 S:      Maintained
3808 F:      Documentation/block/bfq-iosched.rst
3809 F:      block/bfq-*
3810
3811 BFS FILE SYSTEM
3812 M:      "Tigran A. Aivazian" <[email protected]>
3813 S:      Maintained
3814 F:      Documentation/filesystems/bfs.rst
3815 F:      fs/bfs/
3816 F:      include/uapi/linux/bfs_fs.h
3817
3818 BINMAN
3819 M:      Simon Glass <[email protected]>
3820 S:      Supported
3821 F:      Documentation/devicetree/bindings/mtd/partitions/binman*
3822
3823 BITMAP API
3824 M:      Yury Norov <[email protected]>
3825 R:      Rasmus Villemoes <[email protected]>
3826 S:      Maintained
3827 F:      include/linux/bitfield.h
3828 F:      include/linux/bitmap-str.h
3829 F:      include/linux/bitmap.h
3830 F:      include/linux/bits.h
3831 F:      include/linux/cpumask.h
3832 F:      include/linux/cpumask_types.h
3833 F:      include/linux/find.h
3834 F:      include/linux/nodemask.h
3835 F:      include/linux/nodemask_types.h
3836 F:      include/vdso/bits.h
3837 F:      lib/bitmap-str.c
3838 F:      lib/bitmap.c
3839 F:      lib/cpumask.c
3840 F:      lib/cpumask_kunit.c
3841 F:      lib/find_bit.c
3842 F:      lib/find_bit_benchmark.c
3843 F:      lib/test_bitmap.c
3844 F:      tools/include/linux/bitfield.h
3845 F:      tools/include/linux/bitmap.h
3846 F:      tools/include/linux/bits.h
3847 F:      tools/include/linux/find.h
3848 F:      tools/include/vdso/bits.h
3849 F:      tools/lib/bitmap.c
3850 F:      tools/lib/find_bit.c
3851
3852 BITOPS API
3853 M:      Yury Norov <[email protected]>
3854 R:      Rasmus Villemoes <[email protected]>
3855 S:      Maintained
3856 F:      arch/*/include/asm/bitops.h
3857 F:      arch/*/include/asm/bitops_32.h
3858 F:      arch/*/include/asm/bitops_64.h
3859 F:      arch/*/lib/bitops.c
3860 F:      include/asm-generic/bitops
3861 F:      include/asm-generic/bitops.h
3862 F:      include/linux/bitops.h
3863 F:      lib/test_bitops.c
3864 F:      tools/*/bitops*
3865
3866 BLINKM RGB LED DRIVER
3867 M:      Jan-Simon Moeller <[email protected]>
3868 S:      Maintained
3869 F:      drivers/leds/leds-blinkm.c
3870
3871 BLOCK LAYER
3872 M:      Jens Axboe <[email protected]>
3873 L:      [email protected]
3874 S:      Maintained
3875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3876 F:      Documentation/ABI/stable/sysfs-block
3877 F:      Documentation/block/
3878 F:      block/
3879 F:      drivers/block/
3880 F:      include/linux/bio.h
3881 F:      include/linux/blk*
3882 F:      kernel/trace/blktrace.c
3883 F:      lib/sbitmap.c
3884
3885 BLOCK LAYER DEVICE DRIVER API [RUST]
3886 M:      Andreas Hindborg <[email protected]>
3887 R:      Boqun Feng <[email protected]>
3888 L:      [email protected]
3889 L:      [email protected]
3890 S:      Supported
3891 W:      https://rust-for-linux.com
3892 B:      https://github.com/Rust-for-Linux/linux/issues
3893 C:      https://rust-for-linux.zulipchat.com/#narrow/stream/Block
3894 T:      git https://github.com/Rust-for-Linux/linux.git rust-block-next
3895 F:      drivers/block/rnull.rs
3896 F:      rust/kernel/block.rs
3897 F:      rust/kernel/block/
3898
3899 BLOCK2MTD DRIVER
3900 M:      Joern Engel <[email protected]>
3901 L:      [email protected]
3902 S:      Maintained
3903 F:      drivers/mtd/devices/block2mtd.c
3904
3905 BLUETOOTH DRIVERS
3906 M:      Marcel Holtmann <[email protected]>
3907 M:      Luiz Augusto von Dentz <[email protected]>
3908 L:      [email protected]
3909 S:      Supported
3910 W:      http://www.bluez.org/
3911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3913 F:      Documentation/devicetree/bindings/net/bluetooth/
3914 F:      drivers/bluetooth/
3915
3916 BLUETOOTH SUBSYSTEM
3917 M:      Marcel Holtmann <[email protected]>
3918 M:      Johan Hedberg <[email protected]>
3919 M:      Luiz Augusto von Dentz <[email protected]>
3920 L:      [email protected]
3921 S:      Supported
3922 W:      http://www.bluez.org/
3923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3925 F:      include/net/bluetooth/
3926 F:      net/bluetooth/
3927
3928 BONDING DRIVER
3929 M:      Jay Vosburgh <[email protected]>
3930 M:      Andy Gospodarek <[email protected]>
3931 L:      [email protected]
3932 S:      Maintained
3933 F:      Documentation/networking/bonding.rst
3934 F:      drivers/net/bonding/
3935 F:      include/net/bond*
3936 F:      include/uapi/linux/if_bonding.h
3937 F:      tools/testing/selftests/drivers/net/bonding/
3938
3939 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3940 M:      Dan Robertson <[email protected]>
3941 L:      [email protected]
3942 S:      Maintained
3943 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3944 F:      drivers/iio/accel/bma400*
3945
3946 BOSCH SENSORTEC BMI323 IMU IIO DRIVER
3947 M:      Jagath Jog J <[email protected]>
3948 L:      [email protected]
3949 S:      Maintained
3950 F:      Documentation/devicetree/bindings/iio/imu/bosch,bmi323.yaml
3951 F:      drivers/iio/imu/bmi323/
3952
3953 BPF JIT for ARC
3954 M:      Shahab Vahedi <[email protected]>
3955 L:      [email protected]
3956 S:      Maintained
3957 F:      arch/arc/net/
3958
3959 BPF JIT for ARM
3960 M:      Russell King <[email protected]>
3961 M:      Puranjay Mohan <[email protected]>
3962 L:      [email protected]
3963 S:      Maintained
3964 F:      arch/arm/net/
3965
3966 BPF JIT for ARM64
3967 M:      Daniel Borkmann <[email protected]>
3968 M:      Alexei Starovoitov <[email protected]>
3969 M:      Puranjay Mohan <[email protected]>
3970 R:      Xu Kuohai <[email protected]>
3971 L:      [email protected]
3972 S:      Supported
3973 F:      arch/arm64/net/
3974
3975 BPF JIT for LOONGARCH
3976 M:      Tiezhu Yang <[email protected]>
3977 R:      Hengqi Chen <[email protected]>
3978 L:      [email protected]
3979 S:      Maintained
3980 F:      arch/loongarch/net/
3981
3982 BPF JIT for MIPS (32-BIT AND 64-BIT)
3983 M:      Johan Almbladh <[email protected]>
3984 M:      Paul Burton <[email protected]>
3985 L:      [email protected]
3986 S:      Maintained
3987 F:      arch/mips/net/
3988
3989 BPF JIT for NFP NICs
3990 M:      Jakub Kicinski <[email protected]>
3991 L:      [email protected]
3992 S:      Odd Fixes
3993 F:      drivers/net/ethernet/netronome/nfp/bpf/
3994
3995 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3996 M:      Michael Ellerman <[email protected]>
3997 M:      Hari Bathini <[email protected]>
3998 M:      Christophe Leroy <[email protected]>
3999 R:      Naveen N Rao <[email protected]>
4000 L:      [email protected]
4001 S:      Supported
4002 F:      arch/powerpc/net/
4003
4004 BPF JIT for RISC-V (32-bit)
4005 M:      Luke Nelson <[email protected]>
4006 M:      Xi Wang <[email protected]>
4007 L:      [email protected]
4008 S:      Maintained
4009 F:      arch/riscv/net/
4010 X:      arch/riscv/net/bpf_jit_comp64.c
4011
4012 BPF JIT for RISC-V (64-bit)
4013 M:      Björn Töpel <[email protected]>
4014 R:      Pu Lehui <[email protected]>
4015 R:      Puranjay Mohan <[email protected]>
4016 L:      [email protected]
4017 S:      Maintained
4018 F:      arch/riscv/net/
4019 X:      arch/riscv/net/bpf_jit_comp32.c
4020
4021 BPF JIT for S390
4022 M:      Ilya Leoshkevich <[email protected]>
4023 M:      Heiko Carstens <[email protected]>
4024 M:      Vasily Gorbik <[email protected]>
4025 L:      [email protected]
4026 S:      Supported
4027 F:      arch/s390/net/
4028 X:      arch/s390/net/pnet.c
4029
4030 BPF JIT for SPARC (32-BIT AND 64-BIT)
4031 M:      David S. Miller <[email protected]>
4032 L:      [email protected]
4033 S:      Odd Fixes
4034 F:      arch/sparc/net/
4035
4036 BPF JIT for X86 32-BIT
4037 M:      Wang YanQing <[email protected]>
4038 L:      [email protected]
4039 S:      Odd Fixes
4040 F:      arch/x86/net/bpf_jit_comp32.c
4041
4042 BPF JIT for X86 64-BIT
4043 M:      Alexei Starovoitov <[email protected]>
4044 M:      Daniel Borkmann <[email protected]>
4045 L:      [email protected]
4046 S:      Supported
4047 F:      arch/x86/net/
4048 X:      arch/x86/net/bpf_jit_comp32.c
4049
4050 BPF [BTF]
4051 M:      Martin KaFai Lau <[email protected]>
4052 L:      [email protected]
4053 S:      Maintained
4054 F:      include/linux/btf*
4055 F:      kernel/bpf/btf.c
4056
4057 BPF [CORE]
4058 M:      Alexei Starovoitov <[email protected]>
4059 M:      Daniel Borkmann <[email protected]>
4060 R:      John Fastabend <[email protected]>
4061 L:      [email protected]
4062 S:      Maintained
4063 F:      include/linux/bpf*
4064 F:      include/linux/filter.h
4065 F:      include/linux/tnum.h
4066 F:      kernel/bpf/core.c
4067 F:      kernel/bpf/dispatcher.c
4068 F:      kernel/bpf/mprog.c
4069 F:      kernel/bpf/syscall.c
4070 F:      kernel/bpf/tnum.c
4071 F:      kernel/bpf/trampoline.c
4072 F:      kernel/bpf/verifier.c
4073
4074 BPF [CRYPTO]
4075 M:      Vadim Fedorenko <[email protected]>
4076 L:      [email protected]
4077 S:      Maintained
4078 F:      crypto/bpf_crypto_skcipher.c
4079 F:      include/linux/bpf_crypto.h
4080 F:      kernel/bpf/crypto.c
4081
4082 BPF [DOCUMENTATION] (Related to Standardization)
4083 R:      David Vernet <[email protected]>
4084 L:      [email protected]
4085 L:      [email protected]
4086 S:      Maintained
4087 F:      Documentation/bpf/standardization/
4088
4089 BPF [GENERAL] (Safe Dynamic Programs and Tools)
4090 M:      Alexei Starovoitov <[email protected]>
4091 M:      Daniel Borkmann <[email protected]>
4092 M:      Andrii Nakryiko <[email protected]>
4093 R:      Martin KaFai Lau <[email protected]>
4094 R:      Eduard Zingerman <[email protected]>
4095 R:      Song Liu <[email protected]>
4096 R:      Yonghong Song <[email protected]>
4097 R:      John Fastabend <[email protected]>
4098 R:      KP Singh <[email protected]>
4099 R:      Stanislav Fomichev <[email protected]>
4100 R:      Hao Luo <[email protected]>
4101 R:      Jiri Olsa <[email protected]>
4102 L:      [email protected]
4103 S:      Supported
4104 W:      https://bpf.io/
4105 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
4106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
4107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
4108 F:      Documentation/bpf/
4109 F:      Documentation/networking/filter.rst
4110 F:      Documentation/userspace-api/ebpf/
4111 F:      arch/*/net/*
4112 F:      include/linux/bpf*
4113 F:      include/linux/btf*
4114 F:      include/linux/filter.h
4115 F:      include/trace/events/xdp.h
4116 F:      include/uapi/linux/bpf*
4117 F:      include/uapi/linux/btf*
4118 F:      include/uapi/linux/filter.h
4119 F:      kernel/bpf/
4120 F:      kernel/trace/bpf_trace.c
4121 F:      lib/test_bpf.c
4122 F:      net/bpf/
4123 F:      net/core/filter.c
4124 F:      net/sched/act_bpf.c
4125 F:      net/sched/cls_bpf.c
4126 F:      samples/bpf/
4127 F:      scripts/bpf_doc.py
4128 F:      scripts/Makefile.btf
4129 F:      scripts/pahole-version.sh
4130 F:      tools/bpf/
4131 F:      tools/lib/bpf/
4132 F:      tools/testing/selftests/bpf/
4133
4134 BPF [ITERATOR]
4135 M:      Yonghong Song <[email protected]>
4136 L:      [email protected]
4137 S:      Maintained
4138 F:      kernel/bpf/*iter.c
4139
4140 BPF [L7 FRAMEWORK] (sockmap)
4141 M:      John Fastabend <[email protected]>
4142 M:      Jakub Sitnicki <[email protected]>
4143 L:      [email protected]
4144 L:      [email protected]
4145 S:      Maintained
4146 F:      include/linux/skmsg.h
4147 F:      net/core/skmsg.c
4148 F:      net/core/sock_map.c
4149 F:      net/ipv4/tcp_bpf.c
4150 F:      net/ipv4/udp_bpf.c
4151 F:      net/unix/unix_bpf.c
4152
4153 BPF [LIBRARY] (libbpf)
4154 M:      Andrii Nakryiko <[email protected]>
4155 M:      Eduard Zingerman <[email protected]>
4156 L:      [email protected]
4157 S:      Maintained
4158 F:      tools/lib/bpf/
4159
4160 BPF [MISC]
4161 L:      [email protected]
4162 S:      Odd Fixes
4163 K:      (?:\b|_)bpf(?:\b|_)
4164
4165 BPF [NETKIT] (BPF-programmable network device)
4166 M:      Daniel Borkmann <[email protected]>
4167 M:      Nikolay Aleksandrov <[email protected]>
4168 L:      [email protected]
4169 L:      [email protected]
4170 S:      Supported
4171 F:      drivers/net/netkit.c
4172 F:      include/net/netkit.h
4173
4174 BPF [NETWORKING] (struct_ops, reuseport)
4175 M:      Martin KaFai Lau <[email protected]>
4176 L:      [email protected]
4177 L:      [email protected]
4178 S:      Maintained
4179 F:      kernel/bpf/bpf_struct*
4180
4181 BPF [NETWORKING] (tcx & tc BPF, sock_addr)
4182 M:      Martin KaFai Lau <[email protected]>
4183 M:      Daniel Borkmann <[email protected]>
4184 R:      John Fastabend <[email protected]>
4185 L:      [email protected]
4186 L:      [email protected]
4187 S:      Maintained
4188 F:      include/net/tcx.h
4189 F:      kernel/bpf/tcx.c
4190 F:      net/core/filter.c
4191 F:      net/sched/act_bpf.c
4192 F:      net/sched/cls_bpf.c
4193
4194 BPF [RINGBUF]
4195 M:      Andrii Nakryiko <[email protected]>
4196 L:      [email protected]
4197 S:      Maintained
4198 F:      kernel/bpf/ringbuf.c
4199
4200 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
4201 M:      KP Singh <[email protected]>
4202 M:      Matt Bobrowski <[email protected]>
4203 L:      [email protected]
4204 S:      Maintained
4205 F:      Documentation/bpf/prog_lsm.rst
4206 F:      include/linux/bpf_lsm.h
4207 F:      kernel/bpf/bpf_lsm.c
4208 F:      kernel/trace/bpf_trace.c
4209 F:      security/bpf/
4210
4211 BPF [SELFTESTS] (Test Runners & Infrastructure)
4212 M:      Andrii Nakryiko <[email protected]>
4213 M:      Eduard Zingerman <[email protected]>
4214 R:      Mykola Lysenko <[email protected]>
4215 L:      [email protected]
4216 S:      Maintained
4217 F:      tools/testing/selftests/bpf/
4218
4219 BPF [STORAGE & CGROUPS]
4220 M:      Martin KaFai Lau <[email protected]>
4221 L:      [email protected]
4222 S:      Maintained
4223 F:      kernel/bpf/*storage.c
4224 F:      kernel/bpf/bpf_lru*
4225 F:      kernel/bpf/cgroup.c
4226
4227 BPF [TOOLING] (bpftool)
4228 M:      Quentin Monnet <[email protected]>
4229 L:      [email protected]
4230 S:      Maintained
4231 F:      kernel/bpf/disasm.*
4232 F:      tools/bpf/bpftool/
4233
4234 BPF [TRACING]
4235 M:      Song Liu <[email protected]>
4236 R:      Jiri Olsa <[email protected]>
4237 L:      [email protected]
4238 S:      Maintained
4239 F:      kernel/bpf/stackmap.c
4240 F:      kernel/trace/bpf_trace.c
4241
4242 BROADCOM ASP 2.0 ETHERNET DRIVER
4243 M:      Justin Chen <[email protected]>
4244 M:      Florian Fainelli <[email protected]>
4245 L:      [email protected]
4246 L:      [email protected]
4247 S:      Supported
4248 F:      Documentation/devicetree/bindings/net/brcm,asp-v2.0.yaml
4249 F:      drivers/net/ethernet/broadcom/asp2/
4250
4251 BROADCOM B44 10/100 ETHERNET DRIVER
4252 M:      Michael Chan <[email protected]>
4253 L:      [email protected]
4254 S:      Supported
4255 F:      drivers/net/ethernet/broadcom/b44.*
4256
4257 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
4258 M:      Florian Fainelli <[email protected]>
4259 L:      [email protected]
4260 L:      [email protected] (subscribers-only)
4261 S:      Supported
4262 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
4263 F:      drivers/net/dsa/b53/*
4264 F:      drivers/net/dsa/bcm_sf2*
4265 F:      include/linux/dsa/brcm.h
4266 F:      include/linux/platform_data/b53.h
4267
4268 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
4269 M:      Florian Fainelli <[email protected]>
4270 R:      Broadcom internal kernel review list <[email protected]>
4271 L:      [email protected] (moderated for non-subscribers)
4272 L:      [email protected] (moderated for non-subscribers)
4273 S:      Maintained
4274 T:      git https://github.com/broadcom/stblinux.git
4275 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4276 F:      drivers/pci/controller/pcie-brcmstb.c
4277 F:      drivers/staging/vc04_services
4278 N:      bcm2711
4279 N:      bcm283*
4280 N:      raspberrypi
4281
4282 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
4283 M:      Florian Fainelli <[email protected]>
4284 M:      Ray Jui <[email protected]>
4285 M:      Scott Branden <[email protected]>
4286 R:      Broadcom internal kernel review list <[email protected]>
4287 S:      Maintained
4288 T:      git https://github.com/broadcom/mach-bcm
4289 F:      arch/arm/mach-bcm/
4290 N:      bcm281*
4291 N:      bcm113*
4292 N:      bcm216*
4293 N:      kona
4294
4295 BROADCOM BCM2835 CAMERA DRIVERS
4296 M:      Raspberry Pi Kernel Maintenance <[email protected]>
4297 L:      [email protected]
4298 S:      Maintained
4299 F:      Documentation/devicetree/bindings/media/brcm,bcm2835-unicam.yaml
4300 F:      drivers/media/platform/broadcom/bcm2835-unicam*
4301
4302 BROADCOM BCM47XX MIPS ARCHITECTURE
4303 M:      Hauke Mehrtens <[email protected]>
4304 M:      Rafał Miłecki <[email protected]>
4305 L:      [email protected]
4306 S:      Maintained
4307 F:      Documentation/devicetree/bindings/mips/brcm/
4308 F:      arch/mips/bcm47xx/*
4309 F:      arch/mips/include/asm/mach-bcm47xx/*
4310
4311 BROADCOM BCM4908 ETHERNET DRIVER
4312 M:      Rafał Miłecki <[email protected]>
4313 R:      Broadcom internal kernel review list <[email protected]>
4314 L:      [email protected]
4315 S:      Maintained
4316 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
4317 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
4318 F:      drivers/net/ethernet/broadcom/unimac.h
4319
4320 BROADCOM BCM4908 PINMUX DRIVER
4321 M:      Rafał Miłecki <[email protected]>
4322 R:      Broadcom internal kernel review list <[email protected]>
4323 L:      [email protected]
4324 S:      Maintained
4325 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
4326 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
4327
4328 BROADCOM BCM5301X ARM ARCHITECTURE
4329 M:      Florian Fainelli <[email protected]>
4330 M:      Hauke Mehrtens <[email protected]>
4331 M:      Rafał Miłecki <[email protected]>
4332 R:      Broadcom internal kernel review list <[email protected]>
4333 L:      [email protected] (moderated for non-subscribers)
4334 S:      Maintained
4335 F:      arch/arm/boot/dts/broadcom/bcm-ns.dtsi
4336 F:      arch/arm/boot/dts/broadcom/bcm470*
4337 F:      arch/arm/boot/dts/broadcom/bcm5301*
4338 F:      arch/arm/boot/dts/broadcom/bcm953012*
4339 F:      arch/arm/mach-bcm/bcm_5301x.c
4340
4341 BROADCOM BCM53573 ARM ARCHITECTURE
4342 M:      Florian Fainelli <[email protected]>
4343 M:      Rafał Miłecki <[email protected]>
4344 R:      Broadcom internal kernel review list <[email protected]>
4345 L:      [email protected] (moderated for non-subscribers)
4346 S:      Maintained
4347 F:      arch/arm/boot/dts/broadcom/bcm47189*
4348 F:      arch/arm/boot/dts/broadcom/bcm53573*
4349
4350 BROADCOM BCM63XX/BCM33XX UDC DRIVER
4351 M:      Kevin Cernekee <[email protected]>
4352 L:      [email protected]
4353 S:      Maintained
4354 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4355
4356 BROADCOM BCM7XXX ARM ARCHITECTURE
4357 M:      Florian Fainelli <[email protected]>
4358 R:      Broadcom internal kernel review list <[email protected]>
4359 L:      [email protected] (moderated for non-subscribers)
4360 S:      Maintained
4361 T:      git https://github.com/broadcom/stblinux.git
4362 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4363 F:      arch/arm/boot/dts/broadcom/bcm7*.dts*
4364 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4365 F:      arch/arm/mach-bcm/*brcmstb*
4366 F:      arch/arm/mm/cache-b15-rac.c
4367 F:      drivers/bus/brcmstb_gisb.c
4368 F:      drivers/pci/controller/pcie-brcmstb.c
4369 N:      brcmstb
4370 N:      bcm7038
4371 N:      bcm7120
4372
4373 BROADCOM BCMBCA ARM ARCHITECTURE
4374 M:      William Zhang <[email protected]>
4375 M:      Anand Gore <[email protected]>
4376 M:      Kursad Oney <[email protected]>
4377 M:      Florian Fainelli <[email protected]>
4378 M:      Rafał Miłecki <[email protected]>
4379 R:      Broadcom internal kernel review list <[email protected]>
4380 L:      [email protected] (moderated for non-subscribers)
4381 S:      Maintained
4382 T:      git https://github.com/broadcom/stblinux.git
4383 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
4384 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
4385 N:      bcmbca
4386 N:      bcm[9]?47622
4387 N:      bcm[9]?4912
4388 N:      bcm[9]?63138
4389 N:      bcm[9]?63146
4390 N:      bcm[9]?63148
4391 N:      bcm[9]?63158
4392 N:      bcm[9]?63178
4393 N:      bcm[9]?6756
4394 N:      bcm[9]?6813
4395 N:      bcm[9]?6846
4396 N:      bcm[9]?6855
4397 N:      bcm[9]?6856
4398 N:      bcm[9]?6858
4399 N:      bcm[9]?6878
4400
4401 BROADCOM BDC DRIVER
4402 M:      Justin Chen <[email protected]>
4403 M:      Al Cooper <[email protected]>
4404 R:      Broadcom internal kernel review list <[email protected]>
4405 L:      [email protected]
4406 S:      Maintained
4407 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4408 F:      drivers/usb/gadget/udc/bdc/
4409
4410 BROADCOM BMIPS CPUFREQ DRIVER
4411 M:      Markus Mayer <[email protected]>
4412 R:      Broadcom internal kernel review list <[email protected]>
4413 L:      [email protected]
4414 S:      Maintained
4415 F:      drivers/cpufreq/bmips-cpufreq.c
4416
4417 BROADCOM BMIPS MIPS ARCHITECTURE
4418 M:      Florian Fainelli <[email protected]>
4419 R:      Broadcom internal kernel review list <[email protected]>
4420 L:      [email protected]
4421 S:      Maintained
4422 T:      git https://github.com/broadcom/stblinux.git
4423 F:      arch/mips/bmips/*
4424 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4425 F:      arch/mips/include/asm/mach-bmips/*
4426 F:      arch/mips/kernel/*bmips*
4427 F:      drivers/irqchip/irq-bcm63*
4428 F:      drivers/irqchip/irq-bcm7*
4429 F:      drivers/irqchip/irq-brcmstb*
4430 F:      drivers/pmdomain/bcm/bcm63xx-power.c
4431 F:      include/linux/bcm963xx_nvram.h
4432 F:      include/linux/bcm963xx_tag.h
4433
4434 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4435 M:      Rasesh Mody <[email protected]>
4436 M:      [email protected]
4437 L:      [email protected]
4438 S:      Supported
4439 F:      drivers/net/ethernet/broadcom/bnx2.*
4440 F:      drivers/net/ethernet/broadcom/bnx2_*
4441
4442 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4443 M:      Saurav Kashyap <[email protected]>
4444 M:      Javed Hasan <[email protected]>
4445 M:      [email protected]
4446 L:      [email protected]
4447 S:      Supported
4448 F:      drivers/scsi/bnx2fc/
4449
4450 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4451 M:      Nilesh Javali <[email protected]>
4452 M:      Manish Rangankar <[email protected]>
4453 M:      [email protected]
4454 L:      [email protected]
4455 S:      Supported
4456 F:      drivers/scsi/bnx2i/
4457
4458 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4459 M:      Sudarsana Kalluru <[email protected]>
4460 M:      Manish Chopra <[email protected]>
4461 L:      [email protected]
4462 S:      Supported
4463 F:      drivers/net/ethernet/broadcom/bnx2x/
4464
4465 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4466 M:      Michael Chan <[email protected]>
4467 L:      [email protected]
4468 S:      Supported
4469 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4470 F:      drivers/net/ethernet/broadcom/bnxt/
4471 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4472
4473 BROADCOM BRCM80211 IEEE802.11 WIRELESS DRIVERS
4474 M:      Arend van Spriel <[email protected]>
4475 L:      [email protected]
4476 L:      [email protected]
4477 L:      [email protected]
4478 S:      Supported
4479 F:      drivers/net/wireless/broadcom/brcm80211/
4480 F:      include/linux/platform_data/brcmfmac.h
4481
4482 BROADCOM BRCMSTB GPIO DRIVER
4483 M:      Doug Berger <[email protected]>
4484 M:      Florian Fainelli <[email protected]>
4485 R:      Broadcom internal kernel review list <[email protected]>
4486 S:      Supported
4487 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4488 F:      drivers/gpio/gpio-brcmstb.c
4489
4490 BROADCOM BRCMSTB I2C DRIVER
4491 M:      Kamal Dasu <[email protected]>
4492 R:      Broadcom internal kernel review list <[email protected]>
4493 L:      [email protected]
4494 S:      Supported
4495 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4496 F:      drivers/i2c/busses/i2c-brcmstb.c
4497
4498 BROADCOM BRCMSTB UART DRIVER
4499 M:      Al Cooper <[email protected]>
4500 R:      Broadcom internal kernel review list <[email protected]>
4501 L:      [email protected]
4502 S:      Maintained
4503 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4504 F:      drivers/tty/serial/8250/8250_bcm7271.c
4505
4506 BROADCOM BRCMSTB USB EHCI DRIVER
4507 M:      Justin Chen <[email protected]>
4508 M:      Al Cooper <[email protected]>
4509 R:      Broadcom internal kernel review list <[email protected]>
4510 L:      [email protected]
4511 S:      Maintained
4512 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4513 F:      drivers/usb/host/ehci-brcm.*
4514
4515 BROADCOM BRCMSTB USB PIN MAP DRIVER
4516 M:      Al Cooper <[email protected]>
4517 R:      Broadcom internal kernel review list <[email protected]>
4518 L:      [email protected]
4519 S:      Maintained
4520 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4521 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4522
4523 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4524 M:      Justin Chen <[email protected]>
4525 M:      Al Cooper <[email protected]>
4526 R:      Broadcom internal kernel review list <[email protected]>
4527 L:      [email protected]
4528 S:      Maintained
4529 F:      drivers/phy/broadcom/phy-brcm-usb*
4530
4531 BROADCOM Broadband SoC High Speed SPI Controller DRIVER
4532 M:      William Zhang <[email protected]>
4533 M:      Kursad Oney <[email protected]>
4534 M:      Jonas Gorski <[email protected]>
4535 R:      Broadcom internal kernel review list <[email protected]>
4536 L:      [email protected]
4537 S:      Maintained
4538 F:      Documentation/devicetree/bindings/spi/brcm,bcm63xx-hsspi.yaml
4539 F:      drivers/spi/spi-bcm63xx-hsspi.c
4540 F:      drivers/spi/spi-bcmbca-hsspi.c
4541
4542 BROADCOM BCM6348/BCM6358 SPI controller DRIVER
4543 M:      Jonas Gorski <[email protected]>
4544 L:      [email protected]
4545 S:      Odd Fixes
4546 F:      Documentation/devicetree/bindings/spi/brcm,bcm63xx-spi.yaml
4547 F:      drivers/spi/spi-bcm63xx.c
4548
4549 BROADCOM ETHERNET PHY DRIVERS
4550 M:      Florian Fainelli <[email protected]>
4551 R:      Broadcom internal kernel review list <[email protected]>
4552 L:      [email protected]
4553 S:      Supported
4554 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4555 F:      drivers/net/phy/bcm*.[ch]
4556 F:      drivers/net/phy/broadcom.c
4557 F:      include/linux/brcmphy.h
4558
4559 BROADCOM GENET ETHERNET DRIVER
4560 M:      Doug Berger <[email protected]>
4561 M:      Florian Fainelli <[email protected]>
4562 R:      Broadcom internal kernel review list <[email protected]>
4563 L:      [email protected]
4564 S:      Supported
4565 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4566 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4567 F:      drivers/net/ethernet/broadcom/genet/
4568 F:      drivers/net/ethernet/broadcom/unimac.h
4569 F:      drivers/net/mdio/mdio-bcm-unimac.c
4570 F:      include/linux/platform_data/bcmgenet.h
4571 F:      include/linux/platform_data/mdio-bcm-unimac.h
4572
4573 BROADCOM IPROC ARM ARCHITECTURE
4574 M:      Ray Jui <[email protected]>
4575 M:      Scott Branden <[email protected]>
4576 R:      Broadcom internal kernel review list <[email protected]>
4577 L:      [email protected] (moderated for non-subscribers)
4578 S:      Maintained
4579 T:      git https://github.com/broadcom/stblinux.git
4580 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4581 F:      arch/arm64/boot/dts/broadcom/stingray/*
4582 F:      drivers/clk/bcm/clk-ns*
4583 F:      drivers/clk/bcm/clk-sr*
4584 F:      drivers/pinctrl/bcm/pinctrl-ns*
4585 F:      include/dt-bindings/clock/bcm-sr*
4586 N:      iproc
4587 N:      cygnus
4588 N:      bcm[-_]nsp
4589 N:      bcm9113*
4590 N:      bcm9583*
4591 N:      bcm9585*
4592 N:      bcm9586*
4593 N:      bcm988312
4594 N:      bcm113*
4595 N:      bcm583*
4596 N:      bcm585*
4597 N:      bcm586*
4598 N:      bcm88312
4599 N:      hr2
4600 N:      stingray
4601
4602 BROADCOM IPROC GBIT ETHERNET DRIVER
4603 M:      Rafał Miłecki <[email protected]>
4604 R:      Broadcom internal kernel review list <[email protected]>
4605 L:      [email protected]
4606 S:      Maintained
4607 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4608 F:      drivers/net/ethernet/broadcom/bgmac*
4609 F:      drivers/net/ethernet/broadcom/unimac.h
4610
4611 BROADCOM KONA GPIO DRIVER
4612 M:      Ray Jui <[email protected]>
4613 R:      Broadcom internal kernel review list <[email protected]>
4614 S:      Supported
4615 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.yaml
4616 F:      drivers/gpio/gpio-bcm-kona.c
4617
4618 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4619 M:      Sathya Prakash Veerichetty <[email protected]>
4620 M:      Kashyap Desai <[email protected]>
4621 M:      Sumit Saxena <[email protected]>
4622 M:      Sreekanth Reddy <[email protected]>
4623 L:      [email protected]
4624 L:      [email protected]
4625 S:      Supported
4626 W:      https://www.broadcom.com/support/storage
4627 F:      drivers/scsi/mpi3mr/
4628
4629 BROADCOM NETXTREME-E ROCE DRIVER
4630 M:      Selvin Xavier <[email protected]>
4631 L:      [email protected]
4632 S:      Supported
4633 W:      http://www.broadcom.com
4634 F:      drivers/infiniband/hw/bnxt_re/
4635 F:      include/uapi/rdma/bnxt_re-abi.h
4636
4637 BROADCOM NVRAM DRIVER
4638 M:      Rafał Miłecki <[email protected]>
4639 L:      [email protected]
4640 S:      Maintained
4641 F:      drivers/firmware/broadcom/*
4642
4643 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4644 M:      Rafał Miłecki <[email protected]>
4645 M:      Florian Fainelli <[email protected]>
4646 R:      Broadcom internal kernel review list <[email protected]>
4647 L:      [email protected]
4648 S:      Maintained
4649 T:      git https://github.com/broadcom/stblinux.git
4650 F:      drivers/pmdomain/bcm/bcm-pmb.c
4651 F:      include/dt-bindings/soc/bcm-pmb.h
4652
4653 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4654 M:      Rafał Miłecki <[email protected]>
4655 L:      [email protected]
4656 S:      Maintained
4657 F:      drivers/bcma/
4658 F:      include/linux/bcma/
4659
4660 BROADCOM SPI DRIVER
4661 M:      Kamal Dasu <[email protected]>
4662 R:      Broadcom internal kernel review list <[email protected]>
4663 S:      Maintained
4664 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4665 F:      drivers/spi/spi-bcm-qspi.*
4666 F:      drivers/spi/spi-brcmstb-qspi.c
4667 F:      drivers/spi/spi-iproc-qspi.c
4668
4669 BROADCOM STB AVS CPUFREQ DRIVER
4670 M:      Markus Mayer <[email protected]>
4671 R:      Broadcom internal kernel review list <[email protected]>
4672 L:      [email protected]
4673 S:      Maintained
4674 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4675 F:      drivers/cpufreq/brcmstb*
4676
4677 BROADCOM STB AVS TMON DRIVER
4678 M:      Markus Mayer <[email protected]>
4679 R:      Broadcom internal kernel review list <[email protected]>
4680 L:      [email protected]
4681 S:      Maintained
4682 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4683 F:      drivers/thermal/broadcom/brcmstb*
4684
4685 BROADCOM STB DPFE DRIVER
4686 M:      Markus Mayer <[email protected]>
4687 R:      Broadcom internal kernel review list <[email protected]>
4688 L:      [email protected] (moderated for non-subscribers)
4689 S:      Maintained
4690 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4691 F:      drivers/memory/brcmstb_dpfe.c
4692
4693 BROADCOM STB NAND FLASH DRIVER
4694 M:      Brian Norris <[email protected]>
4695 M:      Kamal Dasu <[email protected]>
4696 R:      Broadcom internal kernel review list <[email protected]>
4697 L:      [email protected]
4698 S:      Maintained
4699 F:      drivers/mtd/nand/raw/brcmnand/
4700 F:      include/linux/platform_data/brcmnand.h
4701
4702 BROADCOM STB PCIE DRIVER
4703 M:      Jim Quinlan <[email protected]>
4704 M:      Nicolas Saenz Julienne <[email protected]>
4705 M:      Florian Fainelli <[email protected]>
4706 R:      Broadcom internal kernel review list <[email protected]>
4707 L:      [email protected]
4708 S:      Maintained
4709 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4710 F:      drivers/pci/controller/pcie-brcmstb.c
4711
4712 BROADCOM SYSTEMPORT ETHERNET DRIVER
4713 M:      Florian Fainelli <[email protected]>
4714 R:      Broadcom internal kernel review list <[email protected]>
4715 L:      [email protected]
4716 S:      Supported
4717 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4718 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4719 F:      drivers/net/ethernet/broadcom/unimac.h
4720
4721 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4722 M:      Pavan Chebbi <[email protected]>
4723 M:      Michael Chan <[email protected]>
4724 L:      [email protected]
4725 S:      Supported
4726 F:      drivers/net/ethernet/broadcom/tg3.*
4727
4728 BROADCOM VK DRIVER
4729 M:      Scott Branden <[email protected]>
4730 R:      Broadcom internal kernel review list <[email protected]>
4731 S:      Supported
4732 F:      drivers/misc/bcm-vk/
4733 F:      include/uapi/linux/misc/bcm_vk.h
4734
4735 BROCADE BFA FC SCSI DRIVER
4736 M:      Anil Gurumurthy <[email protected]>
4737 M:      Sudarsana Kalluru <[email protected]>
4738 L:      [email protected]
4739 S:      Supported
4740 F:      drivers/scsi/bfa/
4741
4742 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4743 M:      Rasesh Mody <[email protected]>
4744 M:      Sudarsana Kalluru <[email protected]>
4745 M:      [email protected]
4746 L:      [email protected]
4747 S:      Supported
4748 F:      drivers/net/ethernet/brocade/bna/
4749
4750 BSG (block layer generic sg v4 driver)
4751 M:      FUJITA Tomonori <[email protected]>
4752 L:      [email protected]
4753 S:      Supported
4754 F:      block/bsg.c
4755 F:      include/linux/bsg.h
4756 F:      include/uapi/linux/bsg.h
4757
4758 BT87X AUDIO DRIVER
4759 M:      Clemens Ladisch <[email protected]>
4760 L:      [email protected] (moderated for non-subscribers)
4761 S:      Maintained
4762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4763 F:      Documentation/sound/cards/bt87x.rst
4764 F:      sound/pci/bt87x.c
4765
4766 BT8XXGPIO DRIVER
4767 M:      Michael Buesch <[email protected]>
4768 S:      Maintained
4769 W:      http://bu3sch.de/btgpio.php
4770 F:      drivers/gpio/gpio-bt8xx.c
4771
4772 BTRFS FILE SYSTEM
4773 M:      Chris Mason <[email protected]>
4774 M:      Josef Bacik <[email protected]>
4775 M:      David Sterba <[email protected]>
4776 L:      [email protected]
4777 S:      Maintained
4778 W:      https://btrfs.readthedocs.io
4779 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4780 C:      irc://irc.libera.chat/btrfs
4781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4782 F:      Documentation/filesystems/btrfs.rst
4783 F:      fs/btrfs/
4784 F:      include/linux/btrfs*
4785 F:      include/trace/events/btrfs.h
4786 F:      include/uapi/linux/btrfs*
4787
4788 BTTV VIDEO4LINUX DRIVER
4789 M:      Mauro Carvalho Chehab <[email protected]>
4790 L:      [email protected]
4791 S:      Odd fixes
4792 W:      https://linuxtv.org
4793 T:      git git://linuxtv.org/media_tree.git
4794 F:      Documentation/driver-api/media/drivers/bttv*
4795 F:      drivers/media/pci/bt8xx/bttv*
4796
4797 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4798 M:      Chanwoo Choi <[email protected]>
4799 L:      [email protected]
4800 L:      [email protected]
4801 S:      Maintained
4802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4803 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4804 F:      drivers/devfreq/exynos-bus.c
4805
4806 BUSLOGIC SCSI DRIVER
4807 M:      Khalid Aziz <[email protected]>
4808 L:      [email protected]
4809 S:      Maintained
4810 F:      drivers/scsi/BusLogic.*
4811 F:      drivers/scsi/FlashPoint.*
4812
4813 BXCAN CAN NETWORK DRIVER
4814 M:      Dario Binacchi <[email protected]>
4815 L:      [email protected]
4816 S:      Maintained
4817 F:      Documentation/devicetree/bindings/net/can/st,stm32-bxcan.yaml
4818 F:      drivers/net/can/bxcan.c
4819
4820 C-MEDIA CMI8788 DRIVER
4821 M:      Clemens Ladisch <[email protected]>
4822 L:      [email protected] (moderated for non-subscribers)
4823 S:      Maintained
4824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4825 F:      sound/pci/oxygen/
4826
4827 C-SKY ARCHITECTURE
4828 M:      Guo Ren <[email protected]>
4829 L:      [email protected]
4830 S:      Supported
4831 T:      git https://github.com/c-sky/csky-linux.git
4832 F:      Documentation/devicetree/bindings/csky/
4833 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4834 F:      Documentation/devicetree/bindings/timer/csky,*
4835 F:      arch/csky/
4836 F:      drivers/clocksource/timer-gx6605s.c
4837 F:      drivers/clocksource/timer-mp-csky.c
4838 F:      drivers/irqchip/irq-csky-*
4839 N:      csky
4840 K:      csky
4841
4842 CA8210 IEEE-802.15.4 RADIO DRIVER
4843 L:      [email protected]
4844 S:      Orphan
4845 W:      https://github.com/Cascoda/ca8210-linux.git
4846 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4847 F:      drivers/net/ieee802154/ca8210.c
4848
4849 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4850 M:      David Howells <[email protected]>
4851 L:      [email protected]
4852 S:      Supported
4853 F:      Documentation/filesystems/caching/cachefiles.rst
4854 F:      fs/cachefiles/
4855
4856 CACHESTAT: PAGE CACHE STATS FOR A FILE
4857 M:      Nhat Pham <[email protected]>
4858 M:      Johannes Weiner <[email protected]>
4859 L:      [email protected]
4860 S:      Maintained
4861 F:      tools/testing/selftests/cachestat/test_cachestat.c
4862
4863 CADENCE MIPI-CSI2 BRIDGES
4864 M:      Maxime Ripard <[email protected]>
4865 L:      [email protected]
4866 S:      Maintained
4867 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4868 F:      Documentation/devicetree/bindings/media/cdns,csi2rx.yaml
4869 F:      drivers/media/platform/cadence/cdns-csi2*
4870
4871 CADENCE NAND DRIVER
4872 L:      [email protected]
4873 S:      Orphan
4874 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4875 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4876
4877 CADENCE USB3 DRD IP DRIVER
4878 M:      Peter Chen <[email protected]>
4879 M:      Pawel Laszczak <[email protected]>
4880 R:      Roger Quadros <[email protected]>
4881 L:      [email protected]
4882 S:      Maintained
4883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4884 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4885 F:      drivers/usb/cdns3/
4886 X:      drivers/usb/cdns3/cdnsp*
4887
4888 CADENCE USBHS DRIVER
4889 M:      Pawel Laszczak <[email protected]>
4890 L:      [email protected]
4891 S:      Maintained
4892 F:      drivers/usb/gadget/udc/cdns2
4893
4894 CADENCE USBSSP DRD IP DRIVER
4895 M:      Pawel Laszczak <[email protected]>
4896 L:      [email protected]
4897 S:      Maintained
4898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4899 F:      drivers/usb/cdns3/
4900 X:      drivers/usb/cdns3/cdns3*
4901
4902 CADET FM/AM RADIO RECEIVER DRIVER
4903 M:      Hans Verkuil <[email protected]>
4904 L:      [email protected]
4905 S:      Maintained
4906 W:      https://linuxtv.org
4907 T:      git git://linuxtv.org/media_tree.git
4908 F:      drivers/media/radio/radio-cadet*
4909
4910 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4911 L:      [email protected]
4912 S:      Orphan
4913 T:      git git://linuxtv.org/media_tree.git
4914 F:      Documentation/admin-guide/media/cafe_ccic*
4915 F:      drivers/media/platform/marvell/
4916
4917 CAIF NETWORK LAYER
4918 L:      [email protected]
4919 S:      Orphan
4920 F:      Documentation/networking/caif/
4921 F:      drivers/net/caif/
4922 F:      include/net/caif/
4923 F:      include/uapi/linux/caif/
4924 F:      net/caif/
4925
4926 CAKE QDISC
4927 M:      Toke Høiland-Jørgensen <[email protected]>
4928 L:      [email protected] (moderated for non-subscribers)
4929 S:      Maintained
4930 F:      net/sched/sch_cake.c
4931
4932 CAN NETWORK DRIVERS
4933 M:      Marc Kleine-Budde <[email protected]>
4934 M:      Vincent Mailhol <[email protected]>
4935 L:      [email protected]
4936 S:      Maintained
4937 W:      https://github.com/linux-can
4938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4940 F:      Documentation/devicetree/bindings/net/can/
4941 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4942 F:      drivers/net/can/
4943 F:      drivers/phy/phy-can-transceiver.c
4944 F:      include/linux/can/bittiming.h
4945 F:      include/linux/can/dev.h
4946 F:      include/linux/can/length.h
4947 F:      include/linux/can/platform/
4948 F:      include/linux/can/rx-offload.h
4949 F:      include/uapi/linux/can/error.h
4950 F:      include/uapi/linux/can/netlink.h
4951 F:      include/uapi/linux/can/vxcan.h
4952
4953 CAN NETWORK LAYER
4954 M:      Oliver Hartkopp <[email protected]>
4955 M:      Marc Kleine-Budde <[email protected]>
4956 L:      [email protected]
4957 S:      Maintained
4958 W:      https://github.com/linux-can
4959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4961 F:      Documentation/networking/can.rst
4962 F:      Documentation/networking/iso15765-2.rst
4963 F:      include/linux/can/can-ml.h
4964 F:      include/linux/can/core.h
4965 F:      include/linux/can/skb.h
4966 F:      include/net/netns/can.h
4967 F:      include/uapi/linux/can.h
4968 F:      include/uapi/linux/can/bcm.h
4969 F:      include/uapi/linux/can/gw.h
4970 F:      include/uapi/linux/can/isotp.h
4971 F:      include/uapi/linux/can/raw.h
4972 F:      net/can/
4973
4974 CAN-J1939 NETWORK LAYER
4975 M:      Robin van der Gracht <[email protected]>
4976 M:      Oleksij Rempel <[email protected]>
4977 R:      [email protected]
4978 L:      [email protected]
4979 S:      Maintained
4980 F:      Documentation/networking/j1939.rst
4981 F:      include/uapi/linux/can/j1939.h
4982 F:      net/can/j1939/
4983
4984 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4985 M:      Damien Le Moal <[email protected]>
4986 L:      [email protected]
4987 L:      [email protected] (pinctrl driver)
4988 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4989 F:      drivers/pinctrl/pinctrl-k210.c
4990
4991 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4992 M:      Damien Le Moal <[email protected]>
4993 L:      [email protected]
4994 L:      [email protected]
4995 S:      Maintained
4996 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4997 F:      drivers/reset/reset-k210.c
4998
4999 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
5000 M:      Damien Le Moal <[email protected]>
5001 L:      [email protected]
5002 S:      Maintained
5003 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
5004 F:      drivers/soc/canaan/
5005 F:      include/soc/canaan/
5006
5007 CAPABILITIES
5008 M:      Serge Hallyn <[email protected]>
5009 L:      [email protected]
5010 S:      Supported
5011 F:      include/linux/capability.h
5012 F:      include/uapi/linux/capability.h
5013 F:      kernel/capability.c
5014 F:      security/commoncap.c
5015
5016 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
5017 M:      Kevin Tsai <[email protected]>
5018 S:      Maintained
5019 F:      drivers/iio/light/cm*
5020
5021 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
5022 M:      Christian Lamparter <[email protected]>
5023 L:      [email protected]
5024 S:      Maintained
5025 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
5026 F:      drivers/net/wireless/ath/carl9170/
5027
5028 CAVIUM I2C DRIVER
5029 M:      Robert Richter <[email protected]>
5030 S:      Odd Fixes
5031 W:      http://www.marvell.com
5032 F:      drivers/i2c/busses/i2c-octeon*
5033 F:      drivers/i2c/busses/i2c-thunderx*
5034
5035 CAVIUM LIQUIDIO NETWORK DRIVER
5036 L:      [email protected]
5037 S:      Orphan
5038 W:      http://www.marvell.com
5039 F:      drivers/net/ethernet/cavium/liquidio/
5040
5041 CAVIUM MMC DRIVER
5042 M:      Robert Richter <[email protected]>
5043 S:      Odd Fixes
5044 W:      http://www.marvell.com
5045 F:      drivers/mmc/host/cavium*
5046
5047 CAVIUM OCTEON-TX CRYPTO DRIVER
5048 M:      George Cherian <[email protected]>
5049 L:      [email protected]
5050 S:      Supported
5051 W:      http://www.marvell.com
5052 F:      drivers/crypto/cavium/cpt/
5053
5054 CAVIUM THUNDERX2 ARM64 SOC
5055 M:      Robert Richter <[email protected]>
5056 L:      [email protected] (moderated for non-subscribers)
5057 S:      Odd Fixes
5058 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
5059 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
5060
5061 CBS/ETF/TAPRIO QDISCS
5062 M:      Vinicius Costa Gomes <[email protected]>
5063 L:      [email protected]
5064 S:      Maintained
5065 F:      net/sched/sch_cbs.c
5066 F:      net/sched/sch_etf.c
5067 F:      net/sched/sch_taprio.c
5068
5069 CC2520 IEEE-802.15.4 RADIO DRIVER
5070 M:      Stefan Schmidt <[email protected]>
5071 L:      [email protected]
5072 S:      Odd Fixes
5073 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
5074 F:      drivers/net/ieee802154/cc2520.c
5075
5076 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
5077 M:      Gilad Ben-Yossef <[email protected]>
5078 L:      [email protected]
5079 S:      Supported
5080 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
5081 F:      drivers/crypto/ccree/
5082
5083 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
5084 M:      Hadar Gat <[email protected]>
5085 L:      [email protected]
5086 S:      Supported
5087 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
5088 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
5089 F:      drivers/char/hw_random/cctrng.c
5090 F:      drivers/char/hw_random/cctrng.h
5091
5092 CEC FRAMEWORK
5093 M:      Hans Verkuil <[email protected]>
5094 L:      [email protected]
5095 S:      Supported
5096 W:      http://linuxtv.org
5097 T:      git git://linuxtv.org/media_tree.git
5098 F:      Documentation/ABI/testing/debugfs-cec-error-inj
5099 F:      Documentation/devicetree/bindings/media/cec/cec-common.yaml
5100 F:      Documentation/driver-api/media/cec-core.rst
5101 F:      Documentation/userspace-api/media/cec
5102 F:      drivers/media/cec/
5103 F:      drivers/media/rc/keymaps/rc-cec.c
5104 F:      include/media/cec-notifier.h
5105 F:      include/media/cec.h
5106 F:      include/uapi/linux/cec-funcs.h
5107 F:      include/uapi/linux/cec.h
5108
5109 CEC GPIO DRIVER
5110 M:      Hans Verkuil <[email protected]>
5111 L:      [email protected]
5112 S:      Supported
5113 W:      http://linuxtv.org
5114 T:      git git://linuxtv.org/media_tree.git
5115 F:      Documentation/devicetree/bindings/media/cec/cec-gpio.yaml
5116 F:      drivers/media/cec/platform/cec-gpio/
5117
5118 CELL BROADBAND ENGINE ARCHITECTURE
5119 M:      Arnd Bergmann <[email protected]>
5120 L:      [email protected]
5121 S:      Supported
5122 W:      http://www.ibm.com/developerworks/power/cell/
5123 F:      arch/powerpc/include/asm/cell*.h
5124 F:      arch/powerpc/include/asm/spu*.h
5125 F:      arch/powerpc/include/uapi/asm/spu*.h
5126 F:      arch/powerpc/platforms/cell/
5127
5128 CELLWISE CW2015 BATTERY DRIVER
5129 M:      Tobias Schrammm <[email protected]>
5130 S:      Maintained
5131 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
5132 F:      drivers/power/supply/cw2015_battery.c
5133
5134 CEPH COMMON CODE (LIBCEPH)
5135 M:      Ilya Dryomov <[email protected]>
5136 M:      Xiubo Li <[email protected]>
5137 L:      [email protected]
5138 S:      Supported
5139 W:      http://ceph.com/
5140 T:      git https://github.com/ceph/ceph-client.git
5141 F:      include/linux/ceph/
5142 F:      include/linux/crush/
5143 F:      net/ceph/
5144
5145 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
5146 M:      Xiubo Li <[email protected]>
5147 M:      Ilya Dryomov <[email protected]>
5148 L:      [email protected]
5149 S:      Supported
5150 W:      http://ceph.com/
5151 T:      git https://github.com/ceph/ceph-client.git
5152 F:      Documentation/filesystems/ceph.rst
5153 F:      fs/ceph/
5154
5155 CERTIFICATE HANDLING
5156 M:      David Howells <[email protected]>
5157 M:      David Woodhouse <[email protected]>
5158 L:      [email protected]
5159 S:      Maintained
5160 F:      Documentation/admin-guide/module-signing.rst
5161 F:      certs/
5162 F:      scripts/sign-file.c
5163 F:      tools/certs/
5164
5165 CFAG12864B LCD DRIVER
5166 M:      Miguel Ojeda <[email protected]>
5167 S:      Maintained
5168 F:      drivers/auxdisplay/cfag12864b.c
5169 F:      include/linux/cfag12864b.h
5170
5171 CFAG12864BFB LCD FRAMEBUFFER DRIVER
5172 M:      Miguel Ojeda <[email protected]>
5173 S:      Maintained
5174 F:      drivers/auxdisplay/cfag12864bfb.c
5175 F:      include/linux/cfag12864b.h
5176
5177 CHAR and MISC DRIVERS
5178 M:      Arnd Bergmann <[email protected]>
5179 M:      Greg Kroah-Hartman <[email protected]>
5180 S:      Supported
5181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
5182 F:      drivers/char/
5183 F:      drivers/misc/
5184 F:      include/linux/miscdevice.h
5185 X:      drivers/char/agp/
5186 X:      drivers/char/hw_random/
5187 X:      drivers/char/ipmi/
5188 X:      drivers/char/random.c
5189 X:      drivers/char/tpm/
5190
5191 CHARGERLAB POWER-Z HARDWARE MONITOR DRIVER
5192 M:      Thomas Weißschuh <[email protected]>
5193 L:      [email protected]
5194 S:      Maintained
5195 F:      Documentation/hwmon/powerz.rst
5196 F:      drivers/hwmon/powerz.c
5197
5198 CHECKPATCH
5199 M:      Andy Whitcroft <[email protected]>
5200 M:      Joe Perches <[email protected]>
5201 R:      Dwaipayan Ray <[email protected]>
5202 R:      Lukas Bulwahn <[email protected]>
5203 S:      Maintained
5204 F:      scripts/checkpatch.pl
5205
5206 CHECKPATCH DOCUMENTATION
5207 M:      Dwaipayan Ray <[email protected]>
5208 M:      Lukas Bulwahn <[email protected]>
5209 R:      Joe Perches <[email protected]>
5210 S:      Maintained
5211 F:      Documentation/dev-tools/checkpatch.rst
5212
5213 CHINESE DOCUMENTATION
5214 M:      Alex Shi <[email protected]>
5215 M:      Yanteng Si <[email protected]>
5216 S:      Maintained
5217 F:      Documentation/translations/zh_CN/
5218
5219 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
5220 M:      Peter Chen <[email protected]>
5221 L:      [email protected]
5222 S:      Maintained
5223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
5224 F:      drivers/usb/chipidea/
5225
5226 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
5227 M:      Hans de Goede <[email protected]>
5228 L:      [email protected]
5229 S:      Maintained
5230 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
5231 F:      drivers/input/touchscreen/chipone_icn8318.c
5232
5233 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
5234 M:      Hans de Goede <[email protected]>
5235 L:      [email protected]
5236 S:      Maintained
5237 F:      drivers/input/touchscreen/chipone_icn8505.c
5238
5239 CHROME HARDWARE PLATFORM SUPPORT
5240 M:      Benson Leung <[email protected]>
5241 M:      Tzung-Bi Shih <[email protected]>
5242 L:      [email protected]
5243 S:      Maintained
5244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
5245 F:      drivers/platform/chrome/
5246
5247 CHROMEOS EC CODEC DRIVER
5248 M:      Cheng-Yi Chiang <[email protected]>
5249 M:      Tzung-Bi Shih <[email protected]>
5250 R:      Guenter Roeck <[email protected]>
5251 L:      [email protected]
5252 S:      Maintained
5253 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
5254 F:      sound/soc/codecs/cros_ec_codec.*
5255
5256 CHROMEOS EC CHARGE CONTROL
5257 M:      Thomas Weißschuh <[email protected]>
5258 S:      Maintained
5259 F:      drivers/power/supply/cros_charge-control.c
5260
5261 CHROMEOS EC HARDWARE MONITORING
5262 M:      Thomas Weißschuh <[email protected]>
5263 L:      [email protected]
5264 L:      [email protected]
5265 S:      Maintained
5266 F:      Documentation/hwmon/cros_ec_hwmon.rst
5267 F:      drivers/hwmon/cros_ec_hwmon.c
5268
5269 CHROMEOS EC LED DRIVER
5270 M:      Thomas Weißschuh <[email protected]>
5271 S:      Maintained
5272 F:      drivers/leds/leds-cros_ec.c
5273
5274 CHROMEOS EC SUBDRIVERS
5275 M:      Benson Leung <[email protected]>
5276 R:      Guenter Roeck <[email protected]>
5277 L:      [email protected]
5278 S:      Maintained
5279 F:      drivers/power/supply/cros_charge-control.c
5280 F:      drivers/power/supply/cros_usbpd-charger.c
5281 N:      cros_ec
5282 N:      cros-ec
5283
5284 CHROMEOS EC UART DRIVER
5285 M:      Bhanu Prakash Maiya <[email protected]>
5286 R:      Benson Leung <[email protected]>
5287 R:      Tzung-Bi Shih <[email protected]>
5288 S:      Maintained
5289 F:      drivers/platform/chrome/cros_ec_uart.c
5290
5291 CHROMEOS EC USB PD NOTIFY DRIVER
5292 M:      Prashant Malani <[email protected]>
5293 L:      [email protected]
5294 S:      Maintained
5295 F:      drivers/platform/chrome/cros_usbpd_notify.c
5296 F:      include/linux/platform_data/cros_usbpd_notify.h
5297
5298 CHROMEOS EC USB TYPE-C DRIVER
5299 M:      Prashant Malani <[email protected]>
5300 L:      [email protected]
5301 S:      Maintained
5302 F:      drivers/platform/chrome/cros_ec_typec.*
5303 F:      drivers/platform/chrome/cros_typec_switch.c
5304 F:      drivers/platform/chrome/cros_typec_vdm.*
5305
5306 CHROMEOS HPS DRIVER
5307 M:      Dan Callaghan <[email protected]>
5308 R:      Sami Kyöstilä <[email protected]>
5309 S:      Maintained
5310 F:      drivers/platform/chrome/cros_hps_i2c.c
5311
5312 CHROMEOS EC WATCHDOG
5313 M:      Lukasz Majczak <[email protected]>
5314 L:      [email protected]
5315 S:      Maintained
5316 F:      drivers/watchdog/cros_ec_wdt.c
5317
5318 CHRONTEL CH7322 CEC DRIVER
5319 M:      Joe Tessler <[email protected]>
5320 L:      [email protected]
5321 S:      Maintained
5322 T:      git git://linuxtv.org/media_tree.git
5323 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
5324 F:      drivers/media/cec/i2c/ch7322.c
5325
5326 CIRRUS LOGIC AUDIO CODEC DRIVERS
5327 M:      David Rhodes <[email protected]>
5328 M:      Richard Fitzgerald <[email protected]>
5329 L:      [email protected]
5330 L:      [email protected]
5331 S:      Maintained
5332 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
5333 F:      drivers/mfd/cs42l43*
5334 F:      drivers/pinctrl/cirrus/pinctrl-cs42l43*
5335 F:      drivers/spi/spi-cs42l43*
5336 F:      include/dt-bindings/sound/cs*
5337 F:      include/linux/mfd/cs42l43*
5338 F:      include/sound/cs*
5339 F:      sound/pci/hda/cirrus*
5340 F:      sound/pci/hda/cs*
5341 F:      sound/pci/hda/hda_component*
5342 F:      sound/pci/hda/hda_cs_dsp_ctl.*
5343 F:      sound/soc/codecs/cs*
5344
5345 CIRRUS LOGIC HAPTIC DRIVERS
5346 M:      James Ogletree <[email protected]>
5347 M:      Fred Treven <[email protected]>
5348 M:      Ben Bright <[email protected]>
5349 L:      [email protected]
5350 S:      Supported
5351 F:      Documentation/devicetree/bindings/input/cirrus,cs40l50.yaml
5352 F:      drivers/input/misc/cs40l*
5353 F:      drivers/mfd/cs40l*
5354 F:      include/linux/mfd/cs40l*
5355 F:      sound/soc/codecs/cs40l*
5356
5357 CIRRUS LOGIC DSP FIRMWARE DRIVER
5358 M:      Simon Trimmer <[email protected]>
5359 M:      Charles Keepax <[email protected]>
5360 M:      Richard Fitzgerald <[email protected]>
5361 L:      [email protected]
5362 S:      Supported
5363 W:      https://github.com/CirrusLogic/linux-drivers/wiki
5364 T:      git https://github.com/CirrusLogic/linux-drivers.git
5365 F:      drivers/firmware/cirrus/*
5366 F:      include/linux/firmware/cirrus/*
5367
5368 CIRRUS LOGIC EP93XX ETHERNET DRIVER
5369 M:      Hartley Sweeten <[email protected]>
5370 L:      [email protected]
5371 S:      Maintained
5372 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
5373
5374 CIRRUS LOGIC LOCHNAGAR DRIVER
5375 M:      Charles Keepax <[email protected]>
5376 M:      Richard Fitzgerald <[email protected]>
5377 L:      [email protected]
5378 S:      Supported
5379 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
5380 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
5381 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
5382 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
5383 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
5384 F:      Documentation/hwmon/lochnagar.rst
5385 F:      drivers/clk/clk-lochnagar.c
5386 F:      drivers/hwmon/lochnagar-hwmon.c
5387 F:      drivers/mfd/lochnagar-i2c.c
5388 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
5389 F:      drivers/regulator/lochnagar-regulator.c
5390 F:      include/dt-bindings/clock/lochnagar.h
5391 F:      include/dt-bindings/pinctrl/lochnagar.h
5392 F:      include/linux/mfd/lochnagar*
5393 F:      sound/soc/codecs/lochnagar-sc.c
5394
5395 CIRRUS LOGIC MADERA CODEC DRIVERS
5396 M:      Charles Keepax <[email protected]>
5397 M:      Richard Fitzgerald <[email protected]>
5398 L:      [email protected]
5399 L:      [email protected]
5400 S:      Supported
5401 W:      https://github.com/CirrusLogic/linux-drivers/wiki
5402 T:      git https://github.com/CirrusLogic/linux-drivers.git
5403 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
5404 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
5405 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
5406 F:      drivers/gpio/gpio-madera*
5407 F:      drivers/irqchip/irq-madera*
5408 F:      drivers/mfd/cs47l*
5409 F:      drivers/mfd/madera*
5410 F:      drivers/pinctrl/cirrus/*
5411 F:      include/dt-bindings/sound/madera*
5412 F:      include/linux/irqchip/irq-madera*
5413 F:      include/linux/mfd/madera/*
5414 F:      include/sound/madera*
5415 F:      sound/soc/codecs/cs47l*
5416 F:      sound/soc/codecs/madera*
5417
5418 CISCO FCOE HBA DRIVER
5419 M:      Satish Kharat <[email protected]>
5420 M:      Sesidhar Baddela <[email protected]>
5421 M:      Karan Tilak Kumar <[email protected]>
5422 L:      [email protected]
5423 S:      Supported
5424 F:      drivers/scsi/fnic/
5425
5426 CISCO SCSI HBA DRIVER
5427 M:      Karan Tilak Kumar <[email protected]>
5428 M:      Sesidhar Baddela <[email protected]>
5429 L:      [email protected]
5430 S:      Supported
5431 F:      drivers/scsi/snic/
5432
5433 CISCO VIC ETHERNET NIC DRIVER
5434 M:      Christian Benvenuti <[email protected]>
5435 M:      Satish Kharat <[email protected]>
5436 S:      Supported
5437 F:      drivers/net/ethernet/cisco/enic/
5438
5439 CISCO VIC LOW LATENCY NIC DRIVER
5440 M:      Christian Benvenuti <[email protected]>
5441 M:      Nelson Escobar <[email protected]>
5442 S:      Supported
5443 F:      drivers/infiniband/hw/usnic/
5444
5445 CLANG CONTROL FLOW INTEGRITY SUPPORT
5446 M:      Sami Tolvanen <[email protected]>
5447 M:      Kees Cook <[email protected]>
5448 R:      Nathan Chancellor <[email protected]>
5449 L:      [email protected]
5450 S:      Supported
5451 B:      https://github.com/ClangBuiltLinux/linux/issues
5452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5453 F:      include/linux/cfi.h
5454 F:      kernel/cfi.c
5455
5456 CLANG-FORMAT FILE
5457 M:      Miguel Ojeda <[email protected]>
5458 S:      Maintained
5459 F:      .clang-format
5460
5461 CLANG/LLVM BUILD SUPPORT
5462 M:      Nathan Chancellor <[email protected]>
5463 R:      Nick Desaulniers <[email protected]>
5464 R:      Bill Wendling <[email protected]>
5465 R:      Justin Stitt <[email protected]>
5466 L:      [email protected]
5467 S:      Supported
5468 W:      https://clangbuiltlinux.github.io/
5469 B:      https://github.com/ClangBuiltLinux/linux/issues
5470 C:      irc://irc.libera.chat/clangbuiltlinux
5471 F:      Documentation/kbuild/llvm.rst
5472 F:      include/linux/compiler-clang.h
5473 F:      scripts/Makefile.clang
5474 F:      scripts/clang-tools/
5475 K:      \b(?i:clang|llvm)\b
5476
5477 CLK API
5478 M:      Russell King <[email protected]>
5479 L:      [email protected]
5480 S:      Maintained
5481 F:      include/linux/clk.h
5482
5483 CLOCKSOURCE, CLOCKEVENT DRIVERS
5484 M:      Daniel Lezcano <[email protected]>
5485 M:      Thomas Gleixner <[email protected]>
5486 L:      [email protected]
5487 S:      Supported
5488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5489 F:      Documentation/devicetree/bindings/timer/
5490 F:      drivers/clocksource/
5491
5492 CLOSURES
5493 M:      Kent Overstreet <[email protected]>
5494 L:      [email protected]
5495 S:      Supported
5496 C:      irc://irc.oftc.net/bcache
5497 F:      include/linux/closure.h
5498 F:      lib/closure.c
5499
5500 CMPC ACPI DRIVER
5501 M:      Thadeu Lima de Souza Cascardo <[email protected]>
5502 L:      [email protected]
5503 S:      Supported
5504 F:      drivers/platform/x86/classmate-laptop.c
5505
5506 COBALT MEDIA DRIVER
5507 M:      Hans Verkuil <[email protected]>
5508 L:      [email protected]
5509 S:      Supported
5510 W:      https://linuxtv.org
5511 T:      git git://linuxtv.org/media_tree.git
5512 F:      drivers/media/pci/cobalt/
5513
5514 COCCINELLE/Semantic Patches (SmPL)
5515 M:      Julia Lawall <[email protected]>
5516 M:      Nicolas Palix <[email protected]>
5517 L:      [email protected] (moderated for non-subscribers)
5518 S:      Supported
5519 W:      https://coccinelle.gitlabpages.inria.fr/website/
5520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5521 F:      Documentation/dev-tools/coccinelle.rst
5522 F:      scripts/coccicheck
5523 F:      scripts/coccinelle/
5524
5525 CODA FILE SYSTEM
5526 M:      Jan Harkes <[email protected]>
5527 M:      [email protected]
5528 L:      [email protected]
5529 S:      Maintained
5530 W:      http://www.coda.cs.cmu.edu/
5531 F:      Documentation/filesystems/coda.rst
5532 F:      fs/coda/
5533 F:      include/linux/coda*.h
5534 F:      include/uapi/linux/coda*.h
5535
5536 CODA V4L2 MEM2MEM DRIVER
5537 M:      Philipp Zabel <[email protected]>
5538 L:      [email protected]
5539 S:      Maintained
5540 F:      Documentation/devicetree/bindings/media/coda.yaml
5541 F:      drivers/media/platform/chips-media/coda
5542
5543 CODE OF CONDUCT
5544 M:      Greg Kroah-Hartman <[email protected]>
5545 S:      Supported
5546 F:      Documentation/process/code-of-conduct-interpretation.rst
5547 F:      Documentation/process/code-of-conduct.rst
5548
5549 CODE TAGGING
5550 M:      Suren Baghdasaryan <[email protected]>
5551 M:      Kent Overstreet <[email protected]>
5552 S:      Maintained
5553 F:      include/asm-generic/codetag.lds.h
5554 F:      include/linux/codetag.h
5555 F:      lib/codetag.c
5556
5557 COMEDI DRIVERS
5558 M:      Ian Abbott <[email protected]>
5559 M:      H Hartley Sweeten <[email protected]>
5560 S:      Odd Fixes
5561 F:      drivers/comedi/
5562 F:      include/linux/comedi/
5563 F:      include/uapi/linux/comedi.h
5564
5565 COMMON CLK FRAMEWORK
5566 M:      Michael Turquette <[email protected]>
5567 M:      Stephen Boyd <[email protected]>
5568 L:      [email protected]
5569 S:      Maintained
5570 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5572 F:      Documentation/devicetree/bindings/clock/
5573 F:      drivers/clk/
5574 F:      include/dt-bindings/clock/
5575 F:      include/linux/clk-pr*
5576 F:      include/linux/clk/
5577 F:      include/linux/of_clk.h
5578 X:      drivers/clk/clkdev.c
5579
5580 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5581 M:      Steve French <[email protected]>
5582 R:      Paulo Alcantara <[email protected]> (DFS, global name space)
5583 R:      Ronnie Sahlberg <[email protected]> (directory leases, sparse files)
5584 R:      Shyam Prasad N <[email protected]> (multichannel)
5585 R:      Tom Talpey <[email protected]> (RDMA, smbdirect)
5586 R:      Bharath SM <[email protected]> (deferred close, directory leases)
5587 L:      [email protected]
5588 L:      [email protected] (moderated for non-subscribers)
5589 S:      Supported
5590 W:      https://wiki.samba.org/index.php/LinuxCIFS
5591 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5592 F:      Documentation/admin-guide/cifs/
5593 F:      fs/smb/client/
5594 F:      fs/smb/common/
5595 F:      include/uapi/linux/cifs
5596
5597 COMPACTPCI HOTPLUG CORE
5598 M:      Scott Murray <[email protected]>
5599 L:      [email protected]
5600 S:      Maintained
5601 F:      drivers/pci/hotplug/cpci_hotplug*
5602
5603 COMPACTPCI HOTPLUG GENERIC DRIVER
5604 M:      Scott Murray <[email protected]>
5605 L:      [email protected]
5606 S:      Maintained
5607 F:      drivers/pci/hotplug/cpcihp_generic.c
5608
5609 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5610 M:      Scott Murray <[email protected]>
5611 L:      [email protected]
5612 S:      Maintained
5613 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5614
5615 COMPAL LAPTOP SUPPORT
5616 M:      Cezary Jackiewicz <[email protected]>
5617 L:      [email protected]
5618 S:      Maintained
5619 F:      drivers/platform/x86/compal-laptop.c
5620
5621 COMPILER ATTRIBUTES
5622 M:      Miguel Ojeda <[email protected]>
5623 S:      Maintained
5624 F:      include/linux/compiler_attributes.h
5625
5626 COMPUTE EXPRESS LINK (CXL)
5627 M:      Davidlohr Bueso <[email protected]>
5628 M:      Jonathan Cameron <[email protected]>
5629 M:      Dave Jiang <[email protected]>
5630 M:      Alison Schofield <[email protected]>
5631 M:      Vishal Verma <[email protected]>
5632 M:      Ira Weiny <[email protected]>
5633 M:      Dan Williams <[email protected]>
5634 L:      [email protected]
5635 S:      Maintained
5636 F:      Documentation/driver-api/cxl
5637 F:      drivers/cxl/
5638 F:      include/linux/einj-cxl.h
5639 F:      include/linux/cxl-event.h
5640 F:      include/uapi/linux/cxl_mem.h
5641 F:      tools/testing/cxl/
5642
5643 COMPUTE EXPRESS LINK PMU (CPMU)
5644 M:      Jonathan Cameron <[email protected]>
5645 L:      [email protected]
5646 S:      Maintained
5647 F:      Documentation/admin-guide/perf/cxl.rst
5648 F:      drivers/perf/cxl_pmu.c
5649
5650 CONEXANT ACCESSRUNNER USB DRIVER
5651 L:      [email protected]
5652 S:      Orphan
5653 W:      http://accessrunner.sourceforge.net/
5654 F:      drivers/usb/atm/cxacru.c
5655
5656 CONFIDENTIAL COMPUTING THREAT MODEL FOR X86 VIRTUALIZATION (SNP/TDX)
5657 M:      Elena Reshetova <[email protected]>
5658 M:      Carlos Bilbao <[email protected]>
5659 S:      Maintained
5660 F:      Documentation/security/snp-tdx-threat-model.rst
5661
5662 CONFIGFS
5663 M:      Joel Becker <[email protected]>
5664 M:      Christoph Hellwig <[email protected]>
5665 S:      Supported
5666 T:      git git://git.infradead.org/users/hch/configfs.git
5667 F:      fs/configfs/
5668 F:      include/linux/configfs.h
5669 F:      samples/configfs/
5670
5671 CONSOLE SUBSYSTEM
5672 M:      Greg Kroah-Hartman <[email protected]>
5673 S:      Supported
5674 F:      drivers/video/console/
5675 F:      include/linux/console*
5676
5677 CONTEXT TRACKING
5678 M:      Frederic Weisbecker <[email protected]>
5679 M:      "Paul E. McKenney" <[email protected]>
5680 S:      Maintained
5681 F:      include/linux/context_tracking*
5682 F:      kernel/context_tracking.c
5683
5684 CONTROL GROUP (CGROUP)
5685 M:      Tejun Heo <[email protected]>
5686 M:      Zefan Li <[email protected]>
5687 M:      Johannes Weiner <[email protected]>
5688 M:      Michal Koutný <[email protected]>
5689 L:      [email protected]
5690 S:      Maintained
5691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5692 F:      Documentation/admin-guide/cgroup-v1/
5693 F:      Documentation/admin-guide/cgroup-v2.rst
5694 F:      include/linux/cgroup*
5695 F:      kernel/cgroup/
5696 F:      tools/testing/selftests/cgroup/
5697
5698 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5699 M:      Tejun Heo <[email protected]>
5700 M:      Josef Bacik <[email protected]>
5701 M:      Jens Axboe <[email protected]>
5702 L:      [email protected]
5703 L:      [email protected]
5704 T:      git git://git.kernel.dk/linux-block
5705 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5706 F:      block/bfq-cgroup.c
5707 F:      block/blk-cgroup.c
5708 F:      block/blk-iocost.c
5709 F:      block/blk-iolatency.c
5710 F:      block/blk-throttle.c
5711 F:      include/linux/blk-cgroup.h
5712
5713 CONTROL GROUP - CPUSET
5714 M:      Waiman Long <[email protected]>
5715 M:      Zefan Li <[email protected]>
5716 L:      [email protected]
5717 S:      Maintained
5718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5719 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5720 F:      include/linux/cpuset.h
5721 F:      kernel/cgroup/cpuset.c
5722 F:      tools/testing/selftests/cgroup/test_cpuset.c
5723 F:      tools/testing/selftests/cgroup/test_cpuset_prs.sh
5724
5725 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5726 M:      Johannes Weiner <[email protected]>
5727 M:      Michal Hocko <[email protected]>
5728 M:      Roman Gushchin <[email protected]>
5729 M:      Shakeel Butt <[email protected]>
5730 R:      Muchun Song <[email protected]>
5731 L:      [email protected]
5732 L:      [email protected]
5733 S:      Maintained
5734 F:      include/linux/memcontrol.h
5735 F:      mm/memcontrol.c
5736 F:      mm/memcontrol-v1.c
5737 F:      mm/memcontrol-v1.h
5738 F:      mm/swap_cgroup.c
5739 F:      samples/cgroup/*
5740 F:      tools/testing/selftests/cgroup/memcg_protection.m
5741 F:      tools/testing/selftests/cgroup/test_hugetlb_memcg.c
5742 F:      tools/testing/selftests/cgroup/test_kmem.c
5743 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5744
5745 CORETEMP HARDWARE MONITORING DRIVER
5746 M:      Fenghua Yu <[email protected]>
5747 L:      [email protected]
5748 S:      Maintained
5749 F:      Documentation/hwmon/coretemp.rst
5750 F:      drivers/hwmon/coretemp.c
5751
5752 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5753 M:      Marius Zachmann <[email protected]>
5754 L:      [email protected]
5755 S:      Maintained
5756 F:      drivers/hwmon/corsair-cpro.c
5757
5758 CORSAIR-PSU HARDWARE MONITOR DRIVER
5759 M:      Wilken Gottwalt <[email protected]>
5760 L:      [email protected]
5761 S:      Maintained
5762 F:      Documentation/hwmon/corsair-psu.rst
5763 F:      drivers/hwmon/corsair-psu.c
5764
5765 COUNTER SUBSYSTEM
5766 M:      William Breathitt Gray <[email protected]>
5767 L:      [email protected]
5768 S:      Maintained
5769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5770 F:      Documentation/ABI/testing/sysfs-bus-counter
5771 F:      Documentation/driver-api/generic-counter.rst
5772 F:      drivers/counter/
5773 F:      include/linux/counter.h
5774 F:      include/uapi/linux/counter.h
5775 F:      tools/counter/
5776
5777 COUNTER WATCH EVENTS TOOL
5778 M:      Fabrice Gasnier <[email protected]>
5779 L:      [email protected]
5780 S:      Maintained
5781 F:      tools/counter/counter_watch_events.c
5782
5783 CP2615 I2C DRIVER
5784 M:      Bence Csókás <[email protected]>
5785 S:      Maintained
5786 F:      drivers/i2c/busses/i2c-cp2615.c
5787
5788 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5789 M:      Viresh Kumar <[email protected]>
5790 M:      Sudeep Holla <[email protected]>
5791 L:      [email protected]
5792 S:      Maintained
5793 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5794 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5795
5796 CPU FREQUENCY SCALING FRAMEWORK
5797 M:      "Rafael J. Wysocki" <[email protected]>
5798 M:      Viresh Kumar <[email protected]>
5799 L:      [email protected]
5800 S:      Maintained
5801 B:      https://bugzilla.kernel.org
5802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5804 F:      Documentation/admin-guide/pm/cpufreq.rst
5805 F:      Documentation/admin-guide/pm/intel_pstate.rst
5806 F:      Documentation/cpu-freq/
5807 F:      Documentation/devicetree/bindings/cpufreq/
5808 F:      drivers/cpufreq/
5809 F:      include/linux/cpufreq.h
5810 F:      include/linux/sched/cpufreq.h
5811 F:      kernel/sched/cpufreq*.c
5812 F:      tools/testing/selftests/cpufreq/
5813
5814 CPU HOTPLUG
5815 M:      Thomas Gleixner <[email protected]>
5816 M:      Peter Zijlstra <[email protected]>
5817 L:      [email protected]
5818 S:      Maintained
5819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git smp/core
5820 F:      include/linux/cpu.h
5821 F:      include/linux/cpuhotplug.h
5822 F:      include/linux/smpboot.h
5823 F:      kernel/cpu.c
5824 F:      kernel/smpboot.*
5825
5826 CPU IDLE TIME MANAGEMENT FRAMEWORK
5827 M:      "Rafael J. Wysocki" <[email protected]>
5828 M:      Daniel Lezcano <[email protected]>
5829 L:      [email protected]
5830 S:      Maintained
5831 B:      https://bugzilla.kernel.org
5832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5833 F:      Documentation/admin-guide/pm/cpuidle.rst
5834 F:      Documentation/driver-api/pm/cpuidle.rst
5835 F:      drivers/cpuidle/
5836 F:      include/linux/cpuidle.h
5837
5838 CPU POWER MONITORING SUBSYSTEM
5839 M:      Thomas Renninger <[email protected]>
5840 M:      Shuah Khan <[email protected]>
5841 M:      Shuah Khan <[email protected]>
5842 L:      [email protected]
5843 S:      Maintained
5844 F:      tools/power/cpupower/
5845
5846 CPUID/MSR DRIVER
5847 M:      "H. Peter Anvin" <[email protected]>
5848 S:      Maintained
5849 F:      arch/x86/kernel/cpuid.c
5850 F:      arch/x86/kernel/msr.c
5851
5852 CPUIDLE DRIVER - ARM BIG LITTLE
5853 M:      Lorenzo Pieralisi <[email protected]>
5854 M:      Daniel Lezcano <[email protected]>
5855 L:      [email protected]
5856 L:      [email protected] (moderated for non-subscribers)
5857 S:      Maintained
5858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5859 F:      drivers/cpuidle/cpuidle-big_little.c
5860
5861 CPUIDLE DRIVER - ARM EXYNOS
5862 M:      Daniel Lezcano <[email protected]>
5863 M:      Kukjin Kim <[email protected]>
5864 R:      Krzysztof Kozlowski <[email protected]>
5865 L:      [email protected]
5866 L:      [email protected]
5867 S:      Maintained
5868 F:      arch/arm/mach-exynos/pm.c
5869 F:      drivers/cpuidle/cpuidle-exynos.c
5870 F:      include/linux/platform_data/cpuidle-exynos.h
5871
5872 CPUIDLE DRIVER - ARM PSCI
5873 M:      Lorenzo Pieralisi <[email protected]>
5874 M:      Sudeep Holla <[email protected]>
5875 L:      [email protected]
5876 L:      [email protected] (moderated for non-subscribers)
5877 S:      Supported
5878 F:      drivers/cpuidle/cpuidle-psci.c
5879
5880 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5881 M:      Ulf Hansson <[email protected]>
5882 L:      [email protected]
5883 L:      [email protected] (moderated for non-subscribers)
5884 S:      Supported
5885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm.git
5886 F:      drivers/cpuidle/cpuidle-psci-domain.c
5887 F:      drivers/cpuidle/cpuidle-psci.h
5888
5889 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5890 M:      Ulf Hansson <[email protected]>
5891 L:      [email protected]
5892 S:      Supported
5893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm.git
5894 F:      drivers/cpuidle/dt_idle_genpd.c
5895 F:      drivers/cpuidle/dt_idle_genpd.h
5896
5897 CPUIDLE DRIVER - RISC-V SBI
5898 M:      Anup Patel <[email protected]>
5899 L:      [email protected]
5900 L:      [email protected]
5901 S:      Maintained
5902 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5903
5904 CRAMFS FILESYSTEM
5905 M:      Nicolas Pitre <[email protected]>
5906 S:      Maintained
5907 F:      Documentation/filesystems/cramfs.rst
5908 F:      fs/cramfs/
5909
5910 CREATIVE SB0540
5911 M:      Bastien Nocera <[email protected]>
5912 L:      [email protected]
5913 S:      Maintained
5914 F:      drivers/hid/hid-creative-sb0540.c
5915
5916 CRYPTO API
5917 M:      Herbert Xu <[email protected]>
5918 M:      "David S. Miller" <[email protected]>
5919 L:      [email protected]
5920 S:      Maintained
5921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5923 F:      Documentation/crypto/
5924 F:      Documentation/devicetree/bindings/crypto/
5925 F:      arch/*/crypto/
5926 F:      crypto/
5927 F:      drivers/crypto/
5928 F:      include/crypto/
5929 F:      include/linux/crypto*
5930 F:      lib/crypto/
5931
5932 CRYPTO SPEED TEST COMPARE
5933 M:      Wang Jinchao <[email protected]>
5934 L:      [email protected]
5935 S:      Maintained
5936 F:      tools/crypto/tcrypt/tcrypt_speed_compare.py
5937
5938 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5939 M:      Neil Horman <[email protected]>
5940 L:      [email protected]
5941 S:      Maintained
5942 F:      crypto/ansi_cprng.c
5943 F:      crypto/rng.c
5944
5945 CS3308 MEDIA DRIVER
5946 M:      Hans Verkuil <[email protected]>
5947 L:      [email protected]
5948 S:      Odd Fixes
5949 W:      http://linuxtv.org
5950 T:      git git://linuxtv.org/media_tree.git
5951 F:      drivers/media/i2c/cs3308.c
5952
5953 CS5535 Audio ALSA driver
5954 M:      Jaya Kumar <[email protected]>
5955 S:      Maintained
5956 F:      sound/pci/cs5535audio/
5957
5958 CTU CAN FD DRIVER
5959 M:      Pavel Pisa <[email protected]>
5960 M:      Ondrej Ille <[email protected]>
5961 L:      [email protected]
5962 S:      Maintained
5963 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5964 F:      drivers/net/can/ctucanfd/
5965
5966 CVE ASSIGNMENT CONTACT
5967 M:      CVE Assignment Team <[email protected]>
5968 S:      Maintained
5969 F:      Documentation/process/cve.rst
5970
5971 CW1200 WLAN driver
5972 S:      Orphan
5973 F:      drivers/net/wireless/st/cw1200/
5974 F:      include/linux/platform_data/net-cw1200.h
5975
5976 CX18 VIDEO4LINUX DRIVER
5977 M:      Andy Walls <[email protected]>
5978 L:      [email protected]
5979 S:      Maintained
5980 W:      https://linuxtv.org
5981 T:      git git://linuxtv.org/media_tree.git
5982 F:      drivers/media/pci/cx18/
5983 F:      include/uapi/linux/ivtv*
5984
5985 CX2341X MPEG ENCODER HELPER MODULE
5986 M:      Hans Verkuil <[email protected]>
5987 L:      [email protected]
5988 S:      Maintained
5989 W:      https://linuxtv.org
5990 T:      git git://linuxtv.org/media_tree.git
5991 F:      drivers/media/common/cx2341x*
5992 F:      include/media/drv-intf/cx2341x.h
5993
5994 CX24120 MEDIA DRIVER
5995 M:      Jemma Denson <[email protected]>
5996 M:      Patrick Boettcher <[email protected]>
5997 L:      [email protected]
5998 S:      Maintained
5999 W:      https://linuxtv.org
6000 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6001 F:      drivers/media/dvb-frontends/cx24120*
6002
6003 CX88 VIDEO4LINUX DRIVER
6004 M:      Mauro Carvalho Chehab <[email protected]>
6005 L:      [email protected]
6006 S:      Odd fixes
6007 W:      https://linuxtv.org
6008 T:      git git://linuxtv.org/media_tree.git
6009 F:      Documentation/driver-api/media/drivers/cx88*
6010 F:      drivers/media/pci/cx88/
6011
6012 CXD2820R MEDIA DRIVER
6013 L:      [email protected]
6014 S:      Orphan
6015 W:      https://linuxtv.org
6016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6017 F:      drivers/media/dvb-frontends/cxd2820r*
6018
6019 CXGB3 ETHERNET DRIVER (CXGB3)
6020 M:      Potnuri Bharat Teja <[email protected]>
6021 L:      [email protected]
6022 S:      Supported
6023 W:      http://www.chelsio.com
6024 F:      drivers/net/ethernet/chelsio/cxgb3/
6025
6026 CXGB3 ISCSI DRIVER (CXGB3I)
6027 M:      Varun Prakash <[email protected]>
6028 L:      [email protected]
6029 S:      Supported
6030 W:      http://www.chelsio.com
6031 F:      drivers/scsi/cxgbi/cxgb3i
6032
6033 CXGB4 CRYPTO DRIVER (chcr)
6034 M:      Ayush Sawal <[email protected]>
6035 L:      [email protected]
6036 S:      Supported
6037 W:      http://www.chelsio.com
6038 F:      drivers/crypto/chelsio
6039
6040 CXGB4 ETHERNET DRIVER (CXGB4)
6041 M:      Potnuri Bharat Teja <[email protected]>
6042 L:      [email protected]
6043 S:      Supported
6044 W:      http://www.chelsio.com
6045 F:      drivers/net/ethernet/chelsio/cxgb4/
6046
6047 CXGB4 INLINE CRYPTO DRIVER
6048 M:      Ayush Sawal <[email protected]>
6049 L:      [email protected]
6050 S:      Supported
6051 W:      http://www.chelsio.com
6052 F:      drivers/net/ethernet/chelsio/inline_crypto/
6053
6054 CXGB4 ISCSI DRIVER (CXGB4I)
6055 M:      Varun Prakash <[email protected]>
6056 L:      [email protected]
6057 S:      Supported
6058 W:      http://www.chelsio.com
6059 F:      drivers/scsi/cxgbi/cxgb4i
6060
6061 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
6062 M:      Potnuri Bharat Teja <[email protected]>
6063 L:      [email protected]
6064 S:      Supported
6065 W:      http://www.openfabrics.org
6066 F:      drivers/infiniband/hw/cxgb4/
6067 F:      include/uapi/rdma/cxgb4-abi.h
6068
6069 CXGB4VF ETHERNET DRIVER (CXGB4VF)
6070 M:      Potnuri Bharat Teja <[email protected]>
6071 L:      [email protected]
6072 S:      Supported
6073 W:      http://www.chelsio.com
6074 F:      drivers/net/ethernet/chelsio/cxgb4vf/
6075
6076 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
6077 M:      Frederic Barrat <[email protected]>
6078 M:      Andrew Donnellan <[email protected]>
6079 L:      [email protected]
6080 S:      Supported
6081 F:      Documentation/ABI/testing/sysfs-class-cxl
6082 F:      Documentation/arch/powerpc/cxl.rst
6083 F:      arch/powerpc/platforms/powernv/pci-cxl.c
6084 F:      drivers/misc/cxl/
6085 F:      include/misc/cxl*
6086 F:      include/uapi/misc/cxl.h
6087
6088 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
6089 M:      Manoj N. Kumar <[email protected]>
6090 M:      Uma Krishnan <[email protected]>
6091 L:      [email protected]
6092 S:      Obsolete
6093 F:      Documentation/arch/powerpc/cxlflash.rst
6094 F:      drivers/scsi/cxlflash/
6095 F:      include/uapi/scsi/cxlflash_ioctl.h
6096
6097 CYBERPRO FB DRIVER
6098 M:      Russell King <[email protected]>
6099 L:      [email protected] (moderated for non-subscribers)
6100 S:      Maintained
6101 W:      http://www.armlinux.org.uk/
6102 F:      drivers/video/fbdev/cyber2000fb.*
6103
6104 CYCLADES PC300 DRIVER
6105 S:      Orphan
6106 F:      drivers/net/wan/pc300*
6107
6108 CYPRESS CY8C95X0 PINCTRL DRIVER
6109 M:      Patrick Rudolph <[email protected]>
6110 L:      [email protected]
6111 S:      Maintained
6112 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
6113
6114 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
6115 M:      Linus Walleij <[email protected]>
6116 L:      [email protected]
6117 S:      Maintained
6118 F:      drivers/input/touchscreen/cy8ctma140.c
6119
6120 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
6121 M:      Yassine Oudjana <[email protected]>
6122 L:      [email protected]
6123 S:      Maintained
6124 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
6125 F:      drivers/input/keyboard/cypress-sf.c
6126
6127 CYPRESS_FIRMWARE MEDIA DRIVER
6128 L:      [email protected]
6129 S:      Orphan
6130 W:      https://linuxtv.org
6131 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6132 F:      drivers/media/common/cypress_firmware*
6133
6134 CYTTSP TOUCHSCREEN DRIVER
6135 M:      Linus Walleij <[email protected]>
6136 L:      [email protected]
6137 S:      Maintained
6138 F:      drivers/input/touchscreen/cyttsp*
6139
6140 D-LINK DIR-685 TOUCHKEYS DRIVER
6141 M:      Linus Walleij <[email protected]>
6142 L:      [email protected]
6143 S:      Supported
6144 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
6145
6146 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
6147 M:      Joshua Kinard <[email protected]>
6148 S:      Maintained
6149 F:      drivers/rtc/rtc-ds1685.c
6150 F:      include/linux/rtc/ds1685.h
6151
6152 DAMA SLAVE for AX.25
6153 M:      Joerg Reuter <[email protected]>
6154 L:      [email protected]
6155 S:      Maintained
6156 W:      http://yaina.de/jreuter/
6157 W:      http://www.qsl.net/dl1bke/
6158 F:      net/ax25/af_ax25.c
6159 F:      net/ax25/ax25_dev.c
6160 F:      net/ax25/ax25_ds_*
6161 F:      net/ax25/ax25_in.c
6162 F:      net/ax25/ax25_out.c
6163 F:      net/ax25/ax25_timer.c
6164 F:      net/ax25/sysctl_net_ax25.c
6165
6166 DATA ACCESS MONITOR
6167 M:      SeongJae Park <[email protected]>
6168 L:      [email protected]
6169 L:      [email protected]
6170 S:      Maintained
6171 W:      https://damonitor.github.io
6172 P:      Documentation/mm/damon/maintainer-profile.rst
6173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
6174 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
6175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sj/linux.git damon/next
6176 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
6177 F:      Documentation/admin-guide/mm/damon/
6178 F:      Documentation/mm/damon/
6179 F:      include/linux/damon.h
6180 F:      include/trace/events/damon.h
6181 F:      mm/damon/
6182 F:      tools/testing/selftests/damon/
6183
6184 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
6185 L:      [email protected]
6186 S:      Orphan
6187 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
6188 F:      drivers/net/ethernet/dec/tulip/dmfe.c
6189
6190 DC390/AM53C974 SCSI driver
6191 M:      Hannes Reinecke <[email protected]>
6192 L:      [email protected]
6193 S:      Maintained
6194 F:      drivers/scsi/am53c974.c
6195
6196 DC395x SCSI driver
6197 M:      Oliver Neukum <[email protected]>
6198 M:      Ali Akcaagac <[email protected]>
6199 M:      Jamie Lenehan <[email protected]>
6200 S:      Maintained
6201 F:      Documentation/scsi/dc395x.rst
6202 F:      drivers/scsi/dc395x.*
6203
6204 DCCP PROTOCOL
6205 L:      [email protected]
6206 S:      Orphan
6207 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
6208 F:      include/linux/dccp.h
6209 F:      include/linux/tfrc.h
6210 F:      include/uapi/linux/dccp.h
6211 F:      net/dccp/
6212
6213 DEBUGOBJECTS:
6214 M:      Thomas Gleixner <[email protected]>
6215 L:      [email protected]
6216 S:      Maintained
6217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/debugobjects
6218 F:      include/linux/debugobjects.h
6219 F:      lib/debugobjects.c
6220
6221 DECSTATION PLATFORM SUPPORT
6222 M:      "Maciej W. Rozycki" <[email protected]>
6223 L:      [email protected]
6224 S:      Maintained
6225 W:      http://www.linux-mips.org/wiki/DECstation
6226 F:      arch/mips/dec/
6227 F:      arch/mips/include/asm/dec/
6228 F:      arch/mips/include/asm/mach-dec/
6229
6230 DEFXX FDDI NETWORK DRIVER
6231 M:      "Maciej W. Rozycki" <[email protected]>
6232 S:      Maintained
6233 F:      drivers/net/fddi/defxx.*
6234
6235 DEFZA FDDI NETWORK DRIVER
6236 M:      "Maciej W. Rozycki" <[email protected]>
6237 S:      Maintained
6238 F:      drivers/net/fddi/defza.*
6239
6240 DEINTERLACE DRIVERS FOR ALLWINNER H3
6241 M:      Jernej Skrabec <[email protected]>
6242 L:      [email protected]
6243 S:      Maintained
6244 T:      git git://linuxtv.org/media_tree.git
6245 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
6246 F:      drivers/media/platform/sunxi/sun8i-di/
6247
6248 DELL LAPTOP DRIVER
6249 M:      Matthew Garrett <[email protected]>
6250 M:      Pali Rohár <[email protected]>
6251 L:      [email protected]
6252 S:      Maintained
6253 F:      drivers/platform/x86/dell/dell-laptop.c
6254
6255 DELL LAPTOP FREEFALL DRIVER
6256 M:      Pali Rohár <[email protected]>
6257 S:      Maintained
6258 F:      drivers/platform/x86/dell/dell-smo8800.c
6259
6260 DELL LAPTOP RBTN DRIVER
6261 M:      Pali Rohár <[email protected]>
6262 S:      Maintained
6263 F:      drivers/platform/x86/dell/dell-rbtn.*
6264
6265 DELL LAPTOP SMM DRIVER
6266 M:      Pali Rohár <[email protected]>
6267 S:      Maintained
6268 F:      Documentation/ABI/obsolete/procfs-i8k
6269 F:      drivers/hwmon/dell-smm-hwmon.c
6270 F:      include/uapi/linux/i8k.h
6271
6272 DELL PC DRIVER
6273 M:      Lyndon Sanche <[email protected]>
6274 L:      [email protected]
6275 S:      Maintained
6276 F:      drivers/platform/x86/dell/dell-pc.c
6277
6278 DELL REMOTE BIOS UPDATE DRIVER
6279 M:      Stuart Hayes <[email protected]>
6280 L:      [email protected]
6281 S:      Maintained
6282 F:      drivers/platform/x86/dell/dell_rbu.c
6283
6284 DELL SMBIOS DRIVER
6285 M:      Pali Rohár <[email protected]>
6286 L:      [email protected]
6287 L:      [email protected]
6288 S:      Maintained
6289 F:      drivers/platform/x86/dell/dell-smbios.*
6290
6291 DELL SMBIOS SMM DRIVER
6292 L:      [email protected]
6293 L:      [email protected]
6294 S:      Maintained
6295 F:      drivers/platform/x86/dell/dell-smbios-smm.c
6296
6297 DELL SMBIOS WMI DRIVER
6298 L:      [email protected]
6299 L:      [email protected]
6300 S:      Maintained
6301 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
6302 F:      tools/wmi/dell-smbios-example.c
6303
6304 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
6305 M:      Stuart Hayes <[email protected]>
6306 L:      [email protected]
6307 S:      Maintained
6308 F:      Documentation/userspace-api/dcdbas.rst
6309 F:      drivers/platform/x86/dell/dcdbas.*
6310
6311 DELL WMI DDV DRIVER
6312 M:      Armin Wolf <[email protected]>
6313 S:      Maintained
6314 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
6315 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
6316 F:      Documentation/wmi/devices/dell-wmi-ddv.rst
6317 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
6318
6319 DELL WMI DESCRIPTOR DRIVER
6320 L:      [email protected]
6321 S:      Maintained
6322 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
6323
6324 DELL WMI HARDWARE PRIVACY SUPPORT
6325 L:      [email protected]
6326 L:      [email protected]
6327 S:      Maintained
6328 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
6329
6330 DELL WMI NOTIFICATIONS DRIVER
6331 M:      Matthew Garrett <[email protected]>
6332 M:      Pali Rohár <[email protected]>
6333 S:      Maintained
6334 F:      drivers/platform/x86/dell/dell-wmi-base.c
6335
6336 DELL WMI SYSMAN DRIVER
6337 M:      Prasanth Ksr <[email protected]>
6338 L:      [email protected]
6339 L:      [email protected]
6340 S:      Maintained
6341 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
6342 F:      drivers/platform/x86/dell/dell-wmi-sysman/
6343
6344 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
6345 M:      Zev Weiss <[email protected]>
6346 L:      [email protected]
6347 S:      Maintained
6348 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
6349
6350 DELTA DPS920AB PSU DRIVER
6351 M:      Robert Marko <[email protected]>
6352 L:      [email protected]
6353 S:      Maintained
6354 F:      Documentation/hwmon/dps920ab.rst
6355 F:      drivers/hwmon/pmbus/dps920ab.c
6356
6357 DELTA NETWORKS TN48M CPLD DRIVERS
6358 M:      Robert Marko <[email protected]>
6359 S:      Maintained
6360 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
6361 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
6362 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
6363 F:      drivers/gpio/gpio-tn48m.c
6364 F:      include/dt-bindings/reset/delta,tn48m-reset.h
6365
6366 DELTA ST MEDIA DRIVER
6367 M:      Hugues Fruchet <[email protected]>
6368 L:      [email protected]
6369 S:      Supported
6370 W:      https://linuxtv.org
6371 T:      git git://linuxtv.org/media_tree.git
6372 F:      drivers/media/platform/st/sti/delta
6373
6374 DENALI NAND DRIVER
6375 L:      [email protected]
6376 S:      Orphan
6377 F:      drivers/mtd/nand/raw/denali*
6378
6379 DESIGNWARE EDMA CORE IP DRIVER
6380 M:      Manivannan Sadhasivam <[email protected]>
6381 R:      Serge Semin <[email protected]>
6382 L:      [email protected]
6383 S:      Maintained
6384 F:      drivers/dma/dw-edma/
6385 F:      include/linux/dma/edma.h
6386
6387 DESIGNWARE USB2 DRD IP DRIVER
6388 M:      Minas Harutyunyan <[email protected]>
6389 L:      [email protected]
6390 S:      Maintained
6391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6392 F:      drivers/usb/dwc2/
6393
6394 DESIGNWARE USB3 DRD IP DRIVER
6395 M:      Thinh Nguyen <[email protected]>
6396 L:      [email protected]
6397 S:      Maintained
6398 F:      drivers/usb/dwc3/
6399
6400 DESIGNWARE XDATA IP DRIVER
6401 L:      [email protected]
6402 S:      Orphan
6403 F:      Documentation/misc-devices/dw-xdata-pcie.rst
6404 F:      drivers/misc/dw-xdata-pcie.c
6405
6406 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
6407 M:      Andreas Klinger <[email protected]>
6408 L:      [email protected]
6409 S:      Maintained
6410 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
6411 F:      drivers/iio/proximity/srf*.c
6412
6413 DEVICE COREDUMP (DEV_COREDUMP)
6414 M:      Johannes Berg <[email protected]>
6415 L:      [email protected]
6416 S:      Maintained
6417 F:      drivers/base/devcoredump.c
6418 F:      include/linux/devcoredump.h
6419
6420 DEVICE DEPENDENCY HELPER SCRIPT
6421 M:      Saravana Kannan <[email protected]>
6422 L:      [email protected]
6423 S:      Maintained
6424 F:      scripts/dev-needs.sh
6425
6426 DEVICE DIRECT ACCESS (DAX)
6427 M:      Dan Williams <[email protected]>
6428 M:      Vishal Verma <[email protected]>
6429 M:      Dave Jiang <[email protected]>
6430 L:      [email protected]
6431 L:      [email protected]
6432 S:      Supported
6433 F:      drivers/dax/
6434
6435 DEVICE FREQUENCY (DEVFREQ)
6436 M:      MyungJoo Ham <[email protected]>
6437 M:      Kyungmin Park <[email protected]>
6438 M:      Chanwoo Choi <[email protected]>
6439 L:      [email protected]
6440 S:      Maintained
6441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
6442 F:      Documentation/devicetree/bindings/devfreq/
6443 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
6444 F:      drivers/devfreq/
6445 F:      include/linux/devfreq.h
6446 F:      include/trace/events/devfreq.h
6447
6448 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
6449 M:      Chanwoo Choi <[email protected]>
6450 L:      [email protected]
6451 S:      Supported
6452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
6453 F:      Documentation/devicetree/bindings/devfreq/event/
6454 F:      drivers/devfreq/devfreq-event.c
6455 F:      drivers/devfreq/event/
6456 F:      include/dt-bindings/pmu/exynos_ppmu.h
6457 F:      include/linux/devfreq-event.h
6458
6459 DEVICE RESOURCE MANAGEMENT HELPERS
6460 M:      Hans de Goede <[email protected]>
6461 R:      Matti Vaittinen <[email protected]>
6462 S:      Maintained
6463 F:      include/linux/devm-helpers.h
6464
6465 DEVICE-MAPPER  (LVM)
6466 M:      Alasdair Kergon <[email protected]>
6467 M:      Mike Snitzer <[email protected]>
6468 M:      Mikulas Patocka <[email protected]>
6469 L:      [email protected]
6470 S:      Maintained
6471 Q:      http://patchwork.kernel.org/project/dm-devel/list/
6472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
6473 F:      Documentation/admin-guide/device-mapper/
6474 F:      drivers/md/Kconfig
6475 F:      drivers/md/Makefile
6476 F:      drivers/md/dm*
6477 F:      drivers/md/persistent-data/
6478 F:      include/linux/device-mapper.h
6479 F:      include/linux/dm-*.h
6480 F:      include/uapi/linux/dm-*.h
6481
6482 DEVICE-MAPPER VDO TARGET
6483 M:      Matthew Sakai <[email protected]>
6484 L:      [email protected]
6485 S:      Maintained
6486 F:      Documentation/admin-guide/device-mapper/vdo*.rst
6487 F:      drivers/md/dm-vdo/
6488
6489 DEVLINK
6490 M:      Jiri Pirko <[email protected]>
6491 L:      [email protected]
6492 S:      Supported
6493 F:      Documentation/networking/devlink
6494 F:      include/net/devlink.h
6495 F:      include/uapi/linux/devlink.h
6496 F:      net/devlink/
6497
6498 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
6499 M:      Christoph Niedermaier <[email protected]>
6500 L:      [email protected]
6501 S:      Maintained
6502 F:      arch/arm/boot/dts/nxp/imx/imx6*-dhcom-*
6503 F:      arch/arm/boot/dts/nxp/imx/imx6*-dhcor-*
6504
6505 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
6506 M:      Marek Vasut <[email protected]>
6507 L:      [email protected]
6508 S:      Maintained
6509 F:      arch/arm/boot/dts/st/stm32mp1*-dhcom-*
6510 F:      arch/arm/boot/dts/st/stm32mp1*-dhcor-*
6511
6512 DIALOG SEMICONDUCTOR DRIVERS
6513 M:      Support Opensource <[email protected]>
6514 S:      Supported
6515 W:      http://www.dialog-semiconductor.com/products
6516 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
6517 F:      Documentation/devicetree/bindings/input/dlg,da9062-onkey.yaml
6518 F:      Documentation/devicetree/bindings/mfd/da90*.txt
6519 F:      Documentation/devicetree/bindings/mfd/dlg,da90*.yaml
6520 F:      Documentation/devicetree/bindings/regulator/da92*.txt
6521 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
6522 F:      Documentation/devicetree/bindings/regulator/dlg,slg51000.yaml
6523 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
6524 F:      Documentation/devicetree/bindings/thermal/dlg,da9062-thermal.yaml
6525 F:      Documentation/devicetree/bindings/watchdog/dlg,da9062-watchdog.yaml
6526 F:      Documentation/hwmon/da90??.rst
6527 F:      drivers/gpio/gpio-da90??.c
6528 F:      drivers/hwmon/da90??-hwmon.c
6529 F:      drivers/iio/adc/da91??-*.c
6530 F:      drivers/input/misc/da72??.[ch]
6531 F:      drivers/input/misc/da90??_onkey.c
6532 F:      drivers/input/touchscreen/da9052_tsi.c
6533 F:      drivers/leds/leds-da90??.c
6534 F:      drivers/mfd/da903x.c
6535 F:      drivers/mfd/da90??-*.c
6536 F:      drivers/mfd/da91??-*.c
6537 F:      drivers/pinctrl/pinctrl-da90??.c
6538 F:      drivers/power/supply/da9052-battery.c
6539 F:      drivers/power/supply/da91??-*.c
6540 F:      drivers/regulator/da9???-regulator.[ch]
6541 F:      drivers/regulator/slg51000-regulator.[ch]
6542 F:      drivers/rtc/rtc-da90??.c
6543 F:      drivers/thermal/da90??-thermal.c
6544 F:      drivers/video/backlight/da90??_bl.c
6545 F:      drivers/watchdog/da90??_wdt.c
6546 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6547 F:      include/linux/mfd/da903x.h
6548 F:      include/linux/mfd/da9052/
6549 F:      include/linux/mfd/da9055/
6550 F:      include/linux/mfd/da9062/
6551 F:      include/linux/mfd/da9063/
6552 F:      include/linux/mfd/da9150/
6553 F:      include/linux/regulator/da9211.h
6554 F:      include/sound/da[79]*.h
6555 F:      sound/soc/codecs/da[79]*.[ch]
6556
6557 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6558 M:      William Breathitt Gray <[email protected]>
6559 L:      [email protected]
6560 S:      Maintained
6561 F:      drivers/gpio/gpio-gpio-mm.c
6562
6563 DIGITEQ AUTOMOTIVE MGB4 V4L2 DRIVER
6564 M:      Martin Tuma <[email protected]>
6565 L:      [email protected]
6566 S:      Maintained
6567 F:      Documentation/admin-guide/media/mgb4.rst
6568 F:      drivers/media/pci/mgb4/
6569
6570 DIOLAN U2C-12 I2C DRIVER
6571 M:      Guenter Roeck <[email protected]>
6572 L:      [email protected]
6573 S:      Maintained
6574 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6575
6576 DIRECTORY NOTIFICATION (DNOTIFY)
6577 M:      Jan Kara <[email protected]>
6578 R:      Amir Goldstein <[email protected]>
6579 L:      [email protected]
6580 S:      Maintained
6581 F:      Documentation/filesystems/dnotify.rst
6582 F:      fs/notify/dnotify/
6583 F:      include/linux/dnotify.h
6584
6585 DISK GEOMETRY AND PARTITION HANDLING
6586 M:      Andries Brouwer <[email protected]>
6587 S:      Maintained
6588 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6589 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6590 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6591
6592 DISKQUOTA
6593 M:      Jan Kara <[email protected]>
6594 S:      Maintained
6595 F:      Documentation/filesystems/quota.rst
6596 F:      fs/quota/
6597 F:      include/linux/quota*.h
6598 F:      include/uapi/linux/quota*.h
6599
6600 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6601 M:      Bernie Thompson <[email protected]>
6602 L:      [email protected]
6603 S:      Maintained
6604 W:      http://plugable.com/category/projects/udlfb/
6605 F:      Documentation/fb/udlfb.rst
6606 F:      drivers/video/fbdev/udlfb.c
6607 F:      include/video/udlfb.h
6608
6609 DISTRIBUTED LOCK MANAGER (DLM)
6610 M:      Alexander Aring <[email protected]>
6611 M:      David Teigland <[email protected]>
6612 L:      [email protected]
6613 S:      Supported
6614 W:      https://pagure.io/dlm
6615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6616 F:      fs/dlm/
6617
6618 DMA BUFFER SHARING FRAMEWORK
6619 M:      Sumit Semwal <[email protected]>
6620 M:      Christian König <[email protected]>
6621 L:      [email protected]
6622 L:      [email protected]
6623 L:      [email protected] (moderated for non-subscribers)
6624 S:      Maintained
6625 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6626 F:      Documentation/driver-api/dma-buf.rst
6627 F:      Documentation/userspace-api/dma-buf-alloc-exchange.rst
6628 F:      drivers/dma-buf/
6629 F:      include/linux/*fence.h
6630 F:      include/linux/dma-buf.h
6631 F:      include/linux/dma-resv.h
6632 K:      \bdma_(?:buf|fence|resv)\b
6633
6634 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6635 M:      Vinod Koul <[email protected]>
6636 L:      [email protected]
6637 S:      Maintained
6638 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6640 F:      Documentation/devicetree/bindings/dma/
6641 F:      Documentation/driver-api/dmaengine/
6642 F:      drivers/dma/
6643 F:      include/dt-bindings/dma/
6644 F:      include/linux/dma/
6645 F:      include/linux/dmaengine.h
6646 F:      include/linux/of_dma.h
6647
6648 DMA MAPPING BENCHMARK
6649 M:      Xiang Chen <[email protected]>
6650 L:      [email protected]
6651 F:      kernel/dma/map_benchmark.c
6652 F:      tools/testing/selftests/dma/
6653
6654 DMA MAPPING HELPERS
6655 M:      Christoph Hellwig <[email protected]>
6656 M:      Marek Szyprowski <[email protected]>
6657 R:      Robin Murphy <[email protected]>
6658 L:      [email protected]
6659 S:      Supported
6660 W:      http://git.infradead.org/users/hch/dma-mapping.git
6661 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6662 F:      include/asm-generic/dma-mapping.h
6663 F:      include/linux/dma-direct.h
6664 F:      include/linux/dma-map-ops.h
6665 F:      include/linux/dma-mapping.h
6666 F:      include/linux/swiotlb.h
6667 F:      kernel/dma/
6668
6669 DMA-BUF HEAPS FRAMEWORK
6670 M:      Sumit Semwal <[email protected]>
6671 R:      Benjamin Gaignard <[email protected]>
6672 R:      Brian Starkey <[email protected]>
6673 R:      John Stultz <[email protected]>
6674 R:      T.J. Mercier <[email protected]>
6675 L:      [email protected]
6676 L:      [email protected]
6677 L:      [email protected] (moderated for non-subscribers)
6678 S:      Maintained
6679 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6680 F:      drivers/dma-buf/dma-heap.c
6681 F:      drivers/dma-buf/heaps/*
6682 F:      include/linux/dma-heap.h
6683 F:      include/uapi/linux/dma-heap.h
6684
6685 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6686 M:      Lukasz Luba <[email protected]>
6687 L:      [email protected]
6688 L:      [email protected]
6689 S:      Maintained
6690 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6691 F:      drivers/memory/samsung/exynos5422-dmc.c
6692
6693 DME1737 HARDWARE MONITOR DRIVER
6694 M:      Juerg Haefliger <[email protected]>
6695 L:      [email protected]
6696 S:      Maintained
6697 F:      Documentation/hwmon/dme1737.rst
6698 F:      drivers/hwmon/dme1737.c
6699
6700 DMI/SMBIOS SUPPORT
6701 M:      Jean Delvare <[email protected]>
6702 S:      Maintained
6703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6704 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6705 F:      drivers/firmware/dmi-id.c
6706 F:      drivers/firmware/dmi_scan.c
6707 F:      include/linux/dmi.h
6708
6709 DOCUMENTATION
6710 M:      Jonathan Corbet <[email protected]>
6711 L:      [email protected]
6712 S:      Maintained
6713 P:      Documentation/doc-guide/maintainer-profile.rst
6714 T:      git git://git.lwn.net/linux.git docs-next
6715 F:      Documentation/
6716 F:      scripts/check-variable-fonts.sh
6717 F:      scripts/documentation-file-ref-check
6718 F:      scripts/kernel-doc
6719 F:      scripts/sphinx-pre-install
6720 X:      Documentation/ABI/
6721 X:      Documentation/admin-guide/media/
6722 X:      Documentation/devicetree/
6723 X:      Documentation/driver-api/media/
6724 X:      Documentation/firmware-guide/acpi/
6725 X:      Documentation/i2c/
6726 X:      Documentation/netlink/
6727 X:      Documentation/power/
6728 X:      Documentation/spi/
6729 X:      Documentation/userspace-api/media/
6730
6731 DOCUMENTATION PROCESS
6732 M:      Jonathan Corbet <[email protected]>
6733 L:      [email protected]
6734 S:      Maintained
6735 F:      Documentation/maintainer/
6736 F:      Documentation/process/
6737
6738 DOCUMENTATION REPORTING ISSUES
6739 M:      Thorsten Leemhuis <[email protected]>
6740 L:      [email protected]
6741 S:      Maintained
6742 F:      Documentation/admin-guide/quickly-build-trimmed-linux.rst
6743 F:      Documentation/admin-guide/reporting-issues.rst
6744 F:      Documentation/admin-guide/verify-bugs-and-bisect-regressions.rst
6745
6746 DOCUMENTATION SCRIPTS
6747 M:      Mauro Carvalho Chehab <[email protected]>
6748 L:      [email protected]
6749 S:      Maintained
6750 F:      Documentation/sphinx/parse-headers.pl
6751 F:      scripts/documentation-file-ref-check
6752 F:      scripts/sphinx-pre-install
6753
6754 DOCUMENTATION/ITALIAN
6755 M:      Federico Vaga <[email protected]>
6756 L:      [email protected]
6757 S:      Maintained
6758 F:      Documentation/translations/it_IT
6759
6760 DOCUMENTATION/JAPANESE
6761 R:      Akira Yokosawa <[email protected]>
6762 L:      [email protected]
6763 S:      Maintained
6764 F:      Documentation/translations/ja_JP
6765
6766 DONGWOON DW9714 LENS VOICE COIL DRIVER
6767 M:      Sakari Ailus <[email protected]>
6768 L:      [email protected]
6769 S:      Maintained
6770 T:      git git://linuxtv.org/media_tree.git
6771 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6772 F:      drivers/media/i2c/dw9714.c
6773
6774 DONGWOON DW9719 LENS VOICE COIL DRIVER
6775 M:      Daniel Scally <[email protected]>
6776 L:      [email protected]
6777 S:      Maintained
6778 T:      git git://linuxtv.org/media_tree.git
6779 F:      drivers/media/i2c/dw9719.c
6780
6781 DONGWOON DW9768 LENS VOICE COIL DRIVER
6782 L:      [email protected]
6783 S:      Orphan
6784 T:      git git://linuxtv.org/media_tree.git
6785 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6786 F:      drivers/media/i2c/dw9768.c
6787
6788 DONGWOON DW9807 LENS VOICE COIL DRIVER
6789 M:      Sakari Ailus <[email protected]>
6790 L:      [email protected]
6791 S:      Maintained
6792 T:      git git://linuxtv.org/media_tree.git
6793 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6794 F:      drivers/media/i2c/dw9807-vcm.c
6795
6796 DOUBLETALK DRIVER
6797 M:      "James R. Van Zandt" <[email protected]>
6798 L:      [email protected]
6799 S:      Maintained
6800 F:      drivers/char/dtlk.c
6801 F:      include/linux/dtlk.h
6802
6803 DPAA2 DATAPATH I/O (DPIO) DRIVER
6804 M:      Roy Pledge <[email protected]>
6805 L:      [email protected]
6806 S:      Maintained
6807 F:      drivers/soc/fsl/dpio
6808
6809 DPAA2 ETHERNET DRIVER
6810 M:      Ioana Ciornei <[email protected]>
6811 L:      [email protected]
6812 S:      Maintained
6813 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6814 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6815 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6816 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6817 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6818 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6819 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6820 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6821 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6822 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6823
6824 DPAA2 ETHERNET SWITCH DRIVER
6825 M:      Ioana Ciornei <[email protected]>
6826 L:      [email protected]
6827 S:      Maintained
6828 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6829 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6830 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6831
6832 DPLL SUBSYSTEM
6833 M:      Vadim Fedorenko <[email protected]>
6834 M:      Arkadiusz Kubalewski <[email protected]>
6835 M:      Jiri Pirko <[email protected]>
6836 L:      [email protected]
6837 S:      Supported
6838 F:      Documentation/driver-api/dpll.rst
6839 F:      drivers/dpll/*
6840 F:      include/linux/dpll.h
6841 F:      include/uapi/linux/dpll.h
6842
6843 DRBD DRIVER
6844 M:      Philipp Reisner <[email protected]>
6845 M:      Lars Ellenberg <[email protected]>
6846 M:      Christoph Böhmwalder <[email protected]>
6847 L:      [email protected]
6848 S:      Supported
6849 W:      http://www.drbd.org
6850 T:      git git://git.linbit.com/linux-drbd.git
6851 T:      git git://git.linbit.com/drbd-8.4.git
6852 F:      Documentation/admin-guide/blockdev/
6853 F:      drivers/block/drbd/
6854 F:      include/linux/drbd*
6855 F:      lib/lru_cache.c
6856
6857 DRIVER COMPONENT FRAMEWORK
6858 L:      [email protected]
6859 F:      drivers/base/component.c
6860 F:      include/linux/component.h
6861
6862 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6863 M:      Greg Kroah-Hartman <[email protected]>
6864 R:      "Rafael J. Wysocki" <[email protected]>
6865 S:      Supported
6866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6867 F:      Documentation/core-api/kobject.rst
6868 F:      drivers/base/
6869 F:      fs/debugfs/
6870 F:      fs/sysfs/
6871 F:      include/linux/debugfs.h
6872 F:      include/linux/fwnode.h
6873 F:      include/linux/kobj*
6874 F:      include/linux/property.h
6875 F:      lib/kobj*
6876 F:      rust/kernel/device.rs
6877
6878 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6879 M:      Nishanth Menon <[email protected]>
6880 L:      [email protected]
6881 S:      Maintained
6882 F:      drivers/soc/ti/smartreflex.c
6883 F:      include/linux/power/smartreflex.h
6884
6885 DRM ACCEL DRIVERS FOR INTEL VPU
6886 M:      Jacek Lawrynowicz <[email protected]>
6887 M:      Stanislaw Gruszka <[email protected]>
6888 L:      [email protected]
6889 S:      Supported
6890 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6891 F:      drivers/accel/ivpu/
6892 F:      include/uapi/drm/ivpu_accel.h
6893
6894 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6895 M:      Oded Gabbay <[email protected]>
6896 L:      [email protected]
6897 S:      Maintained
6898 C:      irc://irc.oftc.net/dri-devel
6899 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6900 F:      Documentation/accel/
6901 F:      drivers/accel/
6902 F:      include/drm/drm_accel.h
6903
6904 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6905 M:      Maxime Ripard <[email protected]>
6906 M:      Chen-Yu Tsai <[email protected]>
6907 R:      Jernej Skrabec <[email protected]>
6908 L:      [email protected]
6909 S:      Supported
6910 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6911 F:      drivers/gpu/drm/sun4i/sun8i*
6912
6913 DRM DRIVER FOR ARM PL111 CLCD
6914 S:      Orphan
6915 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6916 F:      drivers/gpu/drm/pl111/
6917
6918 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6919 M:      Linus Walleij <[email protected]>
6920 S:      Maintained
6921 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6922 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6923 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6924
6925 DRM DRIVER FOR ASPEED BMC GFX
6926 M:      Joel Stanley <[email protected]>
6927 L:      [email protected] (moderated for non-subscribers)
6928 S:      Supported
6929 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6930 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6931 F:      drivers/gpu/drm/aspeed/
6932
6933 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6934 M:      Dave Airlie <[email protected]>
6935 R:      Thomas Zimmermann <[email protected]>
6936 R:      Jocelyn Falempe <[email protected]>
6937 L:      [email protected]
6938 S:      Supported
6939 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6940 F:      drivers/gpu/drm/ast/
6941
6942 DRM DRIVER FOR BOCHS VIRTUAL GPU
6943 M:      Gerd Hoffmann <[email protected]>
6944 L:      [email protected]
6945 S:      Maintained
6946 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6947 F:      drivers/gpu/drm/tiny/bochs.c
6948
6949 DRM DRIVER FOR BOE HIMAX8279D PANELS
6950 M:      Jerry Han <[email protected]>
6951 S:      Maintained
6952 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6953 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6954
6955 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6956 M:      Jagan Teki <[email protected]>
6957 S:      Maintained
6958 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6959 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6960
6961 DRM DRIVER FOR EBBG FT8719 PANEL
6962 M:      Joel Selvaraj <[email protected]>
6963 S:      Maintained
6964 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6965 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6966 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6967
6968 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6969 M:      Linus Walleij <[email protected]>
6970 S:      Maintained
6971 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6972 F:      drivers/gpu/drm/tve200/
6973
6974 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6975 M:      Icenowy Zheng <[email protected]>
6976 S:      Maintained
6977 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6978 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6979
6980 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6981 M:      Jagan Teki <[email protected]>
6982 S:      Maintained
6983 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6984 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6985
6986 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6987 M:      Thomas Zimmermann <[email protected]>
6988 M:      Javier Martinez Canillas <[email protected]>
6989 L:      [email protected]
6990 S:      Maintained
6991 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
6992 F:      drivers/gpu/drm/drm_aperture.c
6993 F:      drivers/gpu/drm/tiny/ofdrm.c
6994 F:      drivers/gpu/drm/tiny/simpledrm.c
6995 F:      drivers/video/aperture.c
6996 F:      drivers/video/nomodeset.c
6997 F:      include/drm/drm_aperture.h
6998 F:      include/linux/aperture.h
6999 F:      include/video/nomodeset.h
7000
7001 DRM DRIVER FOR GENERIC EDP PANELS
7002 R:      Douglas Anderson <[email protected]>
7003 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
7004 F:      drivers/gpu/drm/panel/panel-edp.c
7005
7006 DRM DRIVER FOR GENERIC USB DISPLAY
7007 M:      Noralf Trønnes <[email protected]>
7008 S:      Maintained
7009 W:      https://github.com/notro/gud/wiki
7010 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7011 F:      drivers/gpu/drm/gud/
7012 F:      include/drm/gud.h
7013
7014 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
7015 M:      Hans de Goede <[email protected]>
7016 S:      Maintained
7017 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7018 F:      drivers/gpu/drm/tiny/gm12u320.c
7019
7020 DRM DRIVER FOR HIMAX HX8394 MIPI-DSI LCD panels
7021 M:      Ondrej Jirman <[email protected]>
7022 M:      Javier Martinez Canillas <[email protected]>
7023 S:      Maintained
7024 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7025 F:      Documentation/devicetree/bindings/display/panel/himax,hx8394.yaml
7026 F:      drivers/gpu/drm/panel/panel-himax-hx8394.c
7027
7028 DRM DRIVER FOR HX8357D PANELS
7029 S:      Orphan
7030 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7031 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
7032 F:      drivers/gpu/drm/tiny/hx8357d.c
7033
7034 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
7035 M:      Deepak Rawat <[email protected]>
7036 L:      [email protected]
7037 L:      [email protected]
7038 S:      Maintained
7039 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7040 F:      drivers/gpu/drm/hyperv
7041
7042 DRM DRIVER FOR ILITEK ILI9225 PANELS
7043 M:      David Lechner <[email protected]>
7044 S:      Maintained
7045 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7046 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
7047 F:      drivers/gpu/drm/tiny/ili9225.c
7048
7049 DRM DRIVER FOR ILITEK ILI9486 PANELS
7050 M:      Kamlesh Gurudasani <[email protected]>
7051 S:      Maintained
7052 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7053 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
7054 F:      drivers/gpu/drm/tiny/ili9486.c
7055
7056 DRM DRIVER FOR ILITEK ILI9805 PANELS
7057 M:      Michael Trimarchi <[email protected]>
7058 S:      Maintained
7059 F:      Documentation/devicetree/bindings/display/panel/ilitek,ili9805.yaml
7060 F:      drivers/gpu/drm/panel/panel-ilitek-ili9805.c
7061
7062 DRM DRIVER FOR ILITEK ILI9806E PANELS
7063 M:      Michael Walle <[email protected]>
7064 S:      Maintained
7065 F:      drivers/gpu/drm/panel/panel-ilitek-ili9806e.c
7066
7067 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
7068 M:      Jagan Teki <[email protected]>
7069 S:      Maintained
7070 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
7071 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
7072
7073 DRM DRIVER FOR LG SW43408 PANELS
7074 M:      Sumit Semwal <[email protected]>
7075 M:      Caleb Connolly <[email protected]>
7076 S:      Maintained
7077 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7078 F:      Documentation/devicetree/bindings/display/panel/lg,sw43408.yaml
7079 F:      drivers/gpu/drm/panel/panel-lg-sw43408.c
7080
7081 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
7082 M:      Paul Kocialkowski <[email protected]>
7083 S:      Supported
7084 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7085 F:      drivers/gpu/drm/logicvc/
7086
7087 DRM DRIVER FOR LVDS PANELS
7088 M:      Laurent Pinchart <[email protected]>
7089 L:      [email protected]
7090 S:      Maintained
7091 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7092 F:      Documentation/devicetree/bindings/display/lvds.yaml
7093 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
7094 F:      drivers/gpu/drm/panel/panel-lvds.c
7095
7096 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
7097 M:      Guido Günther <[email protected]>
7098 R:      Purism Kernel Team <[email protected]>
7099 S:      Maintained
7100 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
7101 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
7102
7103 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
7104 M:      Dave Airlie <[email protected]>
7105 R:      Thomas Zimmermann <[email protected]>
7106 R:      Jocelyn Falempe <[email protected]>
7107 L:      [email protected]
7108 S:      Supported
7109 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7110 F:      drivers/gpu/drm/mgag200/
7111
7112 DRM DRIVER FOR MI0283QT
7113 M:      Noralf Trønnes <[email protected]>
7114 S:      Maintained
7115 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7116 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
7117 F:      drivers/gpu/drm/tiny/mi0283qt.c
7118
7119 DRM DRIVER FOR MIPI DBI compatible panels
7120 M:      Noralf Trønnes <[email protected]>
7121 S:      Maintained
7122 W:      https://github.com/notro/panel-mipi-dbi/wiki
7123 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7124 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
7125 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
7126
7127 DRM DRIVER for Qualcomm Adreno GPUs
7128 M:      Rob Clark <[email protected]>
7129 R:      Sean Paul <[email protected]>
7130 R:      Konrad Dybcio <[email protected]>
7131 L:      [email protected]
7132 L:      [email protected]
7133 L:      [email protected]
7134 S:      Maintained
7135 B:      https://gitlab.freedesktop.org/drm/msm/-/issues
7136 T:      git https://gitlab.freedesktop.org/drm/msm.git
7137 F:      Documentation/devicetree/bindings/display/msm/gpu.yaml
7138 F:      drivers/gpu/drm/msm/adreno/
7139 F:      drivers/gpu/drm/msm/msm_gpu.*
7140 F:      drivers/gpu/drm/msm/msm_gpu_devfreq.*
7141 F:      drivers/gpu/drm/msm/msm_ringbuffer.*
7142 F:      drivers/gpu/drm/msm/registers/adreno/
7143 F:      include/uapi/drm/msm_drm.h
7144
7145 DRM DRIVER for Qualcomm display hardware
7146 M:      Rob Clark <[email protected]>
7147 M:      Abhinav Kumar <[email protected]>
7148 M:      Dmitry Baryshkov <[email protected]>
7149 R:      Sean Paul <[email protected]>
7150 R:      Marijn Suijten <[email protected]>
7151 L:      [email protected]
7152 L:      [email protected]
7153 L:      [email protected]
7154 S:      Maintained
7155 B:      https://gitlab.freedesktop.org/drm/msm/-/issues
7156 T:      git https://gitlab.freedesktop.org/drm/msm.git
7157 F:      Documentation/devicetree/bindings/display/msm/
7158 F:      drivers/gpu/drm/ci/xfails/msm*
7159 F:      drivers/gpu/drm/msm/
7160 F:      include/uapi/drm/msm_drm.h
7161
7162 DRM DRIVER FOR NOVATEK NT35510 PANELS
7163 M:      Linus Walleij <[email protected]>
7164 S:      Maintained
7165 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7166 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
7167 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
7168
7169 DRM DRIVER FOR NOVATEK NT35560 PANELS
7170 M:      Linus Walleij <[email protected]>
7171 S:      Maintained
7172 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7173 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
7174 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
7175
7176 DRM DRIVER FOR NOVATEK NT36523 PANELS
7177 M:      Jianhua Lu <[email protected]>
7178 S:      Maintained
7179 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7180 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36523.yaml
7181 F:      drivers/gpu/drm/panel/panel-novatek-nt36523.c
7182
7183 DRM DRIVER FOR NOVATEK NT36672A PANELS
7184 M:      Sumit Semwal <[email protected]>
7185 S:      Maintained
7186 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7187 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
7188 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
7189
7190 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
7191 M:      Karol Herbst <[email protected]>
7192 M:      Lyude Paul <[email protected]>
7193 M:      Danilo Krummrich <[email protected]>
7194 L:      [email protected]
7195 L:      [email protected]
7196 S:      Supported
7197 W:      https://nouveau.freedesktop.org/
7198 Q:      https://patchwork.freedesktop.org/project/nouveau/
7199 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
7200 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
7201 C:      irc://irc.oftc.net/nouveau
7202 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
7203 F:      drivers/gpu/drm/nouveau/
7204 F:      include/uapi/drm/nouveau_drm.h
7205
7206 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
7207 M:      Stefan Mavrodiev <[email protected]>
7208 S:      Maintained
7209 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
7210 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
7211
7212 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
7213 R:      Douglas Anderson <[email protected]>
7214 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
7215 F:      drivers/gpu/drm/bridge/parade-ps8640.c
7216
7217 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
7218 M:      Noralf Trønnes <[email protected]>
7219 S:      Maintained
7220 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7221 F:      Documentation/devicetree/bindings/display/repaper.txt
7222 F:      drivers/gpu/drm/tiny/repaper.c
7223
7224 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
7225 M:      Dave Airlie <[email protected]>
7226 M:      Gerd Hoffmann <[email protected]>
7227 L:      [email protected]
7228 S:      Obsolete
7229 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
7230 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7231 F:      drivers/gpu/drm/tiny/cirrus.c
7232
7233 DRM DRIVER FOR QXL VIRTUAL GPU
7234 M:      Dave Airlie <[email protected]>
7235 M:      Gerd Hoffmann <[email protected]>
7236 L:      [email protected]
7237 L:      [email protected]
7238 S:      Maintained
7239 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7240 F:      drivers/gpu/drm/qxl/
7241 F:      include/uapi/drm/qxl_drm.h
7242
7243 DRM DRIVER FOR RAYDIUM RM67191 PANELS
7244 M:      Robert Chiras <[email protected]>
7245 S:      Maintained
7246 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
7247 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
7248
7249 DRM DRIVER FOR SAMSUNG DB7430 PANELS
7250 M:      Linus Walleij <[email protected]>
7251 S:      Maintained
7252 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7253 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
7254 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
7255
7256 DRM DRIVER FOR SAMSUNG MIPI DSIM BRIDGE
7257 M:      Inki Dae <[email protected]>
7258 M:      Jagan Teki <[email protected]>
7259 M:      Marek Szyprowski <[email protected]>
7260 S:      Maintained
7261 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7262 F:      Documentation/devicetree/bindings/display/bridge/samsung,mipi-dsim.yaml
7263 F:      drivers/gpu/drm/bridge/samsung-dsim.c
7264 F:      include/drm/bridge/samsung-dsim.h
7265
7266 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
7267 M:      Markuss Broks <[email protected]>
7268 S:      Maintained
7269 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
7270 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
7271
7272 DRM DRIVER FOR SAMSUNG S6D7AA0 PANELS
7273 M:      Artur Weber <[email protected]>
7274 S:      Maintained
7275 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d7aa0.yaml
7276 F:      drivers/gpu/drm/panel/panel-samsung-s6d7aa0.c
7277
7278 DRM DRIVER FOR SITRONIX ST7586 PANELS
7279 M:      David Lechner <[email protected]>
7280 S:      Maintained
7281 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7282 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
7283 F:      drivers/gpu/drm/tiny/st7586.c
7284
7285 DRM DRIVER FOR SITRONIX ST7701 PANELS
7286 M:      Jagan Teki <[email protected]>
7287 S:      Maintained
7288 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
7289 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
7290
7291 DRM DRIVER FOR SITRONIX ST7703 PANELS
7292 M:      Guido Günther <[email protected]>
7293 R:      Purism Kernel Team <[email protected]>
7294 R:      Ondrej Jirman <[email protected]>
7295 S:      Maintained
7296 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
7297 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
7298
7299 DRM DRIVER FOR SITRONIX ST7735R PANELS
7300 M:      David Lechner <[email protected]>
7301 S:      Maintained
7302 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7303 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
7304 F:      drivers/gpu/drm/tiny/st7735r.c
7305
7306 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
7307 M:      Javier Martinez Canillas <[email protected]>
7308 S:      Maintained
7309 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7310 F:      Documentation/devicetree/bindings/display/solomon,ssd-common.yaml
7311 F:      Documentation/devicetree/bindings/display/solomon,ssd13*.yaml
7312 F:      drivers/gpu/drm/solomon/ssd130x*
7313
7314 DRM DRIVER FOR ST-ERICSSON MCDE
7315 M:      Linus Walleij <[email protected]>
7316 S:      Maintained
7317 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7318 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
7319 F:      drivers/gpu/drm/mcde/
7320
7321 DRM DRIVER FOR SYNAPTICS R63353 PANELS
7322 M:      Michael Trimarchi <[email protected]>
7323 S:      Maintained
7324 F:      Documentation/devicetree/bindings/display/panel/synaptics,r63353.yaml
7325 F:      drivers/gpu/drm/panel/panel-synaptics-r63353.c
7326
7327 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
7328 M:      Jagan Teki <[email protected]>
7329 S:      Maintained
7330 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
7331 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
7332
7333 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
7334 R:      Douglas Anderson <[email protected]>
7335 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
7336 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
7337
7338 DRM DRIVER FOR TPO TPG110 PANELS
7339 M:      Linus Walleij <[email protected]>
7340 S:      Maintained
7341 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7342 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
7343 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
7344
7345 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
7346 M:      Dave Airlie <[email protected]>
7347 R:      Sean Paul <[email protected]>
7348 R:      Thomas Zimmermann <[email protected]>
7349 L:      [email protected]
7350 S:      Supported
7351 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7352 F:      drivers/gpu/drm/udl/
7353
7354 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
7355 M:      Rodrigo Siqueira <[email protected]>
7356 M:      Melissa Wen <[email protected]>
7357 M:      Maíra Canal <[email protected]>
7358 R:      Haneen Mohammed <[email protected]>
7359 R:      Daniel Vetter <[email protected]>
7360 L:      [email protected]
7361 S:      Maintained
7362 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7363 F:      Documentation/gpu/vkms.rst
7364 F:      drivers/gpu/drm/ci/xfails/vkms*
7365 F:      drivers/gpu/drm/vkms/
7366
7367 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
7368 M:      Hans de Goede <[email protected]>
7369 L:      [email protected]
7370 S:      Maintained
7371 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7372 F:      drivers/gpu/drm/vboxvideo/
7373
7374 DRM DRIVER FOR VMWARE VIRTUAL GPU
7375 M:      Zack Rusin <[email protected]>
7376 R:      Broadcom internal kernel review list <[email protected]>
7377 L:      [email protected]
7378 S:      Supported
7379 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7380 F:      drivers/gpu/drm/vmwgfx/
7381 F:      include/uapi/drm/vmwgfx_drm.h
7382
7383 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
7384 M:      Linus Walleij <[email protected]>
7385 S:      Maintained
7386 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7387 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
7388 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
7389
7390 DRM DRIVERS
7391 M:      David Airlie <[email protected]>
7392 M:      Daniel Vetter <[email protected]>
7393 L:      [email protected]
7394 S:      Maintained
7395 B:      https://gitlab.freedesktop.org/drm
7396 C:      irc://irc.oftc.net/dri-devel
7397 T:      git https://gitlab.freedesktop.org/drm/kernel.git
7398 F:      Documentation/devicetree/bindings/display/
7399 F:      Documentation/devicetree/bindings/gpu/
7400 F:      Documentation/gpu/
7401 F:      drivers/gpu/
7402 F:      include/drm/
7403 F:      include/linux/vga*
7404 F:      include/uapi/drm/
7405
7406 DRM DRIVERS AND MISC GPU PATCHES
7407 M:      Maarten Lankhorst <[email protected]>
7408 M:      Maxime Ripard <[email protected]>
7409 M:      Thomas Zimmermann <[email protected]>
7410 S:      Maintained
7411 W:      https://drm.pages.freedesktop.org/maintainer-tools/drm-misc.html
7412 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7413 F:      Documentation/devicetree/bindings/display/
7414 F:      Documentation/devicetree/bindings/gpu/
7415 F:      Documentation/gpu/
7416 F:      drivers/gpu/drm/
7417 F:      drivers/gpu/vga/
7418 F:      include/drm/drm
7419 F:      include/linux/vga*
7420 F:      include/uapi/drm/
7421 X:      drivers/gpu/drm/amd/
7422 X:      drivers/gpu/drm/armada/
7423 X:      drivers/gpu/drm/etnaviv/
7424 X:      drivers/gpu/drm/exynos/
7425 X:      drivers/gpu/drm/i915/
7426 X:      drivers/gpu/drm/kmb/
7427 X:      drivers/gpu/drm/mediatek/
7428 X:      drivers/gpu/drm/msm/
7429 X:      drivers/gpu/drm/nouveau/
7430 X:      drivers/gpu/drm/radeon/
7431 X:      drivers/gpu/drm/renesas/rcar-du/
7432 X:      drivers/gpu/drm/tegra/
7433
7434 DRM DRIVERS FOR ALLWINNER A10
7435 M:      Maxime Ripard <[email protected]>
7436 M:      Chen-Yu Tsai <[email protected]>
7437 L:      [email protected]
7438 S:      Supported
7439 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7440 F:      Documentation/devicetree/bindings/display/allwinner*
7441 F:      drivers/gpu/drm/sun4i/
7442
7443 DRM DRIVERS FOR AMLOGIC SOCS
7444 M:      Neil Armstrong <[email protected]>
7445 L:      [email protected]
7446 L:      [email protected]
7447 S:      Supported
7448 W:      http://linux-meson.com/
7449 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7450 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
7451 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
7452 F:      Documentation/gpu/meson.rst
7453 F:      drivers/gpu/drm/ci/xfails/meson*
7454 F:      drivers/gpu/drm/meson/
7455
7456 DRM DRIVERS FOR ATMEL HLCDC
7457 M:      Sam Ravnborg <[email protected]>
7458 M:      Boris Brezillon <[email protected]>
7459 L:      [email protected]
7460 S:      Supported
7461 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7462 F:      Documentation/devicetree/bindings/display/atmel/
7463 F:      drivers/gpu/drm/atmel-hlcdc/
7464
7465 DRM DRIVERS FOR BRIDGE CHIPS
7466 M:      Andrzej Hajda <[email protected]>
7467 M:      Neil Armstrong <[email protected]>
7468 M:      Robert Foss <[email protected]>
7469 R:      Laurent Pinchart <[email protected]>
7470 R:      Jonas Karlman <[email protected]>
7471 R:      Jernej Skrabec <[email protected]>
7472 S:      Maintained
7473 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7474 F:      Documentation/devicetree/bindings/display/bridge/
7475 F:      drivers/gpu/drm/bridge/
7476 F:      drivers/gpu/drm/display/drm_bridge_connector.c
7477 F:      drivers/gpu/drm/drm_bridge.c
7478 F:      include/drm/drm_bridge.h
7479 F:      include/drm/drm_bridge_connector.h
7480
7481 DRM DRIVERS FOR EXYNOS
7482 M:      Inki Dae <[email protected]>
7483 M:      Seung-Woo Kim <[email protected]>
7484 M:      Kyungmin Park <[email protected]>
7485 L:      [email protected]
7486 S:      Supported
7487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
7488 F:      Documentation/devicetree/bindings/display/exynos/
7489 F:      Documentation/devicetree/bindings/display/samsung/
7490 F:      drivers/gpu/drm/exynos/
7491 F:      include/uapi/drm/exynos_drm.h
7492
7493 DRM DRIVERS FOR FREESCALE DCU
7494 M:      Stefan Agner <[email protected]>
7495 M:      Alison Wang <[email protected]>
7496 L:      [email protected]
7497 S:      Supported
7498 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7499 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
7500 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
7501 F:      drivers/gpu/drm/fsl-dcu/
7502
7503 DRM DRIVERS FOR FREESCALE IMX 5/6
7504 M:      Philipp Zabel <[email protected]>
7505 L:      [email protected]
7506 S:      Maintained
7507 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7508 T:      git git://git.pengutronix.de/git/pza/linux
7509 F:      Documentation/devicetree/bindings/display/imx/
7510 F:      drivers/gpu/drm/imx/ipuv3/
7511 F:      drivers/gpu/ipu-v3/
7512
7513 DRM DRIVERS FOR FREESCALE IMX BRIDGE
7514 M:      Liu Ying <[email protected]>
7515 L:      [email protected]
7516 S:      Maintained
7517 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
7518 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
7519 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
7520 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
7521 F:      drivers/gpu/drm/bridge/imx/
7522
7523 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
7524 M:      Patrik Jakobsson <[email protected]>
7525 L:      [email protected]
7526 S:      Maintained
7527 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7528 F:      drivers/gpu/drm/gma500/
7529
7530 DRM DRIVERS FOR HISILICON
7531 M:      Xinliang Liu <[email protected]>
7532 M:      Tian Tao  <[email protected]>
7533 R:      Xinwei Kong <[email protected]>
7534 R:      Sumit Semwal <[email protected]>
7535 R:      Yongqin Liu <[email protected]>
7536 R:      John Stultz <[email protected]>
7537 L:      [email protected]
7538 S:      Maintained
7539 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7540 F:      Documentation/devicetree/bindings/display/hisilicon/
7541 F:      drivers/gpu/drm/hisilicon/
7542
7543 DRM DRIVERS FOR LIMA
7544 M:      Qiang Yu <[email protected]>
7545 L:      [email protected]
7546 L:      [email protected] (moderated for non-subscribers)
7547 S:      Maintained
7548 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7549 F:      drivers/gpu/drm/lima/
7550 F:      include/uapi/drm/lima_drm.h
7551
7552 DRM DRIVERS FOR LOONGSON
7553 M:      Sui Jingfeng <[email protected]>
7554 L:      [email protected]
7555 S:      Supported
7556 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7557 F:      drivers/gpu/drm/loongson/
7558
7559 DRM DRIVERS FOR MEDIATEK
7560 M:      Chun-Kuang Hu <[email protected]>
7561 M:      Philipp Zabel <[email protected]>
7562 L:      [email protected]
7563 L:      [email protected] (moderated for non-subscribers)
7564 S:      Supported
7565 F:      Documentation/devicetree/bindings/display/mediatek/
7566 F:      drivers/gpu/drm/ci/xfails/mediatek*
7567 F:      drivers/gpu/drm/mediatek/
7568 F:      drivers/phy/mediatek/phy-mtk-dp.c
7569 F:      drivers/phy/mediatek/phy-mtk-hdmi*
7570 F:      drivers/phy/mediatek/phy-mtk-mipi*
7571
7572 DRM DRIVERS FOR NVIDIA TEGRA
7573 M:      Thierry Reding <[email protected]>
7574 M:      Mikko Perttunen <[email protected]>
7575 L:      [email protected]
7576 L:      [email protected]
7577 S:      Supported
7578 T:      git https://gitlab.freedesktop.org/drm/tegra.git
7579 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
7580 F:      Documentation/devicetree/bindings/gpu/host1x/
7581 F:      drivers/gpu/drm/tegra/
7582 F:      drivers/gpu/host1x/
7583 F:      include/linux/host1x.h
7584 F:      include/uapi/drm/tegra_drm.h
7585
7586 DRM DRIVERS FOR RENESAS R-CAR
7587 M:      Laurent Pinchart <[email protected]>
7588 M:      Kieran Bingham <[email protected]>
7589 L:      [email protected]
7590 L:      [email protected]
7591 S:      Supported
7592 T:      git git://linuxtv.org/pinchartl/media drm/du/next
7593 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
7594 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
7595 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
7596 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
7597 F:      drivers/gpu/drm/renesas/rcar-du/
7598
7599 DRM DRIVERS FOR RENESAS RZ
7600 M:      Biju Das <[email protected]>
7601 L:      [email protected]
7602 L:      [email protected]
7603 S:      Maintained
7604 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7605 F:      Documentation/devicetree/bindings/display/renesas,rzg2l-du.yaml
7606 F:      drivers/gpu/drm/renesas/rz-du/
7607
7608 DRM DRIVERS FOR RENESAS SHMOBILE
7609 M:      Laurent Pinchart <[email protected]>
7610 M:      Geert Uytterhoeven <[email protected]>
7611 L:      [email protected]
7612 L:      [email protected]
7613 S:      Supported
7614 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7615 F:      Documentation/devicetree/bindings/display/renesas,shmobile-lcdc.yaml
7616 F:      drivers/gpu/drm/renesas/shmobile/
7617 F:      include/linux/platform_data/shmob_drm.h
7618
7619 DRM DRIVERS FOR ROCKCHIP
7620 M:      Sandy Huang <[email protected]>
7621 M:      Heiko Stübner <[email protected]>
7622 M:      Andy Yan <[email protected]>
7623 L:      [email protected]
7624 S:      Maintained
7625 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7626 F:      Documentation/devicetree/bindings/display/rockchip/
7627 F:      drivers/gpu/drm/ci/xfails/rockchip*
7628 F:      drivers/gpu/drm/rockchip/
7629
7630 DRM DRIVERS FOR STI
7631 M:      Alain Volmat <[email protected]>
7632 L:      [email protected]
7633 S:      Maintained
7634 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7635 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
7636 F:      drivers/gpu/drm/sti
7637
7638 DRM DRIVERS FOR STM
7639 M:      Yannick Fertre <[email protected]>
7640 M:      Raphael Gallais-Pou <[email protected]>
7641 M:      Philippe Cornu <[email protected]>
7642 L:      [email protected]
7643 S:      Maintained
7644 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7645 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
7646 F:      Documentation/devicetree/bindings/display/st,stm32mp25-lvds.yaml
7647 F:      drivers/gpu/drm/stm
7648
7649 DRM DRIVERS FOR TI KEYSTONE
7650 M:      Jyri Sarha <[email protected]>
7651 M:      Tomi Valkeinen <[email protected]>
7652 L:      [email protected]
7653 S:      Maintained
7654 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7655 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
7656 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
7657 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
7658 F:      drivers/gpu/drm/tidss/
7659
7660 DRM DRIVERS FOR TI LCDC
7661 M:      Jyri Sarha <[email protected]>
7662 M:      Tomi Valkeinen <[email protected]>
7663 L:      [email protected]
7664 S:      Maintained
7665 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7666 F:      Documentation/devicetree/bindings/display/tilcdc/
7667 F:      drivers/gpu/drm/tilcdc/
7668
7669 DRM DRIVERS FOR TI OMAP
7670 M:      Tomi Valkeinen <[email protected]>
7671 L:      [email protected]
7672 S:      Maintained
7673 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7674 F:      Documentation/devicetree/bindings/display/ti/
7675 F:      drivers/gpu/drm/omapdrm/
7676
7677 DRM DRIVERS FOR V3D
7678 M:      Melissa Wen <[email protected]>
7679 M:      Maíra Canal <[email protected]>
7680 S:      Supported
7681 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7682 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
7683 F:      drivers/gpu/drm/v3d/
7684 F:      include/uapi/drm/v3d_drm.h
7685
7686 DRM DRIVERS FOR VC4
7687 M:      Maxime Ripard <[email protected]>
7688 M:      Dave Stevenson <[email protected]>
7689 R:      Raspberry Pi Kernel Maintenance <[email protected]>
7690 S:      Supported
7691 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7692 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7693 F:      drivers/gpu/drm/vc4/
7694 F:      include/uapi/drm/vc4_drm.h
7695
7696 DRM DRIVERS FOR VIVANTE GPU IP
7697 M:      Lucas Stach <[email protected]>
7698 R:      Russell King <[email protected]>
7699 R:      Christian Gmeiner <[email protected]>
7700 L:      [email protected] (moderated for non-subscribers)
7701 L:      [email protected]
7702 S:      Maintained
7703 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7704 F:      drivers/gpu/drm/etnaviv/
7705 F:      include/uapi/drm/etnaviv_drm.h
7706
7707 DRM DRIVERS FOR XEN
7708 M:      Oleksandr Andrushchenko <[email protected]>
7709 L:      [email protected]
7710 L:      [email protected] (moderated for non-subscribers)
7711 S:      Supported
7712 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7713 F:      Documentation/gpu/xen-front.rst
7714 F:      drivers/gpu/drm/xen/
7715
7716 DRM DRIVERS FOR XILINX
7717 M:      Laurent Pinchart <[email protected]>
7718 M:      Tomi Valkeinen <[email protected]>
7719 L:      [email protected]
7720 S:      Maintained
7721 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7722 F:      Documentation/devicetree/bindings/display/xlnx/
7723 F:      drivers/gpu/drm/xlnx/
7724
7725 DRM GPU SCHEDULER
7726 M:      Luben Tuikov <[email protected]>
7727 M:      Matthew Brost <[email protected]>
7728 L:      [email protected]
7729 S:      Maintained
7730 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7731 F:      drivers/gpu/drm/scheduler/
7732 F:      include/drm/gpu_scheduler.h
7733
7734 DRM PANEL DRIVERS
7735 M:      Neil Armstrong <[email protected]>
7736 R:      Jessica Zhang <[email protected]>
7737 L:      [email protected]
7738 S:      Maintained
7739 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7740 F:      Documentation/devicetree/bindings/display/panel/
7741 F:      drivers/gpu/drm/drm_panel.c
7742 F:      drivers/gpu/drm/panel/
7743 F:      include/drm/drm_panel.h
7744
7745 DRM PRIVACY-SCREEN CLASS
7746 M:      Hans de Goede <[email protected]>
7747 L:      [email protected]
7748 S:      Maintained
7749 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7750 F:      drivers/gpu/drm/drm_privacy_screen*
7751 F:      include/drm/drm_privacy_screen*
7752
7753 DRM TTM SUBSYSTEM
7754 M:      Christian Koenig <[email protected]>
7755 M:      Huang Rui <[email protected]>
7756 L:      [email protected]
7757 S:      Maintained
7758 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7759 F:      drivers/gpu/drm/ttm/
7760 F:      include/drm/ttm/
7761
7762 DRM AUTOMATED TESTING
7763 M:      Helen Koike <[email protected]>
7764 L:      [email protected]
7765 S:      Maintained
7766 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
7767 F:      Documentation/gpu/automated_testing.rst
7768 F:      drivers/gpu/drm/ci/
7769
7770 DSBR100 USB FM RADIO DRIVER
7771 M:      Alexey Klimov <[email protected]>
7772 L:      [email protected]
7773 S:      Maintained
7774 T:      git git://linuxtv.org/media_tree.git
7775 F:      drivers/media/radio/dsbr100.c
7776
7777 DT3155 MEDIA DRIVER
7778 M:      Hans Verkuil <[email protected]>
7779 L:      [email protected]
7780 S:      Odd Fixes
7781 W:      https://linuxtv.org
7782 T:      git git://linuxtv.org/media_tree.git
7783 F:      drivers/media/pci/dt3155/
7784
7785 DVB_USB_AF9015 MEDIA DRIVER
7786 L:      [email protected]
7787 S:      Orphan
7788 W:      https://linuxtv.org
7789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7790 F:      drivers/media/usb/dvb-usb-v2/af9015*
7791
7792 DVB_USB_AF9035 MEDIA DRIVER
7793 L:      [email protected]
7794 S:      Orphan
7795 W:      https://linuxtv.org
7796 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7797 F:      drivers/media/usb/dvb-usb-v2/af9035*
7798
7799 DVB_USB_ANYSEE MEDIA DRIVER
7800 L:      [email protected]
7801 S:      Orphan
7802 W:      https://linuxtv.org
7803 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7804 F:      drivers/media/usb/dvb-usb-v2/anysee*
7805
7806 DVB_USB_AU6610 MEDIA DRIVER
7807 L:      [email protected]
7808 S:      Orphan
7809 W:      https://linuxtv.org
7810 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7811 F:      drivers/media/usb/dvb-usb-v2/au6610*
7812
7813 DVB_USB_CE6230 MEDIA DRIVER
7814 L:      [email protected]
7815 S:      Orphan
7816 W:      https://linuxtv.org
7817 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7818 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7819
7820 DVB_USB_CXUSB MEDIA DRIVER
7821 M:      Michael Krufky <[email protected]>
7822 L:      [email protected]
7823 S:      Maintained
7824 W:      https://linuxtv.org
7825 W:      http://github.com/mkrufky
7826 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7827 T:      git git://linuxtv.org/media_tree.git
7828 F:      drivers/media/usb/dvb-usb/cxusb*
7829
7830 DVB_USB_EC168 MEDIA DRIVER
7831 L:      [email protected]
7832 S:      Orphan
7833 W:      https://linuxtv.org
7834 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7835 F:      drivers/media/usb/dvb-usb-v2/ec168*
7836
7837 DVB_USB_GL861 MEDIA DRIVER
7838 L:      [email protected]
7839 S:      Orphan
7840 W:      https://linuxtv.org
7841 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7842 F:      drivers/media/usb/dvb-usb-v2/gl861*
7843
7844 DVB_USB_MXL111SF MEDIA DRIVER
7845 M:      Michael Krufky <[email protected]>
7846 L:      [email protected]
7847 S:      Maintained
7848 W:      https://linuxtv.org
7849 W:      http://github.com/mkrufky
7850 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7851 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7852 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7853
7854 DVB_USB_RTL28XXU MEDIA DRIVER
7855 L:      [email protected]
7856 S:      Orphan
7857 W:      https://linuxtv.org
7858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7859 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7860
7861 DVB_USB_V2 MEDIA DRIVER
7862 L:      [email protected]
7863 S:      Orphan
7864 W:      https://linuxtv.org
7865 W:      http://palosaari.fi/linux/
7866 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7867 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7868 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7869
7870 DYNAMIC DEBUG
7871 M:      Jason Baron <[email protected]>
7872 M:      Jim Cromie <[email protected]>
7873 S:      Maintained
7874 F:      include/linux/dynamic_debug.h
7875 F:      lib/dynamic_debug.c
7876 F:      lib/test_dynamic_debug.c
7877
7878 DYNAMIC INTERRUPT MODERATION
7879 M:      Tal Gilboa <[email protected]>
7880 S:      Maintained
7881 F:      Documentation/networking/net_dim.rst
7882 F:      include/linux/dim.h
7883 F:      lib/dim/
7884
7885 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
7886 M:      Daniel Lezcano <[email protected]>
7887 L:      [email protected]
7888 S:      Supported
7889 B:      https://bugzilla.kernel.org
7890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
7891 F:      drivers/powercap/dtpm*
7892 F:      include/linux/dtpm.h
7893
7894 DZ DECSTATION DZ11 SERIAL DRIVER
7895 M:      "Maciej W. Rozycki" <[email protected]>
7896 S:      Maintained
7897 F:      drivers/tty/serial/dz.*
7898
7899 E3X0 POWER BUTTON DRIVER
7900 M:      Moritz Fischer <[email protected]>
7901 L:      [email protected]
7902 S:      Supported
7903 W:      http://www.ettus.com
7904 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7905 F:      drivers/input/misc/e3x0-button.c
7906
7907 E4000 MEDIA DRIVER
7908 L:      [email protected]
7909 S:      Orphan
7910 W:      https://linuxtv.org
7911 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7912 F:      drivers/media/tuners/e4000*
7913
7914 EARTH_PT1 MEDIA DRIVER
7915 M:      Akihiro Tsukada <[email protected]>
7916 L:      [email protected]
7917 S:      Odd Fixes
7918 F:      drivers/media/pci/pt1/
7919
7920 EARTH_PT3 MEDIA DRIVER
7921 M:      Akihiro Tsukada <[email protected]>
7922 L:      [email protected]
7923 S:      Odd Fixes
7924 F:      drivers/media/pci/pt3/
7925
7926 EC100 MEDIA DRIVER
7927 L:      [email protected]
7928 S:      Orphan
7929 W:      https://linuxtv.org
7930 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7931 F:      drivers/media/dvb-frontends/ec100*
7932
7933 ECRYPT FILE SYSTEM
7934 M:      Tyler Hicks <[email protected]>
7935 L:      [email protected]
7936 S:      Odd Fixes
7937 W:      http://ecryptfs.org
7938 W:      https://launchpad.net/ecryptfs
7939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7940 F:      Documentation/filesystems/ecryptfs.rst
7941 F:      fs/ecryptfs/
7942
7943 EDAC-AMD64
7944 M:      Yazen Ghannam <[email protected]>
7945 L:      [email protected]
7946 S:      Supported
7947 F:      drivers/edac/amd64_edac*
7948 F:      drivers/edac/mce_amd*
7949
7950 EDAC-ARMADA
7951 M:      Jan Luebbe <[email protected]>
7952 L:      [email protected]
7953 S:      Maintained
7954 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7955 F:      drivers/edac/armada_xp_*
7956
7957 EDAC-AST2500
7958 M:      Stefan Schaeckeler <[email protected]>
7959 S:      Supported
7960 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7961 F:      drivers/edac/aspeed_edac.c
7962
7963 EDAC-BLUEFIELD
7964 M:      Shravan Kumar Ramani <[email protected]>
7965 S:      Supported
7966 F:      drivers/edac/bluefield_edac.c
7967
7968 EDAC-CALXEDA
7969 M:      Andre Przywara <[email protected]>
7970 L:      [email protected]
7971 S:      Maintained
7972 F:      drivers/edac/highbank*
7973
7974 EDAC-CAVIUM OCTEON
7975 M:      Ralf Baechle <[email protected]>
7976 L:      [email protected]
7977 L:      [email protected]
7978 S:      Supported
7979 F:      drivers/edac/octeon_edac*
7980
7981 EDAC-CAVIUM THUNDERX
7982 M:      Robert Richter <[email protected]>
7983 L:      [email protected]
7984 S:      Odd Fixes
7985 F:      drivers/edac/thunderx_edac*
7986
7987 EDAC-CORE
7988 M:      Borislav Petkov <[email protected]>
7989 M:      Tony Luck <[email protected]>
7990 R:      James Morse <[email protected]>
7991 R:      Mauro Carvalho Chehab <[email protected]>
7992 R:      Robert Richter <[email protected]>
7993 L:      [email protected]
7994 S:      Supported
7995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7996 F:      Documentation/driver-api/edac.rst
7997 F:      drivers/edac/
7998 F:      include/linux/edac.h
7999
8000 EDAC-DMC520
8001 M:      Lei Wang <[email protected]>
8002 L:      [email protected]
8003 S:      Supported
8004 F:      drivers/edac/dmc520_edac.c
8005
8006 EDAC-E752X
8007 M:      Mark Gross <[email protected]>
8008 L:      [email protected]
8009 S:      Maintained
8010 F:      drivers/edac/e752x_edac.c
8011
8012 EDAC-E7XXX
8013 L:      [email protected]
8014 S:      Maintained
8015 F:      drivers/edac/e7xxx_edac.c
8016
8017 EDAC-FSL_DDR
8018 M:      York Sun <[email protected]>
8019 L:      [email protected]
8020 S:      Maintained
8021 F:      drivers/edac/fsl_ddr_edac.*
8022
8023 EDAC-GHES
8024 M:      Mauro Carvalho Chehab <[email protected]>
8025 L:      [email protected]
8026 S:      Maintained
8027 F:      drivers/edac/ghes_edac.c
8028
8029 EDAC-I10NM
8030 M:      Tony Luck <[email protected]>
8031 L:      [email protected]
8032 S:      Maintained
8033 F:      drivers/edac/i10nm_base.c
8034
8035 EDAC-I3000
8036 L:      [email protected]
8037 S:      Orphan
8038 F:      drivers/edac/i3000_edac.c
8039
8040 EDAC-I5000
8041 L:      [email protected]
8042 S:      Maintained
8043 F:      drivers/edac/i5000_edac.c
8044
8045 EDAC-I5400
8046 M:      Mauro Carvalho Chehab <[email protected]>
8047 L:      [email protected]
8048 S:      Maintained
8049 F:      drivers/edac/i5400_edac.c
8050
8051 EDAC-I7300
8052 M:      Mauro Carvalho Chehab <[email protected]>
8053 L:      [email protected]
8054 S:      Maintained
8055 F:      drivers/edac/i7300_edac.c
8056
8057 EDAC-I7CORE
8058 M:      Mauro Carvalho Chehab <[email protected]>
8059 L:      [email protected]
8060 S:      Maintained
8061 F:      drivers/edac/i7core_edac.c
8062
8063 EDAC-I82443BXGX
8064 M:      Tim Small <[email protected]>
8065 L:      [email protected]
8066 S:      Maintained
8067 F:      drivers/edac/i82443bxgx_edac.c
8068
8069 EDAC-I82975X
8070 M:      "Arvind R." <[email protected]>
8071 L:      [email protected]
8072 S:      Maintained
8073 F:      drivers/edac/i82975x_edac.c
8074
8075 EDAC-IE31200
8076 M:      Jason Baron <[email protected]>
8077 L:      [email protected]
8078 S:      Maintained
8079 F:      drivers/edac/ie31200_edac.c
8080
8081 EDAC-IGEN6
8082 M:      Tony Luck <[email protected]>
8083 R:      Qiuxu Zhuo <[email protected]>
8084 L:      [email protected]
8085 S:      Maintained
8086 F:      drivers/edac/igen6_edac.c
8087
8088 EDAC-MPC85XX
8089 M:      Johannes Thumshirn <[email protected]>
8090 L:      [email protected]
8091 S:      Maintained
8092 F:      drivers/edac/mpc85xx_edac.[ch]
8093
8094 EDAC-NPCM
8095 M:      Marvin Lin <[email protected]>
8096 M:      Stanley Chu <[email protected]>
8097 L:      [email protected]
8098 S:      Maintained
8099 F:      Documentation/devicetree/bindings/memory-controllers/nuvoton,npcm-memory-controller.yaml
8100 F:      drivers/edac/npcm_edac.c
8101
8102 EDAC-PASEMI
8103 M:      Egor Martovetsky <[email protected]>
8104 L:      [email protected]
8105 S:      Maintained
8106 F:      drivers/edac/pasemi_edac.c
8107
8108 EDAC-PND2
8109 M:      Tony Luck <[email protected]>
8110 L:      [email protected]
8111 S:      Maintained
8112 F:      drivers/edac/pnd2_edac.[ch]
8113
8114 EDAC-QCOM
8115 M:      Manivannan Sadhasivam <[email protected]>
8116 L:      [email protected]
8117 L:      [email protected]
8118 S:      Maintained
8119 F:      drivers/edac/qcom_edac.c
8120
8121 EDAC-R82600
8122 M:      Tim Small <[email protected]>
8123 L:      [email protected]
8124 S:      Maintained
8125 F:      drivers/edac/r82600_edac.c
8126
8127 EDAC-SBRIDGE
8128 M:      Tony Luck <[email protected]>
8129 R:      Qiuxu Zhuo <[email protected]>
8130 L:      [email protected]
8131 S:      Maintained
8132 F:      drivers/edac/sb_edac.c
8133
8134 EDAC-SKYLAKE
8135 M:      Tony Luck <[email protected]>
8136 L:      [email protected]
8137 S:      Maintained
8138 F:      drivers/edac/skx_*.[ch]
8139
8140 EDAC-TI
8141 M:      Tero Kristo <[email protected]>
8142 L:      [email protected]
8143 S:      Odd Fixes
8144 F:      drivers/edac/ti_edac.c
8145
8146 EDIROL UA-101/UA-1000 DRIVER
8147 M:      Clemens Ladisch <[email protected]>
8148 L:      [email protected] (moderated for non-subscribers)
8149 S:      Maintained
8150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8151 F:      sound/usb/misc/ua101.c
8152
8153 EFI TEST DRIVER
8154 M:      Ivan Hu <[email protected]>
8155 M:      Ard Biesheuvel <[email protected]>
8156 L:      [email protected]
8157 S:      Maintained
8158 F:      drivers/firmware/efi/test/
8159
8160 EFI VARIABLE FILESYSTEM
8161 M:      Jeremy Kerr <[email protected]>
8162 M:      Ard Biesheuvel <[email protected]>
8163 L:      [email protected]
8164 S:      Maintained
8165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
8166 F:      fs/efivarfs/
8167
8168 EFIFB FRAMEBUFFER DRIVER
8169 M:      Peter Jones <[email protected]>
8170 L:      [email protected]
8171 S:      Maintained
8172 F:      drivers/video/fbdev/efifb.c
8173
8174 EFS FILESYSTEM
8175 S:      Orphan
8176 W:      http://aeschi.ch.eu.org/efs/
8177 F:      fs/efs/
8178
8179 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
8180 L:      [email protected]
8181 S:      Orphan
8182 F:      drivers/net/ethernet/ibm/ehea/
8183
8184 ELM327 CAN NETWORK DRIVER
8185 M:      Max Staudt <[email protected]>
8186 L:      [email protected]
8187 S:      Maintained
8188 F:      Documentation/networking/device_drivers/can/can327.rst
8189 F:      drivers/net/can/can327.c
8190
8191 EM28XX VIDEO4LINUX DRIVER
8192 M:      Mauro Carvalho Chehab <[email protected]>
8193 L:      [email protected]
8194 S:      Maintained
8195 W:      https://linuxtv.org
8196 T:      git git://linuxtv.org/media_tree.git
8197 F:      Documentation/admin-guide/media/em28xx*
8198 F:      drivers/media/usb/em28xx/
8199
8200 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
8201 M:      Adrian Hunter <[email protected]>
8202 M:      Asutosh Das <[email protected]>
8203 R:      Ritesh Harjani <[email protected]>
8204 L:      [email protected]
8205 S:      Supported
8206 F:      drivers/mmc/host/cqhci*
8207
8208 EMS CPC-PCI CAN DRIVER
8209 M:      Gerhard Uttenthaler <[email protected]>
8210 M:      [email protected]
8211 L:      [email protected]
8212 S:      Maintained
8213 F:      drivers/net/can/sja1000/ems_pci.c
8214
8215 EMULEX 10Gbps iSCSI - OneConnect DRIVER
8216 M:      Ketan Mukadam <[email protected]>
8217 L:      [email protected]
8218 S:      Supported
8219 W:      http://www.broadcom.com
8220 F:      drivers/scsi/be2iscsi/
8221
8222 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
8223 M:      Ajit Khaparde <[email protected]>
8224 M:      Sriharsha Basavapatna <[email protected]>
8225 M:      Somnath Kotur <[email protected]>
8226 L:      [email protected]
8227 S:      Supported
8228 W:      http://www.emulex.com
8229 F:      drivers/net/ethernet/emulex/benet/
8230
8231 EMULEX ONECONNECT ROCE DRIVER
8232 M:      Selvin Xavier <[email protected]>
8233 L:      [email protected]
8234 S:      Odd Fixes
8235 W:      http://www.broadcom.com
8236 F:      drivers/infiniband/hw/ocrdma/
8237 F:      include/uapi/rdma/ocrdma-abi.h
8238
8239 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
8240 M:      James Smart <[email protected]>
8241 M:      Ram Vegesna <[email protected]>
8242 L:      [email protected]
8243 L:      [email protected]
8244 S:      Supported
8245 W:      http://www.broadcom.com
8246 F:      drivers/scsi/elx/
8247
8248 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
8249 M:      James Smart <[email protected]>
8250 M:      Dick Kennedy <[email protected]>
8251 L:      [email protected]
8252 S:      Supported
8253 W:      http://www.broadcom.com
8254 F:      drivers/scsi/lpfc/
8255
8256 ENE CB710 FLASH CARD READER DRIVER
8257 M:      Michał Mirosław <[email protected]>
8258 S:      Maintained
8259 F:      drivers/misc/cb710/
8260 F:      drivers/mmc/host/cb710-mmc.*
8261 F:      include/linux/cb710.h
8262
8263 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
8264 M:      Maxim Levitsky <[email protected]>
8265 S:      Maintained
8266 F:      drivers/media/rc/ene_ir.*
8267
8268 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
8269 M:      Laurentiu Tudor <[email protected]>
8270 L:      [email protected]
8271 S:      Maintained
8272 F:      drivers/tty/ehv_bytechan.c
8273
8274 EPSON S1D13XXX FRAMEBUFFER DRIVER
8275 M:      Kristoffer Ericson <[email protected]>
8276 S:      Maintained
8277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
8278 F:      drivers/video/fbdev/s1d13xxxfb.c
8279 F:      include/video/s1d13xxxfb.h
8280
8281 EROFS FILE SYSTEM
8282 M:      Gao Xiang <[email protected]>
8283 M:      Chao Yu <[email protected]>
8284 R:      Yue Hu <[email protected]>
8285 R:      Jeffle Xu <[email protected]>
8286 R:      Sandeep Dhavale <[email protected]>
8287 L:      [email protected]
8288 S:      Maintained
8289 W:      https://erofs.docs.kernel.org
8290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
8291 F:      Documentation/ABI/testing/sysfs-fs-erofs
8292 F:      Documentation/filesystems/erofs.rst
8293 F:      fs/erofs/
8294 F:      include/trace/events/erofs.h
8295
8296 ERRSEQ ERROR TRACKING INFRASTRUCTURE
8297 M:      Jeff Layton <[email protected]>
8298 S:      Maintained
8299 F:      include/linux/errseq.h
8300 F:      lib/errseq.c
8301
8302 ESD CAN NETWORK DRIVERS
8303 M:      Stefan Mätje <[email protected]>
8304 R:      [email protected]
8305 L:      [email protected]
8306 S:      Maintained
8307 F:      drivers/net/can/esd/
8308
8309 ESD CAN/USB DRIVERS
8310 M:      Frank Jungclaus <[email protected]>
8311 R:      [email protected]
8312 L:      [email protected]
8313 S:      Maintained
8314 F:      drivers/net/can/usb/esd_usb.c
8315
8316 ET131X NETWORK DRIVER
8317 M:      Mark Einon <[email protected]>
8318 S:      Odd Fixes
8319 F:      drivers/net/ethernet/agere/
8320
8321 ETAS ES58X CAN/USB DRIVER
8322 M:      Vincent Mailhol <[email protected]>
8323 L:      [email protected]
8324 S:      Maintained
8325 F:      Documentation/networking/devlink/etas_es58x.rst
8326 F:      drivers/net/can/usb/etas_es58x/
8327
8328 ETHERNET BRIDGE
8329 M:      Roopa Prabhu <[email protected]>
8330 M:      Nikolay Aleksandrov <[email protected]>
8331 L:      [email protected]
8332 L:      [email protected]
8333 S:      Maintained
8334 W:      http://www.linuxfoundation.org/en/Net:Bridge
8335 F:      include/linux/netfilter_bridge/
8336 F:      net/bridge/
8337
8338 ETHERNET PHY LIBRARY
8339 M:      Andrew Lunn <[email protected]>
8340 M:      Heiner Kallweit <[email protected]>
8341 R:      Russell King <[email protected]>
8342 L:      [email protected]
8343 S:      Maintained
8344 F:      Documentation/ABI/testing/sysfs-class-net-phydev
8345 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
8346 F:      Documentation/devicetree/bindings/net/mdio*
8347 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
8348 F:      Documentation/networking/phy.rst
8349 F:      drivers/net/mdio/
8350 F:      drivers/net/mdio/acpi_mdio.c
8351 F:      drivers/net/mdio/fwnode_mdio.c
8352 F:      drivers/net/mdio/of_mdio.c
8353 F:      drivers/net/pcs/
8354 F:      drivers/net/phy/
8355 F:      include/dt-bindings/net/qca-ar803x.h
8356 F:      include/linux/*mdio*.h
8357 F:      include/linux/linkmode.h
8358 F:      include/linux/mdio/*.h
8359 F:      include/linux/mii.h
8360 F:      include/linux/of_net.h
8361 F:      include/linux/phy.h
8362 F:      include/linux/phy_fixed.h
8363 F:      include/linux/phy_link_topology.h
8364 F:      include/linux/phylib_stubs.h
8365 F:      include/linux/platform_data/mdio-bcm-unimac.h
8366 F:      include/linux/platform_data/mdio-gpio.h
8367 F:      include/trace/events/mdio.h
8368 F:      include/uapi/linux/mdio.h
8369 F:      include/uapi/linux/mii.h
8370 F:      net/core/of_net.c
8371
8372 ETHERNET PHY LIBRARY [RUST]
8373 M:      FUJITA Tomonori <[email protected]>
8374 R:      Trevor Gross <[email protected]>
8375 L:      [email protected]
8376 L:      [email protected]
8377 S:      Maintained
8378 F:      rust/kernel/net/phy.rs
8379 F:      rust/kernel/net/phy/reg.rs
8380
8381 EXEC & BINFMT API, ELF
8382 R:      Eric Biederman <[email protected]>
8383 R:      Kees Cook <[email protected]>
8384 L:      [email protected]
8385 S:      Supported
8386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
8387 F:      Documentation/userspace-api/ELF.rst
8388 F:      fs/*binfmt_*.c
8389 F:      fs/Kconfig.binfmt
8390 F:      fs/exec.c
8391 F:      fs/tests/binfmt_*_kunit.c
8392 F:      fs/tests/exec_kunit.c
8393 F:      include/linux/binfmts.h
8394 F:      include/linux/elf.h
8395 F:      include/uapi/linux/binfmts.h
8396 F:      include/uapi/linux/elf.h
8397 F:      tools/testing/selftests/exec/
8398 N:      asm/elf.h
8399 N:      binfmt
8400
8401 EXFAT FILE SYSTEM
8402 M:      Namjae Jeon <[email protected]>
8403 M:      Sungjong Seo <[email protected]>
8404 L:      [email protected]
8405 S:      Maintained
8406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
8407 F:      fs/exfat/
8408
8409 EXPRESSWIRE PROTOCOL LIBRARY
8410 M:      Duje Mihanović <[email protected]>
8411 L:      [email protected]
8412 S:      Maintained
8413 F:      drivers/leds/leds-expresswire.c
8414 F:      include/linux/leds-expresswire.h
8415
8416 EXT2 FILE SYSTEM
8417 M:      Jan Kara <[email protected]>
8418 L:      [email protected]
8419 S:      Maintained
8420 F:      Documentation/filesystems/ext2.rst
8421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git
8422 F:      fs/ext2/
8423 F:      include/linux/ext2*
8424
8425 EXT4 FILE SYSTEM
8426 M:      "Theodore Ts'o" <[email protected]>
8427 M:      Andreas Dilger <[email protected]>
8428 L:      [email protected]
8429 S:      Maintained
8430 W:      http://ext4.wiki.kernel.org
8431 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
8432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
8433 F:      Documentation/filesystems/ext4/
8434 F:      fs/ext4/
8435 F:      include/trace/events/ext4.h
8436 F:      include/uapi/linux/ext4.h
8437
8438 Extended Verification Module (EVM)
8439 M:      Mimi Zohar <[email protected]>
8440 M:      Roberto Sassu <[email protected]>
8441 L:      [email protected]
8442 S:      Supported
8443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8444 F:      security/integrity/
8445 F:      security/integrity/evm/
8446
8447 EXTENSIBLE FIRMWARE INTERFACE (EFI)
8448 M:      Ard Biesheuvel <[email protected]>
8449 L:      [email protected]
8450 S:      Maintained
8451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
8452 F:      Documentation/admin-guide/efi-stub.rst
8453 F:      arch/*/include/asm/efi.h
8454 F:      arch/*/kernel/efi.c
8455 F:      arch/arm/boot/compressed/efi-header.S
8456 F:      arch/x86/platform/efi/
8457 F:      drivers/firmware/efi/
8458 F:      include/linux/efi*.h
8459
8460 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
8461 M:      MyungJoo Ham <[email protected]>
8462 M:      Chanwoo Choi <[email protected]>
8463 L:      [email protected]
8464 S:      Maintained
8465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
8466 F:      Documentation/devicetree/bindings/extcon/
8467 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
8468 F:      drivers/extcon/
8469 F:      include/linux/extcon.h
8470 F:      include/linux/extcon/
8471
8472 EXTRA BOOT CONFIG
8473 M:      Masami Hiramatsu <[email protected]>
8474 L:      [email protected]
8475 L:      [email protected]
8476 S:      Maintained
8477 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8479 F:      Documentation/admin-guide/bootconfig.rst
8480 F:      fs/proc/bootconfig.c
8481 F:      include/linux/bootconfig.h
8482 F:      lib/bootconfig-data.S
8483 F:      lib/bootconfig.c
8484 F:      tools/bootconfig/*
8485 F:      tools/bootconfig/scripts/*
8486
8487 EXYNOS DP DRIVER
8488 M:      Jingoo Han <[email protected]>
8489 L:      [email protected]
8490 S:      Maintained
8491 F:      drivers/gpu/drm/exynos/exynos_dp*
8492
8493 EXYNOS SYSMMU (IOMMU) driver
8494 M:      Marek Szyprowski <[email protected]>
8495 L:      [email protected]
8496 S:      Maintained
8497 F:      drivers/iommu/exynos-iommu.c
8498
8499 F2FS FILE SYSTEM
8500 M:      Jaegeuk Kim <[email protected]>
8501 M:      Chao Yu <[email protected]>
8502 L:      [email protected]
8503 S:      Maintained
8504 W:      https://f2fs.wiki.kernel.org/
8505 Q:      https://patchwork.kernel.org/project/f2fs/list/
8506 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
8507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
8508 F:      Documentation/ABI/testing/sysfs-fs-f2fs
8509 F:      Documentation/filesystems/f2fs.rst
8510 F:      fs/f2fs/
8511 F:      include/linux/f2fs_fs.h
8512 F:      include/trace/events/f2fs.h
8513 F:      include/uapi/linux/f2fs.h
8514
8515 F71805F HARDWARE MONITORING DRIVER
8516 M:      Jean Delvare <[email protected]>
8517 L:      [email protected]
8518 S:      Maintained
8519 F:      Documentation/hwmon/f71805f.rst
8520 F:      drivers/hwmon/f71805f.c
8521
8522 FADDR2LINE
8523 M:      Josh Poimboeuf <[email protected]>
8524 S:      Maintained
8525 F:      scripts/faddr2line
8526
8527 FAILOVER MODULE
8528 M:      Sridhar Samudrala <[email protected]>
8529 L:      [email protected]
8530 S:      Supported
8531 F:      Documentation/networking/failover.rst
8532 F:      include/net/failover.h
8533 F:      net/core/failover.c
8534
8535 FANOTIFY
8536 M:      Jan Kara <[email protected]>
8537 R:      Amir Goldstein <[email protected]>
8538 R:      Matthew Bobrowski <[email protected]>
8539 L:      [email protected]
8540 S:      Maintained
8541 F:      fs/notify/fanotify/
8542 F:      include/linux/fanotify.h
8543 F:      include/uapi/linux/fanotify.h
8544
8545 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
8546 M:      Linus Walleij <[email protected]>
8547 L:      [email protected]
8548 S:      Maintained
8549 F:      drivers/usb/fotg210/
8550
8551 FARSYNC SYNCHRONOUS DRIVER
8552 M:      Kevin Curtis <[email protected]>
8553 S:      Supported
8554 W:      http://www.farsite.co.uk/
8555 F:      drivers/net/wan/farsync.*
8556
8557 FAULT INJECTION SUPPORT
8558 M:      Akinobu Mita <[email protected]>
8559 S:      Supported
8560 F:      Documentation/fault-injection/
8561 F:      lib/fault-inject.c
8562
8563 FBTFT Framebuffer drivers
8564 L:      [email protected]
8565 L:      [email protected]
8566 S:      Orphan
8567 F:      drivers/staging/fbtft/
8568
8569 FC0011 TUNER DRIVER
8570 M:      Michael Buesch <[email protected]>
8571 L:      [email protected]
8572 S:      Maintained
8573 F:      drivers/media/tuners/fc0011.c
8574 F:      drivers/media/tuners/fc0011.h
8575
8576 FC2580 MEDIA DRIVER
8577 L:      [email protected]
8578 S:      Orphan
8579 W:      https://linuxtv.org
8580 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8581 F:      drivers/media/tuners/fc2580*
8582
8583 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
8584 M:      Hannes Reinecke <[email protected]>
8585 L:      [email protected]
8586 S:      Supported
8587 W:      www.Open-FCoE.org
8588 F:      drivers/scsi/fcoe/
8589 F:      drivers/scsi/libfc/
8590 F:      include/scsi/fc/
8591 F:      include/scsi/libfc.h
8592 F:      include/scsi/libfcoe.h
8593 F:      include/uapi/scsi/fc/
8594
8595 FILE LOCKING (flock() and fcntl()/lockf())
8596 M:      Jeff Layton <[email protected]>
8597 M:      Chuck Lever <[email protected]>
8598 R:      Alexander Aring <[email protected]>
8599 L:      [email protected]
8600 S:      Maintained
8601 F:      fs/fcntl.c
8602 F:      fs/locks.c
8603 F:      include/linux/fcntl.h
8604 F:      include/uapi/linux/fcntl.h
8605
8606 FILESYSTEM DIRECT ACCESS (DAX)
8607 M:      Dan Williams <[email protected]>
8608 R:      Matthew Wilcox <[email protected]>
8609 R:      Jan Kara <[email protected]>
8610 L:      [email protected]
8611 L:      [email protected]
8612 S:      Supported
8613 F:      fs/dax.c
8614 F:      include/linux/dax.h
8615 F:      include/trace/events/fs_dax.h
8616
8617 FILESYSTEMS (VFS and infrastructure)
8618 M:      Alexander Viro <[email protected]>
8619 M:      Christian Brauner <[email protected]>
8620 R:      Jan Kara <[email protected]>
8621 L:      [email protected]
8622 S:      Maintained
8623 F:      fs/*
8624 F:      include/linux/fs.h
8625 F:      include/linux/fs_types.h
8626 F:      include/uapi/linux/fs.h
8627 F:      include/uapi/linux/openat2.h
8628
8629 FILESYSTEMS [EXPORTFS]
8630 M:      Chuck Lever <[email protected]>
8631 M:      Jeff Layton <[email protected]>
8632 R:      Amir Goldstein <[email protected]>
8633 L:      [email protected]
8634 L:      [email protected]
8635 S:      Supported
8636 F:      Documentation/filesystems/nfs/exporting.rst
8637 F:      fs/exportfs/
8638 F:      fs/fhandle.c
8639 F:      include/linux/exportfs.h
8640
8641 FILESYSTEMS [IDMAPPED MOUNTS]
8642 M:      Christian Brauner <[email protected]>
8643 M:      Seth Forshee <[email protected]>
8644 L:      [email protected]
8645 S:      Maintained
8646 F:      Documentation/filesystems/idmappings.rst
8647 F:      fs/mnt_idmapping.c
8648 F:      include/linux/mnt_idmapping.*
8649 F:      tools/testing/selftests/mount_setattr/
8650
8651 FILESYSTEMS [IOMAP]
8652 M:      Christian Brauner <[email protected]>
8653 R:      Darrick J. Wong <[email protected]>
8654 L:      [email protected]
8655 L:      [email protected]
8656 S:      Supported
8657 F:      Documentation/filesystems/iomap/*
8658 F:      fs/iomap/
8659 F:      include/linux/iomap.h
8660
8661 FILESYSTEMS [NETFS LIBRARY]
8662 M:      David Howells <[email protected]>
8663 R:      Jeff Layton <[email protected]>
8664 L:      [email protected]
8665 L:      [email protected]
8666 S:      Supported
8667 F:      Documentation/filesystems/caching/
8668 F:      Documentation/filesystems/netfs_library.rst
8669 F:      fs/netfs/
8670 F:      include/linux/fscache*.h
8671 F:      include/linux/netfs.h
8672 F:      include/trace/events/fscache.h
8673 F:      include/trace/events/netfs.h
8674
8675 FILESYSTEMS [STACKABLE]
8676 M:      Miklos Szeredi <[email protected]>
8677 M:      Amir Goldstein <[email protected]>
8678 L:      [email protected]
8679 L:      [email protected]
8680 S:      Maintained
8681 F:      fs/backing-file.c
8682 F:      include/linux/backing-file.h
8683
8684 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8685 M:      Riku Voipio <[email protected]>
8686 L:      [email protected]
8687 S:      Maintained
8688 F:      drivers/hwmon/f75375s.c
8689 F:      include/linux/f75375s.h
8690
8691 FINTEK F81604 USB to 2xCANBUS DEVICE DRIVER
8692 M:      Ji-Ze Hong (Peter Hong) <[email protected]>
8693 L:      [email protected]
8694 S:      Maintained
8695 F:      drivers/net/can/usb/f81604.c
8696
8697 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
8698 M:      Clemens Ladisch <[email protected]>
8699 M:      Takashi Sakamoto <[email protected]>
8700 L:      [email protected] (moderated for non-subscribers)
8701 S:      Maintained
8702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8703 F:      include/uapi/sound/firewire.h
8704 F:      sound/firewire/
8705
8706 FIREWIRE MEDIA DRIVERS (firedtv)
8707 M:      Stefan Richter <[email protected]>
8708 L:      [email protected]
8709 L:      [email protected]
8710 S:      Maintained
8711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
8712 F:      drivers/media/firewire/
8713
8714 FIREWIRE SBP-2 TARGET
8715 M:      Chris Boot <[email protected]>
8716 L:      [email protected]
8717 L:      [email protected]
8718 L:      [email protected]
8719 S:      Maintained
8720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
8721 F:      drivers/target/sbp/
8722
8723 FIREWIRE SUBSYSTEM
8724 M:      Takashi Sakamoto <[email protected]>
8725 M:      Takashi Sakamoto <[email protected]>
8726 L:      [email protected]
8727 S:      Maintained
8728 W:      http://ieee1394.docs.kernel.org/
8729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
8730 F:      drivers/firewire/
8731 F:      include/linux/firewire.h
8732 F:      include/uapi/linux/firewire*.h
8733 F:      tools/firewire/
8734
8735 FIRMWARE FRAMEWORK FOR ARMV8-A
8736 M:      Sudeep Holla <[email protected]>
8737 L:      [email protected] (moderated for non-subscribers)
8738 S:      Maintained
8739 F:      drivers/firmware/arm_ffa/
8740 F:      include/linux/arm_ffa.h
8741
8742 FIRMWARE LOADER (request_firmware)
8743 M:      Luis Chamberlain <[email protected]>
8744 M:      Russ Weight <[email protected]>
8745 M:      Danilo Krummrich <[email protected]>
8746 L:      [email protected]
8747 S:      Maintained
8748 F:      Documentation/firmware_class/
8749 F:      drivers/base/firmware_loader/
8750 F:      rust/kernel/firmware.rs
8751 F:      include/linux/firmware.h
8752
8753 FLEXTIMER FTM-QUADDEC DRIVER
8754 M:      Patrick Havelange <[email protected]>
8755 L:      [email protected]
8756 S:      Maintained
8757 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
8758 F:      drivers/counter/ftm-quaddec.c
8759
8760 FLOPPY DRIVER
8761 M:      Denis Efremov <[email protected]>
8762 L:      [email protected]
8763 S:      Odd Fixes
8764 F:      drivers/block/floppy.c
8765
8766 FLYSKY FSIA6B RC RECEIVER
8767 M:      Markus Koch <[email protected]>
8768 L:      [email protected]
8769 S:      Maintained
8770 F:      drivers/input/joystick/fsia6b.c
8771
8772 FOCUSRITE SCARLETT2 MIXER DRIVER (Scarlett Gen 2+ and Clarett)
8773 M:      Geoffrey D. Bennett <[email protected]>
8774 L:      [email protected] (moderated for non-subscribers)
8775 S:      Maintained
8776 W:      https://github.com/geoffreybennett/scarlett-gen2
8777 B:      https://github.com/geoffreybennett/scarlett-gen2/issues
8778 T:      git https://github.com/geoffreybennett/scarlett-gen2.git
8779 F:      include/uapi/sound/scarlett2.h
8780 F:      sound/usb/mixer_scarlett2.c
8781
8782 FORCEDETH GIGABIT ETHERNET DRIVER
8783 M:      Rain River <[email protected]>
8784 M:      Zhu Yanjun <[email protected]>
8785 L:      [email protected]
8786 S:      Maintained
8787 F:      drivers/net/ethernet/nvidia/*
8788
8789 FORTIFY_SOURCE
8790 M:      Kees Cook <[email protected]>
8791 L:      [email protected]
8792 S:      Supported
8793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8794 F:      include/linux/fortify-string.h
8795 F:      lib/fortify_kunit.c
8796 F:      lib/memcpy_kunit.c
8797 F:      lib/test_fortify/*
8798 F:      scripts/test_fortify.sh
8799 K:      \b__NO_FORTIFY\b
8800
8801 FPGA DFL DRIVERS
8802 M:      Wu Hao <[email protected]>
8803 R:      Tom Rix <[email protected]>
8804 L:      [email protected]
8805 S:      Maintained
8806 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8807 F:      Documentation/fpga/dfl.rst
8808 F:      drivers/fpga/dfl*
8809 F:      drivers/uio/uio_dfl.c
8810 F:      include/linux/dfl.h
8811 F:      include/uapi/linux/fpga-dfl.h
8812
8813 FPGA MANAGER FRAMEWORK
8814 M:      Moritz Fischer <[email protected]>
8815 M:      Wu Hao <[email protected]>
8816 M:      Xu Yilun <[email protected]>
8817 R:      Tom Rix <[email protected]>
8818 L:      [email protected]
8819 S:      Maintained
8820 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8822 F:      Documentation/devicetree/bindings/fpga/
8823 F:      Documentation/driver-api/fpga/
8824 F:      Documentation/fpga/
8825 F:      drivers/fpga/
8826 F:      include/linux/fpga/
8827
8828 FPU EMULATOR
8829 M:      Bill Metzenthen <[email protected]>
8830 S:      Maintained
8831 W:      https://floatingpoint.billm.au/
8832 F:      arch/x86/math-emu/
8833
8834 FRAMEBUFFER CORE
8835 M:      Daniel Vetter <[email protected]>
8836 S:      Odd Fixes
8837 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
8838 F:      drivers/video/fbdev/core/
8839
8840 FRAMEBUFFER LAYER
8841 M:      Helge Deller <[email protected]>
8842 L:      [email protected]
8843 L:      [email protected]
8844 S:      Maintained
8845 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8847 F:      Documentation/fb/
8848 F:      drivers/video/
8849 F:      include/linux/fb.h
8850 F:      include/uapi/linux/fb.h
8851 F:      include/uapi/video/
8852 F:      include/video/
8853
8854 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8855 M:      Horia Geantă <[email protected]>
8856 M:      Pankaj Gupta <[email protected]>
8857 M:      Gaurav Jain <[email protected]>
8858 L:      [email protected]
8859 S:      Maintained
8860 F:      Documentation/devicetree/bindings/crypto/fsl,sec-v4.0*
8861 F:      drivers/crypto/caam/
8862
8863 FREESCALE COLDFIRE M5441X MMC DRIVER
8864 M:      Angelo Dureghello <[email protected]>
8865 L:      [email protected]
8866 S:      Maintained
8867 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8868 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8869
8870 FREESCALE DIU FRAMEBUFFER DRIVER
8871 M:      Timur Tabi <[email protected]>
8872 L:      [email protected]
8873 S:      Maintained
8874 F:      drivers/video/fbdev/fsl-diu-fb.*
8875
8876 FREESCALE DMA DRIVER
8877 M:      Zhang Wei <[email protected]>
8878 L:      [email protected]
8879 S:      Maintained
8880 F:      drivers/dma/fsldma.*
8881
8882 FREESCALE DSPI DRIVER
8883 M:      Vladimir Oltean <[email protected]>
8884 L:      [email protected]
8885 L:      [email protected]
8886 S:      Maintained
8887 F:      Documentation/devicetree/bindings/spi/fsl,dspi*.yaml
8888 F:      drivers/spi/spi-fsl-dspi.c
8889 F:      include/linux/spi/spi-fsl-dspi.h
8890
8891 FREESCALE eDMA DRIVER
8892 M:      Frank Li <[email protected]>
8893 L:      [email protected]
8894 L:      [email protected]
8895 S:      Maintained
8896 F:      Documentation/devicetree/bindings/dma/fsl,edma.yaml
8897 F:      drivers/dma/fsl-edma*.*
8898
8899 FREESCALE ENETC ETHERNET DRIVERS
8900 M:      Claudiu Manoil <[email protected]>
8901 M:      Vladimir Oltean <[email protected]>
8902 L:      [email protected]
8903 S:      Maintained
8904 F:      drivers/net/ethernet/freescale/enetc/
8905
8906 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8907 M:      Claudiu Manoil <[email protected]>
8908 L:      [email protected]
8909 S:      Maintained
8910 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8911 F:      drivers/net/ethernet/freescale/gianfar*
8912
8913 FREESCALE GPMI NAND DRIVER
8914 M:      Han Xu <[email protected]>
8915 L:      [email protected]
8916 S:      Maintained
8917 F:      drivers/mtd/nand/raw/gpmi-nand/*
8918
8919 FREESCALE I2C CPM DRIVER
8920 M:      Jochen Friedrich <[email protected]>
8921 L:      [email protected]
8922 L:      [email protected]
8923 S:      Maintained
8924 F:      drivers/i2c/busses/i2c-cpm.c
8925
8926 FREESCALE IMX / MXC FEC DRIVER
8927 M:      Wei Fang <[email protected]>
8928 R:      Shenwei Wang <[email protected]>
8929 R:      Clark Wang <[email protected]>
8930 L:      [email protected]
8931 L:      [email protected]
8932 S:      Maintained
8933 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8934 F:      drivers/net/ethernet/freescale/fec.h
8935 F:      drivers/net/ethernet/freescale/fec_main.c
8936 F:      drivers/net/ethernet/freescale/fec_ptp.c
8937
8938 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8939 M:      Sascha Hauer <[email protected]>
8940 R:      Pengutronix Kernel Team <[email protected]>
8941 L:      [email protected]
8942 L:      [email protected] (moderated for non-subscribers)
8943 S:      Maintained
8944 F:      drivers/video/fbdev/imxfb.c
8945
8946 FREESCALE IMX DDR PMU DRIVER
8947 M:      Frank Li <[email protected]>
8948 L:      [email protected] (moderated for non-subscribers)
8949 S:      Maintained
8950 F:      Documentation/admin-guide/perf/imx-ddr.rst
8951 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8952 F:      drivers/perf/fsl_imx8_ddr_perf.c
8953
8954 FREESCALE IMX I2C DRIVER
8955 M:      Oleksij Rempel <[email protected]>
8956 R:      Pengutronix Kernel Team <[email protected]>
8957 L:      [email protected]
8958 S:      Maintained
8959 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8960 F:      drivers/i2c/busses/i2c-imx.c
8961
8962 FREESCALE IMX LPI2C DRIVER
8963 M:      Dong Aisheng <[email protected]>
8964 L:      [email protected]
8965 L:      [email protected]
8966 S:      Maintained
8967 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8968 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8969
8970 FREESCALE IMX LPSPI DRIVER
8971 M:      Frank Li <[email protected]>
8972 L:      [email protected]
8973 L:      [email protected]
8974 S:      Maintained
8975 F:      Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml
8976 F:      drivers/spi/spi-fsl-lpspi.c
8977
8978 FREESCALE MPC I2C DRIVER
8979 M:      Chris Packham <[email protected]>
8980 L:      [email protected]
8981 S:      Maintained
8982 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8983 F:      drivers/i2c/busses/i2c-mpc.c
8984
8985 FREESCALE QORIQ DPAA ETHERNET DRIVER
8986 M:      Madalin Bucur <[email protected]>
8987 L:      [email protected]
8988 S:      Maintained
8989 F:      drivers/net/ethernet/freescale/dpaa
8990
8991 FREESCALE QORIQ DPAA FMAN DRIVER
8992 M:      Madalin Bucur <[email protected]>
8993 R:      Sean Anderson <[email protected]>
8994 L:      [email protected]
8995 S:      Maintained
8996 F:      Documentation/devicetree/bindings/net/fsl,fman*.yaml
8997 F:      drivers/net/ethernet/freescale/fman
8998
8999 FREESCALE QORIQ PTP CLOCK DRIVER
9000 M:      Yangbo Lu <[email protected]>
9001 L:      [email protected]
9002 S:      Maintained
9003 F:      Documentation/devicetree/bindings/ptp/fsl,ptp.yaml
9004 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
9005 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
9006 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
9007 F:      drivers/ptp/ptp_qoriq.c
9008 F:      drivers/ptp/ptp_qoriq_debugfs.c
9009 F:      include/linux/fsl/ptp_qoriq.h
9010
9011 FREESCALE QUAD SPI DRIVER
9012 M:      Han Xu <[email protected]>
9013 L:      [email protected]
9014 L:      [email protected]
9015 S:      Maintained
9016 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
9017 F:      drivers/spi/spi-fsl-qspi.c
9018
9019 FREESCALE QUICC ENGINE LIBRARY
9020 M:      Qiang Zhao <[email protected]>
9021 M:      Christophe Leroy <[email protected]>
9022 L:      [email protected]
9023 S:      Maintained
9024 F:      drivers/soc/fsl/qe/
9025 F:      include/soc/fsl/qe/
9026
9027 FREESCALE QUICC ENGINE QMC DRIVER
9028 M:      Herve Codina <[email protected]>
9029 L:      [email protected]
9030 S:      Maintained
9031 F:      Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,cpm1-scc-qmc.yaml
9032 F:      drivers/soc/fsl/qe/qmc.c
9033 F:      include/soc/fsl/qe/qmc.h
9034
9035 FREESCALE QUICC ENGINE QMC HDLC DRIVER
9036 M:      Herve Codina <[email protected]>
9037 L:      [email protected]
9038 L:      [email protected]
9039 S:      Maintained
9040 F:      drivers/net/wan/fsl_qmc_hdlc.c
9041
9042 FREESCALE QUICC ENGINE TSA DRIVER
9043 M:      Herve Codina <[email protected]>
9044 L:      [email protected]
9045 S:      Maintained
9046 F:      Documentation/devicetree/bindings/soc/fsl/cpm_qe/fsl,cpm1-tsa.yaml
9047 F:      drivers/soc/fsl/qe/tsa.c
9048 F:      drivers/soc/fsl/qe/tsa.h
9049 F:      include/dt-bindings/soc/cpm1-fsl,tsa.h
9050
9051 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
9052 L:      [email protected]
9053 L:      [email protected]
9054 S:      Orphan
9055 F:      drivers/net/ethernet/freescale/ucc_geth*
9056
9057 FREESCALE QUICC ENGINE UCC HDLC DRIVER
9058 M:      Zhao Qiang <[email protected]>
9059 L:      [email protected]
9060 L:      [email protected]
9061 S:      Maintained
9062 F:      drivers/net/wan/fsl_ucc_hdlc*
9063
9064 FREESCALE QUICC ENGINE UCC UART DRIVER
9065 M:      Timur Tabi <[email protected]>
9066 L:      [email protected]
9067 S:      Maintained
9068 F:      drivers/tty/serial/ucc_uart.c
9069
9070 FREESCALE SOC DRIVERS
9071 M:      Christophe Leroy <[email protected]>
9072 L:      [email protected]
9073 L:      [email protected] (moderated for non-subscribers)
9074 S:      Maintained
9075 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
9076 F:      Documentation/devicetree/bindings/soc/fsl/
9077 F:      drivers/soc/fsl/
9078 F:      include/linux/fsl/
9079 F:      include/soc/fsl/
9080
9081 FREESCALE SOC FS_ENET DRIVER
9082 M:      Pantelis Antoniou <[email protected]>
9083 L:      [email protected]
9084 L:      [email protected]
9085 S:      Maintained
9086 F:      drivers/net/ethernet/freescale/fs_enet/
9087
9088 FREESCALE SOC SOUND DRIVERS
9089 M:      Shengjiu Wang <[email protected]>
9090 M:      Xiubo Li <[email protected]>
9091 R:      Fabio Estevam <[email protected]>
9092 R:      Nicolin Chen <[email protected]>
9093 L:      [email protected] (moderated for non-subscribers)
9094 L:      [email protected]
9095 S:      Maintained
9096 F:      sound/soc/fsl/fsl*
9097 F:      sound/soc/fsl/imx*
9098
9099 FREESCALE SOC LPC32XX SOUND DRIVERS
9100 M:      J.M.B. Downing <[email protected]>
9101 M:      Piotr Wojtaszczyk <[email protected]>
9102 R:      Vladimir Zapolskiy <[email protected]>
9103 L:      [email protected] (moderated for non-subscribers)
9104 L:      [email protected]
9105 S:      Maintained
9106 F:      Documentation/devicetree/bindings/sound/nxp,lpc3220-i2s.yaml
9107 F:      sound/soc/fsl/lpc3xxx-*
9108
9109 FREESCALE SOC SOUND QMC DRIVER
9110 M:      Herve Codina <[email protected]>
9111 L:      [email protected] (moderated for non-subscribers)
9112 L:      [email protected]
9113 S:      Maintained
9114 F:      Documentation/devicetree/bindings/sound/fsl,qmc-audio.yaml
9115 F:      sound/soc/fsl/fsl_qmc_audio.c
9116
9117 FREESCALE USB PERIPHERAL DRIVERS
9118 L:      [email protected]
9119 L:      [email protected]
9120 S:      Orphan
9121 F:      drivers/usb/gadget/udc/fsl*
9122
9123 FREESCALE USB PHY DRIVER
9124 L:      [email protected]
9125 L:      [email protected]
9126 S:      Orphan
9127 F:      drivers/usb/phy/phy-fsl-usb*
9128
9129 FREEVXFS FILESYSTEM
9130 M:      Christoph Hellwig <[email protected]>
9131 S:      Maintained
9132 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
9133 F:      fs/freevxfs/
9134
9135 FREEZER
9136 M:      "Rafael J. Wysocki" <[email protected]>
9137 M:      Pavel Machek <[email protected]>
9138 L:      [email protected]
9139 S:      Supported
9140 F:      Documentation/power/freezing-of-tasks.rst
9141 F:      include/linux/freezer.h
9142 F:      kernel/freezer.c
9143
9144 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
9145 M:      Eric Biggers <[email protected]>
9146 M:      Theodore Y. Ts'o <[email protected]>
9147 M:      Jaegeuk Kim <[email protected]>
9148 L:      [email protected]
9149 S:      Supported
9150 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
9151 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
9152 F:      Documentation/filesystems/fscrypt.rst
9153 F:      fs/crypto/
9154 F:      include/linux/fscrypt.h
9155 F:      include/uapi/linux/fscrypt.h
9156
9157 FSI SUBSYSTEM
9158 M:      Jeremy Kerr <[email protected]>
9159 M:      Joel Stanley <[email protected]>
9160 R:      Alistar Popple <[email protected]>
9161 R:      Eddie James <[email protected]>
9162 L:      [email protected]
9163 S:      Supported
9164 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
9165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
9166 F:      drivers/fsi/
9167 F:      include/linux/fsi*.h
9168 F:      include/trace/events/fsi*.h
9169
9170 FSI-ATTACHED I2C DRIVER
9171 M:      Eddie James <[email protected]>
9172 L:      [email protected]
9173 L:      [email protected] (moderated for non-subscribers)
9174 S:      Maintained
9175 F:      Documentation/devicetree/bindings/i2c/ibm,i2c-fsi.yaml
9176 F:      drivers/i2c/busses/i2c-fsi.c
9177
9178 FSI-ATTACHED SPI DRIVER
9179 M:      Eddie James <[email protected]>
9180 L:      [email protected]
9181 S:      Maintained
9182 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
9183 F:      drivers/spi/spi-fsi.c
9184
9185 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
9186 M:      Jan Kara <[email protected]>
9187 R:      Amir Goldstein <[email protected]>
9188 L:      [email protected]
9189 S:      Maintained
9190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
9191 F:      fs/notify/
9192 F:      include/linux/fsnotify*.h
9193
9194 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
9195 M:      Eric Biggers <[email protected]>
9196 M:      Theodore Y. Ts'o <[email protected]>
9197 L:      [email protected]
9198 S:      Supported
9199 Q:      https://patchwork.kernel.org/project/fsverity/list/
9200 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
9201 F:      Documentation/filesystems/fsverity.rst
9202 F:      fs/verity/
9203 F:      include/linux/fsverity.h
9204 F:      include/uapi/linux/fsverity.h
9205
9206 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
9207 M:      Michael Zaidman <[email protected]>
9208 L:      [email protected]
9209 L:      [email protected]
9210 S:      Maintained
9211 F:      drivers/hid/hid-ft260.c
9212
9213 FUJITSU LAPTOP EXTRAS
9214 M:      Jonathan Woithe <[email protected]>
9215 L:      [email protected]
9216 S:      Maintained
9217 F:      drivers/platform/x86/fujitsu-laptop.c
9218
9219 FUJITSU TABLET EXTRAS
9220 M:      Robert Gerlach <[email protected]>
9221 L:      [email protected]
9222 S:      Maintained
9223 F:      drivers/platform/x86/fujitsu-tablet.c
9224
9225 FUNCTION HOOKS (FTRACE)
9226 M:      Steven Rostedt <[email protected]>
9227 M:      Masami Hiramatsu <[email protected]>
9228 R:      Mark Rutland <[email protected]>
9229 L:      [email protected]
9230 L:      [email protected]
9231 S:      Maintained
9232 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
9233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
9234 F:      Documentation/trace/ftrace*
9235 F:      arch/*/*/*/*ftrace*
9236 F:      arch/*/*/*ftrace*
9237 F:      include/*/ftrace.h
9238 F:      kernel/trace/fgraph.c
9239 F:      kernel/trace/ftrace*
9240 F:      samples/ftrace
9241
9242 FUNGIBLE ETHERNET DRIVERS
9243 M:      Dimitris Michailidis <[email protected]>
9244 L:      [email protected]
9245 S:      Supported
9246 F:      drivers/net/ethernet/fungible/
9247
9248 FUSE: FILESYSTEM IN USERSPACE
9249 M:      Miklos Szeredi <[email protected]>
9250 L:      [email protected]
9251 S:      Maintained
9252 W:      https://github.com/libfuse/
9253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
9254 F:      Documentation/filesystems/fuse.rst
9255 F:      fs/fuse/
9256 F:      include/uapi/linux/fuse.h
9257
9258 FUTEX SUBSYSTEM
9259 M:      Thomas Gleixner <[email protected]>
9260 M:      Ingo Molnar <[email protected]>
9261 R:      Peter Zijlstra <[email protected]>
9262 R:      Darren Hart <[email protected]>
9263 R:      Davidlohr Bueso <[email protected]>
9264 R:      André Almeida <[email protected]>
9265 L:      [email protected]
9266 S:      Maintained
9267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9268 F:      Documentation/locking/*futex*
9269 F:      include/asm-generic/futex.h
9270 F:      include/linux/futex.h
9271 F:      include/uapi/linux/futex.h
9272 F:      kernel/futex/*
9273 F:      tools/perf/bench/futex*
9274 F:      tools/testing/selftests/futex/
9275
9276 GALAXYCORE GC0308 CAMERA SENSOR DRIVER
9277 M:      Sebastian Reichel <[email protected]>
9278 L:      [email protected]
9279 S:      Maintained
9280 F:      Documentation/devicetree/bindings/media/i2c/galaxycore,gc0308.yaml
9281 F:      drivers/media/i2c/gc0308.c
9282
9283 GALAXYCORE GC05a2 CAMERA SENSOR DRIVER
9284 M:      Zhi Mao <[email protected]>
9285 L:      [email protected]
9286 S:      Maintained
9287 F:      Documentation/devicetree/bindings/media/i2c/galaxycore,gc05a2.yaml
9288 F:      drivers/media/i2c/gc05a2.c
9289
9290 GALAXYCORE GC08A3 CAMERA SENSOR DRIVER
9291 M:      Zhi Mao <[email protected]>
9292 L:      [email protected]
9293 S:      Maintained
9294 F:      Documentation/devicetree/bindings/media/i2c/galaxycore,gc08a3.yaml
9295 F:      drivers/media/i2c/gc08a3.c
9296
9297 GALAXYCORE GC2145 SENSOR DRIVER
9298 M:      Alain Volmat <[email protected]>
9299 L:      [email protected]
9300 S:      Maintained
9301 T:      git git://linuxtv.org/media_tree.git
9302 F:      Documentation/devicetree/bindings/media/i2c/galaxycore,gc2145.yaml
9303 F:      drivers/media/i2c/gc2145.c
9304
9305 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
9306 M:      Tim Harvey <[email protected]>
9307 S:      Maintained
9308 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
9309 F:      Documentation/hwmon/gsc-hwmon.rst
9310 F:      drivers/hwmon/gsc-hwmon.c
9311 F:      drivers/mfd/gateworks-gsc.c
9312 F:      include/linux/mfd/gsc.h
9313 F:      include/linux/platform_data/gsc_hwmon.h
9314
9315 GCC PLUGINS
9316 M:      Kees Cook <[email protected]>
9317 L:      [email protected]
9318 S:      Maintained
9319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
9320 F:      Documentation/kbuild/gcc-plugins.rst
9321 F:      include/linux/stackleak.h
9322 F:      kernel/stackleak.c
9323 F:      scripts/Makefile.gcc-plugins
9324 F:      scripts/gcc-plugins/
9325
9326 GCOV BASED KERNEL PROFILING
9327 M:      Peter Oberparleiter <[email protected]>
9328 S:      Maintained
9329 F:      Documentation/dev-tools/gcov.rst
9330 F:      kernel/gcov/
9331
9332 GDB KERNEL DEBUGGING HELPER SCRIPTS
9333 M:      Jan Kiszka <[email protected]>
9334 M:      Kieran Bingham <[email protected]>
9335 S:      Supported
9336 F:      scripts/gdb/
9337
9338 GEMINI CRYPTO DRIVER
9339 M:      Corentin Labbe <[email protected]>
9340 L:      [email protected]
9341 S:      Maintained
9342 F:      drivers/crypto/gemini/
9343
9344 GEMTEK FM RADIO RECEIVER DRIVER
9345 M:      Hans Verkuil <[email protected]>
9346 L:      [email protected]
9347 S:      Maintained
9348 W:      https://linuxtv.org
9349 T:      git git://linuxtv.org/media_tree.git
9350 F:      drivers/media/radio/radio-gemtek*
9351
9352 GENERIC ARCHITECTURE TOPOLOGY
9353 M:      Sudeep Holla <[email protected]>
9354 L:      [email protected]
9355 S:      Maintained
9356 F:      drivers/base/arch_topology.c
9357 F:      include/linux/arch_topology.h
9358
9359 GENERIC ENTRY CODE
9360 M:      Thomas Gleixner <[email protected]>
9361 M:      Peter Zijlstra <[email protected]>
9362 M:      Andy Lutomirski <[email protected]>
9363 L:      [email protected]
9364 S:      Maintained
9365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
9366 F:      include/linux/entry-common.h
9367 F:      include/linux/entry-kvm.h
9368 F:      kernel/entry/
9369
9370 GENERIC GPIO I2C DRIVER
9371 M:      Wolfram Sang <[email protected]>
9372 S:      Supported
9373 F:      drivers/i2c/busses/i2c-gpio.c
9374 F:      include/linux/platform_data/i2c-gpio.h
9375
9376 GENERIC GPIO I2C MULTIPLEXER DRIVER
9377 M:      Peter Korsgaard <[email protected]>
9378 L:      [email protected]
9379 S:      Supported
9380 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
9381 F:      drivers/i2c/muxes/i2c-mux-gpio.c
9382 F:      include/linux/platform_data/i2c-mux-gpio.h
9383
9384 GENERIC GPIO RESET DRIVER
9385 M:      Krzysztof Kozlowski <[email protected]>
9386 S:      Maintained
9387 F:      drivers/reset/reset-gpio.c
9388
9389 GENERIC HDLC (WAN) DRIVERS
9390 M:      Krzysztof Halasa <[email protected]>
9391 S:      Maintained
9392 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
9393 F:      drivers/net/wan/c101.c
9394 F:      drivers/net/wan/hd6457*
9395 F:      drivers/net/wan/hdlc*
9396 F:      drivers/net/wan/n2.c
9397 F:      drivers/net/wan/pc300too.c
9398 F:      drivers/net/wan/pci200syn.c
9399 F:      drivers/net/wan/wanxl*
9400
9401 GENERIC INCLUDE/ASM HEADER FILES
9402 M:      Arnd Bergmann <[email protected]>
9403 L:      [email protected]
9404 S:      Maintained
9405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
9406 F:      include/asm-generic/
9407 F:      include/uapi/asm-generic/
9408
9409 GENERIC PHY FRAMEWORK
9410 M:      Vinod Koul <[email protected]>
9411 M:      Kishon Vijay Abraham I <[email protected]>
9412 L:      [email protected]
9413 S:      Supported
9414 Q:      https://patchwork.kernel.org/project/linux-phy/list/
9415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
9416 F:      Documentation/devicetree/bindings/phy/
9417 F:      drivers/phy/
9418 F:      include/dt-bindings/phy/
9419 F:      include/linux/phy/
9420
9421 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
9422 M:      Wolfram Sang <[email protected]>
9423 S:      Supported
9424 F:      Documentation/devicetree/bindings/i2c/i2c-demux-pinctrl.yaml
9425 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
9426
9427 GENERIC PM DOMAINS
9428 M:      Ulf Hansson <[email protected]>
9429 L:      [email protected]
9430 S:      Supported
9431 F:      Documentation/devicetree/bindings/power/power?domain*
9432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm.git
9433 F:      drivers/pmdomain/
9434 F:      include/linux/pm_domain.h
9435
9436 GENERIC RADIX TREE
9437 M:      Kent Overstreet <[email protected]>
9438 S:      Supported
9439 C:      irc://irc.oftc.net/bcache
9440 F:      include/linux/generic-radix-tree.h
9441 F:      lib/generic-radix-tree.c
9442
9443 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
9444 M:      Eugen Hristev <[email protected]>
9445 L:      [email protected]
9446 S:      Maintained
9447 F:      drivers/input/touchscreen/resistive-adc-touch.c
9448
9449 GENERIC STRING LIBRARY
9450 M:      Kees Cook <[email protected]>
9451 R:      Andy Shevchenko <[email protected]>
9452 L:      [email protected]
9453 S:      Supported
9454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
9455 F:      include/linux/string.h
9456 F:      include/linux/string_choices.h
9457 F:      include/linux/string_helpers.h
9458 F:      lib/string.c
9459 F:      lib/string_kunit.c
9460 F:      lib/string_helpers.c
9461 F:      lib/string_helpers_kunit.c
9462 F:      scripts/coccinelle/api/string_choices.cocci
9463
9464 GENERIC UIO DRIVER FOR PCI DEVICES
9465 M:      "Michael S. Tsirkin" <[email protected]>
9466 L:      [email protected]
9467 S:      Supported
9468 F:      drivers/uio/uio_pci_generic.c
9469
9470 GENERIC VDSO LIBRARY
9471 M:      Andy Lutomirski <[email protected]>
9472 M:      Thomas Gleixner <[email protected]>
9473 M:      Vincenzo Frascino <[email protected]>
9474 L:      [email protected]
9475 S:      Maintained
9476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
9477 F:      include/asm-generic/vdso/vsyscall.h
9478 F:      include/vdso/
9479 F:      kernel/time/vsyscall.c
9480 F:      lib/vdso/
9481
9482 GENWQE (IBM Generic Workqueue Card)
9483 M:      Frank Haverkamp <[email protected]>
9484 S:      Supported
9485 F:      drivers/misc/genwqe/
9486
9487 GET_MAINTAINER SCRIPT
9488 M:      Joe Perches <[email protected]>
9489 S:      Maintained
9490 F:      scripts/get_maintainer.pl
9491
9492 GFS2 FILE SYSTEM
9493 M:      Andreas Gruenbacher <[email protected]>
9494 L:      [email protected]
9495 S:      Supported
9496 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
9497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
9498 F:      Documentation/filesystems/gfs2*
9499 F:      fs/gfs2/
9500 F:      include/uapi/linux/gfs2_ondisk.h
9501
9502 GIGABYTE WATERFORCE SENSOR DRIVER
9503 M:      Aleksa Savic <[email protected]>
9504 L:      [email protected]
9505 S:      Maintained
9506 F:      Documentation/hwmon/gigabyte_waterforce.rst
9507 F:      drivers/hwmon/gigabyte_waterforce.c
9508
9509 GIGABYTE WMI DRIVER
9510 M:      Thomas Weißschuh <[email protected]>
9511 L:      [email protected]
9512 S:      Maintained
9513 F:      drivers/platform/x86/gigabyte-wmi.c
9514
9515 GNSS SUBSYSTEM
9516 M:      Johan Hovold <[email protected]>
9517 S:      Maintained
9518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
9519 F:      Documentation/ABI/testing/sysfs-class-gnss
9520 F:      Documentation/devicetree/bindings/gnss/
9521 F:      drivers/gnss/
9522 F:      include/linux/gnss.h
9523
9524 GO7007 MPEG CODEC
9525 M:      Hans Verkuil <[email protected]>
9526 L:      [email protected]
9527 S:      Maintained
9528 F:      drivers/media/usb/go7007/
9529
9530 GOODIX TOUCHSCREEN
9531 M:      Bastien Nocera <[email protected]>
9532 M:      Hans de Goede <[email protected]>
9533 L:      [email protected]
9534 S:      Maintained
9535 F:      drivers/input/touchscreen/goodix*
9536
9537 GOOGLE ETHERNET DRIVERS
9538 M:      Jeroen de Borst <[email protected]>
9539 M:      Praveen Kaligineedi <[email protected]>
9540 R:      Shailend Chand <[email protected]>
9541 L:      [email protected]
9542 S:      Supported
9543 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
9544 F:      drivers/net/ethernet/google
9545
9546 GOOGLE FIRMWARE DRIVERS
9547 M:      Tzung-Bi Shih <[email protected]>
9548 R:      Brian Norris <[email protected]>
9549 R:      Julius Werner <[email protected]>
9550 L:      [email protected]
9551 S:      Maintained
9552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
9553 F:      drivers/firmware/google/
9554
9555 GOOGLE TENSOR SoC SUPPORT
9556 M:      Peter Griffin <[email protected]>
9557 L:      [email protected] (moderated for non-subscribers)
9558 L:      [email protected]
9559 S:      Maintained
9560 F:      Documentation/devicetree/bindings/clock/google,gs101-clock.yaml
9561 F:      arch/arm64/boot/dts/exynos/google/
9562 F:      drivers/clk/samsung/clk-gs101.c
9563 F:      drivers/phy/samsung/phy-gs101-ufs.c
9564 F:      include/dt-bindings/clock/google,gs101.h
9565 K:      [gG]oogle.?[tT]ensor
9566
9567 GPD POCKET FAN DRIVER
9568 M:      Hans de Goede <[email protected]>
9569 L:      [email protected]
9570 S:      Maintained
9571 F:      drivers/platform/x86/gpd-pocket-fan.c
9572
9573 GPIO ACPI SUPPORT
9574 M:      Mika Westerberg <[email protected]>
9575 M:      Andy Shevchenko <[email protected]>
9576 L:      [email protected]
9577 L:      [email protected]
9578 S:      Supported
9579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9580 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
9581 F:      drivers/gpio/gpiolib-acpi.c
9582 F:      drivers/gpio/gpiolib-acpi.h
9583
9584 GPIO AGGREGATOR
9585 M:      Geert Uytterhoeven <[email protected]>
9586 L:      [email protected]
9587 S:      Supported
9588 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
9589 F:      drivers/gpio/gpio-aggregator.c
9590
9591 GPIO IR Transmitter
9592 M:      Sean Young <[email protected]>
9593 L:      [email protected]
9594 S:      Maintained
9595 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
9596 F:      drivers/media/rc/gpio-ir-tx.c
9597
9598 GPIO MOCKUP DRIVER
9599 M:      Bamvor Jian Zhang <[email protected]>
9600 L:      [email protected]
9601 S:      Maintained
9602 F:      drivers/gpio/gpio-mockup.c
9603 F:      tools/testing/selftests/gpio/
9604
9605 GPIO REGMAP
9606 M:      Michael Walle <[email protected]>
9607 S:      Maintained
9608 F:      drivers/gpio/gpio-regmap.c
9609 F:      include/linux/gpio/regmap.h
9610 K:      (devm_)?gpio_regmap_(un)?register
9611
9612 GPIO SUBSYSTEM
9613 M:      Linus Walleij <[email protected]>
9614 M:      Bartosz Golaszewski <[email protected]>
9615 L:      [email protected]
9616 S:      Maintained
9617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
9618 F:      Documentation/admin-guide/gpio/
9619 F:      Documentation/devicetree/bindings/gpio/
9620 F:      Documentation/driver-api/gpio/
9621 F:      drivers/gpio/
9622 F:      include/dt-bindings/gpio/
9623 F:      include/linux/gpio.h
9624 F:      include/linux/gpio/
9625 F:      include/linux/of_gpio.h
9626
9627 GPIO UAPI
9628 M:      Bartosz Golaszewski <[email protected]>
9629 R:      Kent Gibson <[email protected]>
9630 L:      [email protected]
9631 S:      Maintained
9632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
9633 F:      Documentation/ABI/obsolete/sysfs-gpio
9634 F:      Documentation/ABI/testing/gpio-cdev
9635 F:      Documentation/userspace-api/gpio/
9636 F:      drivers/gpio/gpiolib-cdev.c
9637 F:      include/uapi/linux/gpio.h
9638 F:      tools/gpio/
9639
9640 GRE DEMULTIPLEXER DRIVER
9641 M:      Dmitry Kozlov <[email protected]>
9642 L:      [email protected]
9643 S:      Maintained
9644 F:      include/net/gre.h
9645 F:      net/ipv4/gre_demux.c
9646 F:      net/ipv4/gre_offload.c
9647
9648 GRETH 10/100/1G Ethernet MAC device driver
9649 M:      Andreas Larsson <[email protected]>
9650 L:      [email protected]
9651 S:      Maintained
9652 F:      drivers/net/ethernet/aeroflex/
9653
9654 GREYBUS AUDIO PROTOCOLS DRIVERS
9655 M:      Vaibhav Agarwal <[email protected]>
9656 M:      Mark Greer <[email protected]>
9657 S:      Maintained
9658 F:      drivers/staging/greybus/audio_apbridgea.c
9659 F:      drivers/staging/greybus/audio_apbridgea.h
9660 F:      drivers/staging/greybus/audio_codec.c
9661 F:      drivers/staging/greybus/audio_codec.h
9662 F:      drivers/staging/greybus/audio_gb.c
9663 F:      drivers/staging/greybus/audio_manager.c
9664 F:      drivers/staging/greybus/audio_manager.h
9665 F:      drivers/staging/greybus/audio_manager_module.c
9666 F:      drivers/staging/greybus/audio_manager_private.h
9667 F:      drivers/staging/greybus/audio_manager_sysfs.c
9668 F:      drivers/staging/greybus/audio_module.c
9669 F:      drivers/staging/greybus/audio_topology.c
9670
9671 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
9672 M:      Viresh Kumar <[email protected]>
9673 S:      Maintained
9674 F:      drivers/staging/greybus/authentication.c
9675 F:      drivers/staging/greybus/bootrom.c
9676 F:      drivers/staging/greybus/firmware.h
9677 F:      drivers/staging/greybus/fw-core.c
9678 F:      drivers/staging/greybus/fw-download.c
9679 F:      drivers/staging/greybus/fw-management.c
9680 F:      drivers/staging/greybus/greybus_authentication.h
9681 F:      drivers/staging/greybus/greybus_firmware.h
9682 F:      drivers/staging/greybus/hid.c
9683 F:      drivers/staging/greybus/i2c.c
9684 F:      drivers/staging/greybus/spi.c
9685 F:      drivers/staging/greybus/spilib.c
9686 F:      drivers/staging/greybus/spilib.h
9687
9688 GREYBUS LOOPBACK DRIVER
9689 M:      Bryan O'Donoghue <[email protected]>
9690 S:      Maintained
9691 F:      drivers/staging/greybus/loopback.c
9692
9693 GREYBUS PLATFORM DRIVERS
9694 M:      Vaibhav Hiremath <[email protected]>
9695 S:      Maintained
9696 F:      drivers/staging/greybus/arche-apb-ctrl.c
9697 F:      drivers/staging/greybus/arche-platform.c
9698 F:      drivers/staging/greybus/arche_platform.h
9699
9700 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
9701 M:      Rui Miguel Silva <[email protected]>
9702 S:      Maintained
9703 F:      drivers/staging/greybus/gpio.c
9704 F:      drivers/staging/greybus/light.c
9705 F:      drivers/staging/greybus/power_supply.c
9706 F:      drivers/staging/greybus/sdio.c
9707 F:      drivers/staging/greybus/spi.c
9708 F:      drivers/staging/greybus/spilib.c
9709
9710 GREYBUS BEAGLEPLAY DRIVERS
9711 M:      Ayush Singh <[email protected]>
9712 L:      [email protected] (moderated for non-subscribers)
9713 S:      Maintained
9714 F:      Documentation/devicetree/bindings/net/ti,cc1352p7.yaml
9715 F:      drivers/greybus/gb-beagleplay.c
9716
9717 GREYBUS SUBSYSTEM
9718 M:      Johan Hovold <[email protected]>
9719 M:      Alex Elder <[email protected]>
9720 M:      Greg Kroah-Hartman <[email protected]>
9721 L:      [email protected] (moderated for non-subscribers)
9722 S:      Maintained
9723 F:      drivers/greybus/
9724 F:      drivers/staging/greybus/
9725 F:      include/linux/greybus.h
9726 F:      include/linux/greybus/
9727
9728 GREYBUS UART PROTOCOLS DRIVERS
9729 M:      David Lin <[email protected]>
9730 S:      Maintained
9731 F:      drivers/staging/greybus/log.c
9732 F:      drivers/staging/greybus/uart.c
9733
9734 GS1662 VIDEO SERIALIZER
9735 M:      Charles-Antoine Couret <[email protected]>
9736 L:      [email protected]
9737 S:      Maintained
9738 T:      git git://linuxtv.org/media_tree.git
9739 F:      drivers/media/spi/gs1662.c
9740
9741 GSPCA FINEPIX SUBDRIVER
9742 M:      Frank Zago <[email protected]>
9743 L:      [email protected]
9744 S:      Maintained
9745 T:      git git://linuxtv.org/media_tree.git
9746 F:      drivers/media/usb/gspca/finepix.c
9747
9748 GSPCA GL860 SUBDRIVER
9749 M:      Olivier Lorin <[email protected]>
9750 L:      [email protected]
9751 S:      Maintained
9752 T:      git git://linuxtv.org/media_tree.git
9753 F:      drivers/media/usb/gspca/gl860/
9754
9755 GSPCA M5602 SUBDRIVER
9756 M:      Erik Andren <[email protected]>
9757 L:      [email protected]
9758 S:      Maintained
9759 T:      git git://linuxtv.org/media_tree.git
9760 F:      drivers/media/usb/gspca/m5602/
9761
9762 GSPCA PAC207 SONIXB SUBDRIVER
9763 M:      Hans Verkuil <[email protected]>
9764 L:      [email protected]
9765 S:      Odd Fixes
9766 T:      git git://linuxtv.org/media_tree.git
9767 F:      drivers/media/usb/gspca/pac207.c
9768
9769 GSPCA SN9C20X SUBDRIVER
9770 M:      Brian Johnson <[email protected]>
9771 L:      [email protected]
9772 S:      Maintained
9773 T:      git git://linuxtv.org/media_tree.git
9774 F:      drivers/media/usb/gspca/sn9c20x.c
9775
9776 GSPCA T613 SUBDRIVER
9777 M:      Leandro Costantino <[email protected]>
9778 L:      [email protected]
9779 S:      Maintained
9780 T:      git git://linuxtv.org/media_tree.git
9781 F:      drivers/media/usb/gspca/t613.c
9782
9783 GSPCA USB WEBCAM DRIVER
9784 M:      Hans Verkuil <[email protected]>
9785 L:      [email protected]
9786 S:      Odd Fixes
9787 T:      git git://linuxtv.org/media_tree.git
9788 F:      drivers/media/usb/gspca/
9789
9790 GTP (GPRS Tunneling Protocol)
9791 M:      Pablo Neira Ayuso <[email protected]>
9792 M:      Harald Welte <[email protected]>
9793 L:      [email protected]
9794 S:      Maintained
9795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
9796 F:      drivers/net/gtp.c
9797
9798 GUID PARTITION TABLE (GPT)
9799 M:      Davidlohr Bueso <[email protected]>
9800 L:      [email protected]
9801 S:      Maintained
9802 F:      block/partitions/efi.*
9803
9804 HABANALABS PCI DRIVER
9805 M:      Ofir Bitton <[email protected]>
9806 L:      [email protected]
9807 S:      Supported
9808 C:      irc://irc.oftc.net/dri-devel
9809 T:      git https://github.com/HabanaAI/drivers.accel.habanalabs.kernel.git
9810 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
9811 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
9812 F:      drivers/accel/habanalabs/
9813 F:      include/linux/habanalabs/
9814 F:      include/trace/events/habanalabs.h
9815 F:      include/uapi/drm/habanalabs_accel.h
9816
9817 HACKRF MEDIA DRIVER
9818 L:      [email protected]
9819 S:      Orphan
9820 W:      https://linuxtv.org
9821 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9822 F:      drivers/media/usb/hackrf/
9823
9824 HANDSHAKE UPCALL FOR TRANSPORT LAYER SECURITY
9825 M:      Chuck Lever <[email protected]>
9826 L:      [email protected]
9827 L:      [email protected]
9828 S:      Maintained
9829 F:      Documentation/netlink/specs/handshake.yaml
9830 F:      Documentation/networking/tls-handshake.rst
9831 F:      include/net/handshake.h
9832 F:      include/trace/events/handshake.h
9833 F:      net/handshake/
9834
9835 HANTRO VPU CODEC DRIVER
9836 M:      Ezequiel Garcia <[email protected]>
9837 M:      Philipp Zabel <[email protected]>
9838 L:      [email protected]
9839 L:      [email protected]
9840 S:      Maintained
9841 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
9842 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
9843 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
9844 F:      drivers/media/platform/verisilicon/
9845
9846 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
9847 M:      Frank Seidel <[email protected]>
9848 L:      [email protected]
9849 S:      Maintained
9850 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
9851 F:      drivers/platform/x86/hdaps.c
9852
9853 HARDWARE MONITORING
9854 M:      Jean Delvare <[email protected]>
9855 M:      Guenter Roeck <[email protected]>
9856 L:      [email protected]
9857 S:      Maintained
9858 W:      http://hwmon.wiki.kernel.org/
9859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
9860 F:      Documentation/ABI/testing/sysfs-class-hwmon
9861 F:      Documentation/devicetree/bindings/hwmon/
9862 F:      Documentation/hwmon/
9863 F:      drivers/hwmon/
9864 F:      include/linux/hwmon*.h
9865 F:      include/trace/events/hwmon*.h
9866 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
9867
9868 HARDWARE RANDOM NUMBER GENERATOR CORE
9869 M:      Olivia Mackall <[email protected]>
9870 M:      Herbert Xu <[email protected]>
9871 L:      [email protected]
9872 S:      Odd fixes
9873 F:      Documentation/admin-guide/hw_random.rst
9874 F:      Documentation/devicetree/bindings/rng/
9875 F:      drivers/char/hw_random/
9876 F:      include/linux/hw_random.h
9877
9878 HARDWARE SPINLOCK CORE
9879 M:      Bjorn Andersson <[email protected]>
9880 R:      Baolin Wang <[email protected]>
9881 L:      [email protected]
9882 S:      Maintained
9883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
9884 F:      Documentation/devicetree/bindings/hwlock/
9885 F:      Documentation/locking/hwspinlock.rst
9886 F:      drivers/hwspinlock/
9887 F:      include/linux/hwspinlock.h
9888
9889 HARDWARE TRACING FACILITIES
9890 M:      Alexander Shishkin <[email protected]>
9891 S:      Maintained
9892 F:      drivers/hwtracing/
9893
9894 HARMONY SOUND DRIVER
9895 L:      [email protected]
9896 S:      Maintained
9897 F:      sound/parisc/harmony.*
9898
9899 HDPVR USB VIDEO ENCODER DRIVER
9900 M:      Hans Verkuil <[email protected]>
9901 L:      [email protected]
9902 S:      Odd Fixes
9903 W:      https://linuxtv.org
9904 T:      git git://linuxtv.org/media_tree.git
9905 F:      drivers/media/usb/hdpvr/
9906
9907 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
9908 M:      Keng-Yu Lin <[email protected]>
9909 S:      Supported
9910 F:      drivers/misc/hpilo.[ch]
9911
9912 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9913 M:      Jerry Hoemann <[email protected]>
9914 S:      Supported
9915 F:      Documentation/watchdog/hpwdt.rst
9916 F:      drivers/watchdog/hpwdt.c
9917
9918 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9919 M:      Don Brace <[email protected]>
9920 L:      [email protected]
9921 L:      [email protected]
9922 S:      Supported
9923 F:      Documentation/scsi/hpsa.rst
9924 F:      drivers/scsi/hpsa*.[ch]
9925 F:      include/linux/cciss*.h
9926 F:      include/uapi/linux/cciss*.h
9927
9928 HFI1 DRIVER
9929 M:      Dennis Dalessandro <[email protected]>
9930 L:      [email protected]
9931 S:      Supported
9932 F:      drivers/infiniband/hw/hfi1
9933
9934 HFS FILESYSTEM
9935 L:      [email protected]
9936 S:      Orphan
9937 F:      Documentation/filesystems/hfs.rst
9938 F:      fs/hfs/
9939
9940 HFSPLUS FILESYSTEM
9941 L:      [email protected]
9942 S:      Orphan
9943 F:      Documentation/filesystems/hfsplus.rst
9944 F:      fs/hfsplus/
9945
9946 HGA FRAMEBUFFER DRIVER
9947 M:      Ferenc Bakonyi <[email protected]>
9948 L:      [email protected]
9949 S:      Maintained
9950 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9951 F:      drivers/video/fbdev/hgafb.c
9952
9953 HIBERNATION (aka Software Suspend, aka swsusp)
9954 M:      "Rafael J. Wysocki" <[email protected]>
9955 M:      Pavel Machek <[email protected]>
9956 L:      [email protected]
9957 S:      Supported
9958 B:      https://bugzilla.kernel.org
9959 F:      arch/*/include/asm/suspend*.h
9960 F:      arch/x86/power/
9961 F:      drivers/base/power/
9962 F:      include/linux/freezer.h
9963 F:      include/linux/pm.h
9964 F:      include/linux/suspend.h
9965 F:      kernel/power/
9966
9967 HID CORE LAYER
9968 M:      Jiri Kosina <[email protected]>
9969 M:      Benjamin Tissoires <[email protected]>
9970 L:      [email protected]
9971 S:      Maintained
9972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9973 F:      Documentation/hid/
9974 F:      drivers/hid/
9975 F:      include/linux/hid*
9976 F:      include/uapi/linux/hid*
9977 F:      samples/hid/
9978 F:      tools/testing/selftests/hid/
9979
9980 HID LOGITECH DRIVERS
9981 R:      Filipe Laíns <[email protected]>
9982 L:      [email protected]
9983 S:      Maintained
9984 F:      drivers/hid/hid-logitech-*
9985
9986 HID NVIDIA SHIELD DRIVER
9987 M:      Rahul Rameshbabu <[email protected]>
9988 L:      [email protected]
9989 S:      Maintained
9990 F:      drivers/hid/hid-nvidia-shield.c
9991
9992 HID PHOENIX RC FLIGHT CONTROLLER
9993 M:      Marcus Folkesson <[email protected]>
9994 L:      [email protected]
9995 S:      Maintained
9996 F:      drivers/hid/hid-pxrc.c
9997
9998 HID PLAYSTATION DRIVER
9999 M:      Roderick Colenbrander <[email protected]>
10000 L:      [email protected]
10001 S:      Supported
10002 F:      drivers/hid/hid-playstation.c
10003
10004 HID SENSOR HUB DRIVERS
10005 M:      Jiri Kosina <[email protected]>
10006 M:      Jonathan Cameron <[email protected]>
10007 M:      Srinivas Pandruvada <[email protected]>
10008 L:      [email protected]
10009 L:      [email protected]
10010 S:      Maintained
10011 F:      Documentation/hid/hid-sensor*
10012 F:      drivers/hid/hid-sensor-*
10013 F:      drivers/iio/*/hid-*
10014 F:      include/linux/hid-sensor-*
10015
10016 HID VRC-2 CAR CONTROLLER DRIVER
10017 M:      Marcus Folkesson <[email protected]>
10018 L:      [email protected]
10019 S:      Maintained
10020 F:      drivers/hid/hid-vrc2.c
10021
10022 HID WACOM DRIVER
10023 M:      Ping Cheng <[email protected]>
10024 M:      Jason Gerecke  <[email protected]>
10025 L:      [email protected]
10026 S:      Maintained
10027 F:      drivers/hid/wacom.h
10028 F:      drivers/hid/wacom_*
10029
10030 HID++ LOGITECH DRIVERS
10031 R:      Filipe Laíns <[email protected]>
10032 R:      Bastien Nocera <[email protected]>
10033 L:      [email protected]
10034 S:      Maintained
10035 F:      drivers/hid/hid-logitech-hidpp.c
10036
10037 HIGH-RESOLUTION TIMERS, TIMER WHEEL, CLOCKEVENTS
10038 M:      Anna-Maria Behnsen <[email protected]>
10039 M:      Frederic Weisbecker <[email protected]>
10040 M:      Thomas Gleixner <[email protected]>
10041 L:      [email protected]
10042 S:      Maintained
10043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10044 F:      Documentation/timers/
10045 F:      include/linux/clockchips.h
10046 F:      include/linux/hrtimer.h
10047 F:      include/linux/timer.h
10048 F:      kernel/time/clockevents.c
10049 F:      kernel/time/hrtimer.c
10050 F:      kernel/time/timer.c
10051 F:      kernel/time/timer_list.c
10052 F:      kernel/time/timer_migration.*
10053 F:      tools/testing/selftests/timers/
10054
10055 HIGH-SPEED SCC DRIVER FOR AX.25
10056 L:      [email protected]
10057 S:      Orphan
10058 F:      drivers/net/hamradio/scc.c
10059
10060 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
10061 M:      HighPoint Linux Team <[email protected]>
10062 S:      Supported
10063 W:      http://www.highpoint-tech.com
10064 F:      Documentation/scsi/hptiop.rst
10065 F:      drivers/scsi/hptiop.c
10066
10067 HIKEY960 ONBOARD USB GPIO HUB DRIVER
10068 M:      John Stultz <[email protected]>
10069 L:      [email protected]
10070 S:      Maintained
10071 F:      drivers/misc/hisi_hikey_usb.c
10072
10073 HIMAX HX83112B TOUCHSCREEN SUPPORT
10074 M:      Job Noorman <[email protected]>
10075 L:      [email protected]
10076 S:      Maintained
10077 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
10078 F:      drivers/input/touchscreen/himax_hx83112b.c
10079
10080 HIPPI
10081 M:      Jes Sorensen <[email protected]>
10082 L:      [email protected]
10083 S:      Maintained
10084 F:      drivers/net/hippi/
10085 F:      include/linux/hippidevice.h
10086 F:      include/uapi/linux/if_hippi.h
10087 F:      net/802/hippi.c
10088
10089 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
10090 M:      Kurt Kanzenbach <[email protected]>
10091 L:      [email protected]
10092 S:      Maintained
10093 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
10094 F:      drivers/net/dsa/hirschmann/*
10095 F:      include/linux/platform_data/hirschmann-hellcreek.h
10096 F:      net/dsa/tag_hellcreek.c
10097
10098 HISILICON DMA DRIVER
10099 M:      Zhou Wang <[email protected]>
10100 M:      Jie Hai <[email protected]>
10101 L:      [email protected]
10102 S:      Maintained
10103 F:      drivers/dma/hisi_dma.c
10104
10105 HISILICON GPIO DRIVER
10106 M:      Jay Fang <[email protected]>
10107 L:      [email protected]
10108 S:      Maintained
10109 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
10110 F:      drivers/gpio/gpio-hisi.c
10111
10112 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
10113 M:      Zhiqi Song <[email protected]>
10114 M:      Longfang Liu <[email protected]>
10115 L:      [email protected]
10116 S:      Maintained
10117 F:      Documentation/ABI/testing/debugfs-hisi-hpre
10118 F:      drivers/crypto/hisilicon/hpre/hpre.h
10119 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
10120 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
10121
10122 HISILICON HNS3 PMU DRIVER
10123 M:      Jijie Shao <[email protected]>
10124 S:      Supported
10125 F:      Documentation/admin-guide/perf/hns3-pmu.rst
10126 F:      drivers/perf/hisilicon/hns3_pmu.c
10127
10128 HISILICON I2C CONTROLLER DRIVER
10129 M:      Yicong Yang <[email protected]>
10130 L:      [email protected]
10131 S:      Maintained
10132 W:      https://www.hisilicon.com
10133 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
10134 F:      drivers/i2c/busses/i2c-hisi.c
10135
10136 HISILICON KUNPENG SOC HCCS DRIVER
10137 M:      Huisong Li <[email protected]>
10138 S:      Maintained
10139 F:      Documentation/ABI/testing/sysfs-devices-platform-kunpeng_hccs
10140 F:      drivers/soc/hisilicon/kunpeng_hccs.c
10141 F:      drivers/soc/hisilicon/kunpeng_hccs.h
10142
10143 HISILICON LPC BUS DRIVER
10144 M:      Jay Fang <[email protected]>
10145 S:      Maintained
10146 W:      http://www.hisilicon.com
10147 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
10148 F:      drivers/bus/hisi_lpc.c
10149
10150 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
10151 M:      Yisen Zhuang <[email protected]>
10152 M:      Salil Mehta <[email protected]>
10153 M:      Jijie Shao <[email protected]>
10154 L:      [email protected]
10155 S:      Maintained
10156 W:      http://www.hisilicon.com
10157 F:      drivers/net/ethernet/hisilicon/hns3/
10158
10159 HISILICON NETWORK SUBSYSTEM DRIVER
10160 M:      Yisen Zhuang <[email protected]>
10161 M:      Salil Mehta <[email protected]>
10162 L:      [email protected]
10163 S:      Maintained
10164 W:      http://www.hisilicon.com
10165 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
10166 F:      drivers/net/ethernet/hisilicon/
10167
10168 HISILICON PMU DRIVER
10169 M:      Yicong Yang <[email protected]>
10170 M:      Jonathan Cameron <[email protected]>
10171 S:      Supported
10172 W:      http://www.hisilicon.com
10173 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
10174 F:      Documentation/admin-guide/perf/hisi-pmu.rst
10175 F:      drivers/perf/hisilicon
10176
10177 HISILICON PTT DRIVER
10178 M:      Yicong Yang <[email protected]>
10179 M:      Jonathan Cameron <[email protected]>
10180 L:      [email protected]
10181 S:      Maintained
10182 F:      Documentation/ABI/testing/sysfs-bus-event_source-devices-hisi_ptt
10183 F:      Documentation/trace/hisi-ptt.rst
10184 F:      drivers/hwtracing/ptt/
10185 F:      tools/perf/arch/arm64/util/hisi-ptt.c
10186 F:      tools/perf/util/hisi-ptt*
10187 F:      tools/perf/util/hisi-ptt-decoder/*
10188
10189 HISILICON QM DRIVER
10190 M:      Weili Qian <[email protected]>
10191 M:      Zhou Wang <[email protected]>
10192 L:      [email protected]
10193 S:      Maintained
10194 F:      drivers/crypto/hisilicon/Kconfig
10195 F:      drivers/crypto/hisilicon/Makefile
10196 F:      drivers/crypto/hisilicon/qm.c
10197 F:      drivers/crypto/hisilicon/sgl.c
10198 F:      include/linux/hisi_acc_qm.h
10199
10200 HISILICON ROCE DRIVER
10201 M:      Chengchang Tang <[email protected]>
10202 M:      Junxian Huang <[email protected]>
10203 L:      [email protected]
10204 S:      Maintained
10205 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
10206 F:      drivers/infiniband/hw/hns/
10207
10208 HISILICON SAS Controller
10209 M:      Yihang Li <[email protected]>
10210 S:      Supported
10211 W:      http://www.hisilicon.com
10212 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
10213 F:      drivers/scsi/hisi_sas/
10214
10215 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
10216 M:      Longfang Liu <[email protected]>
10217 L:      [email protected]
10218 S:      Maintained
10219 F:      Documentation/ABI/testing/debugfs-hisi-sec
10220 F:      drivers/crypto/hisilicon/sec2/sec.h
10221 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
10222 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
10223 F:      drivers/crypto/hisilicon/sec2/sec_main.c
10224
10225 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
10226 M:      Jay Fang <[email protected]>
10227 L:      [email protected]
10228 S:      Maintained
10229 W:      http://www.hisilicon.com
10230 F:      drivers/spi/spi-hisi-kunpeng.c
10231
10232 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
10233 M:      Mauro Carvalho Chehab <[email protected]>
10234 L:      [email protected]
10235 S:      Maintained
10236 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
10237 F:      drivers/spmi/hisi-spmi-controller.c
10238
10239 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
10240 M:      Mauro Carvalho Chehab <[email protected]>
10241 L:      [email protected]
10242 S:      Maintained
10243 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
10244 F:      drivers/mfd/hi6421-spmi-pmic.c
10245
10246 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
10247 M:      Weili Qian <[email protected]>
10248 S:      Maintained
10249 F:      drivers/crypto/hisilicon/trng/trng.c
10250
10251 HISILICON V3XX SPI NOR FLASH Controller Driver
10252 M:      Jay Fang <[email protected]>
10253 S:      Maintained
10254 W:      http://www.hisilicon.com
10255 F:      drivers/spi/spi-hisi-sfc-v3xx.c
10256
10257 HISILICON ZIP Controller DRIVER
10258 M:      Yang Shen <[email protected]>
10259 M:      Zhou Wang <[email protected]>
10260 L:      [email protected]
10261 S:      Maintained
10262 F:      Documentation/ABI/testing/debugfs-hisi-zip
10263 F:      drivers/crypto/hisilicon/zip/
10264
10265 HMM - Heterogeneous Memory Management
10266 M:      Jérôme Glisse <[email protected]>
10267 L:      [email protected]
10268 S:      Maintained
10269 F:      Documentation/mm/hmm.rst
10270 F:      include/linux/hmm*
10271 F:      lib/test_hmm*
10272 F:      mm/hmm*
10273 F:      tools/testing/selftests/mm/*hmm*
10274
10275 HONEYWELL HSC030PA PRESSURE SENSOR SERIES IIO DRIVER
10276 M:      Petre Rodan <[email protected]>
10277 L:      [email protected]
10278 S:      Maintained
10279 F:      Documentation/devicetree/bindings/iio/pressure/honeywell,hsc030pa.yaml
10280 F:      drivers/iio/pressure/hsc030pa*
10281
10282 HONEYWELL MPRLS0025PA PRESSURE SENSOR SERIES IIO DRIVER
10283 M:      Andreas Klinger <[email protected]>
10284 M:      Petre Rodan <[email protected]>
10285 L:      [email protected]
10286 S:      Maintained
10287 F:      Documentation/devicetree/bindings/iio/pressure/honeywell,mprls0025pa.yaml
10288 F:      drivers/iio/pressure/mprls0025pa*
10289
10290 HP BIOSCFG DRIVER
10291 M:      Jorge Lopez <[email protected]>
10292 L:      [email protected]
10293 S:      Maintained
10294 F:      drivers/platform/x86/hp/hp-bioscfg/
10295
10296 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
10297 L:      [email protected]
10298 S:      Orphan
10299 F:      drivers/platform/x86/hp/tc1100-wmi.c
10300
10301 HP WMI HARDWARE MONITOR DRIVER
10302 M:      James Seo <[email protected]>
10303 L:      [email protected]
10304 S:      Maintained
10305 F:      Documentation/hwmon/hp-wmi-sensors.rst
10306 F:      drivers/hwmon/hp-wmi-sensors.c
10307
10308 HPET:   High Precision Event Timers driver
10309 M:      Clemens Ladisch <[email protected]>
10310 S:      Maintained
10311 F:      Documentation/timers/hpet.rst
10312 F:      drivers/char/hpet.c
10313 F:      include/linux/hpet.h
10314 F:      include/uapi/linux/hpet.h
10315
10316 HPET:   x86
10317 S:      Orphan
10318 F:      arch/x86/include/asm/hpet.h
10319 F:      arch/x86/kernel/hpet.c
10320
10321 HPFS FILESYSTEM
10322 M:      Mikulas Patocka <[email protected]>
10323 S:      Maintained
10324 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
10325 F:      fs/hpfs/
10326
10327 HS3001 Hardware Temperature and Humidity Sensor
10328 M:      Andre Werner <[email protected]>
10329 L:      [email protected]
10330 S:      Maintained
10331 F:      drivers/hwmon/hs3001.c
10332
10333 HSI SUBSYSTEM
10334 M:      Sebastian Reichel <[email protected]>
10335 S:      Maintained
10336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
10337 F:      Documentation/ABI/testing/sysfs-bus-hsi
10338 F:      Documentation/driver-api/hsi.rst
10339 F:      drivers/hsi/
10340 F:      include/linux/hsi/
10341 F:      include/uapi/linux/hsi/
10342
10343 HSO 3G MODEM DRIVER
10344 L:      [email protected]
10345 S:      Orphan
10346 F:      drivers/net/usb/hso.c
10347
10348 HSR NETWORK PROTOCOL
10349 L:      [email protected]
10350 S:      Orphan
10351 F:      net/hsr/
10352
10353 HT16K33 LED CONTROLLER DRIVER
10354 M:      Robin van der Gracht <[email protected]>
10355 S:      Maintained
10356 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
10357 F:      drivers/auxdisplay/ht16k33.c
10358
10359 HTCPEN TOUCHSCREEN DRIVER
10360 M:      Pau Oliva Fora <[email protected]>
10361 L:      [email protected]
10362 S:      Maintained
10363 F:      drivers/input/touchscreen/htcpen.c
10364
10365 HTE SUBSYSTEM
10366 M:      Dipen Patel <[email protected]>
10367 L:      [email protected]
10368 S:      Maintained
10369 Q:      https://patchwork.kernel.org/project/timestamp/list/
10370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pateldipen1984/linux.git
10371 F:      Documentation/devicetree/bindings/timestamp/
10372 F:      Documentation/driver-api/hte/
10373 F:      drivers/hte/
10374 F:      include/linux/hte.h
10375
10376 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
10377 M:      Lorenzo Bianconi <[email protected]>
10378 L:      [email protected]
10379 S:      Maintained
10380 W:      http://www.st.com/
10381 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
10382 F:      drivers/iio/humidity/hts221*
10383
10384 HUAWEI ETHERNET DRIVER
10385 M:      Cai Huoqing <[email protected]>
10386 L:      [email protected]
10387 S:      Maintained
10388 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
10389 F:      drivers/net/ethernet/huawei/hinic/
10390
10391 HUGETLB SUBSYSTEM
10392 M:      Muchun Song <[email protected]>
10393 L:      [email protected]
10394 S:      Maintained
10395 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
10396 F:      Documentation/admin-guide/mm/hugetlbpage.rst
10397 F:      Documentation/mm/hugetlbfs_reserv.rst
10398 F:      Documentation/mm/vmemmap_dedup.rst
10399 F:      fs/hugetlbfs/
10400 F:      include/linux/hugetlb.h
10401 F:      mm/hugetlb.c
10402 F:      mm/hugetlb_vmemmap.c
10403 F:      mm/hugetlb_vmemmap.h
10404 F:      tools/testing/selftests/cgroup/test_hugetlb_memcg.c
10405
10406 HVA ST MEDIA DRIVER
10407 M:      Jean-Christophe Trotin <[email protected]>
10408 L:      [email protected]
10409 S:      Supported
10410 W:      https://linuxtv.org
10411 T:      git git://linuxtv.org/media_tree.git
10412 F:      drivers/media/platform/st/sti/hva
10413
10414 HWPOISON MEMORY FAILURE HANDLING
10415 M:      Miaohe Lin <[email protected]>
10416 R:      Naoya Horiguchi <[email protected]>
10417 L:      [email protected]
10418 S:      Maintained
10419 F:      mm/hwpoison-inject.c
10420 F:      mm/memory-failure.c
10421
10422 HYCON HY46XX TOUCHSCREEN SUPPORT
10423 M:      Giulio Benetti <[email protected]>
10424 L:      [email protected]
10425 S:      Maintained
10426 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
10427 F:      drivers/input/touchscreen/hycon-hy46xx.c
10428
10429 HYGON PROCESSOR SUPPORT
10430 M:      Pu Wen <[email protected]>
10431 L:      [email protected]
10432 S:      Maintained
10433 F:      arch/x86/kernel/cpu/hygon.c
10434
10435 HYNIX HI556 SENSOR DRIVER
10436 M:      Sakari Ailus <[email protected]>
10437 L:      [email protected]
10438 S:      Maintained
10439 T:      git git://linuxtv.org/media_tree.git
10440 F:      drivers/media/i2c/hi556.c
10441
10442 HYNIX HI846 SENSOR DRIVER
10443 M:      Martin Kepplinger <[email protected]>
10444 L:      [email protected]
10445 S:      Maintained
10446 F:      drivers/media/i2c/hi846.c
10447
10448 HYNIX HI847 SENSOR DRIVER
10449 M:      Sakari Ailus <[email protected]>
10450 L:      [email protected]
10451 S:      Maintained
10452 F:      drivers/media/i2c/hi847.c
10453
10454 Hyper-V/Azure CORE AND DRIVERS
10455 M:      "K. Y. Srinivasan" <[email protected]>
10456 M:      Haiyang Zhang <[email protected]>
10457 M:      Wei Liu <[email protected]>
10458 M:      Dexuan Cui <[email protected]>
10459 L:      [email protected]
10460 S:      Supported
10461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
10462 F:      Documentation/ABI/stable/sysfs-bus-vmbus
10463 F:      Documentation/ABI/testing/debugfs-hyperv
10464 F:      Documentation/devicetree/bindings/bus/microsoft,vmbus.yaml
10465 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
10466 F:      Documentation/virt/hyperv
10467 F:      arch/arm64/hyperv
10468 F:      arch/arm64/include/asm/hyperv-tlfs.h
10469 F:      arch/arm64/include/asm/mshyperv.h
10470 F:      arch/x86/hyperv
10471 F:      arch/x86/include/asm/hyperv-tlfs.h
10472 F:      arch/x86/include/asm/mshyperv.h
10473 F:      arch/x86/include/asm/trace/hyperv.h
10474 F:      arch/x86/kernel/cpu/mshyperv.c
10475 F:      drivers/clocksource/hyperv_timer.c
10476 F:      drivers/hid/hid-hyperv.c
10477 F:      drivers/hv/
10478 F:      drivers/input/serio/hyperv-keyboard.c
10479 F:      drivers/iommu/hyperv-iommu.c
10480 F:      drivers/net/ethernet/microsoft/
10481 F:      drivers/net/hyperv/
10482 F:      drivers/pci/controller/pci-hyperv-intf.c
10483 F:      drivers/pci/controller/pci-hyperv.c
10484 F:      drivers/scsi/storvsc_drv.c
10485 F:      drivers/uio/uio_hv_generic.c
10486 F:      drivers/video/fbdev/hyperv_fb.c
10487 F:      include/asm-generic/hyperv-tlfs.h
10488 F:      include/asm-generic/mshyperv.h
10489 F:      include/clocksource/hyperv_timer.h
10490 F:      include/linux/hyperv.h
10491 F:      include/net/mana
10492 F:      include/uapi/linux/hyperv.h
10493 F:      net/vmw_vsock/hyperv_transport.c
10494 F:      tools/hv/
10495
10496 HYPERBUS SUPPORT
10497 M:      Vignesh Raghavendra <[email protected]>
10498 R:      Tudor Ambarus <[email protected]>
10499 L:      [email protected]
10500 S:      Supported
10501 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10502 C:      irc://irc.oftc.net/mtd
10503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
10504 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
10505 F:      drivers/mtd/hyperbus/
10506 F:      include/linux/mtd/hyperbus.h
10507
10508 HYPERVISOR VIRTUAL CONSOLE DRIVER
10509 L:      [email protected]
10510 S:      Odd Fixes
10511 F:      drivers/tty/hvc/
10512
10513 I2C ACPI SUPPORT
10514 M:      Mika Westerberg <[email protected]>
10515 L:      [email protected]
10516 L:      [email protected]
10517 S:      Maintained
10518 F:      drivers/i2c/i2c-core-acpi.c
10519
10520 I2C ADDRESS TRANSLATOR (ATR)
10521 M:      Tomi Valkeinen <[email protected]>
10522 R:      Luca Ceresoli <[email protected]>
10523 L:      [email protected]
10524 S:      Maintained
10525 F:      drivers/i2c/i2c-atr.c
10526 F:      include/linux/i2c-atr.h
10527
10528 I2C CONTROLLER DRIVER FOR NVIDIA GPU
10529 M:      Ajay Gupta <[email protected]>
10530 L:      [email protected]
10531 S:      Maintained
10532 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
10533 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
10534
10535 I2C MUXES
10536 M:      Peter Rosin <[email protected]>
10537 L:      [email protected]
10538 S:      Maintained
10539 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
10540 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
10541 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
10542 F:      Documentation/i2c/i2c-topology.rst
10543 F:      Documentation/i2c/muxes/
10544 F:      drivers/i2c/i2c-mux.c
10545 F:      drivers/i2c/muxes/
10546 F:      include/linux/i2c-mux.h
10547
10548 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
10549 M:      Gregory CLEMENT <[email protected]>
10550 L:      [email protected]
10551 S:      Maintained
10552 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
10553 F:      drivers/i2c/busses/i2c-mv64xxx.c
10554
10555 I2C OVER PARALLEL PORT
10556 M:      Jean Delvare <[email protected]>
10557 L:      [email protected]
10558 S:      Maintained
10559 F:      Documentation/i2c/busses/i2c-parport.rst
10560 F:      drivers/i2c/busses/i2c-parport.c
10561
10562 I2C SUBSYSTEM
10563 M:      Wolfram Sang <[email protected]>
10564 L:      [email protected]
10565 S:      Maintained
10566 W:      https://i2c.wiki.kernel.org/
10567 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
10568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
10569 F:      Documentation/i2c/
10570 F:      drivers/i2c/*
10571 F:      include/dt-bindings/i2c/i2c.h
10572 F:      include/linux/i2c-dev.h
10573 F:      include/linux/i2c-smbus.h
10574 F:      include/linux/i2c.h
10575 F:      include/uapi/linux/i2c-*.h
10576 F:      include/uapi/linux/i2c.h
10577
10578 I2C SUBSYSTEM HOST DRIVERS
10579 M:      Andi Shyti <[email protected]>
10580 L:      [email protected]
10581 S:      Maintained
10582 W:      https://i2c.wiki.kernel.org/
10583 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
10584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andi.shyti/linux.git
10585 F:      Documentation/devicetree/bindings/i2c/
10586 F:      drivers/i2c/algos/
10587 F:      drivers/i2c/busses/
10588 F:      include/dt-bindings/i2c/
10589
10590 I2C-TAOS-EVM DRIVER
10591 M:      Jean Delvare <[email protected]>
10592 L:      [email protected]
10593 S:      Maintained
10594 F:      Documentation/i2c/busses/i2c-taos-evm.rst
10595 F:      drivers/i2c/busses/i2c-taos-evm.c
10596
10597 I2C-TINY-USB DRIVER
10598 M:      Till Harbaum <[email protected]>
10599 L:      [email protected]
10600 S:      Maintained
10601 W:      http://www.harbaum.org/till/i2c_tiny_usb
10602 F:      drivers/i2c/busses/i2c-tiny-usb.c
10603
10604 I2C/SMBUS CONTROLLER DRIVERS FOR PC
10605 M:      Jean Delvare <[email protected]>
10606 L:      [email protected]
10607 S:      Maintained
10608 F:      Documentation/i2c/busses/i2c-ali1535.rst
10609 F:      Documentation/i2c/busses/i2c-ali1563.rst
10610 F:      Documentation/i2c/busses/i2c-ali15x3.rst
10611 F:      Documentation/i2c/busses/i2c-amd756.rst
10612 F:      Documentation/i2c/busses/i2c-amd8111.rst
10613 F:      Documentation/i2c/busses/i2c-i801.rst
10614 F:      Documentation/i2c/busses/i2c-nforce2.rst
10615 F:      Documentation/i2c/busses/i2c-piix4.rst
10616 F:      Documentation/i2c/busses/i2c-sis5595.rst
10617 F:      Documentation/i2c/busses/i2c-sis630.rst
10618 F:      Documentation/i2c/busses/i2c-sis96x.rst
10619 F:      Documentation/i2c/busses/i2c-via.rst
10620 F:      Documentation/i2c/busses/i2c-viapro.rst
10621 F:      drivers/i2c/busses/i2c-ali1535.c
10622 F:      drivers/i2c/busses/i2c-ali1563.c
10623 F:      drivers/i2c/busses/i2c-ali15x3.c
10624 F:      drivers/i2c/busses/i2c-amd756-s4882.c
10625 F:      drivers/i2c/busses/i2c-amd756.c
10626 F:      drivers/i2c/busses/i2c-amd8111.c
10627 F:      drivers/i2c/busses/i2c-i801.c
10628 F:      drivers/i2c/busses/i2c-isch.c
10629 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
10630 F:      drivers/i2c/busses/i2c-nforce2.c
10631 F:      drivers/i2c/busses/i2c-piix4.c
10632 F:      drivers/i2c/busses/i2c-sis5595.c
10633 F:      drivers/i2c/busses/i2c-sis630.c
10634 F:      drivers/i2c/busses/i2c-sis96x.c
10635 F:      drivers/i2c/busses/i2c-via.c
10636 F:      drivers/i2c/busses/i2c-viapro.c
10637
10638 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
10639 M:      Hans de Goede <[email protected]>
10640 L:      [email protected]
10641 S:      Maintained
10642 F:      drivers/i2c/busses/i2c-cht-wc.c
10643
10644 I2C/SMBUS ISMT DRIVER
10645 M:      Seth Heasley <[email protected]>
10646 M:      Neil Horman <[email protected]>
10647 L:      [email protected]
10648 F:      Documentation/i2c/busses/i2c-ismt.rst
10649 F:      drivers/i2c/busses/i2c-ismt.c
10650
10651 I2C/SMBUS ZHAOXIN DRIVER
10652 M:      Hans Hu <[email protected]>
10653 L:      [email protected]
10654 S:      Maintained
10655 W:      https://www.zhaoxin.com
10656 F:      drivers/i2c/busses/i2c-viai2c-common.c
10657 F:      drivers/i2c/busses/i2c-viai2c-zhaoxin.c
10658
10659 I2C/SMBUS STUB DRIVER
10660 M:      Jean Delvare <[email protected]>
10661 L:      [email protected]
10662 S:      Maintained
10663 F:      drivers/i2c/i2c-stub.c
10664
10665 I3C DRIVER FOR ASPEED AST2600
10666 M:      Jeremy Kerr <[email protected]>
10667 S:      Maintained
10668 F:      Documentation/devicetree/bindings/i3c/aspeed,ast2600-i3c.yaml
10669 F:      drivers/i3c/master/ast2600-i3c-master.c
10670
10671 I3C DRIVER FOR CADENCE I3C MASTER IP
10672 M:      Przemysław Gaj <[email protected]>
10673 S:      Maintained
10674 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
10675 F:      drivers/i3c/master/i3c-master-cdns.c
10676
10677 I3C DRIVER FOR SYNOPSYS DESIGNWARE
10678 S:      Orphan
10679 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
10680 F:      drivers/i3c/master/dw*
10681
10682 I3C SUBSYSTEM
10683 M:      Alexandre Belloni <[email protected]>
10684 L:      [email protected] (moderated for non-subscribers)
10685 S:      Maintained
10686 C:      irc://chat.freenode.net/linux-i3c
10687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
10688 F:      Documentation/ABI/testing/sysfs-bus-i3c
10689 F:      Documentation/devicetree/bindings/i3c/
10690 F:      Documentation/driver-api/i3c
10691 F:      drivers/i3c/
10692 F:      include/dt-bindings/i3c/
10693 F:      include/linux/i3c/
10694
10695 IBM Operation Panel Input Driver
10696 M:      Eddie James <[email protected]>
10697 L:      [email protected]
10698 S:      Maintained
10699 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
10700 F:      drivers/input/misc/ibm-panel.c
10701
10702 IBM Power 842 compression accelerator
10703 M:      Haren Myneni <[email protected]>
10704 S:      Supported
10705 F:      crypto/842.c
10706 F:      drivers/crypto/nx/Kconfig
10707 F:      drivers/crypto/nx/Makefile
10708 F:      drivers/crypto/nx/nx-842*
10709 F:      include/linux/sw842.h
10710 F:      lib/842/
10711
10712 IBM Power in-Nest Crypto Acceleration
10713 M:      Breno Leitão <[email protected]>
10714 M:      Nayna Jain <[email protected]>
10715 M:      Paulo Flabiano Smorigo <[email protected]>
10716 L:      [email protected]
10717 S:      Supported
10718 F:      drivers/crypto/nx/Kconfig
10719 F:      drivers/crypto/nx/Makefile
10720 F:      drivers/crypto/nx/nx-aes*
10721 F:      drivers/crypto/nx/nx-sha*
10722 F:      drivers/crypto/nx/nx.*
10723 F:      drivers/crypto/nx/nx_csbcpb.h
10724 F:      drivers/crypto/nx/nx_debugfs.c
10725
10726 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
10727 M:      Tyrel Datwyler <[email protected]>
10728 L:      [email protected]
10729 L:      [email protected]
10730 S:      Supported
10731 F:      drivers/pci/hotplug/rpadlpar*
10732
10733 IBM Power Linux RAID adapter
10734 M:      Brian King <[email protected]>
10735 S:      Supported
10736 F:      drivers/scsi/ipr.*
10737
10738 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
10739 M:      Tyrel Datwyler <[email protected]>
10740 L:      [email protected]
10741 L:      [email protected]
10742 S:      Supported
10743 F:      drivers/pci/hotplug/rpaphp*
10744
10745 IBM Power SRIOV Virtual NIC Device Driver
10746 M:      Haren Myneni <[email protected]>
10747 M:      Rick Lindsley <[email protected]>
10748 R:      Nick Child <[email protected]>
10749 R:      Thomas Falcon <[email protected]>
10750 L:      [email protected]
10751 S:      Supported
10752 F:      drivers/net/ethernet/ibm/ibmvnic.*
10753
10754 IBM Power VFIO Support
10755 M:      Timothy Pearson <[email protected]>
10756 S:      Supported
10757 F:      drivers/vfio/vfio_iommu_spapr_tce.c
10758
10759 IBM Power Virtual Ethernet Device Driver
10760 M:      Nick Child <[email protected]>
10761 L:      [email protected]
10762 S:      Supported
10763 F:      drivers/net/ethernet/ibm/ibmveth.*
10764
10765 IBM Power Virtual FC Device Drivers
10766 M:      Tyrel Datwyler <[email protected]>
10767 L:      [email protected]
10768 S:      Supported
10769 F:      drivers/scsi/ibmvscsi/ibmvfc*
10770
10771 IBM Power Virtual Management Channel Driver
10772 M:      Brad Warrum <[email protected]>
10773 M:      Ritu Agarwal <[email protected]>
10774 S:      Supported
10775 F:      drivers/misc/ibmvmc.*
10776
10777 IBM Power Virtual SCSI Device Drivers
10778 M:      Tyrel Datwyler <[email protected]>
10779 L:      [email protected]
10780 S:      Supported
10781 F:      drivers/scsi/ibmvscsi/ibmvscsi*
10782 F:      include/scsi/viosrp.h
10783
10784 IBM Power Virtual SCSI Device Target Driver
10785 M:      Tyrel Datwyler <[email protected]>
10786 L:      [email protected]
10787 L:      [email protected]
10788 S:      Supported
10789 F:      drivers/scsi/ibmvscsi_tgt/
10790
10791 IBM Power VMX Cryptographic instructions
10792 M:      Breno Leitão <[email protected]>
10793 M:      Nayna Jain <[email protected]>
10794 M:      Paulo Flabiano Smorigo <[email protected]>
10795 L:      [email protected]
10796 S:      Supported
10797 F:      arch/powerpc/crypto/Kconfig
10798 F:      arch/powerpc/crypto/Makefile
10799 F:      arch/powerpc/crypto/aes.c
10800 F:      arch/powerpc/crypto/aes_cbc.c
10801 F:      arch/powerpc/crypto/aes_ctr.c
10802 F:      arch/powerpc/crypto/aes_xts.c
10803 F:      arch/powerpc/crypto/aesp8-ppc.*
10804 F:      arch/powerpc/crypto/ghash.c
10805 F:      arch/powerpc/crypto/ghashp8-ppc.pl
10806 F:      arch/powerpc/crypto/ppc-xlate.pl
10807 F:      arch/powerpc/crypto/vmx.c
10808
10809 IBM ServeRAID RAID DRIVER
10810 S:      Orphan
10811 F:      drivers/scsi/ips.*
10812
10813 ICH LPC AND GPIO DRIVER
10814 M:      Peter Tyser <[email protected]>
10815 S:      Maintained
10816 F:      drivers/gpio/gpio-ich.c
10817 F:      drivers/mfd/lpc_ich.c
10818
10819 ICY I2C DRIVER
10820 M:      Max Staudt <[email protected]>
10821 L:      [email protected]
10822 S:      Maintained
10823 F:      drivers/i2c/busses/i2c-icy.c
10824
10825 IDEAPAD LAPTOP EXTRAS DRIVER
10826 M:      Ike Panhc <[email protected]>
10827 L:      [email protected]
10828 S:      Maintained
10829 W:      http://launchpad.net/ideapad-laptop
10830 F:      drivers/platform/x86/ideapad-laptop.c
10831
10832 IDEAPAD LAPTOP SLIDEBAR DRIVER
10833 M:      Andrey Moiseev <[email protected]>
10834 L:      [email protected]
10835 S:      Maintained
10836 W:      https://github.com/o2genum/ideapad-slidebar
10837 F:      drivers/input/misc/ideapad_slidebar.c
10838
10839 IDT VersaClock 5 CLOCK DRIVER
10840 M:      Luca Ceresoli <[email protected]>
10841 S:      Maintained
10842 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
10843 F:      drivers/clk/clk-versaclock5.c
10844
10845 IEEE 802.15.4 SUBSYSTEM
10846 M:      Alexander Aring <[email protected]>
10847 M:      Stefan Schmidt <[email protected]>
10848 M:      Miquel Raynal <[email protected]>
10849 L:      [email protected]
10850 S:      Maintained
10851 W:      https://linux-wpan.org/
10852 Q:      https://patchwork.kernel.org/project/linux-wpan/list/
10853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wpan/wpan.git
10854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wpan/wpan-next.git
10855 F:      Documentation/networking/ieee802154.rst
10856 F:      drivers/net/ieee802154/
10857 F:      include/linux/ieee802154.h
10858 F:      include/linux/nl802154.h
10859 F:      include/net/af_ieee802154.h
10860 F:      include/net/cfg802154.h
10861 F:      include/net/ieee802154_netdev.h
10862 F:      include/net/mac802154.h
10863 F:      include/net/nl802154.h
10864 F:      net/ieee802154/
10865 F:      net/mac802154/
10866
10867 Intel VIRTIO DATA PATH ACCELERATOR
10868 M:      Zhu Lingshan <[email protected]>
10869 L:      [email protected]
10870 S:      Supported
10871 F:      drivers/vdpa/ifcvf/
10872
10873 IFE PROTOCOL
10874 M:      Yotam Gigi <[email protected]>
10875 M:      Jamal Hadi Salim <[email protected]>
10876 F:      include/net/ife.h
10877 F:      include/uapi/linux/ife.h
10878 F:      net/ife
10879
10880 IGORPLUG-USB IR RECEIVER
10881 M:      Sean Young <[email protected]>
10882 L:      [email protected]
10883 S:      Maintained
10884 F:      drivers/media/rc/igorplugusb.c
10885
10886 IGUANAWORKS USB IR TRANSCEIVER
10887 M:      Sean Young <[email protected]>
10888 L:      [email protected]
10889 S:      Maintained
10890 F:      drivers/media/rc/iguanair.c
10891
10892 IIO BACKEND FRAMEWORK
10893 M:      Nuno Sa <[email protected]>
10894 R:      Olivier Moysan <[email protected]>
10895 L:      [email protected]
10896 S:      Maintained
10897 F:      drivers/iio/industrialio-backend.c
10898 F:      include/linux/iio/backend.h
10899
10900 IIO DIGITAL POTENTIOMETER DAC
10901 M:      Peter Rosin <[email protected]>
10902 L:      [email protected]
10903 S:      Maintained
10904 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
10905 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
10906 F:      drivers/iio/dac/dpot-dac.c
10907
10908 IIO ENVELOPE DETECTOR
10909 M:      Peter Rosin <[email protected]>
10910 L:      [email protected]
10911 S:      Maintained
10912 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
10913 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
10914 F:      drivers/iio/adc/envelope-detector.c
10915
10916 IIO LIGHT SENSOR GAIN-TIME-SCALE HELPERS
10917 M:      Matti Vaittinen <[email protected]>
10918 L:      [email protected]
10919 S:      Maintained
10920 F:      drivers/iio/industrialio-gts-helper.c
10921 F:      include/linux/iio/iio-gts-helper.h
10922 F:      drivers/iio/test/iio-test-gts.c
10923
10924 IIO MULTIPLEXER
10925 M:      Peter Rosin <[email protected]>
10926 L:      [email protected]
10927 S:      Maintained
10928 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
10929 F:      drivers/iio/multiplexer/iio-mux.c
10930
10931 IIO SCMI BASED DRIVER
10932 M:      Jyoti Bhayana <[email protected]>
10933 L:      [email protected]
10934 S:      Maintained
10935 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
10936
10937 IIO SUBSYSTEM AND DRIVERS
10938 M:      Jonathan Cameron <[email protected]>
10939 R:      Lars-Peter Clausen <[email protected]>
10940 L:      [email protected]
10941 S:      Maintained
10942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
10943 F:      Documentation/ABI/testing/configfs-iio*
10944 F:      Documentation/ABI/testing/sysfs-bus-iio*
10945 F:      Documentation/devicetree/bindings/iio/
10946 F:      Documentation/iio/
10947 F:      drivers/iio/
10948 F:      drivers/staging/iio/
10949 F:      include/dt-bindings/iio/
10950 F:      include/linux/iio/
10951 F:      tools/iio/
10952
10953 IIO UNIT CONVERTER
10954 M:      Peter Rosin <[email protected]>
10955 L:      [email protected]
10956 S:      Maintained
10957 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
10958 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
10959 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
10960 F:      drivers/iio/afe/iio-rescale.c
10961
10962 IKANOS/ADI EAGLE ADSL USB DRIVER
10963 M:      Matthieu Castet <[email protected]>
10964 M:      Stanislaw Gruszka <[email protected]>
10965 S:      Maintained
10966 F:      drivers/usb/atm/ueagle-atm.c
10967
10968 IMAGIS TOUCHSCREEN DRIVER
10969 M:      Markuss Broks <[email protected]>
10970 S:      Maintained
10971 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
10972 F:      drivers/input/touchscreen/imagis.c
10973
10974 IMGTEC ASCII LCD DRIVER
10975 M:      Paul Burton <[email protected]>
10976 S:      Maintained
10977 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
10978 F:      drivers/auxdisplay/img-ascii-lcd.c
10979
10980 IMGTEC JPEG ENCODER DRIVER
10981 M:      Devarsh Thakkar <[email protected]>
10982 L:      [email protected]
10983 S:      Supported
10984 F:      Documentation/devicetree/bindings/media/img,e5010-jpeg-enc.yaml
10985 F:      drivers/media/platform/imagination/e5010*
10986
10987 IMGTEC IR DECODER DRIVER
10988 S:      Orphan
10989 F:      drivers/media/rc/img-ir/
10990
10991 IMGTEC POWERVR DRM DRIVER
10992 M:      Frank Binns <[email protected]>
10993 M:      Matt Coster <[email protected]>
10994 S:      Supported
10995 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
10996 F:      Documentation/devicetree/bindings/gpu/img,powervr-rogue.yaml
10997 F:      Documentation/devicetree/bindings/gpu/img,powervr-sgx.yaml
10998 F:      Documentation/gpu/imagination/
10999 F:      drivers/gpu/drm/imagination/
11000 F:      include/uapi/drm/pvr_drm.h
11001
11002 IMON SOUNDGRAPH USB IR RECEIVER
11003 M:      Sean Young <[email protected]>
11004 L:      [email protected]
11005 S:      Maintained
11006 F:      drivers/media/rc/imon.c
11007 F:      drivers/media/rc/imon_raw.c
11008
11009 IMS TWINTURBO FRAMEBUFFER DRIVER
11010 L:      [email protected]
11011 S:      Orphan
11012 F:      drivers/video/fbdev/imsttfb.c
11013
11014 INDEX OF FURTHER KERNEL DOCUMENTATION
11015 M:      Carlos Bilbao <[email protected]>
11016 S:      Maintained
11017 F:      Documentation/process/kernel-docs.rst
11018
11019 INDUSTRY PACK SUBSYSTEM (IPACK)
11020 M:      Vaibhav Gupta <[email protected]>
11021 M:      Jens Taprogge <[email protected]>
11022 M:      Greg Kroah-Hartman <[email protected]>
11023 L:      [email protected]
11024 S:      Maintained
11025 W:      http://industrypack.sourceforge.net
11026 F:      drivers/ipack/
11027
11028 INFINEON DPS310 Driver
11029 M:      Eddie James <[email protected]>
11030 L:      [email protected]
11031 S:      Maintained
11032 F:      drivers/iio/pressure/dps310.c
11033
11034 INFINEON PEB2466 ASoC CODEC
11035 M:      Herve Codina <[email protected]>
11036 L:      [email protected] (moderated for non-subscribers)
11037 S:      Maintained
11038 F:      Documentation/devicetree/bindings/sound/infineon,peb2466.yaml
11039 F:      sound/soc/codecs/peb2466.c
11040
11041 INFINIBAND SUBSYSTEM
11042 M:      Jason Gunthorpe <[email protected]>
11043 M:      Leon Romanovsky <[email protected]>
11044 L:      [email protected]
11045 S:      Supported
11046 W:      https://github.com/linux-rdma/rdma-core
11047 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
11049 F:      Documentation/devicetree/bindings/infiniband/
11050 F:      Documentation/infiniband/
11051 F:      drivers/infiniband/
11052 F:      include/rdma/
11053 F:      include/trace/events/ib_mad.h
11054 F:      include/trace/events/ib_umad.h
11055 F:      include/trace/misc/rdma.h
11056 F:      include/uapi/linux/if_infiniband.h
11057 F:      include/uapi/rdma/
11058 F:      samples/bpf/ibumad_kern.c
11059 F:      samples/bpf/ibumad_user.c
11060
11061 INGENIC JZ4780 NAND DRIVER
11062 M:      Harvey Hunt <[email protected]>
11063 L:      [email protected]
11064 L:      [email protected]
11065 S:      Maintained
11066 F:      drivers/mtd/nand/raw/ingenic/
11067
11068 INGENIC JZ47xx SoCs
11069 M:      Paul Cercueil <[email protected]>
11070 L:      [email protected]
11071 S:      Maintained
11072 F:      arch/mips/boot/dts/ingenic/
11073 F:      arch/mips/generic/board-ingenic.c
11074 F:      arch/mips/include/asm/mach-ingenic/
11075 F:      arch/mips/ingenic/Kconfig
11076 F:      drivers/clk/ingenic/
11077 F:      drivers/dma/dma-jz4780.c
11078 F:      drivers/gpu/drm/ingenic/
11079 F:      drivers/i2c/busses/i2c-jz4780.c
11080 F:      drivers/iio/adc/ingenic-adc.c
11081 F:      drivers/irqchip/irq-ingenic.c
11082 F:      drivers/memory/jz4780-nemc.c
11083 F:      drivers/mmc/host/jz4740_mmc.c
11084 F:      drivers/mtd/nand/raw/ingenic/
11085 F:      drivers/pinctrl/pinctrl-ingenic.c
11086 F:      drivers/power/supply/ingenic-battery.c
11087 F:      drivers/pwm/pwm-jz4740.c
11088 F:      drivers/remoteproc/ingenic_rproc.c
11089 F:      drivers/rtc/rtc-jz4740.c
11090 F:      drivers/tty/serial/8250/8250_ingenic.c
11091 F:      drivers/usb/musb/jz4740.c
11092 F:      drivers/watchdog/jz4740_wdt.c
11093 F:      include/dt-bindings/iio/adc/ingenic,adc.h
11094 F:      include/linux/mfd/ingenic-tcu.h
11095 F:      sound/soc/codecs/jz47*
11096 F:      sound/soc/jz4740/
11097
11098 INJOINIC IP5xxx POWER BANK IC DRIVER
11099 M:      Samuel Holland <[email protected]>
11100 S:      Maintained
11101 F:      drivers/power/supply/ip5xxx_power.c
11102
11103 INOTIFY
11104 M:      Jan Kara <[email protected]>
11105 R:      Amir Goldstein <[email protected]>
11106 L:      [email protected]
11107 S:      Maintained
11108 F:      Documentation/filesystems/inotify.rst
11109 F:      fs/notify/inotify/
11110 F:      include/linux/inotify.h
11111 F:      include/uapi/linux/inotify.h
11112
11113 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
11114 M:      Dmitry Torokhov <[email protected]>
11115 L:      [email protected]
11116 S:      Maintained
11117 Q:      http://patchwork.kernel.org/project/linux-input/list/
11118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
11119 F:      Documentation/devicetree/bindings/input/
11120 F:      Documentation/devicetree/bindings/serio/
11121 F:      Documentation/input/
11122 F:      drivers/input/
11123 F:      include/dt-bindings/input/
11124 F:      include/linux/input.h
11125 F:      include/linux/input/
11126 F:      include/uapi/linux/input-event-codes.h
11127 F:      include/uapi/linux/input.h
11128
11129 INPUT MULTITOUCH (MT) PROTOCOL
11130 M:      Henrik Rydberg <[email protected]>
11131 L:      [email protected]
11132 S:      Odd fixes
11133 F:      Documentation/input/multi-touch-protocol.rst
11134 F:      drivers/input/input-mt.c
11135 K:      \b(ABS|SYN)_MT_
11136
11137 INSIDE SECURE CRYPTO DRIVER
11138 M:      Antoine Tenart <[email protected]>
11139 L:      [email protected]
11140 S:      Maintained
11141 F:      drivers/crypto/inside-secure/
11142
11143 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
11144 M:      Mimi Zohar <[email protected]>
11145 M:      Roberto Sassu <[email protected]>
11146 M:      Dmitry Kasatkin <[email protected]>
11147 R:      Eric Snowberg <[email protected]>
11148 L:      [email protected]
11149 S:      Supported
11150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
11151 F:      security/integrity/
11152 F:      security/integrity/ima/
11153
11154 INTEL 810/815 FRAMEBUFFER DRIVER
11155 M:      Antonino Daplas <[email protected]>
11156 L:      [email protected]
11157 S:      Maintained
11158 F:      drivers/video/fbdev/i810/
11159
11160 INTEL 8254 COUNTER DRIVER
11161 M:      William Breathitt Gray <[email protected]>
11162 L:      [email protected]
11163 S:      Maintained
11164 F:      drivers/counter/i8254.c
11165 F:      include/linux/i8254.h
11166
11167 INTEL 8255 GPIO DRIVER
11168 M:      William Breathitt Gray <[email protected]>
11169 L:      [email protected]
11170 S:      Maintained
11171 F:      drivers/gpio/gpio-i8255.c
11172 F:      drivers/gpio/gpio-i8255.h
11173
11174 INTEL ASoC DRIVERS
11175 M:      Cezary Rojewski <[email protected]>
11176 M:      Pierre-Louis Bossart <[email protected]>
11177 M:      Liam Girdwood <[email protected]>
11178 M:      Peter Ujfalusi <[email protected]>
11179 M:      Bard Liao <[email protected]>
11180 M:      Ranjani Sridharan <[email protected]>
11181 M:      Kai Vehmanen <[email protected]>
11182 L:      [email protected] (moderated for non-subscribers)
11183 S:      Supported
11184 F:      sound/soc/intel/
11185
11186 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
11187 M:      Hans de Goede <[email protected]>
11188 L:      [email protected]
11189 S:      Maintained
11190 F:      drivers/platform/x86/intel/atomisp2/pm.c
11191
11192 INTEL ATOMISP2 LED DRIVER
11193 M:      Hans de Goede <[email protected]>
11194 L:      [email protected]
11195 S:      Maintained
11196 F:      drivers/platform/x86/intel/atomisp2/led.c
11197
11198 INTEL BIOS SAR INT1092 DRIVER
11199 M:      Shravan Sudhakar <[email protected]>
11200 L:      [email protected]
11201 S:      Maintained
11202 F:      drivers/platform/x86/intel/int1092/
11203
11204 INTEL BROXTON PMC DRIVER
11205 M:      Mika Westerberg <[email protected]>
11206 M:      Zha Qipeng <[email protected]>
11207 S:      Maintained
11208 F:      drivers/mfd/intel_pmc_bxt.c
11209 F:      include/linux/mfd/intel_pmc_bxt.h
11210
11211 INTEL C600 SERIES SAS CONTROLLER DRIVER
11212 M:      Artur Paszkiewicz <[email protected]>
11213 L:      [email protected]
11214 S:      Supported
11215 T:      git git://git.code.sf.net/p/intel-sas/isci
11216 F:      drivers/scsi/isci/
11217
11218 INTEL CPU family model numbers
11219 M:      Tony Luck <[email protected]>
11220 M:      [email protected]
11221 L:      [email protected]
11222 S:      Supported
11223 F:      arch/x86/include/asm/intel-family.h
11224
11225 INTEL DRM DISPLAY FOR XE AND I915 DRIVERS
11226 M:      Jani Nikula <[email protected]>
11227 M:      Rodrigo Vivi <[email protected]>
11228 L:      [email protected]
11229 L:      [email protected]
11230 S:      Supported
11231 F:      drivers/gpu/drm/i915/display/
11232 F:      drivers/gpu/drm/xe/display/
11233 F:      drivers/gpu/drm/xe/compat-i915-headers
11234 F:      include/drm/intel/
11235
11236 INTEL DRM I915 DRIVER (Meteor Lake, DG2 and older excluding Poulsbo, Moorestown and derivative)
11237 M:      Jani Nikula <[email protected]>
11238 M:      Joonas Lahtinen <[email protected]>
11239 M:      Rodrigo Vivi <[email protected]>
11240 M:      Tvrtko Ursulin <[email protected]>
11241 L:      [email protected]
11242 S:      Supported
11243 W:      https://drm.pages.freedesktop.org/intel-docs/
11244 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
11245 B:      https://drm.pages.freedesktop.org/intel-docs/how-to-file-i915-bugs.html
11246 C:      irc://irc.oftc.net/intel-gfx
11247 T:      git https://gitlab.freedesktop.org/drm/i915/kernel.git
11248 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
11249 F:      Documentation/gpu/i915.rst
11250 F:      drivers/gpu/drm/ci/xfails/i915*
11251 F:      drivers/gpu/drm/i915/
11252 F:      include/drm/intel/
11253 F:      include/uapi/drm/i915_drm.h
11254
11255 INTEL DRM XE DRIVER (Lunar Lake and newer)
11256 M:      Lucas De Marchi <[email protected]>
11257 M:      Thomas Hellström <[email protected]>
11258 M:      Rodrigo Vivi <[email protected]>
11259 L:      [email protected]
11260 S:      Supported
11261 W:      https://drm.pages.freedesktop.org/intel-docs/
11262 Q:      http://patchwork.freedesktop.org/project/intel-xe/
11263 B:      https://gitlab.freedesktop.org/drm/xe/kernel/-/issues
11264 C:      irc://irc.oftc.net/xe
11265 T:      git https://gitlab.freedesktop.org/drm/xe/kernel.git
11266 F:      Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
11267 F:      Documentation/gpu/xe/
11268 F:      drivers/gpu/drm/xe/
11269 F:      include/drm/intel/
11270 F:      include/uapi/drm/xe_drm.h
11271
11272 INTEL ETHERNET DRIVERS
11273 M:      Tony Nguyen <[email protected]>
11274 M:      Przemek Kitszel <[email protected]>
11275 L:      [email protected] (moderated for non-subscribers)
11276 S:      Supported
11277 W:      https://www.intel.com/content/www/us/en/support.html
11278 Q:      https://patchwork.ozlabs.org/project/intel-wired-lan/list/
11279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
11280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
11281 F:      Documentation/networking/device_drivers/ethernet/intel/
11282 F:      drivers/net/ethernet/intel/
11283 F:      drivers/net/ethernet/intel/*/
11284 F:      include/linux/avf/virtchnl.h
11285 F:      include/linux/net/intel/iidc.h
11286
11287 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
11288 M:      Mustafa Ismail <[email protected]>
11289 M:      Tatyana Nikolova <[email protected]>
11290 L:      [email protected]
11291 S:      Supported
11292 F:      drivers/infiniband/hw/irdma/
11293 F:      include/uapi/rdma/irdma-abi.h
11294
11295 INTEL GPIO DRIVERS
11296 M:      Andy Shevchenko <[email protected]>
11297 L:      [email protected]
11298 S:      Supported
11299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
11300 F:      drivers/gpio/gpio-elkhartlake.c
11301 F:      drivers/gpio/gpio-graniterapids.c
11302 F:      drivers/gpio/gpio-ich.c
11303 F:      drivers/gpio/gpio-merrifield.c
11304 F:      drivers/gpio/gpio-ml-ioh.c
11305 F:      drivers/gpio/gpio-pch.c
11306 F:      drivers/gpio/gpio-sch.c
11307 F:      drivers/gpio/gpio-sodaville.c
11308 F:      drivers/gpio/gpio-tangier.c
11309 F:      drivers/gpio/gpio-tangier.h
11310
11311 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
11312 M:      Zhenyu Wang <[email protected]>
11313 M:      Zhi Wang <[email protected]>
11314 L:      [email protected]
11315 L:      [email protected]
11316 S:      Supported
11317 W:      https://github.com/intel/gvt-linux/wiki
11318 T:      git https://github.com/intel/gvt-linux.git
11319 F:      drivers/gpu/drm/i915/gvt/
11320
11321 INTEL HID EVENT DRIVER
11322 M:      Alex Hung <[email protected]>
11323 L:      [email protected]
11324 S:      Maintained
11325 F:      drivers/platform/x86/intel/hid.c
11326
11327 INTEL I/OAT DMA DRIVER
11328 M:      Dave Jiang <[email protected]>
11329 R:      Dan Williams <[email protected]>
11330 L:      [email protected]
11331 S:      Supported
11332 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
11333 F:      drivers/dma/ioat*
11334
11335 INTEL IAA CRYPTO DRIVER
11336 M:      Tom Zanussi <[email protected]>
11337 L:      [email protected]
11338 S:      Supported
11339 F:      Documentation/driver-api/crypto/iaa/iaa-crypto.rst
11340 F:      drivers/crypto/intel/iaa/*
11341
11342 INTEL IDLE DRIVER
11343 M:      Jacob Pan <[email protected]>
11344 M:      Len Brown <[email protected]>
11345 L:      [email protected]
11346 S:      Supported
11347 B:      https://bugzilla.kernel.org
11348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
11349 F:      drivers/idle/intel_idle.c
11350
11351 INTEL IDXD DRIVER
11352 M:      Fenghua Yu <[email protected]>
11353 R:      Dave Jiang <[email protected]>
11354 L:      [email protected]
11355 S:      Supported
11356 F:      drivers/dma/idxd/*
11357 F:      include/uapi/linux/idxd.h
11358
11359 INTEL IN FIELD SCAN (IFS) DEVICE
11360 M:      Jithu Joseph <[email protected]>
11361 R:      Ashok Raj <[email protected]>
11362 R:      Tony Luck <[email protected]>
11363 S:      Maintained
11364 F:      drivers/platform/x86/intel/ifs
11365 F:      include/trace/events/intel_ifs.h
11366 F:      tools/testing/selftests/drivers/platform/x86/intel/ifs/
11367
11368 INTEL INTEGRATED SENSOR HUB DRIVER
11369 M:      Srinivas Pandruvada <[email protected]>
11370 M:      Jiri Kosina <[email protected]>
11371 L:      [email protected]
11372 S:      Maintained
11373 F:      drivers/hid/intel-ish-hid/
11374
11375 INTEL IOMMU (VT-d)
11376 M:      David Woodhouse <[email protected]>
11377 M:      Lu Baolu <[email protected]>
11378 L:      [email protected]
11379 S:      Supported
11380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iommu/linux.git
11381 F:      drivers/iommu/intel/
11382
11383 INTEL IPU3 CSI-2 CIO2 DRIVER
11384 M:      Yong Zhi <[email protected]>
11385 M:      Sakari Ailus <[email protected]>
11386 M:      Bingbu Cao <[email protected]>
11387 M:      Dan Scally <[email protected]>
11388 R:      Tianshu Qiu <[email protected]>
11389 L:      [email protected]
11390 S:      Maintained
11391 T:      git git://linuxtv.org/media_tree.git
11392 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
11393 F:      drivers/media/pci/intel/ipu3/
11394
11395 INTEL IPU3 CSI-2 IMGU DRIVER
11396 M:      Sakari Ailus <[email protected]>
11397 R:      Bingbu Cao <[email protected]>
11398 R:      Tianshu Qiu <[email protected]>
11399 L:      [email protected]
11400 S:      Maintained
11401 F:      Documentation/admin-guide/media/ipu3.rst
11402 F:      Documentation/admin-guide/media/ipu3_rcb.svg
11403 F:      Documentation/userspace-api/media/v4l/metafmt-intel-ipu3.rst
11404 F:      drivers/staging/media/ipu3/
11405
11406 INTEL IPU6 INPUT SYSTEM DRIVER
11407 M:      Sakari Ailus <[email protected]>
11408 M:      Bingbu Cao <[email protected]>
11409 R:      Tianshu Qiu <[email protected]>
11410 L:      [email protected]
11411 S:      Maintained
11412 T:      git git://linuxtv.org/media_tree.git
11413 F:      Documentation/admin-guide/media/ipu6-isys.rst
11414 F:      drivers/media/pci/intel/ipu6/
11415
11416 INTEL ISHTP ECLITE DRIVER
11417 M:      Sumesh K Naduvalath <[email protected]>
11418 L:      [email protected]
11419 S:      Supported
11420 F:      drivers/platform/x86/intel/ishtp_eclite.c
11421
11422 INTEL IXP4XX CRYPTO SUPPORT
11423 M:      Corentin Labbe <[email protected]>
11424 L:      [email protected]
11425 S:      Maintained
11426 F:      drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
11427
11428 INTEL KEEM BAY DRM DRIVER
11429 M:      Anitha Chrisanthus <[email protected]>
11430 M:      Edmund Dea <[email protected]>
11431 S:      Maintained
11432 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
11433 F:      drivers/gpu/drm/kmb/
11434
11435 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
11436 M:      Daniele Alessandrelli <[email protected]>
11437 S:      Maintained
11438 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
11439 F:      drivers/crypto/intel/keembay/Kconfig
11440 F:      drivers/crypto/intel/keembay/Makefile
11441 F:      drivers/crypto/intel/keembay/keembay-ocs-aes-core.c
11442 F:      drivers/crypto/intel/keembay/ocs-aes.c
11443 F:      drivers/crypto/intel/keembay/ocs-aes.h
11444
11445 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
11446 M:      Daniele Alessandrelli <[email protected]>
11447 M:      Prabhjot Khurana <[email protected]>
11448 M:      Mark Gross <[email protected]>
11449 S:      Maintained
11450 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
11451 F:      drivers/crypto/intel/keembay/Kconfig
11452 F:      drivers/crypto/intel/keembay/Makefile
11453 F:      drivers/crypto/intel/keembay/keembay-ocs-ecc.c
11454
11455 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
11456 M:      Daniele Alessandrelli <[email protected]>
11457 M:      Declan Murphy <[email protected]>
11458 S:      Maintained
11459 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
11460 F:      drivers/crypto/intel/keembay/Kconfig
11461 F:      drivers/crypto/intel/keembay/Makefile
11462 F:      drivers/crypto/intel/keembay/keembay-ocs-hcu-core.c
11463 F:      drivers/crypto/intel/keembay/ocs-hcu.c
11464 F:      drivers/crypto/intel/keembay/ocs-hcu.h
11465
11466 INTEL MANAGEMENT ENGINE (mei)
11467 M:      Tomas Winkler <[email protected]>
11468 L:      [email protected]
11469 S:      Supported
11470 F:      Documentation/driver-api/mei/*
11471 F:      drivers/misc/mei/
11472 F:      drivers/watchdog/mei_wdt.c
11473 F:      include/linux/mei_aux.h
11474 F:      include/linux/mei_cl_bus.h
11475 F:      include/uapi/linux/mei.h
11476 F:      include/uapi/linux/mei_uuid.h
11477 F:      include/uapi/linux/uuid.h
11478 F:      samples/mei/*
11479
11480 INTEL MAX 10 BMC MFD DRIVER
11481 M:      Xu Yilun <[email protected]>
11482 R:      Tom Rix <[email protected]>
11483 S:      Maintained
11484 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
11485 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
11486 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
11487 F:      drivers/mfd/intel-m10-bmc*
11488 F:      include/linux/mfd/intel-m10-bmc.h
11489
11490 INTEL MAX10 BMC SECURE UPDATES
11491 M:      Peter Colberg <[email protected]>
11492 L:      [email protected]
11493 S:      Maintained
11494 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
11495 F:      drivers/fpga/intel-m10-bmc-sec-update.c
11496
11497 INTEL P-Unit IPC DRIVER
11498 M:      Zha Qipeng <[email protected]>
11499 L:      [email protected]
11500 S:      Maintained
11501 F:      arch/x86/include/asm/intel_punit_ipc.h
11502 F:      drivers/platform/x86/intel/punit_ipc.c
11503
11504 INTEL PMC CORE DRIVER
11505 M:      Rajneesh Bhardwaj <[email protected]>
11506 M:      David E Box <[email protected]>
11507 L:      [email protected]
11508 S:      Maintained
11509 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
11510 F:      drivers/platform/x86/intel/pmc/
11511
11512 INTEL PMIC GPIO DRIVERS
11513 M:      Andy Shevchenko <[email protected]>
11514 S:      Supported
11515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
11516 F:      drivers/gpio/gpio-*cove.c
11517
11518 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
11519 M:      Andy Shevchenko <[email protected]>
11520 S:      Supported
11521 F:      drivers/mfd/intel_soc_pmic*
11522 F:      include/linux/mfd/intel_soc_pmic*
11523
11524 INTEL PMT DRIVERS
11525 M:      David E. Box <[email protected]>
11526 S:      Supported
11527 F:      drivers/platform/x86/intel/pmt/
11528
11529 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
11530 M:      Stanislav Yakovlev <[email protected]>
11531 L:      [email protected]
11532 S:      Maintained
11533 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
11534 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
11535 F:      drivers/net/wireless/intel/ipw2x00/
11536
11537 INTEL PSTATE DRIVER
11538 M:      Srinivas Pandruvada <[email protected]>
11539 M:      Len Brown <[email protected]>
11540 L:      [email protected]
11541 S:      Supported
11542 F:      drivers/cpufreq/intel_pstate.c
11543
11544 INTEL PTP DFL ToD DRIVER
11545 M:      Tianfei Zhang <[email protected]>
11546 L:      [email protected]
11547 L:      [email protected]
11548 S:      Maintained
11549 F:      drivers/ptp/ptp_dfl_tod.c
11550
11551 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
11552 M:      Jarkko Nikula <[email protected]>
11553 L:      [email protected]
11554 F:      drivers/counter/intel-qep.c
11555
11556 INTEL SCU DRIVERS
11557 M:      Mika Westerberg <[email protected]>
11558 S:      Maintained
11559 F:      arch/x86/include/asm/intel_scu_ipc.h
11560 F:      drivers/platform/x86/intel_scu_*
11561
11562 INTEL SDSI DRIVER
11563 M:      David E. Box <[email protected]>
11564 S:      Supported
11565 F:      drivers/platform/x86/intel/sdsi.c
11566 F:      tools/arch/x86/intel_sdsi/
11567 F:      tools/testing/selftests/drivers/sdsi/
11568
11569 INTEL SGX
11570 M:      Jarkko Sakkinen <[email protected]>
11571 R:      Dave Hansen <[email protected]>
11572 L:      [email protected]
11573 S:      Supported
11574 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
11575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
11576 F:      Documentation/arch/x86/sgx.rst
11577 F:      arch/x86/entry/vdso/vsgx.S
11578 F:      arch/x86/include/asm/sgx.h
11579 F:      arch/x86/include/uapi/asm/sgx.h
11580 F:      arch/x86/kernel/cpu/sgx/*
11581 F:      tools/testing/selftests/sgx/*
11582 K:      \bSGX_
11583
11584 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
11585 M:      Daniel Scally <[email protected]>
11586 S:      Maintained
11587 F:      drivers/platform/x86/intel/int3472/
11588
11589 INTEL SPEED SELECT TECHNOLOGY
11590 M:      Srinivas Pandruvada <[email protected]>
11591 L:      [email protected]
11592 S:      Maintained
11593 F:      drivers/platform/x86/intel/speed_select_if/
11594 F:      include/uapi/linux/isst_if.h
11595 F:      tools/power/x86/intel-speed-select/
11596
11597 INTEL STRATIX10 FIRMWARE DRIVERS
11598 M:      Dinh Nguyen <[email protected]>
11599 L:      [email protected]
11600 S:      Maintained
11601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
11602 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
11603 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
11604 F:      drivers/firmware/stratix10-rsu.c
11605 F:      drivers/firmware/stratix10-svc.c
11606 F:      include/linux/firmware/intel/stratix10-smc.h
11607 F:      include/linux/firmware/intel/stratix10-svc-client.h
11608
11609 INTEL TELEMETRY DRIVER
11610 M:      Rajneesh Bhardwaj <[email protected]>
11611 M:      "David E. Box" <[email protected]>
11612 L:      [email protected]
11613 S:      Maintained
11614 F:      arch/x86/include/asm/intel_telemetry.h
11615 F:      drivers/platform/x86/intel/telemetry/
11616
11617 INTEL TPMI DRIVER
11618 M:      Srinivas Pandruvada <[email protected]>
11619 L:      [email protected]
11620 S:      Maintained
11621 F:      Documentation/ABI/testing/debugfs-tpmi
11622 F:      drivers/platform/x86/intel/tpmi.c
11623 F:      include/linux/intel_tpmi.h
11624
11625 INTEL UNCORE FREQUENCY CONTROL
11626 M:      Srinivas Pandruvada <[email protected]>
11627 L:      [email protected]
11628 S:      Maintained
11629 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
11630 F:      drivers/platform/x86/intel/uncore-frequency/
11631
11632 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
11633 M:      David E. Box <[email protected]>
11634 S:      Supported
11635 F:      drivers/platform/x86/intel/vsec.*
11636
11637 INTEL VIRTUAL BUTTON DRIVER
11638 M:      AceLan Kao <[email protected]>
11639 L:      [email protected]
11640 S:      Maintained
11641 F:      drivers/platform/x86/intel/vbtn.c
11642
11643 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
11644 M:      Stanislaw Gruszka <[email protected]>
11645 L:      [email protected]
11646 S:      Supported
11647 F:      drivers/net/wireless/intel/iwlegacy/
11648
11649 INTEL WIRELESS WIFI LINK (iwlwifi)
11650 M:      Miri Korenblit <[email protected]>
11651 L:      [email protected]
11652 S:      Supported
11653 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
11654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
11655 F:      drivers/net/wireless/intel/iwlwifi/
11656
11657 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
11658 M:      Jithu Joseph <[email protected]>
11659 S:      Maintained
11660 W:      https://slimbootloader.github.io/security/firmware-update.html
11661 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
11662
11663 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
11664 L:      [email protected]
11665 S:      Maintained
11666 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
11667
11668 INTEL WWAN IOSM DRIVER
11669 M:      M Chetan Kumar <[email protected]>
11670 L:      [email protected]
11671 S:      Maintained
11672 F:      drivers/net/wwan/iosm/
11673
11674 INTEL(R) FLEXIBLE RETURN AND EVENT DELIVERY
11675 M:      Xin Li <[email protected]>
11676 M:      "H. Peter Anvin" <[email protected]>
11677 S:      Supported
11678 F:      Documentation/arch/x86/x86_64/fred.rst
11679 F:      arch/x86/entry/entry_64_fred.S
11680 F:      arch/x86/entry/entry_fred.c
11681 F:      arch/x86/include/asm/fred.h
11682 F:      arch/x86/kernel/fred.c
11683
11684 INTEL(R) TRACE HUB
11685 M:      Alexander Shishkin <[email protected]>
11686 S:      Supported
11687 F:      Documentation/trace/intel_th.rst
11688 F:      drivers/hwtracing/intel_th/
11689 F:      include/linux/intel_th.h
11690
11691 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
11692 M:      Ning Sun <[email protected]>
11693 L:      [email protected]
11694 S:      Supported
11695 W:      http://tboot.sourceforge.net
11696 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
11697 F:      Documentation/arch/x86/intel_txt.rst
11698 F:      arch/x86/kernel/tboot.c
11699 F:      include/linux/tboot.h
11700
11701 INTERCONNECT API
11702 M:      Georgi Djakov <[email protected]>
11703 L:      [email protected]
11704 S:      Maintained
11705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
11706 F:      Documentation/devicetree/bindings/interconnect/
11707 F:      Documentation/driver-api/interconnect.rst
11708 F:      drivers/interconnect/
11709 F:      include/dt-bindings/interconnect/
11710 F:      include/linux/interconnect-provider.h
11711 F:      include/linux/interconnect.h
11712
11713 INTERRUPT COUNTER DRIVER
11714 M:      Oleksij Rempel <[email protected]>
11715 R:      Pengutronix Kernel Team <[email protected]>
11716 L:      [email protected]
11717 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
11718 F:      drivers/counter/interrupt-cnt.c
11719
11720 INTERSIL ISL7998X VIDEO DECODER DRIVER
11721 M:      Michael Tretter <[email protected]>
11722 R:      Pengutronix Kernel Team <[email protected]>
11723 L:      [email protected]
11724 S:      Maintained
11725 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
11726 F:      drivers/media/i2c/isl7998x.c
11727
11728 INVENSENSE ICM-426xx IMU DRIVER
11729 M:      Jean-Baptiste Maneyrol <[email protected]>
11730 L:      [email protected]
11731 S:      Maintained
11732 W:      https://invensense.tdk.com/
11733 F:      Documentation/ABI/testing/sysfs-bus-iio-inv_icm42600
11734 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
11735 F:      drivers/iio/imu/inv_icm42600/
11736
11737 INVENSENSE MPU-3050 GYROSCOPE DRIVER
11738 M:      Linus Walleij <[email protected]>
11739 L:      [email protected]
11740 S:      Maintained
11741 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
11742 F:      drivers/iio/gyro/mpu3050*
11743
11744 IOC3 ETHERNET DRIVER
11745 M:      Ralf Baechle <[email protected]>
11746 L:      [email protected]
11747 S:      Maintained
11748 F:      drivers/net/ethernet/sgi/ioc3-eth.c
11749
11750 IOMMU DMA-API LAYER
11751 M:      Robin Murphy <[email protected]>
11752 L:      [email protected]
11753 S:      Maintained
11754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iommu/linux.git
11755 F:      drivers/iommu/dma-iommu.c
11756 F:      drivers/iommu/dma-iommu.h
11757 F:      drivers/iommu/iova.c
11758 F:      include/linux/iova.h
11759
11760 IOMMU SUBSYSTEM
11761 M:      Joerg Roedel <[email protected]>
11762 M:      Will Deacon <[email protected]>
11763 R:      Robin Murphy <[email protected]>
11764 L:      [email protected]
11765 S:      Maintained
11766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iommu/linux.git
11767 F:      Documentation/devicetree/bindings/iommu/
11768 F:      drivers/iommu/
11769 F:      include/linux/iommu.h
11770 F:      include/linux/iova.h
11771 F:      include/linux/of_iommu.h
11772
11773 IOMMUFD
11774 M:      Jason Gunthorpe <[email protected]>
11775 M:      Kevin Tian <[email protected]>
11776 L:      [email protected]
11777 S:      Maintained
11778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
11779 F:      Documentation/userspace-api/iommufd.rst
11780 F:      drivers/iommu/iommufd/
11781 F:      include/linux/iommufd.h
11782 F:      include/uapi/linux/iommufd.h
11783 F:      tools/testing/selftests/iommu/
11784
11785 IOSYS-MAP HELPERS
11786 M:      Thomas Zimmermann <[email protected]>
11787 L:      [email protected]
11788 S:      Maintained
11789 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
11790 F:      include/linux/iosys-map.h
11791
11792 IO_URING
11793 M:      Jens Axboe <[email protected]>
11794 M:      Pavel Begunkov <[email protected]>
11795 L:      [email protected]
11796 S:      Maintained
11797 T:      git git://git.kernel.dk/linux-block
11798 T:      git git://git.kernel.dk/liburing
11799 F:      include/linux/io_uring/
11800 F:      include/linux/io_uring.h
11801 F:      include/linux/io_uring_types.h
11802 F:      include/trace/events/io_uring.h
11803 F:      include/uapi/linux/io_uring.h
11804 F:      io_uring/
11805
11806 IPMI SUBSYSTEM
11807 M:      Corey Minyard <[email protected]>
11808 L:      [email protected] (moderated for non-subscribers)
11809 S:      Supported
11810 W:      http://openipmi.sourceforge.net/
11811 T:      git https://github.com/cminyard/linux-ipmi.git for-next
11812 F:      Documentation/devicetree/bindings/ipmi/
11813 F:      Documentation/driver-api/ipmi.rst
11814 F:      drivers/char/ipmi/
11815 F:      include/linux/ipmi*
11816 F:      include/uapi/linux/ipmi*
11817
11818 IPS SCSI RAID DRIVER
11819 M:      Adaptec OEM Raid Solutions <[email protected]>
11820 L:      [email protected]
11821 S:      Maintained
11822 W:      http://www.adaptec.com/
11823 F:      drivers/scsi/ips*
11824
11825 IPVS
11826 M:      Simon Horman <[email protected]>
11827 M:      Julian Anastasov <[email protected]>
11828 L:      [email protected]
11829 L:      [email protected]
11830 S:      Maintained
11831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
11832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
11833 F:      Documentation/networking/ipvs-sysctl.rst
11834 F:      include/net/ip_vs.h
11835 F:      include/uapi/linux/ip_vs.h
11836 F:      net/netfilter/ipvs/
11837
11838 IPWIRELESS DRIVER
11839 M:      Jiri Kosina <[email protected]>
11840 M:      David Sterba <[email protected]>
11841 S:      Odd Fixes
11842 F:      drivers/tty/ipwireless/
11843
11844 IRON DEVICE AUDIO CODEC DRIVERS
11845 M:      Kiseok Jo <[email protected]>
11846 L:      [email protected] (moderated for non-subscribers)
11847 S:      Maintained
11848 F:      Documentation/devicetree/bindings/sound/irondevice,*
11849 F:      sound/soc/codecs/sma*
11850
11851 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
11852 M:      Thomas Gleixner <[email protected]>
11853 S:      Maintained
11854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
11855 F:      Documentation/core-api/irq/irq-domain.rst
11856 F:      include/linux/irqdomain.h
11857 F:      include/linux/irqdomain_defs.h
11858 F:      kernel/irq/irqdomain.c
11859 F:      kernel/irq/msi.c
11860
11861 IRQ SUBSYSTEM
11862 M:      Thomas Gleixner <[email protected]>
11863 L:      [email protected]
11864 S:      Maintained
11865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
11866 F:      include/linux/group_cpus.h
11867 F:      include/linux/irq.h
11868 F:      include/linux/irqhandler.h
11869 F:      include/linux/irqnr.h
11870 F:      include/linux/irqreturn.h
11871 F:      kernel/irq/
11872 F:      lib/group_cpus.c
11873
11874 IRQCHIP DRIVERS
11875 M:      Thomas Gleixner <[email protected]>
11876 L:      [email protected]
11877 S:      Maintained
11878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
11879 F:      Documentation/devicetree/bindings/interrupt-controller/
11880 F:      drivers/irqchip/
11881 F:      include/linux/irqchip.h
11882
11883 ISA
11884 M:      William Breathitt Gray <[email protected]>
11885 S:      Maintained
11886 F:      Documentation/driver-api/isa.rst
11887 F:      drivers/base/isa.c
11888 F:      include/linux/isa.h
11889
11890 ISA RADIO MODULE
11891 M:      Hans Verkuil <[email protected]>
11892 L:      [email protected]
11893 S:      Maintained
11894 W:      https://linuxtv.org
11895 T:      git git://linuxtv.org/media_tree.git
11896 F:      drivers/media/radio/radio-isa*
11897
11898 ISAPNP
11899 M:      Jaroslav Kysela <[email protected]>
11900 S:      Maintained
11901 F:      Documentation/userspace-api/isapnp.rst
11902 F:      drivers/pnp/isapnp/
11903 F:      include/linux/isapnp.h
11904
11905 ISCSI
11906 M:      Lee Duncan <[email protected]>
11907 M:      Chris Leech <[email protected]>
11908 M:      Mike Christie <[email protected]>
11909 L:      [email protected]
11910 L:      [email protected]
11911 S:      Maintained
11912 W:      www.open-iscsi.com
11913 F:      drivers/scsi/*iscsi*
11914 F:      include/scsi/*iscsi*
11915
11916 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
11917 M:      Peter Jones <[email protected]>
11918 M:      Konrad Rzeszutek Wilk <[email protected]>
11919 S:      Maintained
11920 F:      drivers/firmware/iscsi_ibft*
11921
11922 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
11923 M:      Sagi Grimberg <[email protected]>
11924 M:      Max Gurtovoy <[email protected]>
11925 L:      [email protected]
11926 S:      Supported
11927 W:      http://www.openfabrics.org
11928 W:      www.open-iscsi.org
11929 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11930 F:      drivers/infiniband/ulp/iser/
11931
11932 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
11933 M:      Sagi Grimberg <[email protected]>
11934 L:      [email protected]
11935 L:      [email protected]
11936 S:      Supported
11937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
11938 F:      drivers/infiniband/ulp/isert
11939
11940 ISDN/CMTP OVER BLUETOOTH
11941 M:      Karsten Keil <[email protected]>
11942 L:      [email protected] (subscribers-only)
11943 L:      [email protected]
11944 S:      Odd Fixes
11945 W:      http://www.isdn4linux.de
11946 F:      Documentation/isdn/
11947 F:      drivers/isdn/capi/
11948 F:      include/linux/isdn/
11949 F:      include/uapi/linux/isdn/
11950 F:      net/bluetooth/cmtp/
11951
11952 ISDN/mISDN SUBSYSTEM
11953 M:      Karsten Keil <[email protected]>
11954 L:      [email protected] (subscribers-only)
11955 L:      [email protected]
11956 S:      Maintained
11957 W:      http://www.isdn4linux.de
11958 F:      drivers/isdn/Kconfig
11959 F:      drivers/isdn/Makefile
11960 F:      drivers/isdn/hardware/
11961 F:      drivers/isdn/mISDN/
11962
11963 ISOFS FILESYSTEM
11964 M:      Jan Kara <[email protected]>
11965 L:      [email protected]
11966 S:      Maintained
11967 F:      Documentation/filesystems/isofs.rst
11968 F:      fs/isofs/
11969
11970 IT87 HARDWARE MONITORING DRIVER
11971 M:      Jean Delvare <[email protected]>
11972 L:      [email protected]
11973 S:      Maintained
11974 F:      Documentation/hwmon/it87.rst
11975 F:      drivers/hwmon/it87.c
11976
11977 IT913X MEDIA DRIVER
11978 L:      [email protected]
11979 S:      Orphan
11980 W:      https://linuxtv.org
11981 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11982 F:      drivers/media/tuners/it913x*
11983
11984 ITE IT66121 HDMI BRIDGE DRIVER
11985 M:      Phong LE <[email protected]>
11986 M:      Neil Armstrong <[email protected]>
11987 S:      Maintained
11988 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
11989 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
11990 F:      drivers/gpu/drm/bridge/ite-it66121.c
11991
11992 IVTV VIDEO4LINUX DRIVER
11993 M:      Andy Walls <[email protected]>
11994 L:      [email protected]
11995 S:      Maintained
11996 W:      https://linuxtv.org
11997 T:      git git://linuxtv.org/media_tree.git
11998 F:      Documentation/admin-guide/media/ivtv*
11999 F:      drivers/media/pci/ivtv/
12000 F:      include/uapi/linux/ivtv*
12001
12002 IX2505V MEDIA DRIVER
12003 M:      Malcolm Priestley <[email protected]>
12004 L:      [email protected]
12005 S:      Maintained
12006 W:      https://linuxtv.org
12007 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12008 F:      drivers/media/dvb-frontends/ix2505v*
12009
12010 JAILHOUSE HYPERVISOR INTERFACE
12011 M:      Jan Kiszka <[email protected]>
12012 L:      [email protected]
12013 S:      Maintained
12014 F:      arch/x86/include/asm/jailhouse_para.h
12015 F:      arch/x86/kernel/jailhouse.c
12016
12017 JFS FILESYSTEM
12018 M:      Dave Kleikamp <[email protected]>
12019 L:      [email protected]
12020 S:      Odd Fixes
12021 W:      http://jfs.sourceforge.net/
12022 T:      git https://github.com/kleikamp/linux-shaggy.git
12023 F:      Documentation/admin-guide/jfs.rst
12024 F:      fs/jfs/
12025
12026 JME NETWORK DRIVER
12027 M:      Guo-Fu Tseng <[email protected]>
12028 L:      [email protected]
12029 S:      Odd Fixes
12030 F:      drivers/net/ethernet/jme.*
12031
12032 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
12033 M:      David Woodhouse <[email protected]>
12034 M:      Richard Weinberger <[email protected]>
12035 L:      [email protected]
12036 S:      Odd Fixes
12037 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
12038 T:      git git://git.infradead.org/ubifs-2.6.git
12039 F:      fs/jffs2/
12040 F:      include/uapi/linux/jffs2.h
12041
12042 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
12043 M:      "Theodore Ts'o" <[email protected]>
12044 M:      Jan Kara <[email protected]>
12045 L:      [email protected]
12046 S:      Maintained
12047 F:      fs/jbd2/
12048 F:      include/linux/jbd2.h
12049
12050 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
12051 M:      Mikhail Ulyanov <[email protected]>
12052 L:      [email protected]
12053 L:      [email protected]
12054 S:      Maintained
12055 F:      drivers/media/platform/renesas/rcar_jpu.c
12056
12057 JSM Neo PCI based serial card
12058 L:      [email protected]
12059 S:      Orphan
12060 F:      drivers/tty/serial/jsm/
12061
12062 K10TEMP HARDWARE MONITORING DRIVER
12063 M:      Clemens Ladisch <[email protected]>
12064 L:      [email protected]
12065 S:      Maintained
12066 F:      Documentation/hwmon/k10temp.rst
12067 F:      drivers/hwmon/k10temp.c
12068
12069 K8TEMP HARDWARE MONITORING DRIVER
12070 M:      Rudolf Marek <[email protected]>
12071 L:      [email protected]
12072 S:      Maintained
12073 F:      Documentation/hwmon/k8temp.rst
12074 F:      drivers/hwmon/k8temp.c
12075
12076 KASAN
12077 M:      Andrey Ryabinin <[email protected]>
12078 R:      Alexander Potapenko <[email protected]>
12079 R:      Andrey Konovalov <[email protected]>
12080 R:      Dmitry Vyukov <[email protected]>
12081 R:      Vincenzo Frascino <[email protected]>
12082 L:      [email protected]
12083 S:      Maintained
12084 F:      Documentation/dev-tools/kasan.rst
12085 F:      arch/*/include/asm/*kasan.h
12086 F:      arch/*/mm/kasan_init*
12087 F:      include/linux/kasan*.h
12088 F:      lib/Kconfig.kasan
12089 F:      mm/kasan/
12090 F:      scripts/Makefile.kasan
12091
12092 KCONFIG
12093 M:      Masahiro Yamada <[email protected]>
12094 L:      [email protected]
12095 S:      Maintained
12096 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
12097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kbuild
12098 F:      Documentation/kbuild/kconfig*
12099 F:      scripts/Kconfig.include
12100 F:      scripts/kconfig/
12101
12102 KCOV
12103 R:      Dmitry Vyukov <[email protected]>
12104 R:      Andrey Konovalov <[email protected]>
12105 L:      [email protected]
12106 S:      Maintained
12107 F:      Documentation/dev-tools/kcov.rst
12108 F:      include/linux/kcov.h
12109 F:      include/uapi/linux/kcov.h
12110 F:      kernel/kcov.c
12111 F:      scripts/Makefile.kcov
12112
12113 KCSAN
12114 M:      Marco Elver <[email protected]>
12115 R:      Dmitry Vyukov <[email protected]>
12116 L:      [email protected]
12117 S:      Maintained
12118 F:      Documentation/dev-tools/kcsan.rst
12119 F:      include/linux/kcsan*.h
12120 F:      kernel/kcsan/
12121 F:      lib/Kconfig.kcsan
12122 F:      scripts/Makefile.kcsan
12123
12124 KDUMP
12125 M:      Baoquan He <[email protected]>
12126 R:      Vivek Goyal <[email protected]>
12127 R:      Dave Young <[email protected]>
12128 L:      [email protected]
12129 S:      Maintained
12130 W:      http://lse.sourceforge.net/kdump/
12131 F:      Documentation/admin-guide/kdump/
12132 F:      fs/proc/vmcore.c
12133 F:      include/linux/crash_core.h
12134 F:      include/linux/crash_dump.h
12135 F:      include/uapi/linux/vmcore.h
12136 F:      kernel/crash_*.c
12137
12138 KEENE FM RADIO TRANSMITTER DRIVER
12139 M:      Hans Verkuil <[email protected]>
12140 L:      [email protected]
12141 S:      Maintained
12142 W:      https://linuxtv.org
12143 T:      git git://linuxtv.org/media_tree.git
12144 F:      drivers/media/radio/radio-keene*
12145
12146 KERNEL AUTOMOUNTER
12147 M:      Ian Kent <[email protected]>
12148 L:      [email protected]
12149 S:      Maintained
12150 F:      fs/autofs/
12151
12152 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
12153 M:      Masahiro Yamada <[email protected]>
12154 R:      Nathan Chancellor <[email protected]>
12155 R:      Nicolas Schier <[email protected]>
12156 L:      [email protected]
12157 S:      Maintained
12158 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
12159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
12160 F:      Documentation/kbuild/
12161 F:      Makefile
12162 F:      scripts/*vmlinux*
12163 F:      scripts/Kbuild*
12164 F:      scripts/Makefile*
12165 F:      scripts/basic/
12166 F:      scripts/clang-tools/
12167 F:      scripts/dummy-tools/
12168 F:      scripts/include/
12169 F:      scripts/mk*
12170 F:      scripts/mod/
12171 F:      scripts/package/
12172 F:      usr/
12173
12174 KERNEL HARDENING (not covered by other areas)
12175 M:      Kees Cook <[email protected]>
12176 R:      Gustavo A. R. Silva <[email protected]>
12177 L:      [email protected]
12178 S:      Supported
12179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
12180 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
12181 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
12182 F:      arch/*/configs/hardening.config
12183 F:      include/linux/overflow.h
12184 F:      include/linux/randomize_kstack.h
12185 F:      kernel/configs/hardening.config
12186 F:      lib/usercopy_kunit.c
12187 F:      mm/usercopy.c
12188 K:      \b(add|choose)_random_kstack_offset\b
12189 K:      \b__check_(object_size|heap_object)\b
12190 K:      \b__counted_by\b
12191
12192 KERNEL JANITORS
12193 L:      [email protected]
12194 S:      Odd Fixes
12195 W:      http://kernelnewbies.org/KernelJanitors
12196
12197 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
12198 M:      Chuck Lever <[email protected]>
12199 M:      Jeff Layton <[email protected]>
12200 R:      Neil Brown <[email protected]>
12201 R:      Olga Kornievskaia <[email protected]>
12202 R:      Dai Ngo <[email protected]>
12203 R:      Tom Talpey <[email protected]>
12204 L:      [email protected]
12205 S:      Supported
12206 B:      https://bugzilla.kernel.org
12207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
12208 F:      Documentation/filesystems/nfs/
12209 F:      fs/lockd/
12210 F:      fs/nfs_common/
12211 F:      fs/nfsd/
12212 F:      include/linux/lockd/
12213 F:      include/linux/sunrpc/
12214 F:      include/trace/events/rpcgss.h
12215 F:      include/trace/events/rpcrdma.h
12216 F:      include/trace/events/sunrpc.h
12217 F:      include/trace/misc/fs.h
12218 F:      include/trace/misc/nfs.h
12219 F:      include/trace/misc/sunrpc.h
12220 F:      include/uapi/linux/nfsd/
12221 F:      include/uapi/linux/sunrpc/
12222 F:      net/sunrpc/
12223
12224 KERNEL PACMAN PACKAGING (in addition to generic KERNEL BUILD)
12225 M:      Thomas Weißschuh <[email protected]>
12226 R:      Christian Heusel <[email protected]>
12227 R:      Nathan Chancellor <[email protected]>
12228 S:      Maintained
12229 F:      scripts/package/PKGBUILD
12230
12231 KERNEL REGRESSIONS
12232 M:      Thorsten Leemhuis <[email protected]>
12233 L:      [email protected]
12234 S:      Supported
12235 F:      Documentation/admin-guide/reporting-regressions.rst
12236 F:      Documentation/process/handling-regressions.rst
12237
12238 KERNEL SELFTEST FRAMEWORK
12239 M:      Shuah Khan <[email protected]>
12240 M:      Shuah Khan <[email protected]>
12241 L:      [email protected]
12242 S:      Maintained
12243 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
12244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
12245 F:      Documentation/dev-tools/kselftest*
12246 F:      tools/testing/selftests/
12247
12248 KERNEL SMB3 SERVER (KSMBD)
12249 M:      Namjae Jeon <[email protected]>
12250 M:      Steve French <[email protected]>
12251 R:      Sergey Senozhatsky <[email protected]>
12252 R:      Tom Talpey <[email protected]>
12253 L:      [email protected]
12254 S:      Maintained
12255 T:      git git://git.samba.org/ksmbd.git
12256 F:      Documentation/filesystems/smb/ksmbd.rst
12257 F:      fs/smb/common/
12258 F:      fs/smb/server/
12259
12260 KERNEL UNIT TESTING FRAMEWORK (KUnit)
12261 M:      Brendan Higgins <[email protected]>
12262 M:      David Gow <[email protected]>
12263 R:      Rae Moar <[email protected]>
12264 L:      [email protected]
12265 L:      [email protected]
12266 S:      Maintained
12267 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
12268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git kunit
12269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git kunit-fixes
12270 F:      Documentation/dev-tools/kunit/
12271 F:      include/kunit/
12272 F:      lib/kunit/
12273 F:      rust/kernel/kunit.rs
12274 F:      scripts/rustdoc_test_*
12275 F:      tools/testing/kunit/
12276
12277 KERNEL USERMODE HELPER
12278 M:      Luis Chamberlain <[email protected]>
12279 L:      [email protected]
12280 S:      Maintained
12281 F:      include/linux/umh.h
12282 F:      kernel/umh.c
12283
12284 KERNEL VIRTUAL MACHINE (KVM)
12285 M:      Paolo Bonzini <[email protected]>
12286 L:      [email protected]
12287 S:      Supported
12288 W:      http://www.linux-kvm.org
12289 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
12290 F:      Documentation/virt/kvm/
12291 F:      include/asm-generic/kvm*
12292 F:      include/kvm/iodev.h
12293 F:      include/linux/kvm*
12294 F:      include/trace/events/kvm.h
12295 F:      include/uapi/asm-generic/kvm*
12296 F:      include/uapi/linux/kvm*
12297 F:      tools/kvm/
12298 F:      tools/testing/selftests/kvm/
12299 F:      virt/kvm/*
12300
12301 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
12302 M:      Marc Zyngier <[email protected]>
12303 M:      Oliver Upton <[email protected]>
12304 R:      James Morse <[email protected]>
12305 R:      Suzuki K Poulose <[email protected]>
12306 R:      Zenghui Yu <[email protected]>
12307 L:      [email protected] (moderated for non-subscribers)
12308 L:      [email protected]
12309 S:      Maintained
12310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
12311 F:      Documentation/virt/kvm/arm/
12312 F:      Documentation/virt/kvm/devices/arm*
12313 F:      arch/arm64/include/asm/kvm*
12314 F:      arch/arm64/include/uapi/asm/kvm*
12315 F:      arch/arm64/kvm/
12316 F:      include/kvm/arm_*
12317 F:      tools/testing/selftests/kvm/*/aarch64/
12318 F:      tools/testing/selftests/kvm/aarch64/
12319
12320 KERNEL VIRTUAL MACHINE FOR LOONGARCH (KVM/LoongArch)
12321 M:      Tianrui Zhao <[email protected]>
12322 M:      Bibo Mao <[email protected]>
12323 M:      Huacai Chen <[email protected]>
12324 L:      [email protected]
12325 L:      [email protected]
12326 S:      Maintained
12327 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
12328 F:      arch/loongarch/include/asm/kvm*
12329 F:      arch/loongarch/include/uapi/asm/kvm*
12330 F:      arch/loongarch/kvm/
12331
12332 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
12333 M:      Huacai Chen <[email protected]>
12334 L:      [email protected]
12335 L:      [email protected]
12336 S:      Maintained
12337 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
12338 F:      arch/mips/include/asm/kvm*
12339 F:      arch/mips/include/uapi/asm/kvm*
12340 F:      arch/mips/kvm/
12341
12342 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
12343 M:      Michael Ellerman <[email protected]>
12344 R:      Nicholas Piggin <[email protected]>
12345 L:      [email protected]
12346 L:      [email protected]
12347 S:      Maintained (Book3S 64-bit HV)
12348 S:      Odd fixes (Book3S 64-bit PR)
12349 S:      Orphan (Book3E and 32-bit)
12350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
12351 F:      arch/powerpc/include/asm/kvm*
12352 F:      arch/powerpc/include/uapi/asm/kvm*
12353 F:      arch/powerpc/kernel/kvm*
12354 F:      arch/powerpc/kvm/
12355
12356 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
12357 M:      Anup Patel <[email protected]>
12358 R:      Atish Patra <[email protected]>
12359 L:      [email protected]
12360 L:      [email protected]
12361 L:      [email protected]
12362 S:      Maintained
12363 T:      git https://github.com/kvm-riscv/linux.git
12364 F:      arch/riscv/include/asm/kvm*
12365 F:      arch/riscv/include/uapi/asm/kvm*
12366 F:      arch/riscv/kvm/
12367 F:      tools/testing/selftests/kvm/*/riscv/
12368 F:      tools/testing/selftests/kvm/riscv/
12369
12370 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
12371 M:      Christian Borntraeger <[email protected]>
12372 M:      Janosch Frank <[email protected]>
12373 M:      Claudio Imbrenda <[email protected]>
12374 R:      David Hildenbrand <[email protected]>
12375 L:      [email protected]
12376 S:      Supported
12377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
12378 F:      Documentation/virt/kvm/s390*
12379 F:      arch/s390/include/asm/gmap.h
12380 F:      arch/s390/include/asm/kvm*
12381 F:      arch/s390/include/uapi/asm/kvm*
12382 F:      arch/s390/include/uapi/asm/uvdevice.h
12383 F:      arch/s390/kernel/uv.c
12384 F:      arch/s390/kvm/
12385 F:      arch/s390/mm/gmap.c
12386 F:      drivers/s390/char/uvdevice.c
12387 F:      tools/testing/selftests/drivers/s390x/uvdevice/
12388 F:      tools/testing/selftests/kvm/*/s390x/
12389 F:      tools/testing/selftests/kvm/s390x/
12390
12391 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
12392 M:      Sean Christopherson <[email protected]>
12393 M:      Paolo Bonzini <[email protected]>
12394 L:      [email protected]
12395 S:      Supported
12396 P:      Documentation/process/maintainer-kvm-x86.rst
12397 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
12398 F:      arch/x86/include/asm/kvm*
12399 F:      arch/x86/include/asm/svm.h
12400 F:      arch/x86/include/asm/vmx*.h
12401 F:      arch/x86/include/uapi/asm/kvm*
12402 F:      arch/x86/include/uapi/asm/svm.h
12403 F:      arch/x86/include/uapi/asm/vmx.h
12404 F:      arch/x86/kvm/
12405 F:      arch/x86/kvm/*/
12406 F:      tools/testing/selftests/kvm/*/x86_64/
12407 F:      tools/testing/selftests/kvm/x86_64/
12408
12409 KERNFS
12410 M:      Greg Kroah-Hartman <[email protected]>
12411 M:      Tejun Heo <[email protected]>
12412 S:      Supported
12413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
12414 F:      fs/kernfs/
12415 F:      include/linux/kernfs.h
12416
12417 KEXEC
12418 M:      Eric Biederman <[email protected]>
12419 L:      [email protected]
12420 S:      Maintained
12421 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
12422 F:      include/linux/kexec.h
12423 F:      include/uapi/linux/kexec.h
12424 F:      kernel/kexec*
12425
12426 KEYS-ENCRYPTED
12427 M:      Mimi Zohar <[email protected]>
12428 L:      [email protected]
12429 L:      [email protected]
12430 S:      Supported
12431 F:      Documentation/security/keys/trusted-encrypted.rst
12432 F:      include/keys/encrypted-type.h
12433 F:      security/keys/encrypted-keys/
12434
12435 KEYS-TRUSTED
12436 M:      James Bottomley <[email protected]>
12437 M:      Jarkko Sakkinen <[email protected]>
12438 M:      Mimi Zohar <[email protected]>
12439 L:      [email protected]
12440 L:      [email protected]
12441 S:      Supported
12442 F:      Documentation/security/keys/trusted-encrypted.rst
12443 F:      include/keys/trusted-type.h
12444 F:      include/keys/trusted_tpm.h
12445 F:      security/keys/trusted-keys/
12446
12447 KEYS-TRUSTED-CAAM
12448 M:      Ahmad Fatoum <[email protected]>
12449 R:      Pengutronix Kernel Team <[email protected]>
12450 L:      [email protected]
12451 L:      [email protected]
12452 S:      Maintained
12453 F:      include/keys/trusted_caam.h
12454 F:      security/keys/trusted-keys/trusted_caam.c
12455
12456 KEYS-TRUSTED-DCP
12457 M:      David Gstir <[email protected]>
12458 R:      sigma star Kernel Team <[email protected]>
12459 L:      [email protected]
12460 L:      [email protected]
12461 S:      Supported
12462 F:      include/keys/trusted_dcp.h
12463 F:      security/keys/trusted-keys/trusted_dcp.c
12464
12465 KEYS-TRUSTED-TEE
12466 M:      Sumit Garg <[email protected]>
12467 L:      [email protected]
12468 L:      [email protected]
12469 S:      Supported
12470 F:      include/keys/trusted_tee.h
12471 F:      security/keys/trusted-keys/trusted_tee.c
12472
12473 KEYS/KEYRINGS
12474 M:      David Howells <[email protected]>
12475 M:      Jarkko Sakkinen <[email protected]>
12476 L:      [email protected]
12477 S:      Maintained
12478 F:      Documentation/security/keys/core.rst
12479 F:      include/keys/
12480 F:      include/linux/key-type.h
12481 F:      include/linux/key.h
12482 F:      include/linux/keyctl.h
12483 F:      include/uapi/linux/keyctl.h
12484 F:      security/keys/
12485
12486 KEYS/KEYRINGS_INTEGRITY
12487 M:      Jarkko Sakkinen <[email protected]>
12488 M:      Mimi Zohar <[email protected]>
12489 L:      [email protected]
12490 L:      [email protected]
12491 S:      Supported
12492 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
12493 F:      security/integrity/platform_certs
12494
12495 KFENCE
12496 M:      Alexander Potapenko <[email protected]>
12497 M:      Marco Elver <[email protected]>
12498 R:      Dmitry Vyukov <[email protected]>
12499 L:      [email protected]
12500 S:      Maintained
12501 F:      Documentation/dev-tools/kfence.rst
12502 F:      arch/*/include/asm/kfence.h
12503 F:      include/linux/kfence.h
12504 F:      lib/Kconfig.kfence
12505 F:      mm/kfence/
12506
12507 KFIFO
12508 M:      Stefani Seibold <[email protected]>
12509 S:      Maintained
12510 F:      include/linux/kfifo.h
12511 F:      lib/kfifo.c
12512 F:      samples/kfifo/
12513
12514 KGDB / KDB /debug_core
12515 M:      Jason Wessel <[email protected]>
12516 M:      Daniel Thompson <[email protected]>
12517 R:      Douglas Anderson <[email protected]>
12518 L:      [email protected]
12519 S:      Maintained
12520 W:      http://kgdb.wiki.kernel.org/
12521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
12522 F:      Documentation/dev-tools/kgdb.rst
12523 F:      drivers/misc/kgdbts.c
12524 F:      drivers/tty/serial/kgdboc.c
12525 F:      include/linux/kdb.h
12526 F:      include/linux/kgdb.h
12527 F:      kernel/debug/
12528 F:      kernel/module/kdb.c
12529
12530 KHADAS MCU MFD DRIVER
12531 M:      Neil Armstrong <[email protected]>
12532 L:      [email protected]
12533 S:      Maintained
12534 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
12535 F:      drivers/mfd/khadas-mcu.c
12536 F:      drivers/thermal/khadas_mcu_fan.c
12537 F:      include/linux/mfd/khadas-mcu.h
12538
12539 KIONIX/ROHM KX022A ACCELEROMETER
12540 M:      Matti Vaittinen <[email protected]>
12541 L:      [email protected]
12542 S:      Supported
12543 F:      drivers/iio/accel/kionix-kx022a*
12544
12545 KMEMLEAK
12546 M:      Catalin Marinas <[email protected]>
12547 S:      Maintained
12548 F:      Documentation/dev-tools/kmemleak.rst
12549 F:      include/linux/kmemleak.h
12550 F:      mm/kmemleak.c
12551 F:      samples/kmemleak/kmemleak-test.c
12552
12553 KMSAN
12554 M:      Alexander Potapenko <[email protected]>
12555 R:      Marco Elver <[email protected]>
12556 R:      Dmitry Vyukov <[email protected]>
12557 L:      [email protected]
12558 S:      Maintained
12559 F:      Documentation/dev-tools/kmsan.rst
12560 F:      arch/*/include/asm/kmsan.h
12561 F:      arch/*/mm/kmsan_*
12562 F:      include/linux/kmsan*.h
12563 F:      lib/Kconfig.kmsan
12564 F:      mm/kmsan/
12565 F:      scripts/Makefile.kmsan
12566
12567 KPROBES
12568 M:      Naveen N Rao <[email protected]>
12569 M:      Anil S Keshavamurthy <[email protected]>
12570 M:      "David S. Miller" <[email protected]>
12571 M:      Masami Hiramatsu <[email protected]>
12572 L:      [email protected]
12573 L:      [email protected]
12574 S:      Maintained
12575 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
12576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
12577 F:      Documentation/trace/kprobes.rst
12578 F:      include/asm-generic/kprobes.h
12579 F:      include/linux/kprobes.h
12580 F:      kernel/kprobes.c
12581 F:      lib/test_kprobes.c
12582 F:      samples/kprobes
12583
12584 KS0108 LCD CONTROLLER DRIVER
12585 M:      Miguel Ojeda <[email protected]>
12586 S:      Maintained
12587 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
12588 F:      drivers/auxdisplay/ks0108.c
12589 F:      include/linux/ks0108.h
12590
12591 KTD253 BACKLIGHT DRIVER
12592 M:      Linus Walleij <[email protected]>
12593 S:      Maintained
12594 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
12595 F:      drivers/video/backlight/ktd253-backlight.c
12596
12597 KTD2801 BACKLIGHT DRIVER
12598 M:      Duje Mihanović <[email protected]>
12599 S:      Maintained
12600 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd2801.yaml
12601 F:      drivers/video/backlight/ktd2801-backlight.c
12602
12603 KTEST
12604 M:      Steven Rostedt <[email protected]>
12605 M:      John Hawley <[email protected]>
12606 S:      Maintained
12607 F:      tools/testing/ktest
12608
12609 KTZ8866 BACKLIGHT DRIVER
12610 M:      Jianhua Lu <[email protected]>
12611 S:      Maintained
12612 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktz8866.yaml
12613 F:      drivers/video/backlight/ktz8866.c
12614
12615 KVM PARAVIRT (KVM/paravirt)
12616 M:      Paolo Bonzini <[email protected]>
12617 R:      Vitaly Kuznetsov <[email protected]>
12618 L:      [email protected]
12619 S:      Supported
12620 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
12621 F:      arch/um/include/asm/kvm_para.h
12622 F:      arch/x86/include/asm/kvm_para.h
12623 F:      arch/x86/include/asm/pvclock-abi.h
12624 F:      arch/x86/include/uapi/asm/kvm_para.h
12625 F:      arch/x86/kernel/kvm.c
12626 F:      arch/x86/kernel/kvmclock.c
12627 F:      include/asm-generic/kvm_para.h
12628 F:      include/linux/kvm_para.h
12629 F:      include/uapi/asm-generic/kvm_para.h
12630 F:      include/uapi/linux/kvm_para.h
12631
12632 KVM X86 HYPER-V (KVM/hyper-v)
12633 M:      Vitaly Kuznetsov <[email protected]>
12634 M:      Sean Christopherson <[email protected]>
12635 M:      Paolo Bonzini <[email protected]>
12636 L:      [email protected]
12637 S:      Supported
12638 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
12639 F:      arch/x86/kvm/hyperv.*
12640 F:      arch/x86/kvm/kvm_onhyperv.*
12641 F:      arch/x86/kvm/svm/hyperv.*
12642 F:      arch/x86/kvm/svm/svm_onhyperv.*
12643 F:      arch/x86/kvm/vmx/hyperv.*
12644
12645 KVM X86 Xen (KVM/Xen)
12646 M:      David Woodhouse <[email protected]>
12647 M:      Paul Durrant <[email protected]>
12648 M:      Sean Christopherson <[email protected]>
12649 M:      Paolo Bonzini <[email protected]>
12650 L:      [email protected]
12651 S:      Supported
12652 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
12653 F:      arch/x86/kvm/xen.*
12654
12655 L3MDEV
12656 M:      David Ahern <[email protected]>
12657 L:      [email protected]
12658 S:      Maintained
12659 F:      include/net/l3mdev.h
12660 F:      net/l3mdev
12661
12662 LANDLOCK SECURITY MODULE
12663 M:      Mickaël Salaün <[email protected]>
12664 R:      Günther Noack <[email protected]>
12665 L:      [email protected]
12666 S:      Supported
12667 W:      https://landlock.io
12668 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/mic/linux.git
12669 F:      Documentation/security/landlock.rst
12670 F:      Documentation/userspace-api/landlock.rst
12671 F:      fs/ioctl.c
12672 F:      include/uapi/linux/landlock.h
12673 F:      samples/landlock/
12674 F:      security/landlock/
12675 F:      tools/testing/selftests/landlock/
12676 K:      landlock
12677 K:      LANDLOCK
12678
12679 LANTIQ / INTEL Ethernet drivers
12680 M:      Hauke Mehrtens <[email protected]>
12681 L:      [email protected]
12682 S:      Maintained
12683 F:      Documentation/devicetree/bindings/net/dsa/lantiq,gswip.yaml
12684 F:      drivers/net/dsa/lantiq_gswip.c
12685 F:      drivers/net/dsa/lantiq_pce.h
12686 F:      drivers/net/ethernet/lantiq_xrx200.c
12687 F:      net/dsa/tag_gswip.c
12688
12689 LANTIQ MIPS ARCHITECTURE
12690 M:      John Crispin <[email protected]>
12691 L:      [email protected]
12692 S:      Maintained
12693 F:      arch/mips/lantiq
12694 F:      drivers/soc/lantiq
12695
12696 LANTIQ PEF2256 DRIVER
12697 M:      Herve Codina <[email protected]>
12698 S:      Maintained
12699 F:      Documentation/devicetree/bindings/net/lantiq,pef2256.yaml
12700 F:      drivers/net/wan/framer/pef2256/
12701 F:      drivers/pinctrl/pinctrl-pef2256.c
12702 F:      include/linux/framer/pef2256.h
12703
12704 LASI 53c700 driver for PARISC
12705 M:      "James E.J. Bottomley" <[email protected]>
12706 L:      [email protected]
12707 S:      Maintained
12708 F:      Documentation/scsi/53c700.rst
12709 F:      drivers/scsi/53c700*
12710
12711 LEAKING_ADDRESSES
12712 M:      Tycho Andersen <[email protected]>
12713 R:      Kees Cook <[email protected]>
12714 L:      [email protected]
12715 S:      Maintained
12716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
12717 F:      scripts/leaking_addresses.pl
12718
12719 LED SUBSYSTEM
12720 M:      Pavel Machek <[email protected]>
12721 M:      Lee Jones <[email protected]>
12722 L:      [email protected]
12723 S:      Maintained
12724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/leds.git
12725 F:      Documentation/devicetree/bindings/leds/
12726 F:      Documentation/leds/
12727 F:      drivers/leds/
12728 F:      include/dt-bindings/leds/
12729 F:      include/linux/leds.h
12730
12731 LEGO MINDSTORMS EV3
12732 R:      David Lechner <[email protected]>
12733 S:      Maintained
12734 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
12735 F:      arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
12736 F:      drivers/power/supply/lego_ev3_battery.c
12737
12738 LEGO USB Tower driver
12739 M:      Juergen Stuber <[email protected]>
12740 L:      [email protected]
12741 S:      Maintained
12742 W:      http://legousb.sourceforge.net/
12743 F:      drivers/usb/misc/legousbtower.c
12744
12745 LETSKETCH HID TABLET DRIVER
12746 M:      Hans de Goede <[email protected]>
12747 L:      [email protected]
12748 S:      Maintained
12749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12750 F:      drivers/hid/hid-letsketch.c
12751
12752 LG LAPTOP EXTRAS
12753 M:      Matan Ziv-Av <[email protected]>
12754 L:      [email protected]
12755 S:      Maintained
12756 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
12757 F:      Documentation/admin-guide/laptops/lg-laptop.rst
12758 F:      drivers/platform/x86/lg-laptop.c
12759
12760 LG2160 MEDIA DRIVER
12761 M:      Michael Krufky <[email protected]>
12762 L:      [email protected]
12763 S:      Maintained
12764 W:      https://linuxtv.org
12765 W:      http://github.com/mkrufky
12766 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12767 T:      git git://linuxtv.org/mkrufky/tuners.git
12768 F:      drivers/media/dvb-frontends/lg2160.*
12769
12770 LGDT3305 MEDIA DRIVER
12771 M:      Michael Krufky <[email protected]>
12772 L:      [email protected]
12773 S:      Maintained
12774 W:      https://linuxtv.org
12775 W:      http://github.com/mkrufky
12776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12777 T:      git git://linuxtv.org/mkrufky/tuners.git
12778 F:      drivers/media/dvb-frontends/lgdt3305.*
12779
12780 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
12781 M:      Viresh Kumar <[email protected]>
12782 L:      [email protected]
12783 S:      Maintained
12784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
12785 F:      drivers/ata/pata_arasan_cf.c
12786 F:      include/linux/pata_arasan_cf_data.h
12787
12788 LIBATA PATA DRIVERS
12789 R:      Sergey Shtylyov <[email protected]>
12790 L:      [email protected]
12791 F:      drivers/ata/ata_*.c
12792 F:      drivers/ata/pata_*.c
12793
12794 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
12795 M:      Linus Walleij <[email protected]>
12796 L:      [email protected]
12797 S:      Maintained
12798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
12799 F:      drivers/ata/pata_ftide010.c
12800 F:      drivers/ata/sata_gemini.c
12801 F:      drivers/ata/sata_gemini.h
12802
12803 LIBATA SATA AHCI PLATFORM devices support
12804 M:      Hans de Goede <[email protected]>
12805 M:      Jens Axboe <[email protected]>
12806 L:      [email protected]
12807 S:      Maintained
12808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
12809 F:      drivers/ata/ahci_platform.c
12810 F:      drivers/ata/libahci_platform.c
12811 F:      include/linux/ahci_platform.h
12812
12813 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
12814 M:      Serge Semin <[email protected]>
12815 L:      [email protected]
12816 S:      Maintained
12817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
12818 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
12819 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
12820 F:      drivers/ata/ahci_dwc.c
12821
12822 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
12823 M:      Mikael Pettersson <[email protected]>
12824 L:      [email protected]
12825 S:      Maintained
12826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
12827 F:      drivers/ata/sata_promise.*
12828
12829 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
12830 M:      Damien Le Moal <[email protected]>
12831 M:      Niklas Cassel <[email protected]>
12832 L:      [email protected]
12833 S:      Maintained
12834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/libata/linux.git
12835 F:      Documentation/ABI/testing/sysfs-ata
12836 F:      Documentation/devicetree/bindings/ata/
12837 F:      drivers/ata/
12838 F:      include/linux/ata.h
12839 F:      include/linux/libata.h
12840
12841 LIBETH COMMON ETHERNET LIBRARY
12842 M:      Alexander Lobakin <[email protected]>
12843 L:      [email protected]
12844 L:      [email protected] (moderated for non-subscribers)
12845 S:      Supported
12846 T:      git https://github.com/alobakin/linux.git
12847 F:      drivers/net/ethernet/intel/libeth/
12848 F:      include/net/libeth/
12849 K:      libeth
12850
12851 LIBIE COMMON INTEL ETHERNET LIBRARY
12852 M:      Alexander Lobakin <[email protected]>
12853 L:      [email protected] (moderated for non-subscribers)
12854 L:      [email protected]
12855 S:      Supported
12856 T:      git https://github.com/alobakin/linux.git
12857 F:      drivers/net/ethernet/intel/libie/
12858 F:      include/linux/net/intel/libie/
12859 K:      libie
12860
12861 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
12862 M:      Vishal Verma <[email protected]>
12863 M:      Dan Williams <[email protected]>
12864 M:      Dave Jiang <[email protected]>
12865 L:      [email protected]
12866 S:      Supported
12867 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
12868 P:      Documentation/nvdimm/maintainer-entry-profile.rst
12869 F:      drivers/nvdimm/btt*
12870
12871 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
12872 M:      Dan Williams <[email protected]>
12873 M:      Vishal Verma <[email protected]>
12874 M:      Dave Jiang <[email protected]>
12875 L:      [email protected]
12876 S:      Supported
12877 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
12878 P:      Documentation/nvdimm/maintainer-entry-profile.rst
12879 F:      drivers/nvdimm/pmem*
12880
12881 LIBNVDIMM: DEVICETREE BINDINGS
12882 M:      Oliver O'Halloran <[email protected]>
12883 L:      [email protected]
12884 S:      Supported
12885 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
12886 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
12887 F:      drivers/nvdimm/of_pmem.c
12888
12889 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
12890 M:      Dan Williams <[email protected]>
12891 M:      Vishal Verma <[email protected]>
12892 M:      Dave Jiang <[email protected]>
12893 M:      Ira Weiny <[email protected]>
12894 L:      [email protected]
12895 S:      Supported
12896 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
12897 P:      Documentation/nvdimm/maintainer-entry-profile.rst
12898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
12899 F:      drivers/acpi/nfit/*
12900 F:      drivers/nvdimm/*
12901 F:      include/linux/libnvdimm.h
12902 F:      include/linux/nd.h
12903 F:      include/uapi/linux/ndctl.h
12904 F:      tools/testing/nvdimm/
12905
12906 LIBRARY CODE
12907 M:      Andrew Morton <[email protected]>
12908 L:      [email protected]
12909 S:      Supported
12910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-nonmm-unstable
12911 F:      lib/*
12912
12913 LICENSES and SPDX stuff
12914 M:      Thomas Gleixner <[email protected]>
12915 M:      Greg Kroah-Hartman <[email protected]>
12916 L:      [email protected]
12917 S:      Maintained
12918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
12919 F:      COPYING
12920 F:      Documentation/process/license-rules.rst
12921 F:      LICENSES/
12922 F:      scripts/spdxcheck-test.sh
12923 F:      scripts/spdxcheck.py
12924 F:      scripts/spdxexclude
12925
12926 LINEAR RANGES HELPERS
12927 M:      Mark Brown <[email protected]>
12928 R:      Matti Vaittinen <[email protected]>
12929 F:      include/linux/linear_range.h
12930 F:      lib/linear_ranges.c
12931 F:      lib/test_linear_ranges.c
12932
12933 LINUX FOR POWER MACINTOSH
12934 L:      [email protected]
12935 S:      Orphan
12936 F:      arch/powerpc/platforms/powermac/
12937 F:      drivers/macintosh/
12938 X:      drivers/macintosh/adb-iop.c
12939 X:      drivers/macintosh/via-macii.c
12940
12941 LINUX FOR POWERPC (32-BIT AND 64-BIT)
12942 M:      Michael Ellerman <[email protected]>
12943 R:      Nicholas Piggin <[email protected]>
12944 R:      Christophe Leroy <[email protected]>
12945 R:      Naveen N Rao <[email protected]>
12946 L:      [email protected]
12947 S:      Supported
12948 W:      https://github.com/linuxppc/wiki/wiki
12949 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
12950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
12951 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
12952 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
12953 F:      Documentation/devicetree/bindings/powerpc/
12954 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
12955 F:      Documentation/arch/powerpc/
12956 F:      arch/powerpc/
12957 F:      drivers/*/*/*pasemi*
12958 F:      drivers/*/*pasemi*
12959 F:      drivers/char/tpm/tpm_ibmvtpm*
12960 F:      drivers/crypto/nx/
12961 F:      drivers/i2c/busses/i2c-opal.c
12962 F:      drivers/net/ethernet/ibm/ibmveth.*
12963 F:      drivers/net/ethernet/ibm/ibmvnic.*
12964 F:      drivers/pci/hotplug/pnv_php.c
12965 F:      drivers/pci/hotplug/rpa*
12966 F:      drivers/rtc/rtc-opal.c
12967 F:      drivers/scsi/ibmvscsi/
12968 F:      drivers/tty/hvc/hvc_opal.c
12969 F:      drivers/watchdog/wdrtas.c
12970 F:      include/linux/papr_scm.h
12971 F:      include/uapi/linux/papr_pdsm.h
12972 F:      tools/testing/selftests/powerpc
12973 N:      /pmac
12974 N:      powermac
12975 N:      powernv
12976 N:      [^a-z0-9]ps3
12977 N:      pseries
12978
12979 LINUX FOR POWERPC EMBEDDED MPC5XXX
12980 M:      Anatolij Gustschin <[email protected]>
12981 L:      [email protected]
12982 S:      Odd Fixes
12983 F:      arch/powerpc/platforms/512x/
12984 F:      arch/powerpc/platforms/52xx/
12985
12986 LINUX FOR POWERPC EMBEDDED PPC4XX
12987 L:      [email protected]
12988 S:      Orphan
12989 F:      arch/powerpc/platforms/44x/
12990
12991 LINUX FOR POWERPC EMBEDDED PPC85XX
12992 M:      Scott Wood <[email protected]>
12993 L:      [email protected]
12994 S:      Odd fixes
12995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
12996 F:      Documentation/devicetree/bindings/cache/freescale-l2cache.txt
12997 F:      Documentation/devicetree/bindings/powerpc/fsl/
12998 F:      arch/powerpc/platforms/85xx/
12999
13000 LINUX FOR POWERPC EMBEDDED PPC8XX AND PPC83XX
13001 M:      Christophe Leroy <[email protected]>
13002 L:      [email protected]
13003 S:      Maintained
13004 F:      arch/powerpc/platforms/8xx/
13005 F:      arch/powerpc/platforms/83xx/
13006
13007 LINUX KERNEL DUMP TEST MODULE (LKDTM)
13008 M:      Kees Cook <[email protected]>
13009 S:      Maintained
13010 F:      drivers/misc/lkdtm/*
13011 F:      tools/testing/selftests/lkdtm/*
13012
13013 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
13014 M:      Alan Stern <[email protected]>
13015 M:      Andrea Parri <[email protected]>
13016 M:      Will Deacon <[email protected]>
13017 M:      Peter Zijlstra <[email protected]>
13018 M:      Boqun Feng <[email protected]>
13019 M:      Nicholas Piggin <[email protected]>
13020 M:      David Howells <[email protected]>
13021 M:      Jade Alglave <[email protected]>
13022 M:      Luc Maranget <[email protected]>
13023 M:      "Paul E. McKenney" <[email protected]>
13024 R:      Akira Yokosawa <[email protected]>
13025 R:      Daniel Lustig <[email protected]>
13026 R:      Joel Fernandes <[email protected]>
13027 L:      [email protected]
13028 L:      [email protected]
13029 S:      Supported
13030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13031 F:      Documentation/atomic_bitops.txt
13032 F:      Documentation/atomic_t.txt
13033 F:      Documentation/core-api/refcount-vs-atomic.rst
13034 F:      Documentation/litmus-tests/
13035 F:      Documentation/memory-barriers.txt
13036 F:      tools/memory-model/
13037
13038 LINUX-NEXT TREE
13039 M:      Stephen Rothwell <[email protected]>
13040 L:      [email protected]
13041 S:      Supported
13042 B:      mailto:[email protected] and the appropriate development tree
13043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/
13044
13045 LIS3LV02D ACCELEROMETER DRIVER
13046 M:      Eric Piel <[email protected]>
13047 S:      Maintained
13048 F:      Documentation/misc-devices/lis3lv02d.rst
13049 F:      drivers/misc/lis3lv02d/
13050 F:      drivers/platform/x86/hp/hp_accel.c
13051
13052 LIST KUNIT TEST
13053 M:      David Gow <[email protected]>
13054 L:      [email protected]
13055 L:      [email protected]
13056 S:      Maintained
13057 F:      lib/list-test.c
13058
13059 LITEX PLATFORM
13060 M:      Karol Gugala <[email protected]>
13061 M:      Mateusz Holenko <[email protected]>
13062 M:      Gabriel Somlo <[email protected]>
13063 M:      Joel Stanley <[email protected]>
13064 S:      Maintained
13065 F:      Documentation/devicetree/bindings/*/litex,*.yaml
13066 F:      arch/openrisc/boot/dts/or1klitex.dts
13067 F:      drivers/mmc/host/litex_mmc.c
13068 F:      drivers/net/ethernet/litex/*
13069 F:      drivers/soc/litex/*
13070 F:      drivers/tty/serial/liteuart.c
13071 F:      include/linux/litex.h
13072 N:      litex
13073
13074 LIVE PATCHING
13075 M:      Josh Poimboeuf <[email protected]>
13076 M:      Jiri Kosina <[email protected]>
13077 M:      Miroslav Benes <[email protected]>
13078 M:      Petr Mladek <[email protected]>
13079 R:      Joe Lawrence <[email protected]>
13080 L:      [email protected]
13081 S:      Maintained
13082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
13083 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
13084 F:      Documentation/livepatch/
13085 F:      arch/powerpc/include/asm/livepatch.h
13086 F:      include/linux/livepatch.h
13087 F:      kernel/livepatch/
13088 F:      kernel/module/livepatch.c
13089 F:      samples/livepatch/
13090 F:      tools/testing/selftests/livepatch/
13091
13092 LLC (802.2)
13093 L:      [email protected]
13094 S:      Odd fixes
13095 F:      include/linux/llc.h
13096 F:      include/net/llc*
13097 F:      include/uapi/linux/llc.h
13098 F:      net/llc/
13099
13100 LM73 HARDWARE MONITOR DRIVER
13101 M:      Guillaume Ligneul <[email protected]>
13102 L:      [email protected]
13103 S:      Maintained
13104 F:      drivers/hwmon/lm73.c
13105
13106 LM78 HARDWARE MONITOR DRIVER
13107 M:      Jean Delvare <[email protected]>
13108 L:      [email protected]
13109 S:      Maintained
13110 F:      Documentation/hwmon/lm78.rst
13111 F:      drivers/hwmon/lm78.c
13112
13113 LM83 HARDWARE MONITOR DRIVER
13114 M:      Jean Delvare <[email protected]>
13115 L:      [email protected]
13116 S:      Maintained
13117 F:      Documentation/hwmon/lm83.rst
13118 F:      drivers/hwmon/lm83.c
13119
13120 LM90 HARDWARE MONITOR DRIVER
13121 M:      Jean Delvare <[email protected]>
13122 L:      [email protected]
13123 S:      Maintained
13124 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
13125 F:      Documentation/hwmon/lm90.rst
13126 F:      drivers/hwmon/lm90.c
13127 F:      include/dt-bindings/thermal/lm90.h
13128
13129 LME2510 MEDIA DRIVER
13130 M:      Malcolm Priestley <[email protected]>
13131 L:      [email protected]
13132 S:      Maintained
13133 W:      https://linuxtv.org
13134 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13135 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
13136
13137 LOADPIN SECURITY MODULE
13138 M:      Kees Cook <[email protected]>
13139 S:      Supported
13140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
13141 F:      Documentation/admin-guide/LSM/LoadPin.rst
13142 F:      security/loadpin/
13143
13144 LOCKDOWN SECURITY MODULE
13145 L:      [email protected]
13146 S:      Odd Fixes
13147 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
13148 F:      security/lockdown/
13149
13150 LOCKING PRIMITIVES
13151 M:      Peter Zijlstra <[email protected]>
13152 M:      Ingo Molnar <[email protected]>
13153 M:      Will Deacon <[email protected]>
13154 R:      Waiman Long <[email protected]>
13155 R:      Boqun Feng <[email protected]> (LOCKDEP)
13156 L:      [email protected]
13157 S:      Maintained
13158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
13159 F:      Documentation/locking/
13160 F:      arch/*/include/asm/spinlock*.h
13161 F:      include/linux/lockdep*.h
13162 F:      include/linux/mutex*.h
13163 F:      include/linux/rwlock*.h
13164 F:      include/linux/rwsem*.h
13165 F:      include/linux/seqlock.h
13166 F:      include/linux/spinlock*.h
13167 F:      kernel/locking/
13168 F:      lib/locking*.[ch]
13169 X:      kernel/locking/locktorture.c
13170
13171 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
13172 M:      "Richard Russon (FlatCap)" <[email protected]>
13173 L:      [email protected]
13174 S:      Maintained
13175 W:      http://www.linux-ntfs.org/content/view/19/37/
13176 F:      Documentation/admin-guide/ldm.rst
13177 F:      block/partitions/ldm.*
13178
13179 LOGITECH HID GAMING KEYBOARDS
13180 M:      Hans de Goede <[email protected]>
13181 L:      [email protected]
13182 S:      Maintained
13183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
13184 F:      drivers/hid/hid-lg-g15.c
13185
13186 LONTIUM LT8912B MIPI TO HDMI BRIDGE
13187 M:      Adrien Grassein <[email protected]>
13188 S:      Maintained
13189 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
13190 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
13191
13192 LOONGARCH
13193 M:      Huacai Chen <[email protected]>
13194 R:      WANG Xuerui <[email protected]>
13195 L:      [email protected]
13196 S:      Maintained
13197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
13198 F:      Documentation/arch/loongarch/
13199 F:      Documentation/translations/zh_CN/arch/loongarch/
13200 F:      arch/loongarch/
13201 F:      drivers/*/*loongarch*
13202 F:      drivers/cpufreq/loongson3_cpufreq.c
13203
13204 LOONGSON GPIO DRIVER
13205 M:      Yinbo Zhu <[email protected]>
13206 L:      [email protected]
13207 S:      Maintained
13208 F:      Documentation/devicetree/bindings/gpio/loongson,ls-gpio.yaml
13209 F:      drivers/gpio/gpio-loongson-64bit.c
13210
13211 LOONGSON LS2X APB DMA DRIVER
13212 M:      Binbin Zhou <[email protected]>
13213 L:      [email protected]
13214 S:      Maintained
13215 F:      Documentation/devicetree/bindings/dma/loongson,ls2x-apbdma.yaml
13216 F:      drivers/dma/ls2x-apb-dma.c
13217
13218 LOONGSON LS2X I2C DRIVER
13219 M:      Binbin Zhou <[email protected]>
13220 L:      [email protected]
13221 S:      Maintained
13222 F:      Documentation/devicetree/bindings/i2c/loongson,ls2x-i2c.yaml
13223 F:      drivers/i2c/busses/i2c-ls2x.c
13224
13225 LOONGSON-2 SOC SERIES CLOCK DRIVER
13226 M:      Yinbo Zhu <[email protected]>
13227 L:      [email protected]
13228 S:      Maintained
13229 F:      Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml
13230 F:      drivers/clk/clk-loongson2.c
13231 F:      include/dt-bindings/clock/loongson,ls2k-clk.h
13232
13233 LOONGSON SPI DRIVER
13234 M:      Yinbo Zhu <[email protected]>
13235 L:      [email protected]
13236 S:      Maintained
13237 F:      Documentation/devicetree/bindings/spi/loongson,ls2k-spi.yaml
13238 F:      drivers/spi/spi-loongson-core.c
13239 F:      drivers/spi/spi-loongson-pci.c
13240 F:      drivers/spi/spi-loongson-plat.c
13241 F:      drivers/spi/spi-loongson.h
13242
13243 LOONGSON-2 SOC SERIES GUTS DRIVER
13244 M:      Yinbo Zhu <[email protected]>
13245 L:      [email protected]
13246 S:      Maintained
13247 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
13248 F:      drivers/soc/loongson/loongson2_guts.c
13249
13250 LOONGSON-2 SOC SERIES PM DRIVER
13251 M:      Yinbo Zhu <[email protected]>
13252 L:      [email protected]
13253 S:      Maintained
13254 F:      Documentation/devicetree/bindings/soc/loongson/loongson,ls2k-pmc.yaml
13255 F:      drivers/soc/loongson/loongson2_pm.c
13256
13257 LOONGSON-2 SOC SERIES PINCTRL DRIVER
13258 M:      zhanghongchen <[email protected]>
13259 M:      Yinbo Zhu <[email protected]>
13260 L:      [email protected]
13261 S:      Maintained
13262 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
13263 F:      drivers/pinctrl/pinctrl-loongson2.c
13264
13265 LOONGSON-2 SOC SERIES THERMAL DRIVER
13266 M:      zhanghongchen <[email protected]>
13267 M:      Yinbo Zhu <[email protected]>
13268 L:      [email protected]
13269 S:      Maintained
13270 F:      Documentation/devicetree/bindings/thermal/loongson,ls2k-thermal.yaml
13271 F:      drivers/thermal/loongson2_thermal.c
13272
13273 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
13274 M:      Sathya Prakash <[email protected]>
13275 M:      Sreekanth Reddy <[email protected]>
13276 M:      Suganath Prabu Subramani <[email protected]>
13277 L:      [email protected]
13278 L:      [email protected]
13279 S:      Supported
13280 W:      http://www.avagotech.com/support/
13281 F:      drivers/message/fusion/
13282 F:      drivers/scsi/mpt3sas/
13283
13284 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
13285 M:      Matthew Wilcox <[email protected]>
13286 L:      [email protected]
13287 S:      Maintained
13288 F:      drivers/scsi/sym53c8xx_2/
13289
13290 LTC1660 DAC DRIVER
13291 M:      Marcus Folkesson <[email protected]>
13292 L:      [email protected]
13293 S:      Maintained
13294 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
13295 F:      drivers/iio/dac/ltc1660.c
13296
13297 LTC2688 IIO DAC DRIVER
13298 M:      Nuno Sá <[email protected]>
13299 L:      [email protected]
13300 S:      Supported
13301 W:      https://ez.analog.com/linux-software-drivers
13302 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
13303 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
13304 F:      drivers/iio/dac/ltc2688.c
13305
13306 LTC2947 HARDWARE MONITOR DRIVER
13307 M:      Nuno Sá <[email protected]>
13308 L:      [email protected]
13309 S:      Supported
13310 W:      https://ez.analog.com/linux-software-drivers
13311 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
13312 F:      drivers/hwmon/ltc2947-core.c
13313 F:      drivers/hwmon/ltc2947-i2c.c
13314 F:      drivers/hwmon/ltc2947-spi.c
13315 F:      drivers/hwmon/ltc2947.h
13316
13317 LTC2991 HARDWARE MONITOR DRIVER
13318 M:      Antoniu Miclaus <[email protected]>
13319 L:      [email protected]
13320 S:      Supported
13321 W:      https://ez.analog.com/linux-software-drivers
13322 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2991.yaml
13323 F:      drivers/hwmon/ltc2991.c
13324
13325 LTC2983 IIO TEMPERATURE DRIVER
13326 M:      Nuno Sá <[email protected]>
13327 L:      [email protected]
13328 S:      Supported
13329 W:      https://ez.analog.com/linux-software-drivers
13330 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
13331 F:      drivers/iio/temperature/ltc2983.c
13332
13333 LTC4282 HARDWARE MONITOR DRIVER
13334 M:      Nuno Sa <[email protected]>
13335 L:      [email protected]
13336 S:      Supported
13337 F:      Documentation/devicetree/bindings/hwmon/adi,ltc4282.yaml
13338 F:      Documentation/hwmon/ltc4282.rst
13339 F:      drivers/hwmon/ltc4282.c
13340
13341 LTC4286 HARDWARE MONITOR DRIVER
13342 M:      Delphine CC Chiu <[email protected]>
13343 L:      [email protected]
13344 S:      Maintained
13345 F:      Documentation/devicetree/bindings/hwmon/lltc,ltc4286.yaml
13346 F:      Documentation/hwmon/ltc4286.rst
13347 F:      drivers/hwmon/pmbus/Kconfig
13348 F:      drivers/hwmon/pmbus/Makefile
13349 F:      drivers/hwmon/pmbus/ltc4286.c
13350
13351 LTC4306 I2C MULTIPLEXER DRIVER
13352 M:      Michael Hennerich <[email protected]>
13353 L:      [email protected]
13354 S:      Supported
13355 W:      https://ez.analog.com/linux-software-drivers
13356 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
13357 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
13358
13359 LTP (Linux Test Project)
13360 M:      Andrea Cervesato <[email protected]>
13361 M:      Cyril Hrubis <[email protected]>
13362 M:      Jan Stancek <[email protected]>
13363 M:      Petr Vorel <[email protected]>
13364 M:      Li Wang <[email protected]>
13365 M:      Yang Xu <[email protected]>
13366 M:      Xiao Yang <[email protected]>
13367 L:      [email protected] (subscribers-only)
13368 S:      Maintained
13369 W:      https://linux-test-project.readthedocs.io/
13370 T:      git https://github.com/linux-test-project/ltp.git
13371
13372 LTR390 AMBIENT/UV LIGHT SENSOR DRIVER
13373 M:      Anshul Dalal <[email protected]>
13374 L:      [email protected]
13375 S:      Maintained
13376 F:      Documentation/devicetree/bindings/iio/light/liteon,ltr390.yaml
13377 F:      drivers/iio/light/ltr390.c
13378
13379 LYNX 28G SERDES PHY DRIVER
13380 M:      Ioana Ciornei <[email protected]>
13381 L:      [email protected]
13382 S:      Supported
13383 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
13384 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
13385
13386 LYNX PCS MODULE
13387 M:      Ioana Ciornei <[email protected]>
13388 L:      [email protected]
13389 S:      Supported
13390 F:      drivers/net/pcs/pcs-lynx.c
13391 F:      include/linux/pcs-lynx.h
13392
13393 M68K ARCHITECTURE
13394 M:      Geert Uytterhoeven <[email protected]>
13395 L:      [email protected]
13396 S:      Maintained
13397 W:      http://www.linux-m68k.org/
13398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
13399 F:      arch/m68k/
13400 F:      drivers/zorro/
13401
13402 M68K ON APPLE MACINTOSH
13403 M:      Joshua Thompson <[email protected]>
13404 L:      [email protected]
13405 S:      Maintained
13406 W:      http://www.mac.linux-m68k.org/
13407 F:      arch/m68k/mac/
13408 F:      drivers/macintosh/adb-iop.c
13409 F:      drivers/macintosh/via-macii.c
13410
13411 M68K ON HP9000/300
13412 M:      Philip Blundell <[email protected]>
13413 S:      Maintained
13414 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
13415 F:      arch/m68k/hp300/
13416
13417 M88DS3103 MEDIA DRIVER
13418 L:      [email protected]
13419 S:      Orphan
13420 W:      https://linuxtv.org
13421 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13422 F:      drivers/media/dvb-frontends/m88ds3103*
13423
13424 M88RS2000 MEDIA DRIVER
13425 M:      Malcolm Priestley <[email protected]>
13426 L:      [email protected]
13427 S:      Maintained
13428 W:      https://linuxtv.org
13429 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13430 F:      drivers/media/dvb-frontends/m88rs2000*
13431
13432 MA901 MASTERKIT USB FM RADIO DRIVER
13433 M:      Alexey Klimov <[email protected]>
13434 L:      [email protected]
13435 S:      Maintained
13436 T:      git git://linuxtv.org/media_tree.git
13437 F:      drivers/media/radio/radio-ma901.c
13438
13439 MAC80211
13440 M:      Johannes Berg <[email protected]>
13441 L:      [email protected]
13442 S:      Maintained
13443 W:      https://wireless.wiki.kernel.org/
13444 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13447 F:      Documentation/networking/mac80211-injection.rst
13448 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
13449 F:      drivers/net/wireless/virtual/mac80211_hwsim.[ch]
13450 F:      include/net/mac80211.h
13451 F:      net/mac80211/
13452
13453 MAILBOX API
13454 M:      Jassi Brar <[email protected]>
13455 L:      [email protected]
13456 S:      Maintained
13457 F:      Documentation/devicetree/bindings/mailbox/
13458 F:      drivers/mailbox/
13459 F:      include/dt-bindings/mailbox/
13460 F:      include/linux/mailbox_client.h
13461 F:      include/linux/mailbox_controller.h
13462
13463 MAILBOX ARM MHUv2
13464 M:      Viresh Kumar <[email protected]>
13465 M:      Tushar Khandelwal <[email protected]>
13466 L:      [email protected]
13467 S:      Maintained
13468 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
13469 F:      drivers/mailbox/arm_mhuv2.c
13470 F:      include/linux/mailbox/arm_mhuv2_message.h
13471
13472 MAILBOX ARM MHUv3
13473 M:      Sudeep Holla <[email protected]>
13474 M:      Cristian Marussi <[email protected]>
13475 L:      [email protected]
13476 L:      [email protected] (moderated for non-subscribers)
13477 S:      Maintained
13478 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv3.yaml
13479 F:      drivers/mailbox/arm_mhuv3.c
13480
13481 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
13482 M:      Alejandro Colomar <[email protected]>
13483 L:      [email protected]
13484 S:      Maintained
13485 W:      http://www.kernel.org/doc/man-pages
13486 T:      git git://git.kernel.org/pub/scm/docs/man-pages/man-pages.git
13487 T:      git git://www.alejandro-colomar.es/src/alx/linux/man-pages/man-pages.git
13488
13489 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
13490 M:      Jeremy Kerr <[email protected]>
13491 M:      Matt Johnston <[email protected]>
13492 L:      [email protected]
13493 S:      Maintained
13494 F:      Documentation/networking/mctp.rst
13495 F:      drivers/net/mctp/
13496 F:      include/net/mctp.h
13497 F:      include/net/mctpdevice.h
13498 F:      include/net/netns/mctp.h
13499 F:      net/mctp/
13500
13501 MAPLE TREE
13502 M:      Liam R. Howlett <[email protected]>
13503 L:      [email protected]
13504 L:      [email protected]
13505 S:      Supported
13506 F:      Documentation/core-api/maple_tree.rst
13507 F:      include/linux/maple_tree.h
13508 F:      include/trace/events/maple_tree.h
13509 F:      lib/maple_tree.c
13510 F:      lib/test_maple_tree.c
13511 F:      tools/testing/radix-tree/linux/maple_tree.h
13512 F:      tools/testing/radix-tree/maple.c
13513
13514 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
13515 M:      Rahul Bedarkar <[email protected]>
13516 L:      [email protected]
13517 S:      Maintained
13518 F:      arch/mips/boot/dts/img/pistachio*
13519
13520 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
13521 M:      Andrew Lunn <[email protected]>
13522 L:      [email protected]
13523 S:      Maintained
13524 F:      Documentation/devicetree/bindings/net/dsa/marvell,mv88e6060.yaml
13525 F:      Documentation/devicetree/bindings/net/dsa/marvell,mv88e6xxx.yaml
13526 F:      Documentation/networking/devlink/mv88e6xxx.rst
13527 F:      drivers/net/dsa/mv88e6xxx/
13528 F:      include/linux/dsa/mv88e6xxx.h
13529 F:      include/linux/platform_data/mv88e6xxx.h
13530
13531 MARVELL 88PM886 PMIC DRIVER
13532 M:      Karel Balej <[email protected]>
13533 S:      Maintained
13534 F:      Documentation/devicetree/bindings/mfd/marvell,88pm886-a1.yaml
13535 F:      drivers/input/misc/88pm886-onkey.c
13536 F:      drivers/mfd/88pm886.c
13537 F:      drivers/regulators/88pm886-regulator.c
13538 F:      include/linux/mfd/88pm886.h
13539
13540 MARVELL ARMADA 3700 PHY DRIVERS
13541 M:      Miquel Raynal <[email protected]>
13542 S:      Maintained
13543 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
13544 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
13545 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
13546 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
13547
13548 MARVELL ARMADA 3700 SERIAL DRIVER
13549 M:      Pali Rohár <[email protected]>
13550 S:      Maintained
13551 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
13552 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
13553 F:      drivers/tty/serial/mvebu-uart.c
13554
13555 MARVELL ARMADA DRM SUPPORT
13556 M:      Russell King <[email protected]>
13557 S:      Maintained
13558 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
13559 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
13560 F:      Documentation/devicetree/bindings/display/armada/
13561 F:      drivers/gpu/drm/armada/
13562 F:      include/uapi/drm/armada_drm.h
13563
13564 MARVELL CRYPTO DRIVER
13565 M:      Boris Brezillon <[email protected]>
13566 M:      Arnaud Ebalard <[email protected]>
13567 M:      Srujana Challa <[email protected]>
13568 L:      [email protected]
13569 S:      Maintained
13570 F:      drivers/crypto/marvell/
13571 F:      include/linux/soc/marvell/octeontx2/
13572
13573 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
13574 M:      Mirko Lindner <[email protected]>
13575 M:      Stephen Hemminger <[email protected]>
13576 L:      [email protected]
13577 S:      Odd fixes
13578 F:      drivers/net/ethernet/marvell/sk*
13579
13580 MARVELL LIBERTAS WIRELESS DRIVER
13581 L:      [email protected]
13582 S:      Orphan
13583 F:      drivers/net/wireless/marvell/libertas/
13584
13585 MARVELL MACCHIATOBIN SUPPORT
13586 M:      Russell King <[email protected]>
13587 L:      [email protected] (moderated for non-subscribers)
13588 S:      Maintained
13589 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
13590
13591 MARVELL MV643XX ETHERNET DRIVER
13592 M:      Sebastian Hesselbarth <[email protected]>
13593 L:      [email protected]
13594 S:      Maintained
13595 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
13596
13597 MARVELL MV88X3310 PHY DRIVER
13598 M:      Russell King <[email protected]>
13599 M:      Marek Behún <[email protected]>
13600 L:      [email protected]
13601 S:      Maintained
13602 F:      drivers/net/phy/marvell10g.c
13603
13604 MARVELL MVEBU THERMAL DRIVER
13605 M:      Miquel Raynal <[email protected]>
13606 S:      Maintained
13607 F:      drivers/thermal/armada_thermal.c
13608
13609 MARVELL MVNETA ETHERNET DRIVER
13610 M:      Marcin Wojtas <[email protected]>
13611 L:      [email protected]
13612 S:      Maintained
13613 F:      drivers/net/ethernet/marvell/mvneta*
13614
13615 MARVELL MVPP2 ETHERNET DRIVER
13616 M:      Marcin Wojtas <[email protected]>
13617 M:      Russell King <[email protected]>
13618 L:      [email protected]
13619 S:      Maintained
13620 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
13621 F:      drivers/net/ethernet/marvell/mvpp2/
13622
13623 MARVELL MWIFIEX WIRELESS DRIVER
13624 M:      Brian Norris <[email protected]>
13625 R:      Francesco Dolcini <[email protected]>
13626 L:      [email protected]
13627 S:      Odd Fixes
13628 F:      drivers/net/wireless/marvell/mwifiex/
13629
13630 MARVELL MWL8K WIRELESS DRIVER
13631 L:      [email protected]
13632 S:      Orphan
13633 F:      drivers/net/wireless/marvell/mwl8k.c
13634
13635 MARVELL NAND CONTROLLER DRIVER
13636 M:      Miquel Raynal <[email protected]>
13637 L:      [email protected]
13638 S:      Maintained
13639 F:      drivers/mtd/nand/raw/marvell_nand.c
13640
13641 MARVELL OCTEON ENDPOINT DRIVER
13642 M:      Veerasenareddy Burru <[email protected]>
13643 M:      Sathesh Edara <[email protected]>
13644 L:      [email protected]
13645 S:      Supported
13646 F:      drivers/net/ethernet/marvell/octeon_ep
13647
13648 MARVELL OCTEON ENDPOINT VF DRIVER
13649 M:      Veerasenareddy Burru <[email protected]>
13650 M:      Sathesh Edara <[email protected]>
13651 M:      Shinas Rasheed <[email protected]>
13652 M:      Satananda Burla <[email protected]>
13653 L:      [email protected]
13654 S:      Supported
13655 F:      drivers/net/ethernet/marvell/octeon_ep_vf
13656
13657 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
13658 M:      Sunil Goutham <[email protected]>
13659 M:      Geetha sowjanya <[email protected]>
13660 M:      Subbaraya Sundeep <[email protected]>
13661 M:      hariprasad <[email protected]>
13662 L:      [email protected]
13663 S:      Supported
13664 F:      drivers/net/ethernet/marvell/octeontx2/nic/
13665 F:      include/linux/soc/marvell/octeontx2/
13666
13667 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
13668 M:      Sunil Goutham <[email protected]>
13669 M:      Linu Cherian <[email protected]>
13670 M:      Geetha sowjanya <[email protected]>
13671 M:      Jerin Jacob <[email protected]>
13672 M:      hariprasad <[email protected]>
13673 M:      Subbaraya Sundeep <[email protected]>
13674 L:      [email protected]
13675 S:      Supported
13676 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
13677 F:      drivers/net/ethernet/marvell/octeontx2/af/
13678
13679 MARVELL PRESTERA ETHERNET SWITCH DRIVER
13680 M:      Taras Chornyi <[email protected]>
13681 S:      Supported
13682 W:      https://github.com/Marvell-switching/switchdev-prestera
13683 F:      drivers/net/ethernet/marvell/prestera/
13684
13685 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
13686 M:      Nicolas Pitre <[email protected]>
13687 S:      Odd Fixes
13688 F:      drivers/mmc/host/mvsdio.*
13689
13690 MARVELL USB MDIO CONTROLLER DRIVER
13691 M:      Tobias Waldekranz <[email protected]>
13692 L:      [email protected]
13693 S:      Maintained
13694 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
13695 F:      drivers/net/mdio/mdio-mvusb.c
13696
13697 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
13698 M:      Hu Ziji <[email protected]>
13699 L:      [email protected]
13700 S:      Supported
13701 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
13702 F:      drivers/mmc/host/sdhci-xenon*
13703
13704 MARVELL OCTEON CN10K DPI DRIVER
13705 M:      Vamsi Attunuru <[email protected]>
13706 S:      Supported
13707 F:      drivers/misc/mrvl_cn10k_dpi.c
13708
13709 MARVELL OCTEON ENDPOINT VIRTIO DATA PATH ACCELERATOR
13710 R:      [email protected]
13711 R:      [email protected]
13712 F:      drivers/vdpa/octeon_ep/
13713
13714 MATROX FRAMEBUFFER DRIVER
13715 L:      [email protected]
13716 S:      Orphan
13717 F:      drivers/video/fbdev/matrox/matroxfb_*
13718 F:      include/uapi/linux/matroxfb.h
13719
13720 MAX15301 DRIVER
13721 M:      Daniel Nilsson <[email protected]>
13722 L:      [email protected]
13723 S:      Maintained
13724 F:      Documentation/hwmon/max15301.rst
13725 F:      drivers/hwmon/pmbus/max15301.c
13726
13727 MAX2175 SDR TUNER DRIVER
13728 M:      Ramesh Shanmugasundaram <[email protected]>
13729 L:      [email protected]
13730 S:      Maintained
13731 T:      git git://linuxtv.org/media_tree.git
13732 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
13733 F:      Documentation/userspace-api/media/drivers/max2175.rst
13734 F:      drivers/media/i2c/max2175*
13735 F:      include/uapi/linux/max2175.h
13736
13737 MAX31335 RTC DRIVER
13738 M:      Antoniu Miclaus <[email protected]>
13739 L:      [email protected]
13740 S:      Supported
13741 W:      https://ez.analog.com/linux-software-drivers
13742 F:      Documentation/devicetree/bindings/rtc/adi,max31335.yaml
13743 F:      drivers/rtc/rtc-max31335.c
13744
13745 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
13746 L:      [email protected]
13747 S:      Orphan
13748 F:      Documentation/hwmon/max6650.rst
13749 F:      drivers/hwmon/max6650.c
13750
13751 MAX9286 QUAD GMSL DESERIALIZER DRIVER
13752 M:      Jacopo Mondi <[email protected]>
13753 M:      Kieran Bingham <[email protected]>
13754 M:      Laurent Pinchart <[email protected]>
13755 M:      Niklas Söderlund <[email protected]>
13756 L:      [email protected]
13757 S:      Maintained
13758 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
13759 F:      drivers/media/i2c/max9286.c
13760
13761 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
13762 M:      Niklas Söderlund <[email protected]>
13763 L:      [email protected]
13764 S:      Maintained
13765 F:      Documentation/devicetree/bindings/media/i2c/maxim,max96712.yaml
13766 F:      drivers/staging/media/max96712/max96712.c
13767
13768 MAX96714 GMSL2 DESERIALIZER DRIVER
13769 M:      Julien Massot <[email protected]>
13770 L:      [email protected]
13771 S:      Maintained
13772 F:      Documentation/devicetree/bindings/media/i2c/maxim,max96714.yaml
13773 F:      drivers/media/i2c/max96714.c
13774
13775 MAX96717 GMSL2 SERIALIZER DRIVER
13776 M:      Julien Massot <[email protected]>
13777 L:      [email protected]
13778 S:      Maintained
13779 F:      Documentation/devicetree/bindings/media/i2c/maxim,max96717.yaml
13780 F:      drivers/media/i2c/max96717.c
13781
13782 MAX9860 MONO AUDIO VOICE CODEC DRIVER
13783 M:      Peter Rosin <[email protected]>
13784 L:      [email protected] (moderated for non-subscribers)
13785 S:      Maintained
13786 F:      Documentation/devicetree/bindings/sound/max9860.txt
13787 F:      sound/soc/codecs/max9860.*
13788
13789 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
13790 M:      Andreas Klinger <[email protected]>
13791 L:      [email protected]
13792 S:      Maintained
13793 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
13794 F:      drivers/iio/proximity/mb1232.c
13795
13796 MAXIM MAX11205 DRIVER
13797 M:      Ramona Bolboaca <[email protected]>
13798 L:      [email protected]
13799 S:      Supported
13800 W:      https://ez.analog.com/linux-software-drivers
13801 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
13802 F:      drivers/iio/adc/max11205.c
13803
13804 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
13805 R:      Iskren Chernev <[email protected]>
13806 R:      Krzysztof Kozlowski <[email protected]>
13807 R:      Marek Szyprowski <[email protected]>
13808 R:      Matheus Castello <[email protected]>
13809 L:      [email protected]
13810 S:      Maintained
13811 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
13812 F:      drivers/power/supply/max17040_battery.c
13813
13814 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
13815 R:      Hans de Goede <[email protected]>
13816 R:      Krzysztof Kozlowski <[email protected]>
13817 R:      Marek Szyprowski <[email protected]>
13818 R:      Sebastian Krzyszkowiak <[email protected]>
13819 R:      Purism Kernel Team <[email protected]>
13820 L:      [email protected]
13821 S:      Maintained
13822 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
13823 F:      drivers/power/supply/max17042_battery.c
13824
13825 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
13826 M:      Laurent Pinchart <[email protected]>
13827 L:      [email protected]
13828 S:      Maintained
13829 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
13830 F:      drivers/regulator/max20086-regulator.c
13831
13832 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
13833 M:      Rajat Khandelwal <[email protected]>
13834 L:      [email protected]
13835 S:      Maintained
13836 F:      drivers/iio/temperature/max30208.c
13837
13838 MAXIM MAX77650 PMIC MFD DRIVER
13839 M:      Bartosz Golaszewski <[email protected]>
13840 L:      [email protected]
13841 S:      Maintained
13842 F:      Documentation/devicetree/bindings/*/*max77650.yaml
13843 F:      Documentation/devicetree/bindings/*/max77650*.yaml
13844 F:      drivers/gpio/gpio-max77650.c
13845 F:      drivers/input/misc/max77650-onkey.c
13846 F:      drivers/leds/leds-max77650.c
13847 F:      drivers/mfd/max77650.c
13848 F:      drivers/power/supply/max77650-charger.c
13849 F:      drivers/regulator/max77650-regulator.c
13850 F:      include/linux/mfd/max77650.h
13851
13852 MAXIM MAX77714 PMIC MFD DRIVER
13853 M:      Luca Ceresoli <[email protected]>
13854 S:      Maintained
13855 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
13856 F:      drivers/mfd/max77714.c
13857 F:      include/linux/mfd/max77714.h
13858
13859 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
13860 M:      Javier Martinez Canillas <[email protected]>
13861 L:      [email protected]
13862 S:      Supported
13863 F:      Documentation/devicetree/bindings/*/*max77802.yaml
13864 F:      drivers/regulator/max77802-regulator.c
13865 F:      include/dt-bindings/*/*max77802.h
13866
13867 MAXIM MAX77976 BATTERY CHARGER
13868 M:      Luca Ceresoli <[email protected]>
13869 S:      Supported
13870 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
13871 F:      drivers/power/supply/max77976_charger.c
13872
13873 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
13874 M:      Krzysztof Kozlowski <[email protected]>
13875 L:      [email protected]
13876 S:      Maintained
13877 B:      mailto:[email protected]
13878 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
13879 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
13880 F:      drivers/power/supply/max14577_charger.c
13881 F:      drivers/power/supply/max77693_charger.c
13882
13883 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
13884 M:      Chanwoo Choi <[email protected]>
13885 M:      Krzysztof Kozlowski <[email protected]>
13886 L:      [email protected]
13887 S:      Maintained
13888 B:      mailto:[email protected]
13889 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
13890 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
13891 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
13892 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
13893 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
13894 F:      drivers/*/*max77843.c
13895 F:      drivers/*/max14577*.c
13896 F:      drivers/*/max77686*.c
13897 F:      drivers/*/max77693*.c
13898 F:      drivers/clk/clk-max77686.c
13899 F:      drivers/extcon/extcon-max14577.c
13900 F:      drivers/extcon/extcon-max77693.c
13901 F:      drivers/rtc/rtc-max77686.c
13902 F:      include/linux/mfd/max14577*.h
13903 F:      include/linux/mfd/max77686*.h
13904 F:      include/linux/mfd/max77693*.h
13905
13906 MAXIRADIO FM RADIO RECEIVER DRIVER
13907 M:      Hans Verkuil <[email protected]>
13908 L:      [email protected]
13909 S:      Maintained
13910 W:      https://linuxtv.org
13911 T:      git git://linuxtv.org/media_tree.git
13912 F:      drivers/media/radio/radio-maxiradio*
13913
13914 MAXLINEAR ETHERNET PHY DRIVER
13915 M:      Xu Liang <[email protected]>
13916 L:      [email protected]
13917 S:      Supported
13918 F:      drivers/net/phy/mxl-gpy.c
13919
13920 MCAN MMIO DEVICE DRIVER
13921 M:      Chandrasekar Ramakrishnan <[email protected]>
13922 L:      [email protected]
13923 S:      Maintained
13924 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
13925 F:      drivers/net/can/m_can/m_can.c
13926 F:      drivers/net/can/m_can/m_can.h
13927 F:      drivers/net/can/m_can/m_can_platform.c
13928
13929 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
13930 R:      Yasushi SHOJI <[email protected]>
13931 L:      [email protected]
13932 S:      Maintained
13933 F:      drivers/net/can/usb/mcba_usb.c
13934
13935 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
13936 M:      Rishi Gupta <[email protected]>
13937 L:      [email protected]
13938 L:      [email protected]
13939 S:      Maintained
13940 F:      drivers/hid/hid-mcp2221.c
13941
13942 MCP251XFD SPI-CAN NETWORK DRIVER
13943 M:      Marc Kleine-Budde <[email protected]>
13944 M:      Manivannan Sadhasivam <[email protected]>
13945 R:      Thomas Kopp <[email protected]>
13946 L:      [email protected]
13947 S:      Maintained
13948 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
13949 F:      drivers/net/can/spi/mcp251xfd/
13950
13951 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
13952 M:      Peter Rosin <[email protected]>
13953 L:      [email protected]
13954 S:      Maintained
13955 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
13956 F:      drivers/iio/potentiometer/mcp4018.c
13957 F:      drivers/iio/potentiometer/mcp4531.c
13958
13959 MCP4821 DAC DRIVER
13960 M:      Anshul Dalal <[email protected]>
13961 L:      [email protected]
13962 S:      Maintained
13963 F:      Documentation/devicetree/bindings/iio/dac/microchip,mcp4821.yaml
13964 F:      drivers/iio/dac/mcp4821.c
13965
13966 MCR20A IEEE-802.15.4 RADIO DRIVER
13967 M:      Stefan Schmidt <[email protected]>
13968 L:      [email protected]
13969 S:      Odd Fixes
13970 W:      https://github.com/xueliu/mcr20a-linux
13971 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
13972 F:      drivers/net/ieee802154/mcr20a.c
13973 F:      drivers/net/ieee802154/mcr20a.h
13974
13975 MDIO REGMAP DRIVER
13976 M:      Maxime Chevallier <[email protected]>
13977 L:      [email protected]
13978 S:      Maintained
13979 F:      drivers/net/mdio/mdio-regmap.c
13980 F:      include/linux/mdio/mdio-regmap.h
13981
13982 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
13983 M:      William Breathitt Gray <[email protected]>
13984 L:      [email protected]
13985 S:      Maintained
13986 F:      drivers/iio/dac/cio-dac.c
13987
13988 MEDIA CONTROLLER FRAMEWORK
13989 M:      Sakari Ailus <[email protected]>
13990 M:      Laurent Pinchart <[email protected]>
13991 L:      [email protected]
13992 S:      Supported
13993 W:      https://www.linuxtv.org
13994 T:      git git://linuxtv.org/media_tree.git
13995 F:      drivers/media/mc/
13996 F:      include/media/media-*.h
13997 F:      include/uapi/linux/media.h
13998
13999 MEDIA DRIVER FOR FREESCALE IMX PXP
14000 M:      Philipp Zabel <[email protected]>
14001 L:      [email protected]
14002 S:      Maintained
14003 T:      git git://linuxtv.org/media_tree.git
14004 F:      drivers/media/platform/nxp/imx-pxp.[ch]
14005
14006 MEDIA DRIVERS FOR ASCOT2E
14007 M:      Sergey Kozlov <[email protected]>
14008 M:      Abylay Ospan <[email protected]>
14009 L:      [email protected]
14010 S:      Supported
14011 W:      https://linuxtv.org
14012 W:      http://netup.tv/
14013 T:      git git://linuxtv.org/media_tree.git
14014 F:      drivers/media/dvb-frontends/ascot2e*
14015
14016 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
14017 M:      Jasmin Jessich <[email protected]>
14018 L:      [email protected]
14019 S:      Maintained
14020 W:      https://linuxtv.org
14021 T:      git git://linuxtv.org/media_tree.git
14022 F:      drivers/media/dvb-frontends/cxd2099*
14023
14024 MEDIA DRIVERS FOR CXD2841ER
14025 M:      Sergey Kozlov <[email protected]>
14026 M:      Abylay Ospan <[email protected]>
14027 L:      [email protected]
14028 S:      Supported
14029 W:      https://linuxtv.org
14030 W:      http://netup.tv/
14031 T:      git git://linuxtv.org/media_tree.git
14032 F:      drivers/media/dvb-frontends/cxd2841er*
14033
14034 MEDIA DRIVERS FOR CXD2880
14035 M:      Yasunari Takiguchi <[email protected]>
14036 L:      [email protected]
14037 S:      Supported
14038 W:      http://linuxtv.org/
14039 T:      git git://linuxtv.org/media_tree.git
14040 F:      drivers/media/dvb-frontends/cxd2880/*
14041 F:      drivers/media/spi/cxd2880*
14042
14043 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
14044 L:      [email protected]
14045 S:      Orphan
14046 W:      https://linuxtv.org
14047 T:      git git://linuxtv.org/media_tree.git
14048 F:      drivers/media/pci/ddbridge/*
14049
14050 MEDIA DRIVERS FOR FREESCALE IMX
14051 M:      Steve Longerbeam <[email protected]>
14052 M:      Philipp Zabel <[email protected]>
14053 L:      [email protected]
14054 S:      Maintained
14055 T:      git git://linuxtv.org/media_tree.git
14056 F:      Documentation/admin-guide/media/imx.rst
14057 F:      Documentation/devicetree/bindings/media/imx.txt
14058 F:      drivers/staging/media/imx/
14059 F:      include/linux/imx-media.h
14060 F:      include/media/imx.h
14061
14062 MEDIA DRIVERS FOR FREESCALE IMX7/8
14063 M:      Rui Miguel Silva <[email protected]>
14064 M:      Laurent Pinchart <[email protected]>
14065 M:      Martin Kepplinger <[email protected]>
14066 R:      Purism Kernel Team <[email protected]>
14067 L:      [email protected]
14068 S:      Maintained
14069 T:      git git://linuxtv.org/media_tree.git
14070 F:      Documentation/admin-guide/media/imx7.rst
14071 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
14072 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
14073 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-mipi-csi2.yaml
14074 F:      drivers/media/platform/nxp/imx-mipi-csis.c
14075 F:      drivers/media/platform/nxp/imx7-media-csi.c
14076 F:      drivers/media/platform/nxp/imx8mq-mipi-csi2.c
14077
14078 MEDIA DRIVERS FOR HELENE
14079 M:      Abylay Ospan <[email protected]>
14080 L:      [email protected]
14081 S:      Supported
14082 W:      https://linuxtv.org
14083 W:      http://netup.tv/
14084 T:      git git://linuxtv.org/media_tree.git
14085 F:      drivers/media/dvb-frontends/helene*
14086
14087 MEDIA DRIVERS FOR HORUS3A
14088 M:      Sergey Kozlov <[email protected]>
14089 M:      Abylay Ospan <[email protected]>
14090 L:      [email protected]
14091 S:      Supported
14092 W:      https://linuxtv.org
14093 W:      http://netup.tv/
14094 T:      git git://linuxtv.org/media_tree.git
14095 F:      drivers/media/dvb-frontends/horus3a*
14096
14097 MEDIA DRIVERS FOR LNBH25
14098 M:      Sergey Kozlov <[email protected]>
14099 M:      Abylay Ospan <[email protected]>
14100 L:      [email protected]
14101 S:      Supported
14102 W:      https://linuxtv.org
14103 W:      http://netup.tv/
14104 T:      git git://linuxtv.org/media_tree.git
14105 F:      drivers/media/dvb-frontends/lnbh25*
14106
14107 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
14108 L:      [email protected]
14109 S:      Orphan
14110 W:      https://linuxtv.org
14111 T:      git git://linuxtv.org/media_tree.git
14112 F:      drivers/media/dvb-frontends/mxl5xx*
14113
14114 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
14115 M:      Sergey Kozlov <[email protected]>
14116 M:      Abylay Ospan <[email protected]>
14117 L:      [email protected]
14118 S:      Supported
14119 W:      https://linuxtv.org
14120 W:      http://netup.tv/
14121 T:      git git://linuxtv.org/media_tree.git
14122 F:      drivers/media/pci/netup_unidvb/*
14123
14124 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
14125 M:      Dmitry Osipenko <[email protected]>
14126 L:      [email protected]
14127 L:      [email protected]
14128 S:      Maintained
14129 T:      git git://linuxtv.org/media_tree.git
14130 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
14131 F:      drivers/media/platform/nvidia/tegra-vde/
14132
14133 MEDIA DRIVERS FOR RENESAS - CEU
14134 M:      Jacopo Mondi <[email protected]>
14135 L:      [email protected]
14136 L:      [email protected]
14137 S:      Supported
14138 T:      git git://linuxtv.org/media_tree.git
14139 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
14140 F:      drivers/media/platform/renesas/renesas-ceu.c
14141 F:      include/media/drv-intf/renesas-ceu.h
14142
14143 MEDIA DRIVERS FOR RENESAS - DRIF
14144 M:      Fabrizio Castro <[email protected]>
14145 L:      [email protected]
14146 L:      [email protected]
14147 S:      Supported
14148 T:      git git://linuxtv.org/media_tree.git
14149 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
14150 F:      drivers/media/platform/renesas/rcar_drif.c
14151
14152 MEDIA DRIVERS FOR RENESAS - FCP
14153 M:      Laurent Pinchart <[email protected]>
14154 L:      [email protected]
14155 L:      [email protected]
14156 S:      Supported
14157 T:      git git://linuxtv.org/media_tree.git
14158 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
14159 F:      drivers/media/platform/renesas/rcar-fcp.c
14160 F:      include/media/rcar-fcp.h
14161
14162 MEDIA DRIVERS FOR RENESAS - FDP1
14163 M:      Kieran Bingham <[email protected]>
14164 L:      [email protected]
14165 L:      [email protected]
14166 S:      Supported
14167 T:      git git://linuxtv.org/media_tree.git
14168 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
14169 F:      drivers/media/platform/renesas/rcar_fdp1.c
14170
14171 MEDIA DRIVERS FOR RENESAS - VIN
14172 M:      Niklas Söderlund <[email protected]>
14173 L:      [email protected]
14174 L:      [email protected]
14175 S:      Supported
14176 T:      git git://linuxtv.org/media_tree.git
14177 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
14178 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
14179 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
14180 F:      drivers/media/platform/renesas/rcar-csi2.c
14181 F:      drivers/media/platform/renesas/rcar-isp.c
14182 F:      drivers/media/platform/renesas/rcar-vin/
14183
14184 MEDIA DRIVERS FOR RENESAS - VSP1
14185 M:      Laurent Pinchart <[email protected]>
14186 M:      Kieran Bingham <[email protected]>
14187 L:      [email protected]
14188 L:      [email protected]
14189 S:      Supported
14190 T:      git git://linuxtv.org/media_tree.git
14191 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
14192 F:      drivers/media/platform/renesas/vsp1/
14193
14194 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
14195 L:      [email protected]
14196 S:      Orphan
14197 W:      https://linuxtv.org
14198 T:      git git://linuxtv.org/media_tree.git
14199 F:      drivers/media/dvb-frontends/stv0910*
14200
14201 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
14202 L:      [email protected]
14203 S:      Orphan
14204 W:      https://linuxtv.org
14205 T:      git git://linuxtv.org/media_tree.git
14206 F:      drivers/media/dvb-frontends/stv6111*
14207
14208 MEDIA DRIVERS FOR STM32 - DCMI / DCMIPP
14209 M:      Hugues Fruchet <[email protected]>
14210 M:      Alain Volmat <[email protected]>
14211 L:      [email protected]
14212 S:      Supported
14213 T:      git git://linuxtv.org/media_tree.git
14214 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
14215 F:      Documentation/devicetree/bindings/media/st,stm32-dcmipp.yaml
14216 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
14217 F:      drivers/media/platform/st/stm32/stm32-dcmipp/*
14218
14219 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
14220 M:      Mauro Carvalho Chehab <[email protected]>
14221 L:      [email protected]
14222 S:      Maintained
14223 W:      https://linuxtv.org
14224 Q:      http://patchwork.kernel.org/project/linux-media/list/
14225 T:      git git://linuxtv.org/media_tree.git
14226 F:      Documentation/admin-guide/media/
14227 F:      Documentation/devicetree/bindings/media/
14228 F:      Documentation/driver-api/media/
14229 F:      Documentation/userspace-api/media/
14230 F:      drivers/media/
14231 F:      drivers/staging/media/
14232 F:      include/dt-bindings/media/
14233 F:      include/linux/platform_data/media/
14234 F:      include/media/
14235 F:      include/uapi/linux/dvb/
14236 F:      include/uapi/linux/ivtv*
14237 F:      include/uapi/linux/media.h
14238 F:      include/uapi/linux/uvcvideo.h
14239 F:      include/uapi/linux/v4l2-*
14240 F:      include/uapi/linux/videodev2.h
14241
14242 MEDIATEK BLUETOOTH DRIVER
14243 M:      Sean Wang <[email protected]>
14244 L:      [email protected]
14245 L:      [email protected] (moderated for non-subscribers)
14246 S:      Maintained
14247 F:      Documentation/devicetree/bindings/net/bluetooth/mediatek,mt7921s-bluetooth.yaml
14248 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
14249 F:      drivers/bluetooth/btmtkuart.c
14250
14251 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
14252 M:      Sean Wang <[email protected]>
14253 L:      [email protected]
14254 S:      Maintained
14255 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
14256 F:      drivers/power/reset/mt6323-poweroff.c
14257
14258 MEDIATEK CIR DRIVER
14259 M:      Sean Wang <[email protected]>
14260 S:      Maintained
14261 F:      drivers/media/rc/mtk-cir.c
14262
14263 MEDIATEK DMA DRIVER
14264 M:      Sean Wang <[email protected]>
14265 L:      [email protected]
14266 L:      [email protected] (moderated for non-subscribers)
14267 L:      [email protected] (moderated for non-subscribers)
14268 S:      Maintained
14269 F:      Documentation/devicetree/bindings/dma/mediatek,*
14270 F:      drivers/dma/mediatek/
14271
14272 MEDIATEK ETHERNET DRIVER
14273 M:      Felix Fietkau <[email protected]>
14274 M:      Sean Wang <[email protected]>
14275 M:      Mark Lee <[email protected]>
14276 M:      Lorenzo Bianconi <[email protected]>
14277 L:      [email protected]
14278 S:      Maintained
14279 F:      drivers/net/ethernet/mediatek/
14280
14281 MEDIATEK ETHERNET PCS DRIVER
14282 M:      Alexander Couzens <[email protected]>
14283 M:      Daniel Golle <[email protected]>
14284 L:      [email protected]
14285 S:      Maintained
14286 F:      drivers/net/pcs/pcs-mtk-lynxi.c
14287 F:      include/linux/pcs/pcs-mtk-lynxi.h
14288
14289 MEDIATEK ETHERNET PHY DRIVERS
14290 M:      Daniel Golle <[email protected]>
14291 M:      Qingfang Deng <[email protected]>
14292 M:      SkyLake Huang <[email protected]>
14293 L:      [email protected]
14294 S:      Maintained
14295 F:      drivers/net/phy/mediatek-ge-soc.c
14296 F:      drivers/net/phy/mediatek-ge.c
14297 F:      drivers/phy/mediatek/phy-mtk-xfi-tphy.c
14298
14299 MEDIATEK I2C CONTROLLER DRIVER
14300 M:      Qii Wang <[email protected]>
14301 L:      [email protected]
14302 S:      Maintained
14303 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
14304 F:      drivers/i2c/busses/i2c-mt65xx.c
14305
14306 MEDIATEK IOMMU DRIVER
14307 M:      Yong Wu <[email protected]>
14308 L:      [email protected]
14309 L:      [email protected] (moderated for non-subscribers)
14310 S:      Supported
14311 F:      Documentation/devicetree/bindings/iommu/mediatek*
14312 F:      drivers/iommu/mtk_iommu*
14313 F:      include/dt-bindings/memory/mediatek,mt*-port.h
14314 F:      include/dt-bindings/memory/mt*-port.h
14315
14316 MEDIATEK JPEG DRIVER
14317 M:      Bin Liu <[email protected]>
14318 S:      Supported
14319 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
14320 F:      drivers/media/platform/mediatek/jpeg/
14321
14322 MEDIATEK KEYPAD DRIVER
14323 M:      Mattijs Korpershoek <[email protected]>
14324 S:      Supported
14325 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
14326 F:      drivers/input/keyboard/mt6779-keypad.c
14327
14328 MEDIATEK MDP DRIVER
14329 M:      Minghsiu Tsai <[email protected]>
14330 M:      Houlong Wei <[email protected]>
14331 M:      Andrew-CT Chen <[email protected]>
14332 S:      Supported
14333 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
14334 F:      drivers/media/platform/mediatek/mdp/
14335 F:      drivers/media/platform/mediatek/vpu/
14336
14337 MEDIATEK MEDIA DRIVER
14338 M:      Tiffany Lin <[email protected]>
14339 M:      Andrew-CT Chen <[email protected]>
14340 M:      Yunfei Dong <[email protected]>
14341 S:      Supported
14342 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
14343 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
14344 F:      drivers/media/platform/mediatek/vcodec/
14345 F:      drivers/media/platform/mediatek/vpu/
14346
14347 MEDIATEK MIPI-CSI CDPHY DRIVER
14348 M:      Julien Stephan <[email protected]>
14349 M:      Andy Hsieh <[email protected]>
14350 S:      Supported
14351 F:      Documentation/devicetree/bindings/phy/mediatek,mt8365-csi-rx.yaml
14352 F:      drivers/phy/mediatek/phy-mtk-mipi-csi-0-5*
14353
14354 MEDIATEK MMC/SD/SDIO DRIVER
14355 M:      Chaotian Jing <[email protected]>
14356 S:      Maintained
14357 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
14358 F:      drivers/mmc/host/mtk-sd.c
14359
14360 MEDIATEK MT76 WIRELESS LAN DRIVER
14361 M:      Felix Fietkau <[email protected]>
14362 M:      Lorenzo Bianconi <[email protected]>
14363 M:      Ryder Lee <[email protected]>
14364 R:      Shayne Chen <[email protected]>
14365 R:      Sean Wang <[email protected]>
14366 L:      [email protected]
14367 S:      Maintained
14368 T:      git https://github.com/nbd168/wireless
14369 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
14370 F:      drivers/net/wireless/mediatek/mt76/
14371
14372 MEDIATEK MT7601U WIRELESS LAN DRIVER
14373 M:      Jakub Kicinski <[email protected]>
14374 L:      [email protected]
14375 S:      Maintained
14376 F:      drivers/net/wireless/mediatek/mt7601u/
14377
14378 MEDIATEK MT7621 CLOCK DRIVER
14379 M:      Sergio Paracuellos <[email protected]>
14380 S:      Maintained
14381 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
14382 F:      drivers/clk/ralink/clk-mt7621.c
14383
14384 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
14385 M:      Sergio Paracuellos <[email protected]>
14386 S:      Maintained
14387 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
14388 F:      drivers/pci/controller/pcie-mt7621.c
14389
14390 MEDIATEK MT7621 PHY PCI DRIVER
14391 M:      Sergio Paracuellos <[email protected]>
14392 S:      Maintained
14393 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
14394 F:      drivers/phy/ralink/phy-mt7621-pci.c
14395
14396 MEDIATEK MT7621/28/88 I2C DRIVER
14397 M:      Stefan Roese <[email protected]>
14398 L:      [email protected]
14399 S:      Maintained
14400 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
14401 F:      drivers/i2c/busses/i2c-mt7621.c
14402
14403 MEDIATEK MTMIPS CLOCK DRIVER
14404 M:      Sergio Paracuellos <[email protected]>
14405 S:      Maintained
14406 F:      Documentation/devicetree/bindings/clock/mediatek,mtmips-sysc.yaml
14407 F:      drivers/clk/ralink/clk-mtmips.c
14408
14409 MEDIATEK NAND CONTROLLER DRIVER
14410 L:      [email protected]
14411 S:      Orphan
14412 F:      Documentation/devicetree/bindings/mtd/mediatek,mtk-nfc.yaml
14413 F:      drivers/mtd/nand/raw/mtk_*
14414
14415 MEDIATEK PMIC LED DRIVER
14416 M:      Sean Wang <[email protected]>
14417 S:      Maintained
14418 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
14419 F:      drivers/leds/leds-mt6323.c
14420
14421 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
14422 M:      Sean Wang <[email protected]>
14423 S:      Maintained
14424 F:      drivers/char/hw_random/mtk-rng.c
14425
14426 MEDIATEK SMI DRIVER
14427 M:      Yong Wu <[email protected]>
14428 L:      [email protected] (moderated for non-subscribers)
14429 S:      Supported
14430 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
14431 F:      drivers/memory/mtk-smi.c
14432 F:      include/soc/mediatek/smi.h
14433
14434 MEDIATEK SWITCH DRIVER
14435 M:      Arınç ÜNAL <[email protected]>
14436 M:      Daniel Golle <[email protected]>
14437 M:      DENG Qingfang <[email protected]>
14438 M:      Sean Wang <[email protected]>
14439 L:      [email protected]
14440 S:      Maintained
14441 F:      drivers/net/dsa/mt7530-mdio.c
14442 F:      drivers/net/dsa/mt7530-mmio.c
14443 F:      drivers/net/dsa/mt7530.*
14444 F:      net/dsa/tag_mtk.c
14445
14446 MEDIATEK T7XX 5G WWAN MODEM DRIVER
14447 M:      Chandrashekar Devegowda <[email protected]>
14448 R:      Chiranjeevi Rapolu <[email protected]>
14449 R:      Liu Haijun <[email protected]>
14450 R:      M Chetan Kumar <[email protected]>
14451 R:      Ricardo Martinez <[email protected]>
14452 L:      [email protected]
14453 S:      Supported
14454 F:      drivers/net/wwan/t7xx/
14455
14456 MEDIATEK USB3 DRD IP DRIVER
14457 M:      Chunfeng Yun <[email protected]>
14458 L:      [email protected]
14459 L:      [email protected] (moderated for non-subscribers)
14460 L:      [email protected] (moderated for non-subscribers)
14461 S:      Maintained
14462 F:      Documentation/devicetree/bindings/usb/mediatek,*
14463 F:      drivers/usb/host/xhci-mtk*
14464 F:      drivers/usb/mtu3/
14465
14466 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
14467 M:      Peter Senna Tschudin <[email protected]>
14468 M:      Ian Ray <[email protected]>
14469 M:      Martyn Welch <[email protected]>
14470 S:      Maintained
14471 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
14472 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
14473
14474 MEGARAID SCSI/SAS DRIVERS
14475 M:      Kashyap Desai <[email protected]>
14476 M:      Sumit Saxena <[email protected]>
14477 M:      Shivasharan S <[email protected]>
14478 M:      Chandrakanth patil <[email protected]>
14479 L:      [email protected]
14480 L:      [email protected]
14481 S:      Maintained
14482 W:      http://www.avagotech.com/support/
14483 F:      Documentation/scsi/megaraid.rst
14484 F:      drivers/scsi/megaraid.*
14485 F:      drivers/scsi/megaraid/
14486
14487 MELEXIS MLX90614 DRIVER
14488 M:      Crt Mori <[email protected]>
14489 L:      [email protected]
14490 S:      Supported
14491 W:      http://www.melexis.com
14492 F:      drivers/iio/temperature/mlx90614.c
14493
14494 MELEXIS MLX90632 DRIVER
14495 M:      Crt Mori <[email protected]>
14496 L:      [email protected]
14497 S:      Supported
14498 W:      http://www.melexis.com
14499 F:      drivers/iio/temperature/mlx90632.c
14500
14501 MELEXIS MLX90635 DRIVER
14502 M:      Crt Mori <[email protected]>
14503 L:      [email protected]
14504 S:      Supported
14505 W:      http://www.melexis.com
14506 F:      drivers/iio/temperature/mlx90635.c
14507
14508 MELFAS MIP4 TOUCHSCREEN DRIVER
14509 M:      Sangwon Jee <[email protected]>
14510 S:      Supported
14511 W:      http://www.melfas.com
14512 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
14513 F:      drivers/input/touchscreen/melfas_mip4.c
14514
14515 MELLANOX BLUEFIELD I2C DRIVER
14516 M:      Khalil Blaiech <[email protected]>
14517 M:      Asmaa Mnebhi <[email protected]>
14518 L:      [email protected]
14519 S:      Supported
14520 F:      drivers/i2c/busses/i2c-mlxbf.c
14521
14522 MELLANOX ETHERNET DRIVER (mlx4_en)
14523 M:      Tariq Toukan <[email protected]>
14524 L:      [email protected]
14525 S:      Supported
14526 W:      https://www.nvidia.com/networking/
14527 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14528 F:      drivers/net/ethernet/mellanox/mlx4/en_*
14529
14530 MELLANOX ETHERNET DRIVER (mlx5e)
14531 M:      Saeed Mahameed <[email protected]>
14532 M:      Tariq Toukan <[email protected]>
14533 L:      [email protected]
14534 S:      Supported
14535 W:      https://www.nvidia.com/networking/
14536 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14537 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
14538
14539 MELLANOX ETHERNET INNOVA DRIVERS
14540 R:      Boris Pismenny <[email protected]>
14541 L:      [email protected]
14542 S:      Supported
14543 W:      https://www.nvidia.com/networking/
14544 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14545 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
14546 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
14547 F:      include/linux/mlx5/mlx5_ifc_fpga.h
14548
14549 MELLANOX ETHERNET SWITCH DRIVERS
14550 M:      Ido Schimmel <[email protected]>
14551 M:      Petr Machata <[email protected]>
14552 L:      [email protected]
14553 S:      Supported
14554 W:      https://www.nvidia.com/networking/
14555 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14556 F:      drivers/net/ethernet/mellanox/mlxsw/
14557 F:      tools/testing/selftests/drivers/net/mlxsw/
14558
14559 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
14560 M:      [email protected]
14561 L:      [email protected]
14562 S:      Supported
14563 W:      https://www.nvidia.com/networking/
14564 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14565 F:      drivers/net/ethernet/mellanox/mlxfw/
14566
14567 MELLANOX HARDWARE PLATFORM SUPPORT
14568 M:      Hans de Goede <[email protected]>
14569 M:      Ilpo Järvinen <[email protected]>
14570 M:      Vadim Pasternak <[email protected]>
14571 L:      [email protected]
14572 S:      Supported
14573 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
14574 F:      drivers/platform/mellanox/
14575 F:      include/linux/platform_data/mlxreg.h
14576
14577 MELLANOX MLX4 core VPI driver
14578 M:      Tariq Toukan <[email protected]>
14579 L:      [email protected]
14580 L:      [email protected]
14581 S:      Supported
14582 W:      https://www.nvidia.com/networking/
14583 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14584 F:      drivers/net/ethernet/mellanox/mlx4/
14585 F:      include/linux/mlx4/
14586
14587 MELLANOX MLX4 IB driver
14588 M:      Yishai Hadas <[email protected]>
14589 L:      [email protected]
14590 S:      Supported
14591 W:      https://www.nvidia.com/networking/
14592 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14593 F:      drivers/infiniband/hw/mlx4/
14594 F:      include/linux/mlx4/
14595 F:      include/uapi/rdma/mlx4-abi.h
14596
14597 MELLANOX MLX5 core VPI driver
14598 M:      Saeed Mahameed <[email protected]>
14599 M:      Leon Romanovsky <[email protected]>
14600 M:      Tariq Toukan <[email protected]>
14601 L:      [email protected]
14602 L:      [email protected]
14603 S:      Supported
14604 W:      https://www.nvidia.com/networking/
14605 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14606 F:      Documentation/networking/device_drivers/ethernet/mellanox/
14607 F:      drivers/net/ethernet/mellanox/mlx5/core/
14608 F:      include/linux/mlx5/
14609
14610 MELLANOX MLX5 IB driver
14611 M:      Leon Romanovsky <[email protected]>
14612 L:      [email protected]
14613 S:      Supported
14614 W:      https://www.nvidia.com/networking/
14615 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14616 F:      drivers/infiniband/hw/mlx5/
14617 F:      include/linux/mlx5/
14618 F:      include/uapi/rdma/mlx5-abi.h
14619
14620 MELLANOX MLX5 VDPA DRIVER
14621 M:      Dragos Tatulea <[email protected]>
14622 L:      [email protected]
14623 S:      Supported
14624 F:      drivers/vdpa/mlx5/
14625
14626 MELLANOX MLXCPLD I2C AND MUX DRIVER
14627 M:      Vadim Pasternak <[email protected]>
14628 M:      Michael Shych <[email protected]>
14629 L:      [email protected]
14630 S:      Supported
14631 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
14632 F:      drivers/i2c/busses/i2c-mlxcpld.c
14633 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
14634
14635 MELLANOX MLXCPLD LED DRIVER
14636 M:      Vadim Pasternak <[email protected]>
14637 L:      [email protected]
14638 S:      Supported
14639 F:      Documentation/leds/leds-mlxcpld.rst
14640 F:      drivers/leds/leds-mlxcpld.c
14641 F:      drivers/leds/leds-mlxreg.c
14642
14643 MELLANOX PLATFORM DRIVER
14644 M:      Vadim Pasternak <[email protected]>
14645 L:      [email protected]
14646 S:      Supported
14647 F:      drivers/platform/x86/mlx-platform.c
14648
14649 MEMBARRIER SUPPORT
14650 M:      Mathieu Desnoyers <[email protected]>
14651 M:      "Paul E. McKenney" <[email protected]>
14652 L:      [email protected]
14653 S:      Supported
14654 F:      Documentation/scheduler/membarrier.rst
14655 F:      arch/*/include/asm/membarrier.h
14656 F:      arch/*/include/asm/sync_core.h
14657 F:      include/uapi/linux/membarrier.h
14658 F:      kernel/sched/membarrier.c
14659
14660 MEMBLOCK AND MEMORY MANAGEMENT INITIALIZATION
14661 M:      Mike Rapoport <[email protected]>
14662 L:      [email protected]
14663 S:      Maintained
14664 F:      Documentation/core-api/boot-time-mm.rst
14665 F:      include/linux/memblock.h
14666 F:      mm/memblock.c
14667 F:      mm/mm_init.c
14668 F:      tools/testing/memblock/
14669
14670 MEMORY ALLOCATION PROFILING
14671 M:      Suren Baghdasaryan <[email protected]>
14672 M:      Kent Overstreet <[email protected]>
14673 L:      [email protected]
14674 S:      Maintained
14675 F:      Documentation/mm/allocation-profiling.rst
14676 F:      include/linux/alloc_tag.h
14677 F:      include/linux/pgalloc_tag.h
14678 F:      lib/alloc_tag.c
14679
14680 MEMORY CONTROLLER DRIVERS
14681 M:      Krzysztof Kozlowski <[email protected]>
14682 L:      [email protected]
14683 S:      Maintained
14684 B:      mailto:[email protected]
14685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
14686 F:      Documentation/devicetree/bindings/memory-controllers/
14687 F:      drivers/memory/
14688 F:      include/dt-bindings/memory/
14689 F:      include/memory/
14690
14691 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
14692 M:      Dmitry Osipenko <[email protected]>
14693 L:      [email protected]
14694 L:      [email protected]
14695 S:      Maintained
14696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
14697 F:      drivers/devfreq/tegra30-devfreq.c
14698
14699 MEMORY HOT(UN)PLUG
14700 M:      David Hildenbrand <[email protected]>
14701 M:      Oscar Salvador <[email protected]>
14702 L:      [email protected]
14703 S:      Maintained
14704 F:      Documentation/admin-guide/mm/memory-hotplug.rst
14705 F:      Documentation/core-api/memory-hotplug.rst
14706 F:      drivers/base/memory.c
14707 F:      include/linux/memory_hotplug.h
14708 F:      mm/memory_hotplug.c
14709 F:      tools/testing/selftests/memory-hotplug/
14710
14711 MEMORY MANAGEMENT
14712 M:      Andrew Morton <[email protected]>
14713 L:      [email protected]
14714 S:      Maintained
14715 W:      http://www.linux-mm.org
14716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
14717 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
14718 F:      include/linux/gfp.h
14719 F:      include/linux/gfp_types.h
14720 F:      include/linux/memfd.h
14721 F:      include/linux/memory.h
14722 F:      include/linux/memory_hotplug.h
14723 F:      include/linux/memory-tiers.h
14724 F:      include/linux/mempolicy.h
14725 F:      include/linux/mempool.h
14726 F:      include/linux/memremap.h
14727 F:      include/linux/mm.h
14728 F:      include/linux/mm_*.h
14729 F:      include/linux/mmzone.h
14730 F:      include/linux/mmu_notifier.h
14731 F:      include/linux/pagewalk.h
14732 F:      include/linux/rmap.h
14733 F:      include/trace/events/ksm.h
14734 F:      mm/
14735 F:      tools/mm/
14736 F:      tools/testing/selftests/mm/
14737 N:      include/linux/page[-_]*
14738
14739 MEMORY MAPPING
14740 M:      Andrew Morton <[email protected]>
14741 R:      Liam R. Howlett <[email protected]>
14742 R:      Vlastimil Babka <[email protected]>
14743 R:      Lorenzo Stoakes <[email protected]>
14744 L:      [email protected]
14745 S:      Maintained
14746 W:      http://www.linux-mm.org
14747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
14748 F:      mm/mmap.c
14749
14750 MEMORY TECHNOLOGY DEVICES (MTD)
14751 M:      Miquel Raynal <[email protected]>
14752 M:      Richard Weinberger <[email protected]>
14753 M:      Vignesh Raghavendra <[email protected]>
14754 L:      [email protected]
14755 S:      Maintained
14756 W:      http://www.linux-mtd.infradead.org/
14757 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14758 C:      irc://irc.oftc.net/mtd
14759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
14760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
14761 F:      Documentation/devicetree/bindings/mtd/
14762 F:      drivers/mtd/
14763 F:      include/linux/mtd/
14764 F:      include/uapi/mtd/
14765
14766 MEMSENSING MICROSYSTEMS MSA311 DRIVER
14767 M:      Dmitry Rokosov <[email protected]>
14768 L:      [email protected]
14769 S:      Maintained
14770 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
14771 F:      drivers/iio/accel/msa311.c
14772
14773 MEN A21 WATCHDOG DRIVER
14774 M:      Johannes Thumshirn <[email protected]>
14775 L:      [email protected]
14776 S:      Maintained
14777 F:      drivers/watchdog/mena21_wdt.c
14778
14779 MEN CHAMELEON BUS (mcb)
14780 M:      Johannes Thumshirn <[email protected]>
14781 S:      Maintained
14782 F:      Documentation/driver-api/men-chameleon-bus.rst
14783 F:      drivers/mcb/
14784 F:      include/linux/mcb.h
14785
14786 MEN F21BMC (Board Management Controller)
14787 M:      Andreas Werner <[email protected]>
14788 S:      Supported
14789 F:      Documentation/hwmon/menf21bmc.rst
14790 F:      drivers/hwmon/menf21bmc_hwmon.c
14791 F:      drivers/leds/leds-menf21bmc.c
14792 F:      drivers/mfd/menf21bmc.c
14793 F:      drivers/watchdog/menf21bmc_wdt.c
14794
14795 MEN Z069 WATCHDOG DRIVER
14796 M:      Johannes Thumshirn <[email protected]>
14797 L:      [email protected]
14798 S:      Maintained
14799 F:      drivers/watchdog/menz69_wdt.c
14800
14801 MESON AO CEC DRIVER FOR AMLOGIC SOCS
14802 M:      Neil Armstrong <[email protected]>
14803 L:      [email protected]
14804 L:      [email protected]
14805 S:      Supported
14806 W:      http://linux-meson.com/
14807 T:      git git://linuxtv.org/media_tree.git
14808 F:      Documentation/devicetree/bindings/media/cec/amlogic,meson-gx-ao-cec.yaml
14809 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
14810 F:      drivers/media/cec/platform/meson/ao-cec.c
14811
14812 MESON GE2D DRIVER FOR AMLOGIC SOCS
14813 M:      Neil Armstrong <[email protected]>
14814 L:      [email protected]
14815 L:      [email protected]
14816 S:      Supported
14817 T:      git git://linuxtv.org/media_tree.git
14818 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
14819 F:      drivers/media/platform/amlogic/meson-ge2d/
14820
14821 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
14822 M:      Liang Yang <[email protected]>
14823 L:      [email protected]
14824 S:      Maintained
14825 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
14826 F:      drivers/mtd/nand/raw/meson_*
14827
14828 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
14829 M:      Neil Armstrong <[email protected]>
14830 L:      [email protected]
14831 L:      [email protected]
14832 S:      Supported
14833 T:      git git://linuxtv.org/media_tree.git
14834 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
14835 F:      drivers/staging/media/meson/vdec/
14836
14837 META ETHERNET DRIVERS
14838 M:      Alexander Duyck <[email protected]>
14839 M:      Jakub Kicinski <[email protected]>
14840 R:      [email protected]
14841 S:      Supported
14842 F:      Documentation/networking/device_drivers/ethernet/meta/
14843 F:      drivers/net/ethernet/meta/
14844
14845 METHODE UDPU SUPPORT
14846 M:      Robert Marko <[email protected]>
14847 S:      Maintained
14848 F:      arch/arm64/boot/dts/marvell/armada-3720-eDPU.dts
14849 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.*
14850
14851 MHI BUS
14852 M:      Manivannan Sadhasivam <[email protected]>
14853 L:      [email protected]
14854 L:      [email protected]
14855 S:      Maintained
14856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
14857 F:      Documentation/ABI/stable/sysfs-bus-mhi
14858 F:      Documentation/mhi/
14859 F:      drivers/bus/mhi/
14860 F:      drivers/pci/endpoint/functions/pci-epf-mhi.c
14861 F:      include/linux/mhi.h
14862
14863 MICROBLAZE ARCHITECTURE
14864 M:      Michal Simek <[email protected]>
14865 S:      Supported
14866 W:      http://www.monstr.eu/fdt/
14867 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
14868 F:      arch/microblaze/
14869
14870 MICROBLAZE TMR INJECT
14871 M:      Appana Durga Kedareswara rao <[email protected]>
14872 S:      Supported
14873 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-inject.yaml
14874 F:      drivers/misc/xilinx_tmr_inject.c
14875
14876 MICROBLAZE TMR MANAGER
14877 M:      Appana Durga Kedareswara rao <[email protected]>
14878 S:      Supported
14879 F:      Documentation/ABI/testing/sysfs-driver-xilinx-tmr-manager
14880 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-manager.yaml
14881 F:      drivers/misc/xilinx_tmr_manager.c
14882
14883 MICROCHIP AT91 DMA DRIVERS
14884 M:      Ludovic Desroches <[email protected]>
14885 L:      [email protected] (moderated for non-subscribers)
14886 L:      [email protected]
14887 S:      Supported
14888 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
14889 F:      drivers/dma/at_hdmac.c
14890 F:      drivers/dma/at_xdmac.c
14891 F:      include/dt-bindings/dma/at91.h
14892
14893 MICROCHIP AT91 SERIAL DRIVER
14894 M:      Richard Genoud <[email protected]>
14895 S:      Maintained
14896 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
14897 F:      drivers/tty/serial/atmel_serial.c
14898 F:      drivers/tty/serial/atmel_serial.h
14899
14900 MICROCHIP AT91 USART MFD DRIVER
14901 M:      Radu Pirea <[email protected]>
14902 L:      [email protected]
14903 S:      Supported
14904 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
14905 F:      drivers/mfd/at91-usart.c
14906 F:      include/dt-bindings/mfd/at91-usart.h
14907
14908 MICROCHIP AT91 USART SPI DRIVER
14909 M:      Radu Pirea <[email protected]>
14910 L:      [email protected]
14911 S:      Supported
14912 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
14913 F:      drivers/spi/spi-at91-usart.c
14914
14915 MICROCHIP AUDIO ASOC DRIVERS
14916 M:      Claudiu Beznea <[email protected]>
14917 L:      [email protected] (moderated for non-subscribers)
14918 S:      Supported
14919 F:      Documentation/devicetree/bindings/sound/atmel*
14920 F:      Documentation/devicetree/bindings/sound/axentia,tse850-pcm5142.txt
14921 F:      Documentation/devicetree/bindings/sound/microchip,sama7g5-*
14922 F:      Documentation/devicetree/bindings/sound/mikroe,mikroe-proto.txt
14923 F:      sound/soc/atmel
14924
14925 MICROCHIP CSI2DC DRIVER
14926 M:      Eugen Hristev <[email protected]>
14927 L:      [email protected]
14928 S:      Supported
14929 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
14930 F:      drivers/media/platform/microchip/microchip-csi2dc.c
14931
14932 MICROCHIP ECC DRIVER
14933 L:      [email protected]
14934 S:      Orphan
14935 F:      drivers/crypto/atmel-ecc.*
14936
14937 MICROCHIP EIC DRIVER
14938 M:      Claudiu Beznea <[email protected]>
14939 L:      [email protected] (moderated for non-subscribers)
14940 S:      Supported
14941 F:      Documentation/devicetree/bindings/interrupt-controller/microchip,sama7g5-eic.yaml
14942 F:      drivers/irqchip/irq-mchp-eic.c
14943
14944 MICROCHIP I2C DRIVER
14945 M:      Codrin Ciubotariu <[email protected]>
14946 L:      [email protected]
14947 S:      Supported
14948 F:      drivers/i2c/busses/i2c-at91-*.c
14949 F:      drivers/i2c/busses/i2c-at91.h
14950
14951 MICROCHIP ISC DRIVER
14952 M:      Eugen Hristev <[email protected]>
14953 L:      [email protected]
14954 S:      Supported
14955 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
14956 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
14957 F:      drivers/media/platform/microchip/microchip-isc*
14958 F:      drivers/media/platform/microchip/microchip-sama*-isc*
14959 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
14960 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
14961 F:      include/linux/atmel-isc-media.h
14962
14963 MICROCHIP ISI DRIVER
14964 M:      Eugen Hristev <[email protected]>
14965 L:      [email protected]
14966 S:      Supported
14967 F:      drivers/media/platform/atmel/atmel-isi.c
14968 F:      drivers/media/platform/atmel/atmel-isi.h
14969
14970 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
14971 M:      Woojung Huh <[email protected]>
14972 M:      [email protected]
14973 L:      [email protected]
14974 S:      Maintained
14975 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
14976 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
14977 F:      drivers/net/dsa/microchip/*
14978 F:      include/linux/dsa/ksz_common.h
14979 F:      include/linux/platform_data/microchip-ksz.h
14980 F:      net/dsa/tag_ksz.c
14981
14982 MICROCHIP LAN743X ETHERNET DRIVER
14983 M:      Bryan Whitehead <[email protected]>
14984 M:      [email protected]
14985 L:      [email protected]
14986 S:      Maintained
14987 F:      drivers/net/ethernet/microchip/lan743x_*
14988
14989 MICROCHIP LAN8650/1 10BASE-T1S MACPHY ETHERNET DRIVER
14990 M:      Parthiban Veerasooran <[email protected]>
14991 L:      [email protected]
14992 S:      Maintained
14993 F:      Documentation/devicetree/bindings/net/microchip,lan8650.yaml
14994 F:      drivers/net/ethernet/microchip/lan865x/lan865x.c
14995
14996 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
14997 M:      Arun Ramadoss <[email protected]>
14998 R:      [email protected]
14999 L:      [email protected]
15000 S:      Maintained
15001 F:      drivers/net/phy/microchip_t1.c
15002
15003 MICROCHIP LAN966X ETHERNET DRIVER
15004 M:      Horatiu Vultur <[email protected]>
15005 M:      [email protected]
15006 L:      [email protected]
15007 S:      Maintained
15008 F:      drivers/net/ethernet/microchip/lan966x/*
15009
15010 MICROCHIP LAN966X OIC DRIVER
15011 M:      Herve Codina <[email protected]>
15012 S:      Maintained
15013 F:      Documentation/devicetree/bindings/interrupt-controller/microchip,lan966x-oic.yaml
15014 F:      drivers/irqchip/irq-lan966x-oic.c
15015
15016 MICROCHIP LCDFB DRIVER
15017 M:      Nicolas Ferre <[email protected]>
15018 L:      [email protected]
15019 S:      Maintained
15020 F:      drivers/video/fbdev/atmel_lcdfb.c
15021 F:      include/video/atmel_lcdc.h
15022
15023 MICROCHIP MCP16502 PMIC DRIVER
15024 M:      Claudiu Beznea <[email protected]>
15025 L:      [email protected] (moderated for non-subscribers)
15026 S:      Supported
15027 F:      Documentation/devicetree/bindings/regulator/microchip,mcp16502.yaml
15028 F:      drivers/regulator/mcp16502.c
15029
15030 MICROCHIP MCP3564 ADC DRIVER
15031 M:      Marius Cristea <[email protected]>
15032 L:      [email protected]
15033 S:      Supported
15034 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-mcp3564
15035 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3564.yaml
15036 F:      drivers/iio/adc/mcp3564.c
15037
15038 MICROCHIP MCP3911 ADC DRIVER
15039 M:      Marcus Folkesson <[email protected]>
15040 M:      Kent Gustavsson <[email protected]>
15041 L:      [email protected]
15042 S:      Maintained
15043 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
15044 F:      drivers/iio/adc/mcp3911.c
15045
15046 MICROCHIP MMC/SD/SDIO MCI DRIVER
15047 M:      Aubin Constans <[email protected]>
15048 S:      Maintained
15049 F:      drivers/mmc/host/atmel-mci.c
15050
15051 MICROCHIP NAND DRIVER
15052 L:      [email protected]
15053 S:      Orphan
15054 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
15055 F:      drivers/mtd/nand/raw/atmel/*
15056
15057 MICROCHIP OTPC DRIVER
15058 M:      Claudiu Beznea <[email protected]>
15059 L:      [email protected] (moderated for non-subscribers)
15060 S:      Supported
15061 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
15062 F:      drivers/nvmem/microchip-otpc.c
15063 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
15064
15065 MICROCHIP PAC1934 POWER/ENERGY MONITOR DRIVER
15066 M:      Marius Cristea <[email protected]>
15067 L:      [email protected]
15068 S:      Supported
15069 F:      Documentation/devicetree/bindings/iio/adc/microchip,pac1934.yaml
15070 F:      drivers/iio/adc/pac1934.c
15071
15072 MICROCHIP PCI1XXXX GP DRIVER
15073 M:      Vaibhaav Ram T.L <[email protected]>
15074 M:      Kumaravel Thiagarajan <[email protected]>
15075 L:      [email protected]
15076 S:      Supported
15077 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
15078 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
15079 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
15080 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_otpe2p.c
15081
15082 MICROCHIP PCI1XXXX I2C DRIVER
15083 M:      Tharun Kumar P <[email protected]>
15084 M:      Kumaravel Thiagarajan <[email protected]>
15085 M:      Microchip Linux Driver Support <[email protected]>
15086 L:      [email protected]
15087 S:      Maintained
15088 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
15089
15090 MICROCHIP PCIe UART DRIVER
15091 M:      Kumaravel Thiagarajan <[email protected]>
15092 M:      Tharun Kumar P <[email protected]>
15093 L:      [email protected]
15094 S:      Maintained
15095 F:      drivers/tty/serial/8250/8250_pci1xxxx.c
15096
15097 MICROCHIP POLARFIRE FPGA DRIVERS
15098 M:      Conor Dooley <[email protected]>
15099 R:      Vladimir Georgiev <[email protected]>
15100 L:      [email protected]
15101 S:      Supported
15102 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
15103 F:      drivers/fpga/microchip-spi.c
15104
15105 MICROCHIP PWM DRIVER
15106 M:      Claudiu Beznea <[email protected]>
15107 L:      [email protected] (moderated for non-subscribers)
15108 L:      [email protected]
15109 S:      Supported
15110 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
15111 F:      drivers/pwm/pwm-atmel.c
15112
15113 MICROCHIP SAM9x7-COMPATIBLE LVDS CONTROLLER
15114 M:      Manikandan Muralidharan <[email protected]>
15115 M:      Dharma Balasubiramani <[email protected]>
15116 L:      [email protected]
15117 S:      Supported
15118 F:      Documentation/devicetree/bindings/display/bridge/microchip,sam9x75-lvds.yaml
15119 F:      drivers/gpu/drm/bridge/microchip-lvds.c
15120
15121 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
15122 M:      Eugen Hristev <[email protected]>
15123 L:      [email protected]
15124 S:      Supported
15125 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
15126 F:      drivers/iio/adc/at91-sama5d2_adc.c
15127 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
15128
15129 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
15130 M:      Claudiu Beznea <[email protected]>
15131 S:      Supported
15132 F:      Documentation/devicetree/bindings/power/reset/atmel,sama5d2-shdwc.yaml
15133 F:      drivers/power/reset/at91-sama5d2_shdwc.c
15134
15135 MICROCHIP SOC DRIVERS
15136 M:      Conor Dooley <[email protected]>
15137 S:      Supported
15138 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
15139 F:      Documentation/devicetree/bindings/soc/microchip/
15140 F:      drivers/soc/microchip/
15141
15142 MICROCHIP SPI DRIVER
15143 M:      Ryan Wanner <[email protected]>
15144 S:      Supported
15145 F:      drivers/spi/spi-atmel.*
15146
15147 MICROCHIP SSC DRIVER
15148 M:      Claudiu Beznea <[email protected]>
15149 L:      [email protected] (moderated for non-subscribers)
15150 S:      Supported
15151 F:      Documentation/devicetree/bindings/misc/atmel-ssc.txt
15152 F:      drivers/misc/atmel-ssc.c
15153 F:      include/linux/atmel-ssc.h
15154
15155 Microchip Timer Counter Block (TCB) Capture Driver
15156 M:      Kamel Bouhara <[email protected]>
15157 L:      [email protected] (moderated for non-subscribers)
15158 L:      [email protected]
15159 S:      Maintained
15160 F:      drivers/counter/microchip-tcb-capture.c
15161
15162 MICROCHIP USB251XB DRIVER
15163 M:      Richard Leitner <[email protected]>
15164 L:      [email protected]
15165 S:      Maintained
15166 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
15167 F:      drivers/usb/misc/usb251xb.c
15168
15169 MICROCHIP USBA UDC DRIVER
15170 M:      Cristian Birsan <[email protected]>
15171 L:      [email protected] (moderated for non-subscribers)
15172 S:      Supported
15173 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
15174
15175 MICROCHIP WILC1000 WIFI DRIVER
15176 M:      Ajay Singh <[email protected]>
15177 M:      Claudiu Beznea <[email protected]>
15178 L:      [email protected]
15179 S:      Supported
15180 F:      drivers/net/wireless/microchip/wilc1000/
15181
15182 MICROSEMI MIPS SOCS
15183 M:      Alexandre Belloni <[email protected]>
15184 M:      [email protected]
15185 L:      [email protected]
15186 S:      Supported
15187 F:      Documentation/devicetree/bindings/mips/mscc.txt
15188 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
15189 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
15190 F:      arch/mips/boot/dts/mscc/
15191 F:      arch/mips/configs/generic/board-ocelot.config
15192 F:      arch/mips/generic/board-ocelot.c
15193
15194 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
15195 M:      Don Brace <[email protected]>
15196 L:      [email protected]
15197 L:      [email protected]
15198 S:      Supported
15199 F:      Documentation/scsi/smartpqi.rst
15200 F:      drivers/scsi/smartpqi/Kconfig
15201 F:      drivers/scsi/smartpqi/Makefile
15202 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
15203 F:      include/linux/cciss*.h
15204 F:      include/uapi/linux/cciss*.h
15205
15206 MICROSOFT MANA RDMA DRIVER
15207 M:      Long Li <[email protected]>
15208 M:      Ajay Sharma <[email protected]>
15209 L:      [email protected]
15210 S:      Supported
15211 F:      drivers/infiniband/hw/mana/
15212 F:      include/net/mana
15213 F:      include/uapi/rdma/mana-abi.h
15214
15215 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
15216 M:      Maximilian Luz <[email protected]>
15217 L:      [email protected]
15218 S:      Maintained
15219 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
15220
15221 MICROSOFT SURFACE BATTERY AND AC DRIVERS
15222 M:      Maximilian Luz <[email protected]>
15223 L:      [email protected]
15224 L:      [email protected]
15225 S:      Maintained
15226 F:      drivers/power/supply/surface_battery.c
15227 F:      drivers/power/supply/surface_charger.c
15228
15229 MICROSOFT SURFACE DTX DRIVER
15230 M:      Maximilian Luz <[email protected]>
15231 L:      [email protected]
15232 S:      Maintained
15233 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
15234 F:      drivers/platform/surface/surface_dtx.c
15235 F:      include/uapi/linux/surface_aggregator/dtx.h
15236
15237 MICROSOFT SURFACE SENSOR FAN DRIVER
15238 M:      Maximilian Luz <[email protected]>
15239 M:      Ivor Wanders <[email protected]>
15240 L:      [email protected]
15241 S:      Maintained
15242 F:      Documentation/hwmon/surface_fan.rst
15243 F:      drivers/hwmon/surface_fan.c
15244
15245 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
15246 M:      Maximilian Luz <[email protected]>
15247 L:      [email protected]
15248 S:      Maintained
15249 F:      drivers/platform/surface/surface_gpe.c
15250
15251 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
15252 M:      Hans de Goede <[email protected]>
15253 M:      Ilpo Järvinen <[email protected]>
15254 M:      Maximilian Luz <[email protected]>
15255 L:      [email protected]
15256 S:      Maintained
15257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
15258 F:      drivers/platform/surface/
15259
15260 MICROSOFT SURFACE HID TRANSPORT DRIVER
15261 M:      Maximilian Luz <[email protected]>
15262 L:      [email protected]
15263 L:      [email protected]
15264 S:      Maintained
15265 F:      drivers/hid/surface-hid/
15266
15267 MICROSOFT SURFACE HOT-PLUG DRIVER
15268 M:      Maximilian Luz <[email protected]>
15269 L:      [email protected]
15270 S:      Maintained
15271 F:      drivers/platform/surface/surface_hotplug.c
15272
15273 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
15274 M:      Maximilian Luz <[email protected]>
15275 L:      [email protected]
15276 S:      Maintained
15277 F:      drivers/platform/surface/surface_platform_profile.c
15278
15279 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
15280 M:      Chen Yu <[email protected]>
15281 L:      [email protected]
15282 S:      Supported
15283 F:      drivers/platform/surface/surfacepro3_button.c
15284
15285 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
15286 M:      Maximilian Luz <[email protected]>
15287 L:      [email protected]
15288 S:      Maintained
15289 F:      drivers/platform/surface/surface_aggregator_hub.c
15290
15291 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
15292 M:      Maximilian Luz <[email protected]>
15293 L:      [email protected]
15294 S:      Maintained
15295 W:      https://github.com/linux-surface/surface-aggregator-module
15296 C:      irc://irc.libera.chat/linux-surface
15297 F:      Documentation/driver-api/surface_aggregator/
15298 F:      drivers/platform/surface/aggregator/
15299 F:      drivers/platform/surface/surface_acpi_notify.c
15300 F:      drivers/platform/surface/surface_aggregator_cdev.c
15301 F:      drivers/platform/surface/surface_aggregator_registry.c
15302 F:      include/linux/surface_acpi_notify.h
15303 F:      include/linux/surface_aggregator/
15304 F:      include/uapi/linux/surface_aggregator/
15305
15306 MICROTEK X6 SCANNER
15307 M:      Oliver Neukum <[email protected]>
15308 S:      Maintained
15309 F:      drivers/usb/image/microtek.*
15310
15311 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
15312 M:      Luka Kovacic <[email protected]>
15313 M:      Luka Perkov <[email protected]>
15314 S:      Maintained
15315 F:      arch/arm/boot/dts/marvell/armada-xp-crs305-1g-4s-bit.dts
15316 F:      arch/arm/boot/dts/marvell/armada-xp-crs305-1g-4s.dts
15317 F:      arch/arm/boot/dts/marvell/armada-xp-crs326-24g-2s-bit.dts
15318 F:      arch/arm/boot/dts/marvell/armada-xp-crs326-24g-2s.dts
15319 F:      arch/arm/boot/dts/marvell/armada-xp-crs328-4c-20s-4s-bit.dts
15320 F:      arch/arm/boot/dts/marvell/armada-xp-crs328-4c-20s-4s.dts
15321
15322 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
15323 M:      Sakari Ailus <[email protected]>
15324 L:      [email protected]
15325 S:      Maintained
15326 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
15327 F:      Documentation/driver-api/media/drivers/ccs/
15328 F:      Documentation/userspace-api/media/drivers/ccs.rst
15329 F:      drivers/media/i2c/ccs-pll.c
15330 F:      drivers/media/i2c/ccs-pll.h
15331 F:      drivers/media/i2c/ccs/
15332 F:      include/uapi/linux/ccs.h
15333 F:      include/uapi/linux/smiapp.h
15334
15335 MIPS
15336 M:      Thomas Bogendoerfer <[email protected]>
15337 L:      [email protected]
15338 S:      Maintained
15339 W:      http://www.linux-mips.org/
15340 Q:      https://patchwork.kernel.org/project/linux-mips/list/
15341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
15342 F:      Documentation/devicetree/bindings/mips/
15343 F:      Documentation/arch/mips/
15344 F:      arch/mips/
15345 F:      drivers/platform/mips/
15346 F:      include/dt-bindings/mips/
15347
15348 MIPS BAIKAL-T1 PLATFORM
15349 M:      Serge Semin <[email protected]>
15350 L:      [email protected]
15351 S:      Supported
15352 F:      Documentation/devicetree/bindings/bus/baikal,bt1-*.yaml
15353 F:      Documentation/devicetree/bindings/clock/baikal,bt1-*.yaml
15354 F:      drivers/bus/bt1-*.c
15355 F:      drivers/clk/baikal-t1/
15356 F:      drivers/memory/bt1-l2-ctl.c
15357 F:      drivers/mtd/maps/physmap-bt1-rom.[ch]
15358
15359 MIPS BOSTON DEVELOPMENT BOARD
15360 M:      Paul Burton <[email protected]>
15361 L:      [email protected]
15362 S:      Maintained
15363 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
15364 F:      arch/mips/boot/dts/img/boston.dts
15365 F:      arch/mips/configs/generic/board-boston.config
15366 F:      drivers/clk/imgtec/clk-boston.c
15367 F:      include/dt-bindings/clock/boston-clock.h
15368
15369 MIPS CORE DRIVERS
15370 M:      Thomas Bogendoerfer <[email protected]>
15371 M:      Serge Semin <[email protected]>
15372 L:      [email protected]
15373 S:      Supported
15374 F:      drivers/bus/mips_cdmm.c
15375 F:      drivers/clocksource/mips-gic-timer.c
15376 F:      drivers/cpuidle/cpuidle-cps.c
15377 F:      drivers/irqchip/irq-mips-cpu.c
15378 F:      drivers/irqchip/irq-mips-gic.c
15379
15380 MIPS GENERIC PLATFORM
15381 M:      Paul Burton <[email protected]>
15382 L:      [email protected]
15383 S:      Supported
15384 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
15385 F:      arch/mips/generic/
15386 F:      arch/mips/tools/generic-board-config.sh
15387
15388 MIPS RINT INSTRUCTION EMULATION
15389 M:      Aleksandar Markovic <[email protected]>
15390 L:      [email protected]
15391 S:      Supported
15392 F:      arch/mips/math-emu/dp_rint.c
15393 F:      arch/mips/math-emu/sp_rint.c
15394
15395 MIPS/LOONGSON1 ARCHITECTURE
15396 M:      Keguang Zhang <[email protected]>
15397 L:      [email protected]
15398 S:      Maintained
15399 F:      Documentation/devicetree/bindings/*/loongson,ls1*.yaml
15400 F:      arch/mips/include/asm/mach-loongson32/
15401 F:      arch/mips/loongson32/
15402 F:      drivers/*/*loongson1*
15403 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-loongson1.c
15404
15405 MIPS/LOONGSON2EF ARCHITECTURE
15406 M:      Jiaxun Yang <[email protected]>
15407 L:      [email protected]
15408 S:      Maintained
15409 F:      arch/mips/include/asm/mach-loongson2ef/
15410 F:      arch/mips/loongson2ef/
15411 F:      drivers/cpufreq/loongson2_cpufreq.c
15412
15413 MIPS/LOONGSON64 ARCHITECTURE
15414 M:      Huacai Chen <[email protected]>
15415 M:      Jiaxun Yang <[email protected]>
15416 L:      [email protected]
15417 S:      Maintained
15418 F:      arch/mips/include/asm/mach-loongson64/
15419 F:      arch/mips/loongson64/
15420 F:      drivers/irqchip/irq-loongson*
15421 F:      drivers/platform/mips/cpu_hwmon.c
15422
15423 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
15424 M:      Hans Verkuil <[email protected]>
15425 L:      [email protected]
15426 S:      Odd Fixes
15427 W:      https://linuxtv.org
15428 T:      git git://linuxtv.org/media_tree.git
15429 F:      drivers/media/radio/radio-miropcm20*
15430
15431 MITSUMI MM8013 FG DRIVER
15432 M:      Konrad Dybcio <[email protected]>
15433 F:      Documentation/devicetree/bindings/power/supply/mitsumi,mm8013.yaml
15434 F:      drivers/power/supply/mm8013.c
15435
15436 MMP SUPPORT
15437 R:      Lubomir Rintel <[email protected]>
15438 L:      [email protected] (moderated for non-subscribers)
15439 S:      Odd Fixes
15440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
15441 F:      arch/arm/boot/dts/marvell/mmp*
15442 F:      arch/arm/mach-mmp/
15443 F:      include/linux/soc/mmp/
15444
15445 MMP USB PHY DRIVERS
15446 R:      Lubomir Rintel <[email protected]>
15447 L:      [email protected] (moderated for non-subscribers)
15448 S:      Maintained
15449 F:      drivers/phy/marvell/phy-mmp3-usb.c
15450 F:      drivers/phy/marvell/phy-pxa-usb.c
15451
15452 MMU GATHER AND TLB INVALIDATION
15453 M:      Will Deacon <[email protected]>
15454 M:      "Aneesh Kumar K.V" <[email protected]>
15455 M:      Andrew Morton <[email protected]>
15456 M:      Nick Piggin <[email protected]>
15457 M:      Peter Zijlstra <[email protected]>
15458 L:      [email protected]
15459 L:      [email protected]
15460 S:      Maintained
15461 F:      arch/*/include/asm/tlb.h
15462 F:      include/asm-generic/tlb.h
15463 F:      mm/mmu_gather.c
15464
15465 MN88472 MEDIA DRIVER
15466 L:      [email protected]
15467 S:      Orphan
15468 W:      https://linuxtv.org
15469 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15470 F:      drivers/media/dvb-frontends/mn88472*
15471
15472 MN88473 MEDIA DRIVER
15473 L:      [email protected]
15474 S:      Orphan
15475 W:      https://linuxtv.org
15476 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15477 F:      drivers/media/dvb-frontends/mn88473*
15478
15479 MOBILEYE MIPS SOCS
15480 M:      Vladimir Kondratiev <[email protected]>
15481 M:      Gregory CLEMENT <[email protected]>
15482 M:      Théo Lebrun <[email protected]>
15483 L:      [email protected]
15484 S:      Maintained
15485 F:      Documentation/devicetree/bindings/mips/mobileye.yaml
15486 F:      Documentation/devicetree/bindings/soc/mobileye/
15487 F:      arch/mips/boot/dts/mobileye/
15488 F:      arch/mips/configs/eyeq5_defconfig
15489 F:      arch/mips/mobileye/board-epm5.its.S
15490 F:      drivers/clk/clk-eyeq.c
15491 F:      drivers/pinctrl/pinctrl-eyeq5.c
15492 F:      drivers/reset/reset-eyeq.c
15493 F:      include/dt-bindings/clock/mobileye,eyeq5-clk.h
15494
15495 MODULE SUPPORT
15496 M:      Luis Chamberlain <[email protected]>
15497 L:      [email protected]
15498 L:      [email protected]
15499 S:      Maintained
15500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
15501 F:      include/linux/kmod.h
15502 F:      include/linux/module*.h
15503 F:      kernel/module/
15504 F:      lib/test_kmod.c
15505 F:      scripts/module*
15506 F:      tools/testing/selftests/kmod/
15507
15508 MONOLITHIC POWER SYSTEM PMIC DRIVER
15509 M:      Saravanan Sekar <[email protected]>
15510 S:      Maintained
15511 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
15512 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
15513 F:      drivers/hwmon/pmbus/mpq7932.c
15514 F:      drivers/iio/adc/mp2629_adc.c
15515 F:      drivers/mfd/mp2629.c
15516 F:      drivers/power/supply/mp2629_charger.c
15517 F:      drivers/regulator/mp5416.c
15518 F:      drivers/regulator/mpq7920.c
15519 F:      drivers/regulator/mpq7920.h
15520 F:      include/linux/mfd/mp2629.h
15521
15522 MOST(R) TECHNOLOGY DRIVER
15523 M:      Parthiban Veerasooran <[email protected]>
15524 M:      Christian Gromm <[email protected]>
15525 S:      Maintained
15526 F:      Documentation/ABI/testing/configfs-most
15527 F:      Documentation/ABI/testing/sysfs-bus-most
15528 F:      drivers/most/
15529 F:      drivers/staging/most/
15530 F:      include/linux/most.h
15531
15532 MOTORCOMM PHY DRIVER
15533 M:      Frank <[email protected]>
15534 L:      [email protected]
15535 S:      Maintained
15536 F:      Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
15537 F:      drivers/net/phy/motorcomm.c
15538
15539 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
15540 M:      Jiri Slaby <[email protected]>
15541 S:      Maintained
15542 F:      Documentation/driver-api/tty/moxa-smartio.rst
15543 F:      drivers/tty/mxser.*
15544
15545 MP3309C BACKLIGHT DRIVER
15546 M:      Flavio Suligoi <[email protected]>
15547 L:      [email protected]
15548 S:      Maintained
15549 F:      Documentation/devicetree/bindings/leds/backlight/mps,mp3309c.yaml
15550 F:      drivers/video/backlight/mp3309c.c
15551
15552 MPS MP2891 DRIVER
15553 M:      Noah Wang <[email protected]>
15554 L:      [email protected]
15555 S:      Maintained
15556 F:      Documentation/hwmon/mp2891.rst
15557 F:      drivers/hwmon/pmbus/mp2891.c
15558
15559 MPS MP2993 DRIVER
15560 M:      Noah Wang <[email protected]>
15561 L:      [email protected]
15562 S:      Maintained
15563 F:      Documentation/hwmon/mp2993.rst
15564 F:      drivers/hwmon/pmbus/mp2993.c
15565
15566 MPS MP9941 DRIVER
15567 M:      Noah Wang <[email protected]>
15568 L:      [email protected]
15569 S:      Maintained
15570 F:      Documentation/hwmon/mp9941.rst
15571 F:      drivers/hwmon/pmbus/mp9941.c
15572
15573 MR800 AVERMEDIA USB FM RADIO DRIVER
15574 M:      Alexey Klimov <[email protected]>
15575 L:      [email protected]
15576 S:      Maintained
15577 T:      git git://linuxtv.org/media_tree.git
15578 F:      drivers/media/radio/radio-mr800.c
15579
15580 MRF24J40 IEEE 802.15.4 RADIO DRIVER
15581 M:      Stefan Schmidt <[email protected]>
15582 L:      [email protected]
15583 S:      Odd Fixes
15584 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
15585 F:      drivers/net/ieee802154/mrf24j40.c
15586
15587 MSI EC DRIVER
15588 M:      Nikita Kravets <[email protected]>
15589 L:      [email protected]
15590 S:      Maintained
15591 W:      https://github.com/BeardOverflow/msi-ec
15592 F:      drivers/platform/x86/msi-ec.*
15593
15594 MSI LAPTOP SUPPORT
15595 M:      "Lee, Chun-Yi" <[email protected]>
15596 L:      [email protected]
15597 S:      Maintained
15598 F:      drivers/platform/x86/msi-laptop.c
15599
15600 MSI WMI SUPPORT
15601 L:      [email protected]
15602 S:      Orphan
15603 F:      drivers/platform/x86/msi-wmi.c
15604
15605 MSI WMI PLATFORM FEATURES
15606 M:      Armin Wolf <[email protected]>
15607 L:      [email protected]
15608 S:      Maintained
15609 F:      Documentation/ABI/testing/debugfs-msi-wmi-platform
15610 F:      Documentation/wmi/devices/msi-wmi-platform.rst
15611 F:      drivers/platform/x86/msi-wmi-platform.c
15612
15613 MSI001 MEDIA DRIVER
15614 L:      [email protected]
15615 S:      Orphan
15616 W:      https://linuxtv.org
15617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15618 F:      drivers/media/tuners/msi001*
15619
15620 MSI2500 MEDIA DRIVER
15621 L:      [email protected]
15622 S:      Orphan
15623 W:      https://linuxtv.org
15624 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15625 F:      drivers/media/usb/msi2500/
15626
15627 MSTAR INTERRUPT CONTROLLER DRIVER
15628 M:      Mark-PK Tsai <[email protected]>
15629 M:      Daniel Palmer <[email protected]>
15630 S:      Maintained
15631 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
15632 F:      drivers/irqchip/irq-mst-intc.c
15633
15634 MSYSTEMS DISKONCHIP G3 MTD DRIVER
15635 M:      Robert Jarzmik <[email protected]>
15636 L:      [email protected]
15637 S:      Maintained
15638 F:      drivers/mtd/devices/docg3*
15639
15640 MT9M114 ONSEMI SENSOR DRIVER
15641 M:      Laurent Pinchart <[email protected]>
15642 L:      [email protected]
15643 S:      Maintained
15644 T:      git git://linuxtv.org/media_tree.git
15645 F:      Documentation/devicetree/bindings/media/i2c/onnn,mt9m114.yaml
15646 F:      drivers/media/i2c/mt9m114.c
15647
15648 MT9P031 APTINA CAMERA SENSOR
15649 M:      Laurent Pinchart <[email protected]>
15650 L:      [email protected]
15651 S:      Maintained
15652 T:      git git://linuxtv.org/media_tree.git
15653 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
15654 F:      drivers/media/i2c/mt9p031.c
15655 F:      include/media/i2c/mt9p031.h
15656
15657 MT9T112 APTINA CAMERA SENSOR
15658 M:      Jacopo Mondi <[email protected]>
15659 L:      [email protected]
15660 S:      Odd Fixes
15661 T:      git git://linuxtv.org/media_tree.git
15662 F:      drivers/media/i2c/mt9t112.c
15663 F:      include/media/i2c/mt9t112.h
15664
15665 MT9V032 APTINA CAMERA SENSOR
15666 M:      Laurent Pinchart <[email protected]>
15667 L:      [email protected]
15668 S:      Maintained
15669 T:      git git://linuxtv.org/media_tree.git
15670 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
15671 F:      drivers/media/i2c/mt9v032.c
15672 F:      include/media/i2c/mt9v032.h
15673
15674 MT9V111 APTINA CAMERA SENSOR
15675 M:      Jacopo Mondi <[email protected]>
15676 L:      [email protected]
15677 S:      Maintained
15678 T:      git git://linuxtv.org/media_tree.git
15679 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
15680 F:      drivers/media/i2c/mt9v111.c
15681
15682 MULTIFUNCTION DEVICES (MFD)
15683 M:      Lee Jones <[email protected]>
15684 S:      Maintained
15685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
15686 F:      Documentation/devicetree/bindings/mfd/
15687 F:      drivers/mfd/
15688 F:      include/dt-bindings/mfd/
15689 F:      include/linux/mfd/
15690
15691 MULTIMEDIA CARD (MMC) ETC. OVER SPI
15692 S:      Orphan
15693 F:      drivers/mmc/host/mmc_spi.c
15694 F:      include/linux/spi/mmc_spi.h
15695
15696 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
15697 M:      Ulf Hansson <[email protected]>
15698 L:      [email protected]
15699 S:      Maintained
15700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15701 F:      Documentation/devicetree/bindings/mmc/
15702 F:      drivers/mmc/
15703 F:      include/linux/mmc/
15704 F:      include/uapi/linux/mmc/
15705
15706 MULTIPLEXER SUBSYSTEM
15707 M:      Peter Rosin <[email protected]>
15708 S:      Maintained
15709 F:      Documentation/ABI/testing/sysfs-class-mux*
15710 F:      Documentation/devicetree/bindings/mux/
15711 F:      drivers/mux/
15712 F:      include/dt-bindings/mux/
15713 F:      include/linux/mux/
15714
15715 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
15716 M:      Bin Liu <[email protected]>
15717 L:      [email protected]
15718 S:      Maintained
15719 F:      drivers/usb/musb/
15720
15721 MXL301RF MEDIA DRIVER
15722 M:      Akihiro Tsukada <[email protected]>
15723 L:      [email protected]
15724 S:      Odd Fixes
15725 F:      drivers/media/tuners/mxl301rf*
15726
15727 MXL5007T MEDIA DRIVER
15728 M:      Michael Krufky <[email protected]>
15729 L:      [email protected]
15730 S:      Maintained
15731 W:      https://linuxtv.org
15732 W:      http://github.com/mkrufky
15733 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15734 T:      git git://linuxtv.org/mkrufky/tuners.git
15735 F:      drivers/media/tuners/mxl5007t.*
15736
15737 MXSFB DRM DRIVER
15738 M:      Marek Vasut <[email protected]>
15739 M:      Stefan Agner <[email protected]>
15740 L:      [email protected]
15741 S:      Supported
15742 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
15743 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
15744 F:      drivers/gpu/drm/mxsfb/
15745
15746 MYLEX DAC960 PCI RAID Controller
15747 M:      Hannes Reinecke <[email protected]>
15748 L:      [email protected]
15749 S:      Supported
15750 F:      drivers/scsi/myrb.*
15751 F:      drivers/scsi/myrs.*
15752
15753 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
15754 L:      [email protected]
15755 S:      Orphan
15756 W:      https://www.cspi.com/ethernet-products/support/downloads/
15757 F:      drivers/net/ethernet/myricom/myri10ge/
15758
15759 NAND FLASH SUBSYSTEM
15760 M:      Miquel Raynal <[email protected]>
15761 R:      Richard Weinberger <[email protected]>
15762 L:      [email protected]
15763 S:      Maintained
15764 W:      http://www.linux-mtd.infradead.org/
15765 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15766 C:      irc://irc.oftc.net/mtd
15767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
15768 F:      drivers/mtd/nand/
15769 F:      include/linux/mtd/*nand*.h
15770
15771 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
15772 M:      Daniel Mack <[email protected]>
15773 L:      [email protected] (moderated for non-subscribers)
15774 S:      Maintained
15775 W:      http://www.native-instruments.com
15776 F:      sound/usb/caiaq/
15777
15778 NATSEMI ETHERNET DRIVER (DP8381x)
15779 S:      Orphan
15780 F:      drivers/net/ethernet/natsemi/natsemi.c
15781
15782 NCR 5380 SCSI DRIVERS
15783 M:      Finn Thain <[email protected]>
15784 M:      Michael Schmitz <[email protected]>
15785 L:      [email protected]
15786 S:      Maintained
15787 F:      Documentation/scsi/g_NCR5380.rst
15788 F:      drivers/scsi/NCR5380.*
15789 F:      drivers/scsi/arm/cumana_1.c
15790 F:      drivers/scsi/arm/oak.c
15791 F:      drivers/scsi/atari_scsi.*
15792 F:      drivers/scsi/dmx3191d.c
15793 F:      drivers/scsi/g_NCR5380.*
15794 F:      drivers/scsi/mac_scsi.*
15795 F:      drivers/scsi/sun3_scsi.*
15796 F:      drivers/scsi/sun3_scsi_vme.c
15797
15798 NCSI LIBRARY
15799 M:      Samuel Mendoza-Jonas <[email protected]>
15800 S:      Maintained
15801 F:      net/ncsi/
15802
15803 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
15804 M:      Zev Weiss <[email protected]>
15805 L:      [email protected]
15806 S:      Maintained
15807 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
15808 F:      drivers/hwmon/nct6775-i2c.c
15809
15810 NETCONSOLE
15811 M:      Breno Leitao <[email protected]>
15812 S:      Maintained
15813 F:      Documentation/networking/netconsole.rst
15814 F:      drivers/net/netconsole.c
15815 F:      tools/testing/selftests/drivers/net/netcons_basic.sh
15816
15817 NETDEVSIM
15818 M:      Jakub Kicinski <[email protected]>
15819 S:      Maintained
15820 F:      drivers/net/netdevsim/*
15821 F:      tools/testing/selftests/drivers/net/netdevsim/*
15822
15823 NETEM NETWORK EMULATOR
15824 M:      Stephen Hemminger <[email protected]>
15825 L:      [email protected]
15826 S:      Maintained
15827 F:      net/sched/sch_netem.c
15828
15829 NETERION 10GbE DRIVERS (s2io)
15830 M:      Jon Mason <[email protected]>
15831 L:      [email protected]
15832 S:      Supported
15833 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
15834 F:      drivers/net/ethernet/neterion/
15835
15836 NETFILTER
15837 M:      Pablo Neira Ayuso <[email protected]>
15838 M:      Jozsef Kadlecsik <[email protected]>
15839 L:      [email protected]
15840 L:      [email protected]
15841 S:      Maintained
15842 W:      http://www.netfilter.org/
15843 W:      http://www.iptables.org/
15844 W:      http://www.nftables.org/
15845 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
15846 C:      irc://irc.libera.chat/netfilter
15847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
15848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
15849 F:      include/linux/netfilter*
15850 F:      include/linux/netfilter/
15851 F:      include/net/netfilter/
15852 F:      include/uapi/linux/netfilter*
15853 F:      include/uapi/linux/netfilter/
15854 F:      net/*/netfilter.c
15855 F:      net/*/netfilter/
15856 F:      net/bridge/br_netfilter*.c
15857 F:      net/netfilter/
15858 F:      tools/testing/selftests/net/netfilter/
15859
15860 NETROM NETWORK LAYER
15861 M:      Ralf Baechle <[email protected]>
15862 L:      [email protected]
15863 S:      Maintained
15864 W:      https://linux-ax25.in-berlin.de
15865 F:      include/net/netrom.h
15866 F:      include/uapi/linux/netrom.h
15867 F:      net/netrom/
15868
15869 NETRONIX EMBEDDED CONTROLLER
15870 M:      Jonathan Neuschäfer <[email protected]>
15871 S:      Maintained
15872 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
15873 F:      drivers/mfd/ntxec.c
15874 F:      drivers/pwm/pwm-ntxec.c
15875 F:      drivers/rtc/rtc-ntxec.c
15876 F:      include/linux/mfd/ntxec.h
15877
15878 NETRONOME ETHERNET DRIVERS
15879 M:      Louis Peens <[email protected]>
15880 R:      Jakub Kicinski <[email protected]>
15881 L:      [email protected]
15882 S:      Maintained
15883 F:      drivers/net/ethernet/netronome/
15884
15885 NETWORK BLOCK DEVICE (NBD)
15886 M:      Josef Bacik <[email protected]>
15887 L:      [email protected]
15888 L:      [email protected]
15889 S:      Maintained
15890 F:      Documentation/admin-guide/blockdev/nbd.rst
15891 F:      drivers/block/nbd.c
15892 F:      include/trace/events/nbd.h
15893 F:      include/uapi/linux/nbd.h
15894
15895 NETWORK DROP MONITOR
15896 M:      Neil Horman <[email protected]>
15897 L:      [email protected]
15898 S:      Maintained
15899 W:      https://fedorahosted.org/dropwatch/
15900 F:      include/uapi/linux/net_dropmon.h
15901 F:      net/core/drop_monitor.c
15902
15903 NETWORKING DRIVERS
15904 M:      "David S. Miller" <[email protected]>
15905 M:      Eric Dumazet <[email protected]>
15906 M:      Jakub Kicinski <[email protected]>
15907 M:      Paolo Abeni <[email protected]>
15908 L:      [email protected]
15909 S:      Maintained
15910 P:      Documentation/process/maintainer-netdev.rst
15911 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
15912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
15913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
15914 F:      Documentation/devicetree/bindings/net/
15915 F:      Documentation/networking/net_cachelines/net_device.rst
15916 F:      drivers/connector/
15917 F:      drivers/net/
15918 F:      include/dt-bindings/net/
15919 F:      include/linux/cn_proc.h
15920 F:      include/linux/etherdevice.h
15921 F:      include/linux/ethtool_netlink.h
15922 F:      include/linux/fcdevice.h
15923 F:      include/linux/fddidevice.h
15924 F:      include/linux/hippidevice.h
15925 F:      include/linux/if_*
15926 F:      include/linux/inetdevice.h
15927 F:      include/linux/netdev*
15928 F:      include/linux/platform_data/wiznet.h
15929 F:      include/uapi/linux/cn_proc.h
15930 F:      include/uapi/linux/ethtool_netlink.h
15931 F:      include/uapi/linux/if_*
15932 F:      include/uapi/linux/netdev*
15933 F:      tools/testing/selftests/drivers/net/
15934 X:      Documentation/devicetree/bindings/net/bluetooth/
15935 X:      Documentation/devicetree/bindings/net/wireless/
15936 X:      drivers/net/wireless/
15937
15938 NETWORKING DRIVERS (WIRELESS)
15939 M:      Kalle Valo <[email protected]>
15940 L:      [email protected]
15941 S:      Maintained
15942 W:      https://wireless.wiki.kernel.org/
15943 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
15944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
15945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
15946 F:      Documentation/devicetree/bindings/net/wireless/
15947 F:      drivers/net/wireless/
15948
15949 NETWORKING [DSA]
15950 M:      Andrew Lunn <[email protected]>
15951 M:      Florian Fainelli <[email protected]>
15952 M:      Vladimir Oltean <[email protected]>
15953 S:      Maintained
15954 F:      Documentation/devicetree/bindings/net/dsa/
15955 F:      Documentation/devicetree/bindings/net/ethernet-switch-port.yaml
15956 F:      Documentation/devicetree/bindings/net/ethernet-switch.yaml
15957 F:      drivers/net/dsa/
15958 F:      include/linux/dsa/
15959 F:      include/linux/platform_data/dsa.h
15960 F:      include/net/dsa.h
15961 F:      net/dsa/
15962 F:      tools/testing/selftests/drivers/net/dsa/
15963
15964 NETWORKING [GENERAL]
15965 M:      "David S. Miller" <[email protected]>
15966 M:      Eric Dumazet <[email protected]>
15967 M:      Jakub Kicinski <[email protected]>
15968 M:      Paolo Abeni <[email protected]>
15969 L:      [email protected]
15970 S:      Maintained
15971 P:      Documentation/process/maintainer-netdev.rst
15972 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
15973 B:      mailto:[email protected]
15974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
15975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
15976 F:      Documentation/core-api/netlink.rst
15977 F:      Documentation/netlink/
15978 F:      Documentation/networking/
15979 F:      Documentation/networking/net_cachelines/
15980 F:      Documentation/process/maintainer-netdev.rst
15981 F:      Documentation/userspace-api/netlink/
15982 F:      include/linux/framer/framer-provider.h
15983 F:      include/linux/framer/framer.h
15984 F:      include/linux/in.h
15985 F:      include/linux/indirect_call_wrapper.h
15986 F:      include/linux/inet.h
15987 F:      include/linux/inet_diag.h
15988 F:      include/linux/net.h
15989 F:      include/linux/netdev*
15990 F:      include/linux/netlink.h
15991 F:      include/linux/netpoll.h
15992 F:      include/linux/rtnetlink.h
15993 F:      include/linux/seq_file_net.h
15994 F:      include/linux/skbuff*
15995 F:      include/net/
15996 F:      include/uapi/linux/genetlink.h
15997 F:      include/uapi/linux/hsr_netlink.h
15998 F:      include/uapi/linux/in.h
15999 F:      include/uapi/linux/inet_diag.h
16000 F:      include/uapi/linux/nbd-netlink.h
16001 F:      include/uapi/linux/net.h
16002 F:      include/uapi/linux/net_namespace.h
16003 F:      include/uapi/linux/netconf.h
16004 F:      include/uapi/linux/netdev*
16005 F:      include/uapi/linux/netlink.h
16006 F:      include/uapi/linux/netlink_diag.h
16007 F:      include/uapi/linux/rtnetlink.h
16008 F:      lib/net_utils.c
16009 F:      lib/random32.c
16010 F:      net/
16011 F:      tools/net/
16012 F:      tools/testing/selftests/net/
16013 X:      net/9p/
16014 X:      net/bluetooth/
16015
16016 NETWORKING [IPSEC]
16017 M:      Steffen Klassert <[email protected]>
16018 M:      Herbert Xu <[email protected]>
16019 M:      "David S. Miller" <[email protected]>
16020 L:      [email protected]
16021 S:      Maintained
16022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
16023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
16024 F:      include/net/xfrm.h
16025 F:      include/uapi/linux/xfrm.h
16026 F:      net/ipv4/ah4.c
16027 F:      net/ipv4/esp4*
16028 F:      net/ipv4/ip_vti.c
16029 F:      net/ipv4/ipcomp.c
16030 F:      net/ipv4/xfrm*
16031 F:      net/ipv6/ah6.c
16032 F:      net/ipv6/esp6*
16033 F:      net/ipv6/ip6_vti.c
16034 F:      net/ipv6/ipcomp6.c
16035 F:      net/ipv6/xfrm*
16036 F:      net/key/
16037 F:      net/xfrm/
16038 F:      tools/testing/selftests/net/ipsec.c
16039
16040 NETWORKING [IPv4/IPv6]
16041 M:      "David S. Miller" <[email protected]>
16042 M:      David Ahern <[email protected]>
16043 L:      [email protected]
16044 S:      Maintained
16045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
16046 F:      arch/x86/net/*
16047 F:      include/linux/ip.h
16048 F:      include/linux/ipv6*
16049 F:      include/net/fib*
16050 F:      include/net/ip*
16051 F:      include/net/route.h
16052 F:      net/ipv4/
16053 F:      net/ipv6/
16054
16055 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
16056 M:      Paul Moore <[email protected]>
16057 L:      [email protected]
16058 L:      [email protected]
16059 S:      Supported
16060 W:      https://github.com/netlabel
16061 F:      Documentation/netlabel/
16062 F:      include/net/calipso.h
16063 F:      include/net/cipso_ipv4.h
16064 F:      include/net/netlabel.h
16065 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
16066 F:      include/uapi/linux/netfilter/xt_SECMARK.h
16067 F:      net/ipv4/cipso_ipv4.c
16068 F:      net/ipv6/calipso.c
16069 F:      net/netfilter/xt_CONNSECMARK.c
16070 F:      net/netfilter/xt_SECMARK.c
16071 F:      net/netlabel/
16072
16073 NETWORKING [MACSEC]
16074 M:      Sabrina Dubroca <[email protected]>
16075 L:      [email protected]
16076 S:      Maintained
16077 F:      drivers/net/macsec.c
16078 F:      include/net/macsec.h
16079 F:      include/uapi/linux/if_macsec.h
16080 K:      macsec
16081 K:      \bmdo_
16082
16083 NETWORKING [MPTCP]
16084 M:      Matthieu Baerts <[email protected]>
16085 M:      Mat Martineau <[email protected]>
16086 R:      Geliang Tang <[email protected]>
16087 L:      [email protected]
16088 L:      [email protected]
16089 S:      Maintained
16090 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
16091 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
16092 T:      git https://github.com/multipath-tcp/mptcp_net-next.git export-net
16093 T:      git https://github.com/multipath-tcp/mptcp_net-next.git export
16094 F:      Documentation/netlink/specs/mptcp_pm.yaml
16095 F:      Documentation/networking/mptcp*.rst
16096 F:      include/net/mptcp.h
16097 F:      include/trace/events/mptcp.h
16098 F:      include/uapi/linux/mptcp*.h
16099 F:      net/mptcp/
16100 F:      tools/testing/selftests/bpf/*/*mptcp*.c
16101 F:      tools/testing/selftests/net/mptcp/
16102
16103 NETWORKING [TCP]
16104 M:      Eric Dumazet <[email protected]>
16105 L:      [email protected]
16106 S:      Maintained
16107 F:      Documentation/networking/net_cachelines/tcp_sock.rst
16108 F:      include/linux/tcp.h
16109 F:      include/net/tcp.h
16110 F:      include/trace/events/tcp.h
16111 F:      include/uapi/linux/tcp.h
16112 F:      net/ipv4/inet_connection_sock.c
16113 F:      net/ipv4/inet_hashtables.c
16114 F:      net/ipv4/inet_timewait_sock.c
16115 F:      net/ipv4/syncookies.c
16116 F:      net/ipv4/tcp*.c
16117 F:      net/ipv6/inet6_connection_sock.c
16118 F:      net/ipv6/inet6_hashtables.c
16119 F:      net/ipv6/syncookies.c
16120 F:      net/ipv6/tcp*.c
16121
16122 NETWORKING [TLS]
16123 M:      Boris Pismenny <[email protected]>
16124 M:      John Fastabend <[email protected]>
16125 M:      Jakub Kicinski <[email protected]>
16126 L:      [email protected]
16127 S:      Maintained
16128 F:      include/net/tls.h
16129 F:      include/uapi/linux/tls.h
16130 F:      net/tls/*
16131
16132 NETXEN (1/10) GbE SUPPORT
16133 M:      Manish Chopra <[email protected]>
16134 M:      Rahul Verma <[email protected]>
16135 M:      [email protected]
16136 L:      [email protected]
16137 S:      Supported
16138 F:      drivers/net/ethernet/qlogic/netxen/
16139
16140 NET_FAILOVER MODULE
16141 M:      Sridhar Samudrala <[email protected]>
16142 L:      [email protected]
16143 S:      Supported
16144 F:      Documentation/networking/net_failover.rst
16145 F:      drivers/net/net_failover.c
16146 F:      include/net/net_failover.h
16147
16148 NEXTHOP
16149 M:      David Ahern <[email protected]>
16150 L:      [email protected]
16151 S:      Maintained
16152 F:      include/net/netns/nexthop.h
16153 F:      include/net/nexthop.h
16154 F:      include/uapi/linux/nexthop.h
16155 F:      net/ipv4/nexthop.c
16156
16157 NFC SUBSYSTEM
16158 M:      Krzysztof Kozlowski <[email protected]>
16159 L:      [email protected]
16160 S:      Maintained
16161 F:      Documentation/devicetree/bindings/net/nfc/
16162 F:      drivers/nfc/
16163 F:      include/net/nfc/
16164 F:      include/uapi/linux/nfc.h
16165 F:      net/nfc/
16166
16167 NFC VIRTUAL NCI DEVICE DRIVER
16168 M:      Bongsu Jeon <[email protected]>
16169 L:      [email protected]
16170 S:      Supported
16171 F:      drivers/nfc/virtual_ncidev.c
16172 F:      tools/testing/selftests/nci/
16173
16174 NFS, SUNRPC, AND LOCKD CLIENTS
16175 M:      Trond Myklebust <[email protected]>
16176 M:      Anna Schumaker <[email protected]>
16177 L:      [email protected]
16178 S:      Maintained
16179 W:      http://client.linux-nfs.org
16180 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
16181 F:      Documentation/filesystems/nfs/
16182 F:      fs/lockd/
16183 F:      fs/nfs/
16184 F:      fs/nfs_common/
16185 F:      include/linux/lockd/
16186 F:      include/linux/nfs*
16187 F:      include/linux/sunrpc/
16188 F:      include/uapi/linux/nfs*
16189 F:      include/uapi/linux/sunrpc/
16190 F:      net/sunrpc/
16191
16192 NILFS2 FILESYSTEM
16193 M:      Ryusuke Konishi <[email protected]>
16194 L:      [email protected]
16195 S:      Supported
16196 W:      https://nilfs.sourceforge.io/
16197 T:      git https://github.com/konis/nilfs2.git
16198 F:      Documentation/filesystems/nilfs2.rst
16199 F:      fs/nilfs2/
16200 F:      include/trace/events/nilfs2.h
16201 F:      include/uapi/linux/nilfs2_api.h
16202 F:      include/uapi/linux/nilfs2_ondisk.h
16203
16204 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
16205 M:      YOKOTA Hiroshi <[email protected]>
16206 S:      Maintained
16207 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
16208 F:      Documentation/scsi/NinjaSCSI.rst
16209 F:      drivers/scsi/pcmcia/nsp_*
16210
16211 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
16212 M:      GOTO Masanori <[email protected]>
16213 M:      YOKOTA Hiroshi <[email protected]>
16214 S:      Maintained
16215 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
16216 F:      Documentation/scsi/NinjaSCSI.rst
16217 F:      drivers/scsi/nsp32*
16218
16219 NINTENDO HID DRIVER
16220 M:      Daniel J. Ogorchock <[email protected]>
16221 L:      [email protected]
16222 S:      Maintained
16223 F:      drivers/hid/hid-nintendo*
16224
16225 NIOS2 ARCHITECTURE
16226 M:      Dinh Nguyen <[email protected]>
16227 S:      Maintained
16228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
16229 F:      arch/nios2/
16230
16231 NITRO ENCLAVES (NE)
16232 M:      Alexandru Ciobotaru <[email protected]>
16233 L:      [email protected]
16234 L:      The AWS Nitro Enclaves Team <[email protected]>
16235 S:      Supported
16236 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
16237 F:      Documentation/virt/ne_overview.rst
16238 F:      drivers/virt/nitro_enclaves/
16239 F:      include/linux/nitro_enclaves.h
16240 F:      include/uapi/linux/nitro_enclaves.h
16241 F:      samples/nitro_enclaves/
16242
16243 NITRO SECURE MODULE (NSM)
16244 M:      Alexander Graf <[email protected]>
16245 L:      [email protected]
16246 L:      The AWS Nitro Enclaves Team <[email protected]>
16247 S:      Supported
16248 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
16249 F:      drivers/misc/nsm.c
16250 F:      include/uapi/linux/nsm.h
16251
16252 NOHZ, DYNTICKS SUPPORT
16253 M:      Anna-Maria Behnsen <[email protected]>
16254 M:      Frederic Weisbecker <[email protected]>
16255 M:      Ingo Molnar <[email protected]>
16256 M:      Thomas Gleixner <[email protected]>
16257 L:      [email protected]
16258 S:      Maintained
16259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
16260 F:      include/linux/sched/nohz.h
16261 F:      include/linux/tick.h
16262 F:      kernel/time/tick*.*
16263
16264 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
16265 M:      Pavel Machek <[email protected]>
16266 M:      Sakari Ailus <[email protected]>
16267 L:      [email protected]
16268 S:      Maintained
16269 F:      drivers/media/i2c/ad5820.c
16270 F:      drivers/media/i2c/et8ek8
16271
16272 NOKIA N900 POWER SUPPLY DRIVERS
16273 R:      Pali Rohár <[email protected]>
16274 F:      drivers/power/supply/bq2415x_charger.c
16275 F:      drivers/power/supply/bq27xxx_battery.c
16276 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16277 F:      drivers/power/supply/isp1704_charger.c
16278 F:      drivers/power/supply/rx51_battery.c
16279 F:      include/linux/power/bq2415x_charger.h
16280 F:      include/linux/power/bq27xxx_battery.h
16281
16282 NOLIBC HEADER FILE
16283 M:      Willy Tarreau <[email protected]>
16284 M:      Thomas Weißschuh <[email protected]>
16285 S:      Maintained
16286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nolibc/linux-nolibc.git
16287 F:      tools/include/nolibc/
16288 F:      tools/testing/selftests/nolibc/
16289
16290 NOVATEK NVT-TS I2C TOUCHSCREEN DRIVER
16291 M:      Hans de Goede <[email protected]>
16292 L:      [email protected]
16293 S:      Maintained
16294 F:      drivers/input/touchscreen/novatek-nvt-ts.c
16295
16296 NSDEPS
16297 M:      Matthias Maennich <[email protected]>
16298 S:      Maintained
16299 F:      Documentation/core-api/symbol-namespaces.rst
16300 F:      scripts/nsdeps
16301
16302 NTB AMD DRIVER
16303 M:      Sanjay R Mehta <[email protected]>
16304 M:      Shyam Sundar S K <[email protected]>
16305 L:      [email protected]
16306 S:      Supported
16307 F:      drivers/ntb/hw/amd/
16308
16309 NTB DRIVER CORE
16310 M:      Jon Mason <[email protected]>
16311 M:      Dave Jiang <[email protected]>
16312 M:      Allen Hubbe <[email protected]>
16313 L:      [email protected]
16314 S:      Supported
16315 W:      https://github.com/jonmason/ntb/wiki
16316 T:      git https://github.com/jonmason/ntb.git
16317 F:      drivers/net/ntb_netdev.c
16318 F:      drivers/ntb/
16319 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
16320 F:      include/linux/ntb.h
16321 F:      include/linux/ntb_transport.h
16322 F:      tools/testing/selftests/ntb/
16323
16324 NTB IDT DRIVER
16325 M:      Serge Semin <[email protected]>
16326 L:      [email protected]
16327 S:      Supported
16328 F:      drivers/ntb/hw/idt/
16329
16330 NTB INTEL DRIVER
16331 M:      Dave Jiang <[email protected]>
16332 L:      [email protected]
16333 S:      Supported
16334 W:      https://github.com/davejiang/linux/wiki
16335 T:      git https://github.com/davejiang/linux.git
16336 F:      drivers/ntb/hw/intel/
16337
16338 NTFS3 FILESYSTEM
16339 M:      Konstantin Komarov <[email protected]>
16340 L:      [email protected]
16341 S:      Supported
16342 W:      http://www.paragon-software.com/
16343 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
16344 F:      Documentation/filesystems/ntfs3.rst
16345 F:      fs/ntfs3/
16346
16347 NUBUS SUBSYSTEM
16348 M:      Finn Thain <[email protected]>
16349 L:      [email protected]
16350 S:      Maintained
16351 F:      arch/*/include/asm/nubus.h
16352 F:      drivers/nubus/
16353 F:      include/linux/nubus.h
16354 F:      include/uapi/linux/nubus.h
16355
16356 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
16357 M:      Antonino Daplas <[email protected]>
16358 L:      [email protected]
16359 S:      Maintained
16360 F:      drivers/video/fbdev/nvidia/
16361 F:      drivers/video/fbdev/riva/
16362
16363 NVIDIA WMI EC BACKLIGHT DRIVER
16364 M:      Daniel Dadap <[email protected]>
16365 L:      [email protected]
16366 S:      Supported
16367 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
16368 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
16369
16370 NVM EXPRESS DRIVER
16371 M:      Keith Busch <[email protected]>
16372 M:      Jens Axboe <[email protected]>
16373 M:      Christoph Hellwig <[email protected]>
16374 M:      Sagi Grimberg <[email protected]>
16375 L:      [email protected]
16376 S:      Supported
16377 W:      http://git.infradead.org/nvme.git
16378 T:      git git://git.infradead.org/nvme.git
16379 F:      Documentation/nvme/
16380 F:      drivers/nvme/common/
16381 F:      drivers/nvme/host/
16382 F:      include/linux/nvme-*.h
16383 F:      include/linux/nvme.h
16384 F:      include/uapi/linux/nvme_ioctl.h
16385
16386 NVM EXPRESS FABRICS AUTHENTICATION
16387 M:      Hannes Reinecke <[email protected]>
16388 L:      [email protected]
16389 S:      Supported
16390 F:      drivers/nvme/host/auth.c
16391 F:      drivers/nvme/target/auth.c
16392 F:      drivers/nvme/target/fabrics-cmd-auth.c
16393 F:      include/linux/nvme-auth.h
16394
16395 NVM EXPRESS FC TRANSPORT DRIVERS
16396 M:      James Smart <[email protected]>
16397 L:      [email protected]
16398 S:      Supported
16399 F:      drivers/nvme/host/fc.c
16400 F:      drivers/nvme/target/fc.c
16401 F:      drivers/nvme/target/fcloop.c
16402 F:      include/linux/nvme-fc-driver.h
16403 F:      include/linux/nvme-fc.h
16404
16405 NVM EXPRESS HARDWARE MONITORING SUPPORT
16406 M:      Guenter Roeck <[email protected]>
16407 L:      [email protected]
16408 S:      Supported
16409 F:      drivers/nvme/host/hwmon.c
16410
16411 NVM EXPRESS TARGET DRIVER
16412 M:      Christoph Hellwig <[email protected]>
16413 M:      Sagi Grimberg <[email protected]>
16414 M:      Chaitanya Kulkarni <[email protected]>
16415 L:      [email protected]
16416 S:      Supported
16417 W:      http://git.infradead.org/nvme.git
16418 T:      git git://git.infradead.org/nvme.git
16419 F:      drivers/nvme/target/
16420
16421 NVMEM FRAMEWORK
16422 M:      Srinivas Kandagatla <[email protected]>
16423 S:      Maintained
16424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
16425 F:      Documentation/ABI/stable/sysfs-bus-nvmem
16426 F:      Documentation/devicetree/bindings/nvmem/
16427 F:      drivers/nvmem/
16428 F:      include/linux/nvmem-consumer.h
16429 F:      include/linux/nvmem-provider.h
16430
16431 NXP BLUETOOTH WIRELESS DRIVERS
16432 M:      Amitkumar Karwar <[email protected]>
16433 M:      Neeraj Kale <[email protected]>
16434 S:      Maintained
16435 F:      Documentation/devicetree/bindings/net/bluetooth/nxp,88w8987-bt.yaml
16436 F:      drivers/bluetooth/btnxpuart.c
16437
16438 NXP C45 TJA11XX PHY DRIVER
16439 M:      Andrei Botila <[email protected]>
16440 L:      [email protected]
16441 S:      Maintained
16442 F:      drivers/net/phy/nxp-c45-tja11xx*
16443
16444 NXP FSPI DRIVER
16445 M:      Han Xu <[email protected]>
16446 M:      Haibo Chen <[email protected]>
16447 R:      Yogesh Gaur <[email protected]>
16448 L:      [email protected]
16449 L:      [email protected]
16450 S:      Maintained
16451 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
16452 F:      drivers/spi/spi-nxp-fspi.c
16453
16454 NXP FXAS21002C DRIVER
16455 M:      Rui Miguel Silva <[email protected]>
16456 L:      [email protected]
16457 S:      Maintained
16458 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
16459 F:      drivers/iio/gyro/fxas21002c.h
16460 F:      drivers/iio/gyro/fxas21002c_core.c
16461 F:      drivers/iio/gyro/fxas21002c_i2c.c
16462 F:      drivers/iio/gyro/fxas21002c_spi.c
16463
16464 NXP i.MX 7D/6SX/6UL/93 AND VF610 ADC DRIVER
16465 M:      Haibo Chen <[email protected]>
16466 L:      [email protected]
16467 L:      [email protected]
16468 S:      Maintained
16469 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
16470 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
16471 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx93-adc.yaml
16472 F:      drivers/iio/adc/imx7d_adc.c
16473 F:      drivers/iio/adc/imx93_adc.c
16474 F:      drivers/iio/adc/vf610_adc.c
16475
16476 NXP i.MX 8M ISI DRIVER
16477 M:      Laurent Pinchart <[email protected]>
16478 L:      [email protected]
16479 S:      Maintained
16480 F:      Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
16481 F:      drivers/media/platform/nxp/imx8-isi/
16482
16483 NXP i.MX 8MP DW100 V4L2 DRIVER
16484 M:      Xavier Roumegue <[email protected]>
16485 L:      [email protected]
16486 S:      Maintained
16487 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
16488 F:      Documentation/userspace-api/media/drivers/dw100.rst
16489 F:      drivers/media/platform/nxp/dw100/
16490 F:      include/uapi/linux/dw100.h
16491
16492 NXP i.MX 8MQ DCSS DRIVER
16493 M:      Laurentiu Palcu <[email protected]>
16494 R:      Lucas Stach <[email protected]>
16495 L:      [email protected]
16496 S:      Maintained
16497 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
16498 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
16499 F:      drivers/gpu/drm/imx/dcss/
16500
16501 NXP i.MX 8QXP ADC DRIVER
16502 M:      Cai Huoqing <[email protected]>
16503 M:      Haibo Chen <[email protected]>
16504 L:      [email protected]
16505 L:      [email protected]
16506 S:      Maintained
16507 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
16508 F:      drivers/iio/adc/imx8qxp-adc.c
16509
16510 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
16511 M:      Mirela Rabulea <[email protected]>
16512 L:      [email protected]
16513 L:      [email protected]
16514 S:      Maintained
16515 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
16516 F:      drivers/media/platform/nxp/imx-jpeg
16517
16518 NXP i.MX CLOCK DRIVERS
16519 M:      Abel Vesa <[email protected]>
16520 R:      Peng Fan <[email protected]>
16521 L:      [email protected]
16522 L:      [email protected]
16523 S:      Maintained
16524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
16525 F:      Documentation/devicetree/bindings/clock/imx*
16526 F:      drivers/clk/imx/
16527 F:      include/dt-bindings/clock/imx*
16528
16529 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
16530 M:      Jagan Teki <[email protected]>
16531 S:      Maintained
16532 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
16533 F:      drivers/regulator/pf8x00-regulator.c
16534
16535 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
16536 M:      Krzysztof Kozlowski <[email protected]>
16537 L:      [email protected]
16538 S:      Maintained
16539 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
16540 F:      drivers/extcon/extcon-ptn5150.c
16541
16542 NXP SGTL5000 DRIVER
16543 M:      Fabio Estevam <[email protected]>
16544 L:      [email protected] (moderated for non-subscribers)
16545 S:      Maintained
16546 F:      Documentation/devicetree/bindings/sound/fsl,sgtl5000.yaml
16547 F:      sound/soc/codecs/sgtl5000*
16548
16549 NXP SJA1105 ETHERNET SWITCH DRIVER
16550 M:      Vladimir Oltean <[email protected]>
16551 L:      [email protected]
16552 S:      Maintained
16553 F:      drivers/net/dsa/sja1105
16554 F:      drivers/net/pcs/pcs-xpcs-nxp.c
16555
16556 NXP TDA998X DRM DRIVER
16557 M:      Russell King <[email protected]>
16558 S:      Maintained
16559 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
16560 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
16561 F:      drivers/gpu/drm/i2c/tda998x_drv.c
16562 F:      include/drm/i2c/tda998x.h
16563 F:      include/dt-bindings/display/tda998x.h
16564 K:      "nxp,tda998x"
16565
16566 NXP TFA9879 DRIVER
16567 M:      Peter Rosin <[email protected]>
16568 L:      [email protected] (moderated for non-subscribers)
16569 S:      Maintained
16570 F:      Documentation/devicetree/bindings/sound/nxp,tfa9879.yaml
16571 F:      sound/soc/codecs/tfa9879*
16572
16573 NXP-NCI NFC DRIVER
16574 S:      Orphan
16575 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
16576 F:      drivers/nfc/nxp-nci
16577
16578 NXP/Goodix TFA989X (TFA1) DRIVER
16579 M:      Stephan Gerhold <[email protected]>
16580 L:      [email protected] (moderated for non-subscribers)
16581 S:      Maintained
16582 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
16583 F:      sound/soc/codecs/tfa989x.c
16584
16585 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
16586 M:      Jonas Malaco <[email protected]>
16587 L:      [email protected]
16588 S:      Maintained
16589 F:      Documentation/hwmon/nzxt-kraken2.rst
16590 F:      drivers/hwmon/nzxt-kraken2.c
16591
16592 NZXT-KRAKEN3 HARDWARE MONITORING DRIVER
16593 M:      Jonas Malaco <[email protected]>
16594 M:      Aleksa Savic <[email protected]>
16595 L:      [email protected]
16596 S:      Maintained
16597 F:      Documentation/hwmon/nzxt-kraken3.rst
16598 F:      drivers/hwmon/nzxt-kraken3.c
16599
16600 NZXT-SMART2 HARDWARE MONITORING DRIVER
16601 M:      Aleksandr Mezin <[email protected]>
16602 L:      [email protected]
16603 S:      Maintained
16604 F:      Documentation/hwmon/nzxt-smart2.rst
16605 F:      drivers/hwmon/nzxt-smart2.c
16606
16607 OBJAGG
16608 M:      Jiri Pirko <[email protected]>
16609 L:      [email protected]
16610 S:      Supported
16611 F:      include/linux/objagg.h
16612 F:      lib/objagg.c
16613 F:      lib/test_objagg.c
16614
16615 OBJPOOL
16616 M:      Matt Wu <[email protected]>
16617 S:      Supported
16618 F:      include/linux/objpool.h
16619 F:      lib/objpool.c
16620 F:      lib/test_objpool.c
16621
16622 OBJTOOL
16623 M:      Josh Poimboeuf <[email protected]>
16624 M:      Peter Zijlstra <[email protected]>
16625 S:      Supported
16626 F:      include/linux/objtool*.h
16627 F:      tools/objtool/
16628
16629 OCELOT ETHERNET SWITCH DRIVER
16630 M:      Vladimir Oltean <[email protected]>
16631 M:      Claudiu Manoil <[email protected]>
16632 M:      Alexandre Belloni <[email protected]>
16633 M:      [email protected]
16634 L:      [email protected]
16635 S:      Supported
16636 F:      drivers/net/dsa/ocelot/*
16637 F:      drivers/net/ethernet/mscc/
16638 F:      include/soc/mscc/ocelot*
16639 F:      net/dsa/tag_ocelot.c
16640 F:      net/dsa/tag_ocelot_8021q.c
16641 F:      tools/testing/selftests/drivers/net/ocelot/*
16642
16643 OCELOT EXTERNAL SWITCH CONTROL
16644 M:      Colin Foster <[email protected]>
16645 S:      Supported
16646 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
16647 F:      drivers/mfd/ocelot*
16648 F:      drivers/net/dsa/ocelot/ocelot_ext.c
16649 F:      include/linux/mfd/ocelot.h
16650
16651 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
16652 M:      Frederic Barrat <[email protected]>
16653 M:      Andrew Donnellan <[email protected]>
16654 L:      [email protected]
16655 S:      Supported
16656 F:      Documentation/userspace-api/accelerators/ocxl.rst
16657 F:      arch/powerpc/include/asm/pnv-ocxl.h
16658 F:      arch/powerpc/platforms/powernv/ocxl.c
16659 F:      drivers/misc/ocxl/
16660 F:      include/misc/ocxl*
16661 F:      include/uapi/misc/ocxl.h
16662
16663 OMAP AUDIO SUPPORT
16664 M:      Peter Ujfalusi <[email protected]>
16665 M:      Jarkko Nikula <[email protected]>
16666 L:      [email protected] (moderated for non-subscribers)
16667 L:      [email protected]
16668 S:      Maintained
16669 F:      sound/soc/ti/n810.c
16670 F:      sound/soc/ti/omap*
16671 F:      sound/soc/ti/rx51.c
16672 F:      sound/soc/ti/sdma-pcm.*
16673
16674 OMAP CLOCK FRAMEWORK SUPPORT
16675 M:      Paul Walmsley <[email protected]>
16676 L:      [email protected]
16677 S:      Maintained
16678 F:      arch/arm/*omap*/*clock*
16679
16680 OMAP DEVICE TREE SUPPORT
16681 M:      Tony Lindgren <[email protected]>
16682 L:      [email protected]
16683 L:      [email protected]
16684 S:      Maintained
16685 F:      arch/arm/boot/dts/ti/omap/
16686
16687 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
16688 L:      [email protected]
16689 L:      [email protected]
16690 S:      Orphan
16691 F:      Documentation/arch/arm/omap/dss.rst
16692 F:      drivers/video/fbdev/omap2/
16693
16694 OMAP FRAMEBUFFER SUPPORT
16695 L:      [email protected]
16696 L:      [email protected]
16697 S:      Orphan
16698 F:      drivers/video/fbdev/omap/
16699
16700 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
16701 M:      Roger Quadros <[email protected]>
16702 M:      Tony Lindgren <[email protected]>
16703 L:      [email protected]
16704 S:      Maintained
16705 F:      arch/arm/mach-omap2/*gpmc*
16706 F:      drivers/memory/omap-gpmc.c
16707
16708 OMAP GPIO DRIVER
16709 M:      Grygorii Strashko <[email protected]>
16710 M:      Santosh Shilimkar <[email protected]>
16711 M:      Kevin Hilman <[email protected]>
16712 L:      [email protected]
16713 S:      Maintained
16714 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
16715 F:      drivers/gpio/gpio-omap.c
16716
16717 OMAP HARDWARE SPINLOCK SUPPORT
16718 L:      [email protected]
16719 S:      Orphan
16720 F:      drivers/hwspinlock/omap_hwspinlock.c
16721
16722 OMAP HS MMC SUPPORT
16723 L:      [email protected]
16724 L:      [email protected]
16725 S:      Orphan
16726 F:      drivers/mmc/host/omap_hsmmc.c
16727
16728 OMAP HWMOD DATA
16729 M:      Paul Walmsley <[email protected]>
16730 L:      [email protected]
16731 S:      Maintained
16732 F:      arch/arm/mach-omap2/omap_hwmod*data*
16733
16734 OMAP HWMOD SUPPORT
16735 M:      Paul Walmsley <[email protected]>
16736 L:      [email protected]
16737 S:      Maintained
16738 F:      arch/arm/mach-omap2/omap_hwmod.*
16739
16740 OMAP I2C DRIVER
16741 M:      Vignesh R <[email protected]>
16742 L:      [email protected]
16743 L:      [email protected]
16744 S:      Maintained
16745 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
16746 F:      drivers/i2c/busses/i2c-omap.c
16747
16748 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
16749 M:      Laurent Pinchart <[email protected]>
16750 L:      [email protected]
16751 S:      Maintained
16752 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
16753 F:      drivers/media/platform/ti/omap3isp/
16754 F:      drivers/staging/media/omap4iss/
16755
16756 OMAP MMC SUPPORT
16757 M:      Aaro Koskinen <[email protected]>
16758 L:      [email protected]
16759 S:      Odd Fixes
16760 F:      drivers/mmc/host/omap.c
16761
16762 OMAP POWER MANAGEMENT SUPPORT
16763 M:      Kevin Hilman <[email protected]>
16764 L:      [email protected]
16765 S:      Maintained
16766 F:      arch/arm/*omap*/*pm*
16767 F:      drivers/cpufreq/omap-cpufreq.c
16768
16769 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
16770 M:      Paul Walmsley <[email protected]>
16771 L:      [email protected]
16772 S:      Maintained
16773 F:      arch/arm/mach-omap2/prm*
16774
16775 OMAP RANDOM NUMBER GENERATOR SUPPORT
16776 M:      Deepak Saxena <[email protected]>
16777 S:      Maintained
16778 F:      drivers/char/hw_random/omap-rng.c
16779
16780 OMAP USB SUPPORT
16781 L:      [email protected]
16782 L:      [email protected]
16783 S:      Orphan
16784 F:      arch/arm/*omap*/usb*
16785 F:      drivers/usb/*/*omap*
16786
16787 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
16788 M:      Mark Jackson <[email protected]>
16789 L:      [email protected]
16790 S:      Maintained
16791 F:      arch/arm/boot/dts/ti/omap/am335x-nano.dts
16792
16793 OMAP1 SUPPORT
16794 M:      Aaro Koskinen <[email protected]>
16795 M:      Janusz Krzysztofik <[email protected]>
16796 R:      Tony Lindgren <[email protected]>
16797 L:      [email protected]
16798 S:      Maintained
16799 Q:      http://patchwork.kernel.org/project/linux-omap/list/
16800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
16801 F:      arch/arm/configs/omap1_defconfig
16802 F:      arch/arm/mach-omap1/
16803 F:      drivers/i2c/busses/i2c-omap.c
16804 F:      include/linux/platform_data/ams-delta-fiq.h
16805 F:      include/linux/platform_data/i2c-omap.h
16806
16807 OMAP2+ SUPPORT
16808 M:      Aaro Koskinen <[email protected]>
16809 M:      Andreas Kemnade <[email protected]>
16810 M:      Kevin Hilman <[email protected]>
16811 M:      Roger Quadros <[email protected]>
16812 M:      Tony Lindgren <[email protected]>
16813 L:      [email protected]
16814 S:      Maintained
16815 W:      http://linux.omap.com/
16816 Q:      http://patchwork.kernel.org/project/linux-omap/list/
16817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
16818 F:      Documentation/devicetree/bindings/arm/ti/omap.yaml
16819 F:      arch/arm/configs/omap2plus_defconfig
16820 F:      arch/arm/mach-omap2/
16821 F:      drivers/bus/omap*.[ch]
16822 F:      drivers/bus/ti-sysc.c
16823 F:      drivers/gpio/gpio-tps65219.c
16824 F:      drivers/i2c/busses/i2c-omap.c
16825 F:      drivers/irqchip/irq-omap-intc.c
16826 F:      drivers/mfd/*omap*.c
16827 F:      drivers/mfd/menelaus.c
16828 F:      drivers/mfd/palmas.c
16829 F:      drivers/mfd/tps65217.c
16830 F:      drivers/mfd/tps65218.c
16831 F:      drivers/mfd/tps65219.c
16832 F:      drivers/mfd/tps65910.c
16833 F:      drivers/mfd/twl-core.[ch]
16834 F:      drivers/mfd/twl4030*.c
16835 F:      drivers/mfd/twl6030*.c
16836 F:      drivers/mfd/twl6040*.c
16837 F:      drivers/regulator/palmas-regulator*.c
16838 F:      drivers/regulator/pbias-regulator.c
16839 F:      drivers/regulator/tps65217-regulator.c
16840 F:      drivers/regulator/tps65218-regulator.c
16841 F:      drivers/regulator/tps65219-regulator.c
16842 F:      drivers/regulator/tps65910-regulator.c
16843 F:      drivers/regulator/twl-regulator.c
16844 F:      drivers/regulator/twl6030-regulator.c
16845 F:      include/linux/platform_data/i2c-omap.h
16846 F:      include/linux/platform_data/ti-sysc.h
16847
16848 OMFS FILESYSTEM
16849 M:      Bob Copeland <[email protected]>
16850 L:      [email protected]
16851 S:      Maintained
16852 F:      Documentation/filesystems/omfs.rst
16853 F:      fs/omfs/
16854
16855 OMNIVISION OG01A1B SENSOR DRIVER
16856 M:      Sakari Ailus <[email protected]>
16857 L:      [email protected]
16858 S:      Maintained
16859 F:      drivers/media/i2c/og01a1b.c
16860
16861 OMNIVISION OV01A10 SENSOR DRIVER
16862 M:      Bingbu Cao <[email protected]>
16863 L:      [email protected]
16864 S:      Maintained
16865 T:      git git://linuxtv.org/media_tree.git
16866 F:      drivers/media/i2c/ov01a10.c
16867
16868 OMNIVISION OV02A10 SENSOR DRIVER
16869 L:      [email protected]
16870 S:      Orphan
16871 T:      git git://linuxtv.org/media_tree.git
16872 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
16873 F:      drivers/media/i2c/ov02a10.c
16874
16875 OMNIVISION OV08D10 SENSOR DRIVER
16876 M:      Jimmy Su <[email protected]>
16877 L:      [email protected]
16878 S:      Maintained
16879 T:      git git://linuxtv.org/media_tree.git
16880 F:      drivers/media/i2c/ov08d10.c
16881
16882 OMNIVISION OV08X40 SENSOR DRIVER
16883 M:      Jason Chen <[email protected]>
16884 L:      [email protected]
16885 S:      Maintained
16886 T:      git git://linuxtv.org/media_tree.git
16887 F:      drivers/media/i2c/ov08x40.c
16888
16889 OMNIVISION OV13858 SENSOR DRIVER
16890 M:      Sakari Ailus <[email protected]>
16891 L:      [email protected]
16892 S:      Maintained
16893 T:      git git://linuxtv.org/media_tree.git
16894 F:      drivers/media/i2c/ov13858.c
16895
16896 OMNIVISION OV13B10 SENSOR DRIVER
16897 M:      Arec Kao <[email protected]>
16898 L:      [email protected]
16899 S:      Maintained
16900 T:      git git://linuxtv.org/media_tree.git
16901 F:      drivers/media/i2c/ov13b10.c
16902
16903 OMNIVISION OV2680 SENSOR DRIVER
16904 M:      Rui Miguel Silva <[email protected]>
16905 M:      Hans de Goede <[email protected]>
16906 L:      [email protected]
16907 S:      Maintained
16908 T:      git git://linuxtv.org/media_tree.git
16909 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
16910 F:      drivers/media/i2c/ov2680.c
16911
16912 OMNIVISION OV2685 SENSOR DRIVER
16913 M:      Shunqian Zheng <[email protected]>
16914 L:      [email protected]
16915 S:      Maintained
16916 T:      git git://linuxtv.org/media_tree.git
16917 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2685.yaml
16918 F:      drivers/media/i2c/ov2685.c
16919
16920 OMNIVISION OV2740 SENSOR DRIVER
16921 M:      Tianshu Qiu <[email protected]>
16922 R:      Sakari Ailus <[email protected]>
16923 R:      Bingbu Cao <[email protected]>
16924 L:      [email protected]
16925 S:      Maintained
16926 T:      git git://linuxtv.org/media_tree.git
16927 F:      drivers/media/i2c/ov2740.c
16928
16929 OMNIVISION OV4689 SENSOR DRIVER
16930 M:      Mikhail Rudenko <[email protected]>
16931 L:      [email protected]
16932 S:      Maintained
16933 T:      git git://linuxtv.org/media_tree.git
16934 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
16935 F:      drivers/media/i2c/ov4689.c
16936
16937 OMNIVISION OV5640 SENSOR DRIVER
16938 M:      Steve Longerbeam <[email protected]>
16939 L:      [email protected]
16940 S:      Maintained
16941 T:      git git://linuxtv.org/media_tree.git
16942 F:      drivers/media/i2c/ov5640.c
16943
16944 OMNIVISION OV5647 SENSOR DRIVER
16945 M:      Dave Stevenson <[email protected]>
16946 M:      Jacopo Mondi <[email protected]>
16947 L:      [email protected]
16948 S:      Maintained
16949 T:      git git://linuxtv.org/media_tree.git
16950 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
16951 F:      drivers/media/i2c/ov5647.c
16952
16953 OMNIVISION OV5670 SENSOR DRIVER
16954 M:      Sakari Ailus <[email protected]>
16955 L:      [email protected]
16956 S:      Maintained
16957 T:      git git://linuxtv.org/media_tree.git
16958 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5670.yaml
16959 F:      drivers/media/i2c/ov5670.c
16960
16961 OMNIVISION OV5675 SENSOR DRIVER
16962 M:      Sakari Ailus <[email protected]>
16963 L:      [email protected]
16964 S:      Maintained
16965 T:      git git://linuxtv.org/media_tree.git
16966 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5675.yaml
16967 F:      drivers/media/i2c/ov5675.c
16968
16969 OMNIVISION OV5693 SENSOR DRIVER
16970 M:      Daniel Scally <[email protected]>
16971 L:      [email protected]
16972 S:      Maintained
16973 T:      git git://linuxtv.org/media_tree.git
16974 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
16975 F:      drivers/media/i2c/ov5693.c
16976
16977 OMNIVISION OV5695 SENSOR DRIVER
16978 M:      Shunqian Zheng <[email protected]>
16979 L:      [email protected]
16980 S:      Maintained
16981 T:      git git://linuxtv.org/media_tree.git
16982 F:      drivers/media/i2c/ov5695.c
16983
16984 OMNIVISION OV64A40 SENSOR DRIVER
16985 M:      Jacopo Mondi <[email protected]>
16986 L:      [email protected]
16987 S:      Maintained
16988 T:      git git://linuxtv.org/media_tree.git
16989 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov64a40.yaml
16990 F:      drivers/media/i2c/ov64a40.c
16991
16992 OMNIVISION OV7670 SENSOR DRIVER
16993 L:      [email protected]
16994 S:      Orphan
16995 T:      git git://linuxtv.org/media_tree.git
16996 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
16997 F:      drivers/media/i2c/ov7670.c
16998
16999 OMNIVISION OV772x SENSOR DRIVER
17000 M:      Jacopo Mondi <[email protected]>
17001 L:      [email protected]
17002 S:      Odd fixes
17003 T:      git git://linuxtv.org/media_tree.git
17004 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
17005 F:      drivers/media/i2c/ov772x.c
17006 F:      include/media/i2c/ov772x.h
17007
17008 OMNIVISION OV7740 SENSOR DRIVER
17009 L:      [email protected]
17010 S:      Orphan
17011 T:      git git://linuxtv.org/media_tree.git
17012 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
17013 F:      drivers/media/i2c/ov7740.c
17014
17015 OMNIVISION OV8856 SENSOR DRIVER
17016 M:      Sakari Ailus <[email protected]>
17017 L:      [email protected]
17018 S:      Maintained
17019 T:      git git://linuxtv.org/media_tree.git
17020 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov8856.yaml
17021 F:      drivers/media/i2c/ov8856.c
17022
17023 OMNIVISION OV8858 SENSOR DRIVER
17024 M:      Jacopo Mondi <[email protected]>
17025 M:      Nicholas Roth <[email protected]>
17026 L:      [email protected]
17027 S:      Maintained
17028 T:      git git://linuxtv.org/media_tree.git
17029 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov8858.yaml
17030 F:      drivers/media/i2c/ov8858.c
17031
17032 OMNIVISION OV9282 SENSOR DRIVER
17033 M:      Dave Stevenson <[email protected]>
17034 L:      [email protected]
17035 S:      Maintained
17036 T:      git git://linuxtv.org/media_tree.git
17037 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
17038 F:      drivers/media/i2c/ov9282.c
17039
17040 OMNIVISION OV9640 SENSOR DRIVER
17041 M:      Petr Cvek <[email protected]>
17042 L:      [email protected]
17043 S:      Maintained
17044 F:      drivers/media/i2c/ov9640.*
17045
17046 OMNIVISION OV9650 SENSOR DRIVER
17047 M:      Sakari Ailus <[email protected]>
17048 R:      Akinobu Mita <[email protected]>
17049 R:      Sylwester Nawrocki <[email protected]>
17050 L:      [email protected]
17051 S:      Maintained
17052 T:      git git://linuxtv.org/media_tree.git
17053 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
17054 F:      drivers/media/i2c/ov9650.c
17055
17056 OMNIVISION OV9734 SENSOR DRIVER
17057 M:      Tianshu Qiu <[email protected]>
17058 R:      Bingbu Cao <[email protected]>
17059 L:      [email protected]
17060 S:      Maintained
17061 T:      git git://linuxtv.org/media_tree.git
17062 F:      drivers/media/i2c/ov9734.c
17063
17064 ONBOARD USB HUB DRIVER
17065 M:      Matthias Kaehlcke <[email protected]>
17066 L:      [email protected]
17067 S:      Maintained
17068 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-dev
17069 F:      drivers/usb/misc/onboard_usb_dev.c
17070
17071 ONENAND FLASH DRIVER
17072 M:      Kyungmin Park <[email protected]>
17073 L:      [email protected]
17074 S:      Maintained
17075 F:      drivers/mtd/nand/onenand/
17076 F:      include/linux/mtd/onenand*.h
17077
17078 ONEXPLAYER FAN DRIVER
17079 M:      Derek John Clark <[email protected]>
17080 M:      Joaquín Ignacio Aramendía <[email protected]>
17081 L:      [email protected]
17082 S:      Maintained
17083 F:      drivers/hwmon/oxp-sensors.c
17084
17085 ONIE TLV NVMEM LAYOUT DRIVER
17086 M:      Miquel Raynal <[email protected]>
17087 S:      Maintained
17088 F:      Documentation/devicetree/bindings/nvmem/layouts/onie,tlv-layout.yaml
17089 F:      drivers/nvmem/layouts/onie-tlv.c
17090
17091 ONION OMEGA2+ BOARD
17092 M:      Harvey Hunt <[email protected]>
17093 L:      [email protected]
17094 S:      Maintained
17095 F:      arch/mips/boot/dts/ralink/omega2p.dts
17096
17097 ONSEMI ETHERNET PHY DRIVERS
17098 M:      Piergiorgio Beruto <[email protected]>
17099 L:      [email protected]
17100 S:      Supported
17101 W:      http://www.onsemi.com
17102 F:      drivers/net/phy/ncn*
17103
17104 OP-TEE DRIVER
17105 M:      Jens Wiklander <[email protected]>
17106 L:      [email protected]
17107 S:      Maintained
17108 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
17109 F:      drivers/tee/optee/
17110
17111 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
17112 M:      Sumit Garg <[email protected]>
17113 L:      [email protected]
17114 S:      Maintained
17115 F:      drivers/char/hw_random/optee-rng.c
17116
17117 OP-TEE RTC DRIVER
17118 M:      Clément Léger <[email protected]>
17119 L:      [email protected]
17120 S:      Maintained
17121 F:      drivers/rtc/rtc-optee.c
17122
17123 OPA-VNIC DRIVER
17124 M:      Dennis Dalessandro <[email protected]>
17125 L:      [email protected]
17126 S:      Supported
17127 F:      drivers/infiniband/ulp/opa_vnic
17128
17129 OPEN ALLIANCE 10BASE-T1S MACPHY SERIAL INTERFACE FRAMEWORK
17130 M:      Parthiban Veerasooran <[email protected]>
17131 L:      [email protected]
17132 S:      Maintained
17133 F:      Documentation/networking/oa-tc6-framework.rst
17134 F:      drivers/include/linux/oa_tc6.h
17135 F:      drivers/net/ethernet/oa_tc6.c
17136
17137 OPEN FIRMWARE AND FLATTENED DEVICE TREE
17138 M:      Rob Herring <[email protected]>
17139 M:      Saravana Kannan <[email protected]>
17140 L:      [email protected]
17141 S:      Maintained
17142 W:      http://www.devicetree.org/
17143 C:      irc://irc.libera.chat/devicetree
17144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
17145 F:      Documentation/ABI/testing/sysfs-firmware-ofw
17146 F:      drivers/of/
17147 F:      include/linux/of*.h
17148 F:      scripts/dtc/
17149 F:      tools/testing/selftests/dt/
17150 K:      of_overlay_notifier_
17151 K:      of_overlay_fdt_apply
17152 K:      of_overlay_remove
17153
17154 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
17155 M:      Rob Herring <[email protected]>
17156 M:      Krzysztof Kozlowski <[email protected]>
17157 M:      Conor Dooley <[email protected]>
17158 L:      [email protected]
17159 S:      Maintained
17160 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
17161 C:      irc://irc.libera.chat/devicetree
17162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
17163 F:      Documentation/devicetree/
17164 F:      arch/*/boot/dts/
17165 F:      include/dt-bindings/
17166
17167 OPENCOMPUTE PTP CLOCK DRIVER
17168 M:      Jonathan Lemon <[email protected]>
17169 M:      Vadim Fedorenko <[email protected]>
17170 L:      [email protected]
17171 S:      Maintained
17172 F:      drivers/ptp/ptp_ocp.c
17173
17174 OPENCORES I2C BUS DRIVER
17175 M:      Peter Korsgaard <[email protected]>
17176 M:      Andrew Lunn <[email protected]>
17177 L:      [email protected]
17178 S:      Maintained
17179 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
17180 F:      Documentation/i2c/busses/i2c-ocores.rst
17181 F:      drivers/i2c/busses/i2c-ocores.c
17182 F:      include/linux/platform_data/i2c-ocores.h
17183
17184 OPENRISC ARCHITECTURE
17185 M:      Jonas Bonn <[email protected]>
17186 M:      Stefan Kristiansson <[email protected]>
17187 M:      Stafford Horne <[email protected]>
17188 L:      [email protected]
17189 S:      Maintained
17190 W:      http://openrisc.io
17191 T:      git https://github.com/openrisc/linux.git
17192 F:      Documentation/arch/openrisc/
17193 F:      Documentation/devicetree/bindings/openrisc/
17194 F:      arch/openrisc/
17195 F:      drivers/irqchip/irq-ompic.c
17196 F:      drivers/irqchip/irq-or1k-*
17197
17198 OPENVSWITCH
17199 M:      Pravin B Shelar <[email protected]>
17200 L:      [email protected]
17201 L:      [email protected]
17202 S:      Maintained
17203 W:      http://openvswitch.org
17204 F:      include/uapi/linux/openvswitch.h
17205 F:      net/openvswitch/
17206 F:      tools/testing/selftests/net/openvswitch/
17207
17208 OPERATING PERFORMANCE POINTS (OPP)
17209 M:      Viresh Kumar <[email protected]>
17210 M:      Nishanth Menon <[email protected]>
17211 M:      Stephen Boyd <[email protected]>
17212 L:      [email protected]
17213 S:      Maintained
17214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
17215 F:      Documentation/devicetree/bindings/opp/
17216 F:      Documentation/power/opp.rst
17217 F:      drivers/opp/
17218 F:      include/linux/pm_opp.h
17219
17220 OPL4 DRIVER
17221 M:      Clemens Ladisch <[email protected]>
17222 L:      [email protected] (moderated for non-subscribers)
17223 S:      Maintained
17224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17225 F:      sound/drivers/opl4/
17226
17227 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
17228 M:      Mark Fasheh <[email protected]>
17229 M:      Joel Becker <[email protected]>
17230 M:      Joseph Qi <[email protected]>
17231 L:      [email protected]
17232 S:      Supported
17233 W:      http://ocfs2.wiki.kernel.org
17234 F:      Documentation/filesystems/dlmfs.rst
17235 F:      Documentation/filesystems/ocfs2.rst
17236 F:      fs/ocfs2/
17237
17238 ORANGEFS FILESYSTEM
17239 M:      Mike Marshall <[email protected]>
17240 R:      Martin Brandenburg <[email protected]>
17241 L:      [email protected]
17242 S:      Supported
17243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
17244 F:      Documentation/filesystems/orangefs.rst
17245 F:      fs/orangefs/
17246
17247 OV2659 OMNIVISION SENSOR DRIVER
17248 M:      "Lad, Prabhakar" <[email protected]>
17249 L:      [email protected]
17250 S:      Maintained
17251 W:      https://linuxtv.org
17252 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17253 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17254 F:      drivers/media/i2c/ov2659.c
17255 F:      include/media/i2c/ov2659.h
17256
17257 OVERLAY FILESYSTEM
17258 M:      Miklos Szeredi <[email protected]>
17259 M:      Amir Goldstein <[email protected]>
17260 L:      [email protected]
17261 S:      Supported
17262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/overlayfs/vfs.git
17263 F:      Documentation/filesystems/overlayfs.rst
17264 F:      fs/overlayfs/
17265
17266 P54 WIRELESS DRIVER
17267 M:      Christian Lamparter <[email protected]>
17268 L:      [email protected]
17269 S:      Maintained
17270 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
17271 F:      drivers/net/wireless/intersil/p54/
17272
17273 PACKET SOCKETS
17274 M:      Willem de Bruijn <[email protected]>
17275 S:      Maintained
17276 F:      include/uapi/linux/if_packet.h
17277 F:      net/packet/af_packet.c
17278
17279 PACKING
17280 M:      Vladimir Oltean <[email protected]>
17281 L:      [email protected]
17282 S:      Supported
17283 F:      Documentation/core-api/packing.rst
17284 F:      include/linux/packing.h
17285 F:      lib/packing.c
17286
17287 PADATA PARALLEL EXECUTION MECHANISM
17288 M:      Steffen Klassert <[email protected]>
17289 M:      Daniel Jordan <[email protected]>
17290 L:      [email protected]
17291 L:      [email protected]
17292 S:      Maintained
17293 F:      Documentation/core-api/padata.rst
17294 F:      include/linux/padata.h
17295 F:      kernel/padata.c
17296
17297 PAGE CACHE
17298 M:      Matthew Wilcox (Oracle) <[email protected]>
17299 L:      [email protected]
17300 S:      Supported
17301 T:      git git://git.infradead.org/users/willy/pagecache.git
17302 F:      Documentation/filesystems/locking.rst
17303 F:      Documentation/filesystems/vfs.rst
17304 F:      include/linux/pagemap.h
17305 F:      mm/filemap.c
17306 F:      mm/page-writeback.c
17307 F:      mm/readahead.c
17308 F:      mm/truncate.c
17309
17310 PAGE POOL
17311 M:      Jesper Dangaard Brouer <[email protected]>
17312 M:      Ilias Apalodimas <[email protected]>
17313 L:      [email protected]
17314 S:      Supported
17315 F:      Documentation/networking/page_pool.rst
17316 F:      include/net/page_pool/
17317 F:      include/trace/events/page_pool.h
17318 F:      net/core/page_pool.c
17319
17320 PAGE TABLE CHECK
17321 M:      Pasha Tatashin <[email protected]>
17322 M:      Andrew Morton <[email protected]>
17323 L:      [email protected]
17324 S:      Maintained
17325 F:      Documentation/mm/page_table_check.rst
17326 F:      include/linux/page_table_check.h
17327 F:      mm/page_table_check.c
17328
17329 PANASONIC LAPTOP ACPI EXTRAS DRIVER
17330 M:      Kenneth Chan <[email protected]>
17331 L:      [email protected]
17332 S:      Maintained
17333 F:      drivers/platform/x86/panasonic-laptop.c
17334
17335 PARALLAX PING IIO SENSOR DRIVER
17336 M:      Andreas Klinger <[email protected]>
17337 L:      [email protected]
17338 S:      Maintained
17339 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
17340 F:      drivers/iio/proximity/ping.c
17341
17342 PARALLEL LCD/KEYPAD PANEL DRIVER
17343 M:      Willy Tarreau <[email protected]>
17344 M:      Ksenija Stanojevic <[email protected]>
17345 S:      Odd Fixes
17346 F:      Documentation/admin-guide/lcd-panel-cgram.rst
17347 F:      drivers/auxdisplay/panel.c
17348
17349 PARALLEL PORT SUBSYSTEM
17350 M:      Sudip Mukherjee <[email protected]>
17351 M:      Sudip Mukherjee <[email protected]>
17352 L:      [email protected] (subscribers-only)
17353 S:      Maintained
17354 F:      Documentation/driver-api/parport*.rst
17355 F:      drivers/char/ppdev.c
17356 F:      drivers/parport/
17357 F:      include/linux/parport*.h
17358 F:      include/uapi/linux/ppdev.h
17359
17360 PARAVIRT_OPS INTERFACE
17361 M:      Juergen Gross <[email protected]>
17362 R:      Ajay Kaher <[email protected]>
17363 R:      Alexey Makhalov <[email protected]>
17364 R:      Broadcom internal kernel review list <[email protected]>
17365 L:      [email protected]
17366 L:      [email protected]
17367 S:      Supported
17368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17369 F:      Documentation/virt/paravirt_ops.rst
17370 F:      arch/*/include/asm/paravirt*.h
17371 F:      arch/*/kernel/paravirt*
17372 F:      include/linux/hypervisor.h
17373
17374 PARISC ARCHITECTURE
17375 M:      "James E.J. Bottomley" <[email protected]>
17376 M:      Helge Deller <[email protected]>
17377 L:      [email protected]
17378 S:      Maintained
17379 W:      https://parisc.wiki.kernel.org
17380 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
17381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
17382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
17383 F:      Documentation/arch/parisc/
17384 F:      arch/parisc/
17385 F:      drivers/char/agp/parisc-agp.c
17386 F:      drivers/input/misc/hp_sdc_rtc.c
17387 F:      drivers/input/serio/gscps2.c
17388 F:      drivers/input/serio/hp_sdc*
17389 F:      drivers/parisc/
17390 F:      drivers/parport/parport_gsc.*
17391 F:      drivers/tty/serial/8250/8250_parisc.c
17392 F:      drivers/video/console/sti*
17393 F:      drivers/video/fbdev/sti*
17394 F:      drivers/video/logo/logo_parisc*
17395 F:      include/linux/hp_sdc.h
17396
17397 PARMAN
17398 M:      Jiri Pirko <[email protected]>
17399 L:      [email protected]
17400 S:      Supported
17401 F:      include/linux/parman.h
17402 F:      lib/parman.c
17403 F:      lib/test_parman.c
17404
17405 PC ENGINES APU BOARD DRIVER
17406 M:      Enrico Weigelt, metux IT consult <[email protected]>
17407 S:      Maintained
17408 F:      drivers/platform/x86/pcengines-apuv2.c
17409
17410 PC87360 HARDWARE MONITORING DRIVER
17411 M:      Jim Cromie <[email protected]>
17412 L:      [email protected]
17413 S:      Maintained
17414 F:      Documentation/hwmon/pc87360.rst
17415 F:      drivers/hwmon/pc87360.c
17416
17417 PC8736x GPIO DRIVER
17418 M:      Jim Cromie <[email protected]>
17419 S:      Maintained
17420 F:      drivers/char/pc8736x_gpio.c
17421
17422 PC87427 HARDWARE MONITORING DRIVER
17423 M:      Jean Delvare <[email protected]>
17424 L:      [email protected]
17425 S:      Maintained
17426 F:      Documentation/hwmon/pc87427.rst
17427 F:      drivers/hwmon/pc87427.c
17428
17429 PCA9532 LED DRIVER
17430 M:      Riku Voipio <[email protected]>
17431 S:      Maintained
17432 F:      drivers/leds/leds-pca9532.c
17433 F:      include/linux/leds-pca9532.h
17434
17435 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
17436 M:      Thomas Petazzoni <[email protected]>
17437 M:      Pali Rohár <[email protected]>
17438 L:      [email protected]
17439 L:      [email protected] (moderated for non-subscribers)
17440 S:      Maintained
17441 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
17442 F:      drivers/pci/controller/pci-aardvark.c
17443
17444 PCI DRIVER FOR ALTERA PCIE IP
17445 M:      Joyce Ooi <[email protected]>
17446 L:      [email protected]
17447 S:      Supported
17448 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
17449 F:      drivers/pci/controller/pcie-altera.c
17450
17451 PCI DRIVER FOR APPLIEDMICRO XGENE
17452 M:      Toan Le <[email protected]>
17453 L:      [email protected]
17454 L:      [email protected] (moderated for non-subscribers)
17455 S:      Maintained
17456 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
17457 F:      drivers/pci/controller/pci-xgene.c
17458
17459 PCI DRIVER FOR ARM VERSATILE PLATFORM
17460 M:      Rob Herring <[email protected]>
17461 L:      [email protected]
17462 L:      [email protected] (moderated for non-subscribers)
17463 S:      Maintained
17464 F:      Documentation/devicetree/bindings/pci/versatile.yaml
17465 F:      drivers/pci/controller/pci-versatile.c
17466
17467 PCI DRIVER FOR ARMADA 8K
17468 M:      Thomas Petazzoni <[email protected]>
17469 L:      [email protected]
17470 L:      [email protected] (moderated for non-subscribers)
17471 S:      Maintained
17472 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
17473 F:      drivers/pci/controller/dwc/pcie-armada8k.c
17474
17475 PCI DRIVER FOR CADENCE PCIE IP
17476 L:      [email protected]
17477 S:      Orphan
17478 F:      Documentation/devicetree/bindings/pci/cdns,*
17479 F:      drivers/pci/controller/cadence/*cadence*
17480
17481 PCI DRIVER FOR FREESCALE LAYERSCAPE
17482 M:      Minghuan Lian <[email protected]>
17483 M:      Mingkai Hu <[email protected]>
17484 M:      Roy Zang <[email protected]>
17485 L:      [email protected]
17486 L:      [email protected]
17487 L:      [email protected] (moderated for non-subscribers)
17488 L:      [email protected]
17489 S:      Maintained
17490 F:      drivers/pci/controller/dwc/*layerscape*
17491
17492 PCI DRIVER FOR FU740
17493 M:      Paul Walmsley <[email protected]>
17494 M:      Greentime Hu <[email protected]>
17495 M:      Samuel Holland <[email protected]>
17496 L:      [email protected]
17497 S:      Maintained
17498 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
17499 F:      drivers/pci/controller/dwc/pcie-fu740.c
17500
17501 PCI DRIVER FOR GENERIC OF HOSTS
17502 M:      Will Deacon <[email protected]>
17503 L:      [email protected]
17504 L:      [email protected] (moderated for non-subscribers)
17505 S:      Maintained
17506 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
17507 F:      drivers/pci/controller/pci-host-common.c
17508 F:      drivers/pci/controller/pci-host-generic.c
17509
17510 PCI DRIVER FOR IMX6
17511 M:      Richard Zhu <[email protected]>
17512 M:      Lucas Stach <[email protected]>
17513 L:      [email protected]
17514 L:      [email protected] (moderated for non-subscribers)
17515 L:      [email protected]
17516 S:      Maintained
17517 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-common.yaml
17518 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-ep.yaml
17519 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
17520 F:      drivers/pci/controller/dwc/*imx6*
17521
17522 PCI DRIVER FOR INTEL IXP4XX
17523 M:      Linus Walleij <[email protected]>
17524 S:      Maintained
17525 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
17526 F:      drivers/pci/controller/pci-ixp4xx.c
17527
17528 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
17529 M:      Nirmal Patel <[email protected]>
17530 R:      Jonathan Derrick <[email protected]>
17531 L:      [email protected]
17532 S:      Supported
17533 F:      drivers/pci/controller/vmd.c
17534
17535 PCI DRIVER FOR MICROSEMI SWITCHTEC
17536 M:      Kurt Schwemmer <[email protected]>
17537 M:      Logan Gunthorpe <[email protected]>
17538 L:      [email protected]
17539 S:      Maintained
17540 F:      Documentation/ABI/testing/sysfs-class-switchtec
17541 F:      Documentation/driver-api/switchtec.rst
17542 F:      drivers/ntb/hw/mscc/
17543 F:      drivers/pci/switch/switchtec*
17544 F:      include/linux/switchtec.h
17545 F:      include/uapi/linux/switchtec_ioctl.h
17546
17547 PCI DRIVER FOR MOBIVEIL PCIE IP
17548 M:      Karthikeyan Mitran <[email protected]>
17549 M:      Hou Zhiqiang <[email protected]>
17550 L:      [email protected]
17551 S:      Supported
17552 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
17553 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
17554
17555 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
17556 M:      Thomas Petazzoni <[email protected]>
17557 M:      Pali Rohár <[email protected]>
17558 L:      [email protected]
17559 L:      [email protected] (moderated for non-subscribers)
17560 S:      Maintained
17561 F:      drivers/pci/controller/*mvebu*
17562
17563 PCI DRIVER FOR NVIDIA TEGRA
17564 M:      Thierry Reding <[email protected]>
17565 L:      [email protected]
17566 L:      [email protected]
17567 S:      Supported
17568 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
17569 F:      drivers/pci/controller/pci-tegra.c
17570
17571 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
17572 M:      Hou Zhiqiang <[email protected]>
17573 L:      [email protected]
17574 L:      [email protected] (moderated for non-subscribers)
17575 S:      Maintained
17576 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
17577 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
17578
17579 PCI DRIVER FOR PLDA PCIE IP
17580 M:      Daire McNamara <[email protected]>
17581 L:      [email protected]
17582 S:      Maintained
17583 F:      Documentation/devicetree/bindings/pci/plda,xpressrich3-axi-common.yaml
17584 F:      drivers/pci/controller/plda/pcie-plda-host.c
17585 F:      drivers/pci/controller/plda/pcie-plda.h
17586
17587 PCI DRIVER FOR RENESAS R-CAR
17588 M:      Marek Vasut <[email protected]>
17589 M:      Yoshihiro Shimoda <[email protected]>
17590 L:      [email protected]
17591 L:      [email protected]
17592 S:      Maintained
17593 F:      Documentation/devicetree/bindings/pci/*rcar*
17594 F:      drivers/pci/controller/*rcar*
17595 F:      drivers/pci/controller/dwc/*rcar*
17596
17597 PCI DRIVER FOR SAMSUNG EXYNOS
17598 M:      Jingoo Han <[email protected]>
17599 L:      [email protected]
17600 L:      [email protected] (moderated for non-subscribers)
17601 L:      [email protected]
17602 S:      Maintained
17603 F:      drivers/pci/controller/dwc/pci-exynos.c
17604
17605 PCI DRIVER FOR SYNOPSYS DESIGNWARE
17606 M:      Jingoo Han <[email protected]>
17607 M:      Manivannan Sadhasivam <[email protected]>
17608 L:      [email protected]
17609 S:      Maintained
17610 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
17611 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
17612 F:      drivers/pci/controller/dwc/*designware*
17613
17614 PCI DRIVER FOR TI DRA7XX/J721E
17615 M:      Vignesh Raghavendra <[email protected]>
17616 R:      Siddharth Vadapalli <[email protected]>
17617 L:      [email protected]
17618 L:      [email protected]
17619 L:      [email protected] (moderated for non-subscribers)
17620 S:      Supported
17621 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
17622 F:      drivers/pci/controller/cadence/pci-j721e.c
17623 F:      drivers/pci/controller/dwc/pci-dra7xx.c
17624
17625 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
17626 M:      Linus Walleij <[email protected]>
17627 L:      [email protected]
17628 S:      Maintained
17629 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
17630 F:      drivers/pci/controller/pci-v3-semi.c
17631
17632 PCI DRIVER FOR XILINX VERSAL CPM
17633 M:      Bharat Kumar Gogada <[email protected]>
17634 M:      Michal Simek <[email protected]>
17635 L:      [email protected]
17636 S:      Maintained
17637 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
17638 F:      drivers/pci/controller/pcie-xilinx-cpm.c
17639
17640 PCI ENDPOINT SUBSYSTEM
17641 M:      Manivannan Sadhasivam <[email protected]>
17642 M:      Krzysztof Wilczyński <[email protected]>
17643 R:      Kishon Vijay Abraham I <[email protected]>
17644 L:      [email protected]
17645 S:      Supported
17646 Q:      https://patchwork.kernel.org/project/linux-pci/list/
17647 B:      https://bugzilla.kernel.org
17648 C:      irc://irc.oftc.net/linux-pci
17649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
17650 F:      Documentation/PCI/endpoint/*
17651 F:      Documentation/misc-devices/pci-endpoint-test.rst
17652 F:      drivers/misc/pci_endpoint_test.c
17653 F:      drivers/pci/endpoint/
17654 F:      tools/pci/
17655
17656 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
17657 M:      Mahesh J Salgaonkar <[email protected]>
17658 R:      Oliver O'Halloran <[email protected]>
17659 L:      [email protected]
17660 S:      Supported
17661 F:      Documentation/PCI/pci-error-recovery.rst
17662 F:      Documentation/arch/powerpc/eeh-pci-error-recovery.rst
17663 F:      arch/powerpc/include/*/eeh*.h
17664 F:      arch/powerpc/kernel/eeh*.c
17665 F:      arch/powerpc/platforms/*/eeh*.c
17666 F:      drivers/pci/pcie/aer.c
17667 F:      drivers/pci/pcie/dpc.c
17668 F:      drivers/pci/pcie/err.c
17669
17670 PCI ERROR RECOVERY
17671 M:      Linas Vepstas <[email protected]>
17672 L:      [email protected]
17673 S:      Supported
17674 F:      Documentation/PCI/pci-error-recovery.rst
17675
17676 PCI MSI DRIVER FOR ALTERA MSI IP
17677 M:      Joyce Ooi <[email protected]>
17678 L:      [email protected]
17679 S:      Supported
17680 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
17681 F:      drivers/pci/controller/pcie-altera-msi.c
17682
17683 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
17684 M:      Toan Le <[email protected]>
17685 L:      [email protected]
17686 L:      [email protected] (moderated for non-subscribers)
17687 S:      Maintained
17688 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
17689 F:      drivers/pci/controller/pci-xgene-msi.c
17690
17691 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
17692 M:      Lorenzo Pieralisi <[email protected]>
17693 M:      Krzysztof Wilczyński <[email protected]>
17694 R:      Manivannan Sadhasivam <[email protected]>
17695 R:      Rob Herring <[email protected]>
17696 L:      [email protected]
17697 S:      Supported
17698 Q:      https://patchwork.kernel.org/project/linux-pci/list/
17699 B:      https://bugzilla.kernel.org
17700 C:      irc://irc.oftc.net/linux-pci
17701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
17702 F:      Documentation/devicetree/bindings/pci/
17703 F:      drivers/pci/controller/
17704 F:      drivers/pci/pci-bridge-emul.c
17705 F:      drivers/pci/pci-bridge-emul.h
17706
17707 PCI PEER-TO-PEER DMA (P2PDMA)
17708 M:      Bjorn Helgaas <[email protected]>
17709 M:      Logan Gunthorpe <[email protected]>
17710 L:      [email protected]
17711 S:      Supported
17712 Q:      https://patchwork.kernel.org/project/linux-pci/list/
17713 B:      https://bugzilla.kernel.org
17714 C:      irc://irc.oftc.net/linux-pci
17715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
17716 F:      Documentation/driver-api/pci/p2pdma.rst
17717 F:      drivers/pci/p2pdma.c
17718 F:      include/linux/pci-p2pdma.h
17719
17720 PCI POWER CONTROL
17721 M:      Bartosz Golaszewski <[email protected]>
17722 L:      [email protected]
17723 S:      Maintained
17724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
17725 F:      drivers/pci/pwrctl/*
17726 F:      include/linux/pci-pwrctl.h
17727
17728 PCI SUBSYSTEM
17729 M:      Bjorn Helgaas <[email protected]>
17730 L:      [email protected]
17731 S:      Supported
17732 Q:      https://patchwork.kernel.org/project/linux-pci/list/
17733 B:      https://bugzilla.kernel.org
17734 C:      irc://irc.oftc.net/linux-pci
17735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
17736 F:      Documentation/PCI/
17737 F:      Documentation/devicetree/bindings/pci/
17738 F:      arch/x86/kernel/early-quirks.c
17739 F:      arch/x86/kernel/quirks.c
17740 F:      arch/x86/pci/
17741 F:      drivers/acpi/pci*
17742 F:      drivers/pci/
17743 F:      include/asm-generic/pci*
17744 F:      include/linux/of_pci.h
17745 F:      include/linux/pci*
17746 F:      include/uapi/linux/pci*
17747
17748 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
17749 M:      Jonathan Chocron <[email protected]>
17750 L:      [email protected]
17751 S:      Maintained
17752 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
17753 F:      drivers/pci/controller/dwc/pcie-al.c
17754
17755 PCIE DRIVER FOR AMLOGIC MESON
17756 M:      Yue Wang <[email protected]>
17757 L:      [email protected]
17758 L:      [email protected]
17759 S:      Maintained
17760 F:      drivers/pci/controller/dwc/pci-meson.c
17761
17762 PCIE DRIVER FOR AXIS ARTPEC
17763 M:      Jesper Nilsson <[email protected]>
17764 L:      [email protected]
17765 L:      [email protected]
17766 S:      Maintained
17767 F:      Documentation/devicetree/bindings/pci/axis,artpec*
17768 F:      drivers/pci/controller/dwc/*artpec*
17769
17770 PCIE DRIVER FOR CAVIUM THUNDERX
17771 M:      Robert Richter <[email protected]>
17772 L:      [email protected]
17773 L:      [email protected] (moderated for non-subscribers)
17774 S:      Odd Fixes
17775 F:      drivers/pci/controller/pci-thunder-*
17776
17777 PCIE DRIVER FOR HISILICON
17778 M:      Zhou Wang <[email protected]>
17779 L:      [email protected]
17780 S:      Maintained
17781 F:      drivers/pci/controller/dwc/pcie-hisi.c
17782
17783 PCIE DRIVER FOR HISILICON KIRIN
17784 M:      Xiaowei Song <[email protected]>
17785 M:      Binghui Wang <[email protected]>
17786 L:      [email protected]
17787 S:      Maintained
17788 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
17789 F:      drivers/pci/controller/dwc/pcie-kirin.c
17790
17791 PCIE DRIVER FOR HISILICON STB
17792 M:      Shawn Guo <[email protected]>
17793 L:      [email protected]
17794 S:      Maintained
17795 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
17796 F:      drivers/pci/controller/dwc/pcie-histb.c
17797
17798 PCIE DRIVER FOR INTEL KEEM BAY
17799 M:      Srikanth Thokala <[email protected]>
17800 L:      [email protected]
17801 S:      Supported
17802 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
17803 F:      drivers/pci/controller/dwc/pcie-keembay.c
17804
17805 PCIE DRIVER FOR INTEL LGM GW SOC
17806 M:      Chuanhua Lei <[email protected]>
17807 L:      [email protected]
17808 S:      Maintained
17809 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
17810 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
17811
17812 PCIE DRIVER FOR MEDIATEK
17813 M:      Ryder Lee <[email protected]>
17814 M:      Jianjun Wang <[email protected]>
17815 L:      [email protected]
17816 L:      [email protected] (moderated for non-subscribers)
17817 S:      Supported
17818 F:      Documentation/devicetree/bindings/pci/mediatek*
17819 F:      drivers/pci/controller/*mediatek*
17820
17821 PCIE DRIVER FOR MICROCHIP
17822 M:      Daire McNamara <[email protected]>
17823 L:      [email protected]
17824 S:      Supported
17825 F:      Documentation/devicetree/bindings/pci/microchip*
17826 F:      drivers/pci/controller/plda/*microchip*
17827
17828 PCIE DRIVER FOR QUALCOMM MSM
17829 M:      Manivannan Sadhasivam <[email protected]>
17830 L:      [email protected]
17831 L:      [email protected]
17832 S:      Maintained
17833 F:      drivers/pci/controller/dwc/pcie-qcom.c
17834
17835 PCIE DRIVER FOR ROCKCHIP
17836 M:      Shawn Lin <[email protected]>
17837 L:      [email protected]
17838 L:      [email protected]
17839 S:      Maintained
17840 F:      Documentation/devicetree/bindings/pci/rockchip,rk3399-pcie*
17841 F:      drivers/pci/controller/pcie-rockchip*
17842
17843 PCIE DRIVER FOR SOCIONEXT UNIPHIER
17844 M:      Kunihiko Hayashi <[email protected]>
17845 L:      [email protected]
17846 S:      Maintained
17847 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
17848 F:      drivers/pci/controller/dwc/pcie-uniphier*
17849
17850 PCIE DRIVER FOR ST SPEAR13XX
17851 M:      Pratyush Anand <[email protected]>
17852 L:      [email protected]
17853 S:      Maintained
17854 F:      drivers/pci/controller/dwc/*spear*
17855
17856 PCIE DRIVER FOR STARFIVE JH71x0
17857 M:      Kevin Xie <[email protected]>
17858 L:      [email protected]
17859 S:      Maintained
17860 F:      Documentation/devicetree/bindings/pci/starfive,jh7110-pcie.yaml
17861 F:      drivers/pci/controller/plda/pcie-starfive.c
17862
17863 PCIE ENDPOINT DRIVER FOR QUALCOMM
17864 M:      Manivannan Sadhasivam <[email protected]>
17865 L:      [email protected]
17866 L:      [email protected]
17867 S:      Maintained
17868 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
17869 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
17870
17871 PCMCIA SUBSYSTEM
17872 M:      Dominik Brodowski <[email protected]>
17873 S:      Odd Fixes
17874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
17875 F:      Documentation/pcmcia/
17876 F:      drivers/pcmcia/
17877 F:      include/pcmcia/
17878 F:      tools/pcmcia/
17879
17880 PCNET32 NETWORK DRIVER
17881 M:      Don Fry <[email protected]>
17882 L:      [email protected]
17883 S:      Maintained
17884 F:      drivers/net/ethernet/amd/pcnet32.c
17885
17886 PCRYPT PARALLEL CRYPTO ENGINE
17887 M:      Steffen Klassert <[email protected]>
17888 L:      [email protected]
17889 S:      Maintained
17890 F:      crypto/pcrypt.c
17891 F:      include/crypto/pcrypt.h
17892
17893 PDS DSC VIRTIO DATA PATH ACCELERATOR
17894 R:      Shannon Nelson <[email protected]>
17895 F:      drivers/vdpa/pds/
17896
17897 PECI HARDWARE MONITORING DRIVERS
17898 M:      Iwona Winiarska <[email protected]>
17899 L:      [email protected]
17900 S:      Supported
17901 F:      Documentation/hwmon/peci-cputemp.rst
17902 F:      Documentation/hwmon/peci-dimmtemp.rst
17903 F:      drivers/hwmon/peci/
17904
17905 PECI SUBSYSTEM
17906 M:      Iwona Winiarska <[email protected]>
17907 L:      [email protected] (moderated for non-subscribers)
17908 S:      Supported
17909 F:      Documentation/devicetree/bindings/peci/
17910 F:      Documentation/peci/
17911 F:      drivers/peci/
17912 F:      include/linux/peci-cpu.h
17913 F:      include/linux/peci.h
17914
17915 PENSANDO ETHERNET DRIVERS
17916 M:      Shannon Nelson <[email protected]>
17917 M:      Brett Creeley <[email protected]>
17918 L:      [email protected]
17919 S:      Supported
17920 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
17921 F:      drivers/net/ethernet/pensando/
17922
17923 PER-CPU MEMORY ALLOCATOR
17924 M:      Dennis Zhou <[email protected]>
17925 M:      Tejun Heo <[email protected]>
17926 M:      Christoph Lameter <[email protected]>
17927 L:      [email protected]
17928 S:      Maintained
17929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
17930 F:      arch/*/include/asm/percpu.h
17931 F:      include/linux/percpu*.h
17932 F:      lib/percpu*.c
17933 F:      mm/percpu*.c
17934
17935 PER-TASK DELAY ACCOUNTING
17936 M:      Balbir Singh <[email protected]>
17937 S:      Maintained
17938 F:      include/linux/delayacct.h
17939 F:      kernel/delayacct.c
17940
17941 PERFORMANCE EVENTS SUBSYSTEM
17942 M:      Peter Zijlstra <[email protected]>
17943 M:      Ingo Molnar <[email protected]>
17944 M:      Arnaldo Carvalho de Melo <[email protected]>
17945 M:      Namhyung Kim <[email protected]>
17946 R:      Mark Rutland <[email protected]>
17947 R:      Alexander Shishkin <[email protected]>
17948 R:      Jiri Olsa <[email protected]>
17949 R:      Ian Rogers <[email protected]>
17950 R:      Adrian Hunter <[email protected]>
17951 R:      "Liang, Kan" <[email protected]>
17952 L:      [email protected]
17953 L:      [email protected]
17954 S:      Supported
17955 W:      https://perf.wiki.kernel.org/
17956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/perf/perf-tools.git perf-tools
17958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/perf/perf-tools-next.git perf-tools-next
17959 F:      arch/*/events/*
17960 F:      arch/*/events/*/*
17961 F:      arch/*/include/asm/perf_event.h
17962 F:      arch/*/kernel/*/*/perf_event*.c
17963 F:      arch/*/kernel/*/perf_event*.c
17964 F:      arch/*/kernel/perf_callchain.c
17965 F:      arch/*/kernel/perf_event*.c
17966 F:      include/linux/perf_event.h
17967 F:      include/uapi/linux/perf_event.h
17968 F:      kernel/events/*
17969 F:      tools/lib/perf/
17970 F:      tools/perf/
17971
17972 PERFORMANCE EVENTS TOOLING ARM64
17973 R:      John Garry <[email protected]>
17974 R:      Will Deacon <[email protected]>
17975 R:      James Clark <[email protected]>
17976 R:      Mike Leach <[email protected]>
17977 R:      Leo Yan <[email protected]>
17978 L:      [email protected] (moderated for non-subscribers)
17979 S:      Supported
17980 F:      tools/build/feature/test-libopencsd.c
17981 F:      tools/perf/arch/arm*/
17982 F:      tools/perf/pmu-events/arch/arm64/
17983 F:      tools/perf/util/arm-spe*
17984 F:      tools/perf/util/cs-etm*
17985
17986 PERSONALITY HANDLING
17987 M:      Christoph Hellwig <[email protected]>
17988 L:      [email protected]
17989 S:      Maintained
17990 F:      include/linux/personality.h
17991 F:      include/uapi/linux/personality.h
17992
17993 PHOENIX RC FLIGHT CONTROLLER ADAPTER
17994 M:      Marcus Folkesson <[email protected]>
17995 L:      [email protected]
17996 S:      Maintained
17997 F:      Documentation/input/devices/pxrc.rst
17998 F:      drivers/input/joystick/pxrc.c
17999
18000 PHONET PROTOCOL
18001 M:      Remi Denis-Courmont <[email protected]>
18002 S:      Supported
18003 F:      Documentation/networking/phonet.rst
18004 F:      include/linux/phonet.h
18005 F:      include/net/phonet/
18006 F:      include/uapi/linux/phonet.h
18007 F:      net/phonet/
18008
18009 PHRAM MTD DRIVER
18010 M:      Joern Engel <[email protected]>
18011 L:      [email protected]
18012 S:      Maintained
18013 F:      drivers/mtd/devices/phram.c
18014
18015 PICOLCD HID DRIVER
18016 M:      Bruno Prémont <[email protected]>
18017 L:      [email protected]
18018 S:      Maintained
18019 F:      drivers/hid/hid-picolcd*
18020
18021 PIDFD API
18022 M:      Christian Brauner <[email protected]>
18023 L:      [email protected]
18024 S:      Maintained
18025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
18026 F:      samples/pidfd/
18027 F:      tools/testing/selftests/clone3/
18028 F:      tools/testing/selftests/pid_namespace/
18029 F:      tools/testing/selftests/pidfd/
18030 K:      (?i)pidfd
18031 K:      (?i)clone3
18032 K:      \b(clone_args|kernel_clone_args)\b
18033
18034 PIN CONTROL SUBSYSTEM
18035 M:      Linus Walleij <[email protected]>
18036 L:      [email protected]
18037 S:      Maintained
18038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
18039 F:      Documentation/devicetree/bindings/pinctrl/
18040 F:      Documentation/driver-api/pin-control.rst
18041 F:      drivers/pinctrl/
18042 F:      include/dt-bindings/pinctrl/
18043 F:      include/linux/pinctrl/
18044
18045 PIN CONTROLLER - AMD
18046 M:      Basavaraj Natikar <[email protected]>
18047 M:      Shyam Sundar S K <[email protected]>
18048 S:      Maintained
18049 F:      drivers/pinctrl/pinctrl-amd.c
18050
18051 PIN CONTROLLER - FREESCALE
18052 M:      Dong Aisheng <[email protected]>
18053 M:      Fabio Estevam <[email protected]>
18054 M:      Shawn Guo <[email protected]>
18055 M:      Jacky Bai <[email protected]>
18056 R:      Pengutronix Kernel Team <[email protected]>
18057 L:      [email protected]
18058 L:      NXP S32 Linux Team <[email protected]>
18059 S:      Maintained
18060 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
18061 F:      Documentation/devicetree/bindings/pinctrl/nxp,s32*
18062 F:      drivers/pinctrl/freescale/
18063 F:      drivers/pinctrl/nxp/
18064
18065 PIN CONTROLLER - INTEL
18066 M:      Mika Westerberg <[email protected]>
18067 M:      Andy Shevchenko <[email protected]>
18068 S:      Supported
18069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
18070 F:      drivers/pinctrl/intel/
18071
18072 PIN CONTROLLER - KEEMBAY
18073 M:      Lakshmi Sowjanya D <[email protected]>
18074 S:      Supported
18075 F:      drivers/pinctrl/pinctrl-keembay*
18076
18077 PIN CONTROLLER - MEDIATEK
18078 M:      Sean Wang <[email protected]>
18079 L:      [email protected] (moderated for non-subscribers)
18080 S:      Maintained
18081 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
18082 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
18083 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
18084 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
18085 F:      drivers/pinctrl/mediatek/
18086
18087 PIN CONTROLLER - MEDIATEK MIPS
18088 M:      Arınç ÜNAL <[email protected]>
18089 M:      Sergio Paracuellos <[email protected]>
18090 L:      [email protected] (moderated for non-subscribers)
18091 L:      [email protected]
18092 S:      Maintained
18093 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7620-pinctrl.yaml
18094 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7621-pinctrl.yaml
18095 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt76x8-pinctrl.yaml
18096 F:      Documentation/devicetree/bindings/pinctrl/ralink,rt2880-pinctrl.yaml
18097 F:      Documentation/devicetree/bindings/pinctrl/ralink,rt305x-pinctrl.yaml
18098 F:      Documentation/devicetree/bindings/pinctrl/ralink,rt3352-pinctrl.yaml
18099 F:      Documentation/devicetree/bindings/pinctrl/ralink,rt3883-pinctrl.yaml
18100 F:      Documentation/devicetree/bindings/pinctrl/ralink,rt5350-pinctrl.yaml
18101 F:      drivers/pinctrl/mediatek/pinctrl-mt7620.c
18102 F:      drivers/pinctrl/mediatek/pinctrl-mt7621.c
18103 F:      drivers/pinctrl/mediatek/pinctrl-mt76x8.c
18104 F:      drivers/pinctrl/mediatek/pinctrl-mtmips.*
18105 F:      drivers/pinctrl/mediatek/pinctrl-rt2880.c
18106 F:      drivers/pinctrl/mediatek/pinctrl-rt305x.c
18107 F:      drivers/pinctrl/mediatek/pinctrl-rt3883.c
18108
18109 PIN CONTROLLER - MICROCHIP AT91
18110 M:      Ludovic Desroches <[email protected]>
18111 L:      [email protected] (moderated for non-subscribers)
18112 L:      [email protected]
18113 S:      Supported
18114 F:      drivers/gpio/gpio-sama5d2-piobu.c
18115 F:      drivers/pinctrl/pinctrl-at91*
18116
18117 PIN CONTROLLER - QUALCOMM
18118 M:      Bjorn Andersson <[email protected]>
18119 L:      [email protected]
18120 S:      Maintained
18121 F:      Documentation/devicetree/bindings/pinctrl/qcom,*
18122 F:      drivers/pinctrl/qcom/
18123
18124 PIN CONTROLLER - RENESAS
18125 M:      Geert Uytterhoeven <[email protected]>
18126 L:      [email protected]
18127 S:      Supported
18128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
18129 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
18130 F:      drivers/pinctrl/renesas/
18131
18132 PIN CONTROLLER - SAMSUNG
18133 M:      Krzysztof Kozlowski <[email protected]>
18134 M:      Sylwester Nawrocki <[email protected]>
18135 R:      Alim Akhtar <[email protected]>
18136 L:      [email protected] (moderated for non-subscribers)
18137 L:      [email protected]
18138 S:      Maintained
18139 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
18140 B:      mailto:[email protected]
18141 C:      irc://irc.libera.chat/linux-exynos
18142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
18143 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
18144 F:      drivers/pinctrl/samsung/
18145
18146 PIN CONTROLLER - SINGLE
18147 M:      Tony Lindgren <[email protected]>
18148 M:      Haojian Zhuang <[email protected]>
18149 L:      [email protected] (moderated for non-subscribers)
18150 L:      [email protected]
18151 S:      Maintained
18152 F:      drivers/pinctrl/pinctrl-single.c
18153
18154 PIN CONTROLLER - SUNPLUS / TIBBO
18155 M:      Dvorkin Dmitry <[email protected]>
18156 M:      Wells Lu <[email protected]>
18157 L:      [email protected] (moderated for non-subscribers)
18158 S:      Maintained
18159 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
18160 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
18161 F:      drivers/pinctrl/sunplus/
18162 F:      include/dt-bindings/pinctrl/sppctl*.h
18163
18164 PINE64 PINEPHONE KEYBOARD DRIVER
18165 M:      Samuel Holland <[email protected]>
18166 S:      Supported
18167 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
18168 F:      drivers/input/keyboard/pinephone-keyboard.c
18169
18170 PKTCDVD DRIVER
18171 M:      [email protected]
18172 S:      Orphan
18173 F:      drivers/block/pktcdvd.c
18174 F:      include/linux/pktcdvd.h
18175 F:      include/uapi/linux/pktcdvd.h
18176
18177 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
18178 M:      Tomasz Duszynski <[email protected]>
18179 S:      Maintained
18180 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
18181 F:      drivers/iio/chemical/pms7003.c
18182
18183 PLCA RECONCILIATION SUBLAYER (IEEE802.3 Clause 148)
18184 M:      Piergiorgio Beruto <[email protected]>
18185 L:      [email protected]
18186 S:      Maintained
18187 F:      drivers/net/phy/mdio-open-alliance.h
18188 F:      net/ethtool/plca.c
18189
18190 PLDMFW LIBRARY
18191 M:      Jacob Keller <[email protected]>
18192 S:      Maintained
18193 F:      Documentation/driver-api/pldmfw/
18194 F:      include/linux/pldmfw.h
18195 F:      lib/pldmfw/
18196
18197 PLX DMA DRIVER
18198 M:      Logan Gunthorpe <[email protected]>
18199 S:      Maintained
18200 F:      drivers/dma/plx_dma.c
18201
18202 PM-GRAPH UTILITY
18203 M:      "Todd E Brandt" <[email protected]>
18204 L:      [email protected]
18205 S:      Supported
18206 W:      https://01.org/pm-graph
18207 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
18208 T:      git git://github.com/intel/pm-graph
18209 F:      tools/power/pm-graph
18210
18211 PM6764TR DRIVER
18212 M:      Charles Hsu     <[email protected]>
18213 L:      [email protected]
18214 S:      Maintained
18215 F:      Documentation/hwmon/pm6764tr.rst
18216 F:      drivers/hwmon/pmbus/pm6764tr.c
18217
18218 PMC SIERRA MaxRAID DRIVER
18219 L:      [email protected]
18220 S:      Orphan
18221 W:      http://www.pmc-sierra.com/
18222 F:      drivers/scsi/pmcraid.*
18223
18224 PMC SIERRA PM8001 DRIVER
18225 M:      Jack Wang <[email protected]>
18226 L:      [email protected]
18227 S:      Supported
18228 F:      drivers/scsi/pm8001/
18229
18230 PNI RM3100 IIO DRIVER
18231 M:      Song Qiang <[email protected]>
18232 L:      [email protected]
18233 S:      Maintained
18234 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
18235 F:      drivers/iio/magnetometer/rm3100*
18236
18237 PNP SUPPORT
18238 M:      "Rafael J. Wysocki" <[email protected]>
18239 L:      [email protected]
18240 S:      Maintained
18241 F:      drivers/pnp/
18242 F:      include/linux/pnp.h
18243
18244 POSIX CLOCKS and TIMERS
18245 M:      Anna-Maria Behnsen <[email protected]>
18246 M:      Frederic Weisbecker <[email protected]>
18247 M:      Thomas Gleixner <[email protected]>
18248 L:      [email protected]
18249 S:      Maintained
18250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18251 F:      fs/timerfd.c
18252 F:      include/linux/time_namespace.h
18253 F:      include/linux/timerfd.h
18254 F:      include/uapi/linux/time.h
18255 F:      include/uapi/linux/timerfd.h
18256 F:      include/trace/events/timer*
18257 F:      kernel/time/itimer.c
18258 F:      kernel/time/posix-*
18259 F:      kernel/time/namespace.c
18260
18261 POWER MANAGEMENT CORE
18262 M:      "Rafael J. Wysocki" <[email protected]>
18263 L:      [email protected]
18264 S:      Supported
18265 B:      https://bugzilla.kernel.org
18266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
18267 F:      drivers/base/power/
18268 F:      drivers/powercap/
18269 F:      include/linux/intel_rapl.h
18270 F:      include/linux/pm.h
18271 F:      include/linux/pm_*
18272 F:      include/linux/powercap.h
18273 F:      kernel/configs/nopm.config
18274
18275 POWER SEQUENCING
18276 M:      Bartosz Golaszewski <[email protected]>
18277 L:      [email protected]
18278 S:      Maintained
18279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
18280 F:      drivers/power/sequencing/
18281 F:      include/linux/pwrseq/
18282
18283 POWER STATE COORDINATION INTERFACE (PSCI)
18284 M:      Mark Rutland <[email protected]>
18285 M:      Lorenzo Pieralisi <[email protected]>
18286 L:      [email protected] (moderated for non-subscribers)
18287 S:      Maintained
18288 F:      drivers/firmware/psci/
18289 F:      include/linux/psci.h
18290 F:      include/uapi/linux/psci.h
18291
18292 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
18293 M:      Sebastian Reichel <[email protected]>
18294 L:      [email protected]
18295 S:      Maintained
18296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18297 F:      Documentation/ABI/testing/sysfs-class-power
18298 F:      Documentation/devicetree/bindings/power/supply/
18299 F:      drivers/power/supply/
18300 F:      include/linux/power/
18301 F:      include/linux/power_supply.h
18302 F:      tools/testing/selftests/power_supply/
18303
18304 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
18305 M:      Suraj Jitindar Singh <[email protected]>
18306 L:      [email protected]
18307 S:      Maintained
18308 F:      drivers/char/powernv-op-panel.c
18309
18310 PPP OVER ATM (RFC 2364)
18311 M:      Mitchell Blank Jr <[email protected]>
18312 S:      Maintained
18313 F:      include/uapi/linux/atmppp.h
18314 F:      net/atm/pppoatm.c
18315
18316 PPP OVER ETHERNET
18317 M:      Michal Ostrowski <[email protected]>
18318 S:      Maintained
18319 F:      drivers/net/ppp/pppoe.c
18320 F:      drivers/net/ppp/pppox.c
18321
18322 PPP OVER L2TP
18323 M:      James Chapman <[email protected]>
18324 S:      Maintained
18325 F:      include/linux/if_pppol2tp.h
18326 F:      include/uapi/linux/if_pppol2tp.h
18327 F:      net/l2tp/l2tp_ppp.c
18328
18329 PPP PROTOCOL DRIVERS AND COMPRESSORS
18330 L:      [email protected]
18331 S:      Orphan
18332 F:      drivers/net/ppp/ppp_*
18333
18334 PPS SUPPORT
18335 M:      Rodolfo Giometti <[email protected]>
18336 L:      [email protected] (subscribers-only)
18337 S:      Maintained
18338 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
18339 F:      Documentation/ABI/testing/sysfs-pps
18340 F:      Documentation/devicetree/bindings/pps/pps-gpio.yaml
18341 F:      Documentation/driver-api/pps.rst
18342 F:      drivers/pps/
18343 F:      include/linux/pps*.h
18344 F:      include/uapi/linux/pps.h
18345
18346 PPTP DRIVER
18347 M:      Dmitry Kozlov <[email protected]>
18348 L:      [email protected]
18349 S:      Maintained
18350 W:      http://sourceforge.net/projects/accel-pptp
18351 F:      drivers/net/ppp/pptp.c
18352
18353 PRESSURE STALL INFORMATION (PSI)
18354 M:      Johannes Weiner <[email protected]>
18355 M:      Suren Baghdasaryan <[email protected]>
18356 R:      Peter Ziljstra <[email protected]>
18357 S:      Maintained
18358 F:      include/linux/psi*
18359 F:      kernel/sched/psi.c
18360
18361 PRINTK
18362 M:      Petr Mladek <[email protected]>
18363 R:      Steven Rostedt <[email protected]>
18364 R:      John Ogness <[email protected]>
18365 R:      Sergey Senozhatsky <[email protected]>
18366 S:      Maintained
18367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
18368 F:      include/linux/printk.h
18369 F:      kernel/printk/
18370
18371 PRINTK INDEXING
18372 R:      Chris Down <[email protected]>
18373 S:      Maintained
18374 F:      Documentation/core-api/printk-index.rst
18375 F:      kernel/printk/index.c
18376 K:      printk_index
18377
18378 PROC FILESYSTEM
18379 L:      [email protected]
18380 L:      [email protected]
18381 S:      Maintained
18382 F:      Documentation/filesystems/proc.rst
18383 F:      fs/proc/
18384 F:      include/linux/proc_fs.h
18385 F:      tools/testing/selftests/proc/
18386
18387 PROC SYSCTL
18388 M:      Luis Chamberlain <[email protected]>
18389 M:      Kees Cook <[email protected]>
18390 M:      Joel Granados <[email protected]>
18391 L:      [email protected]
18392 L:      [email protected]
18393 S:      Maintained
18394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sysctl/sysctl.git sysctl-next
18395 F:      fs/proc/proc_sysctl.c
18396 F:      include/linux/sysctl.h
18397 F:      kernel/sysctl-test.c
18398 F:      kernel/sysctl.c
18399 F:      tools/testing/selftests/sysctl/
18400
18401 PS3 NETWORK SUPPORT
18402 M:      Geoff Levand <[email protected]>
18403 L:      [email protected]
18404 L:      [email protected]
18405 S:      Maintained
18406 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
18407
18408 PS3 PLATFORM SUPPORT
18409 M:      Geoff Levand <[email protected]>
18410 L:      [email protected]
18411 S:      Maintained
18412 F:      arch/powerpc/boot/ps3*
18413 F:      arch/powerpc/include/asm/lv1call.h
18414 F:      arch/powerpc/include/asm/ps3*.h
18415 F:      arch/powerpc/platforms/ps3/
18416 F:      drivers/*/ps3*
18417 F:      drivers/ps3/
18418 F:      drivers/rtc/rtc-ps3.c
18419 F:      drivers/usb/host/*ps3.c
18420 F:      sound/ppc/snd_ps3*
18421
18422 PS3VRAM DRIVER
18423 M:      Jim Paris <[email protected]>
18424 M:      Geoff Levand <[email protected]>
18425 L:      [email protected]
18426 S:      Maintained
18427 F:      drivers/block/ps3vram.c
18428
18429 PSAMPLE PACKET SAMPLING SUPPORT
18430 M:      Yotam Gigi <[email protected]>
18431 S:      Maintained
18432 F:      include/net/psample.h
18433 F:      include/uapi/linux/psample.h
18434 F:      net/psample
18435
18436 PSE NETWORK DRIVER
18437 M:      Oleksij Rempel <[email protected]>
18438 M:      Kory Maincent <[email protected]>
18439 L:      [email protected]
18440 S:      Maintained
18441 F:      Documentation/devicetree/bindings/net/pse-pd/
18442 F:      drivers/net/pse-pd/
18443 F:      net/ethtool/pse-pd.c
18444
18445 PSTORE FILESYSTEM
18446 M:      Kees Cook <[email protected]>
18447 R:      Tony Luck <[email protected]>
18448 R:      Guilherme G. Piccoli <[email protected]>
18449 L:      [email protected]
18450 S:      Supported
18451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
18452 F:      Documentation/admin-guide/pstore-blk.rst
18453 F:      Documentation/admin-guide/ramoops.rst
18454 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
18455 F:      drivers/acpi/apei/erst.c
18456 F:      drivers/firmware/efi/efi-pstore.c
18457 F:      fs/pstore/
18458 F:      include/linux/pstore*
18459 K:      \b(pstore|ramoops)
18460
18461 PT5161L HARDWARE MONITOR DRIVER
18462 M:      Cosmo Chou <[email protected]>
18463 L:      [email protected]
18464 S:      Maintained
18465 F:      Documentation/hwmon/pt5161l.rst
18466 F:      drivers/hwmon/pt5161l.c
18467
18468 PTP HARDWARE CLOCK SUPPORT
18469 M:      Richard Cochran <[email protected]>
18470 L:      [email protected]
18471 S:      Maintained
18472 W:      http://linuxptp.sourceforge.net/
18473 F:      Documentation/ABI/testing/sysfs-ptp
18474 F:      Documentation/driver-api/ptp.rst
18475 F:      drivers/net/phy/dp83640*
18476 F:      drivers/ptp/*
18477 F:      include/linux/ptp_cl*
18478 K:      (?:\b|_)ptp(?:\b|_)
18479
18480 PTP MOCKUP CLOCK SUPPORT
18481 M:      Vladimir Oltean <[email protected]>
18482 L:      [email protected]
18483 S:      Maintained
18484 F:      drivers/ptp/ptp_mock.c
18485 F:      include/linux/ptp_mock.h
18486
18487 PTP VIRTUAL CLOCK SUPPORT
18488 M:      Yangbo Lu <[email protected]>
18489 L:      [email protected]
18490 S:      Maintained
18491 F:      drivers/ptp/ptp_vclock.c
18492 F:      net/ethtool/phc_vclocks.c
18493
18494 PTRACE SUPPORT
18495 M:      Oleg Nesterov <[email protected]>
18496 S:      Maintained
18497 F:      arch/*/*/ptrace*.c
18498 F:      arch/*/include/asm/ptrace*.h
18499 F:      arch/*/ptrace*.c
18500 F:      include/asm-generic/syscall.h
18501 F:      include/linux/ptrace.h
18502 F:      include/linux/regset.h
18503 F:      include/uapi/linux/ptrace.h
18504 F:      kernel/ptrace.c
18505
18506 PULSE8-CEC DRIVER
18507 M:      Hans Verkuil <[email protected]>
18508 L:      [email protected]
18509 S:      Maintained
18510 T:      git git://linuxtv.org/media_tree.git
18511 F:      drivers/media/cec/usb/pulse8/
18512
18513 PURELIFI PLFXLC DRIVER
18514 M:      Srinivasan Raju <[email protected]>
18515 L:      [email protected]
18516 S:      Supported
18517 F:      drivers/net/wireless/purelifi/plfxlc/
18518
18519 PVRUSB2 VIDEO4LINUX DRIVER
18520 M:      Mike Isely <[email protected]>
18521 L:      [email protected]       (subscribers-only)
18522 L:      [email protected]
18523 S:      Maintained
18524 W:      http://www.isely.net/pvrusb2/
18525 T:      git git://linuxtv.org/media_tree.git
18526 F:      Documentation/driver-api/media/drivers/pvrusb2*
18527 F:      drivers/media/usb/pvrusb2/
18528
18529 PWC WEBCAM DRIVER
18530 M:      Hans Verkuil <[email protected]>
18531 L:      [email protected]
18532 S:      Odd Fixes
18533 T:      git git://linuxtv.org/media_tree.git
18534 F:      drivers/media/usb/pwc/*
18535 F:      include/trace/events/pwc.h
18536
18537 PWM IR Transmitter
18538 M:      Sean Young <[email protected]>
18539 L:      [email protected]
18540 S:      Maintained
18541 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
18542 F:      drivers/media/rc/pwm-ir-tx.c
18543
18544 PWM SUBSYSTEM
18545 M:      Uwe Kleine-König <[email protected]>
18546 L:      [email protected]
18547 S:      Maintained
18548 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
18549 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux.git
18550 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
18551 F:      Documentation/devicetree/bindings/pwm/
18552 F:      Documentation/driver-api/pwm.rst
18553 F:      drivers/gpio/gpio-mvebu.c
18554 F:      drivers/pwm/
18555 F:      drivers/video/backlight/pwm_bl.c
18556 F:      include/dt-bindings/pwm/
18557 F:      include/linux/pwm.h
18558 F:      include/linux/pwm_backlight.h
18559 K:      pwm_(config|apply_might_sleep|apply_atomic|ops)
18560
18561 PXA GPIO DRIVER
18562 M:      Robert Jarzmik <[email protected]>
18563 L:      [email protected]
18564 S:      Maintained
18565 F:      drivers/gpio/gpio-pxa.c
18566
18567 PXA MMCI DRIVER
18568 S:      Orphan
18569
18570 PXA RTC DRIVER
18571 M:      Robert Jarzmik <[email protected]>
18572 L:      [email protected]
18573 S:      Maintained
18574
18575 PXA2xx/PXA3xx SUPPORT
18576 M:      Daniel Mack <[email protected]>
18577 M:      Haojian Zhuang <[email protected]>
18578 M:      Robert Jarzmik <[email protected]>
18579 L:      [email protected] (moderated for non-subscribers)
18580 S:      Maintained
18581 T:      git git://github.com/hzhuang1/linux.git
18582 T:      git git://github.com/rjarzmik/linux.git
18583 F:      arch/arm/boot/dts/intel/pxa/
18584 F:      arch/arm/mach-pxa/
18585 F:      drivers/dma/pxa*
18586 F:      drivers/pcmcia/pxa2xx*
18587 F:      drivers/pinctrl/pxa/
18588 F:      drivers/spi/spi-pxa2xx*
18589 F:      drivers/usb/gadget/udc/pxa2*
18590 F:      include/sound/pxa2xx-lib.h
18591 F:      sound/arm/pxa*
18592 F:      sound/soc/pxa/
18593
18594 QAT DRIVER
18595 M:      Giovanni Cabiddu <[email protected]>
18596 L:      [email protected]
18597 S:      Supported
18598 F:      drivers/crypto/intel/qat/
18599
18600 QCOM AUDIO (ASoC) DRIVERS
18601 M:      Srinivas Kandagatla <[email protected]>
18602 L:      [email protected] (moderated for non-subscribers)
18603 L:      [email protected]
18604 S:      Supported
18605 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
18606 F:      Documentation/devicetree/bindings/sound/qcom,*
18607 F:      drivers/soc/qcom/apr.c
18608 F:      include/dt-bindings/sound/qcom,wcd9335.h
18609 F:      sound/soc/codecs/lpass-rx-macro.*
18610 F:      sound/soc/codecs/lpass-tx-macro.*
18611 F:      sound/soc/codecs/lpass-va-macro.c
18612 F:      sound/soc/codecs/lpass-wsa-macro.*
18613 F:      sound/soc/codecs/msm8916-wcd-analog.c
18614 F:      sound/soc/codecs/msm8916-wcd-digital.c
18615 F:      sound/soc/codecs/wcd-clsh-v2.*
18616 F:      sound/soc/codecs/wcd-mbhc-v2.*
18617 F:      sound/soc/codecs/wcd9335.*
18618 F:      sound/soc/codecs/wcd934x.c
18619 F:      sound/soc/codecs/wsa881x.c
18620 F:      sound/soc/codecs/wsa883x.c
18621 F:      sound/soc/codecs/wsa884x.c
18622 F:      sound/soc/qcom/
18623
18624 QCOM EMBEDDED USB DEBUGGER (EUD)
18625 M:      Souradeep Chowdhury <[email protected]>
18626 L:      [email protected]
18627 S:      Maintained
18628 F:      Documentation/ABI/testing/sysfs-driver-eud
18629 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
18630 F:      drivers/usb/misc/qcom_eud.c
18631
18632 QCOM IPA DRIVER
18633 M:      Alex Elder <[email protected]>
18634 L:      [email protected]
18635 S:      Maintained
18636 F:      drivers/net/ipa/
18637
18638 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
18639 M:      Gabriel Somlo <[email protected]>
18640 M:      "Michael S. Tsirkin" <[email protected]>
18641 L:      [email protected]
18642 S:      Maintained
18643 F:      drivers/firmware/qemu_fw_cfg.c
18644 F:      include/uapi/linux/qemu_fw_cfg.h
18645
18646 QIB DRIVER
18647 M:      Dennis Dalessandro <[email protected]>
18648 L:      [email protected]
18649 S:      Supported
18650 F:      drivers/infiniband/hw/qib/
18651
18652 QLOGIC QL41xxx FCOE DRIVER
18653 M:      Saurav Kashyap <[email protected]>
18654 M:      Javed Hasan <[email protected]>
18655 M:      [email protected]
18656 L:      [email protected]
18657 S:      Supported
18658 F:      drivers/scsi/qedf/
18659
18660 QLOGIC QL41xxx ISCSI DRIVER
18661 M:      Nilesh Javali <[email protected]>
18662 M:      Manish Rangankar <[email protected]>
18663 M:      [email protected]
18664 L:      [email protected]
18665 S:      Supported
18666 F:      drivers/scsi/qedi/
18667
18668 QLOGIC QL4xxx ETHERNET DRIVER
18669 M:      Manish Chopra <[email protected]>
18670 L:      [email protected]
18671 S:      Supported
18672 F:      drivers/net/ethernet/qlogic/qed/
18673 F:      drivers/net/ethernet/qlogic/qede/
18674 F:      include/linux/qed/
18675
18676 QLOGIC QL4xxx RDMA DRIVER
18677 M:      Michal Kalderon <[email protected]>
18678 L:      [email protected]
18679 S:      Supported
18680 F:      drivers/infiniband/hw/qedr/
18681 F:      include/uapi/rdma/qedr-abi.h
18682
18683 QLOGIC QLA1280 SCSI DRIVER
18684 M:      Michael Reed <[email protected]>
18685 L:      [email protected]
18686 S:      Maintained
18687 F:      drivers/scsi/qla1280.[ch]
18688
18689 QLOGIC QLA2XXX FC-SCSI DRIVER
18690 M:      Nilesh Javali <[email protected]>
18691 M:      [email protected]
18692 L:      [email protected]
18693 S:      Supported
18694 F:      drivers/scsi/qla2xxx/
18695
18696 QLOGIC QLA3XXX NETWORK DRIVER
18697 M:      [email protected]
18698 L:      [email protected]
18699 S:      Supported
18700 F:      drivers/net/ethernet/qlogic/qla3xxx.*
18701
18702 QLOGIC QLA4XXX iSCSI DRIVER
18703 M:      Nilesh Javali <[email protected]>
18704 M:      Manish Rangankar <[email protected]>
18705 M:      [email protected]
18706 L:      [email protected]
18707 S:      Supported
18708 F:      drivers/scsi/qla4xxx/
18709
18710 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
18711 M:      Shahed Shaikh <[email protected]>
18712 M:      Manish Chopra <[email protected]>
18713 M:      [email protected]
18714 L:      [email protected]
18715 S:      Supported
18716 F:      drivers/net/ethernet/qlogic/qlcnic/
18717
18718 QM1D1B0004 MEDIA DRIVER
18719 M:      Akihiro Tsukada <[email protected]>
18720 L:      [email protected]
18721 S:      Odd Fixes
18722 F:      drivers/media/tuners/qm1d1b0004*
18723
18724 QM1D1C0042 MEDIA DRIVER
18725 M:      Akihiro Tsukada <[email protected]>
18726 L:      [email protected]
18727 S:      Odd Fixes
18728 F:      drivers/media/tuners/qm1d1c0042*
18729
18730 QNX4 FILESYSTEM
18731 M:      Anders Larsen <[email protected]>
18732 S:      Maintained
18733 W:      http://www.alarsen.net/linux/qnx4fs/
18734 F:      fs/qnx4/
18735 F:      include/uapi/linux/qnx4_fs.h
18736 F:      include/uapi/linux/qnxtypes.h
18737
18738 QNX6 FILESYSTEM
18739 S:      Orphan
18740 F:      Documentation/filesystems/qnx6.rst
18741 F:      fs/qnx6/
18742 F:      include/linux/qnx6_fs.h
18743
18744 QORIQ DPAA2 FSL-MC BUS DRIVER
18745 M:      Stuart Yoder <[email protected]>
18746 M:      Laurentiu Tudor <[email protected]>
18747 L:      [email protected]
18748 S:      Maintained
18749 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
18750 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
18751 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
18752 F:      drivers/bus/fsl-mc/
18753 F:      include/uapi/linux/fsl_mc.h
18754
18755 QT1010 MEDIA DRIVER
18756 L:      [email protected]
18757 S:      Orphan
18758 W:      https://linuxtv.org
18759 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18760 F:      drivers/media/tuners/qt1010*
18761
18762 QUALCOMM ATH12K WIRELESS DRIVER
18763 M:      Kalle Valo <[email protected]>
18764 M:      Jeff Johnson <[email protected]>
18765 L:      [email protected]
18766 S:      Supported
18767 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath12k
18768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ath/ath.git
18769 F:      drivers/net/wireless/ath/ath12k/
18770 N:      ath12k
18771
18772 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
18773 M:      Kalle Valo <[email protected]>
18774 M:      Jeff Johnson <[email protected]>
18775 L:      [email protected]
18776 S:      Supported
18777 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
18778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ath/ath.git
18779 F:      drivers/net/wireless/ath/ath10k/
18780 N:      ath10k
18781
18782 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
18783 M:      Kalle Valo <[email protected]>
18784 M:      Jeff Johnson <[email protected]>
18785 L:      [email protected]
18786 S:      Supported
18787 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath11k
18788 B:      https://wireless.wiki.kernel.org/en/users/Drivers/ath11k/bugreport
18789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ath/ath.git
18790 F:      drivers/net/wireless/ath/ath11k/
18791 N:      ath11k
18792
18793 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
18794 M:      Toke Høiland-Jørgensen <[email protected]>
18795 L:      [email protected]
18796 S:      Maintained
18797 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
18798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ath/ath.git
18799 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
18800 F:      drivers/net/wireless/ath/ath9k/
18801
18802 QUALCOMM ATHEROS QCA7K ETHERNET DRIVER
18803 M:      Stefan Wahren <[email protected]>
18804 L:      [email protected]
18805 S:      Maintained
18806 F:      Documentation/devicetree/bindings/net/qca,qca7000.txt
18807 F:      drivers/net/ethernet/qualcomm/qca*
18808
18809 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
18810 M:      Stephan Gerhold <[email protected]>
18811 L:      [email protected]
18812 L:      [email protected]
18813 S:      Maintained
18814 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
18815 F:      drivers/net/wwan/qcom_bam_dmux.c
18816
18817 QUALCOMM CAMERA SUBSYSTEM DRIVER
18818 M:      Robert Foss <[email protected]>
18819 M:      Todor Tomov <[email protected]>
18820 M:      Bryan O'Donoghue <[email protected]>
18821 L:      [email protected]
18822 S:      Maintained
18823 F:      Documentation/admin-guide/media/qcom_camss.rst
18824 F:      Documentation/devicetree/bindings/media/*camss*
18825 F:      drivers/media/platform/qcom/camss/
18826
18827 QUALCOMM CLOCK DRIVERS
18828 M:      Bjorn Andersson <[email protected]>
18829 L:      [email protected]
18830 S:      Supported
18831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
18832 F:      Documentation/devicetree/bindings/clock/qcom,*
18833 F:      drivers/clk/qcom/
18834 F:      include/dt-bindings/clock/qcom,*
18835
18836 QUALCOMM CLOUD AI (QAIC) DRIVER
18837 M:      Jeffrey Hugo <[email protected]>
18838 R:      Carl Vanderlip <[email protected]>
18839 R:      Pranjal Ramajor Asha Kanojiya <[email protected]>
18840 L:      [email protected]
18841 L:      [email protected]
18842 S:      Supported
18843 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
18844 F:      Documentation/accel/qaic/
18845 F:      drivers/accel/qaic/
18846 F:      include/uapi/drm/qaic_accel.h
18847
18848 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
18849 M:      Bjorn Andersson <[email protected]>
18850 M:      Konrad Dybcio <[email protected]>
18851 L:      [email protected]
18852 L:      [email protected]
18853 S:      Maintained
18854 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
18855 F:      drivers/pmdomain/qcom/cpr.c
18856
18857 QUALCOMM CPUCP MAILBOX DRIVER
18858 M:      Sibi Sankar <[email protected]>
18859 L:      [email protected]
18860 S:      Supported
18861 F:      Documentation/devicetree/bindings/mailbox/qcom,cpucp-mbox.yaml
18862 F:      drivers/mailbox/qcom-cpucp-mbox.c
18863
18864 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
18865 M:      Ilia Lin <[email protected]>
18866 L:      [email protected]
18867 S:      Maintained
18868 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
18869 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
18870 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
18871
18872 QUALCOMM CRYPTO DRIVERS
18873 M:      Thara Gopinath <[email protected]>
18874 L:      [email protected]
18875 L:      [email protected]
18876 S:      Maintained
18877 F:      Documentation/devicetree/bindings/crypto/qcom-qce.yaml
18878 F:      drivers/crypto/qce/
18879
18880 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
18881 M:      Timur Tabi <[email protected]>
18882 L:      [email protected]
18883 S:      Maintained
18884 F:      drivers/net/ethernet/qualcomm/emac/
18885
18886 QUALCOMM ETHQOS ETHERNET DRIVER
18887 M:      Vinod Koul <[email protected]>
18888 L:      [email protected]
18889 L:      [email protected]
18890 S:      Maintained
18891 F:      Documentation/devicetree/bindings/net/qcom,ethqos.yaml
18892 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
18893
18894 QUALCOMM FASTRPC DRIVER
18895 M:      Srinivas Kandagatla <[email protected]>
18896 M:      Amol Maheshwari <[email protected]>
18897 L:      [email protected]
18898 L:      [email protected]
18899 S:      Maintained
18900 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
18901 F:      drivers/misc/fastrpc.c
18902 F:      include/uapi/misc/fastrpc.h
18903
18904 QUALCOMM HEXAGON ARCHITECTURE
18905 M:      Brian Cain <[email protected]>
18906 L:      [email protected]
18907 S:      Supported
18908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
18909 F:      arch/hexagon/
18910
18911 QUALCOMM HIDMA DRIVER
18912 M:      Sinan Kaya <[email protected]>
18913 L:      [email protected] (moderated for non-subscribers)
18914 L:      [email protected]
18915 L:      [email protected]
18916 S:      Supported
18917 F:      drivers/dma/qcom/hidma*
18918
18919 QUALCOMM I2C CCI DRIVER
18920 M:      Loic Poulain <[email protected]>
18921 M:      Robert Foss <[email protected]>
18922 L:      [email protected]
18923 L:      [email protected]
18924 S:      Maintained
18925 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
18926 F:      drivers/i2c/busses/i2c-qcom-cci.c
18927
18928 QUALCOMM INTERCONNECT BWMON DRIVER
18929 M:      Krzysztof Kozlowski <[email protected]>
18930 L:      [email protected]
18931 S:      Maintained
18932 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
18933 F:      drivers/soc/qcom/icc-bwmon.c
18934
18935 QUALCOMM IOMMU
18936 M:      Rob Clark <[email protected]>
18937 L:      [email protected]
18938 L:      [email protected]
18939 S:      Maintained
18940 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
18941 F:      drivers/iommu/arm/arm-smmu/arm-smmu-qcom*
18942 F:      drivers/iommu/msm_iommu*
18943
18944 QUALCOMM IPC ROUTER (QRTR) DRIVER
18945 M:      Manivannan Sadhasivam <[email protected]>
18946 L:      [email protected]
18947 S:      Maintained
18948 F:      include/trace/events/qrtr.h
18949 F:      include/uapi/linux/qrtr.h
18950 F:      net/qrtr/
18951
18952 QUALCOMM IPCC MAILBOX DRIVER
18953 M:      Manivannan Sadhasivam <[email protected]>
18954 L:      [email protected]
18955 S:      Supported
18956 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
18957 F:      drivers/mailbox/qcom-ipcc.c
18958 F:      include/dt-bindings/mailbox/qcom-ipcc.h
18959
18960 QUALCOMM IPQ4019 USB PHY DRIVER
18961 M:      Robert Marko <[email protected]>
18962 M:      Luka Perkov <[email protected]>
18963 L:      [email protected]
18964 S:      Maintained
18965 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
18966 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
18967
18968 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
18969 M:      Robert Marko <[email protected]>
18970 M:      Luka Perkov <[email protected]>
18971 L:      [email protected]
18972 S:      Maintained
18973 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
18974 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
18975
18976 QUALCOMM NAND CONTROLLER DRIVER
18977 M:      Manivannan Sadhasivam <[email protected]>
18978 L:      [email protected]
18979 L:      [email protected]
18980 S:      Maintained
18981 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
18982 F:      drivers/mtd/nand/raw/qcom_nandc.c
18983
18984 QUALCOMM QSEECOM DRIVER
18985 M:      Maximilian Luz <[email protected]>
18986 L:      [email protected]
18987 S:      Maintained
18988 F:      drivers/firmware/qcom/qcom_qseecom.c
18989
18990 QUALCOMM QSEECOM UEFISECAPP DRIVER
18991 M:      Maximilian Luz <[email protected]>
18992 L:      [email protected]
18993 S:      Maintained
18994 F:      drivers/firmware/qcom/qcom_qseecom_uefisecapp.c
18995
18996 QUALCOMM RMNET DRIVER
18997 M:      Subash Abhinov Kasiviswanathan <[email protected]>
18998 M:      Sean Tranchetti <[email protected]>
18999 L:      [email protected]
19000 S:      Maintained
19001 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
19002 F:      drivers/net/ethernet/qualcomm/rmnet/
19003 F:      include/linux/if_rmnet.h
19004
19005 QUALCOMM TRUST ZONE MEMORY ALLOCATOR
19006 M:      Bartosz Golaszewski <[email protected]>
19007 L:      [email protected]
19008 S:      Maintained
19009 F:      drivers/firmware/qcom/qcom_tzmem.c
19010 F:      drivers/firmware/qcom/qcom_tzmem.h
19011 F:      include/linux/firmware/qcom/qcom_tzmem.h
19012
19013 QUALCOMM TSENS THERMAL DRIVER
19014 M:      Amit Kucheria <[email protected]>
19015 M:      Thara Gopinath <[email protected]>
19016 L:      [email protected]
19017 L:      [email protected]
19018 S:      Maintained
19019 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
19020 F:      drivers/thermal/qcom/
19021
19022 QUALCOMM TYPEC PORT MANAGER DRIVER
19023 M:      Bryan O'Donoghue <[email protected]>
19024 L:      [email protected]
19025 L:      [email protected]
19026 S:      Maintained
19027 F:      Documentation/devicetree/bindings/usb/qcom,pmic-*.yaml
19028 F:      drivers/usb/typec/tcpm/qcom/
19029
19030 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
19031 M:      Stanimir Varbanov <[email protected]>
19032 M:      Vikash Garodia <[email protected]>
19033 R:      Bryan O'Donoghue <[email protected]>
19034 L:      [email protected]
19035 L:      [email protected]
19036 S:      Maintained
19037 T:      git git://linuxtv.org/media_tree.git
19038 F:      Documentation/devicetree/bindings/media/*venus*
19039 F:      drivers/media/platform/qcom/venus/
19040
19041 QUALCOMM WCN36XX WIRELESS DRIVER
19042 M:      Loic Poulain <[email protected]>
19043 L:      [email protected]
19044 S:      Supported
19045 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
19046 F:      drivers/net/wireless/ath/wcn36xx/
19047
19048 QUANTENNA QTNFMAC WIRELESS DRIVER
19049 M:      Igor Mitsyanko <[email protected]>
19050 R:      Sergey Matyukevich <[email protected]>
19051 L:      [email protected]
19052 S:      Maintained
19053 F:      drivers/net/wireless/quantenna
19054
19055 RADEON and AMDGPU DRM DRIVERS
19056 M:      Alex Deucher <[email protected]>
19057 M:      Christian König <[email protected]>
19058 M:      Xinhui Pan <[email protected]>
19059 L:      [email protected]
19060 S:      Supported
19061 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
19062 C:      irc://irc.oftc.net/radeon
19063 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
19064 F:      Documentation/gpu/amdgpu/
19065 F:      drivers/gpu/drm/amd/
19066 F:      drivers/gpu/drm/ci/xfails/amd*
19067 F:      drivers/gpu/drm/radeon/
19068 F:      include/uapi/drm/amdgpu_drm.h
19069 F:      include/uapi/drm/radeon_drm.h
19070
19071 RADEON FRAMEBUFFER DISPLAY DRIVER
19072 M:      Benjamin Herrenschmidt <[email protected]>
19073 L:      [email protected]
19074 S:      Maintained
19075 F:      drivers/video/fbdev/aty/radeon*
19076 F:      include/uapi/linux/radeonfb.h
19077
19078 RADIOSHARK RADIO DRIVER
19079 M:      Hans Verkuil <[email protected]>
19080 L:      [email protected]
19081 S:      Maintained
19082 T:      git git://linuxtv.org/media_tree.git
19083 F:      drivers/media/radio/radio-shark.c
19084
19085 RADIOSHARK2 RADIO DRIVER
19086 M:      Hans Verkuil <[email protected]>
19087 L:      [email protected]
19088 S:      Maintained
19089 T:      git git://linuxtv.org/media_tree.git
19090 F:      drivers/media/radio/radio-shark2.c
19091 F:      drivers/media/radio/radio-tea5777.c
19092
19093 RADOS BLOCK DEVICE (RBD)
19094 M:      Ilya Dryomov <[email protected]>
19095 R:      Dongsheng Yang <[email protected]>
19096 L:      [email protected]
19097 S:      Supported
19098 W:      http://ceph.com/
19099 T:      git https://github.com/ceph/ceph-client.git
19100 F:      Documentation/ABI/testing/sysfs-bus-rbd
19101 F:      drivers/block/rbd.c
19102 F:      drivers/block/rbd_types.h
19103
19104 RAGE128 FRAMEBUFFER DISPLAY DRIVER
19105 L:      [email protected]
19106 S:      Orphan
19107 F:      drivers/video/fbdev/aty/aty128fb.c
19108
19109 RAINSHADOW-CEC DRIVER
19110 M:      Hans Verkuil <[email protected]>
19111 L:      [email protected]
19112 S:      Maintained
19113 T:      git git://linuxtv.org/media_tree.git
19114 F:      drivers/media/cec/usb/rainshadow/
19115
19116 RALINK MIPS ARCHITECTURE
19117 M:      John Crispin <[email protected]>
19118 M:      Sergio Paracuellos <[email protected]>
19119 L:      [email protected]
19120 S:      Maintained
19121 F:      arch/mips/ralink
19122
19123 RALINK MT7621 MIPS ARCHITECTURE
19124 M:      Arınç ÜNAL <[email protected]>
19125 M:      Sergio Paracuellos <[email protected]>
19126 L:      [email protected]
19127 S:      Maintained
19128 F:      arch/mips/boot/dts/ralink/mt7621*
19129
19130 RALINK RT2X00 WIRELESS LAN DRIVER
19131 M:      Stanislaw Gruszka <[email protected]>
19132 L:      [email protected]
19133 S:      Maintained
19134 F:      drivers/net/wireless/ralink/rt2x00/
19135
19136 RAMDISK RAM BLOCK DEVICE DRIVER
19137 M:      Jens Axboe <[email protected]>
19138 S:      Maintained
19139 F:      Documentation/admin-guide/blockdev/ramdisk.rst
19140 F:      drivers/block/brd.c
19141
19142 RANCHU VIRTUAL BOARD FOR MIPS
19143 M:      Miodrag Dinic <[email protected]>
19144 L:      [email protected]
19145 S:      Supported
19146 F:      arch/mips/configs/generic/board-ranchu.config
19147 F:      arch/mips/generic/board-ranchu.c
19148
19149 RANDOM NUMBER DRIVER
19150 M:      "Theodore Ts'o" <[email protected]>
19151 M:      Jason A. Donenfeld <[email protected]>
19152 S:      Maintained
19153 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
19154 F:      Documentation/devicetree/bindings/rng/microsoft,vmgenid.yaml
19155 F:      drivers/char/random.c
19156 F:      include/linux/random.h
19157 F:      include/uapi/linux/random.h
19158 F:      drivers/virt/vmgenid.c
19159 F:      include/vdso/getrandom.h
19160 F:      lib/vdso/getrandom.c
19161 F:      arch/x86/entry/vdso/vgetrandom*
19162 F:      arch/x86/include/asm/vdso/getrandom*
19163
19164 RAPIDIO SUBSYSTEM
19165 M:      Matt Porter <[email protected]>
19166 M:      Alexandre Bounine <[email protected]>
19167 S:      Maintained
19168 F:      drivers/rapidio/
19169
19170 RAS INFRASTRUCTURE
19171 M:      Tony Luck <[email protected]>
19172 M:      Borislav Petkov <[email protected]>
19173 L:      [email protected]
19174 S:      Maintained
19175 F:      Documentation/admin-guide/RAS
19176 F:      drivers/ras/
19177 F:      include/linux/ras.h
19178 F:      include/ras/ras_event.h
19179
19180 RAS FRU MEMORY POISON MANAGER (FMPM)
19181 M:      Yazen Ghannam <[email protected]>
19182 L:      [email protected]
19183 S:      Maintained
19184 F:      drivers/ras/amd/fmpm.c
19185
19186 RASPBERRY PI PISP BACK END
19187 M:      Jacopo Mondi <[email protected]>
19188 L:      Raspberry Pi Kernel Maintenance <[email protected]>
19189 L:      [email protected]
19190 S:      Maintained
19191 F:      Documentation/devicetree/bindings/media/raspberrypi,pispbe.yaml
19192 F:      drivers/media/platform/raspberrypi/pisp_be/
19193 F:      include/uapi/linux/media/raspberrypi/
19194
19195 RC-CORE / LIRC FRAMEWORK
19196 M:      Sean Young <[email protected]>
19197 L:      [email protected]
19198 S:      Maintained
19199 W:      http://linuxtv.org
19200 T:      git git://linuxtv.org/media_tree.git
19201 F:      Documentation/driver-api/media/rc-core.rst
19202 F:      Documentation/userspace-api/media/rc/
19203 F:      drivers/media/rc/
19204 F:      include/media/rc-core.h
19205 F:      include/media/rc-map.h
19206 F:      include/uapi/linux/lirc.h
19207
19208 RCMM REMOTE CONTROLS DECODER
19209 M:      Patrick Lerda <[email protected]>
19210 S:      Maintained
19211 F:      drivers/media/rc/ir-rcmm-decoder.c
19212
19213 RCUTORTURE TEST FRAMEWORK
19214 M:      "Paul E. McKenney" <[email protected]>
19215 M:      Josh Triplett <[email protected]>
19216 R:      Steven Rostedt <[email protected]>
19217 R:      Mathieu Desnoyers <[email protected]>
19218 R:      Lai Jiangshan <[email protected]>
19219 L:      [email protected]
19220 S:      Supported
19221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19222 F:      tools/testing/selftests/rcutorture
19223
19224 RDACM20 Camera Sensor
19225 M:      Jacopo Mondi <[email protected]>
19226 M:      Kieran Bingham <[email protected]>
19227 M:      Laurent Pinchart <[email protected]>
19228 M:      Niklas Söderlund <[email protected]>
19229 L:      [email protected]
19230 S:      Maintained
19231 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
19232 F:      drivers/media/i2c/max9271.c
19233 F:      drivers/media/i2c/max9271.h
19234 F:      drivers/media/i2c/rdacm20.c
19235
19236 RDACM21 Camera Sensor
19237 M:      Jacopo Mondi <[email protected]>
19238 M:      Kieran Bingham <[email protected]>
19239 M:      Laurent Pinchart <[email protected]>
19240 M:      Niklas Söderlund <[email protected]>
19241 L:      [email protected]
19242 S:      Maintained
19243 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
19244 F:      drivers/media/i2c/max9271.c
19245 F:      drivers/media/i2c/max9271.h
19246 F:      drivers/media/i2c/rdacm21.c
19247
19248 RDC R-321X SoC
19249 M:      Florian Fainelli <[email protected]>
19250 S:      Maintained
19251
19252 RDC R6040 FAST ETHERNET DRIVER
19253 M:      Florian Fainelli <[email protected]>
19254 L:      [email protected]
19255 S:      Maintained
19256 F:      drivers/net/ethernet/rdc/r6040.c
19257
19258 RDMAVT - RDMA verbs software
19259 M:      Dennis Dalessandro <[email protected]>
19260 L:      [email protected]
19261 S:      Supported
19262 F:      drivers/infiniband/sw/rdmavt
19263
19264 RDS - RELIABLE DATAGRAM SOCKETS
19265 M:      Allison Henderson <[email protected]>
19266 L:      [email protected]
19267 L:      [email protected]
19268 L:      [email protected] (moderated for non-subscribers)
19269 S:      Supported
19270 W:      https://oss.oracle.com/projects/rds/
19271 F:      Documentation/networking/rds.rst
19272 F:      net/rds/
19273 F:      tools/testing/selftests/net/rds/
19274
19275 RDT - RESOURCE ALLOCATION
19276 M:      Fenghua Yu <[email protected]>
19277 M:      Reinette Chatre <[email protected]>
19278 L:      [email protected]
19279 S:      Supported
19280 F:      Documentation/arch/x86/resctrl*
19281 F:      arch/x86/include/asm/resctrl.h
19282 F:      arch/x86/kernel/cpu/resctrl/
19283 F:      tools/testing/selftests/resctrl/
19284
19285 READ-COPY UPDATE (RCU)
19286 M:      "Paul E. McKenney" <[email protected]>
19287 M:      Frederic Weisbecker <[email protected]> (kernel/rcu/tree_nocb.h)
19288 M:      Neeraj Upadhyay <[email protected]> (kernel/rcu/tasks.h)
19289 M:      Joel Fernandes <[email protected]>
19290 M:      Josh Triplett <[email protected]>
19291 M:      Boqun Feng <[email protected]>
19292 M:      Uladzislau Rezki <[email protected]>
19293 R:      Steven Rostedt <[email protected]>
19294 R:      Mathieu Desnoyers <[email protected]>
19295 R:      Lai Jiangshan <[email protected]>
19296 R:      Zqiang <[email protected]>
19297 L:      [email protected]
19298 S:      Supported
19299 W:      http://www.rdrop.com/users/paulmck/RCU/
19300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19301 F:      Documentation/RCU/
19302 F:      include/linux/rcu*
19303 F:      kernel/rcu/
19304 X:      Documentation/RCU/torture.rst
19305 X:      include/linux/srcu*.h
19306 X:      kernel/rcu/srcu*.c
19307
19308 REAL TIME CLOCK (RTC) SUBSYSTEM
19309 M:      Alexandre Belloni <[email protected]>
19310 L:      [email protected]
19311 S:      Maintained
19312 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
19313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
19314 F:      Documentation/admin-guide/rtc.rst
19315 F:      Documentation/devicetree/bindings/rtc/
19316 F:      drivers/rtc/
19317 F:      include/linux/rtc.h
19318 F:      include/linux/rtc/
19319 F:      include/uapi/linux/rtc.h
19320 F:      tools/testing/selftests/rtc/
19321
19322 Real-time Linux Analysis (RTLA) tools
19323 M:      Steven Rostedt <[email protected]>
19324 L:      [email protected]
19325 S:      Maintained
19326 F:      Documentation/tools/rtla/
19327 F:      tools/tracing/rtla/
19328
19329 REALTEK AUDIO CODECS
19330 M:      Oder Chiou <[email protected]>
19331 S:      Maintained
19332 F:      include/sound/rt*.h
19333 F:      sound/soc/codecs/rt*
19334
19335 REALTEK OTTO WATCHDOG
19336 M:      Sander Vanheule <[email protected]>
19337 L:      [email protected]
19338 S:      Maintained
19339 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
19340 F:      drivers/watchdog/realtek_otto_wdt.c
19341
19342 REALTEK RTL83xx SMI DSA ROUTER CHIPS
19343 M:      Linus Walleij <[email protected]>
19344 M:      Alvin Šipraga <[email protected]>
19345 S:      Maintained
19346 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
19347 F:      drivers/net/dsa/realtek/*
19348
19349 REALTEK WIRELESS DRIVER (rtlwifi family)
19350 M:      Ping-Ke Shih <[email protected]>
19351 L:      [email protected]
19352 S:      Maintained
19353 T:      git https://github.com/pkshih/rtw.git
19354 F:      drivers/net/wireless/realtek/rtlwifi/
19355
19356 REALTEK WIRELESS DRIVER (rtw88)
19357 M:      Ping-Ke Shih <[email protected]>
19358 L:      [email protected]
19359 S:      Maintained
19360 T:      git https://github.com/pkshih/rtw.git
19361 F:      drivers/net/wireless/realtek/rtw88/
19362
19363 REALTEK WIRELESS DRIVER (rtw89)
19364 M:      Ping-Ke Shih <[email protected]>
19365 L:      [email protected]
19366 S:      Maintained
19367 T:      git https://github.com/pkshih/rtw.git
19368 F:      drivers/net/wireless/realtek/rtw89/
19369
19370 REDPINE WIRELESS DRIVER
19371 L:      [email protected]
19372 S:      Orphan
19373 F:      drivers/net/wireless/rsi/
19374
19375 REGISTER MAP ABSTRACTION
19376 M:      Mark Brown <[email protected]>
19377 L:      [email protected]
19378 S:      Supported
19379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
19380 F:      Documentation/devicetree/bindings/regmap/
19381 F:      drivers/base/regmap/
19382 F:      include/linux/regmap.h
19383
19384 REISERFS FILE SYSTEM
19385 L:      [email protected]
19386 S:      Obsolete
19387 F:      fs/reiserfs/
19388
19389 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
19390 M:      Bjorn Andersson <[email protected]>
19391 M:      Mathieu Poirier <[email protected]>
19392 L:      [email protected]
19393 S:      Maintained
19394 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
19395 F:      Documentation/ABI/testing/sysfs-class-remoteproc
19396 F:      Documentation/devicetree/bindings/remoteproc/
19397 F:      Documentation/staging/remoteproc.rst
19398 F:      drivers/remoteproc/
19399 F:      include/linux/remoteproc.h
19400 F:      include/linux/remoteproc/
19401
19402 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
19403 M:      Bjorn Andersson <[email protected]>
19404 M:      Mathieu Poirier <[email protected]>
19405 L:      [email protected]
19406 S:      Maintained
19407 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
19408 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
19409 F:      Documentation/staging/rpmsg.rst
19410 F:      drivers/rpmsg/
19411 F:      include/linux/rpmsg.h
19412 F:      include/linux/rpmsg/
19413 F:      include/uapi/linux/rpmsg.h
19414 F:      samples/rpmsg/
19415
19416 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
19417 M:      Stephan Gerhold <[email protected]>
19418 L:      [email protected]
19419 L:      [email protected]
19420 S:      Maintained
19421 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
19422
19423 RENESAS CLOCK DRIVERS
19424 M:      Geert Uytterhoeven <[email protected]>
19425 L:      [email protected]
19426 S:      Supported
19427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
19428 F:      Documentation/devicetree/bindings/clock/renesas,*
19429 F:      drivers/clk/renesas/
19430
19431 RENESAS EMEV2 I2C DRIVER
19432 M:      Wolfram Sang <[email protected]>
19433 L:      [email protected]
19434 S:      Supported
19435 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
19436 F:      drivers/i2c/busses/i2c-emev2.c
19437
19438 RENESAS ETHERNET AVB DRIVER
19439 R:      Sergey Shtylyov <[email protected]>
19440 L:      [email protected]
19441 L:      [email protected]
19442 F:      Documentation/devicetree/bindings/net/renesas,etheravb.yaml
19443 F:      drivers/net/ethernet/renesas/Kconfig
19444 F:      drivers/net/ethernet/renesas/Makefile
19445 F:      drivers/net/ethernet/renesas/ravb*
19446
19447 RENESAS ETHERNET SWITCH DRIVER
19448 R:      Yoshihiro Shimoda <[email protected]>
19449 L:      [email protected]
19450 L:      [email protected]
19451 F:      Documentation/devicetree/bindings/net/renesas,*ether-switch.yaml
19452 F:      drivers/net/ethernet/renesas/Kconfig
19453 F:      drivers/net/ethernet/renesas/Makefile
19454 F:      drivers/net/ethernet/renesas/rcar_gen4*
19455 F:      drivers/net/ethernet/renesas/rswitch*
19456
19457 RENESAS ETHERNET TSN DRIVER
19458 M:      Niklas Söderlund <[email protected]>
19459 L:      [email protected]
19460 L:      [email protected]
19461 S:      Supported
19462 F:      Documentation/devicetree/bindings/net/renesas,ethertsn.yaml
19463 F:      drivers/net/ethernet/renesas/rtsn.*
19464
19465 RENESAS IDT821034 ASoC CODEC
19466 M:      Herve Codina <[email protected]>
19467 L:      [email protected] (moderated for non-subscribers)
19468 S:      Maintained
19469 F:      Documentation/devicetree/bindings/sound/renesas,idt821034.yaml
19470 F:      sound/soc/codecs/idt821034.c
19471
19472 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
19473 M:      Miquel Raynal <[email protected]>
19474 L:      [email protected]
19475 L:      [email protected]
19476 S:      Maintained
19477 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
19478 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
19479
19480 RENESAS R-CAR GYROADC DRIVER
19481 M:      Marek Vasut <[email protected]>
19482 L:      [email protected]
19483 S:      Supported
19484 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
19485 F:      drivers/iio/adc/rcar-gyroadc.c
19486
19487 RENESAS R-CAR I2C DRIVERS
19488 M:      Wolfram Sang <[email protected]>
19489 L:      [email protected]
19490 S:      Supported
19491 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
19492 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
19493 F:      drivers/i2c/busses/i2c-rcar.c
19494 F:      drivers/i2c/busses/i2c-sh_mobile.c
19495
19496 RENESAS R-CAR SATA DRIVER
19497 R:      Sergey Shtylyov <[email protected]>
19498 L:      [email protected]
19499 L:      [email protected]
19500 S:      Supported
19501 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
19502 F:      drivers/ata/sata_rcar.c
19503
19504 RENESAS R-CAR THERMAL DRIVERS
19505 M:      Niklas Söderlund <[email protected]>
19506 L:      [email protected]
19507 S:      Supported
19508 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
19509 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
19510 F:      drivers/thermal/renesas/rcar_gen3_thermal.c
19511 F:      drivers/thermal/renesas/rcar_thermal.c
19512
19513 RENESAS RIIC DRIVER
19514 M:      Chris Brandt <[email protected]>
19515 L:      [email protected]
19516 S:      Supported
19517 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
19518 F:      drivers/i2c/busses/i2c-riic.c
19519
19520 RENESAS RZ/G2L A/D DRIVER
19521 M:      Lad Prabhakar <[email protected]>
19522 L:      [email protected]
19523 L:      [email protected]
19524 S:      Supported
19525 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
19526 F:      drivers/iio/adc/rzg2l_adc.c
19527
19528 RENESAS RZ/G2L MTU3a COUNTER DRIVER
19529 M:      Biju Das <[email protected]>
19530 L:      [email protected]
19531 L:      [email protected]
19532 S:      Supported
19533 F:      Documentation/devicetree/bindings/timer/renesas,rz-mtu3.yaml
19534 F:      drivers/counter/rz-mtu3-cnt.c
19535
19536 RENESAS RZ/N1 A5PSW SWITCH DRIVER
19537 M:      Clément Léger <[email protected]>
19538 L:      [email protected]
19539 L:      [email protected]
19540 S:      Maintained
19541 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
19542 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
19543 F:      drivers/net/dsa/rzn1_a5psw*
19544 F:      drivers/net/pcs/pcs-rzn1-miic.c
19545 F:      include/dt-bindings/net/pcs-rzn1-miic.h
19546 F:      include/linux/pcs-rzn1-miic.h
19547 F:      net/dsa/tag_rzn1_a5psw.c
19548
19549 RENESAS RZ/N1 DWMAC GLUE LAYER
19550 M:      Romain Gantois <[email protected]>
19551 S:      Maintained
19552 F:      Documentation/devicetree/bindings/net/renesas,rzn1-gmac.yaml
19553 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-rzn1.c
19554
19555 RENESAS RZ/N1 RTC CONTROLLER DRIVER
19556 M:      Miquel Raynal <[email protected]>
19557 L:      [email protected]
19558 L:      [email protected]
19559 S:      Maintained
19560 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
19561 F:      drivers/rtc/rtc-rzn1.c
19562
19563 RENESAS RZ/N1 USBF CONTROLLER DRIVER
19564 M:      Herve Codina <[email protected]>
19565 L:      [email protected]
19566 L:      [email protected]
19567 S:      Maintained
19568 F:      Documentation/devicetree/bindings/usb/renesas,rzn1-usbf.yaml
19569 F:      drivers/usb/gadget/udc/renesas_usbf.c
19570
19571 RENESAS RZ/V2M I2C DRIVER
19572 M:      Fabrizio Castro <[email protected]>
19573 L:      [email protected]
19574 L:      [email protected]
19575 S:      Supported
19576 F:      Documentation/devicetree/bindings/i2c/renesas,rzv2m.yaml
19577 F:      drivers/i2c/busses/i2c-rzv2m.c
19578
19579 RENESAS SUPERH ETHERNET DRIVER
19580 R:      Sergey Shtylyov <[email protected]>
19581 L:      [email protected]
19582 L:      [email protected]
19583 F:      Documentation/devicetree/bindings/net/renesas,ether.yaml
19584 F:      drivers/net/ethernet/renesas/Kconfig
19585 F:      drivers/net/ethernet/renesas/Makefile
19586 F:      drivers/net/ethernet/renesas/sh_eth*
19587 F:      include/linux/sh_eth.h
19588
19589 RENESAS USB PHY DRIVER
19590 M:      Yoshihiro Shimoda <[email protected]>
19591 L:      [email protected]
19592 S:      Maintained
19593 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
19594
19595 RENESAS VERSACLOCK 7 CLOCK DRIVER
19596 M:      Alex Helms <[email protected]>
19597 S:      Maintained
19598 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
19599 F:      drivers/clk/clk-versaclock7.c
19600
19601 RENESAS X9250 DIGITAL POTENTIOMETERS DRIVER
19602 M:      Herve Codina <[email protected]>
19603 L:      [email protected]
19604 S:      Maintained
19605 F:      Documentation/devicetree/bindings/iio/potentiometer/renesas,x9250.yaml
19606 F:      drivers/iio/potentiometer/x9250.c
19607
19608 RESET CONTROLLER FRAMEWORK
19609 M:      Philipp Zabel <[email protected]>
19610 S:      Maintained
19611 T:      git git://git.pengutronix.de/git/pza/linux
19612 F:      Documentation/devicetree/bindings/reset/
19613 F:      Documentation/driver-api/reset.rst
19614 F:      drivers/reset/
19615 F:      include/dt-bindings/reset/
19616 F:      include/linux/reset-controller.h
19617 F:      include/linux/reset.h
19618 F:      include/linux/reset/
19619 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
19620
19621 RESTARTABLE SEQUENCES SUPPORT
19622 M:      Mathieu Desnoyers <[email protected]>
19623 M:      Peter Zijlstra <[email protected]>
19624 M:      "Paul E. McKenney" <[email protected]>
19625 M:      Boqun Feng <[email protected]>
19626 L:      [email protected]
19627 S:      Supported
19628 F:      include/trace/events/rseq.h
19629 F:      include/uapi/linux/rseq.h
19630 F:      kernel/rseq.c
19631 F:      tools/testing/selftests/rseq/
19632
19633 RFKILL
19634 M:      Johannes Berg <[email protected]>
19635 L:      [email protected]
19636 S:      Maintained
19637 W:      https://wireless.wiki.kernel.org/
19638 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
19639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
19640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
19641 F:      Documentation/ABI/stable/sysfs-class-rfkill
19642 F:      Documentation/driver-api/rfkill.rst
19643 F:      include/linux/rfkill.h
19644 F:      include/uapi/linux/rfkill.h
19645 F:      net/rfkill/
19646
19647 RHASHTABLE
19648 M:      Thomas Graf <[email protected]>
19649 M:      Herbert Xu <[email protected]>
19650 L:      [email protected]
19651 S:      Maintained
19652 F:      include/linux/rhashtable-types.h
19653 F:      include/linux/rhashtable.h
19654 F:      lib/rhashtable.c
19655 F:      lib/test_rhashtable.c
19656
19657 RICOH R5C592 MEMORYSTICK DRIVER
19658 M:      Maxim Levitsky <[email protected]>
19659 S:      Maintained
19660 F:      drivers/memstick/host/r592.*
19661
19662 RICOH SMARTMEDIA/XD DRIVER
19663 M:      Maxim Levitsky <[email protected]>
19664 S:      Maintained
19665 F:      drivers/mtd/nand/raw/r852.c
19666 F:      drivers/mtd/nand/raw/r852.h
19667
19668 RISC-V AIA DRIVERS
19669 M:      Anup Patel <[email protected]>
19670 L:      [email protected]
19671 S:      Maintained
19672 F:      Documentation/devicetree/bindings/interrupt-controller/riscv,aplic.yaml
19673 F:      Documentation/devicetree/bindings/interrupt-controller/riscv,imsics.yaml
19674 F:      drivers/irqchip/irq-riscv-aplic-*.c
19675 F:      drivers/irqchip/irq-riscv-aplic-*.h
19676 F:      drivers/irqchip/irq-riscv-imsic-*.c
19677 F:      drivers/irqchip/irq-riscv-imsic-*.h
19678 F:      drivers/irqchip/irq-riscv-intc.c
19679 F:      include/linux/irqchip/riscv-aplic.h
19680 F:      include/linux/irqchip/riscv-imsic.h
19681
19682 RISC-V ARCHITECTURE
19683 M:      Paul Walmsley <[email protected]>
19684 M:      Palmer Dabbelt <[email protected]>
19685 M:      Albert Ou <[email protected]>
19686 L:      [email protected]
19687 S:      Supported
19688 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
19689 C:      irc://irc.libera.chat/riscv
19690 P:      Documentation/arch/riscv/patch-acceptance.rst
19691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
19692 F:      arch/riscv/
19693 N:      riscv
19694 K:      riscv
19695
19696 RISC-V MICROCHIP FPGA SUPPORT
19697 M:      Conor Dooley <[email protected]>
19698 M:      Daire McNamara <[email protected]>
19699 L:      [email protected]
19700 S:      Supported
19701 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
19702 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
19703 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
19704 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
19705 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
19706 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
19707 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
19708 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
19709 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
19710 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
19711 F:      arch/riscv/boot/dts/microchip/
19712 F:      drivers/char/hw_random/mpfs-rng.c
19713 F:      drivers/clk/microchip/clk-mpfs*.c
19714 F:      drivers/firmware/microchip/mpfs-auto-update.c
19715 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
19716 F:      drivers/mailbox/mailbox-mpfs.c
19717 F:      drivers/pci/controller/plda/pcie-microchip-host.c
19718 F:      drivers/pwm/pwm-microchip-core.c
19719 F:      drivers/reset/reset-mpfs.c
19720 F:      drivers/rtc/rtc-mpfs.c
19721 F:      drivers/soc/microchip/mpfs-sys-controller.c
19722 F:      drivers/spi/spi-microchip-core-qspi.c
19723 F:      drivers/spi/spi-microchip-core.c
19724 F:      drivers/usb/musb/mpfs.c
19725 F:      include/soc/microchip/mpfs.h
19726
19727 RISC-V MISC SOC SUPPORT
19728 M:      Conor Dooley <[email protected]>
19729 L:      [email protected]
19730 S:      Maintained
19731 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
19732 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
19733 F:      Documentation/devicetree/bindings/riscv/
19734 F:      arch/riscv/boot/dts/
19735 X:      arch/riscv/boot/dts/allwinner/
19736 X:      arch/riscv/boot/dts/renesas/
19737 X:      arch/riscv/boot/dts/sophgo/
19738 X:      arch/riscv/boot/dts/thead/
19739
19740 RISC-V PMU DRIVERS
19741 M:      Atish Patra <[email protected]>
19742 R:      Anup Patel <[email protected]>
19743 L:      [email protected]
19744 S:      Supported
19745 F:      drivers/perf/riscv_pmu.c
19746 F:      drivers/perf/riscv_pmu_legacy.c
19747 F:      drivers/perf/riscv_pmu_sbi.c
19748
19749 RISC-V THEAD SoC SUPPORT
19750 M:      Drew Fustini <[email protected]>
19751 M:      Guo Ren <[email protected]>
19752 M:      Fu Wei <[email protected]>
19753 L:      [email protected]
19754 S:      Maintained
19755 T:      git https://github.com/pdp7/linux.git
19756 F:      Documentation/devicetree/bindings/clock/thead,th1520-clk-ap.yaml
19757 F:      arch/riscv/boot/dts/thead/
19758 F:      drivers/clk/thead/clk-th1520-ap.c
19759 F:      include/dt-bindings/clock/thead,th1520-clk-ap.h
19760
19761 RNBD BLOCK DRIVERS
19762 M:      Md. Haris Iqbal <[email protected]>
19763 M:      Jack Wang <[email protected]>
19764 L:      [email protected]
19765 S:      Maintained
19766 F:      drivers/block/rnbd/
19767
19768 ROCCAT DRIVERS
19769 M:      Stefan Achatz <[email protected]>
19770 S:      Maintained
19771 W:      http://sourceforge.net/projects/roccat/
19772 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
19773 F:      drivers/hid/hid-roccat*
19774 F:      include/linux/hid-roccat*
19775
19776 ROCKCHIP CAN-FD DRIVER
19777 M:      Marc Kleine-Budde <[email protected]>
19778 R:      [email protected]
19779 L:      [email protected]
19780 S:      Maintained
19781 F:      Documentation/devicetree/bindings/net/can/rockchip,rk3568v2-canfd.yaml
19782 F:      drivers/net/can/rockchip/
19783
19784 ROCKCHIP CRYPTO DRIVERS
19785 M:      Corentin Labbe <[email protected]>
19786 L:      [email protected]
19787 S:      Maintained
19788 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
19789 F:      drivers/crypto/rockchip/
19790
19791 ROCKCHIP I2S TDM DRIVER
19792 M:      Nicolas Frattaroli <[email protected]>
19793 L:      [email protected]
19794 S:      Maintained
19795 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
19796 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
19797
19798 ROCKCHIP ISP V1 DRIVER
19799 M:      Dafna Hirschfeld <[email protected]>
19800 M:      Laurent Pinchart <[email protected]>
19801 L:      [email protected]
19802 L:      [email protected]
19803 S:      Maintained
19804 F:      Documentation/admin-guide/media/rkisp1.rst
19805 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
19806 F:      Documentation/userspace-api/media/v4l/metafmt-rkisp1.rst
19807 F:      drivers/media/platform/rockchip/rkisp1
19808 F:      include/uapi/linux/rkisp1-config.h
19809
19810 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
19811 M:      Jacob Chen <[email protected]>
19812 M:      Ezequiel Garcia <[email protected]>
19813 L:      [email protected]
19814 L:      [email protected]
19815 S:      Maintained
19816 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
19817 F:      drivers/media/platform/rockchip/rga/
19818
19819 ROCKCHIP RK3308 INTERNAL AUDIO CODEC
19820 M:      Luca Ceresoli <[email protected]>
19821 S:      Maintained
19822 F:      Documentation/devicetree/bindings/sound/rockchip,rk3308-codec.yaml
19823 F:      sound/soc/codecs/rk3308_codec.c
19824 F:      sound/soc/codecs/rk3308_codec.h
19825
19826 ROCKCHIP VIDEO DECODER DRIVER
19827 M:      Ezequiel Garcia <[email protected]>
19828 L:      [email protected]
19829 L:      [email protected]
19830 S:      Maintained
19831 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
19832 F:      drivers/staging/media/rkvdec/
19833
19834 ROCKER DRIVER
19835 M:      Jiri Pirko <[email protected]>
19836 L:      [email protected]
19837 S:      Supported
19838 F:      drivers/net/ethernet/rocker/
19839
19840 ROCKETPORT EXPRESS/INFINITY DRIVER
19841 M:      Kevin Cernekee <[email protected]>
19842 L:      [email protected]
19843 S:      Odd Fixes
19844 F:      drivers/tty/serial/rp2.*
19845
19846 ROHM BD99954 CHARGER IC
19847 M:      Matti Vaittinen <[email protected]>
19848 S:      Supported
19849 F:      drivers/power/supply/bd99954-charger.c
19850 F:      drivers/power/supply/bd99954-charger.h
19851
19852 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
19853 M:      Tomasz Duszynski <[email protected]>
19854 S:      Maintained
19855 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
19856 F:      drivers/iio/light/bh1750.c
19857
19858 ROHM BM1390 PRESSURE SENSOR DRIVER
19859 M:      Matti Vaittinen <[email protected]>
19860 L:      [email protected]
19861 S:      Supported
19862 F:      drivers/iio/pressure/rohm-bm1390.c
19863
19864 ROHM BU270xx LIGHT SENSOR DRIVERs
19865 M:      Matti Vaittinen <[email protected]>
19866 L:      [email protected]
19867 S:      Supported
19868 F:      drivers/iio/light/rohm-bu27008.c
19869 F:      drivers/iio/light/rohm-bu27034.c
19870
19871 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
19872 M:      Marek Vasut <[email protected]>
19873 L:      [email protected]
19874 L:      [email protected]
19875 S:      Supported
19876 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
19877 F:      drivers/gpio/gpio-bd9571mwv.c
19878 F:      drivers/mfd/bd9571mwv.c
19879 F:      drivers/regulator/bd9571mwv-regulator.c
19880 F:      include/linux/mfd/bd9571mwv.h
19881
19882 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
19883 M:      Matti Vaittinen <[email protected]>
19884 S:      Supported
19885 F:      drivers/clk/clk-bd718x7.c
19886 F:      drivers/gpio/gpio-bd71815.c
19887 F:      drivers/gpio/gpio-bd71828.c
19888 F:      drivers/mfd/rohm-bd71828.c
19889 F:      drivers/mfd/rohm-bd718x7.c
19890 F:      drivers/mfd/rohm-bd9576.c
19891 F:      drivers/mfd/rohm-bd96801.c
19892 F:      drivers/regulator/bd71815-regulator.c
19893 F:      drivers/regulator/bd71828-regulator.c
19894 F:      drivers/regulator/bd718x7-regulator.c
19895 F:      drivers/regulator/bd9576-regulator.c
19896 F:      drivers/regulator/bd96801-regulator.c
19897 F:      drivers/regulator/rohm-regulator.c
19898 F:      drivers/rtc/rtc-bd70528.c
19899 F:      drivers/watchdog/bd9576_wdt.c
19900 F:      drivers/watchdog/bd96801_wdt.c
19901 F:      include/linux/mfd/rohm-bd71815.h
19902 F:      include/linux/mfd/rohm-bd71828.h
19903 F:      include/linux/mfd/rohm-bd718x7.h
19904 F:      include/linux/mfd/rohm-bd957x.h
19905 F:      include/linux/mfd/rohm-bd96801.h
19906 F:      include/linux/mfd/rohm-generic.h
19907 F:      include/linux/mfd/rohm-shared.h
19908
19909 ROSE NETWORK LAYER
19910 M:      Ralf Baechle <[email protected]>
19911 L:      [email protected]
19912 S:      Maintained
19913 W:      https://linux-ax25.in-berlin.de
19914 F:      include/net/rose.h
19915 F:      include/uapi/linux/rose.h
19916 F:      net/rose/
19917
19918 ROTATION DRIVER FOR ALLWINNER A83T
19919 M:      Jernej Skrabec <[email protected]>
19920 L:      [email protected]
19921 S:      Maintained
19922 T:      git git://linuxtv.org/media_tree.git
19923 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
19924 F:      drivers/media/platform/sunxi/sun8i-rotate/
19925
19926 RPMSG TTY DRIVER
19927 M:      Arnaud Pouliquen <[email protected]>
19928 L:      [email protected]
19929 S:      Maintained
19930 F:      drivers/tty/rpmsg_tty.c
19931
19932 RTASE ETHERNET DRIVER
19933 M:      Justin Lai <[email protected]>
19934 M:      Larry Chiu <[email protected]>
19935 L:      [email protected]
19936 S:      Maintained
19937 F:      drivers/net/ethernet/realtek/rtase/
19938
19939 RTL2830 MEDIA DRIVER
19940 L:      [email protected]
19941 S:      Orphan
19942 W:      https://linuxtv.org
19943 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19944 F:      drivers/media/dvb-frontends/rtl2830*
19945
19946 RTL2832 MEDIA DRIVER
19947 L:      [email protected]
19948 S:      Orphan
19949 W:      https://linuxtv.org
19950 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19951 F:      drivers/media/dvb-frontends/rtl2832*
19952
19953 RTL2832_SDR MEDIA DRIVER
19954 L:      [email protected]
19955 S:      Orphan
19956 W:      https://linuxtv.org
19957 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19958 F:      drivers/media/dvb-frontends/rtl2832_sdr*
19959
19960 RTL8180 WIRELESS DRIVER
19961 L:      [email protected]
19962 S:      Orphan
19963 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
19964
19965 RTL8187 WIRELESS DRIVER
19966 M:      Hin-Tak Leung <[email protected]>
19967 L:      [email protected]
19968 S:      Maintained
19969 T:      git https://github.com/pkshih/rtw.git
19970 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
19971
19972 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
19973 M:      Jes Sorensen <[email protected]>
19974 L:      [email protected]
19975 S:      Maintained
19976 T:      git https://github.com/pkshih/rtw.git
19977 F:      drivers/net/wireless/realtek/rtl8xxxu/
19978
19979 RTRS TRANSPORT DRIVERS
19980 M:      Md. Haris Iqbal <[email protected]>
19981 M:      Jack Wang <[email protected]>
19982 L:      [email protected]
19983 S:      Maintained
19984 F:      drivers/infiniband/ulp/rtrs/
19985
19986 RUNTIME VERIFICATION (RV)
19987 M:      Steven Rostedt <[email protected]>
19988 L:      [email protected]
19989 S:      Maintained
19990 F:      Documentation/trace/rv/
19991 F:      include/linux/rv.h
19992 F:      include/rv/
19993 F:      kernel/trace/rv/
19994 F:      tools/verification/
19995
19996 RUST
19997 M:      Miguel Ojeda <[email protected]>
19998 M:      Alex Gaynor <[email protected]>
19999 R:      Boqun Feng <[email protected]>
20000 R:      Gary Guo <[email protected]>
20001 R:      Björn Roy Baron <[email protected]>
20002 R:      Benno Lossin <[email protected]>
20003 R:      Andreas Hindborg <[email protected]>
20004 R:      Alice Ryhl <[email protected]>
20005 L:      [email protected]
20006 S:      Supported
20007 W:      https://rust-for-linux.com
20008 B:      https://github.com/Rust-for-Linux/linux/issues
20009 C:      zulip://rust-for-linux.zulipchat.com
20010 P:      https://rust-for-linux.com/contributing
20011 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
20012 F:      Documentation/rust/
20013 F:      rust/
20014 F:      samples/rust/
20015 F:      scripts/*rust*
20016 F:      tools/testing/selftests/rust/
20017 K:      \b(?i:rust)\b
20018
20019 RXRPC SOCKETS (AF_RXRPC)
20020 M:      David Howells <[email protected]>
20021 M:      Marc Dionne <[email protected]>
20022 L:      [email protected]
20023 S:      Supported
20024 W:      https://www.infradead.org/~dhowells/kafs/
20025 F:      Documentation/networking/rxrpc.rst
20026 F:      include/keys/rxrpc-type.h
20027 F:      include/net/af_rxrpc.h
20028 F:      include/trace/events/rxrpc.h
20029 F:      include/uapi/linux/rxrpc.h
20030 F:      net/rxrpc/
20031
20032 S3 SAVAGE FRAMEBUFFER DRIVER
20033 M:      Antonino Daplas <[email protected]>
20034 L:      [email protected]
20035 S:      Maintained
20036 F:      drivers/video/fbdev/savage/
20037
20038 S390 ARCHITECTURE
20039 M:      Heiko Carstens <[email protected]>
20040 M:      Vasily Gorbik <[email protected]>
20041 M:      Alexander Gordeev <[email protected]>
20042 R:      Christian Borntraeger <[email protected]>
20043 R:      Sven Schnelle <[email protected]>
20044 L:      [email protected]
20045 S:      Supported
20046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
20047 F:      Documentation/driver-api/s390-drivers.rst
20048 F:      Documentation/arch/s390/
20049 F:      arch/s390/
20050 F:      drivers/s390/
20051 F:      drivers/watchdog/diag288_wdt.c
20052
20053 S390 COMMON I/O LAYER
20054 M:      Vineeth Vijayan <[email protected]>
20055 M:      Peter Oberparleiter <[email protected]>
20056 L:      [email protected]
20057 S:      Supported
20058 F:      drivers/s390/cio/
20059
20060 S390 DASD DRIVER
20061 M:      Stefan Haberland <[email protected]>
20062 M:      Jan Hoeppner <[email protected]>
20063 L:      [email protected]
20064 S:      Supported
20065 F:      block/partitions/ibm.c
20066 F:      drivers/s390/block/dasd*
20067 F:      include/linux/dasd_mod.h
20068
20069 S390 IOMMU (PCI)
20070 M:      Niklas Schnelle <[email protected]>
20071 M:      Matthew Rosato <[email protected]>
20072 R:      Gerald Schaefer <[email protected]>
20073 L:      [email protected]
20074 S:      Supported
20075 F:      drivers/iommu/s390-iommu.c
20076
20077 S390 IUCV NETWORK LAYER
20078 M:      Alexandra Winter <[email protected]>
20079 M:      Thorsten Winkler <[email protected]>
20080 L:      [email protected]
20081 L:      [email protected]
20082 S:      Supported
20083 F:      drivers/s390/net/*iucv*
20084 F:      include/net/iucv/
20085 F:      net/iucv/
20086
20087 S390 MM
20088 M:      Alexander Gordeev <[email protected]>
20089 M:      Gerald Schaefer <[email protected]>
20090 L:      [email protected]
20091 S:      Supported
20092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
20093 F:      arch/s390/include/asm/pgtable.h
20094 F:      arch/s390/mm
20095
20096 S390 NETWORK DRIVERS
20097 M:      Alexandra Winter <[email protected]>
20098 M:      Thorsten Winkler <[email protected]>
20099 L:      [email protected]
20100 L:      [email protected]
20101 S:      Supported
20102 F:      drivers/s390/net/
20103
20104 S390 PCI SUBSYSTEM
20105 M:      Niklas Schnelle <[email protected]>
20106 M:      Gerald Schaefer <[email protected]>
20107 L:      [email protected]
20108 S:      Supported
20109 F:      Documentation/arch/s390/pci.rst
20110 F:      arch/s390/pci/
20111 F:      drivers/pci/hotplug/s390_pci_hpc.c
20112
20113 S390 SCM DRIVER
20114 M:      Vineeth Vijayan <[email protected]>
20115 L:      [email protected]
20116 S:      Supported
20117 F:      drivers/s390/block/scm*
20118 F:      drivers/s390/cio/scm.c
20119
20120 S390 VFIO AP DRIVER
20121 M:      Tony Krowiak <[email protected]>
20122 M:      Halil Pasic <[email protected]>
20123 M:      Jason Herne <[email protected]>
20124 L:      [email protected]
20125 S:      Supported
20126 F:      Documentation/arch/s390/vfio-ap*
20127 F:      drivers/s390/crypto/vfio_ap*
20128
20129 S390 VFIO-CCW DRIVER
20130 M:      Eric Farman <[email protected]>
20131 M:      Matthew Rosato <[email protected]>
20132 R:      Halil Pasic <[email protected]>
20133 L:      [email protected]
20134 L:      [email protected]
20135 S:      Supported
20136 F:      Documentation/arch/s390/vfio-ccw.rst
20137 F:      drivers/s390/cio/vfio_ccw*
20138 F:      include/uapi/linux/vfio_ccw.h
20139
20140 S390 VFIO-PCI DRIVER
20141 M:      Matthew Rosato <[email protected]>
20142 M:      Eric Farman <[email protected]>
20143 L:      [email protected]
20144 L:      [email protected]
20145 S:      Supported
20146 F:      arch/s390/kvm/pci*
20147 F:      drivers/vfio/pci/vfio_pci_zdev.c
20148 F:      include/uapi/linux/vfio_zdev.h
20149
20150 S390 ZCRYPT DRIVER
20151 M:      Harald Freudenberger <[email protected]>
20152 L:      [email protected]
20153 S:      Supported
20154 F:      drivers/s390/crypto/
20155
20156 S390 ZFCP DRIVER
20157 M:      Steffen Maier <[email protected]>
20158 M:      Benjamin Block <[email protected]>
20159 L:      [email protected]
20160 S:      Supported
20161 F:      drivers/s390/scsi/zfcp_*
20162
20163 SAA6588 RDS RECEIVER DRIVER
20164 M:      Hans Verkuil <[email protected]>
20165 L:      [email protected]
20166 S:      Odd Fixes
20167 W:      https://linuxtv.org
20168 T:      git git://linuxtv.org/media_tree.git
20169 F:      drivers/media/i2c/saa6588*
20170
20171 SAA7134 VIDEO4LINUX DRIVER
20172 M:      Mauro Carvalho Chehab <[email protected]>
20173 L:      [email protected]
20174 S:      Odd fixes
20175 W:      https://linuxtv.org
20176 T:      git git://linuxtv.org/media_tree.git
20177 F:      Documentation/driver-api/media/drivers/saa7134*
20178 F:      drivers/media/pci/saa7134/
20179
20180 SAA7146 VIDEO4LINUX-2 DRIVER
20181 M:      Hans Verkuil <[email protected]>
20182 L:      [email protected]
20183 S:      Maintained
20184 T:      git git://linuxtv.org/media_tree.git
20185 F:      drivers/media/common/saa7146/
20186 F:      drivers/media/pci/saa7146/
20187 F:      include/media/drv-intf/saa7146*
20188
20189 SAFESETID SECURITY MODULE
20190 M:      Micah Morton <[email protected]>
20191 S:      Supported
20192 F:      Documentation/admin-guide/LSM/SafeSetID.rst
20193 F:      security/safesetid/
20194
20195 SAMSUNG AUDIO (ASoC) DRIVERS
20196 M:      Sylwester Nawrocki <[email protected]>
20197 L:      [email protected] (moderated for non-subscribers)
20198 S:      Maintained
20199 B:      mailto:[email protected]
20200 F:      Documentation/devicetree/bindings/sound/samsung*
20201 F:      sound/soc/samsung/
20202
20203 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
20204 M:      Krzysztof Kozlowski <[email protected]>
20205 L:      [email protected]
20206 L:      [email protected]
20207 S:      Maintained
20208 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
20209 F:      drivers/crypto/exynos-rng.c
20210
20211 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
20212 M:      Łukasz Stelmach <[email protected]>
20213 L:      [email protected]
20214 S:      Maintained
20215 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
20216 F:      drivers/char/hw_random/exynos-trng.c
20217
20218 SAMSUNG FRAMEBUFFER DRIVER
20219 M:      Jingoo Han <[email protected]>
20220 L:      [email protected]
20221 S:      Maintained
20222 F:      drivers/video/fbdev/s3c-fb.c
20223
20224 SAMSUNG INTERCONNECT DRIVERS
20225 M:      Sylwester Nawrocki <[email protected]>
20226 M:      Artur Świgoń <[email protected]>
20227 L:      [email protected]
20228 L:      [email protected]
20229 S:      Supported
20230 F:      drivers/interconnect/samsung/
20231
20232 SAMSUNG LAPTOP DRIVER
20233 M:      Corentin Chary <[email protected]>
20234 L:      [email protected]
20235 S:      Maintained
20236 F:      drivers/platform/x86/samsung-laptop.c
20237
20238 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
20239 M:      Krzysztof Kozlowski <[email protected]>
20240 L:      [email protected]
20241 L:      [email protected]
20242 S:      Maintained
20243 B:      mailto:[email protected]
20244 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
20245 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
20246 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
20247 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
20248 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
20249 F:      drivers/clk/clk-s2mps11.c
20250 F:      drivers/mfd/sec*.c
20251 F:      drivers/regulator/s2m*.c
20252 F:      drivers/regulator/s5m*.c
20253 F:      drivers/rtc/rtc-s5m.c
20254 F:      include/linux/mfd/samsung/
20255
20256 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
20257 M:      Sylwester Nawrocki <[email protected]>
20258 L:      [email protected]
20259 L:      [email protected]
20260 S:      Maintained
20261 F:      drivers/media/platform/samsung/s3c-camif/
20262 F:      include/media/drv-intf/s3c_camif.h
20263
20264 SAMSUNG S3FWRN5 NFC DRIVER
20265 M:      Krzysztof Kozlowski <[email protected]>
20266 S:      Maintained
20267 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
20268 F:      drivers/nfc/s3fwrn5
20269
20270 SAMSUNG S5C73M3 CAMERA DRIVER
20271 M:      Sylwester Nawrocki <[email protected]>
20272 M:      Andrzej Hajda <[email protected]>
20273 L:      [email protected]
20274 S:      Supported
20275 F:      Documentation/devicetree/bindings/media/samsung,s5c73m3.yaml
20276 F:      drivers/media/i2c/s5c73m3/*
20277
20278 SAMSUNG S5K5BAF CAMERA DRIVER
20279 M:      Sylwester Nawrocki <[email protected]>
20280 M:      Andrzej Hajda <[email protected]>
20281 L:      [email protected]
20282 S:      Supported
20283 F:      drivers/media/i2c/s5k5baf.c
20284
20285 SAMSUNG S5P Security SubSystem (SSS) DRIVER
20286 M:      Krzysztof Kozlowski <[email protected]>
20287 M:      Vladimir Zapolskiy <[email protected]>
20288 L:      [email protected]
20289 L:      [email protected]
20290 S:      Maintained
20291 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
20292 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
20293 F:      drivers/crypto/s5p-sss.c
20294
20295 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
20296 M:      Sylwester Nawrocki <[email protected]>
20297 L:      [email protected]
20298 S:      Supported
20299 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20300 F:      Documentation/devicetree/bindings/media/samsung,exynos4210-csis.yaml
20301 F:      Documentation/devicetree/bindings/media/samsung,exynos4210-fimc.yaml
20302 F:      Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-is.yaml
20303 F:      Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-lite.yaml
20304 F:      Documentation/devicetree/bindings/media/samsung,fimc.yaml
20305 F:      drivers/media/platform/samsung/exynos4-is/
20306
20307 SAMSUNG SOC CLOCK DRIVERS
20308 M:      Krzysztof Kozlowski <[email protected]>
20309 M:      Sylwester Nawrocki <[email protected]>
20310 M:      Chanwoo Choi <[email protected]>
20311 R:      Alim Akhtar <[email protected]>
20312 L:      [email protected]
20313 S:      Maintained
20314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
20315 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
20316 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
20317 F:      drivers/clk/samsung/
20318 F:      include/dt-bindings/clock/exynos*.h
20319 F:      include/dt-bindings/clock/s5p*.h
20320 F:      include/dt-bindings/clock/samsung,*.h
20321 F:      include/linux/clk/samsung.h
20322
20323 SAMSUNG SPI DRIVERS
20324 M:      Andi Shyti <[email protected]>
20325 L:      [email protected]
20326 L:      [email protected]
20327 S:      Maintained
20328 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
20329 F:      drivers/spi/spi-s3c*
20330 F:      include/linux/platform_data/spi-s3c64xx.h
20331
20332 SAMSUNG SXGBE DRIVERS
20333 M:      Byungho An <[email protected]>
20334 L:      [email protected]
20335 S:      Supported
20336 F:      drivers/net/ethernet/samsung/sxgbe/
20337
20338 SAMSUNG THERMAL DRIVER
20339 M:      Bartlomiej Zolnierkiewicz <[email protected]>
20340 M:      Krzysztof Kozlowski <[email protected]>
20341 L:      [email protected]
20342 L:      [email protected]
20343 S:      Maintained
20344 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
20345 F:      drivers/thermal/samsung/
20346
20347 SAMSUNG USB2 PHY DRIVER
20348 M:      Sylwester Nawrocki <[email protected]>
20349 L:      [email protected]
20350 S:      Supported
20351 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
20352 F:      Documentation/driver-api/phy/samsung-usb2.rst
20353 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
20354 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
20355 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
20356 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
20357 F:      drivers/phy/samsung/phy-samsung-usb2.c
20358 F:      drivers/phy/samsung/phy-samsung-usb2.h
20359
20360 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
20361 M:      Paul Barker <[email protected]>
20362 R:      Marc Murphy <[email protected]>
20363 S:      Supported
20364 F:      arch/arm/boot/dts/ti/omap/am335x-sancloud*
20365
20366 SC1200 WDT DRIVER
20367 M:      Zwane Mwaikambo <[email protected]>
20368 S:      Maintained
20369 F:      drivers/watchdog/sc1200wdt.c
20370
20371 SCHEDULER
20372 M:      Ingo Molnar <[email protected]>
20373 M:      Peter Zijlstra <[email protected]>
20374 M:      Juri Lelli <[email protected]> (SCHED_DEADLINE)
20375 M:      Vincent Guittot <[email protected]> (SCHED_NORMAL)
20376 R:      Dietmar Eggemann <[email protected]> (SCHED_NORMAL)
20377 R:      Steven Rostedt <[email protected]> (SCHED_FIFO/SCHED_RR)
20378 R:      Ben Segall <[email protected]> (CONFIG_CFS_BANDWIDTH)
20379 R:      Mel Gorman <[email protected]> (CONFIG_NUMA_BALANCING)
20380 R:      Valentin Schneider <[email protected]> (TOPOLOGY)
20381 L:      [email protected]
20382 S:      Maintained
20383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
20384 F:      include/linux/preempt.h
20385 F:      include/linux/sched.h
20386 F:      include/linux/wait.h
20387 F:      include/uapi/linux/sched.h
20388 F:      kernel/sched/
20389
20390 SCIOSENSE ENS160 MULTI-GAS SENSOR DRIVER
20391 M:      Gustavo Silva <[email protected]>
20392 S:      Maintained
20393 F:      drivers/iio/chemical/ens160_core.c
20394 F:      drivers/iio/chemical/ens160_i2c.c
20395 F:      drivers/iio/chemical/ens160_spi.c
20396 F:      drivers/iio/chemical/ens160.h
20397
20398 SCSI LIBSAS SUBSYSTEM
20399 R:      John Garry <[email protected]>
20400 R:      Jason Yan <[email protected]>
20401 L:      [email protected]
20402 S:      Supported
20403 F:      Documentation/scsi/libsas.rst
20404 F:      drivers/scsi/libsas/
20405 F:      include/scsi/libsas.h
20406 F:      include/scsi/sas_ata.h
20407
20408 SCSI RDMA PROTOCOL (SRP) INITIATOR
20409 M:      Bart Van Assche <[email protected]>
20410 L:      [email protected]
20411 S:      Supported
20412 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
20413 F:      drivers/infiniband/ulp/srp/
20414 F:      include/scsi/srp.h
20415
20416 SCSI RDMA PROTOCOL (SRP) TARGET
20417 M:      Bart Van Assche <[email protected]>
20418 L:      [email protected]
20419 L:      [email protected]
20420 S:      Supported
20421 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
20422 F:      drivers/infiniband/ulp/srpt/
20423
20424 SCSI SG DRIVER
20425 M:      Doug Gilbert <[email protected]>
20426 L:      [email protected]
20427 S:      Maintained
20428 W:      http://sg.danny.cz/sg
20429 F:      Documentation/scsi/scsi-generic.rst
20430 F:      drivers/scsi/sg.c
20431 F:      include/scsi/sg.h
20432
20433 SCSI SUBSYSTEM
20434 M:      "James E.J. Bottomley" <[email protected]>
20435 M:      "Martin K. Petersen" <[email protected]>
20436 L:      [email protected]
20437 S:      Maintained
20438 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
20439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
20440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
20441 F:      Documentation/devicetree/bindings/scsi/
20442 F:      drivers/scsi/
20443 F:      drivers/ufs/
20444 F:      include/scsi/
20445 F:      include/uapi/scsi/
20446
20447 SCSI TAPE DRIVER
20448 M:      Kai Mäkisara <[email protected]>
20449 L:      [email protected]
20450 S:      Maintained
20451 F:      Documentation/scsi/st.rst
20452 F:      drivers/scsi/st.*
20453 F:      drivers/scsi/st_*.h
20454
20455 SCSI TARGET CORE USER DRIVER
20456 M:      Bodo Stroesser <[email protected]>
20457 L:      [email protected]
20458 L:      [email protected]
20459 S:      Supported
20460 F:      Documentation/target/tcmu-design.rst
20461 F:      drivers/target/target_core_user.c
20462 F:      include/uapi/linux/target_core_user.h
20463
20464 SCSI TARGET SUBSYSTEM
20465 M:      "Martin K. Petersen" <[email protected]>
20466 L:      [email protected]
20467 L:      [email protected]
20468 S:      Supported
20469 Q:      https://patchwork.kernel.org/project/target-devel/list/
20470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
20471 F:      Documentation/target/
20472 F:      drivers/target/
20473 F:      include/target/
20474
20475 SCTP PROTOCOL
20476 M:      Marcelo Ricardo Leitner <[email protected]>
20477 M:      Xin Long <[email protected]>
20478 L:      [email protected]
20479 S:      Maintained
20480 W:      https://github.com/sctp/lksctp-tools/wiki
20481 F:      Documentation/networking/sctp.rst
20482 F:      include/linux/sctp.h
20483 F:      include/net/sctp/
20484 F:      include/uapi/linux/sctp.h
20485 F:      net/sctp/
20486
20487 SCx200 CPU SUPPORT
20488 M:      Jim Cromie <[email protected]>
20489 S:      Odd Fixes
20490 F:      Documentation/i2c/busses/scx200_acb.rst
20491 F:      arch/x86/platform/scx200/
20492 F:      drivers/i2c/busses/scx200*
20493 F:      drivers/mtd/maps/scx200_docflash.c
20494 F:      drivers/watchdog/scx200_wdt.c
20495 F:      include/linux/scx200.h
20496
20497 SCx200 GPIO DRIVER
20498 M:      Jim Cromie <[email protected]>
20499 S:      Maintained
20500 F:      drivers/char/scx200_gpio.c
20501 F:      include/linux/scx200_gpio.h
20502
20503 SCx200 HRT CLOCKSOURCE DRIVER
20504 M:      Jim Cromie <[email protected]>
20505 S:      Maintained
20506 F:      drivers/clocksource/scx200_hrt.c
20507
20508 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
20509 M:      Sascha Sommer <[email protected]>
20510 L:      [email protected] (subscribers-only)
20511 S:      Maintained
20512 F:      drivers/mmc/host/sdricoh_cs.c
20513
20514 SECO BOARDS CEC DRIVER
20515 M:      Ettore Chimenti <[email protected]>
20516 S:      Maintained
20517 F:      drivers/media/cec/platform/seco/seco-cec.c
20518 F:      drivers/media/cec/platform/seco/seco-cec.h
20519
20520 SECURE COMPUTING
20521 M:      Kees Cook <[email protected]>
20522 R:      Andy Lutomirski <[email protected]>
20523 R:      Will Drewry <[email protected]>
20524 S:      Supported
20525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
20526 F:      Documentation/userspace-api/seccomp_filter.rst
20527 F:      include/linux/seccomp.h
20528 F:      include/uapi/linux/seccomp.h
20529 F:      kernel/seccomp.c
20530 F:      tools/testing/selftests/kselftest_harness.h
20531 F:      tools/testing/selftests/seccomp/*
20532 K:      \bsecure_computing
20533 K:      \bTIF_SECCOMP\b
20534
20535 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
20536 M:      Kamal Dasu <[email protected]>
20537 M:      Al Cooper <[email protected]>
20538 R:      Broadcom internal kernel review list <[email protected]>
20539 L:      [email protected]
20540 S:      Maintained
20541 F:      drivers/mmc/host/sdhci-brcmstb*
20542
20543 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
20544 M:      Adrian Hunter <[email protected]>
20545 L:      [email protected]
20546 S:      Supported
20547 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
20548 F:      drivers/mmc/host/sdhci*
20549
20550 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
20551 M:      Aubin Constans <[email protected]>
20552 R:      Eugen Hristev <[email protected]>
20553 L:      [email protected]
20554 S:      Supported
20555 F:      drivers/mmc/host/sdhci-of-at91.c
20556
20557 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
20558 M:      Haibo Chen <[email protected]>
20559 L:      [email protected]
20560 L:      [email protected]
20561 L:      [email protected]
20562 S:      Maintained
20563 F:      drivers/mmc/host/sdhci-esdhc-imx.c
20564
20565 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
20566 M:      Ben Dooks <[email protected]>
20567 M:      Jaehoon Chung <[email protected]>
20568 L:      [email protected]
20569 S:      Maintained
20570 F:      drivers/mmc/host/sdhci-s3c*
20571
20572 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
20573 M:      Viresh Kumar <[email protected]>
20574 L:      [email protected]
20575 S:      Maintained
20576 F:      drivers/mmc/host/sdhci-spear.c
20577
20578 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
20579 M:      Vignesh Raghavendra <[email protected]>
20580 L:      [email protected]
20581 S:      Maintained
20582 F:      drivers/mmc/host/sdhci-omap.c
20583
20584 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
20585 M:      Jonathan Derrick <[email protected]>
20586 L:      [email protected]
20587 S:      Supported
20588 F:      block/opal_proto.h
20589 F:      block/sed*
20590 F:      include/linux/sed*
20591 F:      include/uapi/linux/sed*
20592
20593 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
20594 M:      Mark Rutland <[email protected]>
20595 M:      Lorenzo Pieralisi <[email protected]>
20596 M:      Sudeep Holla <[email protected]>
20597 L:      [email protected] (moderated for non-subscribers)
20598 S:      Maintained
20599 F:      drivers/firmware/smccc/
20600 F:      include/linux/arm-smccc.h
20601
20602 SECURITY CONTACT
20603 M:      Security Officers <[email protected]>
20604 S:      Supported
20605 F:      Documentation/process/security-bugs.rst
20606
20607 SECURITY SUBSYSTEM
20608 M:      Paul Moore <[email protected]>
20609 M:      James Morris <[email protected]>
20610 M:      "Serge E. Hallyn" <[email protected]>
20611 L:      [email protected]
20612 S:      Supported
20613 Q:      https://patchwork.kernel.org/project/linux-security-module/list
20614 B:      mailto:[email protected]
20615 P:      https://github.com/LinuxSecurityModule/kernel/blob/main/README.md
20616 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
20617 F:      include/linux/lsm_audit.h
20618 F:      include/linux/lsm_hook_defs.h
20619 F:      include/linux/lsm_hooks.h
20620 F:      include/linux/security.h
20621 F:      include/uapi/linux/lsm.h
20622 F:      security/
20623 F:      tools/testing/selftests/lsm/
20624 X:      security/selinux/
20625 K:      \bsecurity_[a-z_0-9]\+\b
20626
20627 SELINUX SECURITY MODULE
20628 M:      Paul Moore <[email protected]>
20629 M:      Stephen Smalley <[email protected]>
20630 R:      Ondrej Mosnacek <[email protected]>
20631 L:      [email protected]
20632 S:      Supported
20633 W:      https://github.com/SELinuxProject
20634 Q:      https://patchwork.kernel.org/project/selinux/list
20635 B:      mailto:[email protected]
20636 P:      https://github.com/SELinuxProject/selinux-kernel/blob/main/README.md
20637 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
20638 F:      Documentation/ABI/removed/sysfs-selinux-checkreqprot
20639 F:      Documentation/ABI/removed/sysfs-selinux-disable
20640 F:      Documentation/admin-guide/LSM/SELinux.rst
20641 F:      include/trace/events/avc.h
20642 F:      include/uapi/linux/selinux_netlink.h
20643 F:      scripts/selinux/
20644 F:      security/selinux/
20645
20646 SENSABLE PHANTOM
20647 M:      Jiri Slaby <[email protected]>
20648 S:      Maintained
20649 F:      drivers/misc/phantom.c
20650 F:      include/uapi/linux/phantom.h
20651
20652 SENSEAIR SUNRISE 006-0-0007
20653 M:      Jacopo Mondi <[email protected]>
20654 S:      Maintained
20655 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
20656 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
20657 F:      drivers/iio/chemical/sunrise_co2.c
20658
20659 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
20660 M:      Tomasz Duszynski <[email protected]>
20661 S:      Maintained
20662 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
20663 F:      drivers/iio/chemical/scd30.h
20664 F:      drivers/iio/chemical/scd30_core.c
20665 F:      drivers/iio/chemical/scd30_i2c.c
20666 F:      drivers/iio/chemical/scd30_serial.c
20667
20668 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
20669 M:      Roan van Dijk <[email protected]>
20670 S:      Maintained
20671 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
20672 F:      drivers/iio/chemical/scd4x.c
20673
20674 SENSIRION SGP40 GAS SENSOR DRIVER
20675 M:      Andreas Klinger <[email protected]>
20676 S:      Maintained
20677 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
20678 F:      drivers/iio/chemical/sgp40.c
20679
20680 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
20681 M:      Tomasz Duszynski <[email protected]>
20682 S:      Maintained
20683 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
20684 F:      drivers/iio/chemical/sps30.c
20685 F:      drivers/iio/chemical/sps30_i2c.c
20686 F:      drivers/iio/chemical/sps30_serial.c
20687
20688 SERIAL DEVICE BUS
20689 M:      Rob Herring <[email protected]>
20690 L:      [email protected]
20691 S:      Maintained
20692 F:      Documentation/devicetree/bindings/serial/serial.yaml
20693 F:      drivers/tty/serdev/
20694 F:      include/linux/serdev.h
20695
20696 SERIAL IR RECEIVER
20697 M:      Sean Young <[email protected]>
20698 L:      [email protected]
20699 S:      Maintained
20700 F:      drivers/media/rc/serial_ir.c
20701
20702 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
20703 M:      Srinivas Kandagatla <[email protected]>
20704 L:      [email protected] (moderated for non-subscribers)
20705 S:      Maintained
20706 F:      Documentation/devicetree/bindings/slimbus/
20707 F:      drivers/slimbus/
20708 F:      include/linux/slimbus.h
20709
20710 SFC NETWORK DRIVER
20711 M:      Edward Cree <[email protected]>
20712 M:      Martin Habets <[email protected]>
20713 L:      [email protected]
20714 L:      [email protected]
20715 S:      Supported
20716 F:      Documentation/networking/devlink/sfc.rst
20717 F:      drivers/net/ethernet/sfc/
20718
20719 SFCTEMP HWMON DRIVER
20720 M:      Emil Renner Berthing <[email protected]>
20721 M:      Hal Feng <[email protected]>
20722 L:      [email protected]
20723 S:      Maintained
20724 F:      Documentation/devicetree/bindings/hwmon/starfive,jh71x0-temp.yaml
20725 F:      Documentation/hwmon/sfctemp.rst
20726 F:      drivers/hwmon/sfctemp.c
20727
20728 SFF/SFP/SFP+ MODULE SUPPORT
20729 M:      Russell King <[email protected]>
20730 L:      [email protected]
20731 S:      Maintained
20732 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
20733 F:      drivers/net/phy/phylink.c
20734 F:      drivers/net/phy/sfp*
20735 F:      include/linux/mdio/mdio-i2c.h
20736 F:      include/linux/phylink.h
20737 F:      include/linux/sfp.h
20738 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)
20739
20740 SGI GRU DRIVER
20741 M:      Dimitri Sivanich <[email protected]>
20742 S:      Maintained
20743 F:      drivers/misc/sgi-gru/
20744
20745 SGI XP/XPC/XPNET DRIVER
20746 M:      Robin Holt <[email protected]>
20747 M:      Steve Wahl <[email protected]>
20748 S:      Maintained
20749 F:      drivers/misc/sgi-xp/
20750
20751 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
20752 M:      Wenjia Zhang <[email protected]>
20753 M:      Jan Karcher <[email protected]>
20754 R:      D. Wythe <[email protected]>
20755 R:      Tony Lu <[email protected]>
20756 R:      Wen Gu <[email protected]>
20757 L:      [email protected]
20758 S:      Supported
20759 F:      net/smc/
20760
20761 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
20762 M:      Linus Walleij <[email protected]>
20763 L:      [email protected]
20764 S:      Maintained
20765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
20766 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
20767 F:      drivers/iio/light/gp2ap002.c
20768
20769 SHARP RJ54N1CB0C SENSOR DRIVER
20770 M:      Jacopo Mondi <[email protected]>
20771 L:      [email protected]
20772 S:      Odd fixes
20773 T:      git git://linuxtv.org/media_tree.git
20774 F:      drivers/media/i2c/rj54n1cb0c.c
20775 F:      include/media/i2c/rj54n1cb0c.h
20776
20777 SHRINKER
20778 M:      Andrew Morton <[email protected]>
20779 M:      Dave Chinner <[email protected]>
20780 R:      Qi Zheng <[email protected]>
20781 R:      Roman Gushchin <[email protected]>
20782 R:      Muchun Song <[email protected]>
20783 L:      [email protected]
20784 S:      Maintained
20785 F:      Documentation/admin-guide/mm/shrinker_debugfs.rst
20786 F:      include/linux/shrinker.h
20787 F:      mm/shrinker.c
20788 F:      mm/shrinker_debug.c
20789
20790 SH_VOU V4L2 OUTPUT DRIVER
20791 L:      [email protected]
20792 S:      Orphan
20793 F:      drivers/media/platform/renesas/sh_vou.c
20794 F:      include/media/drv-intf/sh_vou.h
20795
20796 SI2157 MEDIA DRIVER
20797 L:      [email protected]
20798 S:      Orphan
20799 W:      https://linuxtv.org
20800 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20801 F:      drivers/media/tuners/si2157*
20802
20803 SI2165 MEDIA DRIVER
20804 M:      Matthias Schwarzott <[email protected]>
20805 L:      [email protected]
20806 S:      Maintained
20807 W:      https://linuxtv.org
20808 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20809 F:      drivers/media/dvb-frontends/si2165*
20810
20811 SI2168 MEDIA DRIVER
20812 L:      [email protected]
20813 S:      Orphan
20814 W:      https://linuxtv.org
20815 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20816 F:      drivers/media/dvb-frontends/si2168*
20817
20818 SI470X FM RADIO RECEIVER I2C DRIVER
20819 M:      Hans Verkuil <[email protected]>
20820 L:      [email protected]
20821 S:      Odd Fixes
20822 W:      https://linuxtv.org
20823 T:      git git://linuxtv.org/media_tree.git
20824 F:      Documentation/devicetree/bindings/media/silabs,si470x.yaml
20825 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
20826
20827 SI470X FM RADIO RECEIVER USB DRIVER
20828 M:      Hans Verkuil <[email protected]>
20829 L:      [email protected]
20830 S:      Maintained
20831 W:      https://linuxtv.org
20832 T:      git git://linuxtv.org/media_tree.git
20833 F:      drivers/media/radio/si470x/radio-si470x-common.c
20834 F:      drivers/media/radio/si470x/radio-si470x-usb.c
20835 F:      drivers/media/radio/si470x/radio-si470x.h
20836
20837 SI4713 FM RADIO TRANSMITTER I2C DRIVER
20838 M:      Eduardo Valentin <[email protected]>
20839 L:      [email protected]
20840 S:      Odd Fixes
20841 W:      https://linuxtv.org
20842 T:      git git://linuxtv.org/media_tree.git
20843 F:      drivers/media/radio/si4713/si4713.?
20844
20845 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
20846 M:      Eduardo Valentin <[email protected]>
20847 L:      [email protected]
20848 S:      Odd Fixes
20849 W:      https://linuxtv.org
20850 T:      git git://linuxtv.org/media_tree.git
20851 F:      drivers/media/radio/si4713/radio-platform-si4713.c
20852
20853 SI4713 FM RADIO TRANSMITTER USB DRIVER
20854 M:      Hans Verkuil <[email protected]>
20855 L:      [email protected]
20856 S:      Maintained
20857 W:      https://linuxtv.org
20858 T:      git git://linuxtv.org/media_tree.git
20859 F:      drivers/media/radio/si4713/radio-usb-si4713.c
20860
20861 SIANO DVB DRIVER
20862 M:      Mauro Carvalho Chehab <[email protected]>
20863 L:      [email protected]
20864 S:      Odd fixes
20865 W:      https://linuxtv.org
20866 T:      git git://linuxtv.org/media_tree.git
20867 F:      drivers/media/common/siano/
20868 F:      drivers/media/mmc/siano/
20869 F:      drivers/media/usb/siano/
20870 F:      drivers/media/usb/siano/
20871
20872 SIEMENS IPC LED DRIVERS
20873 M:      Gerd Haeussler <[email protected]>
20874 M:      Xing Tong Wu <[email protected]>
20875 M:      Tobias Schaffner <[email protected]>
20876 L:      [email protected]
20877 S:      Maintained
20878 F:      drivers/leds/simple/
20879
20880 SIEMENS IPC PLATFORM DRIVERS
20881 M:      Gerd Haeussler <[email protected]>
20882 M:      Xing Tong Wu <[email protected]>
20883 M:      Tobias Schaffner <[email protected]>
20884 L:      [email protected]
20885 S:      Maintained
20886 F:      drivers/platform/x86/siemens/
20887 F:      include/linux/platform_data/x86/simatic-ipc-base.h
20888 F:      include/linux/platform_data/x86/simatic-ipc.h
20889
20890 SIEMENS IPC WATCHDOG DRIVERS
20891 M:      Gerd Haeussler <[email protected]>
20892 M:      Xing Tong Wu <[email protected]>
20893 M:      Tobias Schaffner <[email protected]>
20894 L:      [email protected]
20895 S:      Maintained
20896 F:      drivers/watchdog/simatic-ipc-wdt.c
20897
20898 SIFIVE DRIVERS
20899 M:      Paul Walmsley <[email protected]>
20900 M:      Samuel Holland <[email protected]>
20901 L:      [email protected]
20902 S:      Supported
20903 F:      drivers/dma/sf-pdma/
20904 N:      sifive
20905 K:      fu[57]40
20906 K:      [^@]sifive
20907
20908 SILEAD TOUCHSCREEN DRIVER
20909 M:      Hans de Goede <[email protected]>
20910 L:      [email protected]
20911 L:      [email protected]
20912 S:      Maintained
20913 F:      drivers/input/touchscreen/silead.c
20914 F:      drivers/platform/x86/touchscreen_dmi.c
20915
20916 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
20917 M:      Jérôme Pouiller <[email protected]>
20918 S:      Supported
20919 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
20920 F:      drivers/net/wireless/silabs/wfx/
20921
20922 SILICON MOTION SM712 FRAME BUFFER DRIVER
20923 M:      Sudip Mukherjee <[email protected]>
20924 M:      Teddy Wang <[email protected]>
20925 M:      Sudip Mukherjee <[email protected]>
20926 L:      [email protected]
20927 S:      Maintained
20928 F:      Documentation/fb/sm712fb.rst
20929 F:      drivers/video/fbdev/sm712*
20930
20931 SILVACO I3C DUAL-ROLE MASTER
20932 M:      Miquel Raynal <[email protected]>
20933 M:      Conor Culhane <[email protected]>
20934 L:      [email protected] (moderated for non-subscribers)
20935 S:      Maintained
20936 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
20937 F:      drivers/i3c/master/svc-i3c-master.c
20938
20939 SIMPLEFB FB DRIVER
20940 M:      Hans de Goede <[email protected]>
20941 L:      [email protected]
20942 S:      Maintained
20943 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
20944 F:      drivers/video/fbdev/simplefb.c
20945 F:      include/linux/platform_data/simplefb.h
20946
20947 SIOX
20948 M:      Thorsten Scherer <[email protected]>
20949 R:      Pengutronix Kernel Team <[email protected]>
20950 S:      Supported
20951 F:      drivers/gpio/gpio-siox.c
20952 F:      drivers/siox/*
20953 F:      include/trace/events/siox.h
20954
20955 SIPHASH PRF ROUTINES
20956 M:      Jason A. Donenfeld <[email protected]>
20957 S:      Maintained
20958 F:      include/linux/siphash.h
20959 F:      lib/siphash.c
20960 F:      lib/siphash_kunit.c
20961
20962 SIS 190 ETHERNET DRIVER
20963 M:      Francois Romieu <[email protected]>
20964 L:      [email protected]
20965 S:      Maintained
20966 F:      drivers/net/ethernet/sis/sis190.c
20967
20968 SIS 900/7016 FAST ETHERNET DRIVER
20969 M:      Daniele Venzano <[email protected]>
20970 L:      [email protected]
20971 S:      Maintained
20972 W:      http://www.brownhat.org/sis900.html
20973 F:      drivers/net/ethernet/sis/sis900.*
20974
20975 SIS FRAMEBUFFER DRIVER
20976 S:      Orphan
20977 F:      Documentation/fb/sisfb.rst
20978 F:      drivers/video/fbdev/sis/
20979 F:      include/video/sisfb.h
20980
20981 SIS I2C TOUCHSCREEN DRIVER
20982 M:      Mika Penttilä <[email protected]>
20983 L:      [email protected]
20984 S:      Maintained
20985 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
20986 F:      drivers/input/touchscreen/sis_i2c.c
20987
20988 SIS USB2VGA DRIVER
20989 M:      Thomas Winischhofer <[email protected]>
20990 S:      Maintained
20991 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
20992 F:      drivers/usb/misc/sisusbvga/
20993
20994 SL28 CPLD MFD DRIVER
20995 M:      Michael Walle <[email protected]>
20996 S:      Maintained
20997 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
20998 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
20999 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
21000 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
21001 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
21002 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
21003 F:      drivers/gpio/gpio-sl28cpld.c
21004 F:      drivers/hwmon/sl28cpld-hwmon.c
21005 F:      drivers/irqchip/irq-sl28cpld.c
21006 F:      drivers/pwm/pwm-sl28cpld.c
21007 F:      drivers/watchdog/sl28cpld_wdt.c
21008
21009 SL28 VPD NVMEM LAYOUT DRIVER
21010 M:      Michael Walle <[email protected]>
21011 S:      Maintained
21012 F:      Documentation/devicetree/bindings/nvmem/layouts/kontron,sl28-vpd.yaml
21013 F:      drivers/nvmem/layouts/sl28vpd.c
21014
21015 SLAB ALLOCATOR
21016 M:      Christoph Lameter <[email protected]>
21017 M:      Pekka Enberg <[email protected]>
21018 M:      David Rientjes <[email protected]>
21019 M:      Joonsoo Kim <[email protected]>
21020 M:      Andrew Morton <[email protected]>
21021 M:      Vlastimil Babka <[email protected]>
21022 R:      Roman Gushchin <[email protected]>
21023 R:      Hyeonggon Yoo <[email protected]>
21024 L:      [email protected]
21025 S:      Maintained
21026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
21027 F:      include/linux/sl?b*.h
21028 F:      mm/sl?b*
21029
21030 SLCAN CAN NETWORK DRIVER
21031 M:      Dario Binacchi <[email protected]>
21032 L:      [email protected]
21033 S:      Maintained
21034 F:      drivers/net/can/slcan/
21035
21036 SLEEPABLE READ-COPY UPDATE (SRCU)
21037 M:      Lai Jiangshan <[email protected]>
21038 M:      "Paul E. McKenney" <[email protected]>
21039 M:      Josh Triplett <[email protected]>
21040 R:      Steven Rostedt <[email protected]>
21041 R:      Mathieu Desnoyers <[email protected]>
21042 L:      [email protected]
21043 S:      Supported
21044 W:      http://www.rdrop.com/users/paulmck/RCU/
21045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
21046 F:      include/linux/srcu*.h
21047 F:      kernel/rcu/srcu*.c
21048
21049 SMACK SECURITY MODULE
21050 M:      Casey Schaufler <[email protected]>
21051 L:      [email protected]
21052 S:      Maintained
21053 W:      http://schaufler-ca.com
21054 T:      git git://github.com/cschaufler/smack-next
21055 F:      Documentation/admin-guide/LSM/Smack.rst
21056 F:      security/smack/
21057
21058 SMC91x ETHERNET DRIVER
21059 M:      Nicolas Pitre <[email protected]>
21060 S:      Odd Fixes
21061 F:      drivers/net/ethernet/smsc/smc91x.*
21062
21063 SMSC EMC2103 HARDWARE MONITOR DRIVER
21064 M:      Steve Glendinning <[email protected]>
21065 L:      [email protected]
21066 S:      Maintained
21067 F:      Documentation/hwmon/emc2103.rst
21068 F:      drivers/hwmon/emc2103.c
21069
21070 SMSC SCH5627 HARDWARE MONITOR DRIVER
21071 M:      Hans de Goede <[email protected]>
21072 L:      [email protected]
21073 S:      Supported
21074 F:      Documentation/hwmon/sch5627.rst
21075 F:      drivers/hwmon/sch5627.c
21076
21077 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
21078 M:      Steve Glendinning <[email protected]>
21079 L:      [email protected]
21080 S:      Maintained
21081 F:      drivers/video/fbdev/smscufx.c
21082
21083 SMSC47B397 HARDWARE MONITOR DRIVER
21084 M:      Jean Delvare <[email protected]>
21085 L:      [email protected]
21086 S:      Maintained
21087 F:      Documentation/hwmon/smsc47b397.rst
21088 F:      drivers/hwmon/smsc47b397.c
21089
21090 SMSC911x ETHERNET DRIVER
21091 M:      Steve Glendinning <[email protected]>
21092 L:      [email protected]
21093 S:      Maintained
21094 F:      drivers/net/ethernet/smsc/smsc911x.*
21095 F:      include/linux/smsc911x.h
21096
21097 SMSC9420 PCI ETHERNET DRIVER
21098 M:      Steve Glendinning <[email protected]>
21099 L:      [email protected]
21100 S:      Maintained
21101 F:      drivers/net/ethernet/smsc/smsc9420.*
21102
21103 SNET DPU VIRTIO DATA PATH ACCELERATOR
21104 R:      Alvaro Karsz <[email protected]>
21105 F:      drivers/vdpa/solidrun/
21106
21107 SOCIONEXT (SNI) AVE NETWORK DRIVER
21108 M:      Kunihiko Hayashi <[email protected]>
21109 L:      [email protected]
21110 S:      Maintained
21111 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
21112 F:      drivers/net/ethernet/socionext/sni_ave.c
21113
21114 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
21115 M:      Ilias Apalodimas <[email protected]>
21116 M:      Masahisa Kojima <[email protected]>
21117 L:      [email protected]
21118 S:      Maintained
21119 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
21120 F:      drivers/net/ethernet/socionext/netsec.c
21121
21122 SOCIONEXT (SNI) Synquacer SPI DRIVER
21123 M:      Masahisa Kojima <[email protected]>
21124 M:      Jassi Brar <[email protected]>
21125 L:      [email protected]
21126 S:      Maintained
21127 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
21128 F:      drivers/spi/spi-synquacer.c
21129
21130 SOCIONEXT SYNQUACER I2C DRIVER
21131 M:      Ard Biesheuvel <[email protected]>
21132 L:      [email protected]
21133 S:      Maintained
21134 F:      Documentation/devicetree/bindings/i2c/socionext,synquacer-i2c.yaml
21135 F:      drivers/i2c/busses/i2c-synquacer.c
21136
21137 SOCIONEXT UNIPHIER SOUND DRIVER
21138 L:      [email protected] (moderated for non-subscribers)
21139 S:      Orphan
21140 F:      sound/soc/uniphier/
21141
21142 SOCKET TIMESTAMPING
21143 M:      Willem de Bruijn <[email protected]>
21144 S:      Maintained
21145 F:      Documentation/networking/timestamping.rst
21146 F:      include/linux/net_tstamp.h
21147 F:      include/uapi/linux/net_tstamp.h
21148 F:      tools/testing/selftests/net/so_txtime.c
21149
21150 SOEKRIS NET48XX LED SUPPORT
21151 M:      Chris Boot <[email protected]>
21152 S:      Maintained
21153 F:      drivers/leds/leds-net48xx.c
21154
21155 SOFT-IWARP DRIVER (siw)
21156 M:      Bernard Metzler <[email protected]>
21157 L:      [email protected]
21158 S:      Supported
21159 F:      drivers/infiniband/sw/siw/
21160 F:      include/uapi/rdma/siw-abi.h
21161
21162 SOFT-ROCE DRIVER (rxe)
21163 M:      Zhu Yanjun <[email protected]>
21164 L:      [email protected]
21165 S:      Supported
21166 F:      drivers/infiniband/sw/rxe/
21167 F:      include/uapi/rdma/rdma_user_rxe.h
21168
21169 SOFTLOGIC 6x10 MPEG CODEC
21170 M:      Bluecherry Maintainers <[email protected]>
21171 M:      Andrey Utkin <[email protected]>
21172 M:      Ismael Luceno <[email protected]>
21173 L:      [email protected]
21174 S:      Supported
21175 F:      drivers/media/pci/solo6x10/
21176
21177 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
21178 M:      James Morse <[email protected]>
21179 L:      [email protected] (moderated for non-subscribers)
21180 S:      Maintained
21181 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
21182 F:      drivers/firmware/arm_sdei.c
21183 F:      include/linux/arm_sdei.h
21184 F:      include/uapi/linux/arm_sdei.h
21185
21186 SOFTWARE NODES AND DEVICE PROPERTIES
21187 R:      Andy Shevchenko <[email protected]>
21188 R:      Daniel Scally <[email protected]>
21189 R:      Heikki Krogerus <[email protected]>
21190 R:      Sakari Ailus <[email protected]>
21191 L:      [email protected]
21192 S:      Maintained
21193 F:      drivers/base/property.c
21194 F:      drivers/base/swnode.c
21195 F:      include/linux/fwnode.h
21196 F:      include/linux/property.h
21197
21198 SOFTWARE RAID (Multiple Disks) SUPPORT
21199 M:      Song Liu <[email protected]>
21200 R:      Yu Kuai <[email protected]>
21201 L:      [email protected]
21202 S:      Supported
21203 Q:      https://patchwork.kernel.org/project/linux-raid/list/
21204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
21205 F:      drivers/md/Kconfig
21206 F:      drivers/md/Makefile
21207 F:      drivers/md/md*
21208 F:      drivers/md/raid*
21209 F:      include/linux/raid/
21210 F:      include/uapi/linux/raid/
21211
21212 SOLIDRUN CLEARFOG SUPPORT
21213 M:      Russell King <[email protected]>
21214 S:      Maintained
21215 F:      arch/arm/boot/dts/marvell/armada-388-clearfog*
21216 F:      arch/arm/boot/dts/marvell/armada-38x-solidrun-*
21217
21218 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
21219 M:      Russell King <[email protected]>
21220 S:      Maintained
21221 F:      arch/arm/boot/dts/nxp/imx/imx6*-cubox-i*
21222 F:      arch/arm/boot/dts/nxp/imx/imx6*-hummingboard*
21223 F:      arch/arm/boot/dts/nxp/imx/imx6*-sr-*
21224
21225 SONIC NETWORK DRIVER
21226 M:      Thomas Bogendoerfer <[email protected]>
21227 L:      [email protected]
21228 S:      Maintained
21229 F:      drivers/net/ethernet/natsemi/sonic.*
21230
21231 SONICS SILICON BACKPLANE DRIVER (SSB)
21232 M:      Michael Buesch <[email protected]>
21233 L:      [email protected]
21234 S:      Maintained
21235 F:      drivers/ssb/
21236 F:      include/linux/ssb/
21237
21238 SONY IMX208 SENSOR DRIVER
21239 M:      Sakari Ailus <[email protected]>
21240 L:      [email protected]
21241 S:      Maintained
21242 T:      git git://linuxtv.org/media_tree.git
21243 F:      drivers/media/i2c/imx208.c
21244
21245 SONY IMX214 SENSOR DRIVER
21246 M:      Ricardo Ribalda <[email protected]>
21247 L:      [email protected]
21248 S:      Maintained
21249 T:      git git://linuxtv.org/media_tree.git
21250 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
21251 F:      drivers/media/i2c/imx214.c
21252
21253 SONY IMX219 SENSOR DRIVER
21254 M:      Dave Stevenson <[email protected]>
21255 L:      [email protected]
21256 S:      Maintained
21257 T:      git git://linuxtv.org/media_tree.git
21258 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
21259 F:      drivers/media/i2c/imx219.c
21260
21261 SONY IMX258 SENSOR DRIVER
21262 M:      Sakari Ailus <[email protected]>
21263 L:      [email protected]
21264 S:      Maintained
21265 T:      git git://linuxtv.org/media_tree.git
21266 F:      Documentation/devicetree/bindings/media/i2c/sony,imx258.yaml
21267 F:      drivers/media/i2c/imx258.c
21268
21269 SONY IMX274 SENSOR DRIVER
21270 M:      Leon Luo <[email protected]>
21271 L:      [email protected]
21272 S:      Maintained
21273 T:      git git://linuxtv.org/media_tree.git
21274 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
21275 F:      drivers/media/i2c/imx274.c
21276
21277 SONY IMX283 SENSOR DRIVER
21278 M:      Kieran Bingham <[email protected]>
21279 M:      Umang Jain <[email protected]>
21280 L:      [email protected]
21281 S:      Maintained
21282 T:      git git://linuxtv.org/media_tree.git
21283 F:      Documentation/devicetree/bindings/media/i2c/sony,imx283.yaml
21284 F:      drivers/media/i2c/imx283.c
21285
21286 SONY IMX290 SENSOR DRIVER
21287 M:      Manivannan Sadhasivam <[email protected]>
21288 L:      [email protected]
21289 S:      Maintained
21290 T:      git git://linuxtv.org/media_tree.git
21291 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
21292 F:      drivers/media/i2c/imx290.c
21293
21294 SONY IMX296 SENSOR DRIVER
21295 M:      Laurent Pinchart <[email protected]>
21296 M:      Manivannan Sadhasivam <[email protected]>
21297 L:      [email protected]
21298 S:      Maintained
21299 T:      git git://linuxtv.org/media_tree.git
21300 F:      Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml
21301 F:      drivers/media/i2c/imx296.c
21302
21303 SONY IMX319 SENSOR DRIVER
21304 M:      Bingbu Cao <[email protected]>
21305 L:      [email protected]
21306 S:      Maintained
21307 T:      git git://linuxtv.org/media_tree.git
21308 F:      drivers/media/i2c/imx319.c
21309
21310 SONY IMX334 SENSOR DRIVER
21311 L:      [email protected]
21312 S:      Orphan
21313 T:      git git://linuxtv.org/media_tree.git
21314 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
21315 F:      drivers/media/i2c/imx334.c
21316
21317 SONY IMX335 SENSOR DRIVER
21318 L:      [email protected]
21319 S:      Orphan
21320 T:      git git://linuxtv.org/media_tree.git
21321 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
21322 F:      drivers/media/i2c/imx335.c
21323
21324 SONY IMX355 SENSOR DRIVER
21325 M:      Tianshu Qiu <[email protected]>
21326 L:      [email protected]
21327 S:      Maintained
21328 T:      git git://linuxtv.org/media_tree.git
21329 F:      drivers/media/i2c/imx355.c
21330
21331 SONY IMX412 SENSOR DRIVER
21332 L:      [email protected]
21333 S:      Orphan
21334 T:      git git://linuxtv.org/media_tree.git
21335 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
21336 F:      drivers/media/i2c/imx412.c
21337
21338 SONY IMX415 SENSOR DRIVER
21339 M:      Michael Riesch <[email protected]>
21340 L:      [email protected]
21341 S:      Maintained
21342 T:      git git://linuxtv.org/media_tree.git
21343 F:      Documentation/devicetree/bindings/media/i2c/sony,imx415.yaml
21344 F:      drivers/media/i2c/imx415.c
21345
21346 SONY MEMORYSTICK SUBSYSTEM
21347 M:      Maxim Levitsky <[email protected]>
21348 M:      Alex Dubov <[email protected]>
21349 M:      Ulf Hansson <[email protected]>
21350 L:      [email protected]
21351 S:      Maintained
21352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
21353 F:      drivers/memstick/
21354 F:      include/linux/memstick.h
21355
21356 SONY VAIO CONTROL DEVICE DRIVER
21357 M:      Mattia Dongili <[email protected]>
21358 L:      [email protected]
21359 S:      Maintained
21360 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
21361 F:      Documentation/admin-guide/laptops/sony-laptop.rst
21362 F:      drivers/char/sonypi.c
21363 F:      drivers/platform/x86/sony-laptop.c
21364 F:      include/linux/sony-laptop.h
21365
21366 SOPHGO DEVICETREES and DRIVERS
21367 M:      Chen Wang <[email protected]>
21368 M:      Inochi Amaoto <[email protected]>
21369 T:      git https://github.com/sophgo/linux.git
21370 S:      Maintained
21371 N:      sophgo
21372 K:      sophgo
21373
21374 SOUND
21375 M:      Jaroslav Kysela <[email protected]>
21376 M:      Takashi Iwai <[email protected]>
21377 L:      [email protected]
21378 S:      Maintained
21379 W:      http://www.alsa-project.org/
21380 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
21381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21382 F:      Documentation/sound/
21383 F:      include/sound/
21384 F:      include/uapi/sound/
21385 F:      sound/
21386 F:      tools/testing/selftests/alsa
21387
21388 SOUND - ALSA SELFTESTS
21389 M:      Mark Brown <[email protected]>
21390 L:      [email protected]
21391 L:      [email protected]
21392 S:      Supported
21393 F:      tools/testing/selftests/alsa
21394
21395 SOUND - COMPRESSED AUDIO
21396 M:      Vinod Koul <[email protected]>
21397 L:      [email protected] (moderated for non-subscribers)
21398 S:      Supported
21399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21400 F:      Documentation/sound/designs/compress-offload.rst
21401 F:      include/sound/compress_driver.h
21402 F:      include/uapi/sound/compress_*
21403 F:      sound/core/compress_offload.c
21404 F:      sound/soc/soc-compress.c
21405
21406 SOUND - CORE KUNIT TEST
21407 M:      Ivan Orlov <[email protected]>
21408 L:      [email protected]
21409 S:      Supported
21410 F:      sound/core/sound_kunit.c
21411
21412 SOUND - DMAENGINE HELPERS
21413 M:      Lars-Peter Clausen <[email protected]>
21414 S:      Supported
21415 F:      include/sound/dmaengine_pcm.h
21416 F:      sound/core/pcm_dmaengine.c
21417 F:      sound/soc/soc-generic-dmaengine-pcm.c
21418
21419 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
21420 M:      Liam Girdwood <[email protected]>
21421 M:      Mark Brown <[email protected]>
21422 L:      [email protected]
21423 S:      Supported
21424 W:      http://alsa-project.org/main/index.php/ASoC
21425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
21426 F:      Documentation/devicetree/bindings/sound/
21427 F:      Documentation/sound/soc/
21428 F:      include/dt-bindings/sound/
21429 F:      include/sound/soc*
21430 F:      include/sound/sof.h
21431 F:      include/sound/sof/
21432 F:      include/trace/events/sof*.h
21433 F:      include/uapi/sound/asoc.h
21434 F:      sound/soc/
21435
21436 SOUND - SOC LAYER / dapm-graph
21437 M:      Luca Ceresoli <[email protected]>
21438 L:      [email protected]
21439 S:      Maintained
21440 F:      tools/sound/dapm-graph
21441
21442 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
21443 M:      Pierre-Louis Bossart <[email protected]>
21444 M:      Liam Girdwood <[email protected]>
21445 M:      Peter Ujfalusi <[email protected]>
21446 M:      Bard Liao <[email protected]>
21447 M:      Ranjani Sridharan <[email protected]>
21448 M:      Daniel Baluta <[email protected]>
21449 R:      Kai Vehmanen <[email protected]>
21450 L:      [email protected] (moderated for non-subscribers)
21451 S:      Supported
21452 W:      https://github.com/thesofproject/linux/
21453 F:      sound/soc/sof/
21454
21455 SOUNDWIRE SUBSYSTEM
21456 M:      Vinod Koul <[email protected]>
21457 M:      Bard Liao <[email protected]>
21458 R:      Pierre-Louis Bossart <[email protected]>
21459 R:      Sanyog Kale <[email protected]>
21460 L:      [email protected] (moderated for non-subscribers)
21461 S:      Supported
21462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
21463 F:      Documentation/driver-api/soundwire/
21464 F:      drivers/soundwire/
21465 F:      include/linux/soundwire/
21466
21467 SP2 MEDIA DRIVER
21468 M:      Olli Salonen <[email protected]>
21469 L:      [email protected]
21470 S:      Maintained
21471 W:      https://linuxtv.org
21472 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21473 F:      drivers/media/dvb-frontends/sp2*
21474
21475 SPANISH DOCUMENTATION
21476 M:      Carlos Bilbao <[email protected]>
21477 R:      Avadhut Naik <[email protected]>
21478 S:      Maintained
21479 F:      Documentation/translations/sp_SP/
21480
21481 SPARC + UltraSPARC (sparc/sparc64)
21482 M:      "David S. Miller" <[email protected]>
21483 M:      Andreas Larsson <[email protected]>
21484 L:      [email protected]
21485 S:      Maintained
21486 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
21487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
21488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
21489 F:      arch/sparc/
21490 F:      drivers/sbus/
21491
21492 SPARC SERIAL DRIVERS
21493 M:      "David S. Miller" <[email protected]>
21494 L:      [email protected]
21495 S:      Maintained
21496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
21497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
21498 F:      drivers/tty/serial/suncore.c
21499 F:      drivers/tty/serial/sunhv.c
21500 F:      drivers/tty/serial/sunsab.c
21501 F:      drivers/tty/serial/sunsab.h
21502 F:      drivers/tty/serial/sunsu.c
21503 F:      drivers/tty/serial/sunzilog.c
21504 F:      drivers/tty/serial/sunzilog.h
21505 F:      drivers/tty/vcc.c
21506 F:      include/linux/sunserialcore.h
21507
21508 SPARSE CHECKER
21509 M:      "Luc Van Oostenryck" <[email protected]>
21510 L:      [email protected]
21511 S:      Maintained
21512 W:      https://sparse.docs.kernel.org/
21513 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
21514 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
21515 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
21516 F:      include/linux/compiler.h
21517
21518 SPEAKUP CONSOLE SPEECH DRIVER
21519 M:      William Hubbs <[email protected]>
21520 M:      Chris Brannon <[email protected]>
21521 M:      Kirk Reiser <[email protected]>
21522 M:      Samuel Thibault <[email protected]>
21523 L:      [email protected]
21524 S:      Odd Fixes
21525 W:      http://www.linux-speakup.org/
21526 W:      https://github.com/linux-speakup/speakup
21527 B:      https://github.com/linux-speakup/speakup/issues
21528 F:      drivers/accessibility/speakup/
21529
21530 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
21531 M:      Viresh Kumar <[email protected]>
21532 M:      Shiraz Hashim <[email protected]>
21533 M:      [email protected]
21534 L:      [email protected] (moderated for non-subscribers)
21535 S:      Maintained
21536 W:      http://www.st.com/spear
21537 F:      arch/arm/boot/dts/st/spear*
21538 F:      arch/arm/mach-spear/
21539 F:      drivers/clk/spear/
21540 F:      drivers/pinctrl/spear/
21541
21542 SPI NOR SUBSYSTEM
21543 M:      Tudor Ambarus <[email protected]>
21544 M:      Pratyush Yadav <[email protected]>
21545 M:      Michael Walle <[email protected]>
21546 L:      [email protected]
21547 S:      Maintained
21548 W:      http://www.linux-mtd.infradead.org/
21549 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
21550 C:      irc://irc.oftc.net/mtd
21551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
21552 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
21553 F:      drivers/mtd/spi-nor/
21554 F:      include/linux/mtd/spi-nor.h
21555
21556 SPI SUBSYSTEM
21557 M:      Mark Brown <[email protected]>
21558 L:      [email protected]
21559 S:      Maintained
21560 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
21561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
21562 F:      Documentation/devicetree/bindings/spi/
21563 F:      Documentation/spi/
21564 F:      drivers/spi/
21565 F:      include/linux/spi/
21566 F:      include/uapi/linux/spi/
21567 F:      tools/spi/
21568
21569 SPIDERNET NETWORK DRIVER for CELL
21570 M:      Ishizaki Kou <[email protected]>
21571 M:      Geoff Levand <[email protected]>
21572 L:      [email protected]
21573 L:      [email protected]
21574 S:      Maintained
21575 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
21576 F:      drivers/net/ethernet/toshiba/spider_net*
21577
21578 SPMI SUBSYSTEM
21579 M:      Stephen Boyd <[email protected]>
21580 L:      [email protected]
21581 S:      Maintained
21582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
21583 F:      Documentation/devicetree/bindings/spmi/
21584 F:      drivers/spmi/
21585 F:      include/dt-bindings/spmi/spmi.h
21586 F:      include/linux/spmi.h
21587 F:      include/trace/events/spmi.h
21588
21589 SPU FILE SYSTEM
21590 M:      Jeremy Kerr <[email protected]>
21591 L:      [email protected]
21592 S:      Supported
21593 W:      http://www.ibm.com/developerworks/power/cell/
21594 F:      Documentation/filesystems/spufs/spufs.rst
21595 F:      arch/powerpc/platforms/cell/spufs/
21596
21597 SQUASHFS FILE SYSTEM
21598 M:      Phillip Lougher <[email protected]>
21599 L:      [email protected] (subscribers-only)
21600 S:      Maintained
21601 W:      http://squashfs.org.uk
21602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
21603 F:      Documentation/filesystems/squashfs.rst
21604 F:      fs/squashfs/
21605
21606 SRM (Alpha) environment access
21607 M:      Jan-Benedict Glaw <[email protected]>
21608 S:      Maintained
21609 F:      arch/alpha/kernel/srm_env.c
21610
21611 ST LSM6DSx IMU IIO DRIVER
21612 M:      Lorenzo Bianconi <[email protected]>
21613 L:      [email protected]
21614 S:      Maintained
21615 W:      http://www.st.com/
21616 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
21617 F:      drivers/iio/imu/st_lsm6dsx/
21618
21619 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
21620 M:      Benjamin Mugnier <[email protected]>
21621 M:      Sylvain Petinot <[email protected]>
21622 L:      [email protected]
21623 S:      Maintained
21624 T:      git git://linuxtv.org/media_tree.git
21625 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
21626 F:      drivers/media/i2c/st-mipid02.c
21627
21628 ST STM32 FIREWALL
21629 M:      Gatien Chevallier <[email protected]>
21630 S:      Maintained
21631 F:      drivers/bus/stm32_etzpc.c
21632 F:      drivers/bus/stm32_firewall.c
21633 F:      drivers/bus/stm32_rifsc.c
21634
21635 ST STM32 I2C/SMBUS DRIVER
21636 M:      Pierre-Yves MORDRET <[email protected]>
21637 M:      Alain Volmat <[email protected]>
21638 L:      [email protected]
21639 S:      Maintained
21640 F:      drivers/i2c/busses/i2c-stm32*
21641
21642 ST STM32 SPI DRIVER
21643 M:      Alain Volmat <[email protected]>
21644 L:      [email protected]
21645 S:      Maintained
21646 F:      drivers/spi/spi-stm32.c
21647
21648 ST STPDDC60 DRIVER
21649 M:      Daniel Nilsson <[email protected]>
21650 L:      [email protected]
21651 S:      Maintained
21652 F:      Documentation/hwmon/stpddc60.rst
21653 F:      drivers/hwmon/pmbus/stpddc60.c
21654
21655 ST VGXY61 DRIVER
21656 M:      Benjamin Mugnier <[email protected]>
21657 M:      Sylvain Petinot <[email protected]>
21658 L:      [email protected]
21659 S:      Maintained
21660 T:      git git://linuxtv.org/media_tree.git
21661 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
21662 F:      Documentation/userspace-api/media/drivers/vgxy61.rst
21663 F:      drivers/media/i2c/vgxy61.c
21664
21665 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
21666 M:      Song Qiang <[email protected]>
21667 L:      [email protected]
21668 S:      Maintained
21669 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
21670 F:      drivers/iio/proximity/vl53l0x-i2c.c
21671
21672 STABLE BRANCH
21673 M:      Greg Kroah-Hartman <[email protected]>
21674 M:      Sasha Levin <[email protected]>
21675 L:      [email protected]
21676 S:      Supported
21677 F:      Documentation/process/stable-kernel-rules.rst
21678
21679 STAGING - ATOMISP DRIVER
21680 M:      Hans de Goede <[email protected]>
21681 M:      Mauro Carvalho Chehab <[email protected]>
21682 R:      Sakari Ailus <[email protected]>
21683 L:      [email protected]
21684 S:      Maintained
21685 F:      drivers/staging/media/atomisp/
21686
21687 STAGING - FIELDBUS SUBSYSTEM
21688 M:      Sven Van Asbroeck <[email protected]>
21689 S:      Maintained
21690 F:      drivers/staging/fieldbus/*
21691 F:      drivers/staging/fieldbus/Documentation/
21692
21693 STAGING - HMS ANYBUS-S BUS
21694 M:      Sven Van Asbroeck <[email protected]>
21695 S:      Maintained
21696 F:      drivers/staging/fieldbus/anybuss/
21697
21698 STAGING - INDUSTRIAL IO
21699 M:      Jonathan Cameron <[email protected]>
21700 L:      [email protected]
21701 S:      Odd Fixes
21702 F:      Documentation/devicetree/bindings/staging/iio/
21703 F:      drivers/staging/iio/
21704
21705 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
21706 M:      Marc Dietrich <[email protected]>
21707 L:      [email protected] (moderated for non-subscribers)
21708 L:      [email protected]
21709 S:      Maintained
21710 F:      drivers/staging/nvec/
21711
21712 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
21713 M:      Jens Frederich <[email protected]>
21714 M:      Jon Nettleton <[email protected]>
21715 S:      Maintained
21716 W:      http://wiki.laptop.org/go/DCON
21717 F:      drivers/staging/olpc_dcon/
21718
21719 STAGING - REALTEK RTL8712U DRIVERS
21720 M:      Florian Schilhabel <[email protected]>.
21721 S:      Odd Fixes
21722 F:      drivers/staging/rtl8712/
21723
21724 STAGING - SEPS525 LCD CONTROLLER DRIVERS
21725 M:      Michael Hennerich <[email protected]>
21726 L:      [email protected]
21727 S:      Supported
21728 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
21729 F:      drivers/staging/fbtft/fb_seps525.c
21730
21731 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
21732 M:      Sudip Mukherjee <[email protected]>
21733 M:      Teddy Wang <[email protected]>
21734 M:      Sudip Mukherjee <[email protected]>
21735 L:      [email protected]
21736 S:      Maintained
21737 F:      drivers/staging/sm750fb/
21738
21739 STAGING - VIA VT665X DRIVERS
21740 M:      Philipp Hortmann <[email protected]>
21741 S:      Odd Fixes
21742 F:      drivers/staging/vt665?/
21743
21744 STAGING SUBSYSTEM
21745 M:      Greg Kroah-Hartman <[email protected]>
21746 L:      [email protected]
21747 S:      Supported
21748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
21749 F:      drivers/staging/
21750
21751 STANDALONE CACHE CONTROLLER DRIVERS
21752 M:      Conor Dooley <[email protected]>
21753 S:      Maintained
21754 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
21755 F:      Documentation/devicetree/bindings/cache/
21756 F:      drivers/cache
21757
21758 STARFIRE/DURALAN NETWORK DRIVER
21759 M:      Ion Badulescu <[email protected]>
21760 S:      Odd Fixes
21761 F:      drivers/net/ethernet/adaptec/starfire*
21762
21763 STARFIVE CAMERA SUBSYSTEM DRIVER
21764 M:      Jack Zhu <[email protected]>
21765 M:      Changhuang Liang <[email protected]>
21766 L:      [email protected]
21767 S:      Maintained
21768 F:      Documentation/admin-guide/media/starfive_camss.rst
21769 F:      Documentation/devicetree/bindings/media/starfive,jh7110-camss.yaml
21770 F:      drivers/staging/media/starfive/camss
21771
21772 STARFIVE CRYPTO DRIVER
21773 M:      Jia Jie Ho <[email protected]>
21774 M:      William Qiu <[email protected]>
21775 S:      Supported
21776 F:      Documentation/devicetree/bindings/crypto/starfive*
21777 F:      drivers/crypto/starfive/
21778
21779 STARFIVE DEVICETREES
21780 M:      Emil Renner Berthing <[email protected]>
21781 S:      Maintained
21782 F:      arch/riscv/boot/dts/starfive/
21783
21784 STARFIVE DWMAC GLUE LAYER
21785 M:      Emil Renner Berthing <[email protected]>
21786 M:      Minda Chen <[email protected]>
21787 S:      Maintained
21788 F:      Documentation/devicetree/bindings/net/starfive,jh7110-dwmac.yaml
21789 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
21790
21791 STARFIVE JH7110 DPHY RX DRIVER
21792 M:      Jack Zhu <[email protected]>
21793 M:      Changhuang Liang <[email protected]>
21794 S:      Supported
21795 F:      Documentation/devicetree/bindings/phy/starfive,jh7110-dphy-rx.yaml
21796 F:      drivers/phy/starfive/phy-jh7110-dphy-rx.c
21797
21798 STARFIVE JH7110 DPHY TX DRIVER
21799 M:      Keith Zhao <[email protected]>
21800 M:      Shengyang Chen <[email protected]>
21801 S:      Supported
21802 F:      Documentation/devicetree/bindings/phy/starfive,jh7110-dphy-tx.yaml
21803 F:      drivers/phy/starfive/phy-jh7110-dphy-tx.c
21804
21805 STARFIVE JH7110 MMC/SD/SDIO DRIVER
21806 M:      William Qiu <[email protected]>
21807 S:      Supported
21808 F:      Documentation/devicetree/bindings/mmc/starfive*
21809 F:      drivers/mmc/host/dw_mmc-starfive.c
21810
21811 STARFIVE JH7110 PLL CLOCK DRIVER
21812 M:      Xingyu Wu <[email protected]>
21813 S:      Supported
21814 F:      Documentation/devicetree/bindings/clock/starfive,jh7110-pll.yaml
21815 F:      drivers/clk/starfive/clk-starfive-jh7110-pll.c
21816
21817 STARFIVE JH7110 PWMDAC DRIVER
21818 M:      Hal Feng <[email protected]>
21819 M:      Xingyu Wu <[email protected]>
21820 S:      Supported
21821 F:      Documentation/devicetree/bindings/sound/starfive,jh7110-pwmdac.yaml
21822 F:      sound/soc/starfive/jh7110_pwmdac.c
21823
21824 STARFIVE JH7110 SYSCON
21825 M:      William Qiu <[email protected]>
21826 M:      Xingyu Wu <[email protected]>
21827 S:      Supported
21828 F:      Documentation/devicetree/bindings/soc/starfive/starfive,jh7110-syscon.yaml
21829
21830 STARFIVE JH7110 TDM DRIVER
21831 M:      Walker Chen <[email protected]>
21832 S:      Maintained
21833 F:      Documentation/devicetree/bindings/sound/starfive,jh7110-tdm.yaml
21834 F:      sound/soc/starfive/jh7110_tdm.c
21835
21836 STARFIVE JH71X0 CLOCK DRIVERS
21837 M:      Emil Renner Berthing <[email protected]>
21838 M:      Hal Feng <[email protected]>
21839 S:      Maintained
21840 F:      Documentation/devicetree/bindings/clock/starfive,jh71*.yaml
21841 F:      drivers/clk/starfive/clk-starfive-jh71*
21842 F:      include/dt-bindings/clock/starfive?jh71*.h
21843
21844 STARFIVE JH71X0 PINCTRL DRIVERS
21845 M:      Emil Renner Berthing <[email protected]>
21846 M:      Jianlong Huang <[email protected]>
21847 M:      Hal Feng <[email protected]>
21848 L:      [email protected]
21849 S:      Maintained
21850 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh71*.yaml
21851 F:      drivers/pinctrl/starfive/pinctrl-starfive-jh71*
21852 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
21853 F:      include/dt-bindings/pinctrl/starfive,jh7110-pinctrl.h
21854
21855 STARFIVE JH71X0 RESET CONTROLLER DRIVERS
21856 M:      Emil Renner Berthing <[email protected]>
21857 M:      Hal Feng <[email protected]>
21858 S:      Maintained
21859 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
21860 F:      drivers/reset/starfive/reset-starfive-jh71*
21861 F:      include/dt-bindings/reset/starfive?jh71*.h
21862
21863 STARFIVE JH71X0 USB DRIVERS
21864 M:      Minda Chen <[email protected]>
21865 S:      Maintained
21866 F:      Documentation/devicetree/bindings/usb/starfive,jh7110-usb.yaml
21867 F:      drivers/usb/cdns3/cdns3-starfive.c
21868
21869 STARFIVE JH71XX PMU CONTROLLER DRIVER
21870 M:      Walker Chen <[email protected]>
21871 M:      Changhuang Liang <[email protected]>
21872 S:      Supported
21873 F:      Documentation/devicetree/bindings/power/starfive*
21874 F:      drivers/pmdomain/starfive/
21875 F:      include/dt-bindings/power/starfive,jh7110-pmu.h
21876
21877 STARFIVE SOC DRIVERS
21878 M:      Conor Dooley <[email protected]>
21879 S:      Maintained
21880 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
21881 F:      Documentation/devicetree/bindings/soc/starfive/
21882
21883 STARFIVE STARLINK PMU DRIVER
21884 M:      Ji Sheng Teoh <[email protected]>
21885 S:      Maintained
21886 F:      Documentation/admin-guide/perf/starfive_starlink_pmu.rst
21887 F:      Documentation/devicetree/bindings/perf/starfive,jh8100-starlink-pmu.yaml
21888 F:      drivers/perf/starfive_starlink_pmu.c
21889
21890 STARFIVE TRNG DRIVER
21891 M:      Jia Jie Ho <[email protected]>
21892 S:      Supported
21893 F:      Documentation/devicetree/bindings/rng/starfive*
21894 F:      drivers/char/hw_random/jh7110-trng.c
21895
21896 STARFIVE WATCHDOG DRIVER
21897 M:      Xingyu Wu <[email protected]>
21898 M:      Samin Guo <[email protected]>
21899 S:      Supported
21900 F:      Documentation/devicetree/bindings/watchdog/starfive*
21901 F:      drivers/watchdog/starfive-wdt.c
21902
21903 STARFIVE JH71X0 PCIE AND USB PHY DRIVER
21904 M:      Minda Chen <[email protected]>
21905 S:      Supported
21906 F:      Documentation/devicetree/bindings/phy/starfive,jh7110-pcie-phy.yaml
21907 F:      Documentation/devicetree/bindings/phy/starfive,jh7110-usb-phy.yaml
21908 F:      drivers/phy/starfive/phy-jh7110-pcie.c
21909 F:      drivers/phy/starfive/phy-jh7110-usb.c
21910
21911 STARFIVE JH8100 EXTERNAL INTERRUPT CONTROLLER DRIVER
21912 M:      Changhuang Liang <[email protected]>
21913 S:      Supported
21914 F:      Documentation/devicetree/bindings/interrupt-controller/starfive,jh8100-intc.yaml
21915 F:      drivers/irqchip/irq-starfive-jh8100-intc.c
21916
21917 STATIC BRANCH/CALL
21918 M:      Peter Zijlstra <[email protected]>
21919 M:      Josh Poimboeuf <[email protected]>
21920 M:      Jason Baron <[email protected]>
21921 R:      Steven Rostedt <[email protected]>
21922 R:      Ard Biesheuvel <[email protected]>
21923 S:      Supported
21924 F:      arch/*/include/asm/jump_label*.h
21925 F:      arch/*/include/asm/static_call*.h
21926 F:      arch/*/kernel/jump_label.c
21927 F:      arch/*/kernel/static_call.c
21928 F:      include/linux/jump_label*.h
21929 F:      include/linux/static_call*.h
21930 F:      kernel/jump_label.c
21931 F:      kernel/static_call.c
21932
21933 STI AUDIO (ASoC) DRIVERS
21934 M:      Arnaud Pouliquen <[email protected]>
21935 L:      [email protected] (moderated for non-subscribers)
21936 S:      Maintained
21937 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
21938 F:      sound/soc/sti/
21939
21940 STI CEC DRIVER
21941 M:      Alain Volmat <[email protected]>
21942 S:      Maintained
21943 F:      Documentation/devicetree/bindings/media/cec/st,stih-cec.yaml
21944 F:      drivers/media/cec/platform/sti/
21945
21946 STK1160 USB VIDEO CAPTURE DRIVER
21947 M:      Ezequiel Garcia <[email protected]>
21948 L:      [email protected]
21949 S:      Maintained
21950 T:      git git://linuxtv.org/media_tree.git
21951 F:      drivers/media/usb/stk1160/
21952
21953 STM32 AUDIO (ASoC) DRIVERS
21954 M:      Olivier Moysan <[email protected]>
21955 M:      Arnaud Pouliquen <[email protected]>
21956 L:      [email protected] (moderated for non-subscribers)
21957 S:      Maintained
21958 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
21959 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
21960 F:      sound/soc/stm/
21961
21962 STM32 DMA DRIVERS
21963 M:      Amélie Delaunay <[email protected]>
21964 L:      [email protected]
21965 L:      [email protected] (moderated for non-subscribers)
21966 S:      Maintained
21967 F:      Documentation/arch/arm/stm32/stm32-dma-mdma-chaining.rst
21968 F:      Documentation/devicetree/bindings/dma/stm32/
21969 F:      drivers/dma/stm32/
21970
21971 STM32 TIMER/LPTIMER DRIVERS
21972 M:      Fabrice Gasnier <[email protected]>
21973 S:      Maintained
21974 F:      Documentation/ABI/testing/*timer-stm32
21975 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
21976 F:      drivers/*/stm32-*timer*
21977 F:      drivers/pwm/pwm-stm32*
21978 F:      include/linux/*/stm32-*tim*
21979
21980 STMMAC ETHERNET DRIVER
21981 M:      Alexandre Torgue <[email protected]>
21982 M:      Jose Abreu <[email protected]>
21983 L:      [email protected]
21984 S:      Supported
21985 W:      http://www.stlinux.com
21986 F:      Documentation/networking/device_drivers/ethernet/stmicro/
21987 F:      drivers/net/ethernet/stmicro/stmmac/
21988
21989 SUN HAPPY MEAL ETHERNET DRIVER
21990 M:      Sean Anderson <[email protected]>
21991 S:      Maintained
21992 F:      drivers/net/ethernet/sun/sunhme.*
21993
21994 SUN3/3X
21995 M:      Sam Creasey <[email protected]>
21996 S:      Maintained
21997 W:      http://sammy.net/sun3/
21998 F:      arch/m68k/include/asm/sun3*
21999 F:      arch/m68k/kernel/*sun3*
22000 F:      arch/m68k/sun3*/
22001 F:      drivers/net/ethernet/i825xx/sun3*
22002
22003 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
22004 M:      Hans de Goede <[email protected]>
22005 L:      [email protected]
22006 S:      Maintained
22007 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
22008 F:      drivers/input/keyboard/sun4i-lradc-keys.c
22009
22010 SUNDANCE NETWORK DRIVER
22011 M:      Denis Kirjanov <[email protected]>
22012 L:      [email protected]
22013 S:      Maintained
22014 F:      drivers/net/ethernet/dlink/sundance.c
22015
22016 SUNPLUS ETHERNET DRIVER
22017 M:      Wells Lu <[email protected]>
22018 L:      [email protected]
22019 S:      Maintained
22020 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
22021 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
22022 F:      drivers/net/ethernet/sunplus/
22023
22024 SUNPLUS MMC DRIVER
22025 M:      Tony Huang <[email protected]>
22026 M:      Li-hao Kuo <[email protected]>
22027 S:      Maintained
22028 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
22029 F:      drivers/mmc/host/sunplus-mmc.c
22030
22031 SUNPLUS OCOTP DRIVER
22032 M:      Vincent Shih <[email protected]>
22033 S:      Maintained
22034 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
22035 F:      drivers/nvmem/sunplus-ocotp.c
22036
22037 SUNPLUS PWM DRIVER
22038 M:      Hammer Hsieh <[email protected]>
22039 S:      Maintained
22040 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
22041 F:      drivers/pwm/pwm-sunplus.c
22042
22043 SUNPLUS RTC DRIVER
22044 M:      Vincent Shih <[email protected]>
22045 L:      [email protected]
22046 S:      Maintained
22047 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
22048 F:      drivers/rtc/rtc-sunplus.c
22049
22050 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
22051 M:      Li-hao Kuo <[email protected]>
22052 L:      [email protected]
22053 S:      Maintained
22054 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
22055 F:      drivers/spi/spi-sunplus-sp7021.c
22056
22057 SUNPLUS UART DRIVER
22058 M:      Hammer Hsieh <[email protected]>
22059 S:      Maintained
22060 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
22061 F:      drivers/tty/serial/sunplus-uart.c
22062
22063 SUNPLUS USB2 PHY DRIVER
22064 M:      Vincent Shih <[email protected]>
22065 L:      [email protected]
22066 S:      Maintained
22067 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
22068 F:      drivers/phy/sunplus/Kconfig
22069 F:      drivers/phy/sunplus/Makefile
22070 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
22071
22072 SUNPLUS WATCHDOG DRIVER
22073 M:      Xiantao Hu <[email protected]>
22074 L:      [email protected]
22075 S:      Maintained
22076 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
22077 F:      drivers/watchdog/sunplus_wdt.c
22078
22079 SUPERH
22080 M:      Yoshinori Sato <[email protected]>
22081 M:      Rich Felker <[email protected]>
22082 M:      John Paul Adrian Glaubitz <[email protected]>
22083 L:      [email protected]
22084 S:      Maintained
22085 Q:      http://patchwork.kernel.org/project/linux-sh/list/
22086 F:      Documentation/arch/sh/
22087 F:      arch/sh/
22088 F:      drivers/sh/
22089
22090 SUSPEND TO RAM
22091 M:      "Rafael J. Wysocki" <[email protected]>
22092 M:      Len Brown <[email protected]>
22093 M:      Pavel Machek <[email protected]>
22094 L:      [email protected]
22095 S:      Supported
22096 B:      https://bugzilla.kernel.org
22097 F:      Documentation/power/
22098 F:      arch/x86/kernel/acpi/sleep*
22099 F:      arch/x86/kernel/acpi/wakeup*
22100 F:      drivers/base/power/
22101 F:      include/linux/freezer.h
22102 F:      include/linux/pm.h
22103 F:      include/linux/suspend.h
22104 F:      kernel/power/
22105
22106 SVGA HANDLING
22107 M:      Martin Mares <[email protected]>
22108 L:      [email protected]
22109 S:      Maintained
22110 F:      Documentation/admin-guide/svga.rst
22111 F:      arch/x86/boot/video*
22112
22113 SWITCHDEV
22114 M:      Jiri Pirko <[email protected]>
22115 M:      Ivan Vecera <[email protected]>
22116 L:      [email protected]
22117 S:      Supported
22118 F:      include/net/switchdev.h
22119 F:      net/switchdev/
22120
22121 SY8106A REGULATOR DRIVER
22122 M:      Icenowy Zheng <[email protected]>
22123 S:      Maintained
22124 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
22125 F:      drivers/regulator/sy8106a-regulator.c
22126
22127 SYNC FILE FRAMEWORK
22128 M:      Sumit Semwal <[email protected]>
22129 R:      Gustavo Padovan <[email protected]>
22130 L:      [email protected]
22131 L:      [email protected]
22132 S:      Maintained
22133 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
22134 F:      Documentation/driver-api/sync_file.rst
22135 F:      drivers/dma-buf/dma-fence*
22136 F:      drivers/dma-buf/sw_sync.c
22137 F:      drivers/dma-buf/sync_*
22138 F:      include/linux/sync_file.h
22139 F:      include/uapi/linux/sync_file.h
22140
22141 SYNOPSYS ARC ARCHITECTURE
22142 M:      Vineet Gupta <[email protected]>
22143 L:      [email protected]
22144 S:      Supported
22145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
22146 F:      Documentation/arch/arc
22147 F:      Documentation/devicetree/bindings/arc/*
22148 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
22149 F:      arch/arc/
22150 F:      drivers/clocksource/arc_timer.c
22151 F:      drivers/tty/serial/arc_uart.c
22152
22153 SYNOPSYS ARC HSDK SDP pll clock driver
22154 M:      Eugeniy Paltsev <[email protected]>
22155 S:      Supported
22156 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
22157 F:      drivers/clk/clk-hsdk-pll.c
22158
22159 SYNOPSYS ARC SDP clock driver
22160 M:      Eugeniy Paltsev <[email protected]>
22161 S:      Supported
22162 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
22163 F:      drivers/clk/axs10x/*
22164
22165 SYNOPSYS ARC SDP platform support
22166 M:      Alexey Brodkin <[email protected]>
22167 S:      Supported
22168 F:      Documentation/devicetree/bindings/arc/axs10*
22169 F:      arch/arc/boot/dts/ax*
22170 F:      arch/arc/plat-axs10x
22171
22172 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
22173 M:      Eugeniy Paltsev <[email protected]>
22174 S:      Supported
22175 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
22176 F:      drivers/reset/reset-axs10x.c
22177
22178 SYNOPSYS CREG GPIO DRIVER
22179 M:      Eugeniy Paltsev <[email protected]>
22180 S:      Maintained
22181 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
22182 F:      drivers/gpio/gpio-creg-snps.c
22183
22184 SYNOPSYS DESIGNWARE 8250 UART DRIVER
22185 M:      Ilpo Järvinen <[email protected]>
22186 R:      Andy Shevchenko <[email protected]>
22187 S:      Supported
22188 F:      drivers/tty/serial/8250/8250_dw.c
22189 F:      drivers/tty/serial/8250/8250_dwlib.*
22190 F:      drivers/tty/serial/8250/8250_lpss.c
22191
22192 SYNOPSYS DESIGNWARE APB GPIO DRIVER
22193 M:      Hoan Tran <[email protected]>
22194 M:      Serge Semin <[email protected]>
22195 L:      [email protected]
22196 S:      Maintained
22197 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
22198 F:      drivers/gpio/gpio-dwapb.c
22199
22200 SYNOPSYS DESIGNWARE APB SSI DRIVER
22201 M:      Serge Semin <[email protected]>
22202 L:      [email protected]
22203 S:      Supported
22204 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
22205 F:      drivers/spi/spi-dw*
22206
22207 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
22208 M:      Eugeniy Paltsev <[email protected]>
22209 S:      Maintained
22210 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
22211 F:      drivers/dma/dw-axi-dmac/
22212
22213 SYNOPSYS DESIGNWARE DMAC DRIVER
22214 M:      Viresh Kumar <[email protected]>
22215 R:      Andy Shevchenko <[email protected]>
22216 S:      Maintained
22217 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
22218 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
22219 F:      drivers/dma/dw/
22220 F:      include/dt-bindings/dma/dw-dmac.h
22221 F:      include/linux/dma/dw.h
22222 F:      include/linux/platform_data/dma-dw.h
22223
22224 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
22225 M:      Jose Abreu <[email protected]>
22226 L:      [email protected]
22227 S:      Supported
22228 F:      drivers/net/ethernet/synopsys/
22229
22230 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
22231 M:      Jose Abreu <[email protected]>
22232 L:      [email protected]
22233 S:      Supported
22234 F:      drivers/net/pcs/pcs-xpcs.c
22235 F:      drivers/net/pcs/pcs-xpcs.h
22236 F:      include/linux/pcs/pcs-xpcs.h
22237
22238 SYNOPSYS DESIGNWARE I2C DRIVER
22239 M:      Jarkko Nikula <[email protected]>
22240 R:      Andy Shevchenko <[email protected]>
22241 R:      Mika Westerberg <[email protected]>
22242 R:      Jan Dabros <[email protected]>
22243 L:      [email protected]
22244 S:      Supported
22245 F:      drivers/i2c/busses/i2c-designware-*
22246
22247 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
22248 M:      Jaehoon Chung <[email protected]>
22249 L:      [email protected]
22250 S:      Maintained
22251 F:      drivers/mmc/host/dw_mmc*
22252
22253 SYNOPSYS DESIGNWARE PCIE PMU DRIVER
22254 M:      Shuai Xue <[email protected]>
22255 M:      Jing Zhang <[email protected]>
22256 S:      Supported
22257 F:      Documentation/admin-guide/perf/dwc_pcie_pmu.rst
22258 F:      drivers/perf/dwc_pcie_pmu.c
22259
22260 SYNOPSYS HSDK RESET CONTROLLER DRIVER
22261 M:      Eugeniy Paltsev <[email protected]>
22262 S:      Supported
22263 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
22264 F:      drivers/reset/reset-hsdk.c
22265 F:      include/dt-bindings/reset/snps,hsdk-reset.h
22266
22267 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
22268 M:      Prabu Thangamuthu <[email protected]>
22269 M:      Manjunath M B <[email protected]>
22270 L:      [email protected]
22271 S:      Maintained
22272 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
22273
22274 SYSTEM CONFIGURATION (SYSCON)
22275 M:      Lee Jones <[email protected]>
22276 M:      Arnd Bergmann <[email protected]>
22277 S:      Supported
22278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
22279 F:      drivers/mfd/syscon.c
22280
22281 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
22282 M:      Sudeep Holla <[email protected]>
22283 R:      Cristian Marussi <[email protected]>
22284 L:      [email protected]
22285 L:      [email protected] (moderated for non-subscribers)
22286 S:      Maintained
22287 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
22288 F:      drivers/clk/clk-sc[mp]i.c
22289 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
22290 F:      drivers/firmware/arm_scmi/
22291 F:      drivers/firmware/arm_scpi.c
22292 F:      drivers/hwmon/scmi-hwmon.c
22293 F:      drivers/pinctrl/pinctrl-scmi.c
22294 F:      drivers/pmdomain/arm/
22295 F:      drivers/powercap/arm_scmi_powercap.c
22296 F:      drivers/regulator/scmi-regulator.c
22297 F:      drivers/reset/reset-scmi.c
22298 F:      include/linux/sc[mp]i_protocol.h
22299 F:      include/trace/events/scmi.h
22300 F:      include/uapi/linux/virtio_scmi.h
22301
22302 SYSTEM RESET/SHUTDOWN DRIVERS
22303 M:      Sebastian Reichel <[email protected]>
22304 L:      [email protected]
22305 S:      Maintained
22306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
22307 F:      Documentation/devicetree/bindings/power/reset/
22308 F:      drivers/power/reset/
22309
22310 SYSTEM TRACE MODULE CLASS
22311 M:      Alexander Shishkin <[email protected]>
22312 S:      Maintained
22313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
22314 F:      Documentation/trace/stm.rst
22315 F:      drivers/hwtracing/stm/
22316 F:      include/linux/stm.h
22317 F:      include/uapi/linux/stm.h
22318
22319 SYSTEM76 ACPI DRIVER
22320 M:      Jeremy Soller <[email protected]>
22321 M:      System76 Product Development <[email protected]>
22322 L:      [email protected]
22323 S:      Maintained
22324 F:      drivers/platform/x86/system76_acpi.c
22325
22326 SYSV FILESYSTEM
22327 S:      Orphan
22328 F:      Documentation/filesystems/sysv-fs.rst
22329 F:      fs/sysv/
22330 F:      include/linux/sysv_fs.h
22331
22332 TASKSTATS STATISTICS INTERFACE
22333 M:      Balbir Singh <[email protected]>
22334 S:      Maintained
22335 F:      Documentation/accounting/taskstats*
22336 F:      include/linux/taskstats*
22337 F:      kernel/taskstats.c
22338
22339 TC subsystem
22340 M:      Jamal Hadi Salim <[email protected]>
22341 M:      Cong Wang <[email protected]>
22342 M:      Jiri Pirko <[email protected]>
22343 L:      [email protected]
22344 S:      Maintained
22345 F:      include/net/pkt_cls.h
22346 F:      include/net/pkt_sched.h
22347 F:      include/net/tc_act/
22348 F:      include/uapi/linux/pkt_cls.h
22349 F:      include/uapi/linux/pkt_sched.h
22350 F:      include/uapi/linux/tc_act/
22351 F:      include/uapi/linux/tc_ematch/
22352 F:      net/sched/
22353 F:      tools/testing/selftests/tc-testing
22354
22355 TC90522 MEDIA DRIVER
22356 M:      Akihiro Tsukada <[email protected]>
22357 L:      [email protected]
22358 S:      Odd Fixes
22359 F:      drivers/media/dvb-frontends/tc90522*
22360
22361 TCP LOW PRIORITY MODULE
22362 M:      "Wong Hoi Sing, Edison" <[email protected]>
22363 M:      "Hung Hing Lun, Mike" <[email protected]>
22364 S:      Maintained
22365 W:      http://tcp-lp-mod.sourceforge.net/
22366 F:      net/ipv4/tcp_lp.c
22367
22368 TDA10071 MEDIA DRIVER
22369 L:      [email protected]
22370 S:      Orphan
22371 W:      https://linuxtv.org
22372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
22373 F:      drivers/media/dvb-frontends/tda10071*
22374
22375 TDA18212 MEDIA DRIVER
22376 L:      [email protected]
22377 S:      Orphan
22378 W:      https://linuxtv.org
22379 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
22380 F:      drivers/media/tuners/tda18212*
22381
22382 TDA18218 MEDIA DRIVER
22383 L:      [email protected]
22384 S:      Orphan
22385 W:      https://linuxtv.org
22386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
22387 F:      drivers/media/tuners/tda18218*
22388
22389 TDA18250 MEDIA DRIVER
22390 M:      Olli Salonen <[email protected]>
22391 L:      [email protected]
22392 S:      Maintained
22393 W:      https://linuxtv.org
22394 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
22395 T:      git git://linuxtv.org/media_tree.git
22396 F:      drivers/media/tuners/tda18250*
22397
22398 TDA18271 MEDIA DRIVER
22399 M:      Michael Krufky <[email protected]>
22400 L:      [email protected]
22401 S:      Maintained
22402 W:      https://linuxtv.org
22403 W:      http://github.com/mkrufky
22404 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
22405 T:      git git://linuxtv.org/mkrufky/tuners.git
22406 F:      drivers/media/tuners/tda18271*
22407
22408 TDA1997x MEDIA DRIVER
22409 M:      Tim Harvey <[email protected]>
22410 L:      [email protected]
22411 S:      Maintained
22412 W:      https://linuxtv.org
22413 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
22414 F:      drivers/media/i2c/tda1997x.*
22415
22416 TDA827x MEDIA DRIVER
22417 M:      Michael Krufky <[email protected]>
22418 L:      [email protected]
22419 S:      Maintained
22420 W:      https://linuxtv.org
22421 W:      http://github.com/mkrufky
22422 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
22423 T:      git git://linuxtv.org/mkrufky/tuners.git
22424 F:      drivers/media/tuners/tda8290.*
22425
22426 TDA8290 MEDIA DRIVER
22427 M:      Michael Krufky <[email protected]>
22428 L:      [email protected]
22429 S:      Maintained
22430 W:      https://linuxtv.org
22431 W:      http://github.com/mkrufky
22432 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
22433 T:      git git://linuxtv.org/mkrufky/tuners.git
22434 F:      drivers/media/tuners/tda8290.*
22435
22436 TDA9840 MEDIA DRIVER
22437 M:      Hans Verkuil <[email protected]>
22438 L:      [email protected]
22439 S:      Maintained
22440 W:      https://linuxtv.org
22441 T:      git git://linuxtv.org/media_tree.git
22442 F:      drivers/media/i2c/tda9840*
22443
22444 TEA5761 TUNER DRIVER
22445 M:      Mauro Carvalho Chehab <[email protected]>
22446 L:      [email protected]
22447 S:      Odd fixes
22448 W:      https://linuxtv.org
22449 T:      git git://linuxtv.org/media_tree.git
22450 F:      drivers/media/tuners/tea5761.*
22451
22452 TEA5767 TUNER DRIVER
22453 M:      Mauro Carvalho Chehab <[email protected]>
22454 L:      [email protected]
22455 S:      Maintained
22456 W:      https://linuxtv.org
22457 T:      git git://linuxtv.org/media_tree.git
22458 F:      drivers/media/tuners/tea5767.*
22459
22460 TEA6415C MEDIA DRIVER
22461 M:      Hans Verkuil <[email protected]>
22462 L:      [email protected]
22463 S:      Maintained
22464 W:      https://linuxtv.org
22465 T:      git git://linuxtv.org/media_tree.git
22466 F:      drivers/media/i2c/tea6415c*
22467
22468 TEA6420 MEDIA DRIVER
22469 M:      Hans Verkuil <[email protected]>
22470 L:      [email protected]
22471 S:      Maintained
22472 W:      https://linuxtv.org
22473 T:      git git://linuxtv.org/media_tree.git
22474 F:      drivers/media/i2c/tea6420*
22475
22476 TEAM DRIVER
22477 M:      Jiri Pirko <[email protected]>
22478 L:      [email protected]
22479 S:      Supported
22480 F:      Documentation/netlink/specs/team.yaml
22481 F:      drivers/net/team/
22482 F:      include/linux/if_team.h
22483 F:      include/uapi/linux/if_team.h
22484 F:      tools/testing/selftests/drivers/net/team/
22485
22486 TECHNICAL ADVISORY BOARD PROCESS DOCS
22487 M:      "Theodore Ts'o" <[email protected]>
22488 M:      Greg Kroah-Hartman <[email protected]>
22489 L:      [email protected]
22490 S:      Maintained
22491 F:      Documentation/process/contribution-maturity-model.rst
22492 F:      Documentation/process/researcher-guidelines.rst
22493
22494 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
22495 M:      "Savoir-faire Linux Inc." <[email protected]>
22496 S:      Maintained
22497 F:      arch/x86/platform/ts5500/
22498
22499 TECHNOTREND USB IR RECEIVER
22500 M:      Sean Young <[email protected]>
22501 L:      [email protected]
22502 S:      Maintained
22503 F:      drivers/media/rc/ttusbir.c
22504
22505 TECHWELL TW9900 VIDEO DECODER
22506 M:      Mehdi Djait <[email protected]>
22507 L:      [email protected]
22508 S:      Maintained
22509 F:      drivers/media/i2c/tw9900.c
22510
22511 TECHWELL TW9910 VIDEO DECODER
22512 L:      [email protected]
22513 S:      Orphan
22514 F:      drivers/media/i2c/tw9910.c
22515 F:      include/media/i2c/tw9910.h
22516
22517 TEE SUBSYSTEM
22518 M:      Jens Wiklander <[email protected]>
22519 R:      Sumit Garg <[email protected]>
22520 L:      [email protected]
22521 S:      Maintained
22522 F:      Documentation/driver-api/tee.rst
22523 F:      Documentation/tee/
22524 F:      Documentation/userspace-api/tee.rst
22525 F:      drivers/tee/
22526 F:      include/linux/tee_core.h
22527 F:      include/linux/tee_drv.h
22528 F:      include/uapi/linux/tee.h
22529
22530 TEGRA ARCHITECTURE SUPPORT
22531 M:      Thierry Reding <[email protected]>
22532 M:      Jonathan Hunter <[email protected]>
22533 L:      [email protected]
22534 S:      Supported
22535 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
22536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
22537 N:      [^a-z]tegra
22538
22539 TEGRA CLOCK DRIVER
22540 M:      Peter De Schrijver <[email protected]>
22541 M:      Prashant Gaikwad <[email protected]>
22542 S:      Supported
22543 F:      drivers/clk/tegra/
22544
22545 TEGRA CRYPTO DRIVERS
22546 M:      Akhil R <[email protected]>
22547 S:      Supported
22548 F:      drivers/crypto/tegra/*
22549
22550 TEGRA DMA DRIVERS
22551 M:      Laxman Dewangan <[email protected]>
22552 M:      Jon Hunter <[email protected]>
22553 S:      Supported
22554 F:      drivers/dma/tegra*
22555
22556 TEGRA I2C DRIVER
22557 M:      Laxman Dewangan <[email protected]>
22558 R:      Dmitry Osipenko <[email protected]>
22559 S:      Supported
22560 F:      drivers/i2c/busses/i2c-tegra.c
22561
22562 TEGRA IOMMU DRIVERS
22563 M:      Thierry Reding <[email protected]>
22564 R:      Krishna Reddy <[email protected]>
22565 L:      [email protected]
22566 S:      Supported
22567 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
22568 F:      drivers/iommu/tegra*
22569
22570 TEGRA KBC DRIVER
22571 M:      Laxman Dewangan <[email protected]>
22572 S:      Supported
22573 F:      drivers/input/keyboard/tegra-kbc.c
22574
22575 TEGRA NAND DRIVER
22576 M:      Stefan Agner <[email protected]>
22577 M:      Lucas Stach <[email protected]>
22578 S:      Maintained
22579 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
22580 F:      drivers/mtd/nand/raw/tegra_nand.c
22581
22582 TEGRA PWM DRIVER
22583 M:      Thierry Reding <[email protected]>
22584 S:      Supported
22585 F:      drivers/pwm/pwm-tegra.c
22586
22587 TEGRA QUAD SPI DRIVER
22588 M:      Thierry Reding <[email protected]>
22589 M:      Jonathan Hunter <[email protected]>
22590 M:      Sowjanya Komatineni <[email protected]>
22591 L:      [email protected]
22592 S:      Maintained
22593 F:      drivers/spi/spi-tegra210-quad.c
22594
22595 TEGRA SERIAL DRIVER
22596 M:      Laxman Dewangan <[email protected]>
22597 S:      Supported
22598 F:      drivers/tty/serial/serial-tegra.c
22599
22600 TEGRA SPI DRIVER
22601 M:      Laxman Dewangan <[email protected]>
22602 S:      Supported
22603 F:      drivers/spi/spi-tegra*
22604
22605 TEGRA VIDEO DRIVER
22606 M:      Thierry Reding <[email protected]>
22607 M:      Jonathan Hunter <[email protected]>
22608 M:      Sowjanya Komatineni <[email protected]>
22609 M:      Luca Ceresoli <[email protected]>
22610 L:      [email protected]
22611 L:      [email protected]
22612 S:      Maintained
22613 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
22614 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-vi.yaml
22615 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-vip.yaml
22616 F:      drivers/staging/media/tegra-video/
22617
22618 TEGRA XUSB PADCTL DRIVER
22619 M:      JC Kuo <[email protected]>
22620 S:      Supported
22621 F:      drivers/phy/tegra/xusb*
22622
22623 TEHUTI ETHERNET DRIVER
22624 M:      Andy Gospodarek <[email protected]>
22625 L:      [email protected]
22626 S:      Supported
22627 F:      drivers/net/ethernet/tehuti/tehuti.*
22628
22629 TEHUTI TN40XX ETHERNET DRIVER
22630 M:      FUJITA Tomonori <[email protected]>
22631 L:      [email protected]
22632 S:      Maintained
22633 F:      drivers/net/ethernet/tehuti/tn40*
22634
22635 TELECOM CLOCK DRIVER FOR MCPL0010
22636 M:      Mark Gross <[email protected]>
22637 S:      Supported
22638 F:      drivers/char/tlclk.c
22639
22640 TEMPO SEMICONDUCTOR DRIVERS
22641 M:      Steven Eckhoff <[email protected]>
22642 S:      Maintained
22643 F:      Documentation/devicetree/bindings/sound/tscs*.txt
22644 F:      sound/soc/codecs/tscs*.c
22645 F:      sound/soc/codecs/tscs*.h
22646
22647 TENSILICA XTENSA PORT (xtensa)
22648 M:      Chris Zankel <[email protected]>
22649 M:      Max Filippov <[email protected]>
22650 S:      Maintained
22651 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
22652 F:      arch/xtensa/
22653 F:      drivers/irqchip/irq-xtensa-*
22654
22655 TEXAS INSTRUMENTS ASoC DRIVERS
22656 M:      Peter Ujfalusi <[email protected]>
22657 L:      [email protected] (moderated for non-subscribers)
22658 S:      Maintained
22659 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
22660 F:      sound/soc/ti/
22661
22662 TEXAS INSTRUMENTS AUDIO (ASoC/HDA) DRIVERS
22663 M:      Shenghao Ding <[email protected]>
22664 M:      Kevin Lu <[email protected]>
22665 M:      Baojun Xu <[email protected]>
22666 L:      [email protected] (moderated for non-subscribers)
22667 S:      Maintained
22668 F:      Documentation/devicetree/bindings/sound/tas2552.txt
22669 F:      Documentation/devicetree/bindings/sound/ti,tas2562.yaml
22670 F:      Documentation/devicetree/bindings/sound/ti,tas2770.yaml
22671 F:      Documentation/devicetree/bindings/sound/ti,tas27xx.yaml
22672 F:      Documentation/devicetree/bindings/sound/ti,pcm1681.yaml
22673 F:      Documentation/devicetree/bindings/sound/ti,pcm3168a.yaml
22674 F:      Documentation/devicetree/bindings/sound/ti,tlv320*.yaml
22675 F:      Documentation/devicetree/bindings/sound/ti,tlv320adcx140.yaml
22676 F:      Documentation/devicetree/bindings/sound/tlv320aic31xx.txt
22677 F:      Documentation/devicetree/bindings/sound/tpa6130a2.txt
22678 F:      include/sound/tas2*.h
22679 F:      include/sound/tlv320*.h
22680 F:      include/sound/tpa6130a2-plat.h
22681 F:      sound/pci/hda/tas2781_hda_i2c.c
22682 F:      sound/soc/codecs/pcm1681.c
22683 F:      sound/soc/codecs/pcm1789*.*
22684 F:      sound/soc/codecs/pcm179x*.*
22685 F:      sound/soc/codecs/pcm186x*.*
22686 F:      sound/soc/codecs/pcm3008.*
22687 F:      sound/soc/codecs/pcm3060*.*
22688 F:      sound/soc/codecs/pcm3168a*.*
22689 F:      sound/soc/codecs/pcm5102a.c
22690 F:      sound/soc/codecs/pcm512x*.*
22691 F:      sound/soc/codecs/tas2*.*
22692 F:      sound/soc/codecs/tlv320*.*
22693 F:      sound/soc/codecs/tpa6130a2.*
22694
22695 TEXAS INSTRUMENTS DMA DRIVERS
22696 M:      Peter Ujfalusi <[email protected]>
22697 L:      [email protected]
22698 S:      Maintained
22699 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
22700 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
22701 F:      Documentation/devicetree/bindings/dma/ti/
22702 F:      drivers/dma/ti/
22703 F:      include/linux/dma/k3-psil.h
22704 F:      include/linux/dma/k3-udma-glue.h
22705 F:      include/linux/dma/ti-cppi5.h
22706 X:      drivers/dma/ti/cppi41.c
22707
22708 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
22709 M:      Robert Marko <[email protected]>
22710 M:      Luka Perkov <[email protected]>
22711 L:      [email protected]
22712 S:      Maintained
22713 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
22714 F:      Documentation/hwmon/tps23861.rst
22715 F:      drivers/hwmon/tps23861.c
22716
22717 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
22718 M:      Ricardo Ribalda <[email protected]>
22719 L:      [email protected]
22720 S:      Supported
22721 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
22722 F:      drivers/iio/dac/ti-dac7612.c
22723
22724 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
22725 M:      Nishanth Menon <[email protected]>
22726 M:      Tero Kristo <[email protected]>
22727 M:      Santosh Shilimkar <[email protected]>
22728 L:      [email protected] (moderated for non-subscribers)
22729 S:      Maintained
22730 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
22731 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
22732 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
22733 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
22734 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
22735 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
22736 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
22737 F:      drivers/clk/keystone/sci-clk.c
22738 F:      drivers/firmware/ti_sci*
22739 F:      drivers/irqchip/irq-ti-sci-inta.c
22740 F:      drivers/irqchip/irq-ti-sci-intr.c
22741 F:      drivers/reset/reset-ti-sci.c
22742 F:      drivers/soc/ti/ti_sci_inta_msi.c
22743 F:      drivers/pmdomain/ti/ti_sci_pm_domains.c
22744 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
22745 F:      include/linux/soc/ti/ti_sci_inta_msi.h
22746 F:      include/linux/soc/ti/ti_sci_protocol.h
22747
22748 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
22749 M:      Puranjay Mohan <[email protected]>
22750 L:      [email protected]
22751 S:      Supported
22752 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
22753 F:      drivers/iio/temperature/tmp117.c
22754
22755 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
22756 M:      Hans Verkuil <[email protected]>
22757 L:      [email protected]
22758 S:      Maintained
22759 W:      https://linuxtv.org
22760 T:      git git://linuxtv.org/media_tree.git
22761 F:      drivers/media/radio/radio-raremono.c
22762
22763 THERMAL
22764 M:      Rafael J. Wysocki <[email protected]>
22765 M:      Daniel Lezcano <[email protected]>
22766 R:      Zhang Rui <[email protected]>
22767 R:      Lukasz Luba <[email protected]>
22768 L:      [email protected]
22769 S:      Supported
22770 Q:      https://patchwork.kernel.org/project/linux-pm/list/
22771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
22772 F:      Documentation/ABI/testing/sysfs-class-thermal
22773 F:      Documentation/admin-guide/thermal/
22774 F:      Documentation/devicetree/bindings/thermal/
22775 F:      Documentation/driver-api/thermal/
22776 F:      drivers/thermal/
22777 F:      include/dt-bindings/thermal/
22778 F:      include/linux/cpu_cooling.h
22779 F:      include/linux/thermal.h
22780 F:      include/uapi/linux/thermal.h
22781 F:      tools/lib/thermal/
22782 F:      tools/thermal/
22783
22784 THERMAL DRIVER FOR AMLOGIC SOCS
22785 M:      Guillaume La Roque <[email protected]>
22786 L:      [email protected]
22787 L:      [email protected]
22788 S:      Supported
22789 W:      http://linux-meson.com/
22790 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
22791 F:      drivers/thermal/amlogic_thermal.c
22792
22793 THERMAL/CPU_COOLING
22794 M:      Amit Daniel Kachhap <[email protected]>
22795 M:      Daniel Lezcano <[email protected]>
22796 M:      Viresh Kumar <[email protected]>
22797 R:      Lukasz Luba <[email protected]>
22798 L:      [email protected]
22799 S:      Supported
22800 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
22801 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
22802 F:      drivers/thermal/cpufreq_cooling.c
22803 F:      drivers/thermal/cpuidle_cooling.c
22804 F:      include/linux/cpu_cooling.h
22805
22806 THERMAL/POWER_ALLOCATOR
22807 M:      Lukasz Luba <[email protected]>
22808 L:      [email protected]
22809 S:      Maintained
22810 F:      Documentation/driver-api/thermal/power_allocator.rst
22811 F:      drivers/thermal/gov_power_allocator.c
22812 F:      drivers/thermal/thermal_trace_ipa.h
22813
22814 THINKPAD ACPI EXTRAS DRIVER
22815 M:      Henrique de Moraes Holschuh <[email protected]>
22816 L:      [email protected]
22817 L:      [email protected]
22818 S:      Maintained
22819 W:      http://ibm-acpi.sourceforge.net
22820 W:      http://thinkwiki.org/wiki/Ibm-acpi
22821 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
22822 F:      drivers/platform/x86/thinkpad_acpi.c
22823
22824 THINKPAD LMI DRIVER
22825 M:      Mark Pearson <[email protected]>
22826 L:      [email protected]
22827 S:      Maintained
22828 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
22829 F:      drivers/platform/x86/think-lmi.?
22830
22831 THP7312 ISP DRIVER
22832 M:      Laurent Pinchart <[email protected]>
22833 M:      Paul Elder <[email protected]>
22834 L:      [email protected]
22835 S:      Maintained
22836 T:      git git://linuxtv.org/media_tree.git
22837 F:      Documentation/devicetree/bindings/media/i2c/thine,thp7312.yaml
22838 F:      Documentation/userspace-api/media/drivers/thp7312.rst
22839 F:      drivers/media/i2c/thp7312.c
22840 F:      include/uapi/linux/thp7312.h
22841
22842 THUNDERBOLT DMA TRAFFIC TEST DRIVER
22843 M:      Isaac Hazan <[email protected]>
22844 L:      [email protected]
22845 S:      Maintained
22846 F:      drivers/thunderbolt/dma_test.c
22847
22848 THUNDERBOLT DRIVER
22849 M:      Andreas Noever <[email protected]>
22850 M:      Michael Jamet <[email protected]>
22851 M:      Mika Westerberg <[email protected]>
22852 M:      Yehezkel Bernat <[email protected]>
22853 L:      [email protected]
22854 S:      Maintained
22855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
22856 F:      Documentation/admin-guide/thunderbolt.rst
22857 F:      drivers/thunderbolt/
22858 F:      include/linux/thunderbolt.h
22859
22860 THUNDERBOLT NETWORK DRIVER
22861 M:      Michael Jamet <[email protected]>
22862 M:      Mika Westerberg <[email protected]>
22863 M:      Yehezkel Bernat <[email protected]>
22864 L:      [email protected]
22865 S:      Maintained
22866 F:      drivers/net/thunderbolt/
22867
22868 THUNDERX GPIO DRIVER
22869 M:      Robert Richter <[email protected]>
22870 S:      Odd Fixes
22871 F:      drivers/gpio/gpio-thunderx.c
22872
22873 TI ADS1119 ADC DRIVER
22874 M:      Francesco Dolcini <[email protected]>
22875 M:      João Paulo Gonçalves <[email protected]>
22876 L:      [email protected]
22877 S:      Maintained
22878 F:      Documentation/devicetree/bindings/iio/adc/ti,ads1119.yaml
22879 F:      drivers/iio/adc/ti-ads1119.c
22880
22881 TI ADS7924 ADC DRIVER
22882 M:      Hugo Villeneuve <[email protected]>
22883 L:      [email protected]
22884 S:      Supported
22885 F:      Documentation/devicetree/bindings/iio/adc/ti,ads7924.yaml
22886 F:      drivers/iio/adc/ti-ads7924.c
22887
22888 TI AM437X VPFE DRIVER
22889 M:      "Lad, Prabhakar" <[email protected]>
22890 L:      [email protected]
22891 S:      Maintained
22892 W:      https://linuxtv.org
22893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
22894 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
22895 F:      drivers/media/platform/ti/am437x/
22896
22897 TI BANDGAP AND THERMAL DRIVER
22898 M:      Eduardo Valentin <[email protected]>
22899 M:      Keerthy <[email protected]>
22900 L:      [email protected]
22901 L:      [email protected]
22902 S:      Maintained
22903 F:      drivers/thermal/ti-soc-thermal/
22904
22905 TI BQ27XXX POWER SUPPLY DRIVER
22906 F:      drivers/power/supply/bq27xxx_battery.c
22907 F:      drivers/power/supply/bq27xxx_battery_i2c.c
22908 F:      include/linux/power/bq27xxx_battery.h
22909
22910 TI CDCE706 CLOCK DRIVER
22911 M:      Max Filippov <[email protected]>
22912 S:      Maintained
22913 F:      drivers/clk/clk-cdce706.c
22914
22915 TI CLOCK DRIVER
22916 M:      Tero Kristo <[email protected]>
22917 L:      [email protected]
22918 S:      Odd Fixes
22919 F:      drivers/clk/ti/
22920 F:      include/linux/clk/ti.h
22921
22922 TI DAVINCI MACHINE SUPPORT
22923 M:      Bartosz Golaszewski <[email protected]>
22924 L:      [email protected] (moderated for non-subscribers)
22925 S:      Maintained
22926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
22927 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
22928 F:      arch/arm/boot/dts/ti/davinci/
22929 F:      arch/arm/mach-davinci/
22930 F:      drivers/i2c/busses/i2c-davinci.c
22931
22932 TI DAVINCI SERIES CLOCK DRIVER
22933 M:      David Lechner <[email protected]>
22934 S:      Maintained
22935 F:      Documentation/devicetree/bindings/clock/ti/davinci/
22936 F:      drivers/clk/davinci/
22937 F:      include/linux/clk/davinci.h
22938
22939 TI DAVINCI SERIES GPIO DRIVER
22940 M:      Keerthy <[email protected]>
22941 L:      [email protected]
22942 S:      Maintained
22943 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
22944 F:      drivers/gpio/gpio-davinci.c
22945
22946 TI DAVINCI SERIES MEDIA DRIVER
22947 M:      "Lad, Prabhakar" <[email protected]>
22948 L:      [email protected]
22949 S:      Maintained
22950 W:      https://linuxtv.org
22951 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
22952 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
22953 F:      drivers/media/platform/ti/davinci/
22954 F:      include/media/davinci/
22955
22956 TI ENHANCED CAPTURE (eCAP) DRIVER
22957 M:      Vignesh Raghavendra <[email protected]>
22958 R:      Julien Panis <[email protected]>
22959 L:      [email protected]
22960 L:      [email protected]
22961 S:      Maintained
22962 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
22963 F:      drivers/counter/ti-ecap-capture.c
22964
22965 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
22966 R:      David Lechner <[email protected]>
22967 L:      [email protected]
22968 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
22969 F:      drivers/counter/ti-eqep.c
22970
22971 TI ETHERNET SWITCH DRIVER (CPSW)
22972 R:      Siddharth Vadapalli <[email protected]>
22973 R:      Roger Quadros <[email protected]>
22974 L:      [email protected]
22975 L:      [email protected]
22976 S:      Maintained
22977 F:      drivers/net/ethernet/ti/cpsw*
22978 F:      drivers/net/ethernet/ti/davinci*
22979
22980 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
22981 M:      Alex Dubov <[email protected]>
22982 S:      Maintained
22983 W:      http://tifmxx.berlios.de/
22984 F:      drivers/memstick/host/tifm_ms.c
22985 F:      drivers/misc/tifm*
22986 F:      drivers/mmc/host/tifm_sd.c
22987 F:      include/linux/tifm.h
22988
22989 TI FPD-LINK DRIVERS
22990 M:      Tomi Valkeinen <[email protected]>
22991 L:      [email protected]
22992 S:      Maintained
22993 F:      Documentation/devicetree/bindings/media/i2c/ti,ds90*
22994 F:      drivers/media/i2c/ds90*
22995 F:      include/media/i2c/ds90*
22996
22997 TI HDC302X HUMIDITY DRIVER
22998 M:      Javier Carrasco <[email protected]>
22999 M:      Li peiyu <[email protected]>
23000 L:      [email protected]
23001 S:      Maintained
23002 F:      Documentation/devicetree/bindings/iio/humidity/ti,hdc3020.yaml
23003 F:      drivers/iio/humidity/hdc3020.c
23004
23005 TI ICSSG ETHERNET DRIVER (ICSSG)
23006 R:      MD Danish Anwar <[email protected]>
23007 R:      Roger Quadros <[email protected]>
23008 L:      [email protected] (moderated for non-subscribers)
23009 L:      [email protected]
23010 S:      Maintained
23011 F:      Documentation/devicetree/bindings/net/ti,icss*.yaml
23012 F:      drivers/net/ethernet/ti/icssg/*
23013
23014 TI J721E CSI2RX DRIVER
23015 M:      Jai Luthra <[email protected]>
23016 L:      [email protected]
23017 S:      Maintained
23018 F:      Documentation/devicetree/bindings/media/ti,j721e-csi2rx-shim.yaml
23019 F:      drivers/media/platform/ti/j721e-csi2rx/
23020
23021 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
23022 M:      Nishanth Menon <[email protected]>
23023 M:      Santosh Shilimkar <[email protected]>
23024 L:      [email protected]
23025 L:      [email protected] (moderated for non-subscribers)
23026 S:      Maintained
23027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
23028 F:      Documentation/devicetree/bindings/soc/ti/ti,pruss.yaml
23029 F:      drivers/pmdomain/ti/omap_prm.c
23030 F:      drivers/soc/ti/*
23031
23032 TI LM49xxx FAMILY ASoC CODEC DRIVERS
23033 M:      M R Swami Reddy <[email protected]>
23034 M:      Vishwas A Deshpande <[email protected]>
23035 L:      [email protected] (moderated for non-subscribers)
23036 S:      Maintained
23037 F:      sound/soc/codecs/isabelle*
23038 F:      sound/soc/codecs/lm49453*
23039
23040 TI LMP92064 ADC DRIVER
23041 M:      Leonard Göhrs <[email protected]>
23042 R:      [email protected]
23043 L:      [email protected]
23044 S:      Maintained
23045 F:      Documentation/devicetree/bindings/iio/adc/ti,lmp92064.yaml
23046 F:      drivers/iio/adc/ti-lmp92064.c
23047
23048 TI PCM3060 ASoC CODEC DRIVER
23049 M:      Kirill Marinushkin <[email protected]>
23050 L:      [email protected] (moderated for non-subscribers)
23051 S:      Maintained
23052 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
23053 F:      sound/soc/codecs/pcm3060*
23054
23055 TI TAS571X FAMILY ASoC CODEC DRIVER
23056 M:      Kevin Cernekee <[email protected]>
23057 L:      [email protected] (moderated for non-subscribers)
23058 S:      Odd Fixes
23059 F:      sound/soc/codecs/tas571x*
23060
23061 TI TMAG5273 MAGNETOMETER DRIVER
23062 M:      Gerald Loacker <[email protected]>
23063 L:      [email protected]
23064 S:      Maintained
23065 F:      Documentation/devicetree/bindings/iio/magnetometer/ti,tmag5273.yaml
23066 F:      drivers/iio/magnetometer/tmag5273.c
23067
23068 TI TRF7970A NFC DRIVER
23069 M:      Mark Greer <[email protected]>
23070 L:      [email protected]
23071 S:      Supported
23072 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
23073 F:      drivers/nfc/trf7970a.c
23074
23075 TI TSC2046 ADC DRIVER
23076 M:      Oleksij Rempel <[email protected]>
23077 R:      [email protected]
23078 L:      [email protected]
23079 S:      Maintained
23080 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
23081 F:      drivers/iio/adc/ti-tsc2046.c
23082
23083 TI TWL4030 SERIES SOC CODEC DRIVER
23084 M:      Peter Ujfalusi <[email protected]>
23085 L:      [email protected] (moderated for non-subscribers)
23086 S:      Maintained
23087 F:      sound/soc/codecs/twl4030*
23088
23089 TI VPE/CAL DRIVERS
23090 M:      Benoit Parrot <[email protected]>
23091 L:      [email protected]
23092 S:      Maintained
23093 W:      http://linuxtv.org/
23094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
23095 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
23096 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
23097 F:      drivers/media/platform/ti/cal/
23098 F:      drivers/media/platform/ti/vpe/
23099
23100 TI WILINK WIRELESS DRIVERS
23101 L:      [email protected]
23102 S:      Orphan
23103 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
23104 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
23105 F:      drivers/net/wireless/ti/
23106
23107 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
23108 M:      John Stultz <[email protected]>
23109 M:      Thomas Gleixner <[email protected]>
23110 R:      Stephen Boyd <[email protected]>
23111 L:      [email protected]
23112 S:      Supported
23113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
23114 F:      include/linux/clocksource.h
23115 F:      include/linux/time.h
23116 F:      include/linux/timekeeper_internal.h
23117 F:      include/linux/timekeeping.h
23118 F:      include/linux/timex.h
23119 F:      include/uapi/linux/time.h
23120 F:      include/uapi/linux/timex.h
23121 F:      kernel/time/alarmtimer.c
23122 F:      kernel/time/clocksource*
23123 F:      kernel/time/ntp*
23124 F:      kernel/time/time.c
23125 F:      kernel/time/timeconst.bc
23126 F:      kernel/time/timeconv.c
23127 F:      kernel/time/timecounter.c
23128 F:      kernel/time/timekeeping*
23129 F:      kernel/time/time_test.c
23130 F:      tools/testing/selftests/timers/
23131
23132 TIPC NETWORK LAYER
23133 M:      Jon Maloy <[email protected]>
23134 M:      Ying Xue <[email protected]>
23135 L:      [email protected] (core kernel code)
23136 L:      [email protected] (user apps, general discussion)
23137 S:      Maintained
23138 W:      http://tipc.sourceforge.net/
23139 F:      include/uapi/linux/tipc*.h
23140 F:      net/tipc/
23141
23142 TLAN NETWORK DRIVER
23143 M:      Samuel Chessman <[email protected]>
23144 L:      [email protected] (subscribers-only)
23145 S:      Maintained
23146 W:      http://sourceforge.net/projects/tlan/
23147 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
23148 F:      drivers/net/ethernet/ti/tlan.*
23149
23150 TMIO/SDHI MMC DRIVER
23151 M:      Wolfram Sang <[email protected]>
23152 L:      [email protected]
23153 L:      [email protected]
23154 S:      Supported
23155 F:      drivers/mmc/host/renesas_sdhi*
23156 F:      drivers/mmc/host/tmio_mmc*
23157 F:      include/linux/platform_data/tmio.h
23158
23159 TMP513 HARDWARE MONITOR DRIVER
23160 M:      Eric Tremblay <[email protected]>
23161 L:      [email protected]
23162 S:      Maintained
23163 F:      Documentation/hwmon/tmp513.rst
23164 F:      drivers/hwmon/tmp513.c
23165
23166 TMPFS (SHMEM FILESYSTEM)
23167 M:      Hugh Dickins <[email protected]>
23168 L:      [email protected]
23169 S:      Maintained
23170 F:      include/linux/shmem_fs.h
23171 F:      mm/shmem.c
23172
23173 TOMOYO SECURITY MODULE
23174 M:      Kentaro Takeda <[email protected]>
23175 M:      Tetsuo Handa <[email protected]>
23176 L:      [email protected] (subscribers-only, for developers in English)
23177 L:      [email protected] (subscribers-only, for users in English)
23178 L:      [email protected] (subscribers-only, for developers in Japanese)
23179 L:      [email protected] (subscribers-only, for users in Japanese)
23180 S:      Maintained
23181 W:      https://tomoyo.sourceforge.net/
23182 F:      security/tomoyo/
23183
23184 TOPSTAR LAPTOP EXTRAS DRIVER
23185 M:      Herton Ronaldo Krzesinski <[email protected]>
23186 L:      [email protected]
23187 S:      Maintained
23188 F:      drivers/platform/x86/topstar-laptop.c
23189
23190 TORTURE-TEST MODULES
23191 M:      Davidlohr Bueso <[email protected]>
23192 M:      "Paul E. McKenney" <[email protected]>
23193 M:      Josh Triplett <[email protected]>
23194 L:      [email protected]
23195 S:      Supported
23196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
23197 F:      Documentation/RCU/torture.rst
23198 F:      kernel/locking/locktorture.c
23199 F:      kernel/rcu/rcuscale.c
23200 F:      kernel/rcu/rcutorture.c
23201 F:      kernel/rcu/refscale.c
23202 F:      kernel/torture.c
23203
23204 TOSHIBA ACPI EXTRAS DRIVER
23205 M:      Azael Avalos <[email protected]>
23206 L:      [email protected]
23207 S:      Maintained
23208 F:      drivers/platform/x86/toshiba_acpi.c
23209
23210 TOSHIBA BLUETOOTH DRIVER
23211 M:      Azael Avalos <[email protected]>
23212 L:      [email protected]
23213 S:      Maintained
23214 F:      drivers/platform/x86/toshiba_bluetooth.c
23215
23216 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
23217 M:      Azael Avalos <[email protected]>
23218 L:      [email protected]
23219 S:      Maintained
23220 F:      drivers/platform/x86/toshiba_haps.c
23221
23222 TOSHIBA SMM DRIVER
23223 M:      Jonathan Buzzard <[email protected]>
23224 S:      Maintained
23225 W:      http://www.buzzard.org.uk/toshiba/
23226 F:      drivers/char/toshiba.c
23227 F:      include/linux/toshiba.h
23228 F:      include/uapi/linux/toshiba.h
23229
23230 TOSHIBA TC358743 DRIVER
23231 M:      Hans Verkuil <[email protected]>
23232 L:      [email protected]
23233 S:      Maintained
23234 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
23235 F:      drivers/media/i2c/tc358743*
23236 F:      include/media/i2c/tc358743.h
23237
23238 TOSHIBA WMI HOTKEYS DRIVER
23239 M:      Azael Avalos <[email protected]>
23240 L:      [email protected]
23241 S:      Maintained
23242 F:      drivers/platform/x86/toshiba-wmi.c
23243
23244 TPM DEVICE DRIVER
23245 M:      Peter Huewe <[email protected]>
23246 M:      Jarkko Sakkinen <[email protected]>
23247 R:      Jason Gunthorpe <[email protected]>
23248 L:      [email protected]
23249 S:      Maintained
23250 W:      https://codeberg.org/jarkko/linux-tpmdd-test
23251 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
23252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
23253 F:      Documentation/devicetree/bindings/tpm/
23254 F:      drivers/char/tpm/
23255
23256 TPS546D24 DRIVER
23257 M:      Duke Du <[email protected]>
23258 L:      [email protected]
23259 S:      Maintained
23260 F:      Documentation/hwmon/tps546d24.rst
23261 F:      drivers/hwmon/pmbus/tps546d24.c
23262
23263 TQ SYSTEMS BOARD & DRIVER SUPPORT
23264 L:      [email protected]
23265 S:      Supported
23266 W:      https://www.tq-group.com/en/products/tq-embedded/
23267 F:      arch/arm/boot/dts/imx*mba*.dts*
23268 F:      arch/arm/boot/dts/imx*tqma*.dts*
23269 F:      arch/arm/boot/dts/mba*.dtsi
23270 F:      arch/arm64/boot/dts/freescale/fsl-*tqml*.dts*
23271 F:      arch/arm64/boot/dts/freescale/imx*mba*.dts*
23272 F:      arch/arm64/boot/dts/freescale/imx*tqma*.dts*
23273 F:      arch/arm64/boot/dts/freescale/mba*.dtsi
23274 F:      arch/arm64/boot/dts/freescale/tqml*.dts*
23275 F:      drivers/gpio/gpio-tqmx86.c
23276 F:      drivers/mfd/tqmx86.c
23277 F:      drivers/watchdog/tqmx86_wdt.c
23278
23279 TRACING
23280 M:      Steven Rostedt <[email protected]>
23281 M:      Masami Hiramatsu <[email protected]>
23282 R:      Mathieu Desnoyers <[email protected]>
23283 L:      [email protected]
23284 L:      [email protected]
23285 S:      Maintained
23286 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
23287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
23288 F:      Documentation/trace/*
23289 F:      fs/tracefs/
23290 F:      include/linux/trace*.h
23291 F:      include/trace/
23292 F:      kernel/trace/
23293 F:      scripts/tracing/
23294 F:      tools/testing/selftests/ftrace/
23295
23296 TRACING MMIO ACCESSES (MMIOTRACE)
23297 M:      Steven Rostedt <[email protected]>
23298 M:      Masami Hiramatsu <[email protected]>
23299 R:      Karol Herbst <[email protected]>
23300 R:      Pekka Paalanen <[email protected]>
23301 L:      [email protected]
23302 L:      [email protected]
23303 S:      Maintained
23304 F:      arch/x86/mm/kmmio.c
23305 F:      arch/x86/mm/mmio-mod.c
23306 F:      arch/x86/mm/testmmiotrace.c
23307 F:      include/linux/mmiotrace.h
23308 F:      kernel/trace/trace_mmiotrace.c
23309
23310 TRACING OS NOISE / LATENCY TRACERS
23311 M:      Steven Rostedt <[email protected]>
23312 S:      Maintained
23313 F:      Documentation/trace/hwlat_detector.rst
23314 F:      Documentation/trace/osnoise-tracer.rst
23315 F:      Documentation/trace/timerlat-tracer.rst
23316 F:      arch/*/kernel/trace.c
23317 F:      include/trace/events/osnoise.h
23318 F:      kernel/trace/trace_hwlat.c
23319 F:      kernel/trace/trace_irqsoff.c
23320 F:      kernel/trace/trace_osnoise.c
23321 F:      kernel/trace/trace_sched_wakeup.c
23322
23323 TRADITIONAL CHINESE DOCUMENTATION
23324 M:      Hu Haowen <[email protected]>
23325 S:      Maintained
23326 W:      https://github.com/srcres258/linux-doc
23327 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
23328 F:      Documentation/translations/zh_TW/
23329
23330 TRUSTED SECURITY MODULE (TSM) ATTESTATION REPORTS
23331 M:      Dan Williams <[email protected]>
23332 L:      [email protected]
23333 S:      Maintained
23334 F:      Documentation/ABI/testing/configfs-tsm
23335 F:      drivers/virt/coco/tsm.c
23336 F:      include/linux/tsm.h
23337
23338 TRUSTED SERVICES TEE DRIVER
23339 M:      Balint Dobszay <[email protected]>
23340 M:      Sudeep Holla <[email protected]>
23341 L:      [email protected] (moderated for non-subscribers)
23342 L:      [email protected]
23343 S:      Maintained
23344 F:      Documentation/tee/ts-tee.rst
23345 F:      drivers/tee/tstee/
23346
23347 TTY LAYER AND SERIAL DRIVERS
23348 M:      Greg Kroah-Hartman <[email protected]>
23349 M:      Jiri Slaby <[email protected]>
23350 L:      [email protected]
23351 L:      [email protected]
23352 S:      Supported
23353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
23354 F:      Documentation/devicetree/bindings/serial/
23355 F:      Documentation/driver-api/serial/
23356 F:      drivers/tty/
23357 F:      include/linux/selection.h
23358 F:      include/linux/serial.h
23359 F:      include/linux/serial_core.h
23360 F:      include/linux/sysrq.h
23361 F:      include/linux/tty*.h
23362 F:      include/linux/vt.h
23363 F:      include/linux/vt_*.h
23364 F:      include/uapi/linux/serial.h
23365 F:      include/uapi/linux/serial_core.h
23366 F:      include/uapi/linux/tty.h
23367
23368 TUA9001 MEDIA DRIVER
23369 L:      [email protected]
23370 S:      Orphan
23371 W:      https://linuxtv.org
23372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
23373 F:      drivers/media/tuners/tua9001*
23374
23375 TULIP NETWORK DRIVERS
23376 L:      [email protected]
23377 L:      [email protected]
23378 S:      Orphan
23379 F:      drivers/net/ethernet/dec/tulip/
23380
23381 TUN/TAP driver
23382 M:      Willem de Bruijn <[email protected]>
23383 M:      Jason Wang <[email protected]>
23384 S:      Maintained
23385 W:      http://vtun.sourceforge.net/tun
23386 F:      Documentation/networking/tuntap.rst
23387 F:      arch/um/os-Linux/drivers/
23388 F:      drivers/net/tap.c
23389 F:      drivers/net/tun.c
23390
23391 TURBOCHANNEL SUBSYSTEM
23392 M:      "Maciej W. Rozycki" <[email protected]>
23393 M:      Ralf Baechle <[email protected]>
23394 L:      [email protected]
23395 S:      Maintained
23396 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
23397 F:      drivers/tc/
23398 F:      include/linux/tc.h
23399
23400 TURBOSTAT UTILITY
23401 M:      "Len Brown" <[email protected]>
23402 L:      [email protected]
23403 S:      Supported
23404 Q:      https://patchwork.kernel.org/project/linux-pm/list/
23405 B:      https://bugzilla.kernel.org
23406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
23407 F:      tools/power/x86/turbostat/
23408 F:      tools/testing/selftests/turbostat/
23409
23410 TW5864 VIDEO4LINUX DRIVER
23411 M:      Bluecherry Maintainers <[email protected]>
23412 M:      Andrey Utkin <[email protected]>
23413 M:      Andrey Utkin <[email protected]>
23414 L:      [email protected]
23415 S:      Supported
23416 F:      drivers/media/pci/tw5864/
23417
23418 TW68 VIDEO4LINUX DRIVER
23419 M:      Hans Verkuil <[email protected]>
23420 L:      [email protected]
23421 S:      Odd Fixes
23422 W:      https://linuxtv.org
23423 T:      git git://linuxtv.org/media_tree.git
23424 F:      drivers/media/pci/tw68/
23425
23426 TW686X VIDEO4LINUX DRIVER
23427 M:      Ezequiel Garcia <[email protected]>
23428 L:      [email protected]
23429 S:      Maintained
23430 W:      http://linuxtv.org
23431 T:      git git://linuxtv.org/media_tree.git
23432 F:      drivers/media/pci/tw686x/
23433
23434 U-BOOT ENVIRONMENT VARIABLES
23435 M:      Rafał Miłecki <[email protected]>
23436 S:      Maintained
23437 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
23438 F:      drivers/nvmem/u-boot-env.c
23439
23440 UACCE ACCELERATOR FRAMEWORK
23441 M:      Zhangfei Gao <[email protected]>
23442 M:      Zhou Wang <[email protected]>
23443 L:      [email protected]
23444 L:      [email protected]
23445 S:      Maintained
23446 F:      Documentation/ABI/testing/sysfs-driver-uacce
23447 F:      Documentation/misc-devices/uacce.rst
23448 F:      drivers/misc/uacce/
23449 F:      include/linux/uacce.h
23450 F:      include/uapi/misc/uacce/
23451
23452 UBI FILE SYSTEM (UBIFS)
23453 M:      Richard Weinberger <[email protected]>
23454 R:      Zhihao Cheng <[email protected]>
23455 L:      [email protected]
23456 S:      Supported
23457 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
23458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
23459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
23460 F:      Documentation/ABI/testing/sysfs-fs-ubifs
23461 F:      Documentation/filesystems/ubifs-authentication.rst
23462 F:      Documentation/filesystems/ubifs.rst
23463 F:      fs/ubifs/
23464
23465 UBLK USERSPACE BLOCK DRIVER
23466 M:      Ming Lei <[email protected]>
23467 L:      [email protected]
23468 S:      Maintained
23469 F:      Documentation/block/ublk.rst
23470 F:      drivers/block/ublk_drv.c
23471 F:      include/uapi/linux/ublk_cmd.h
23472
23473 UBSAN
23474 M:      Kees Cook <[email protected]>
23475 R:      Marco Elver <[email protected]>
23476 R:      Andrey Konovalov <[email protected]>
23477 R:      Andrey Ryabinin <[email protected]>
23478 L:      [email protected]
23479 L:      [email protected]
23480 S:      Supported
23481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
23482 F:      Documentation/dev-tools/ubsan.rst
23483 F:      include/linux/ubsan.h
23484 F:      lib/Kconfig.ubsan
23485 F:      lib/test_ubsan.c
23486 F:      lib/ubsan.c
23487 F:      lib/ubsan.h
23488 F:      scripts/Makefile.ubsan
23489 K:      \bARCH_HAS_UBSAN\b
23490
23491 UCLINUX (M68KNOMMU AND COLDFIRE)
23492 M:      Greg Ungerer <[email protected]>
23493 L:      [email protected]
23494 S:      Maintained
23495 W:      http://www.linux-m68k.org/
23496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
23497 F:      arch/m68k/*/*_no.*
23498 F:      arch/m68k/68*/
23499 F:      arch/m68k/coldfire/
23500 F:      arch/m68k/include/asm/*_no.*
23501
23502 UDF FILESYSTEM
23503 M:      Jan Kara <[email protected]>
23504 S:      Maintained
23505 F:      Documentation/filesystems/udf.rst
23506 F:      fs/udf/
23507
23508 UDRAW TABLET
23509 M:      Bastien Nocera <[email protected]>
23510 L:      [email protected]
23511 S:      Maintained
23512 F:      drivers/hid/hid-udraw-ps3.c
23513
23514 UFS FILESYSTEM
23515 M:      Evgeniy Dushistov <[email protected]>
23516 S:      Maintained
23517 F:      Documentation/admin-guide/ufs.rst
23518 F:      fs/ufs/
23519
23520 UHID USERSPACE HID IO DRIVER
23521 M:      David Rheinsberg <[email protected]>
23522 L:      [email protected]
23523 S:      Maintained
23524 F:      drivers/hid/uhid.c
23525 F:      include/uapi/linux/uhid.h
23526
23527 ULPI BUS
23528 M:      Heikki Krogerus <[email protected]>
23529 L:      [email protected]
23530 S:      Maintained
23531 F:      drivers/usb/common/ulpi.c
23532 F:      include/linux/ulpi/
23533
23534 UNICODE SUBSYSTEM
23535 M:      Gabriel Krisman Bertazi <[email protected]>
23536 L:      [email protected]
23537 S:      Supported
23538 F:      fs/unicode/
23539
23540 UNIFDEF
23541 M:      Tony Finch <[email protected]>
23542 S:      Maintained
23543 W:      http://dotat.at/prog/unifdef
23544 F:      scripts/unifdef.c
23545
23546 UNIFORM CDROM DRIVER
23547 M:      Phillip Potter <[email protected]>
23548 S:      Maintained
23549 F:      Documentation/cdrom/
23550 F:      drivers/cdrom/cdrom.c
23551 F:      include/linux/cdrom.h
23552 F:      include/uapi/linux/cdrom.h
23553
23554 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
23555 R:      Alim Akhtar <[email protected]>
23556 R:      Avri Altman <[email protected]>
23557 R:      Bart Van Assche <[email protected]>
23558 L:      [email protected]
23559 S:      Supported
23560 F:      Documentation/devicetree/bindings/ufs/
23561 F:      Documentation/scsi/ufs.rst
23562 F:      drivers/ufs/core/
23563
23564 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
23565 M:      Pedro Sousa <[email protected]>
23566 L:      [email protected]
23567 S:      Supported
23568 F:      drivers/ufs/host/*dwc*
23569
23570 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER EXYNOS HOOKS
23571 M:      Alim Akhtar <[email protected]>
23572 L:      [email protected]
23573 S:      Maintained
23574 F:      drivers/ufs/host/ufs-exynos*
23575
23576 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
23577 M:      Peter Wang <[email protected]>
23578 R:      Stanley Jhu <[email protected]>
23579 L:      [email protected]
23580 L:      [email protected] (moderated for non-subscribers)
23581 S:      Maintained
23582 F:      drivers/ufs/host/ufs-mediatek*
23583
23584 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER QUALCOMM HOOKS
23585 M:      Manivannan Sadhasivam <[email protected]>
23586 L:      [email protected]
23587 L:      [email protected]
23588 S:      Maintained
23589 F:      Documentation/devicetree/bindings/ufs/qcom,ufs.yaml
23590 F:      drivers/ufs/host/ufs-qcom*
23591
23592 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
23593 M:      Yoshihiro Shimoda <[email protected]>
23594 L:      [email protected]
23595 L:      [email protected]
23596 S:      Maintained
23597 F:      drivers/ufs/host/ufs-renesas.c
23598
23599 UNSORTED BLOCK IMAGES (UBI)
23600 M:      Richard Weinberger <[email protected]>
23601 R:      Zhihao Cheng <[email protected]>
23602 L:      [email protected]
23603 S:      Supported
23604 W:      http://www.linux-mtd.infradead.org/
23605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
23606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
23607 F:      drivers/mtd/ubi/
23608 F:      include/linux/mtd/ubi.h
23609 F:      include/uapi/mtd/ubi-user.h
23610
23611 UPROBES
23612 M:      Masami Hiramatsu <[email protected]>
23613 M:      Oleg Nesterov <[email protected]>
23614 M:      Peter Zijlstra <[email protected]>
23615 L:      [email protected]
23616 L:      [email protected]
23617 S:      Maintained
23618 F:      arch/*/include/asm/uprobes.h
23619 F:      arch/*/kernel/probes/uprobes.c
23620 F:      arch/*/kernel/uprobes.c
23621 F:      include/linux/uprobes.h
23622 F:      kernel/events/uprobes.c
23623
23624 USB "USBNET" DRIVER FRAMEWORK
23625 M:      Oliver Neukum <[email protected]>
23626 L:      [email protected]
23627 S:      Maintained
23628 W:      http://www.linux-usb.org/usbnet
23629 F:      drivers/net/usb/usbnet.c
23630 F:      include/linux/usb/usbnet.h
23631
23632 USB ACM DRIVER
23633 M:      Oliver Neukum <[email protected]>
23634 L:      [email protected]
23635 S:      Maintained
23636 F:      Documentation/usb/acm.rst
23637 F:      drivers/usb/class/cdc-acm.*
23638
23639 USB APPLE MFI FASTCHARGE DRIVER
23640 M:      Bastien Nocera <[email protected]>
23641 L:      [email protected]
23642 S:      Maintained
23643 F:      drivers/usb/misc/apple-mfi-fastcharge.c
23644
23645 USB AR5523 WIRELESS DRIVER
23646 L:      [email protected]
23647 S:      Orphan
23648 F:      drivers/net/wireless/ath/ar5523/
23649
23650 USB ATTACHED SCSI
23651 M:      Oliver Neukum <[email protected]>
23652 L:      [email protected]
23653 L:      [email protected]
23654 S:      Maintained
23655 F:      drivers/usb/storage/uas.c
23656
23657 USB CDC ETHERNET DRIVER
23658 M:      Oliver Neukum <[email protected]>
23659 L:      [email protected]
23660 S:      Maintained
23661 F:      drivers/net/usb/cdc_*.c
23662 F:      include/uapi/linux/usb/cdc.h
23663
23664 USB CHAOSKEY DRIVER
23665 M:      Keith Packard <[email protected]>
23666 L:      [email protected]
23667 S:      Maintained
23668 F:      drivers/usb/misc/chaoskey.c
23669
23670 USB CYPRESS C67X00 DRIVER
23671 L:      [email protected]
23672 S:      Orphan
23673 F:      drivers/usb/c67x00/
23674
23675 USB DAVICOM DM9601 DRIVER
23676 M:      Peter Korsgaard <[email protected]>
23677 L:      [email protected]
23678 S:      Maintained
23679 W:      http://www.linux-usb.org/usbnet
23680 F:      drivers/net/usb/dm9601.c
23681
23682 USB EHCI DRIVER
23683 M:      Alan Stern <[email protected]>
23684 L:      [email protected]
23685 S:      Maintained
23686 F:      Documentation/usb/ehci.rst
23687 F:      drivers/usb/host/ehci*
23688
23689 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
23690 M:      Jiri Kosina <[email protected]>
23691 M:      Benjamin Tissoires <[email protected]>
23692 L:      [email protected]
23693 S:      Maintained
23694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
23695 F:      Documentation/hid/hiddev.rst
23696 F:      drivers/hid/usbhid/
23697
23698 USB INTEL XHCI ROLE MUX DRIVER
23699 M:      Hans de Goede <[email protected]>
23700 L:      [email protected]
23701 S:      Maintained
23702 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
23703
23704 USB IP DRIVER FOR HISILICON KIRIN 960
23705 M:      Yu Chen <[email protected]>
23706 M:      Binghui Wang <[email protected]>
23707 L:      [email protected]
23708 S:      Maintained
23709 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
23710 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
23711
23712 USB IP DRIVER FOR HISILICON KIRIN 970
23713 M:      Mauro Carvalho Chehab <[email protected]>
23714 L:      [email protected]
23715 S:      Maintained
23716 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
23717 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
23718
23719 USB ISP116X DRIVER
23720 M:      Olav Kongas <[email protected]>
23721 L:      [email protected]
23722 S:      Maintained
23723 F:      drivers/usb/host/isp116x*
23724 F:      include/linux/usb/isp116x.h
23725
23726 USB ISP1760 DRIVER
23727 M:      Rui Miguel Silva <[email protected]>
23728 L:      [email protected]
23729 S:      Maintained
23730 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
23731 F:      drivers/usb/isp1760/*
23732
23733 USB LAN78XX ETHERNET DRIVER
23734 M:      Woojung Huh <[email protected]>
23735 M:      [email protected]
23736 L:      [email protected]
23737 S:      Maintained
23738 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
23739 F:      drivers/net/usb/lan78xx.*
23740 F:      include/dt-bindings/net/microchip-lan78xx.h
23741
23742 USB MASS STORAGE DRIVER
23743 M:      Alan Stern <[email protected]>
23744 L:      [email protected]
23745 L:      [email protected]
23746 S:      Maintained
23747 F:      drivers/usb/storage/
23748
23749 USB MIDI DRIVER
23750 M:      Clemens Ladisch <[email protected]>
23751 L:      [email protected] (moderated for non-subscribers)
23752 S:      Maintained
23753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
23754 F:      sound/usb/midi.*
23755
23756 USB NETWORKING DRIVERS
23757 L:      [email protected]
23758 S:      Odd Fixes
23759 F:      drivers/net/usb/
23760
23761 USB OHCI DRIVER
23762 M:      Alan Stern <[email protected]>
23763 L:      [email protected]
23764 S:      Maintained
23765 F:      Documentation/usb/ohci.rst
23766 F:      drivers/usb/host/ohci*
23767
23768 USB OTG FSM (Finite State Machine)
23769 M:      Peter Chen <[email protected]>
23770 L:      [email protected]
23771 S:      Maintained
23772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
23773 F:      drivers/usb/common/usb-otg-fsm.c
23774
23775 USB OVER IP DRIVER
23776 M:      Valentina Manea <[email protected]>
23777 M:      Shuah Khan <[email protected]>
23778 M:      Shuah Khan <[email protected]>
23779 R:      Hongren Zheng <[email protected]>
23780 L:      [email protected]
23781 S:      Maintained
23782 F:      Documentation/usb/usbip_protocol.rst
23783 F:      drivers/usb/usbip/
23784 F:      tools/testing/selftests/drivers/usb/usbip/
23785 F:      tools/usb/usbip/
23786
23787 USB PEGASUS DRIVER
23788 M:      Petko Manolov <[email protected]>
23789 L:      [email protected]
23790 L:      [email protected]
23791 S:      Maintained
23792 W:      https://github.com/petkan/pegasus
23793 T:      git https://github.com/petkan/pegasus.git
23794 F:      drivers/net/usb/pegasus.*
23795
23796 USB PRINTER DRIVER (usblp)
23797 M:      Pete Zaitcev <[email protected]>
23798 L:      [email protected]
23799 S:      Supported
23800 F:      drivers/usb/class/usblp.c
23801
23802 USB QMI WWAN NETWORK DRIVER
23803 M:      Bjørn Mork <[email protected]>
23804 L:      [email protected]
23805 S:      Maintained
23806 F:      Documentation/ABI/testing/sysfs-class-net-qmi
23807 F:      drivers/net/usb/qmi_wwan.c
23808
23809 USB RAW GADGET DRIVER
23810 R:      Andrey Konovalov <[email protected]>
23811 L:      [email protected]
23812 S:      Maintained
23813 F:      Documentation/usb/raw-gadget.rst
23814 F:      drivers/usb/gadget/legacy/raw_gadget.c
23815 F:      include/uapi/linux/usb/raw_gadget.h
23816
23817 USB RTL8150 DRIVER
23818 M:      Petko Manolov <[email protected]>
23819 L:      [email protected]
23820 L:      [email protected]
23821 S:      Maintained
23822 W:      https://github.com/petkan/rtl8150
23823 T:      git https://github.com/petkan/rtl8150.git
23824 F:      drivers/net/usb/rtl8150.c
23825
23826 USB SERIAL SUBSYSTEM
23827 M:      Johan Hovold <[email protected]>
23828 L:      [email protected]
23829 S:      Maintained
23830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
23831 F:      Documentation/usb/usb-serial.rst
23832 F:      drivers/usb/serial/
23833 F:      include/linux/usb/serial.h
23834
23835 USB SMSC75XX ETHERNET DRIVER
23836 M:      Steve Glendinning <[email protected]>
23837 L:      [email protected]
23838 S:      Maintained
23839 F:      drivers/net/usb/smsc75xx.*
23840
23841 USB SMSC95XX ETHERNET DRIVER
23842 M:      Steve Glendinning <[email protected]>
23843 M:      [email protected]
23844 L:      [email protected]
23845 S:      Maintained
23846 F:      drivers/net/usb/smsc95xx.*
23847
23848 USB SUBSYSTEM
23849 M:      Greg Kroah-Hartman <[email protected]>
23850 L:      [email protected]
23851 S:      Supported
23852 W:      http://www.linux-usb.org
23853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
23854 F:      Documentation/devicetree/bindings/usb/
23855 F:      Documentation/usb/
23856 F:      drivers/usb/
23857 F:      include/dt-bindings/usb/
23858 F:      include/linux/usb.h
23859 F:      include/linux/usb/
23860 F:      include/uapi/linux/usb/
23861
23862 USB TYPEC BUS FOR ALTERNATE MODES
23863 M:      Heikki Krogerus <[email protected]>
23864 L:      [email protected]
23865 S:      Maintained
23866 F:      Documentation/ABI/testing/sysfs-bus-typec
23867 F:      Documentation/driver-api/usb/typec_bus.rst
23868 F:      drivers/usb/typec/altmodes/
23869 F:      include/linux/usb/typec_altmode.h
23870
23871 USB TYPEC CLASS
23872 M:      Heikki Krogerus <[email protected]>
23873 L:      [email protected]
23874 S:      Maintained
23875 F:      Documentation/ABI/testing/sysfs-class-typec
23876 F:      Documentation/driver-api/usb/typec.rst
23877 F:      drivers/usb/typec/
23878 F:      include/linux/usb/typec.h
23879
23880 USB TYPEC INTEL PMC MUX DRIVER
23881 M:      Heikki Krogerus <[email protected]>
23882 L:      [email protected]
23883 S:      Maintained
23884 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
23885 F:      drivers/usb/typec/mux/intel_pmc_mux.c
23886
23887 USB TYPEC PI3USB30532 MUX DRIVER
23888 M:      Hans de Goede <[email protected]>
23889 L:      [email protected]
23890 S:      Maintained
23891 F:      drivers/usb/typec/mux/pi3usb30532.c
23892
23893 USB TYPEC PORT CONTROLLER DRIVERS
23894 L:      [email protected]
23895 S:      Orphan
23896 F:      drivers/usb/typec/tcpm/
23897
23898 USB UHCI DRIVER
23899 M:      Alan Stern <[email protected]>
23900 L:      [email protected]
23901 S:      Maintained
23902 F:      drivers/usb/host/uhci*
23903
23904 USB VIDEO CLASS
23905 M:      Laurent Pinchart <[email protected]>
23906 L:      [email protected]
23907 S:      Maintained
23908 W:      http://www.ideasonboard.org/uvc/
23909 T:      git git://linuxtv.org/media_tree.git
23910 F:      drivers/media/usb/uvc/
23911 F:      include/uapi/linux/uvcvideo.h
23912
23913 USB WEBCAM GADGET
23914 L:      [email protected]
23915 S:      Orphan
23916 F:      drivers/usb/gadget/function/*uvc*
23917 F:      drivers/usb/gadget/legacy/webcam.c
23918 F:      include/uapi/linux/usb/g_uvc.h
23919
23920 USB XHCI DRIVER
23921 M:      Mathias Nyman <[email protected]>
23922 L:      [email protected]
23923 S:      Supported
23924 F:      drivers/usb/host/pci-quirks*
23925 F:      drivers/usb/host/xhci*
23926
23927 USER DATAGRAM PROTOCOL (UDP)
23928 M:      Willem de Bruijn <[email protected]>
23929 S:      Maintained
23930 F:      include/linux/udp.h
23931 F:      net/ipv4/udp.c
23932 F:      net/ipv6/udp.c
23933
23934 USER-MODE LINUX (UML)
23935 M:      Richard Weinberger <[email protected]>
23936 M:      Anton Ivanov <[email protected]>
23937 M:      Johannes Berg <[email protected]>
23938 L:      [email protected]
23939 S:      Maintained
23940 W:      http://user-mode-linux.sourceforge.net
23941 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
23942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
23943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
23944 F:      Documentation/virt/uml/
23945 F:      arch/um/
23946 F:      arch/x86/um/
23947 F:      fs/hostfs/
23948
23949 USERSPACE COPYIN/COPYOUT (UIOVEC)
23950 M:      Alexander Viro <[email protected]>
23951 S:      Maintained
23952 F:      include/linux/uio.h
23953 F:      lib/iov_iter.c
23954
23955 USERSPACE DMA BUFFER DRIVER
23956 M:      Gerd Hoffmann <[email protected]>
23957 L:      [email protected]
23958 S:      Maintained
23959 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
23960 F:      drivers/dma-buf/udmabuf.c
23961 F:      include/uapi/linux/udmabuf.h
23962
23963 USERSPACE I/O (UIO)
23964 M:      Greg Kroah-Hartman <[email protected]>
23965 S:      Maintained
23966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
23967 F:      Documentation/driver-api/uio-howto.rst
23968 F:      drivers/uio/
23969 F:      include/linux/uio_driver.h
23970
23971 UTIL-LINUX PACKAGE
23972 M:      Karel Zak <[email protected]>
23973 L:      [email protected]
23974 S:      Maintained
23975 W:      http://en.wikipedia.org/wiki/Util-linux
23976 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
23977
23978 UUID HELPERS
23979 R:      Andy Shevchenko <[email protected]>
23980 L:      [email protected]
23981 S:      Maintained
23982 F:      include/linux/uuid.h
23983 F:      lib/test_uuid.c
23984 F:      lib/uuid.c
23985
23986 UV SYSFS DRIVER
23987 M:      Justin Ernst <[email protected]>
23988 L:      [email protected]
23989 S:      Maintained
23990 F:      drivers/platform/x86/uv_sysfs.c
23991
23992 UVESAFB DRIVER
23993 M:      Michal Januszewski <[email protected]>
23994 L:      [email protected]
23995 S:      Maintained
23996 W:      https://github.com/mjanusz/v86d
23997 F:      Documentation/fb/uvesafb.rst
23998 F:      drivers/video/fbdev/uvesafb.*
23999
24000 Ux500 CLOCK DRIVERS
24001 M:      Ulf Hansson <[email protected]>
24002 L:      [email protected]
24003 L:      [email protected] (moderated for non-subscribers)
24004 S:      Maintained
24005 F:      drivers/clk/ux500/
24006
24007 V4L2 ASYNC AND FWNODE FRAMEWORKS
24008 M:      Sakari Ailus <[email protected]>
24009 L:      [email protected]
24010 S:      Maintained
24011 T:      git git://linuxtv.org/media_tree.git
24012 F:      drivers/media/v4l2-core/v4l2-async.c
24013 F:      drivers/media/v4l2-core/v4l2-fwnode.c
24014 F:      include/media/v4l2-async.h
24015 F:      include/media/v4l2-fwnode.h
24016
24017 V4L2 LENS DRIVERS
24018 M:      Sakari Ailus <[email protected]>
24019 L:      [email protected]
24020 S:      Maintained
24021 F:      drivers/media/i2c/ak*
24022 F:      drivers/media/i2c/dw*
24023 F:      drivers/media/i2c/lm*
24024
24025 V4L2 CAMERA SENSOR DRIVERS
24026 M:      Sakari Ailus <[email protected]>
24027 L:      [email protected]
24028 S:      Maintained
24029 F:      Documentation/driver-api/media/camera-sensor.rst
24030 F:      Documentation/driver-api/media/tx-rx.rst
24031 F:      drivers/media/i2c/ar*
24032 F:      drivers/media/i2c/gc*
24033 F:      drivers/media/i2c/hi*
24034 F:      drivers/media/i2c/imx*
24035 F:      drivers/media/i2c/mt*
24036 F:      drivers/media/i2c/og*
24037 F:      drivers/media/i2c/ov*
24038 F:      drivers/media/i2c/s5*
24039 F:      drivers/media/i2c/vgxy61.c
24040
24041 VF610 NAND DRIVER
24042 M:      Stefan Agner <[email protected]>
24043 L:      [email protected]
24044 S:      Supported
24045 F:      drivers/mtd/nand/raw/vf610_nfc.c
24046
24047 VFAT/FAT/MSDOS FILESYSTEM
24048 M:      OGAWA Hirofumi <[email protected]>
24049 S:      Maintained
24050 F:      Documentation/filesystems/vfat.rst
24051 F:      fs/fat/
24052 F:      tools/testing/selftests/filesystems/fat/
24053
24054 VFIO CDX DRIVER
24055 M:      Nipun Gupta <[email protected]>
24056 M:      Nikhil Agarwal <[email protected]>
24057 L:      [email protected]
24058 S:      Maintained
24059 F:      drivers/vfio/cdx/*
24060
24061 VFIO DRIVER
24062 M:      Alex Williamson <[email protected]>
24063 L:      [email protected]
24064 S:      Maintained
24065 T:      git https://github.com/awilliam/linux-vfio.git
24066 F:      Documentation/ABI/testing/debugfs-vfio
24067 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
24068 F:      Documentation/driver-api/vfio.rst
24069 F:      drivers/vfio/
24070 F:      include/linux/vfio.h
24071 F:      include/linux/vfio_pci_core.h
24072 F:      include/uapi/linux/vfio.h
24073
24074 VFIO FSL-MC DRIVER
24075 L:      [email protected]
24076 S:      Orphan
24077 F:      drivers/vfio/fsl-mc/
24078
24079 VFIO HISILICON PCI DRIVER
24080 M:      Longfang Liu <[email protected]>
24081 M:      Shameer Kolothum <[email protected]>
24082 L:      [email protected]
24083 S:      Maintained
24084 F:      drivers/vfio/pci/hisilicon/
24085
24086 VFIO MEDIATED DEVICE DRIVERS
24087 M:      Kirti Wankhede <[email protected]>
24088 L:      [email protected]
24089 S:      Maintained
24090 F:      Documentation/driver-api/vfio-mediated-device.rst
24091 F:      drivers/vfio/mdev/
24092 F:      include/linux/mdev.h
24093 F:      samples/vfio-mdev/
24094
24095 VFIO MLX5 PCI DRIVER
24096 M:      Yishai Hadas <[email protected]>
24097 L:      [email protected]
24098 S:      Maintained
24099 F:      drivers/vfio/pci/mlx5/
24100
24101 VFIO NVIDIA GRACE GPU DRIVER
24102 M:      Ankit Agrawal <[email protected]>
24103 L:      [email protected]
24104 S:      Supported
24105 F:      drivers/vfio/pci/nvgrace-gpu/
24106
24107 VFIO PCI DEVICE SPECIFIC DRIVERS
24108 R:      Jason Gunthorpe <[email protected]>
24109 R:      Yishai Hadas <[email protected]>
24110 R:      Shameer Kolothum <[email protected]>
24111 R:      Kevin Tian <[email protected]>
24112 L:      [email protected]
24113 S:      Maintained
24114 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
24115 F:      drivers/vfio/pci/*/
24116
24117 VFIO PDS PCI DRIVER
24118 M:      Brett Creeley <[email protected]>
24119 L:      [email protected]
24120 S:      Maintained
24121 F:      Documentation/networking/device_drivers/ethernet/amd/pds_vfio_pci.rst
24122 F:      drivers/vfio/pci/pds/
24123
24124 VFIO PLATFORM DRIVER
24125 M:      Eric Auger <[email protected]>
24126 L:      [email protected]
24127 S:      Maintained
24128 F:      drivers/vfio/platform/
24129
24130 VFIO QAT PCI DRIVER
24131 M:      Xin Zeng <[email protected]>
24132 M:      Giovanni Cabiddu <[email protected]>
24133 L:      [email protected]
24134 L:      [email protected]
24135 S:      Supported
24136 F:      drivers/vfio/pci/qat/
24137
24138 VFIO VIRTIO PCI DRIVER
24139 M:      Yishai Hadas <[email protected]>
24140 L:      [email protected]
24141 L:      [email protected]
24142 S:      Maintained
24143 F:      drivers/vfio/pci/virtio
24144
24145 VGA_SWITCHEROO
24146 R:      Lukas Wunner <[email protected]>
24147 S:      Maintained
24148 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
24149 F:      Documentation/gpu/vga-switcheroo.rst
24150 F:      drivers/gpu/vga/vga_switcheroo.c
24151 F:      include/linux/vga_switcheroo.h
24152
24153 VIA RHINE NETWORK DRIVER
24154 M:      Kevin Brace <[email protected]>
24155 S:      Maintained
24156 F:      drivers/net/ethernet/via/via-rhine.c
24157
24158 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
24159 M:      Florian Tobias Schandinat <[email protected]>
24160 L:      [email protected]
24161 S:      Maintained
24162 F:      drivers/video/fbdev/via/
24163 F:      include/linux/via-core.h
24164 F:      include/linux/via_i2c.h
24165
24166 VIA VELOCITY NETWORK DRIVER
24167 M:      Francois Romieu <[email protected]>
24168 L:      [email protected]
24169 S:      Maintained
24170 F:      drivers/net/ethernet/via/via-velocity.*
24171
24172 VICODEC VIRTUAL CODEC DRIVER
24173 M:      Hans Verkuil <[email protected]>
24174 L:      [email protected]
24175 S:      Maintained
24176 W:      https://linuxtv.org
24177 T:      git git://linuxtv.org/media_tree.git
24178 F:      drivers/media/test-drivers/vicodec/*
24179
24180 VIDEO I2C POLLING DRIVER
24181 M:      Matt Ranostay <[email protected]>
24182 L:      [email protected]
24183 S:      Maintained
24184 F:      drivers/media/i2c/video-i2c.c
24185
24186 VIDEO MULTIPLEXER DRIVER
24187 M:      Philipp Zabel <[email protected]>
24188 L:      [email protected]
24189 S:      Maintained
24190 F:      drivers/media/platform/video-mux.c
24191
24192 VIDEOBUF2 FRAMEWORK
24193 M:      Tomasz Figa <[email protected]>
24194 M:      Marek Szyprowski <[email protected]>
24195 L:      [email protected]
24196 S:      Maintained
24197 F:      drivers/media/common/videobuf2/*
24198 F:      include/media/videobuf2-*
24199
24200 VIDTV VIRTUAL DIGITAL TV DRIVER
24201 M:      Daniel W. S. Almeida <[email protected]>
24202 L:      [email protected]
24203 S:      Maintained
24204 W:      https://linuxtv.org
24205 T:      git git://linuxtv.org/media_tree.git
24206 F:      drivers/media/test-drivers/vidtv/*
24207
24208 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
24209 M:      Shuah Khan <[email protected]>
24210 R:      Kieran Bingham <[email protected]>
24211 L:      [email protected]
24212 S:      Maintained
24213 W:      https://linuxtv.org
24214 T:      git git://linuxtv.org/media_tree.git
24215 F:      drivers/media/test-drivers/vimc/*
24216
24217 VIRT LIB
24218 M:      Alex Williamson <[email protected]>
24219 M:      Paolo Bonzini <[email protected]>
24220 L:      [email protected]
24221 S:      Supported
24222 F:      virt/lib/
24223
24224 VIRTIO AND VHOST VSOCK DRIVER
24225 M:      Stefan Hajnoczi <[email protected]>
24226 M:      Stefano Garzarella <[email protected]>
24227 L:      [email protected]
24228 L:      [email protected]
24229 L:      [email protected]
24230 S:      Maintained
24231 F:      drivers/vhost/vsock.c
24232 F:      include/linux/virtio_vsock.h
24233 F:      include/uapi/linux/virtio_vsock.h
24234 F:      net/vmw_vsock/virtio_transport.c
24235 F:      net/vmw_vsock/virtio_transport_common.c
24236
24237 VIRTIO BALLOON
24238 M:      "Michael S. Tsirkin" <[email protected]>
24239 M:      David Hildenbrand <[email protected]>
24240 L:      [email protected]
24241 S:      Maintained
24242 F:      drivers/virtio/virtio_balloon.c
24243 F:      include/linux/balloon_compaction.h
24244 F:      include/uapi/linux/virtio_balloon.h
24245 F:      mm/balloon_compaction.c
24246
24247 VIRTIO BLOCK AND SCSI DRIVERS
24248 M:      "Michael S. Tsirkin" <[email protected]>
24249 M:      Jason Wang <[email protected]>
24250 R:      Paolo Bonzini <[email protected]>
24251 R:      Stefan Hajnoczi <[email protected]>
24252 R:      Eugenio Pérez <[email protected]>
24253 L:      [email protected]
24254 S:      Maintained
24255 F:      drivers/block/virtio_blk.c
24256 F:      drivers/scsi/virtio_scsi.c
24257 F:      include/uapi/linux/virtio_blk.h
24258 F:      include/uapi/linux/virtio_scsi.h
24259
24260 VIRTIO CONSOLE DRIVER
24261 M:      Amit Shah <[email protected]>
24262 L:      [email protected]
24263 S:      Maintained
24264 F:      drivers/char/virtio_console.c
24265 F:      include/uapi/linux/virtio_console.h
24266
24267 VIRTIO CORE AND NET DRIVERS
24268 M:      "Michael S. Tsirkin" <[email protected]>
24269 M:      Jason Wang <[email protected]>
24270 R:      Xuan Zhuo <[email protected]>
24271 R:      Eugenio Pérez <[email protected]>
24272 L:      [email protected]
24273 S:      Maintained
24274 F:      Documentation/ABI/testing/sysfs-bus-vdpa
24275 F:      Documentation/ABI/testing/sysfs-class-vduse
24276 F:      Documentation/devicetree/bindings/virtio/
24277 F:      Documentation/driver-api/virtio/
24278 F:      drivers/block/virtio_blk.c
24279 F:      drivers/crypto/virtio/
24280 F:      drivers/net/virtio_net.c
24281 F:      drivers/vdpa/
24282 F:      drivers/virtio/
24283 F:      include/linux/vdpa.h
24284 F:      include/linux/virtio*.h
24285 F:      include/linux/vringh.h
24286 F:      include/uapi/linux/virtio_*.h
24287 F:      tools/virtio/
24288 F:      tools/testing/selftests/drivers/net/virtio_net/
24289
24290 VIRTIO CRYPTO DRIVER
24291 M:      Gonglei <[email protected]>
24292 L:      [email protected]
24293 L:      [email protected]
24294 S:      Maintained
24295 F:      drivers/crypto/virtio/
24296 F:      include/uapi/linux/virtio_crypto.h
24297
24298 VIRTIO DRIVERS FOR S390
24299 M:      Cornelia Huck <[email protected]>
24300 M:      Halil Pasic <[email protected]>
24301 M:      Eric Farman <[email protected]>
24302 L:      [email protected]
24303 L:      [email protected]
24304 L:      [email protected]
24305 S:      Supported
24306 F:      arch/s390/include/uapi/asm/virtio-ccw.h
24307 F:      drivers/s390/virtio/
24308
24309 VIRTIO FILE SYSTEM
24310 M:      Vivek Goyal <[email protected]>
24311 M:      Stefan Hajnoczi <[email protected]>
24312 M:      Miklos Szeredi <[email protected]>
24313 R:      Eugenio Pérez <[email protected]>
24314 L:      [email protected]
24315 L:      [email protected]
24316 S:      Supported
24317 W:      https://virtio-fs.gitlab.io/
24318 F:      Documentation/filesystems/virtiofs.rst
24319 F:      fs/fuse/virtio_fs.c
24320 F:      include/uapi/linux/virtio_fs.h
24321
24322 VIRTIO GPIO DRIVER
24323 M:      Enrico Weigelt, metux IT consult <[email protected]>
24324 M:      Viresh Kumar <[email protected]>
24325 L:      [email protected]
24326 L:      [email protected]
24327 S:      Maintained
24328 F:      drivers/gpio/gpio-virtio.c
24329 F:      include/uapi/linux/virtio_gpio.h
24330
24331 VIRTIO GPU DRIVER
24332 M:      David Airlie <[email protected]>
24333 M:      Gerd Hoffmann <[email protected]>
24334 R:      Gurchetan Singh <[email protected]>
24335 R:      Chia-I Wu <[email protected]>
24336 L:      [email protected]
24337 L:      [email protected]
24338 S:      Maintained
24339 T:      git https://gitlab.freedesktop.org/drm/misc/kernel.git
24340 F:      drivers/gpu/drm/ci/xfails/virtio*
24341 F:      drivers/gpu/drm/virtio/
24342 F:      include/uapi/linux/virtio_gpu.h
24343
24344 VIRTIO HOST (VHOST)
24345 M:      "Michael S. Tsirkin" <[email protected]>
24346 M:      Jason Wang <[email protected]>
24347 R:      Eugenio Pérez <[email protected]>
24348 L:      [email protected]
24349 L:      [email protected]
24350 L:      [email protected]
24351 S:      Maintained
24352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
24353 F:      drivers/vhost/
24354 F:      include/linux/sched/vhost_task.h
24355 F:      include/linux/vhost_iotlb.h
24356 F:      include/uapi/linux/vhost.h
24357 F:      kernel/vhost_task.c
24358
24359 VIRTIO HOST (VHOST-SCSI)
24360 M:      "Michael S. Tsirkin" <[email protected]>
24361 M:      Jason Wang <[email protected]>
24362 M:      Mike Christie <[email protected]>
24363 R:      Paolo Bonzini <[email protected]>
24364 R:      Stefan Hajnoczi <[email protected]>
24365 L:      [email protected]
24366 S:      Maintained
24367 F:      drivers/vhost/scsi.c
24368
24369 VIRTIO I2C DRIVER
24370 M:      Viresh Kumar <[email protected]>
24371 R:      "Chen, Jian Jun" <[email protected]>
24372 L:      [email protected]
24373 L:      [email protected]
24374 S:      Maintained
24375 F:      drivers/i2c/busses/i2c-virtio.c
24376 F:      include/uapi/linux/virtio_i2c.h
24377
24378 VIRTIO INPUT DRIVER
24379 M:      Gerd Hoffmann <[email protected]>
24380 S:      Maintained
24381 F:      drivers/virtio/virtio_input.c
24382 F:      include/uapi/linux/virtio_input.h
24383
24384 VIRTIO IOMMU DRIVER
24385 M:      Jean-Philippe Brucker <[email protected]>
24386 L:      [email protected]
24387 S:      Maintained
24388 F:      drivers/iommu/virtio-iommu.c
24389 F:      include/uapi/linux/virtio_iommu.h
24390
24391 VIRTIO MEM DRIVER
24392 M:      David Hildenbrand <[email protected]>
24393 L:      [email protected]
24394 S:      Maintained
24395 W:      https://virtio-mem.gitlab.io/
24396 F:      drivers/virtio/virtio_mem.c
24397 F:      include/uapi/linux/virtio_mem.h
24398
24399 VIRTIO PMEM DRIVER
24400 M:      Pankaj Gupta <[email protected]>
24401 L:      [email protected]
24402 S:      Maintained
24403 F:      drivers/nvdimm/nd_virtio.c
24404 F:      drivers/nvdimm/virtio_pmem.c
24405
24406 VIRTIO SOUND DRIVER
24407 M:      Anton Yakovlev <[email protected]>
24408 M:      "Michael S. Tsirkin" <[email protected]>
24409 L:      [email protected]
24410 L:      [email protected] (moderated for non-subscribers)
24411 S:      Maintained
24412 F:      include/uapi/linux/virtio_snd.h
24413 F:      sound/virtio/*
24414
24415 VIRTUAL BOX GUEST DEVICE DRIVER
24416 M:      Hans de Goede <[email protected]>
24417 M:      Arnd Bergmann <[email protected]>
24418 M:      Greg Kroah-Hartman <[email protected]>
24419 S:      Maintained
24420 F:      drivers/virt/vboxguest/
24421 F:      include/linux/vbox_utils.h
24422 F:      include/uapi/linux/vbox*.h
24423
24424 VIRTUAL BOX SHARED FOLDER VFS DRIVER
24425 M:      Hans de Goede <[email protected]>
24426 L:      [email protected]
24427 S:      Maintained
24428 F:      fs/vboxsf/*
24429
24430 VIRTUAL PCM TEST DRIVER
24431 M:      Ivan Orlov <[email protected]>
24432 L:      [email protected]
24433 S:      Maintained
24434 F:      Documentation/sound/cards/pcmtest.rst
24435 F:      sound/drivers/pcmtest.c
24436 F:      tools/testing/selftests/alsa/test-pcmtest-driver.c
24437
24438 VIRTUAL SERIO DEVICE DRIVER
24439 M:      Stephen Chandler Paul <[email protected]>
24440 S:      Maintained
24441 F:      drivers/input/serio/userio.c
24442 F:      include/uapi/linux/userio.h
24443
24444 VISHAY VEML6075 UVA AND UVB LIGHT SENSOR DRIVER
24445 M:      Javier Carrasco <[email protected]>
24446 S:      Maintained
24447 F:      Documentation/devicetree/bindings/iio/light/vishay,veml6075.yaml
24448 F:      drivers/iio/light/veml6075.c
24449
24450 VISL VIRTUAL STATELESS DECODER DRIVER
24451 M:      Daniel Almeida <[email protected]>
24452 L:      [email protected]
24453 S:      Supported
24454 F:      drivers/media/test-drivers/visl
24455
24456 VIVID VIRTUAL VIDEO DRIVER
24457 M:      Hans Verkuil <[email protected]>
24458 L:      [email protected]
24459 S:      Maintained
24460 W:      https://linuxtv.org
24461 T:      git git://linuxtv.org/media_tree.git
24462 F:      drivers/media/test-drivers/vivid/*
24463
24464 VM SOCKETS (AF_VSOCK)
24465 M:      Stefano Garzarella <[email protected]>
24466 L:      [email protected]
24467 L:      [email protected]
24468 S:      Maintained
24469 F:      drivers/net/vsockmon.c
24470 F:      include/net/af_vsock.h
24471 F:      include/uapi/linux/vm_sockets.h
24472 F:      include/uapi/linux/vm_sockets_diag.h
24473 F:      include/uapi/linux/vsockmon.h
24474 F:      net/vmw_vsock/
24475 F:      tools/testing/vsock/
24476
24477 VMALLOC
24478 M:      Andrew Morton <[email protected]>
24479 R:      Uladzislau Rezki <[email protected]>
24480 R:      Christoph Hellwig <[email protected]>
24481 L:      [email protected]
24482 S:      Maintained
24483 W:      http://www.linux-mm.org
24484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
24485 F:      include/linux/vmalloc.h
24486 F:      mm/vmalloc.c
24487
24488 VME SUBSYSTEM
24489 L:      [email protected]
24490 S:      Orphan
24491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
24492 F:      Documentation/driver-api/vme.rst
24493 F:      drivers/staging/vme_user/
24494
24495 VMWARE BALLOON DRIVER
24496 M:      Jerrin Shaji George <[email protected]>
24497 R:      Broadcom internal kernel review list <[email protected]>
24498 L:      [email protected]
24499 S:      Supported
24500 F:      drivers/misc/vmw_balloon.c
24501
24502 VMWARE HYPERVISOR INTERFACE
24503 M:      Ajay Kaher <[email protected]>
24504 M:      Alexey Makhalov <[email protected]>
24505 R:      Broadcom internal kernel review list <[email protected]>
24506 L:      [email protected]
24507 L:      [email protected]
24508 S:      Supported
24509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
24510 F:      arch/x86/include/asm/vmware.h
24511 F:      arch/x86/kernel/cpu/vmware.c
24512
24513 VMWARE PVRDMA DRIVER
24514 M:      Bryan Tan <[email protected]>
24515 M:      Vishnu Dasa <[email protected]>
24516 R:      Broadcom internal kernel review list <[email protected]>
24517 L:      [email protected]
24518 S:      Supported
24519 F:      drivers/infiniband/hw/vmw_pvrdma/
24520
24521 VMWARE PVSCSI DRIVER
24522 M:      Vishal Bhakta <[email protected]>
24523 R:      Broadcom internal kernel review list <[email protected]>
24524 L:      [email protected]
24525 S:      Supported
24526 F:      drivers/scsi/vmw_pvscsi.c
24527 F:      drivers/scsi/vmw_pvscsi.h
24528
24529 VMWARE VIRTUAL PTP CLOCK DRIVER
24530 M:      Nick Shi <[email protected]>
24531 R:      Ajay Kaher <[email protected]>
24532 R:      Alexey Makhalov <[email protected]>
24533 R:      Broadcom internal kernel review list <[email protected]>
24534 L:      [email protected]
24535 S:      Supported
24536 F:      drivers/ptp/ptp_vmw.c
24537
24538 VMWARE VMCI DRIVER
24539 M:      Bryan Tan <[email protected]>
24540 M:      Vishnu Dasa <[email protected]>
24541 R:      Broadcom internal kernel review list <[email protected]>
24542 L:      [email protected]
24543 S:      Supported
24544 F:      drivers/misc/vmw_vmci/
24545 F:      include/linux/vmw_vmci*
24546
24547 VMWARE VMMOUSE SUBDRIVER
24548 M:      Zack Rusin <[email protected]>
24549 R:      Broadcom internal kernel review list <[email protected]>
24550 L:      [email protected]
24551 S:      Supported
24552 F:      drivers/input/mouse/vmmouse.c
24553 F:      drivers/input/mouse/vmmouse.h
24554
24555 VMWARE VMXNET3 ETHERNET DRIVER
24556 M:      Ronak Doshi <[email protected]>
24557 R:      Broadcom internal kernel review list <[email protected]>
24558 L:      [email protected]
24559 S:      Supported
24560 F:      drivers/net/vmxnet3/
24561
24562 VMWARE VSOCK VMCI TRANSPORT DRIVER
24563 M:      Bryan Tan <[email protected]>
24564 M:      Vishnu Dasa <[email protected]>
24565 R:      Broadcom internal kernel review list <[email protected]>
24566 L:      [email protected]
24567 S:      Supported
24568 F:      net/vmw_vsock/vmci_transport*
24569
24570 VOCORE VOCORE2 BOARD
24571 M:      Harvey Hunt <[email protected]>
24572 L:      [email protected]
24573 S:      Maintained
24574 F:      arch/mips/boot/dts/ralink/vocore2.dts
24575
24576 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
24577 M:      Liam Girdwood <[email protected]>
24578 M:      Mark Brown <[email protected]>
24579 L:      [email protected]
24580 S:      Supported
24581 W:      http://www.slimlogic.co.uk/?p=48
24582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
24583 F:      Documentation/devicetree/bindings/regulator/
24584 F:      Documentation/power/regulator/
24585 F:      drivers/regulator/
24586 F:      include/dt-bindings/regulator/
24587 F:      include/linux/regulator/
24588 K:      regulator_get_optional
24589
24590 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
24591 R:      Matti Vaittinen <[email protected]>
24592 F:      drivers/regulator/irq_helpers.c
24593
24594 VRF
24595 M:      David Ahern <[email protected]>
24596 L:      [email protected]
24597 S:      Maintained
24598 F:      Documentation/networking/vrf.rst
24599 F:      drivers/net/vrf.c
24600
24601 VSPRINTF
24602 M:      Petr Mladek <[email protected]>
24603 M:      Steven Rostedt <[email protected]>
24604 R:      Andy Shevchenko <[email protected]>
24605 R:      Rasmus Villemoes <[email protected]>
24606 R:      Sergey Senozhatsky <[email protected]>
24607 S:      Maintained
24608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
24609 F:      Documentation/core-api/printk-formats.rst
24610 F:      lib/test_printf.c
24611 F:      lib/test_scanf.c
24612 F:      lib/vsprintf.c
24613
24614 VT1211 HARDWARE MONITOR DRIVER
24615 M:      Juerg Haefliger <[email protected]>
24616 L:      [email protected]
24617 S:      Maintained
24618 F:      Documentation/hwmon/vt1211.rst
24619 F:      drivers/hwmon/vt1211.c
24620
24621 VT8231 HARDWARE MONITOR DRIVER
24622 M:      Roger Lucas <[email protected]>
24623 L:      [email protected]
24624 S:      Maintained
24625 F:      drivers/hwmon/vt8231.c
24626
24627 VUB300 USB to SDIO/SD/MMC bridge chip
24628 L:      [email protected]
24629 S:      Orphan
24630 F:      drivers/mmc/host/vub300.c
24631
24632 W1 DALLAS'S 1-WIRE BUS
24633 M:      Krzysztof Kozlowski <[email protected]>
24634 S:      Maintained
24635 F:      Documentation/devicetree/bindings/w1/
24636 F:      Documentation/w1/
24637 F:      drivers/w1/
24638 F:      include/linux/w1.h
24639
24640 W83791D HARDWARE MONITORING DRIVER
24641 M:      Marc Hulsman <[email protected]>
24642 L:      [email protected]
24643 S:      Maintained
24644 F:      Documentation/hwmon/w83791d.rst
24645 F:      drivers/hwmon/w83791d.c
24646
24647 W83793 HARDWARE MONITORING DRIVER
24648 M:      Rudolf Marek <[email protected]>
24649 L:      [email protected]
24650 S:      Maintained
24651 F:      Documentation/hwmon/w83793.rst
24652 F:      drivers/hwmon/w83793.c
24653
24654 W83795 HARDWARE MONITORING DRIVER
24655 M:      Jean Delvare <[email protected]>
24656 L:      [email protected]
24657 S:      Maintained
24658 F:      drivers/hwmon/w83795.c
24659
24660 W83L51xD SD/MMC CARD INTERFACE DRIVER
24661 M:      Pierre Ossman <[email protected]>
24662 S:      Maintained
24663 F:      drivers/mmc/host/wbsd.*
24664
24665 WACOM PROTOCOL 4 SERIAL TABLETS
24666 M:      Julian Squires <[email protected]>
24667 M:      Hans de Goede <[email protected]>
24668 L:      [email protected]
24669 S:      Maintained
24670 F:      drivers/input/tablet/wacom_serial4.c
24671
24672 WANGXUN ETHERNET DRIVER
24673 M:      Jiawen Wu <[email protected]>
24674 M:      Mengyuan Lou <[email protected]>
24675 L:      [email protected]
24676 S:      Maintained
24677 W:      https://www.net-swift.com
24678 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
24679 F:      drivers/net/ethernet/wangxun/
24680 F:      drivers/net/pcs/pcs-xpcs-wx.c
24681
24682 WATCHDOG DEVICE DRIVERS
24683 M:      Wim Van Sebroeck <[email protected]>
24684 M:      Guenter Roeck <[email protected]>
24685 L:      [email protected]
24686 S:      Maintained
24687 W:      http://www.linux-watchdog.org/
24688 T:      git git://www.linux-watchdog.org/linux-watchdog.git
24689 F:      Documentation/devicetree/bindings/watchdog/
24690 F:      Documentation/watchdog/
24691 F:      drivers/watchdog/
24692 F:      include/linux/watchdog.h
24693 F:      include/trace/events/watchdog.h
24694 F:      include/uapi/linux/watchdog.h
24695
24696 WAVE5 VPU CODEC DRIVER
24697 M:      Nas Chung <[email protected]>
24698 M:      Jackson Lee <[email protected]>
24699 L:      [email protected]
24700 S:      Maintained
24701 F:      Documentation/devicetree/bindings/media/cnm,wave521c.yaml
24702 F:      drivers/media/platform/chips-media/wave5/
24703
24704 WHISKEYCOVE PMIC GPIO DRIVER
24705 M:      Kuppuswamy Sathyanarayanan <[email protected]>
24706 L:      [email protected]
24707 S:      Maintained
24708 F:      drivers/gpio/gpio-wcove.c
24709
24710 WHWAVE RTC DRIVER
24711 M:      Dianlong Li <[email protected]>
24712 L:      [email protected]
24713 S:      Maintained
24714 F:      drivers/rtc/rtc-sd3078.c
24715
24716 WIIMOTE HID DRIVER
24717 M:      David Rheinsberg <[email protected]>
24718 L:      [email protected]
24719 S:      Maintained
24720 F:      drivers/hid/hid-wiimote*
24721
24722 WILOCITY WIL6210 WIRELESS DRIVER
24723 L:      [email protected]
24724 S:      Orphan
24725 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
24726 F:      drivers/net/wireless/ath/wil6210/
24727
24728 WINBOND CIR DRIVER
24729 M:      David Härdeman <[email protected]>
24730 S:      Maintained
24731 F:      drivers/media/rc/winbond-cir.c
24732
24733 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
24734 L:      [email protected]
24735 S:      Orphan
24736 F:      drivers/watchdog/ebc-c384_wdt.c
24737
24738 WINSYSTEMS WS16C48 GPIO DRIVER
24739 M:      William Breathitt Gray <[email protected]>
24740 L:      [email protected]
24741 S:      Maintained
24742 F:      drivers/gpio/gpio-ws16c48.c
24743
24744 WIREGUARD SECURE NETWORK TUNNEL
24745 M:      Jason A. Donenfeld <[email protected]>
24746 L:      [email protected]
24747 L:      [email protected]
24748 S:      Maintained
24749 F:      drivers/net/wireguard/
24750 F:      tools/testing/selftests/wireguard/
24751
24752 WISTRON LAPTOP BUTTON DRIVER
24753 M:      Miloslav Trmac <[email protected]>
24754 S:      Maintained
24755 F:      drivers/input/misc/wistron_btns.c
24756
24757 WMI BINARY MOF DRIVER
24758 M:      Armin Wolf <[email protected]>
24759 R:      Thomas Weißschuh <[email protected]>
24760 L:      [email protected]
24761 S:      Maintained
24762 F:      Documentation/ABI/stable/sysfs-platform-wmi-bmof
24763 F:      Documentation/wmi/devices/wmi-bmof.rst
24764 F:      drivers/platform/x86/wmi-bmof.c
24765
24766 WOLFSON MICROELECTRONICS DRIVERS
24767 L:      [email protected]
24768 S:      Supported
24769 W:      https://github.com/CirrusLogic/linux-drivers/wiki
24770 T:      git https://github.com/CirrusLogic/linux-drivers.git
24771 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
24772 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
24773 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
24774 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
24775 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
24776 F:      Documentation/devicetree/bindings/sound/wm*
24777 F:      Documentation/hwmon/wm83??.rst
24778 F:      arch/arm/mach-s3c/mach-crag6410*
24779 F:      drivers/clk/clk-wm83*.c
24780 F:      drivers/gpio/gpio-*wm*.c
24781 F:      drivers/gpio/gpio-arizona.c
24782 F:      drivers/hwmon/wm83??-hwmon.c
24783 F:      drivers/input/misc/wm831x-on.c
24784 F:      drivers/input/touchscreen/wm831x-ts.c
24785 F:      drivers/input/touchscreen/wm97*.c
24786 F:      drivers/leds/leds-wm83*.c
24787 F:      drivers/mfd/arizona*
24788 F:      drivers/mfd/cs47l24*
24789 F:      drivers/mfd/wm*.c
24790 F:      drivers/power/supply/wm83*.c
24791 F:      drivers/regulator/arizona*
24792 F:      drivers/regulator/wm8*.c
24793 F:      drivers/rtc/rtc-wm83*.c
24794 F:      drivers/video/backlight/wm83*_bl.c
24795 F:      drivers/watchdog/wm83*_wdt.c
24796 F:      include/linux/mfd/arizona/
24797 F:      include/linux/mfd/wm831x/
24798 F:      include/linux/mfd/wm8350/
24799 F:      include/linux/mfd/wm8400*
24800 F:      include/linux/regulator/arizona*
24801 F:      include/linux/wm97xx.h
24802 F:      include/sound/wm????.h
24803 F:      sound/soc/codecs/arizona*
24804 F:      sound/soc/codecs/cs47l24*
24805 F:      sound/soc/codecs/wm*
24806
24807 WORKQUEUE
24808 M:      Tejun Heo <[email protected]>
24809 R:      Lai Jiangshan <[email protected]>
24810 S:      Maintained
24811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
24812 F:      Documentation/core-api/workqueue.rst
24813 F:      include/linux/workqueue.h
24814 F:      kernel/workqueue.c
24815 F:      kernel/workqueue_internal.h
24816
24817 WWAN DRIVERS
24818 M:      Loic Poulain <[email protected]>
24819 M:      Sergey Ryazanov <[email protected]>
24820 R:      Johannes Berg <[email protected]>
24821 L:      [email protected]
24822 S:      Maintained
24823 F:      drivers/net/wwan/
24824 F:      include/linux/wwan.h
24825 F:      include/uapi/linux/wwan.h
24826
24827 X-POWERS AXP288 PMIC DRIVERS
24828 M:      Hans de Goede <[email protected]>
24829 S:      Maintained
24830 F:      drivers/acpi/pmic/intel_pmic_xpower.c
24831 N:      axp288
24832
24833 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
24834 M:      Chen-Yu Tsai <[email protected]>
24835 L:      [email protected]
24836 S:      Maintained
24837 N:      axp[128]
24838
24839 X.25 STACK
24840 M:      Martin Schiller <[email protected]>
24841 L:      [email protected]
24842 S:      Maintained
24843 F:      Documentation/networking/lapb-module.rst
24844 F:      Documentation/networking/x25*
24845 F:      drivers/net/wan/hdlc_x25.c
24846 F:      drivers/net/wan/lapbether.c
24847 F:      include/*/lapb.h
24848 F:      include/net/x25*
24849 F:      include/uapi/linux/x25.h
24850 F:      net/lapb/
24851 F:      net/x25/
24852
24853 X86 ARCHITECTURE (32-BIT AND 64-BIT)
24854 M:      Thomas Gleixner <[email protected]>
24855 M:      Ingo Molnar <[email protected]>
24856 M:      Borislav Petkov <[email protected]>
24857 M:      Dave Hansen <[email protected]>
24858 M:      [email protected]
24859 R:      "H. Peter Anvin" <[email protected]>
24860 L:      [email protected]
24861 S:      Maintained
24862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
24863 F:      Documentation/arch/x86/
24864 F:      Documentation/devicetree/bindings/x86/
24865 F:      arch/x86/
24866
24867 X86 ENTRY CODE
24868 M:      Andy Lutomirski <[email protected]>
24869 L:      [email protected]
24870 S:      Maintained
24871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
24872 F:      arch/x86/entry/
24873
24874 X86 HARDWARE VULNERABILITIES
24875 M:      Thomas Gleixner <[email protected]>
24876 M:      Borislav Petkov <[email protected]>
24877 M:      Peter Zijlstra <[email protected]>
24878 M:      Josh Poimboeuf <[email protected]>
24879 R:      Pawan Gupta <[email protected]>
24880 S:      Maintained
24881 F:      Documentation/admin-guide/hw-vuln/
24882 F:      arch/x86/include/asm/nospec-branch.h
24883 F:      arch/x86/kernel/cpu/bugs.c
24884
24885 X86 MCE INFRASTRUCTURE
24886 M:      Tony Luck <[email protected]>
24887 M:      Borislav Petkov <[email protected]>
24888 L:      [email protected]
24889 S:      Maintained
24890 F:      Documentation/ABI/testing/sysfs-mce
24891 F:      Documentation/arch/x86/x86_64/machinecheck.rst
24892 F:      arch/x86/kernel/cpu/mce/*
24893
24894 X86 MICROCODE UPDATE SUPPORT
24895 M:      Borislav Petkov <[email protected]>
24896 S:      Maintained
24897 F:      arch/x86/kernel/cpu/microcode/*
24898
24899 X86 MM
24900 M:      Dave Hansen <[email protected]>
24901 M:      Andy Lutomirski <[email protected]>
24902 M:      Peter Zijlstra <[email protected]>
24903 L:      [email protected]
24904 S:      Maintained
24905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
24906 F:      arch/x86/mm/
24907
24908 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
24909 M:      Hans de Goede <[email protected]>
24910 L:      [email protected]
24911 S:      Maintained
24912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
24913 F:      drivers/platform/x86/x86-android-tablets/
24914
24915 X86 PLATFORM DRIVERS
24916 M:      Hans de Goede <[email protected]>
24917 M:      Ilpo Järvinen <[email protected]>
24918 L:      [email protected]
24919 S:      Maintained
24920 Q:      https://patchwork.kernel.org/project/platform-driver-x86/list/
24921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
24922 F:      drivers/platform/olpc/
24923 F:      drivers/platform/x86/
24924 F:      include/linux/platform_data/x86/
24925
24926 X86 PLATFORM UV HPE SUPERDOME FLEX
24927 M:      Steve Wahl <[email protected]>
24928 R:      Justin Ernst <[email protected]>
24929 R:      Kyle Meyer <[email protected]>
24930 R:      Dimitri Sivanich <[email protected]>
24931 R:      Russ Anderson <[email protected]>
24932 S:      Supported
24933 F:      arch/x86/include/asm/uv/
24934 F:      arch/x86/kernel/apic/x2apic_uv_x.c
24935 F:      arch/x86/platform/uv/
24936
24937 X86 STACK UNWINDING
24938 M:      Josh Poimboeuf <[email protected]>
24939 M:      Peter Zijlstra <[email protected]>
24940 S:      Supported
24941 F:      arch/x86/include/asm/unwind*.h
24942 F:      arch/x86/kernel/dumpstack.c
24943 F:      arch/x86/kernel/stacktrace.c
24944 F:      arch/x86/kernel/unwind_*.c
24945
24946 X86 TRUST DOMAIN EXTENSIONS (TDX)
24947 M:      Kirill A. Shutemov <[email protected]>
24948 R:      Dave Hansen <[email protected]>
24949 L:      [email protected]
24950 L:      [email protected]
24951 S:      Supported
24952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/tdx
24953 F:      arch/x86/boot/compressed/tdx*
24954 F:      arch/x86/coco/tdx/
24955 F:      arch/x86/include/asm/shared/tdx.h
24956 F:      arch/x86/include/asm/tdx.h
24957 F:      arch/x86/virt/vmx/tdx/
24958 F:      drivers/virt/coco/tdx-guest
24959
24960 X86 VDSO
24961 M:      Andy Lutomirski <[email protected]>
24962 L:      [email protected]
24963 S:      Maintained
24964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
24965 F:      arch/x86/entry/vdso/
24966
24967 XARRAY
24968 M:      Matthew Wilcox <[email protected]>
24969 L:      [email protected]
24970 S:      Supported
24971 F:      Documentation/core-api/xarray.rst
24972 F:      include/linux/idr.h
24973 F:      include/linux/xarray.h
24974 F:      lib/idr.c
24975 F:      lib/xarray.c
24976 F:      tools/testing/radix-tree
24977
24978 XBOX DVD IR REMOTE
24979 M:      Benjamin Valentin <[email protected]>
24980 S:      Maintained
24981 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
24982 F:      drivers/media/rc/xbox_remote.c
24983
24984 XC2028/3028 TUNER DRIVER
24985 M:      Mauro Carvalho Chehab <[email protected]>
24986 L:      [email protected]
24987 S:      Maintained
24988 W:      https://linuxtv.org
24989 T:      git git://linuxtv.org/media_tree.git
24990 F:      drivers/media/tuners/xc2028.*
24991
24992 XDP (eXpress Data Path)
24993 M:      Alexei Starovoitov <[email protected]>
24994 M:      Daniel Borkmann <[email protected]>
24995 M:      David S. Miller <[email protected]>
24996 M:      Jakub Kicinski <[email protected]>
24997 M:      Jesper Dangaard Brouer <[email protected]>
24998 M:      John Fastabend <[email protected]>
24999 L:      [email protected]
25000 L:      [email protected]
25001 S:      Supported
25002 F:      drivers/net/ethernet/*/*/*/*/*xdp*
25003 F:      drivers/net/ethernet/*/*/*xdp*
25004 F:      include/net/xdp.h
25005 F:      include/net/xdp_priv.h
25006 F:      include/trace/events/xdp.h
25007 F:      kernel/bpf/cpumap.c
25008 F:      kernel/bpf/devmap.c
25009 F:      net/core/xdp.c
25010 F:      samples/bpf/xdp*
25011 F:      tools/testing/selftests/bpf/*/*xdp*
25012 F:      tools/testing/selftests/bpf/*xdp*
25013 K:      (?:\b|_)xdp(?:\b|_)
25014
25015 XDP SOCKETS (AF_XDP)
25016 M:      Björn Töpel <[email protected]>
25017 M:      Magnus Karlsson <[email protected]>
25018 M:      Maciej Fijalkowski <[email protected]>
25019 R:      Jonathan Lemon <[email protected]>
25020 L:      [email protected]
25021 L:      [email protected]
25022 S:      Maintained
25023 F:      Documentation/networking/af_xdp.rst
25024 F:      include/net/netns/xdp.h
25025 F:      include/net/xdp_sock*
25026 F:      include/net/xsk_buff_pool.h
25027 F:      include/uapi/linux/if_xdp.h
25028 F:      include/uapi/linux/xdp_diag.h
25029 F:      net/xdp/
25030 F:      tools/testing/selftests/bpf/*xsk*
25031
25032 XEN BLOCK SUBSYSTEM
25033 M:      Roger Pau Monné <[email protected]>
25034 L:      [email protected] (moderated for non-subscribers)
25035 S:      Supported
25036 F:      drivers/block/xen*
25037 F:      drivers/block/xen-blkback/*
25038
25039 XEN HYPERVISOR ARM
25040 M:      Stefano Stabellini <[email protected]>
25041 L:      [email protected] (moderated for non-subscribers)
25042 S:      Maintained
25043 F:      arch/arm/include/asm/xen/
25044 F:      arch/arm/xen/
25045
25046 XEN HYPERVISOR ARM64
25047 M:      Stefano Stabellini <[email protected]>
25048 L:      [email protected] (moderated for non-subscribers)
25049 S:      Maintained
25050 F:      arch/arm64/include/asm/xen/
25051 F:      arch/arm64/xen/
25052
25053 XEN HYPERVISOR INTERFACE
25054 M:      Juergen Gross <[email protected]>
25055 M:      Stefano Stabellini <[email protected]>
25056 R:      Oleksandr Tyshchenko <[email protected]>
25057 L:      [email protected] (moderated for non-subscribers)
25058 S:      Supported
25059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
25060 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
25061 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
25062 F:      drivers/*/xen-*front.c
25063 F:      drivers/xen/
25064 F:      include/uapi/xen/
25065 F:      include/xen/
25066 F:      kernel/configs/xen.config
25067
25068 XEN HYPERVISOR X86
25069 M:      Juergen Gross <[email protected]>
25070 R:      Boris Ostrovsky <[email protected]>
25071 L:      [email protected] (moderated for non-subscribers)
25072 S:      Supported
25073 F:      arch/x86/configs/xen.config
25074 F:      arch/x86/include/asm/pvclock-abi.h
25075 F:      arch/x86/include/asm/xen/
25076 F:      arch/x86/platform/pvh/
25077 F:      arch/x86/xen/
25078
25079 XEN NETWORK BACKEND DRIVER
25080 M:      Wei Liu <[email protected]>
25081 M:      Paul Durrant <[email protected]>
25082 L:      [email protected] (moderated for non-subscribers)
25083 L:      [email protected]
25084 S:      Supported
25085 F:      drivers/net/xen-netback/*
25086
25087 XEN PCI SUBSYSTEM
25088 M:      Juergen Gross <[email protected]>
25089 L:      [email protected] (moderated for non-subscribers)
25090 S:      Supported
25091 F:      arch/x86/pci/*xen*
25092 F:      drivers/pci/*xen*
25093
25094 XEN PVSCSI DRIVERS
25095 M:      Juergen Gross <[email protected]>
25096 L:      [email protected] (moderated for non-subscribers)
25097 L:      [email protected]
25098 S:      Supported
25099 F:      drivers/scsi/xen-scsifront.c
25100 F:      drivers/xen/xen-scsiback.c
25101 F:      include/xen/interface/io/vscsiif.h
25102
25103 XEN PVUSB DRIVER
25104 M:      Juergen Gross <[email protected]>
25105 L:      [email protected] (moderated for non-subscribers)
25106 L:      [email protected]
25107 S:      Supported
25108 F:      drivers/usb/host/xen*
25109 F:      include/xen/interface/io/usbif.h
25110
25111 XEN SOUND FRONTEND DRIVER
25112 M:      Oleksandr Andrushchenko <[email protected]>
25113 L:      [email protected] (moderated for non-subscribers)
25114 L:      [email protected] (moderated for non-subscribers)
25115 S:      Supported
25116 F:      sound/xen/*
25117
25118 XEN SWIOTLB SUBSYSTEM
25119 M:      Juergen Gross <[email protected]>
25120 M:      Stefano Stabellini <[email protected]>
25121 L:      [email protected] (moderated for non-subscribers)
25122 L:      [email protected]
25123 S:      Supported
25124 F:      arch/*/include/asm/xen/swiotlb-xen.h
25125 F:      drivers/xen/swiotlb-xen.c
25126 F:      include/xen/arm/swiotlb-xen.h
25127 F:      include/xen/swiotlb-xen.h
25128
25129 XFS FILESYSTEM
25130 M:      Chandan Babu R <[email protected]>
25131 R:      Darrick J. Wong <[email protected]>
25132 L:      [email protected]
25133 S:      Supported
25134 W:      http://xfs.org/
25135 C:      irc://irc.oftc.net/xfs
25136 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
25137 P:      Documentation/filesystems/xfs/xfs-maintainer-entry-profile.rst
25138 F:      Documentation/ABI/testing/sysfs-fs-xfs
25139 F:      Documentation/admin-guide/xfs.rst
25140 F:      Documentation/filesystems/xfs/*
25141 F:      fs/xfs/
25142 F:      include/uapi/linux/dqblk_xfs.h
25143 F:      include/uapi/linux/fsmap.h
25144
25145 XILINX AMS DRIVER
25146 M:      Anand Ashok Dumbre <[email protected]>
25147 L:      [email protected]
25148 S:      Maintained
25149 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
25150 F:      drivers/iio/adc/xilinx-ams.c
25151
25152 XILINX AXI ETHERNET DRIVER
25153 M:      Radhey Shyam Pandey <[email protected]>
25154 S:      Maintained
25155 F:      Documentation/devicetree/bindings/net/xlnx,axi-ethernet.yaml
25156 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
25157
25158 XILINX CAN DRIVER
25159 M:      Appana Durga Kedareswara rao <[email protected]>
25160 L:      [email protected]
25161 S:      Maintained
25162 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
25163 F:      drivers/net/can/xilinx_can.c
25164
25165 XILINX EVENT MANAGEMENT DRIVER
25166 M:      Michal Simek <[email protected]>
25167 S:      Maintained
25168 F:      drivers/soc/xilinx/xlnx_event_manager.c
25169 F:      include/linux/firmware/xlnx-event-manager.h
25170
25171 XILINX GPIO DRIVER
25172 M:      Shubhrajyoti Datta <[email protected]>
25173 R:      Srinivas Neeli <[email protected]>
25174 R:      Michal Simek <[email protected]>
25175 S:      Maintained
25176 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
25177 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
25178 F:      drivers/gpio/gpio-xilinx.c
25179 F:      drivers/gpio/gpio-zynq.c
25180
25181 XILINX LL TEMAC ETHERNET DRIVER
25182 L:      [email protected]
25183 S:      Orphan
25184 F:      drivers/net/ethernet/xilinx/ll_temac*
25185
25186 XILINX PWM DRIVER
25187 M:      Sean Anderson <[email protected]>
25188 S:      Maintained
25189 F:      drivers/pwm/pwm-xilinx.c
25190 F:      include/clocksource/timer-xilinx.h
25191
25192 XILINX SD-FEC IP CORES
25193 M:      Derek Kiernan <[email protected]>
25194 M:      Dragan Cvetic <[email protected]>
25195 S:      Maintained
25196 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.yaml
25197 F:      Documentation/misc-devices/xilinx_sdfec.rst
25198 F:      drivers/misc/Kconfig
25199 F:      drivers/misc/Makefile
25200 F:      drivers/misc/xilinx_sdfec.c
25201 F:      include/uapi/misc/xilinx_sdfec.h
25202
25203 XILINX UARTLITE SERIAL DRIVER
25204 M:      Peter Korsgaard <[email protected]>
25205 L:      [email protected]
25206 S:      Maintained
25207 F:      drivers/tty/serial/uartlite.c
25208
25209 XILINX VIDEO IP CORES
25210 M:      Laurent Pinchart <[email protected]>
25211 L:      [email protected]
25212 S:      Supported
25213 T:      git git://linuxtv.org/media_tree.git
25214 F:      Documentation/devicetree/bindings/media/xilinx/
25215 F:      drivers/media/platform/xilinx/
25216 F:      include/uapi/linux/xilinx-v4l2-controls.h
25217
25218 XILINX VERSAL EDAC DRIVER
25219 M:      Shubhrajyoti Datta <[email protected]>
25220 M:      Sai Krishna Potthuri <[email protected]>
25221 S:      Maintained
25222 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,versal-ddrmc-edac.yaml
25223 F:      drivers/edac/versal_edac.c
25224
25225 XILINX WATCHDOG DRIVER
25226 M:      Srinivas Neeli <[email protected]>
25227 R:      Shubhrajyoti Datta <[email protected]>
25228 R:      Michal Simek <[email protected]>
25229 S:      Maintained
25230 F:      Documentation/devicetree/bindings/watchdog/xlnx,versal-wwdt.yaml
25231 F:      Documentation/devicetree/bindings/watchdog/xlnx,xps-timebase-wdt.yaml
25232 F:      drivers/watchdog/of_xilinx_wdt.c
25233 F:      drivers/watchdog/xilinx_wwdt.c
25234
25235 XILINX XDMA DRIVER
25236 M:      Lizhi Hou <[email protected]>
25237 M:      Brian Xu <[email protected]>
25238 M:      Raj Kumar Rampelli <[email protected]>
25239 L:      [email protected]
25240 S:      Supported
25241 F:      drivers/dma/xilinx/xdma-regs.h
25242 F:      drivers/dma/xilinx/xdma.c
25243 F:      include/linux/dma/amd_xdma.h
25244 F:      include/linux/platform_data/amd_xdma.h
25245
25246 XILINX ZYNQMP DPDMA DRIVER
25247 M:      Laurent Pinchart <[email protected]>
25248 L:      [email protected]
25249 S:      Supported
25250 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
25251 F:      drivers/dma/xilinx/xilinx_dpdma.c
25252 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
25253
25254 XILINX ZYNQMP OCM EDAC DRIVER
25255 M:      Shubhrajyoti Datta <[email protected]>
25256 M:      Sai Krishna Potthuri <[email protected]>
25257 S:      Maintained
25258 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
25259 F:      drivers/edac/zynqmp_edac.c
25260
25261 XILINX ZYNQMP PSGTR PHY DRIVER
25262 M:      Laurent Pinchart <[email protected]>
25263 L:      [email protected]
25264 S:      Supported
25265 T:      git https://github.com/Xilinx/linux-xlnx.git
25266 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
25267 F:      drivers/phy/xilinx/phy-zynqmp.c
25268
25269 XILINX ZYNQMP SHA3 DRIVER
25270 M:      Harsha <[email protected]>
25271 S:      Maintained
25272 F:      drivers/crypto/xilinx/zynqmp-sha.c
25273
25274 XILINX ZYNQMP NVMEM DRIVER
25275 M:      Praveen Teja Kundanala <[email protected]>
25276 M:      Kalyani Akula <[email protected]>
25277 R:      Michal Simek <[email protected]>
25278 S:      Maintained
25279 F:      Documentation/devicetree/bindings/nvmem/xlnx,zynqmp-nvmem.yaml
25280 F:      drivers/nvmem/zynqmp_nvmem.c
25281
25282 XILLYBUS DRIVER
25283 M:      Eli Billauer <[email protected]>
25284 L:      [email protected]
25285 S:      Supported
25286 F:      drivers/char/xillybus/
25287
25288 XLP9XX I2C DRIVER
25289 M:      George Cherian <[email protected]>
25290 L:      [email protected]
25291 S:      Supported
25292 W:      http://www.marvell.com
25293 F:      drivers/i2c/busses/i2c-xlp9xx.c
25294
25295 XRA1403 GPIO EXPANDER
25296 M:      Nandor Han <[email protected]>
25297 L:      [email protected]
25298 S:      Maintained
25299 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
25300 F:      drivers/gpio/gpio-xra1403.c
25301
25302 XTENSA XTFPGA PLATFORM SUPPORT
25303 M:      Max Filippov <[email protected]>
25304 S:      Maintained
25305 F:      drivers/spi/spi-xtensa-xtfpga.c
25306 F:      sound/soc/xtensa/xtfpga-i2s.c
25307
25308 YAM DRIVER FOR AX.25
25309 M:      Jean-Paul Roubelat <[email protected]>
25310 L:      [email protected]
25311 S:      Maintained
25312 F:      drivers/net/hamradio/yam*
25313 F:      include/linux/yam.h
25314
25315 YAMA SECURITY MODULE
25316 M:      Kees Cook <[email protected]>
25317 S:      Supported
25318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
25319 F:      Documentation/admin-guide/LSM/Yama.rst
25320 F:      security/yama/
25321
25322 YAML NETLINK (YNL)
25323 M:      Donald Hunter <[email protected]>
25324 M:      Jakub Kicinski <[email protected]>
25325 F:      Documentation/netlink/
25326 F:      Documentation/userspace-api/netlink/intro-specs.rst
25327 F:      Documentation/userspace-api/netlink/specs.rst
25328 F:      tools/net/ynl/
25329
25330 YEALINK PHONE DRIVER
25331 M:      Henk Vergonet <[email protected]>
25332 L:      [email protected]
25333 S:      Maintained
25334 F:      Documentation/input/devices/yealink.rst
25335 F:      drivers/input/misc/yealink.*
25336
25337 Z3FOLD COMPRESSED PAGE ALLOCATOR
25338 M:      Vitaly Wool <[email protected]>
25339 R:      Miaohe Lin <[email protected]>
25340 L:      [email protected]
25341 S:      Maintained
25342 F:      mm/z3fold.c
25343
25344 Z8530 DRIVER FOR AX.25
25345 M:      Joerg Reuter <[email protected]>
25346 L:      [email protected]
25347 S:      Maintained
25348 W:      http://yaina.de/jreuter/
25349 W:      http://www.qsl.net/dl1bke/
25350 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
25351 F:      drivers/net/hamradio/*scc.c
25352 F:      drivers/net/hamradio/z8530.h
25353
25354 ZBUD COMPRESSED PAGE ALLOCATOR
25355 M:      Seth Jennings <[email protected]>
25356 M:      Dan Streetman <[email protected]>
25357 L:      [email protected]
25358 S:      Maintained
25359 F:      mm/zbud.c
25360
25361 ZD1211RW WIRELESS DRIVER
25362 L:      [email protected]
25363 S:      Orphan
25364 F:      drivers/net/wireless/zydas/zd1211rw/
25365
25366 ZD1301 MEDIA DRIVER
25367 L:      [email protected]
25368 S:      Orphan
25369 W:      https://linuxtv.org/
25370 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
25371 F:      drivers/media/usb/dvb-usb-v2/zd1301*
25372
25373 ZD1301_DEMOD MEDIA DRIVER
25374 L:      [email protected]
25375 S:      Orphan
25376 W:      https://linuxtv.org/
25377 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
25378 F:      drivers/media/dvb-frontends/zd1301_demod*
25379
25380 ZHAOXIN PROCESSOR SUPPORT
25381 M:      Tony W Wang-oc <[email protected]>
25382 L:      [email protected]
25383 S:      Maintained
25384 F:      arch/x86/kernel/cpu/zhaoxin.c
25385
25386 ZONEFS FILESYSTEM
25387 M:      Damien Le Moal <[email protected]>
25388 M:      Naohiro Aota <[email protected]>
25389 R:      Johannes Thumshirn <[email protected]>
25390 L:      [email protected]
25391 S:      Maintained
25392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
25393 F:      Documentation/filesystems/zonefs.rst
25394 F:      fs/zonefs/
25395
25396 ZR36067 VIDEO FOR LINUX DRIVER
25397 M:      Corentin Labbe <[email protected]>
25398 L:      [email protected]
25399 L:      [email protected]
25400 S:      Maintained
25401 W:      http://mjpeg.sourceforge.net/driver-zoran/
25402 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
25403 F:      Documentation/driver-api/media/drivers/zoran.rst
25404 F:      drivers/media/pci/zoran/
25405
25406 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
25407 M:      Minchan Kim <[email protected]>
25408 M:      Sergey Senozhatsky <[email protected]>
25409 L:      [email protected]
25410 S:      Maintained
25411 F:      Documentation/admin-guide/blockdev/zram.rst
25412 F:      drivers/block/zram/
25413
25414 ZS DECSTATION Z85C30 SERIAL DRIVER
25415 M:      "Maciej W. Rozycki" <[email protected]>
25416 S:      Maintained
25417 F:      drivers/tty/serial/zs.*
25418
25419 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
25420 M:      Minchan Kim <[email protected]>
25421 M:      Sergey Senozhatsky <[email protected]>
25422 L:      [email protected]
25423 S:      Maintained
25424 F:      Documentation/mm/zsmalloc.rst
25425 F:      include/linux/zsmalloc.h
25426 F:      mm/zsmalloc.c
25427
25428 ZSTD
25429 M:      Nick Terrell <[email protected]>
25430 S:      Maintained
25431 B:      https://github.com/facebook/zstd/issues
25432 T:      git https://github.com/terrelln/linux.git
25433 F:      crypto/zstd.c
25434 F:      include/linux/zstd*
25435 F:      lib/decompress_unzstd.c
25436 F:      lib/zstd/
25437 N:      zstd
25438 K:      zstd
25439
25440 ZSWAP COMPRESSED SWAP CACHING
25441 M:      Johannes Weiner <[email protected]>
25442 M:      Yosry Ahmed <[email protected]>
25443 M:      Nhat Pham <[email protected]>
25444 R:      Chengming Zhou <[email protected]>
25445 L:      [email protected]
25446 S:      Maintained
25447 F:      Documentation/admin-guide/mm/zswap.rst
25448 F:      include/linux/zpool.h
25449 F:      include/linux/zswap.h
25450 F:      mm/zpool.c
25451 F:      mm/zswap.c
25452 F:      tools/testing/selftests/cgroup/test_zswap.c
25453
25454 SENARYTECH AUDIO CODEC DRIVER
25455 M:      bo liu <[email protected]>
25456 S:      Maintained
25457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
25458 F:      sound/pci/hda/patch_senarytech.c
25459
25460 THE REST
25461 M:      Linus Torvalds <[email protected]>
25462 L:      [email protected]
25463 S:      Buried alive in reporters
25464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
25465 F:      *
25466 F:      */
This page took 1.404577 seconds and 4 git commands to generate.