]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blob - MAINTAINERS
hantro: Rework how encoder and decoder are identified
[mirror_ubuntu-hirsute-kernel.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below. This will make things
5 easier on the maintainers. Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1. Always *test* your changes, however small, on at least 4 or
12 5 people, preferably many more.
13
14 2. Try to release a few ALPHA test versions to the net. Announce
15 them onto the kernel channel and await results. This is especially
16 important for device drivers, because often that's the only way
17 you will find things like the fact version 3 firmware needs
18 a magic fix you didn't know about, or some clown changed the
19 chips on a board and not its name. (Don't laugh! Look at the
20 SMC etherpower for that.)
21
22 3. Make sure your changes compile correctly in multiple
23 configurations. In particular check that changes work both as a
24 module and built into the kernel.
25
26 4. When you are happy with a change make it generally available for
27 testing and await feedback.
28
29 5. Make a patch available to the relevant maintainer in the list. Use
30 ``diff -u`` to make the patch easy to merge. Be prepared to get your
31 changes sent back with seemingly silly requests about formatting
32 and variable names. These aren't as silly as they seem. One
33 job the maintainers (and especially Linus) do is to keep things
34 looking the same. Sometimes this means that the clever hack in
35 your driver to get around a problem actually needs to become a
36 generalized kernel feature ready for next time.
37
38 PLEASE check your patch with the automated style checker
39 (scripts/checkpatch.pl) to catch trivial style violations.
40 See Documentation/process/coding-style.rst for guidance here.
41
42 PLEASE CC: the maintainers and mailing lists that are generated
43 by ``scripts/get_maintainer.pl.`` The results returned by the
44 script will be best if you have git installed and are making
45 your changes in a branch derived from Linus' latest git tree.
46 See Documentation/process/submitting-patches.rst for details.
47
48 PLEASE try to include any credit lines you want added with the
49 patch. It avoids people being missed off by mistake and makes
50 it easier to know who wants adding and who doesn't.
51
52 PLEASE document known bugs. If it doesn't work for everything
53 or does something very odd once a month document it.
54
55 PLEASE remember that submissions must be made under the terms
56 of the Linux Foundation certificate of contribution and should
57 include a Signed-off-by: line. The current version of this
58 "Developer's Certificate of Origin" (DCO) is listed in the file
59 Documentation/process/submitting-patches.rst.
60
61 6. Make sure you have the right to send any changes you make. If you
62 do changes at work you may find your employer owns the patch
63 not you.
64
65 7. When sending security related changes or reports to a maintainer
66 please Cc: security@kernel.org, especially if the maintainer
67 does not respond. Please keep in mind that the security team is
68 a small set of people who can be efficient only when working on
69 verified bugs. Please only Cc: this list when you have identified
70 that the bug would present a short-term risk to other users if it
71 were publicly disclosed. For example, reports of address leaks do
72 not represent an immediate threat and are better handled publicly,
73 and ideally, should come with a patch proposal. Please do not send
74 automated reports to this list either. Such bugs will be handled
75 better and faster in the usual public places. See
76 Documentation/admin-guide/security-bugs.rst for details.
77
78 8. Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83 M: *Mail* patches to: FullName <address@domain>
84 R: Designated *Reviewer*: FullName <address@domain>
85 These reviewers should be CCed on patches.
86 L: *Mailing list* that is relevant to this area
87 S: *Status*, one of the following:
88 Supported: Someone is actually paid to look after this.
89 Maintained: Someone actually looks after it.
90 Odd Fixes: It has a maintainer but they don't have time to do
91 much other than throw the odd patch in. See below..
92 Orphan: No current maintainer [but maybe you could take the
93 role as you write your new code].
94 Obsolete: Old code. Something tagged obsolete generally means
95 it has been replaced by a better system and you
96 should be using that.
97 W: *Web-page* with status/info
98 Q: *Patchwork* web based patch tracking system site
99 B: URI for where to file *bugs*. A web-page with detailed bug
100 filing info, a direct bug tracker link, or a mailto: URI.
101 C: URI for *chat* protocol, server and channel where developers
102 usually hang out, for example irc://server/channel.
103 P: Subsystem Profile document for more details submitting
104 patches to the given subsystem. This is either an in-tree file,
105 or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106 for details.
107 T: *SCM* tree type and location.
108 Type is one of: git, hg, quilt, stgit, topgit
109 F: *Files* and directories wildcard patterns.
110 A trailing slash includes all files and subdirectory files.
111 F: drivers/net/ all files in and below drivers/net
112 F: drivers/net/* all files in drivers/net, but not below
113 F: */net/* all files in "any top level directory"/net
114 One pattern per line. Multiple F: lines acceptable.
115 X: *Excluded* files and directories that are NOT maintained, same
116 rules as F:. Files exclusions are tested before file matches.
117 Can be useful for excluding a specific subdirectory, for instance:
118 F: net/
119 X: net/ipv6/
120 matches all files in and below net excluding net/ipv6/
121 N: Files and directories *Regex* patterns.
122 N: [^a-z]tegra all files whose path contains tegra
123 (not including files like integrator)
124 One pattern per line. Multiple N: lines acceptable.
125 scripts/get_maintainer.pl has different behavior for files that
126 match F: pattern and matches of N: patterns. By default,
127 get_maintainer will not look at git log history when an F: pattern
128 match occurs. When an N: match occurs, git log history is used
129 to also notify the people that have git commit signatures.
130 K: *Content regex* (perl extended) pattern match in a patch or file.
131 For instance:
132 K: of_get_profile
133 matches patches or files that contain "of_get_profile"
134 K: \b(printk|pr_(info|err))\b
135 matches patches or files that contain one or more of the words
136 printk, pr_info or pr_err
137 One regex pattern per line. Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143 first. When adding to this list, please keep the entries in
144 alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M: Steffen Klassert <klassert@kernel.org>
148 L: netdev@vger.kernel.org
149 S: Odd Fixes
150 F: Documentation/networking/device_drivers/3com/vortex.rst
151 F: drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M: David Dillow <dave@thedillows.org>
155 L: netdev@vger.kernel.org
156 S: Maintained
157 F: drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M: Adam Radford <aradford@gmail.com>
161 L: linux-scsi@vger.kernel.org
162 S: Supported
163 W: http://www.lsi.com
164 F: drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L: linux-scsi@vger.kernel.org
169 S: Maintained
170 F: drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M: Alexander Aring <alex.aring@gmail.com>
174 M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L: linux-bluetooth@vger.kernel.org
176 L: linux-wpan@vger.kernel.org
177 S: Maintained
178 F: Documentation/networking/6lowpan.rst
179 F: include/net/6lowpan.h
180 F: net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L: linux-hams@vger.kernel.org
185 S: Maintained
186 F: drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M: Johannes Berg <johannes@sipsolutions.net>
190 L: linux-wireless@vger.kernel.org
191 S: Maintained
192 W: https://wireless.wiki.kernel.org/
193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F: Documentation/driver-api/80211/cfg80211.rst
196 F: Documentation/networking/regulatory.rst
197 F: include/linux/ieee80211.h
198 F: include/net/cfg80211.h
199 F: include/net/ieee80211_radiotap.h
200 F: include/net/iw_handler.h
201 F: include/net/wext.h
202 F: include/uapi/linux/nl80211.h
203 F: net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M: Realtek linux nic maintainers <nic_swsd@realtek.com>
207 M: Heiner Kallweit <hkallweit1@gmail.com>
208 L: netdev@vger.kernel.org
209 S: Maintained
210 F: drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L: linux-serial@vger.kernel.org
215 S: Maintained
216 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F: drivers/tty/serial/8250*
218 F: include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L: netdev@vger.kernel.org
222 S: Orphan / Obsolete
223 F: drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M: Eric Van Hensbergen <ericvh@gmail.com>
227 M: Latchesar Ionkov <lucho@ionkov.net>
228 M: Dominique Martinet <asmadeus@codewreck.org>
229 L: v9fs-developer@lists.sourceforge.net
230 S: Maintained
231 W: http://swik.net/v9fs
232 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T: git git://github.com/martinetd/linux.git
235 F: Documentation/filesystems/9p.rst
236 F: fs/9p/
237 F: include/net/9p/
238 F: include/trace/events/9p.h
239 F: include/uapi/linux/virtio_9p.h
240 F: net/9p/
241
242 A8293 MEDIA DRIVER
243 M: Antti Palosaari <crope@iki.fi>
244 L: linux-media@vger.kernel.org
245 S: Maintained
246 W: https://linuxtv.org
247 W: http://palosaari.fi/linux/
248 Q: http://patchwork.linuxtv.org/project/linux-media/list/
249 T: git git://linuxtv.org/anttip/media_tree.git
250 F: drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L: linux-scsi@vger.kernel.org
255 S: Supported
256 W: http://www.adaptec.com/
257 F: Documentation/scsi/aacraid.rst
258 F: drivers/scsi/aacraid/
259
260 ABI/API
261 L: linux-api@vger.kernel.org
262 F: include/linux/syscalls.h
263 F: kernel/sys_ni.c
264
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M: Hans de Goede <hdegoede@redhat.com>
267 L: linux-hwmon@vger.kernel.org
268 S: Maintained
269 F: drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M: Alistair John Strachan <alistair@devzero.co.uk>
273 L: linux-hwmon@vger.kernel.org
274 S: Maintained
275 F: drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M: William Breathitt Gray <vilhelm.gray@gmail.com>
279 L: linux-gpio@vger.kernel.org
280 S: Maintained
281 F: drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
285 L: linux-gpio@vger.kernel.org
286 S: Maintained
287 F: drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
291 L: linux-gpio@vger.kernel.org
292 S: Maintained
293 F: drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M: William Breathitt Gray <vilhelm.gray@gmail.com>
297 M: Syed Nayyar Waris <syednwaris@gmail.com>
298 L: linux-iio@vger.kernel.org
299 S: Maintained
300 F: Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F: Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
302 F: drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M: William Breathitt Gray <vilhelm.gray@gmail.com>
306 L: linux-gpio@vger.kernel.org
307 S: Maintained
308 F: drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M: William Breathitt Gray <vilhelm.gray@gmail.com>
312 L: linux-gpio@vger.kernel.org
313 S: Maintained
314 F: drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M: Jes Sorensen <jes@trained-monkey.org>
318 L: linux-acenic@sunsite.dk
319 S: Maintained
320 F: drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M: Peter Kaestle <peter@piie.net>
324 L: platform-driver-x86@vger.kernel.org
325 S: Maintained
326 W: http://piie.net/?section=acerhdf
327 F: drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M: "Lee, Chun-Yi" <jlee@suse.com>
331 L: platform-driver-x86@vger.kernel.org
332 S: Maintained
333 F: drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
337 M: Len Brown <lenb@kernel.org>
338 L: linux-acpi@vger.kernel.org
339 S: Supported
340 W: https://01.org/linux-acpi
341 Q: https://patchwork.kernel.org/project/linux-acpi/list/
342 B: https://bugzilla.kernel.org
343 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F: Documentation/ABI/testing/configfs-acpi
345 F: Documentation/ABI/testing/sysfs-bus-acpi
346 F: Documentation/firmware-guide/acpi/
347 F: drivers/acpi/
348 F: drivers/pci/*/*acpi*
349 F: drivers/pci/*acpi*
350 F: drivers/pnp/pnpacpi/
351 F: include/acpi/
352 F: include/linux/acpi.h
353 F: include/linux/fwnode.h
354 F: tools/power/acpi/
355
356 ACPI APEI
357 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
358 M: Len Brown <lenb@kernel.org>
359 R: James Morse <james.morse@arm.com>
360 R: Tony Luck <tony.luck@intel.com>
361 R: Borislav Petkov <bp@alien8.de>
362 L: linux-acpi@vger.kernel.org
363 F: drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M: Robert Moore <robert.moore@intel.com>
367 M: Erik Kaneda <erik.kaneda@intel.com>
368 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L: linux-acpi@vger.kernel.org
370 L: devel@acpica.org
371 S: Supported
372 W: https://acpica.org/
373 W: https://github.com/acpica/acpica/
374 Q: https://patchwork.kernel.org/project/linux-acpi/list/
375 B: https://bugzilla.kernel.org
376 B: https://bugs.acpica.org
377 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F: drivers/acpi/acpica/
379 F: include/acpi/
380 F: tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M: Zhang Rui <rui.zhang@intel.com>
384 L: linux-acpi@vger.kernel.org
385 S: Supported
386 W: https://01.org/linux-acpi
387 B: https://bugzilla.kernel.org
388 F: drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
392 M: Hanjun Guo <guohanjun@huawei.com>
393 M: Sudeep Holla <sudeep.holla@arm.com>
394 L: linux-acpi@vger.kernel.org
395 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 S: Maintained
397 F: drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M: Hans de Goede <hdegoede@redhat.com>
401 L: platform-driver-x86@vger.kernel.org
402 S: Maintained
403 F: drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
407 M: Len Brown <lenb@kernel.org>
408 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
409 R: Mika Westerberg <mika.westerberg@linux.intel.com>
410 L: linux-acpi@vger.kernel.org
411 S: Supported
412 Q: https://patchwork.kernel.org/project/linux-acpi/list/
413 B: https://bugzilla.kernel.org
414 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F: drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M: Zhang Rui <rui.zhang@intel.com>
419 L: linux-acpi@vger.kernel.org
420 S: Supported
421 W: https://01.org/linux-acpi
422 B: https://bugzilla.kernel.org
423 F: drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M: Zhang Rui <rui.zhang@intel.com>
427 L: linux-acpi@vger.kernel.org
428 S: Supported
429 W: https://01.org/linux-acpi
430 B: https://bugzilla.kernel.org
431 F: drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L: platform-driver-x86@vger.kernel.org
435 S: Orphan
436 F: drivers/platform/x86/wmi.c
437 F: include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L: linux-parisc@vger.kernel.org
441 S: Maintained
442 W: https://parisc.wiki.kernel.org/index.php/AD1889
443 F: sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M: Michael Hennerich <michael.hennerich@analog.com>
447 S: Supported
448 W: http://wiki.analog.com/AD5254
449 W: http://ez.analog.com/community/linux-device-drivers
450 F: drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M: Michael Hennerich <michael.hennerich@analog.com>
454 S: Supported
455 W: http://wiki.analog.com/AD5398
456 W: http://ez.analog.com/community/linux-device-drivers
457 F: drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M: Michael Hennerich <michael.hennerich@analog.com>
461 S: Supported
462 W: http://wiki.analog.com/AD7142
463 W: http://ez.analog.com/community/linux-device-drivers
464 F: drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M: Michael Hennerich <michael.hennerich@analog.com>
468 S: Supported
469 W: http://wiki.analog.com/AD7877
470 W: http://ez.analog.com/community/linux-device-drivers
471 F: drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M: Michael Hennerich <michael.hennerich@analog.com>
475 S: Supported
476 W: http://wiki.analog.com/AD7879
477 W: http://ez.analog.com/community/linux-device-drivers
478 F: drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M: Jiri Kosina <jikos@kernel.org>
482 S: Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M: Michael Hennerich <michael.hennerich@analog.com>
486 L: linux-wpan@vger.kernel.org
487 S: Supported
488 W: https://wiki.analog.com/ADF7242
489 W: http://ez.analog.com/community/linux-device-drivers
490 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F: drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M: Jean Delvare <jdelvare@suse.com>
495 L: linux-hwmon@vger.kernel.org
496 S: Maintained
497 F: Documentation/hwmon/adm1025.rst
498 F: drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M: Corentin Labbe <clabbe.montjoie@gmail.com>
502 L: linux-hwmon@vger.kernel.org
503 S: Maintained
504 F: drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L: linux-wireless@vger.kernel.org
508 S: Orphan
509 W: https://wireless.wiki.kernel.org/
510 F: drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M: Sakari Ailus <sakari.ailus@iki.fi>
514 L: linux-media@vger.kernel.org
515 S: Maintained
516 F: drivers/media/i2c/adp1653.c
517 F: include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M: Michael Hennerich <michael.hennerich@analog.com>
521 S: Supported
522 W: http://wiki.analog.com/ADP5520
523 W: http://ez.analog.com/community/linux-device-drivers
524 F: drivers/gpio/gpio-adp5520.c
525 F: drivers/input/keyboard/adp5520-keys.c
526 F: drivers/leds/leds-adp5520.c
527 F: drivers/mfd/adp5520.c
528 F: drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M: Michael Hennerich <michael.hennerich@analog.com>
532 S: Supported
533 W: http://wiki.analog.com/ADP5588
534 W: http://ez.analog.com/community/linux-device-drivers
535 F: drivers/gpio/gpio-adp5588.c
536 F: drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M: Michael Hennerich <michael.hennerich@analog.com>
540 S: Supported
541 W: http://wiki.analog.com/ADP8860
542 W: http://ez.analog.com/community/linux-device-drivers
543 F: drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M: Colin Leroy <colin@colino.net>
547 S: Maintained
548 F: drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M: Jean Delvare <jdelvare@suse.com>
552 L: linux-hwmon@vger.kernel.org
553 S: Maintained
554 F: Documentation/hwmon/adt7475.rst
555 F: drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M: Matthew Wilcox <willy@infradead.org>
559 M: Hannes Reinecke <hare@suse.com>
560 L: linux-scsi@vger.kernel.org
561 S: Maintained
562 F: Documentation/scsi/advansys.rst
563 F: drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M: Michael Hennerich <michael.hennerich@analog.com>
567 S: Supported
568 W: http://wiki.analog.com/ADXL345
569 W: http://ez.analog.com/community/linux-device-drivers
570 F: Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F: drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M: Michael Hennerich <michael.hennerich@analog.com>
575 S: Supported
576 W: http://ez.analog.com/community/linux-device-drivers
577 F: Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F: drivers/iio/accel/adxl372.c
579 F: drivers/iio/accel/adxl372_i2c.c
580 F: drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M: Antti Palosaari <crope@iki.fi>
584 L: linux-media@vger.kernel.org
585 S: Maintained
586 W: https://linuxtv.org
587 W: http://palosaari.fi/linux/
588 Q: http://patchwork.linuxtv.org/project/linux-media/list/
589 T: git git://linuxtv.org/anttip/media_tree.git
590 F: drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M: Antti Palosaari <crope@iki.fi>
594 L: linux-media@vger.kernel.org
595 S: Maintained
596 W: https://linuxtv.org
597 W: http://palosaari.fi/linux/
598 Q: http://patchwork.linuxtv.org/project/linux-media/list/
599 T: git git://linuxtv.org/anttip/media_tree.git
600 F: drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M: David Sterba <dsterba@suse.com>
604 L: linux-fsdevel@vger.kernel.org
605 S: Odd Fixes
606 F: Documentation/filesystems/affs.rst
607 F: fs/affs/
608
609 AFS FILESYSTEM
610 M: David Howells <dhowells@redhat.com>
611 L: linux-afs@lists.infradead.org
612 S: Supported
613 W: https://www.infradead.org/~dhowells/kafs/
614 F: Documentation/filesystems/afs.rst
615 F: fs/afs/
616 F: include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M: David Airlie <airlied@linux.ie>
620 S: Maintained
621 T: git git://anongit.freedesktop.org/drm/drm
622 F: drivers/char/agp/
623 F: include/linux/agp*
624 F: include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M: "Juergen E. Fischer" <fischer@norbit.de>
628 L: linux-scsi@vger.kernel.org
629 S: Maintained
630 F: drivers/scsi/aha152x*
631 F: drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M: Hannes Reinecke <hare@suse.com>
635 L: linux-scsi@vger.kernel.org
636 S: Maintained
637 F: drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M: Hans Verkuil <hverkuil@xs4all.nl>
641 L: linux-media@vger.kernel.org
642 S: Maintained
643 W: https://linuxtv.org
644 T: git git://linuxtv.org/media_tree.git
645 F: drivers/media/radio/radio-aimslab*
646
647 AIO
648 M: Benjamin LaHaise <bcrl@kvack.org>
649 L: linux-aio@kvack.org
650 S: Supported
651 F: fs/aio.c
652 F: include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M: Antti Palosaari <crope@iki.fi>
656 L: linux-media@vger.kernel.org
657 S: Maintained
658 W: https://linuxtv.org
659 W: http://palosaari.fi/linux/
660 Q: http://patchwork.linuxtv.org/project/linux-media/list/
661 T: git git://linuxtv.org/anttip/media_tree.git
662 F: drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
666 S: Maintained
667 F: drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M: Duncan Sands <duncan.sands@free.fr>
671 L: linux-usb@vger.kernel.org
672 S: Maintained
673 W: http://www.linux-usb.org/SpeedTouch/
674 F: drivers/usb/atm/speedtch.c
675 F: drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M: Manuel Lauss <manuel.lauss@gmail.com>
679 S: Maintained
680 F: drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M: Rudolf Marek <r.marek@assembler.cz>
684 L: linux-i2c@vger.kernel.org
685 S: Maintained
686 F: Documentation/i2c/busses/i2c-ali1563.rst
687 F: drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M: Tomislav Denis <tomislav.denis@avl.com>
691 L: linux-iio@vger.kernel.org
692 S: Maintained
693 W: http://www.allsensors.com/
694 F: Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F: drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M: Michael Tretter <m.tretter@pengutronix.de>
699 R: Pengutronix Kernel Team <kernel@pengutronix.de>
700 L: linux-media@vger.kernel.org
701 S: Maintained
702 F: drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M: Maxime Ripard <mripard@kernel.org>
706 L: linux-media@vger.kernel.org
707 S: Maintained
708 T: git git://linuxtv.org/media_tree.git
709 F: Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F: drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M: Yangtao Li <tiny.windzz@gmail.com>
714 L: linux-pm@vger.kernel.org
715 S: Maintained
716 F: Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F: drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M: Corentin Labbe <clabbe.montjoie@gmail.com>
721 L: linux-crypto@vger.kernel.org
722 S: Maintained
723 F: drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M: Vasily Khoruzhick <anarsoul@gmail.com>
727 M: Yangtao Li <tiny.windzz@gmail.com>
728 L: linux-pm@vger.kernel.org
729 S: Maintained
730 F: Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F: drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M: Maxime Ripard <mripard@kernel.org>
735 M: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L: linux-media@vger.kernel.org
737 S: Maintained
738 F: drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M: Richard Henderson <rth@twiddle.net>
742 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M: Matt Turner <mattst88@gmail.com>
744 L: linux-alpha@vger.kernel.org
745 S: Odd Fixes
746 F: arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R: Pali Rohár <pali@kernel.org>
750 F: drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M: Thor Thayer <thor.thayer@linux.intel.com>
754 S: Maintained
755 F: Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F: drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M: Ley Foon Tan <ley.foon.tan@intel.com>
760 S: Maintained
761 F: drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M: Joyce Ooi <joyce.ooi@intel.com>
765 L: linux-gpio@vger.kernel.org
766 S: Maintained
767 F: drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M: Thor Thayer <thor.thayer@linux.intel.com>
771 S: Maintained
772 F: drivers/mfd/altera-sysmgr.c
773 F: include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M: Thor Thayer <thor.thayer@linux.intel.com>
777 S: Maintained
778 F: drivers/gpio/gpio-altera-a10sr.c
779 F: drivers/mfd/altera-a10sr.c
780 F: drivers/reset/reset-a10sr.c
781 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F: include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M: Thor Thayer <thor.thayer@linux.intel.com>
786 L: netdev@vger.kernel.org
787 S: Maintained
788 F: drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M: Tobias Klauser <tklauser@distanz.ch>
792 L: linux-serial@vger.kernel.org
793 S: Maintained
794 F: drivers/tty/serial/altera_jtaguart.c
795 F: drivers/tty/serial/altera_uart.c
796 F: include/linux/altera_jtaguart.h
797 F: include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M: Talel Shenhar <talel@amazon.com>
801 S: Maintained
802 F: Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F: drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
806 M: Talel Shenhar <talel@amazon.com>
807 S: Maintained
808 F: Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
809 F: drivers/thermal/thermal_mmio.c
810
811 AMAZON ETHERNET DRIVERS
812 M: Netanel Belgazal <netanel@amazon.com>
813 M: Arthur Kiyanovski <akiyano@amazon.com>
814 R: Guy Tzalik <gtzalik@amazon.com>
815 R: Saeed Bishara <saeedb@amazon.com>
816 R: Zorik Machulsky <zorik@amazon.com>
817 L: netdev@vger.kernel.org
818 S: Supported
819 F: Documentation/networking/device_drivers/amazon/ena.rst
820 F: drivers/net/ethernet/amazon/
821
822 AMAZON RDMA EFA DRIVER
823 M: Gal Pressman <galpress@amazon.com>
824 R: Yossi Leybovich <sleybo@amazon.com>
825 L: linux-rdma@vger.kernel.org
826 S: Supported
827 Q: https://patchwork.kernel.org/project/linux-rdma/list/
828 F: drivers/infiniband/hw/efa/
829 F: include/uapi/rdma/efa-abi.h
830
831 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
832 M: Tom Lendacky <thomas.lendacky@amd.com>
833 L: linux-crypto@vger.kernel.org
834 S: Supported
835 F: drivers/crypto/ccp/
836 F: include/linux/ccp.h
837
838 AMD DISPLAY CORE
839 M: Harry Wentland <harry.wentland@amd.com>
840 M: Leo Li <sunpeng.li@amd.com>
841 L: amd-gfx@lists.freedesktop.org
842 S: Supported
843 T: git git://people.freedesktop.org/~agd5f/linux
844 F: drivers/gpu/drm/amd/display/
845
846 AMD ENERGY DRIVER
847 M: Naveen Krishna Chatradhi <nchatrad@amd.com>
848 L: linux-hwmon@vger.kernel.org
849 S: Maintained
850 F: Documentation/hwmon/amd_energy.rst
851 F: drivers/hwmon/amd_energy.c
852
853 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
854 M: Huang Rui <ray.huang@amd.com>
855 L: linux-hwmon@vger.kernel.org
856 S: Supported
857 F: Documentation/hwmon/fam15h_power.rst
858 F: drivers/hwmon/fam15h_power.c
859
860 AMD FCH GPIO DRIVER
861 M: Enrico Weigelt, metux IT consult <info@metux.net>
862 L: linux-gpio@vger.kernel.org
863 S: Maintained
864 F: drivers/gpio/gpio-amd-fch.c
865 F: include/linux/platform_data/gpio/gpio-amd-fch.h
866
867 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
868 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
869 S: Orphan
870 F: drivers/usb/gadget/udc/amd5536udc.*
871
872 AMD GEODE PROCESSOR/CHIPSET SUPPORT
873 M: Andres Salomon <dilinger@queued.net>
874 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
875 S: Supported
876 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
877 F: arch/x86/include/asm/geode.h
878 F: drivers/char/hw_random/geode-rng.c
879 F: drivers/crypto/geode*
880 F: drivers/video/fbdev/geode/
881
882 AMD IOMMU (AMD-VI)
883 M: Joerg Roedel <joro@8bytes.org>
884 L: iommu@lists.linux-foundation.org
885 S: Maintained
886 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
887 F: drivers/iommu/amd/
888 F: include/linux/amd-iommu.h
889
890 AMD KFD
891 M: Felix Kuehling <Felix.Kuehling@amd.com>
892 L: amd-gfx@lists.freedesktop.org
893 S: Supported
894 T: git git://people.freedesktop.org/~agd5f/linux
895 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
896 F: drivers/gpu/drm/amd/amdkfd/
897 F: drivers/gpu/drm/amd/include/cik_structs.h
898 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
899 F: drivers/gpu/drm/amd/include/v9_structs.h
900 F: drivers/gpu/drm/amd/include/vi_structs.h
901 F: include/uapi/linux/kfd_ioctl.h
902
903 AMD SPI DRIVER
904 M: Sanjay R Mehta <sanju.mehta@amd.com>
905 S: Maintained
906 F: drivers/spi/spi-amd.c
907
908 AMD MP2 I2C DRIVER
909 M: Elie Morisse <syniurge@gmail.com>
910 M: Nehal Shah <nehal-bakulchandra.shah@amd.com>
911 M: Shyam Sundar S K <shyam-sundar.s-k@amd.com>
912 L: linux-i2c@vger.kernel.org
913 S: Maintained
914 F: drivers/i2c/busses/i2c-amd-mp2*
915
916 AMD POWERPLAY
917 M: Evan Quan <evan.quan@amd.com>
918 L: amd-gfx@lists.freedesktop.org
919 S: Supported
920 T: git git://people.freedesktop.org/~agd5f/linux
921 F: drivers/gpu/drm/amd/powerplay/
922
923 AMD SEATTLE DEVICE TREE SUPPORT
924 M: Brijesh Singh <brijeshkumar.singh@amd.com>
925 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
926 M: Tom Lendacky <thomas.lendacky@amd.com>
927 S: Supported
928 F: arch/arm64/boot/dts/amd/
929
930 AMD XGBE DRIVER
931 M: Tom Lendacky <thomas.lendacky@amd.com>
932 L: netdev@vger.kernel.org
933 S: Supported
934 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
935 F: drivers/net/ethernet/amd/xgbe/
936
937 ANALOG DEVICES INC AD5686 DRIVER
938 M: Michael Hennerich <Michael.Hennerich@analog.com>
939 L: linux-pm@vger.kernel.org
940 S: Supported
941 W: http://ez.analog.com/community/linux-device-drivers
942 F: drivers/iio/dac/ad5686*
943 F: drivers/iio/dac/ad5696*
944
945 ANALOG DEVICES INC AD5758 DRIVER
946 M: Michael Hennerich <Michael.Hennerich@analog.com>
947 L: linux-iio@vger.kernel.org
948 S: Supported
949 W: http://ez.analog.com/community/linux-device-drivers
950 F: Documentation/devicetree/bindings/iio/dac/ad5758.txt
951 F: drivers/iio/dac/ad5758.c
952
953 ANALOG DEVICES INC AD7091R5 DRIVER
954 M: Beniamin Bia <beniamin.bia@analog.com>
955 L: linux-iio@vger.kernel.org
956 S: Supported
957 W: http://ez.analog.com/community/linux-device-drivers
958 F: Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
959 F: drivers/iio/adc/ad7091r5.c
960
961 ANALOG DEVICES INC AD7124 DRIVER
962 M: Michael Hennerich <Michael.Hennerich@analog.com>
963 L: linux-iio@vger.kernel.org
964 S: Supported
965 W: http://ez.analog.com/community/linux-device-drivers
966 F: Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
967 F: drivers/iio/adc/ad7124.c
968
969 ANALOG DEVICES INC AD7192 DRIVER
970 M: Alexandru Tachici <alexandru.tachici@analog.com>
971 L: linux-iio@vger.kernel.org
972 S: Supported
973 W: http://ez.analog.com/community/linux-device-drivers
974 F: Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
975 F: drivers/iio/adc/ad7192.c
976
977 ANALOG DEVICES INC AD7292 DRIVER
978 M: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
979 L: linux-iio@vger.kernel.org
980 S: Supported
981 W: http://ez.analog.com/community/linux-device-drivers
982 F: Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
983 F: drivers/iio/adc/ad7292.c
984
985 ANALOG DEVICES INC AD7606 DRIVER
986 M: Michael Hennerich <Michael.Hennerich@analog.com>
987 M: Beniamin Bia <beniamin.bia@analog.com>
988 L: linux-iio@vger.kernel.org
989 S: Supported
990 W: http://ez.analog.com/community/linux-device-drivers
991 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
992 F: drivers/iio/adc/ad7606.c
993
994 ANALOG DEVICES INC AD7768-1 DRIVER
995 M: Michael Hennerich <Michael.Hennerich@analog.com>
996 L: linux-iio@vger.kernel.org
997 S: Supported
998 W: http://ez.analog.com/community/linux-device-drivers
999 F: Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
1000 F: drivers/iio/adc/ad7768-1.c
1001
1002 ANALOG DEVICES INC AD7780 DRIVER
1003 M: Michael Hennerich <Michael.Hennerich@analog.com>
1004 M: Renato Lui Geh <renatogeh@gmail.com>
1005 L: linux-iio@vger.kernel.org
1006 S: Supported
1007 W: http://ez.analog.com/community/linux-device-drivers
1008 F: Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1009 F: drivers/iio/adc/ad7780.c
1010
1011 ANALOG DEVICES INC AD9389B DRIVER
1012 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1013 L: linux-media@vger.kernel.org
1014 S: Maintained
1015 F: drivers/media/i2c/ad9389b*
1016
1017 ANALOG DEVICES INC ADGS1408 DRIVER
1018 M: Mircea Caprioru <mircea.caprioru@analog.com>
1019 S: Supported
1020 F: Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1021 F: drivers/mux/adgs1408.c
1022
1023 ANALOG DEVICES INC ADIN DRIVER
1024 M: Alexandru Ardelean <alexaundru.ardelean@analog.com>
1025 L: netdev@vger.kernel.org
1026 S: Supported
1027 W: http://ez.analog.com/community/linux-device-drivers
1028 F: Documentation/devicetree/bindings/net/adi,adin.yaml
1029 F: drivers/net/phy/adin.c
1030
1031 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1032 M: Alexandru Ardelean <alexandru.ardelean@analog.com>
1033 L: linux-iio@vger.kernel.org
1034 S: Supported
1035 F: drivers/iio/imu/adis.c
1036 F: include/linux/iio/imu/adis.h
1037
1038 ANALOG DEVICES INC ADIS16460 DRIVER
1039 M: Dragos Bogdan <dragos.bogdan@analog.com>
1040 L: linux-iio@vger.kernel.org
1041 S: Supported
1042 W: http://ez.analog.com/community/linux-device-drivers
1043 F: Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1044 F: drivers/iio/imu/adis16460.c
1045
1046 ANALOG DEVICES INC ADIS16475 DRIVER
1047 M: Nuno Sa <nuno.sa@analog.com>
1048 L: linux-iio@vger.kernel.org
1049 W: http://ez.analog.com/community/linux-device-drivers
1050 S: Supported
1051 F: drivers/iio/imu/adis16475.c
1052 F: Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1053
1054 ANALOG DEVICES INC ADM1177 DRIVER
1055 M: Beniamin Bia <beniamin.bia@analog.com>
1056 M: Michael Hennerich <Michael.Hennerich@analog.com>
1057 L: linux-hwmon@vger.kernel.org
1058 S: Supported
1059 W: http://ez.analog.com/community/linux-device-drivers
1060 F: Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1061 F: drivers/hwmon/adm1177.c
1062
1063 ANALOG DEVICES INC ADP5061 DRIVER
1064 M: Michael Hennerich <Michael.Hennerich@analog.com>
1065 L: linux-pm@vger.kernel.org
1066 S: Supported
1067 W: http://ez.analog.com/community/linux-device-drivers
1068 F: drivers/power/supply/adp5061.c
1069
1070 ANALOG DEVICES INC ADV7180 DRIVER
1071 M: Lars-Peter Clausen <lars@metafoo.de>
1072 L: linux-media@vger.kernel.org
1073 S: Supported
1074 W: http://ez.analog.com/community/linux-device-drivers
1075 F: drivers/media/i2c/adv7180.c
1076
1077 ANALOG DEVICES INC ADV748X DRIVER
1078 M: Kieran Bingham <kieran.bingham@ideasonboard.com>
1079 L: linux-media@vger.kernel.org
1080 S: Maintained
1081 F: drivers/media/i2c/adv748x/*
1082
1083 ANALOG DEVICES INC ADV7511 DRIVER
1084 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1085 L: linux-media@vger.kernel.org
1086 S: Maintained
1087 F: drivers/media/i2c/adv7511*
1088
1089 ANALOG DEVICES INC ADV7604 DRIVER
1090 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1091 L: linux-media@vger.kernel.org
1092 S: Maintained
1093 F: drivers/media/i2c/adv7604*
1094
1095 ANALOG DEVICES INC ADV7842 DRIVER
1096 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
1097 L: linux-media@vger.kernel.org
1098 S: Maintained
1099 F: drivers/media/i2c/adv7842*
1100
1101 ANALOG DEVICES INC ASOC CODEC DRIVERS
1102 M: Lars-Peter Clausen <lars@metafoo.de>
1103 M: Nuno Sá <nuno.sa@analog.com>
1104 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1105 S: Supported
1106 W: http://wiki.analog.com/
1107 W: http://ez.analog.com/community/linux-device-drivers
1108 F: sound/soc/codecs/ad1*
1109 F: sound/soc/codecs/ad7*
1110 F: sound/soc/codecs/adau*
1111 F: sound/soc/codecs/adav*
1112 F: sound/soc/codecs/sigmadsp.*
1113 F: sound/soc/codecs/ssm*
1114
1115 ANALOG DEVICES INC DMA DRIVERS
1116 M: Lars-Peter Clausen <lars@metafoo.de>
1117 S: Supported
1118 W: http://ez.analog.com/community/linux-device-drivers
1119 F: drivers/dma/dma-axi-dmac.c
1120
1121 ANALOG DEVICES INC HMC425A DRIVER
1122 M: Beniamin Bia <beniamin.bia@analog.com>
1123 M: Michael Hennerich <michael.hennerich@analog.com>
1124 L: linux-iio@vger.kernel.org
1125 S: Supported
1126 W: http://ez.analog.com/community/linux-device-drivers
1127 F: Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1128 F: drivers/iio/amplifiers/hmc425a.c
1129
1130 ANALOG DEVICES INC IIO DRIVERS
1131 M: Lars-Peter Clausen <lars@metafoo.de>
1132 M: Michael Hennerich <Michael.Hennerich@analog.com>
1133 S: Supported
1134 W: http://wiki.analog.com/
1135 W: http://ez.analog.com/community/linux-device-drivers
1136 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1137 F: Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1138 F: drivers/iio/*/ad*
1139 F: drivers/iio/adc/ltc249*
1140 F: drivers/staging/iio/*/ad*
1141 X: drivers/iio/*/adjd*
1142
1143 ANALOGBITS PLL LIBRARIES
1144 M: Paul Walmsley <paul.walmsley@sifive.com>
1145 S: Supported
1146 F: drivers/clk/analogbits/*
1147 F: include/linux/clk/analogbits*
1148
1149 ANDES ARCHITECTURE
1150 M: Nick Hu <nickhu@andestech.com>
1151 M: Greentime Hu <green.hu@gmail.com>
1152 M: Vincent Chen <deanbo422@gmail.com>
1153 S: Supported
1154 T: git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1155 F: Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1156 F: Documentation/devicetree/bindings/nds32/
1157 F: arch/nds32/
1158 N: nds32
1159 K: nds32
1160
1161 ANDROID CONFIG FRAGMENTS
1162 M: Rob Herring <robh@kernel.org>
1163 S: Supported
1164 F: kernel/configs/android*
1165
1166 ANDROID DRIVERS
1167 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1168 M: Arve Hjønnevåg <arve@android.com>
1169 M: Todd Kjos <tkjos@android.com>
1170 M: Martijn Coenen <maco@android.com>
1171 M: Joel Fernandes <joel@joelfernandes.org>
1172 M: Christian Brauner <christian@brauner.io>
1173 L: devel@driverdev.osuosl.org
1174 S: Supported
1175 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1176 F: drivers/android/
1177 F: drivers/staging/android/
1178
1179 ANDROID GOLDFISH PIC DRIVER
1180 M: Miodrag Dinic <miodrag.dinic@mips.com>
1181 S: Supported
1182 F: Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1183 F: drivers/irqchip/irq-goldfish-pic.c
1184
1185 ANDROID GOLDFISH RTC DRIVER
1186 M: Miodrag Dinic <miodrag.dinic@mips.com>
1187 S: Supported
1188 F: Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1189 F: drivers/rtc/rtc-goldfish.c
1190
1191 ANDROID ION DRIVER
1192 M: Laura Abbott <labbott@redhat.com>
1193 M: Sumit Semwal <sumit.semwal@linaro.org>
1194 L: devel@driverdev.osuosl.org
1195 L: dri-devel@lists.freedesktop.org
1196 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1197 S: Supported
1198 F: drivers/staging/android/ion
1199 F: drivers/staging/android/uapi/ion.h
1200
1201 AOA (Apple Onboard Audio) ALSA DRIVER
1202 M: Johannes Berg <johannes@sipsolutions.net>
1203 L: linuxppc-dev@lists.ozlabs.org
1204 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1205 S: Maintained
1206 F: sound/aoa/
1207
1208 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1209 M: William Breathitt Gray <vilhelm.gray@gmail.com>
1210 L: linux-iio@vger.kernel.org
1211 S: Maintained
1212 F: drivers/iio/adc/stx104.c
1213
1214 APM DRIVER
1215 M: Jiri Kosina <jikos@kernel.org>
1216 S: Odd fixes
1217 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1218 F: arch/x86/kernel/apm_32.c
1219 F: drivers/char/apm-emulation.c
1220 F: include/linux/apm_bios.h
1221 F: include/uapi/linux/apm_bios.h
1222
1223 APPARMOR SECURITY MODULE
1224 M: John Johansen <john.johansen@canonical.com>
1225 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1226 S: Supported
1227 W: wiki.apparmor.net
1228 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1229 F: Documentation/admin-guide/LSM/apparmor.rst
1230 F: security/apparmor/
1231
1232 APPLE BCM5974 MULTITOUCH DRIVER
1233 M: Henrik Rydberg <rydberg@bitmath.org>
1234 L: linux-input@vger.kernel.org
1235 S: Odd fixes
1236 F: drivers/input/mouse/bcm5974.c
1237
1238 APPLE SMC DRIVER
1239 M: Henrik Rydberg <rydberg@bitmath.org>
1240 L: linux-hwmon@vger.kernel.org
1241 S: Odd fixes
1242 F: drivers/hwmon/applesmc.c
1243
1244 APPLETALK NETWORK LAYER
1245 L: netdev@vger.kernel.org
1246 S: Odd fixes
1247 F: drivers/net/appletalk/
1248 F: include/linux/atalk.h
1249 F: include/uapi/linux/atalk.h
1250 F: net/appletalk/
1251
1252 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1253 M: Khuong Dinh <khuong@os.amperecomputing.com>
1254 S: Supported
1255 F: arch/arm64/boot/dts/apm/
1256
1257 APPLIED MICRO (APM) X-GENE SOC EDAC
1258 M: Khuong Dinh <khuong@os.amperecomputing.com>
1259 S: Supported
1260 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1261 F: drivers/edac/xgene_edac.c
1262
1263 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1264 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1265 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1266 S: Supported
1267 F: drivers/net/ethernet/apm/xgene-v2/
1268
1269 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1270 M: Iyappan Subramanian <iyappan@os.amperecomputing.com>
1271 M: Keyur Chudgar <keyur@os.amperecomputing.com>
1272 M: Quan Nguyen <quan@os.amperecomputing.com>
1273 S: Supported
1274 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1275 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1276 F: drivers/net/ethernet/apm/xgene/
1277 F: drivers/net/phy/mdio-xgene.c
1278
1279 APPLIED MICRO (APM) X-GENE SOC PMU
1280 M: Khuong Dinh <khuong@os.amperecomputing.com>
1281 S: Supported
1282 F: Documentation/admin-guide/perf/xgene-pmu.rst
1283 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1284 F: drivers/perf/xgene_pmu.c
1285
1286 APTINA CAMERA SENSOR PLL
1287 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1288 L: linux-media@vger.kernel.org
1289 S: Maintained
1290 F: drivers/media/i2c/aptina-pll.*
1291
1292 AQUANTIA ETHERNET DRIVER (atlantic)
1293 M: Igor Russkikh <irusskikh@marvell.com>
1294 L: netdev@vger.kernel.org
1295 S: Supported
1296 W: https://www.marvell.com/
1297 Q: http://patchwork.ozlabs.org/project/netdev/list/
1298 F: Documentation/networking/device_drivers/aquantia/atlantic.rst
1299 F: drivers/net/ethernet/aquantia/atlantic/
1300
1301 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1302 M: Egor Pomozov <epomozov@marvell.com>
1303 L: netdev@vger.kernel.org
1304 S: Supported
1305 W: http://www.aquantia.com
1306 F: drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1307
1308 ARASAN NAND CONTROLLER DRIVER
1309 M: Naga Sureshkumar Relli <nagasure@xilinx.com>
1310 L: linux-mtd@lists.infradead.org
1311 S: Maintained
1312 F: Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1313 F: drivers/mtd/nand/raw/arasan-nand-controller.c
1314
1315 ARC FRAMEBUFFER DRIVER
1316 M: Jaya Kumar <jayalk@intworks.biz>
1317 S: Maintained
1318 F: drivers/video/fbdev/arcfb.c
1319 F: drivers/video/fbdev/core/fb_defio.c
1320
1321 ARC PGU DRM DRIVER
1322 M: Alexey Brodkin <abrodkin@synopsys.com>
1323 S: Supported
1324 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
1325 F: drivers/gpu/drm/arc/
1326
1327 ARCNET NETWORK LAYER
1328 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
1329 L: netdev@vger.kernel.org
1330 S: Maintained
1331 F: drivers/net/arcnet/
1332 F: include/uapi/linux/if_arcnet.h
1333
1334 ARM ARCHITECTED TIMER DRIVER
1335 M: Mark Rutland <mark.rutland@arm.com>
1336 M: Marc Zyngier <maz@kernel.org>
1337 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 S: Maintained
1339 F: arch/arm/include/asm/arch_timer.h
1340 F: arch/arm64/include/asm/arch_timer.h
1341 F: drivers/clocksource/arm_arch_timer.c
1342
1343 ARM HDLCD DRM DRIVER
1344 M: Liviu Dudau <liviu.dudau@arm.com>
1345 S: Supported
1346 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
1347 F: drivers/gpu/drm/arm/hdlcd_*
1348
1349 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1350 M: Linus Walleij <linus.walleij@linaro.org>
1351 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1352 S: Maintained
1353 F: Documentation/devicetree/bindings/arm/arm,integrator.yaml
1354 F: Documentation/devicetree/bindings/arm/arm,realview.yaml
1355 F: Documentation/devicetree/bindings/arm/arm,versatile.yaml
1356 F: Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1357 F: Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1358 F: Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1359 F: Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1360 F: Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1361 F: Documentation/devicetree/bindings/mtd/arm-versatile.txt
1362 F: arch/arm/boot/dts/arm-realview-*
1363 F: arch/arm/boot/dts/integrator*
1364 F: arch/arm/boot/dts/versatile*
1365 F: arch/arm/mach-integrator/
1366 F: arch/arm/mach-realview/
1367 F: arch/arm/mach-versatile/
1368 F: arch/arm/plat-versatile/
1369 F: drivers/bus/arm-integrator-lm.c
1370 F: drivers/clk/versatile/
1371 F: drivers/i2c/busses/i2c-versatile.c
1372 F: drivers/irqchip/irq-versatile-fpga.c
1373 F: drivers/mtd/maps/physmap-versatile.*
1374 F: drivers/power/reset/arm-versatile-reboot.c
1375 F: drivers/soc/versatile/
1376
1377 ARM KOMEDA DRM-KMS DRIVER
1378 M: James (Qian) Wang <james.qian.wang@arm.com>
1379 M: Liviu Dudau <liviu.dudau@arm.com>
1380 M: Mihail Atanassov <mihail.atanassov@arm.com>
1381 L: Mali DP Maintainers <malidp@foss.arm.com>
1382 S: Supported
1383 T: git git://anongit.freedesktop.org/drm/drm-misc
1384 F: Documentation/devicetree/bindings/display/arm,komeda.txt
1385 F: Documentation/gpu/komeda-kms.rst
1386 F: drivers/gpu/drm/arm/display/include/
1387 F: drivers/gpu/drm/arm/display/komeda/
1388
1389 ARM MALI PANFROST DRM DRIVER
1390 M: Rob Herring <robh@kernel.org>
1391 M: Tomeu Vizoso <tomeu.vizoso@collabora.com>
1392 R: Steven Price <steven.price@arm.com>
1393 R: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1394 L: dri-devel@lists.freedesktop.org
1395 S: Supported
1396 T: git git://anongit.freedesktop.org/drm/drm-misc
1397 F: drivers/gpu/drm/panfrost/
1398 F: include/uapi/drm/panfrost_drm.h
1399
1400 ARM MALI-DP DRM DRIVER
1401 M: Liviu Dudau <liviu.dudau@arm.com>
1402 M: Brian Starkey <brian.starkey@arm.com>
1403 L: Mali DP Maintainers <malidp@foss.arm.com>
1404 S: Supported
1405 T: git git://anongit.freedesktop.org/drm/drm-misc
1406 F: Documentation/devicetree/bindings/display/arm,malidp.txt
1407 F: Documentation/gpu/afbc.rst
1408 F: drivers/gpu/drm/arm/
1409
1410 ARM MFM AND FLOPPY DRIVERS
1411 M: Ian Molton <spyro@f2s.com>
1412 S: Maintained
1413 F: arch/arm/include/asm/floppy.h
1414 F: arch/arm/mach-rpc/floppydma.S
1415
1416 ARM PMU PROFILING AND DEBUGGING
1417 M: Will Deacon <will@kernel.org>
1418 M: Mark Rutland <mark.rutland@arm.com>
1419 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 S: Maintained
1421 F: Documentation/devicetree/bindings/arm/pmu.yaml
1422 F: Documentation/devicetree/bindings/perf/
1423 F: arch/arm*/include/asm/hw_breakpoint.h
1424 F: arch/arm*/include/asm/perf_event.h
1425 F: arch/arm*/kernel/hw_breakpoint.c
1426 F: arch/arm*/kernel/perf_*
1427 F: arch/arm/oprofile/common.c
1428 F: drivers/perf/*
1429 F: include/linux/perf/arm_pmu.h
1430
1431 ARM PORT
1432 M: Russell King <linux@armlinux.org.uk>
1433 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434 S: Odd Fixes
1435 W: http://www.armlinux.org.uk/
1436 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
1437 F: arch/arm/
1438 X: arch/arm/boot/dts/
1439
1440 ARM PRIMECELL AACI PL041 DRIVER
1441 M: Russell King <linux@armlinux.org.uk>
1442 S: Odd Fixes
1443 F: sound/arm/aaci.*
1444
1445 ARM PRIMECELL BUS SUPPORT
1446 M: Russell King <linux@armlinux.org.uk>
1447 S: Odd Fixes
1448 F: drivers/amba/
1449 F: include/linux/amba/bus.h
1450
1451 ARM PRIMECELL CLCD PL110 DRIVER
1452 M: Russell King <linux@armlinux.org.uk>
1453 S: Odd Fixes
1454 F: drivers/video/fbdev/amba-clcd.*
1455
1456 ARM PRIMECELL KMI PL050 DRIVER
1457 M: Russell King <linux@armlinux.org.uk>
1458 S: Odd Fixes
1459 F: drivers/input/serio/ambakmi.*
1460 F: include/linux/amba/kmi.h
1461
1462 ARM PRIMECELL MMCI PL180/1 DRIVER
1463 M: Russell King <linux@armlinux.org.uk>
1464 S: Odd Fixes
1465 F: drivers/mmc/host/mmci.*
1466 F: include/linux/amba/mmci.h
1467
1468 ARM PRIMECELL SSP PL022 SPI DRIVER
1469 M: Linus Walleij <linus.walleij@linaro.org>
1470 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1471 S: Maintained
1472 F: Documentation/devicetree/bindings/spi/spi-pl022.yaml
1473 F: drivers/spi/spi-pl022.c
1474
1475 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1476 M: Russell King <linux@armlinux.org.uk>
1477 S: Odd Fixes
1478 F: drivers/tty/serial/amba-pl01*.c
1479 F: include/linux/amba/serial.h
1480
1481 ARM PRIMECELL VIC PL190/PL192 DRIVER
1482 M: Linus Walleij <linus.walleij@linaro.org>
1483 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1484 S: Maintained
1485 F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1486 F: drivers/irqchip/irq-vic.c
1487
1488 ARM SMC WATCHDOG DRIVER
1489 M: Julius Werner <jwerner@chromium.org>
1490 R: Evan Benn <evanbenn@chromium.org>
1491 S: Maintained
1492 F: devicetree/bindings/watchdog/arm-smc-wdt.yaml
1493 F: drivers/watchdog/arm_smc_wdt.c
1494
1495 ARM SMMU DRIVERS
1496 M: Will Deacon <will@kernel.org>
1497 R: Robin Murphy <robin.murphy@arm.com>
1498 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1499 S: Maintained
1500 F: Documentation/devicetree/bindings/iommu/arm,smmu*
1501 F: drivers/iommu/arm-smmu*
1502 F: drivers/iommu/io-pgtable-arm-v7s.c
1503 F: drivers/iommu/io-pgtable-arm.c
1504
1505 ARM SUB-ARCHITECTURES
1506 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1507 S: Maintained
1508 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1509 F: arch/arm/mach-*/
1510 F: arch/arm/plat-*/
1511
1512 ARM/ACTIONS SEMI ARCHITECTURE
1513 M: Andreas Färber <afaerber@suse.de>
1514 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1515 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S: Maintained
1517 F: Documentation/devicetree/bindings/arm/actions.yaml
1518 F: Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1519 F: Documentation/devicetree/bindings/dma/owl-dma.txt
1520 F: Documentation/devicetree/bindings/i2c/i2c-owl.txt
1521 F: Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1522 F: Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1523 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1524 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1525 F: arch/arm/boot/dts/owl-*
1526 F: arch/arm/mach-actions/
1527 F: arch/arm64/boot/dts/actions/
1528 F: drivers/clk/actions/
1529 F: drivers/clocksource/timer-owl*
1530 F: drivers/dma/owl-dma.c
1531 F: drivers/i2c/busses/i2c-owl.c
1532 F: drivers/mmc/host/owl-mmc.c
1533 F: drivers/pinctrl/actions/*
1534 F: drivers/soc/actions/
1535 F: include/dt-bindings/power/owl-*
1536 F: include/linux/soc/actions/
1537 N: owl
1538
1539 ARM/ADS SPHERE MACHINE SUPPORT
1540 M: Lennert Buytenhek <kernel@wantstofly.org>
1541 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 S: Maintained
1543
1544 ARM/AFEB9260 MACHINE SUPPORT
1545 M: Sergey Lapin <slapin@ossfans.org>
1546 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 S: Maintained
1548
1549 ARM/AJECO 1ARM MACHINE SUPPORT
1550 M: Lennert Buytenhek <kernel@wantstofly.org>
1551 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1552 S: Maintained
1553
1554 ARM/Allwinner SoC Clock Support
1555 M: Emilio López <emilio@elopez.com.ar>
1556 S: Maintained
1557 F: drivers/clk/sunxi/
1558
1559 ARM/Allwinner sunXi SoC support
1560 M: Maxime Ripard <mripard@kernel.org>
1561 M: Chen-Yu Tsai <wens@csie.org>
1562 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1563 S: Maintained
1564 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1565 F: arch/arm/mach-sunxi/
1566 F: arch/arm64/boot/dts/allwinner/
1567 F: drivers/clk/sunxi-ng/
1568 F: drivers/pinctrl/sunxi/
1569 F: drivers/soc/sunxi/
1570 N: sun[x456789]i
1571 N: sun50i
1572
1573 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1574 M: Neil Armstrong <narmstrong@baylibre.com>
1575 M: Jerome Brunet <jbrunet@baylibre.com>
1576 L: linux-amlogic@lists.infradead.org
1577 S: Maintained
1578 F: Documentation/devicetree/bindings/clock/amlogic*
1579 F: drivers/clk/meson/
1580 F: include/dt-bindings/clock/gxbb*
1581 F: include/dt-bindings/clock/meson*
1582
1583 ARM/Amlogic Meson SoC Crypto Drivers
1584 M: Corentin Labbe <clabbe@baylibre.com>
1585 L: linux-crypto@vger.kernel.org
1586 L: linux-amlogic@lists.infradead.org
1587 S: Maintained
1588 F: Documentation/devicetree/bindings/crypto/amlogic*
1589 F: drivers/crypto/amlogic/
1590
1591 ARM/Amlogic Meson SoC Sound Drivers
1592 M: Jerome Brunet <jbrunet@baylibre.com>
1593 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1594 S: Maintained
1595 F: Documentation/devicetree/bindings/sound/amlogic*
1596 F: sound/soc/meson/
1597
1598 ARM/Amlogic Meson SoC support
1599 M: Kevin Hilman <khilman@baylibre.com>
1600 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 L: linux-amlogic@lists.infradead.org
1602 S: Maintained
1603 W: http://linux-meson.com/
1604 F: arch/arm/boot/dts/meson*
1605 F: arch/arm/mach-meson/
1606 F: arch/arm64/boot/dts/amlogic/
1607 F: drivers/mmc/host/meson*
1608 F: drivers/pinctrl/meson/
1609 F: drivers/rtc/rtc-meson*
1610 F: drivers/soc/amlogic/
1611 N: meson
1612
1613 ARM/Annapurna Labs ALPINE ARCHITECTURE
1614 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1615 M: Antoine Tenart <antoine.tenart@bootlin.com>
1616 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 S: Maintained
1618 F: arch/arm/boot/dts/alpine*
1619 F: arch/arm/mach-alpine/
1620 F: arch/arm64/boot/dts/al/
1621 F: drivers/*/*alpine*
1622
1623 ARM/ARTPEC MACHINE SUPPORT
1624 M: Jesper Nilsson <jesper.nilsson@axis.com>
1625 M: Lars Persson <lars.persson@axis.com>
1626 L: linux-arm-kernel@axis.com
1627 S: Maintained
1628 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1629 F: arch/arm/boot/dts/artpec6*
1630 F: arch/arm/mach-artpec
1631 F: drivers/clk/axis
1632 F: drivers/crypto/axis
1633 F: drivers/mmc/host/usdhi6rol0.c
1634 F: drivers/pinctrl/pinctrl-artpec*
1635
1636 ARM/ASPEED I2C DRIVER
1637 M: Brendan Higgins <brendanhiggins@google.com>
1638 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
1639 R: Joel Stanley <joel@jms.id.au>
1640 L: linux-i2c@vger.kernel.org
1641 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
1642 S: Maintained
1643 F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1644 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1645 F: drivers/i2c/busses/i2c-aspeed.c
1646 F: drivers/irqchip/irq-aspeed-i2c-ic.c
1647
1648 ARM/ASPEED MACHINE SUPPORT
1649 M: Joel Stanley <joel@jms.id.au>
1650 R: Andrew Jeffery <andrew@aj.id.au>
1651 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1652 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1653 S: Supported
1654 Q: https://patchwork.ozlabs.org/project/linux-aspeed/list/
1655 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1656 F: arch/arm/boot/dts/aspeed-*
1657 F: arch/arm/mach-aspeed/
1658 N: aspeed
1659
1660 ARM/BITMAIN ARCHITECTURE
1661 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1662 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1663 S: Maintained
1664 F: Documentation/devicetree/bindings/arm/bitmain.yaml
1665 F: Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1666 F: Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1667 F: arch/arm64/boot/dts/bitmain/
1668 F: drivers/clk/clk-bm1880.c
1669 F: drivers/pinctrl/pinctrl-bm1880.c
1670
1671 ARM/CALXEDA HIGHBANK ARCHITECTURE
1672 M: Andre Przywara <andre.przywara@arm.com>
1673 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674 S: Maintained
1675 F: arch/arm/boot/dts/ecx-*.dts*
1676 F: arch/arm/boot/dts/highbank.dts
1677 F: arch/arm/mach-highbank/
1678
1679 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1680 M: Krzysztof Halasa <khalasa@piap.pl>
1681 S: Maintained
1682 F: arch/arm/mach-cns3xxx/
1683
1684 ARM/CAVIUM THUNDER NETWORK DRIVER
1685 M: Sunil Goutham <sgoutham@marvell.com>
1686 M: Robert Richter <rrichter@marvell.com>
1687 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S: Supported
1689 F: drivers/net/ethernet/cavium/thunder/
1690
1691 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1692 M: Lukasz Majewski <lukma@denx.de>
1693 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1694 S: Maintained
1695 F: arch/arm/mach-ep93xx/ts72xx.c
1696
1697 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1698 M: Alexander Shiyan <shc_work@mail.ru>
1699 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1700 S: Odd Fixes
1701 N: clps711x
1702
1703 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1704 M: Lennert Buytenhek <kernel@wantstofly.org>
1705 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1706 S: Maintained
1707
1708 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1709 M: Hartley Sweeten <hsweeten@visionengravers.com>
1710 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1711 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1712 S: Maintained
1713 F: arch/arm/mach-ep93xx/
1714 F: arch/arm/mach-ep93xx/include/mach/
1715
1716 ARM/CLKDEV SUPPORT
1717 M: Russell King <linux@armlinux.org.uk>
1718 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1719 S: Maintained
1720 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1721 F: drivers/clk/clkdev.c
1722
1723 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1724 M: Baruch Siach <baruch@tkos.co.il>
1725 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 S: Maintained
1727 F: arch/arm/boot/dts/cx92755*
1728 N: digicolor
1729
1730 ARM/CONTEC MICRO9 MACHINE SUPPORT
1731 M: Hubert Feurstein <hubert.feurstein@contec.at>
1732 S: Maintained
1733 F: arch/arm/mach-ep93xx/micro9.c
1734
1735 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1736 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1737 R: Suzuki K Poulose <suzuki.poulose@arm.com>
1738 R: Mike Leach <mike.leach@linaro.org>
1739 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S: Maintained
1741 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1742 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1743 F: Documentation/devicetree/bindings/arm/coresight-cti.yaml
1744 F: Documentation/devicetree/bindings/arm/coresight.txt
1745 F: Documentation/trace/coresight/*
1746 F: drivers/hwtracing/coresight/*
1747 F: include/dt-bindings/arm/coresight-cti-dt.h
1748 F: tools/perf/arch/arm/util/auxtrace.c
1749 F: tools/perf/arch/arm/util/cs-etm.c
1750 F: tools/perf/arch/arm/util/cs-etm.h
1751 F: tools/perf/arch/arm/util/pmu.c
1752 F: tools/perf/util/cs-etm-decoder/*
1753 F: tools/perf/util/cs-etm.*
1754
1755 ARM/CORGI MACHINE SUPPORT
1756 M: Richard Purdie <rpurdie@rpsys.net>
1757 S: Maintained
1758
1759 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1760 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1761 M: Linus Walleij <linus.walleij@linaro.org>
1762 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S: Maintained
1764 T: git git://github.com/ulli-kroll/linux.git
1765 F: Documentation/devicetree/bindings/arm/gemini.txt
1766 F: Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1767 F: Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1768 F: Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1769 F: arch/arm/mach-gemini/
1770 F: drivers/net/ethernet/cortina/
1771 F: drivers/pinctrl/pinctrl-gemini.c
1772 F: drivers/rtc/rtc-ftrtc010.c
1773
1774 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1775 M: Barry Song <baohua@kernel.org>
1776 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777 S: Maintained
1778 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1779 F: arch/arm/boot/dts/prima2*
1780 F: arch/arm/mach-prima2/
1781 F: drivers/clk/sirf/
1782 F: drivers/clocksource/timer-atlas7.c
1783 F: drivers/clocksource/timer-prima2.c
1784 X: drivers/gnss
1785 N: [^a-z]sirf
1786
1787 ARM/CZ.NIC TURRIS MOX SUPPORT
1788 M: Marek Behun <marek.behun@nic.cz>
1789 S: Maintained
1790 W: http://mox.turris.cz
1791 F: Documentation/ABI/testing/debugfs-moxtet
1792 F: Documentation/ABI/testing/sysfs-bus-moxtet-devices
1793 F: Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1794 F: Documentation/devicetree/bindings/bus/moxtet.txt
1795 F: Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1796 F: Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1797 F: drivers/bus/moxtet.c
1798 F: drivers/firmware/turris-mox-rwtm.c
1799 F: drivers/gpio/gpio-moxtet.c
1800 F: include/linux/moxtet.h
1801
1802 ARM/EBSA110 MACHINE SUPPORT
1803 M: Russell King <linux@armlinux.org.uk>
1804 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S: Maintained
1806 W: http://www.armlinux.org.uk/
1807 F: arch/arm/mach-ebsa110/
1808 F: drivers/net/ethernet/amd/am79c961a.*
1809
1810 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1811 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1812 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1813 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S: Maintained
1815 N: efm32
1816
1817 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1818 M: Robert Jarzmik <robert.jarzmik@free.fr>
1819 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S: Maintained
1821 F: arch/arm/mach-pxa/ezx.c
1822
1823 ARM/FARADAY FA526 PORT
1824 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1825 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S: Maintained
1827 T: git git://git.berlios.de/gemini-board
1828 F: arch/arm/mm/*-fa*
1829
1830 ARM/FOOTBRIDGE ARCHITECTURE
1831 M: Russell King <linux@armlinux.org.uk>
1832 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 S: Maintained
1834 W: http://www.armlinux.org.uk/
1835 F: arch/arm/include/asm/hardware/dec21285.h
1836 F: arch/arm/mach-footbridge/
1837
1838 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1839 M: Shawn Guo <shawnguo@kernel.org>
1840 M: Sascha Hauer <s.hauer@pengutronix.de>
1841 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1842 R: Fabio Estevam <festevam@gmail.com>
1843 R: NXP Linux Team <linux-imx@nxp.com>
1844 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S: Maintained
1846 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1847 X: drivers/media/i2c/
1848 N: imx
1849 N: mxs
1850
1851 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1852 M: Shawn Guo <shawnguo@kernel.org>
1853 M: Li Yang <leoyang.li@nxp.com>
1854 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1855 S: Maintained
1856 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1857 F: arch/arm/boot/dts/ls1021a*
1858 F: arch/arm64/boot/dts/freescale/fsl-*
1859 F: arch/arm64/boot/dts/freescale/qoriq-*
1860
1861 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1862 M: Shawn Guo <shawnguo@kernel.org>
1863 M: Sascha Hauer <s.hauer@pengutronix.de>
1864 R: Pengutronix Kernel Team <kernel@pengutronix.de>
1865 R: Stefan Agner <stefan@agner.ch>
1866 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S: Maintained
1868 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1869 F: arch/arm/boot/dts/vf*
1870 F: arch/arm/mach-imx/*vf610*
1871
1872 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1873 M: Lennert Buytenhek <kernel@wantstofly.org>
1874 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1875 S: Maintained
1876
1877 ARM/GUMSTIX MACHINE SUPPORT
1878 M: Steve Sakoman <sakoman@gmail.com>
1879 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S: Maintained
1881
1882 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1883 M: Philipp Zabel <philipp.zabel@gmail.com>
1884 M: Paul Parsons <lost.distance@yahoo.com>
1885 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S: Maintained
1887 F: arch/arm/mach-pxa/hx4700.c
1888 F: arch/arm/mach-pxa/include/mach/hx4700.h
1889 F: sound/soc/pxa/hx4700.c
1890
1891 ARM/HISILICON SOC SUPPORT
1892 M: Wei Xu <xuwei5@hisilicon.com>
1893 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 S: Supported
1895 W: http://www.hisilicon.com
1896 T: git git://github.com/hisilicon/linux-hisi.git
1897 F: arch/arm/boot/dts/hi3*
1898 F: arch/arm/boot/dts/hip*
1899 F: arch/arm/boot/dts/hisi*
1900 F: arch/arm/mach-hisi/
1901 F: arch/arm64/boot/dts/hisilicon/
1902
1903 ARM/HP JORNADA 7XX MACHINE SUPPORT
1904 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1905 S: Maintained
1906 W: www.jlime.com
1907 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1908 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1909 F: arch/arm/mach-sa1100/jornada720.c
1910
1911 ARM/IGEP MACHINE SUPPORT
1912 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1913 M: Javier Martinez Canillas <javier@dowhile0.org>
1914 L: linux-omap@vger.kernel.org
1915 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 S: Maintained
1917 F: arch/arm/boot/dts/omap3-igep*
1918
1919 ARM/INCOME PXA270 SUPPORT
1920 M: Marek Vasut <marek.vasut@gmail.com>
1921 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S: Maintained
1923 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1924
1925 ARM/INTEL IOP32X ARM ARCHITECTURE
1926 M: Lennert Buytenhek <kernel@wantstofly.org>
1927 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S: Maintained
1929
1930 ARM/INTEL IQ81342EX MACHINE SUPPORT
1931 M: Lennert Buytenhek <kernel@wantstofly.org>
1932 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S: Maintained
1934
1935 ARM/INTEL IXDP2850 MACHINE SUPPORT
1936 M: Lennert Buytenhek <kernel@wantstofly.org>
1937 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S: Maintained
1939
1940 ARM/INTEL IXP4XX ARM ARCHITECTURE
1941 M: Linus Walleij <linusw@kernel.org>
1942 M: Imre Kaloz <kaloz@openwrt.org>
1943 M: Krzysztof Halasa <khalasa@piap.pl>
1944 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S: Maintained
1946 F: Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1947 F: Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1948 F: Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1949 F: Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1950 F: arch/arm/mach-ixp4xx/
1951 F: drivers/clocksource/timer-ixp4xx.c
1952 F: drivers/gpio/gpio-ixp4xx.c
1953 F: drivers/irqchip/irq-ixp4xx.c
1954 F: include/linux/irqchip/irq-ixp4xx.h
1955 F: include/linux/platform_data/timer-ixp4xx.h
1956
1957 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1958 M: Jonathan Cameron <jic23@cam.ac.uk>
1959 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S: Maintained
1961 F: arch/arm/mach-pxa/stargate2.c
1962 F: drivers/pcmcia/pxa2xx_stargate2.c
1963
1964 ARM/INTEL XSC3 (MANZANO) ARM CORE
1965 M: Lennert Buytenhek <kernel@wantstofly.org>
1966 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S: Maintained
1968
1969 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1970 M: Lennert Buytenhek <kernel@wantstofly.org>
1971 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S: Maintained
1973
1974 ARM/LG1K ARCHITECTURE
1975 M: Chanho Min <chanho.min@lge.com>
1976 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S: Maintained
1978 F: arch/arm64/boot/dts/lg/
1979
1980 ARM/LOGICPD PXA270 MACHINE SUPPORT
1981 M: Lennert Buytenhek <kernel@wantstofly.org>
1982 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S: Maintained
1984
1985 ARM/LPC18XX ARCHITECTURE
1986 M: Vladimir Zapolskiy <vz@mleia.com>
1987 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S: Maintained
1989 F: Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1990 F: arch/arm/boot/dts/lpc43*
1991 F: drivers/i2c/busses/i2c-lpc2k.c
1992 F: drivers/memory/pl172.c
1993 F: drivers/mtd/spi-nor/controllers/nxp-spifi.c
1994 F: drivers/rtc/rtc-lpc24xx.c
1995 N: lpc18xx
1996
1997 ARM/LPC32XX SOC SUPPORT
1998 M: Vladimir Zapolskiy <vz@mleia.com>
1999 M: Sylvain Lemieux <slemieux.tyco@gmail.com>
2000 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2001 S: Maintained
2002 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
2003 F: Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2004 F: arch/arm/boot/dts/lpc32*
2005 F: arch/arm/mach-lpc32xx/
2006 F: drivers/i2c/busses/i2c-pnx.c
2007 F: drivers/net/ethernet/nxp/lpc_eth.c
2008 F: drivers/usb/host/ohci-nxp.c
2009 F: drivers/watchdog/pnx4008_wdt.c
2010 N: lpc32xx
2011
2012 ARM/MAGICIAN MACHINE SUPPORT
2013 M: Philipp Zabel <philipp.zabel@gmail.com>
2014 S: Maintained
2015
2016 ARM/Marvell Dove/MV78xx0/Orion SOC support
2017 M: Jason Cooper <jason@lakedaemon.net>
2018 M: Andrew Lunn <andrew@lunn.ch>
2019 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2020 M: Gregory Clement <gregory.clement@bootlin.com>
2021 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2022 S: Maintained
2023 T: git git://git.infradead.org/linux-mvebu.git
2024 F: Documentation/devicetree/bindings/soc/dove/
2025 F: arch/arm/boot/dts/dove*
2026 F: arch/arm/boot/dts/orion5x*
2027 F: arch/arm/mach-dove/
2028 F: arch/arm/mach-mv78xx0/
2029 F: arch/arm/mach-orion5x/
2030 F: arch/arm/plat-orion/
2031 F: drivers/soc/dove/
2032
2033 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2034 M: Jason Cooper <jason@lakedaemon.net>
2035 M: Andrew Lunn <andrew@lunn.ch>
2036 M: Gregory Clement <gregory.clement@bootlin.com>
2037 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2038 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 S: Maintained
2040 T: git git://git.infradead.org/linux-mvebu.git
2041 F: arch/arm/boot/dts/armada*
2042 F: arch/arm/boot/dts/kirkwood*
2043 F: arch/arm/configs/mvebu_*_defconfig
2044 F: arch/arm/mach-mvebu/
2045 F: arch/arm64/boot/dts/marvell/armada*
2046 F: arch/arm64/boot/dts/marvell/cn913*
2047 F: drivers/cpufreq/armada-37xx-cpufreq.c
2048 F: drivers/cpufreq/armada-8k-cpufreq.c
2049 F: drivers/cpufreq/mvebu-cpufreq.c
2050 F: drivers/irqchip/irq-armada-370-xp.c
2051 F: drivers/irqchip/irq-mvebu-*
2052 F: drivers/pinctrl/mvebu/
2053 F: drivers/rtc/rtc-armada38x.c
2054
2055 ARM/Mediatek RTC DRIVER
2056 M: Eddie Huang <eddie.huang@mediatek.com>
2057 M: Sean Wang <sean.wang@mediatek.com>
2058 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2059 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2060 S: Maintained
2061 F: Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2062 F: Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2063 F: drivers/rtc/rtc-mt2712.c
2064 F: drivers/rtc/rtc-mt6397.c
2065 F: drivers/rtc/rtc-mt7622.c
2066
2067 ARM/Mediatek SoC support
2068 M: Matthias Brugger <matthias.bgg@gmail.com>
2069 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2071 S: Maintained
2072 W: https://mtk.bcnfs.org/
2073 C: irc://chat.freenode.net/linux-mediatek
2074 F: arch/arm/boot/dts/mt6*
2075 F: arch/arm/boot/dts/mt7*
2076 F: arch/arm/boot/dts/mt8*
2077 F: arch/arm/mach-mediatek/
2078 F: arch/arm64/boot/dts/mediatek/
2079 F: drivers/soc/mediatek/
2080 N: mtk
2081 N: mt[678]
2082 K: mediatek
2083
2084 ARM/Mediatek USB3 PHY DRIVER
2085 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
2086 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2087 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2088 S: Maintained
2089 F: Documentation/devicetree/bindings/phy/phy-mtk-*
2090 F: drivers/phy/mediatek/
2091
2092 ARM/Microchip (AT91) SoC support
2093 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2094 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
2095 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2096 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 S: Supported
2098 W: http://www.linux4sam.org
2099 T: git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2100 F: arch/arm/boot/dts/at91*.dts
2101 F: arch/arm/boot/dts/at91*.dtsi
2102 F: arch/arm/boot/dts/sama*.dts
2103 F: arch/arm/boot/dts/sama*.dtsi
2104 F: arch/arm/include/debug/at91.S
2105 F: arch/arm/mach-at91/
2106 F: drivers/memory/atmel*
2107 F: drivers/watchdog/sama5d4_wdt.c
2108 F: include/soc/at91/
2109 X: drivers/input/touchscreen/atmel_mxt_ts.c
2110 X: drivers/net/wireless/atmel/
2111 N: at91
2112 N: atmel
2113
2114 ARM/MIOA701 MACHINE SUPPORT
2115 M: Robert Jarzmik <robert.jarzmik@free.fr>
2116 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2117 S: Maintained
2118 F: arch/arm/mach-pxa/mioa701.c
2119
2120 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2121 M: Michael Petchkovsky <mkpetch@internode.on.net>
2122 S: Maintained
2123
2124 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2125 M: Linus Walleij <linus.walleij@linaro.org>
2126 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2127 S: Maintained
2128 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2129 F: Documentation/devicetree/bindings/arm/ste-*
2130 F: Documentation/devicetree/bindings/arm/ux500.yaml
2131 F: Documentation/devicetree/bindings/arm/ux500/
2132 F: Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2133 F: Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2134 F: arch/arm/boot/dts/ste-*
2135 F: arch/arm/mach-nomadik/
2136 F: arch/arm/mach-u300/
2137 F: arch/arm/mach-ux500/
2138 F: drivers/clk/clk-nomadik.c
2139 F: drivers/clk/clk-u300.c
2140 F: drivers/clocksource/clksrc-dbx500-prcmu.c
2141 F: drivers/clocksource/timer-u300.c
2142 F: drivers/dma/coh901318*
2143 F: drivers/dma/ste_dma40*
2144 F: drivers/hwspinlock/u8500_hsem.c
2145 F: drivers/i2c/busses/i2c-nomadik.c
2146 F: drivers/i2c/busses/i2c-stu300.c
2147 F: drivers/iio/adc/ab8500-gpadc.c
2148 F: drivers/mfd/ab3100*
2149 F: drivers/mfd/ab8500*
2150 F: drivers/mfd/abx500*
2151 F: drivers/mfd/db8500*
2152 F: drivers/mfd/dbx500*
2153 F: drivers/pinctrl/nomadik/
2154 F: drivers/pinctrl/pinctrl-coh901*
2155 F: drivers/pinctrl/pinctrl-u300.c
2156 F: drivers/rtc/rtc-ab3100.c
2157 F: drivers/rtc/rtc-ab8500.c
2158 F: drivers/rtc/rtc-coh901331.c
2159 F: drivers/rtc/rtc-pl031.c
2160 F: drivers/soc/ux500/
2161 F: drivers/watchdog/coh901327_wdt.c
2162
2163 ARM/NUVOTON NPCM ARCHITECTURE
2164 M: Avi Fishman <avifishman70@gmail.com>
2165 M: Tomer Maimon <tmaimon77@gmail.com>
2166 M: Tali Perry <tali.perry1@gmail.com>
2167 R: Patrick Venture <venture@google.com>
2168 R: Nancy Yuen <yuenn@google.com>
2169 R: Benjamin Fair <benjaminfair@google.com>
2170 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2171 S: Supported
2172 F: Documentation/devicetree/bindings/*/*/*npcm*
2173 F: Documentation/devicetree/bindings/*/*npcm*
2174 F: arch/arm/boot/dts/nuvoton-npcm*
2175 F: arch/arm/mach-npcm/
2176 F: drivers/*/*npcm*
2177 F: drivers/*/*/*npcm*
2178 F: include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2179
2180 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2181 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
2182 S: Orphan
2183 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
2184 F: arch/arm/mach-s3c24xx/gta02.h
2185 F: arch/arm/mach-s3c24xx/mach-gta02.c
2186
2187 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2188 M: Alexander Clouter <alex@digriz.org.uk>
2189 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2190 S: Maintained
2191 W: http://www.digriz.org.uk/ts78xx/kernel
2192 F: arch/arm/mach-orion5x/ts78xx-*
2193
2194 ARM/OXNAS platform support
2195 M: Neil Armstrong <narmstrong@baylibre.com>
2196 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 L: linux-oxnas@groups.io (moderated for non-subscribers)
2198 S: Maintained
2199 F: arch/arm/boot/dts/ox8*.dts*
2200 F: arch/arm/mach-oxnas/
2201 F: drivers/power/reset/oxnas-restart.c
2202 N: oxnas
2203
2204 ARM/PALM TREO SUPPORT
2205 M: Tomas Cech <sleep_walker@suse.com>
2206 L: linux-arm-kernel@lists.infradead.org
2207 S: Maintained
2208 W: http://hackndev.com
2209 F: arch/arm/mach-pxa/palmtreo.*
2210
2211 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2212 M: Marek Vasut <marek.vasut@gmail.com>
2213 L: linux-arm-kernel@lists.infradead.org
2214 S: Maintained
2215 W: http://hackndev.com
2216 F: arch/arm/mach-pxa/include/mach/palmld.h
2217 F: arch/arm/mach-pxa/include/mach/palmtc.h
2218 F: arch/arm/mach-pxa/include/mach/palmtx.h
2219 F: arch/arm/mach-pxa/palmld.c
2220 F: arch/arm/mach-pxa/palmt5.*
2221 F: arch/arm/mach-pxa/palmtc.c
2222 F: arch/arm/mach-pxa/palmte2.*
2223 F: arch/arm/mach-pxa/palmtx.c
2224
2225 ARM/PALMZ72 SUPPORT
2226 M: Sergey Lapin <slapin@ossfans.org>
2227 L: linux-arm-kernel@lists.infradead.org
2228 S: Maintained
2229 W: http://hackndev.com
2230 F: arch/arm/mach-pxa/palmz72.*
2231
2232 ARM/PLEB SUPPORT
2233 M: Peter Chubb <pleb@gelato.unsw.edu.au>
2234 S: Maintained
2235 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2236
2237 ARM/PT DIGITAL BOARD PORT
2238 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2239 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2240 S: Maintained
2241 W: http://www.armlinux.org.uk/
2242
2243 ARM/QUALCOMM SUPPORT
2244 M: Andy Gross <agross@kernel.org>
2245 M: Bjorn Andersson <bjorn.andersson@linaro.org>
2246 L: linux-arm-msm@vger.kernel.org
2247 S: Maintained
2248 T: git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2249 F: Documentation/devicetree/bindings/*/qcom*
2250 F: Documentation/devicetree/bindings/soc/qcom/
2251 F: arch/arm/boot/dts/qcom-*.dts
2252 F: arch/arm/boot/dts/qcom-*.dtsi
2253 F: arch/arm/mach-qcom/
2254 F: arch/arm64/boot/dts/qcom/
2255 F: drivers/*/*/qcom*
2256 F: drivers/*/*/qcom/
2257 F: drivers/*/pm8???-*
2258 F: drivers/*/qcom*
2259 F: drivers/*/qcom/
2260 F: drivers/bluetooth/btqcomsmd.c
2261 F: drivers/clocksource/timer-qcom.c
2262 F: drivers/cpuidle/cpuidle-qcom-spm.c
2263 F: drivers/extcon/extcon-qcom*
2264 F: drivers/i2c/busses/i2c-qcom-geni.c
2265 F: drivers/i2c/busses/i2c-qup.c
2266 F: drivers/iommu/msm*
2267 F: drivers/mfd/ssbi.c
2268 F: drivers/mmc/host/mmci_qcom*
2269 F: drivers/mmc/host/sdhci-msm.c
2270 F: drivers/pci/controller/dwc/pcie-qcom.c
2271 F: drivers/phy/qualcomm/
2272 F: drivers/power/*/msm*
2273 F: drivers/reset/reset-qcom-*
2274 F: drivers/scsi/ufs/ufs-qcom.*
2275 F: drivers/spi/spi-geni-qcom.c
2276 F: drivers/spi/spi-qcom-qspi.c
2277 F: drivers/spi/spi-qup.c
2278 F: drivers/tty/serial/msm_serial.c
2279 F: drivers/usb/dwc3/dwc3-qcom.c
2280 F: include/dt-bindings/*/qcom*
2281 F: include/linux/*/qcom*
2282
2283 ARM/RADISYS ENP2611 MACHINE SUPPORT
2284 M: Lennert Buytenhek <kernel@wantstofly.org>
2285 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2286 S: Maintained
2287
2288 ARM/RDA MICRO ARCHITECTURE
2289 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2290 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2291 L: linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2292 S: Maintained
2293 F: Documentation/devicetree/bindings/arm/rda.yaml
2294 F: Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2295 F: Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2296 F: Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2297 F: Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2298 F: arch/arm/boot/dts/rda8810pl-*
2299 F: drivers/clocksource/timer-rda.c
2300 F: drivers/gpio/gpio-rda.c
2301 F: drivers/irqchip/irq-rda-intc.c
2302 F: drivers/tty/serial/rda-uart.c
2303
2304 ARM/REALTEK ARCHITECTURE
2305 M: Andreas Färber <afaerber@suse.de>
2306 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2307 L: linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2308 S: Maintained
2309 F: Documentation/devicetree/bindings/arm/realtek.yaml
2310 F: arch/arm/boot/dts/rtd*
2311 F: arch/arm/mach-realtek/
2312 F: arch/arm64/boot/dts/realtek/
2313
2314 ARM/RENESAS ARM64 ARCHITECTURE
2315 M: Geert Uytterhoeven <geert+renesas@glider.be>
2316 M: Magnus Damm <magnus.damm@gmail.com>
2317 L: linux-renesas-soc@vger.kernel.org
2318 S: Supported
2319 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2320 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2321 F: Documentation/devicetree/bindings/arm/renesas.yaml
2322 F: arch/arm64/boot/dts/renesas/
2323 F: drivers/soc/renesas/
2324 F: include/linux/soc/renesas/
2325
2326 ARM/RISCPC ARCHITECTURE
2327 M: Russell King <linux@armlinux.org.uk>
2328 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2329 S: Maintained
2330 W: http://www.armlinux.org.uk/
2331 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
2332 F: arch/arm/include/asm/hardware/ioc.h
2333 F: arch/arm/include/asm/hardware/iomd.h
2334 F: arch/arm/include/asm/hardware/memc.h
2335 F: arch/arm/mach-rpc/
2336 F: drivers/net/ethernet/8390/etherh.c
2337 F: drivers/net/ethernet/i825xx/ether1*
2338 F: drivers/net/ethernet/seeq/ether3*
2339 F: drivers/scsi/arm/
2340
2341 ARM/Rockchip SoC support
2342 M: Heiko Stuebner <heiko@sntech.de>
2343 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2344 L: linux-rockchip@lists.infradead.org
2345 S: Maintained
2346 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2347 F: Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2348 F: Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2349 F: Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2350 F: arch/arm/boot/dts/rk3*
2351 F: arch/arm/boot/dts/rv1108*
2352 F: arch/arm/mach-rockchip/
2353 F: drivers/*/*/*rockchip*
2354 F: drivers/*/*rockchip*
2355 F: drivers/clk/rockchip/
2356 F: drivers/i2c/busses/i2c-rk3x.c
2357 F: sound/soc/rockchip/
2358 N: rockchip
2359
2360 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2361 M: Kukjin Kim <kgene@kernel.org>
2362 M: Krzysztof Kozlowski <krzk@kernel.org>
2363 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2364 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2365 S: Maintained
2366 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
2367 F: Documentation/arm/samsung/
2368 F: Documentation/devicetree/bindings/arm/samsung/
2369 F: Documentation/devicetree/bindings/power/pd-samsung.yaml
2370 F: arch/arm/boot/dts/exynos*
2371 F: arch/arm/boot/dts/s3c*
2372 F: arch/arm/boot/dts/s5p*
2373 F: arch/arm/mach-exynos*/
2374 F: arch/arm/mach-s3c24*/
2375 F: arch/arm/mach-s3c64xx/
2376 F: arch/arm/mach-s5p*/
2377 F: arch/arm/plat-samsung/
2378 F: arch/arm64/boot/dts/exynos/
2379 F: drivers/*/*/*s3c24*
2380 F: drivers/*/*s3c24*
2381 F: drivers/*/*s3c64xx*
2382 F: drivers/*/*s5pv210*
2383 F: drivers/memory/samsung/
2384 F: drivers/soc/samsung/
2385 F: drivers/tty/serial/samsung*
2386 F: include/linux/soc/samsung/
2387 N: exynos
2388
2389 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2390 M: Kyungmin Park <kyungmin.park@samsung.com>
2391 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2392 S: Maintained
2393 F: arch/arm/mach-s5pv210/
2394
2395 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2396 M: Kyungmin Park <kyungmin.park@samsung.com>
2397 M: Kamil Debski <kamil@wypas.org>
2398 M: Andrzej Hajda <a.hajda@samsung.com>
2399 L: linux-arm-kernel@lists.infradead.org
2400 L: linux-media@vger.kernel.org
2401 S: Maintained
2402 F: drivers/media/platform/s5p-g2d/
2403
2404 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2405 M: Marek Szyprowski <m.szyprowski@samsung.com>
2406 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2407 L: linux-media@vger.kernel.org
2408 S: Maintained
2409 F: Documentation/devicetree/bindings/media/s5p-cec.txt
2410 F: drivers/media/platform/s5p-cec/
2411
2412 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2413 M: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2414 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
2415 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
2416 L: linux-arm-kernel@lists.infradead.org
2417 L: linux-media@vger.kernel.org
2418 S: Maintained
2419 F: drivers/media/platform/s5p-jpeg/
2420
2421 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2422 M: Kyungmin Park <kyungmin.park@samsung.com>
2423 M: Kamil Debski <kamil@wypas.org>
2424 M: Jeongtae Park <jtp.park@samsung.com>
2425 M: Andrzej Hajda <a.hajda@samsung.com>
2426 L: linux-arm-kernel@lists.infradead.org
2427 L: linux-media@vger.kernel.org
2428 S: Maintained
2429 F: drivers/media/platform/s5p-mfc/
2430
2431 ARM/SHMOBILE ARM ARCHITECTURE
2432 M: Geert Uytterhoeven <geert+renesas@glider.be>
2433 M: Magnus Damm <magnus.damm@gmail.com>
2434 L: linux-renesas-soc@vger.kernel.org
2435 S: Supported
2436 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
2437 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2438 F: Documentation/devicetree/bindings/arm/renesas.yaml
2439 F: arch/arm/boot/dts/emev2*
2440 F: arch/arm/boot/dts/gr-peach*
2441 F: arch/arm/boot/dts/iwg20d-q7*
2442 F: arch/arm/boot/dts/r7s*
2443 F: arch/arm/boot/dts/r8a*
2444 F: arch/arm/boot/dts/r9a*
2445 F: arch/arm/boot/dts/sh*
2446 F: arch/arm/configs/shmobile_defconfig
2447 F: arch/arm/include/debug/renesas-scif.S
2448 F: arch/arm/mach-shmobile/
2449 F: drivers/soc/renesas/
2450 F: include/linux/soc/renesas/
2451
2452 ARM/SOCFPGA ARCHITECTURE
2453 M: Dinh Nguyen <dinguyen@kernel.org>
2454 S: Maintained
2455 W: http://www.rocketboards.org
2456 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2457 F: arch/arm/boot/dts/socfpga*
2458 F: arch/arm/configs/socfpga_defconfig
2459 F: arch/arm/mach-socfpga/
2460 F: arch/arm64/boot/dts/altera/
2461 F: arch/arm64/boot/dts/intel/
2462
2463 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2464 M: Dinh Nguyen <dinguyen@kernel.org>
2465 S: Maintained
2466 F: drivers/clk/socfpga/
2467
2468 ARM/SOCFPGA EDAC SUPPORT
2469 M: Thor Thayer <thor.thayer@linux.intel.com>
2470 S: Maintained
2471 F: drivers/edac/altera_edac.
2472
2473 ARM/SPREADTRUM SoC SUPPORT
2474 M: Orson Zhai <orsonzhai@gmail.com>
2475 M: Baolin Wang <baolin.wang7@gmail.com>
2476 M: Chunyan Zhang <zhang.lyra@gmail.com>
2477 S: Maintained
2478 F: arch/arm64/boot/dts/sprd
2479 N: sprd
2480 N: sc27xx
2481 N: sc2731
2482
2483 ARM/STI ARCHITECTURE
2484 M: Patrice Chotard <patrice.chotard@st.com>
2485 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2486 S: Maintained
2487 W: http://www.stlinux.com
2488 F: Documentation/devicetree/bindings/i2c/i2c-st.txt
2489 F: arch/arm/boot/dts/sti*
2490 F: arch/arm/mach-sti/
2491 F: drivers/ata/ahci_st.c
2492 F: drivers/char/hw_random/st-rng.c
2493 F: drivers/clocksource/arm_global_timer.c
2494 F: drivers/clocksource/clksrc_st_lpc.c
2495 F: drivers/cpufreq/sti-cpufreq.c
2496 F: drivers/dma/st_fdma*
2497 F: drivers/i2c/busses/i2c-st.c
2498 F: drivers/media/platform/sti/c8sectpfe/
2499 F: drivers/media/rc/st_rc.c
2500 F: drivers/mmc/host/sdhci-st.c
2501 F: drivers/phy/st/phy-miphy28lp.c
2502 F: drivers/phy/st/phy-stih407-usb.c
2503 F: drivers/pinctrl/pinctrl-st.c
2504 F: drivers/remoteproc/st_remoteproc.c
2505 F: drivers/remoteproc/st_slim_rproc.c
2506 F: drivers/reset/sti/
2507 F: drivers/rtc/rtc-st-lpc.c
2508 F: drivers/tty/serial/st-asc.c
2509 F: drivers/usb/dwc3/dwc3-st.c
2510 F: drivers/usb/host/ehci-st.c
2511 F: drivers/usb/host/ohci-st.c
2512 F: drivers/watchdog/st_lpc_wdt.c
2513 F: include/linux/remoteproc/st_slim_rproc.h
2514
2515 ARM/STM32 ARCHITECTURE
2516 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
2517 M: Alexandre Torgue <alexandre.torgue@st.com>
2518 L: linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2519 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2520 S: Maintained
2521 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2522 F: arch/arm/boot/dts/stm32*
2523 F: arch/arm/mach-stm32/
2524 F: drivers/clocksource/armv7m_systick.c
2525 N: stm32
2526 N: stm
2527
2528 ARM/Synaptics SoC support
2529 M: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2530 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2531 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2532 S: Maintained
2533 F: arch/arm/boot/dts/berlin*
2534 F: arch/arm/mach-berlin/
2535 F: arch/arm64/boot/dts/synaptics/
2536
2537 ARM/TANGO ARCHITECTURE
2538 M: Marc Gonzalez <marc.w.gonzalez@free.fr>
2539 M: Mans Rullgard <mans@mansr.com>
2540 L: linux-arm-kernel@lists.infradead.org
2541 S: Odd Fixes
2542 N: tango
2543
2544 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2545 M: Lennert Buytenhek <kernel@wantstofly.org>
2546 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 S: Maintained
2548
2549 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2550 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
2551 L: linux-tegra@vger.kernel.org
2552 L: linux-media@vger.kernel.org
2553 S: Maintained
2554 F: Documentation/devicetree/bindings/media/tegra-cec.txt
2555 F: drivers/media/platform/tegra-cec/
2556
2557 ARM/TETON BGA MACHINE SUPPORT
2558 M: "Mark F. Brown" <mark.brown314@gmail.com>
2559 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2560 S: Maintained
2561
2562 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2563 M: Santosh Shilimkar <ssantosh@kernel.org>
2564 L: linux-kernel@vger.kernel.org
2565 S: Maintained
2566 F: drivers/memory/*emif*
2567
2568 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2569 M: Santosh Shilimkar <ssantosh@kernel.org>
2570 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2571 S: Maintained
2572 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2573 F: arch/arm/boot/dts/keystone-*
2574 F: arch/arm/mach-keystone/
2575
2576 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2577 M: Santosh Shilimkar <ssantosh@kernel.org>
2578 L: linux-kernel@vger.kernel.org
2579 S: Maintained
2580 F: drivers/clk/keystone/
2581
2582 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2583 M: Santosh Shilimkar <ssantosh@kernel.org>
2584 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2585 L: linux-kernel@vger.kernel.org
2586 S: Maintained
2587 F: drivers/clocksource/timer-keystone.c
2588
2589 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2590 M: Santosh Shilimkar <ssantosh@kernel.org>
2591 L: linux-kernel@vger.kernel.org
2592 S: Maintained
2593 F: drivers/power/reset/keystone-reset.c
2594
2595 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2596 M: Tero Kristo <t-kristo@ti.com>
2597 M: Nishanth Menon <nm@ti.com>
2598 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2599 S: Supported
2600 F: Documentation/devicetree/bindings/arm/ti/k3.txt
2601 F: arch/arm64/boot/dts/ti/Makefile
2602 F: arch/arm64/boot/dts/ti/k3-*
2603 F: include/dt-bindings/pinctrl/k3.h
2604
2605 ARM/THECUS N2100 MACHINE SUPPORT
2606 M: Lennert Buytenhek <kernel@wantstofly.org>
2607 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2608 S: Maintained
2609
2610 ARM/TOSA MACHINE SUPPORT
2611 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2612 M: Dirk Opfer <dirk@opfer-online.de>
2613 S: Maintained
2614
2615 ARM/UNIPHIER ARCHITECTURE
2616 M: Masahiro Yamada <yamada.masahiro@socionext.com>
2617 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2618 S: Maintained
2619 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2620 F: Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2621 F: Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2622 F: Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2623 F: arch/arm/boot/dts/uniphier*
2624 F: arch/arm/include/asm/hardware/cache-uniphier.h
2625 F: arch/arm/mach-uniphier/
2626 F: arch/arm/mm/cache-uniphier.c
2627 F: arch/arm64/boot/dts/socionext/uniphier*
2628 F: drivers/bus/uniphier-system-bus.c
2629 F: drivers/clk/uniphier/
2630 F: drivers/dma/uniphier-mdmac.c
2631 F: drivers/gpio/gpio-uniphier.c
2632 F: drivers/i2c/busses/i2c-uniphier*
2633 F: drivers/irqchip/irq-uniphier-aidet.c
2634 F: drivers/mmc/host/uniphier-sd.c
2635 F: drivers/pinctrl/uniphier/
2636 F: drivers/reset/reset-uniphier.c
2637 F: drivers/tty/serial/8250/8250_uniphier.c
2638 N: uniphier
2639
2640 ARM/VERSATILE EXPRESS PLATFORM
2641 M: Liviu Dudau <liviu.dudau@arm.com>
2642 M: Sudeep Holla <sudeep.holla@arm.com>
2643 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2644 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2645 S: Maintained
2646 F: */*/*/vexpress*
2647 F: */*/vexpress*
2648 F: arch/arm/boot/dts/vexpress*
2649 F: arch/arm/mach-vexpress/
2650 F: arch/arm64/boot/dts/arm/
2651 F: drivers/clk/versatile/clk-vexpress-osc.c
2652 F: drivers/clocksource/timer-versatile.c
2653 N: mps2
2654
2655 ARM/VFP SUPPORT
2656 M: Russell King <linux@armlinux.org.uk>
2657 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2658 S: Maintained
2659 W: http://www.armlinux.org.uk/
2660 F: arch/arm/vfp/
2661
2662 ARM/VOIPAC PXA270 SUPPORT
2663 M: Marek Vasut <marek.vasut@gmail.com>
2664 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 S: Maintained
2666 F: arch/arm/mach-pxa/include/mach/vpac270.h
2667 F: arch/arm/mach-pxa/vpac270.c
2668
2669 ARM/VT8500 ARM ARCHITECTURE
2670 M: Tony Prisk <linux@prisktech.co.nz>
2671 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2672 S: Maintained
2673 F: Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2674 F: arch/arm/mach-vt8500/
2675 F: drivers/clocksource/timer-vt8500.c
2676 F: drivers/i2c/busses/i2c-wmt.c
2677 F: drivers/mmc/host/wmt-sdmmc.c
2678 F: drivers/pwm/pwm-vt8500.c
2679 F: drivers/rtc/rtc-vt8500.c
2680 F: drivers/tty/serial/vt8500_serial.c
2681 F: drivers/usb/host/ehci-platform.c
2682 F: drivers/usb/host/uhci-platform.c
2683 F: drivers/video/fbdev/vt8500lcdfb.*
2684 F: drivers/video/fbdev/wm8505fb*
2685 F: drivers/video/fbdev/wmt_ge_rops.*
2686
2687 ARM/ZIPIT Z2 SUPPORT
2688 M: Marek Vasut <marek.vasut@gmail.com>
2689 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2690 S: Maintained
2691 F: arch/arm/mach-pxa/include/mach/z2.h
2692 F: arch/arm/mach-pxa/z2.c
2693
2694 ARM/ZTE ARCHITECTURE
2695 M: Jun Nie <jun.nie@linaro.org>
2696 M: Shawn Guo <shawnguo@kernel.org>
2697 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S: Maintained
2699 F: Documentation/devicetree/bindings/arm/zte.yaml
2700 F: Documentation/devicetree/bindings/clock/zx2967*.txt
2701 F: Documentation/devicetree/bindings/dma/zxdma.txt
2702 F: Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2703 F: Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2704 F: Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2705 F: Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2706 F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2707 F: Documentation/devicetree/bindings/soc/zte/
2708 F: Documentation/devicetree/bindings/sound/zte,*.txt
2709 F: Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2710 F: Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2711 F: arch/arm/boot/dts/zx2967*
2712 F: arch/arm/mach-zx/
2713 F: arch/arm64/boot/dts/zte/
2714 F: drivers/clk/zte/
2715 F: drivers/dma/zx_dma.c
2716 F: drivers/gpio/gpio-zx.c
2717 F: drivers/i2c/busses/i2c-zx2967.c
2718 F: drivers/mmc/host/dw_mmc-zx.*
2719 F: drivers/pinctrl/zte/
2720 F: drivers/soc/zte/
2721 F: drivers/thermal/zx2967_thermal.c
2722 F: drivers/watchdog/zx2967_wdt.c
2723 F: include/dt-bindings/clock/zx2967*.h
2724 F: include/dt-bindings/soc/zte,*.h
2725 F: sound/soc/codecs/zx_aud96p22.c
2726 F: sound/soc/zte/
2727
2728 ARM/ZYNQ ARCHITECTURE
2729 M: Michal Simek <michal.simek@xilinx.com>
2730 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2731 S: Supported
2732 W: http://wiki.xilinx.com
2733 T: git https://github.com/Xilinx/linux-xlnx.git
2734 F: Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2735 F: Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2736 F: arch/arm/mach-zynq/
2737 F: drivers/block/xsysace.c
2738 F: drivers/clocksource/timer-cadence-ttc.c
2739 F: drivers/cpuidle/cpuidle-zynq.c
2740 F: drivers/edac/synopsys_edac.c
2741 F: drivers/i2c/busses/i2c-cadence.c
2742 F: drivers/i2c/busses/i2c-xiic.c
2743 F: drivers/mmc/host/sdhci-of-arasan.c
2744 N: zynq
2745 N: xilinx
2746
2747 ARM64 PORT (AARCH64 ARCHITECTURE)
2748 M: Catalin Marinas <catalin.marinas@arm.com>
2749 M: Will Deacon <will@kernel.org>
2750 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2751 S: Maintained
2752 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2753 F: Documentation/arm64/
2754 F: arch/arm64/
2755 F: tools/testing/selftests/arm64/
2756 X: arch/arm64/boot/dts/
2757
2758 AS3645A LED FLASH CONTROLLER DRIVER
2759 M: Sakari Ailus <sakari.ailus@iki.fi>
2760 L: linux-leds@vger.kernel.org
2761 S: Maintained
2762 F: drivers/leds/leds-as3645a.c
2763
2764 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2765 M: Tianshu Qiu <tian.shu.qiu@intel.com>
2766 L: linux-media@vger.kernel.org
2767 S: Maintained
2768 T: git git://linuxtv.org/media_tree.git
2769 F: Documentation/devicetree/bindings/media/i2c/ak7375.txt
2770 F: drivers/media/i2c/ak7375.c
2771
2772 ASAHI KASEI AK8974 DRIVER
2773 M: Linus Walleij <linus.walleij@linaro.org>
2774 L: linux-iio@vger.kernel.org
2775 S: Supported
2776 W: http://www.akm.com/
2777 F: drivers/iio/magnetometer/ak8974.c
2778
2779 ASC7621 HARDWARE MONITOR DRIVER
2780 M: George Joseph <george.joseph@fairview5.com>
2781 L: linux-hwmon@vger.kernel.org
2782 S: Maintained
2783 F: Documentation/hwmon/asc7621.rst
2784 F: drivers/hwmon/asc7621.c
2785
2786 ASPEED PINCTRL DRIVERS
2787 M: Andrew Jeffery <andrew@aj.id.au>
2788 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2789 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2790 L: linux-gpio@vger.kernel.org
2791 S: Maintained
2792 F: Documentation/devicetree/bindings/pinctrl/aspeed,*
2793 F: drivers/pinctrl/aspeed/
2794
2795 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2796 M: Eddie James <eajames@linux.ibm.com>
2797 L: linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2798 S: Maintained
2799 F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2800 F: drivers/irqchip/irq-aspeed-scu-ic.c
2801 F: include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2802
2803 ASPEED VIDEO ENGINE DRIVER
2804 M: Eddie James <eajames@linux.ibm.com>
2805 L: linux-media@vger.kernel.org
2806 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
2807 S: Maintained
2808 F: Documentation/devicetree/bindings/media/aspeed-video.txt
2809 F: drivers/media/platform/aspeed-video.c
2810
2811 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2812 M: Corentin Chary <corentin.chary@gmail.com>
2813 L: acpi4asus-user@lists.sourceforge.net
2814 L: platform-driver-x86@vger.kernel.org
2815 S: Maintained
2816 W: http://acpi4asus.sf.net
2817 F: drivers/platform/x86/asus*.c
2818 F: drivers/platform/x86/eeepc*.c
2819
2820 ASUS WIRELESS RADIO CONTROL DRIVER
2821 M: João Paulo Rechi Vita <jprvita@gmail.com>
2822 L: platform-driver-x86@vger.kernel.org
2823 S: Maintained
2824 F: drivers/platform/x86/asus-wireless.c
2825
2826 ASYMMETRIC KEYS
2827 M: David Howells <dhowells@redhat.com>
2828 L: keyrings@vger.kernel.org
2829 S: Maintained
2830 F: Documentation/crypto/asymmetric-keys.txt
2831 F: crypto/asymmetric_keys/
2832 F: include/crypto/pkcs7.h
2833 F: include/crypto/public_key.h
2834 F: include/linux/verification.h
2835
2836 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2837 R: Dan Williams <dan.j.williams@intel.com>
2838 S: Odd fixes
2839 W: http://sourceforge.net/projects/xscaleiop
2840 F: Documentation/crypto/async-tx-api.txt
2841 F: crypto/async_tx/
2842 F: drivers/dma/
2843 F: include/linux/async_tx.h
2844 F: include/linux/dmaengine.h
2845
2846 AT24 EEPROM DRIVER
2847 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
2848 L: linux-i2c@vger.kernel.org
2849 S: Maintained
2850 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2851 F: Documentation/devicetree/bindings/eeprom/at24.yaml
2852 F: drivers/misc/eeprom/at24.c
2853
2854 ATA OVER ETHERNET (AOE) DRIVER
2855 M: "Justin Sanders" <justin@coraid.com>
2856 S: Supported
2857 W: http://www.openaoe.org/
2858 F: Documentation/admin-guide/aoe/
2859 F: drivers/block/aoe/
2860
2861 ATHEROS 71XX/9XXX GPIO DRIVER
2862 M: Alban Bedel <albeu@free.fr>
2863 S: Maintained
2864 W: https://github.com/AlbanBedel/linux
2865 T: git git://github.com/AlbanBedel/linux
2866 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2867 F: drivers/gpio/gpio-ath79.c
2868
2869 ATHEROS 71XX/9XXX USB PHY DRIVER
2870 M: Alban Bedel <albeu@free.fr>
2871 S: Maintained
2872 W: https://github.com/AlbanBedel/linux
2873 T: git git://github.com/AlbanBedel/linux
2874 F: Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2875 F: drivers/phy/qualcomm/phy-ath79-usb.c
2876
2877 ATHEROS ATH GENERIC UTILITIES
2878 M: Kalle Valo <kvalo@codeaurora.org>
2879 L: linux-wireless@vger.kernel.org
2880 S: Supported
2881 F: drivers/net/wireless/ath/*
2882
2883 ATHEROS ATH5K WIRELESS DRIVER
2884 M: Jiri Slaby <jirislaby@gmail.com>
2885 M: Nick Kossifidis <mickflemm@gmail.com>
2886 M: Luis Chamberlain <mcgrof@kernel.org>
2887 L: linux-wireless@vger.kernel.org
2888 S: Maintained
2889 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2890 F: drivers/net/wireless/ath/ath5k/
2891
2892 ATHEROS ATH6KL WIRELESS DRIVER
2893 M: Kalle Valo <kvalo@codeaurora.org>
2894 L: linux-wireless@vger.kernel.org
2895 S: Supported
2896 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2897 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2898 F: drivers/net/wireless/ath/ath6kl/
2899
2900 ATI_REMOTE2 DRIVER
2901 M: Ville Syrjala <syrjala@sci.fi>
2902 S: Maintained
2903 F: drivers/input/misc/ati_remote2.c
2904
2905 ATK0110 HWMON DRIVER
2906 M: Luca Tettamanti <kronos.it@gmail.com>
2907 L: linux-hwmon@vger.kernel.org
2908 S: Maintained
2909 F: drivers/hwmon/asus_atk0110.c
2910
2911 ATLX ETHERNET DRIVERS
2912 M: Jay Cliburn <jcliburn@gmail.com>
2913 M: Chris Snook <chris.snook@gmail.com>
2914 L: netdev@vger.kernel.org
2915 S: Maintained
2916 W: http://sourceforge.net/projects/atl1
2917 W: http://atl1.sourceforge.net
2918 F: drivers/net/ethernet/atheros/
2919
2920 ATM
2921 M: Chas Williams <3chas3@gmail.com>
2922 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2923 L: netdev@vger.kernel.org
2924 S: Maintained
2925 W: http://linux-atm.sourceforge.net
2926 F: drivers/atm/
2927 F: include/linux/atm*
2928 F: include/uapi/linux/atm*
2929
2930 ATMEL MACB ETHERNET DRIVER
2931 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2932 S: Supported
2933 F: drivers/net/ethernet/cadence/
2934
2935 ATMEL MAXTOUCH DRIVER
2936 M: Nick Dyer <nick@shmanahar.org>
2937 S: Maintained
2938 T: git git://github.com/ndyer/linux.git
2939 F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2940 F: drivers/input/touchscreen/atmel_mxt_ts.c
2941
2942 ATMEL WIRELESS DRIVER
2943 M: Simon Kelley <simon@thekelleys.org.uk>
2944 L: linux-wireless@vger.kernel.org
2945 S: Maintained
2946 W: http://www.thekelleys.org.uk/atmel
2947 W: http://atmelwlandriver.sourceforge.net/
2948 F: drivers/net/wireless/atmel/atmel*
2949
2950 ATOMIC INFRASTRUCTURE
2951 M: Will Deacon <will@kernel.org>
2952 M: Peter Zijlstra <peterz@infradead.org>
2953 R: Boqun Feng <boqun.feng@gmail.com>
2954 L: linux-kernel@vger.kernel.org
2955 S: Maintained
2956 F: arch/*/include/asm/atomic*.h
2957 F: include/*/atomic*.h
2958 F: scripts/atomic/
2959
2960 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2961 M: Bradley Grove <linuxdrivers@attotech.com>
2962 L: linux-scsi@vger.kernel.org
2963 S: Supported
2964 W: http://www.attotech.com
2965 F: drivers/scsi/esas2r
2966
2967 ATUSB IEEE 802.15.4 RADIO DRIVER
2968 M: Stefan Schmidt <stefan@datenfreihafen.org>
2969 L: linux-wpan@vger.kernel.org
2970 S: Maintained
2971 F: drivers/net/ieee802154/at86rf230.h
2972 F: drivers/net/ieee802154/atusb.c
2973 F: drivers/net/ieee802154/atusb.h
2974
2975 AUDIT SUBSYSTEM
2976 M: Paul Moore <paul@paul-moore.com>
2977 M: Eric Paris <eparis@redhat.com>
2978 L: linux-audit@redhat.com (moderated for non-subscribers)
2979 S: Supported
2980 W: https://github.com/linux-audit
2981 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2982 F: include/linux/audit.h
2983 F: include/uapi/linux/audit.h
2984 F: kernel/audit*
2985
2986 AUXILIARY DISPLAY DRIVERS
2987 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2988 S: Maintained
2989 F: drivers/auxdisplay/
2990 F: include/linux/cfag12864b.h
2991
2992 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2993 M: Andreas Klinger <ak@it-klinger.de>
2994 L: linux-iio@vger.kernel.org
2995 S: Maintained
2996 F: Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2997 F: drivers/iio/adc/hx711.c
2998
2999 AX.25 NETWORK LAYER
3000 M: Ralf Baechle <ralf@linux-mips.org>
3001 L: linux-hams@vger.kernel.org
3002 S: Maintained
3003 W: http://www.linux-ax25.org/
3004 F: include/net/ax25.h
3005 F: include/uapi/linux/ax25.h
3006 F: net/ax25/
3007
3008 AXENTIA ARM DEVICES
3009 M: Peter Rosin <peda@axentia.se>
3010 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3011 S: Maintained
3012 F: arch/arm/boot/dts/at91-linea.dtsi
3013 F: arch/arm/boot/dts/at91-natte.dtsi
3014 F: arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3015 F: arch/arm/boot/dts/at91-tse850-3.dts
3016
3017 AXENTIA ASOC DRIVERS
3018 M: Peter Rosin <peda@axentia.se>
3019 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3020 S: Maintained
3021 F: Documentation/devicetree/bindings/sound/axentia,*
3022 F: sound/soc/atmel/tse850-pcm5142.c
3023
3024 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3025 M: Nuno Sá <nuno.sa@analog.com>
3026 L: linux-hwmon@vger.kernel.org
3027 S: Supported
3028 W: http://ez.analog.com/community/linux-device-drivers
3029 F: Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3030 F: drivers/hwmon/axi-fan-control.c
3031
3032 AXXIA I2C CONTROLLER
3033 M: Krzysztof Adamski <krzysztof.adamski@nokia.com>
3034 L: linux-i2c@vger.kernel.org
3035 S: Maintained
3036 F: Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3037 F: drivers/i2c/busses/i2c-axxia.c
3038
3039 AZ6007 DVB DRIVER
3040 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3041 L: linux-media@vger.kernel.org
3042 S: Maintained
3043 W: https://linuxtv.org
3044 T: git git://linuxtv.org/media_tree.git
3045 F: drivers/media/usb/dvb-usb-v2/az6007.c
3046
3047 AZTECH FM RADIO RECEIVER DRIVER
3048 M: Hans Verkuil <hverkuil@xs4all.nl>
3049 L: linux-media@vger.kernel.org
3050 S: Maintained
3051 W: https://linuxtv.org
3052 T: git git://linuxtv.org/media_tree.git
3053 F: drivers/media/radio/radio-aztech*
3054
3055 B43 WIRELESS DRIVER
3056 L: linux-wireless@vger.kernel.org
3057 L: b43-dev@lists.infradead.org
3058 S: Odd Fixes
3059 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3060 F: drivers/net/wireless/broadcom/b43/
3061
3062 B43LEGACY WIRELESS DRIVER
3063 M: Larry Finger <Larry.Finger@lwfinger.net>
3064 L: linux-wireless@vger.kernel.org
3065 L: b43-dev@lists.infradead.org
3066 S: Maintained
3067 W: https://wireless.wiki.kernel.org/en/users/Drivers/b43
3068 F: drivers/net/wireless/broadcom/b43legacy/
3069
3070 BACKLIGHT CLASS/SUBSYSTEM
3071 M: Lee Jones <lee.jones@linaro.org>
3072 M: Daniel Thompson <daniel.thompson@linaro.org>
3073 M: Jingoo Han <jingoohan1@gmail.com>
3074 L: dri-devel@lists.freedesktop.org
3075 S: Maintained
3076 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3077 F: Documentation/ABI/stable/sysfs-class-backlight
3078 F: Documentation/ABI/testing/sysfs-class-backlight
3079 F: Documentation/devicetree/bindings/leds/backlight
3080 F: drivers/video/backlight/
3081 F: include/linux/backlight.h
3082 F: include/linux/pwm_backlight.h
3083
3084 BATMAN ADVANCED
3085 M: Marek Lindner <mareklindner@neomailbox.ch>
3086 M: Simon Wunderlich <sw@simonwunderlich.de>
3087 M: Antonio Quartulli <a@unstable.cc>
3088 M: Sven Eckelmann <sven@narfation.org>
3089 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3090 S: Maintained
3091 W: https://www.open-mesh.org/
3092 Q: https://patchwork.open-mesh.org/project/batman/list/
3093 B: https://www.open-mesh.org/projects/batman-adv/issues
3094 C: irc://chat.freenode.net/batman
3095 T: git https://git.open-mesh.org/linux-merge.git
3096 F: Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3097 F: Documentation/ABI/obsolete/sysfs-class-net-mesh
3098 F: Documentation/networking/batman-adv.rst
3099 F: include/uapi/linux/batadv_packet.h
3100 F: include/uapi/linux/batman_adv.h
3101 F: net/batman-adv/
3102
3103 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3104 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
3105 L: linux-hams@vger.kernel.org
3106 S: Maintained
3107 W: http://www.baycom.org/~tom/ham/ham.html
3108 F: drivers/net/hamradio/baycom*
3109
3110 BCACHE (BLOCK LAYER CACHE)
3111 M: Coly Li <colyli@suse.de>
3112 M: Kent Overstreet <kent.overstreet@gmail.com>
3113 L: linux-bcache@vger.kernel.org
3114 S: Maintained
3115 W: http://bcache.evilpiepirate.org
3116 C: irc://irc.oftc.net/bcache
3117 F: drivers/md/bcache/
3118
3119 BDISP ST MEDIA DRIVER
3120 M: Fabien Dessenne <fabien.dessenne@st.com>
3121 L: linux-media@vger.kernel.org
3122 S: Supported
3123 W: https://linuxtv.org
3124 T: git git://linuxtv.org/media_tree.git
3125 F: drivers/media/platform/sti/bdisp
3126
3127 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3128 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
3129 L: netdev@vger.kernel.org
3130 S: Maintained
3131 F: drivers/net/ethernet/ec_bhf.c
3132
3133 BEFS FILE SYSTEM
3134 M: Luis de Bethencourt <luisbg@kernel.org>
3135 M: Salah Triki <salah.triki@gmail.com>
3136 S: Maintained
3137 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3138 F: Documentation/filesystems/befs.rst
3139 F: fs/befs/
3140
3141 BFQ I/O SCHEDULER
3142 M: Paolo Valente <paolo.valente@linaro.org>
3143 M: Jens Axboe <axboe@kernel.dk>
3144 L: linux-block@vger.kernel.org
3145 S: Maintained
3146 F: Documentation/block/bfq-iosched.rst
3147 F: block/bfq-*
3148
3149 BFS FILE SYSTEM
3150 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3151 S: Maintained
3152 F: Documentation/filesystems/bfs.rst
3153 F: fs/bfs/
3154 F: include/uapi/linux/bfs_fs.h
3155
3156 BLINKM RGB LED DRIVER
3157 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
3158 S: Maintained
3159 F: drivers/leds/leds-blinkm.c
3160
3161 BLOCK LAYER
3162 M: Jens Axboe <axboe@kernel.dk>
3163 L: linux-block@vger.kernel.org
3164 S: Maintained
3165 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3166 F: block/
3167 F: drivers/block/
3168 F: kernel/trace/blktrace.c
3169 F: lib/sbitmap.c
3170
3171 BLOCK2MTD DRIVER
3172 M: Joern Engel <joern@lazybastard.org>
3173 L: linux-mtd@lists.infradead.org
3174 S: Maintained
3175 F: drivers/mtd/devices/block2mtd.c
3176
3177 BLUETOOTH DRIVERS
3178 M: Marcel Holtmann <marcel@holtmann.org>
3179 M: Johan Hedberg <johan.hedberg@gmail.com>
3180 L: linux-bluetooth@vger.kernel.org
3181 S: Maintained
3182 W: http://www.bluez.org/
3183 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3184 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3185 F: drivers/bluetooth/
3186
3187 BLUETOOTH SUBSYSTEM
3188 M: Marcel Holtmann <marcel@holtmann.org>
3189 M: Johan Hedberg <johan.hedberg@gmail.com>
3190 L: linux-bluetooth@vger.kernel.org
3191 S: Maintained
3192 W: http://www.bluez.org/
3193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3195 F: include/net/bluetooth/
3196 F: net/bluetooth/
3197
3198 BONDING DRIVER
3199 M: Jay Vosburgh <j.vosburgh@gmail.com>
3200 M: Veaceslav Falico <vfalico@gmail.com>
3201 M: Andy Gospodarek <andy@greyhouse.net>
3202 L: netdev@vger.kernel.org
3203 S: Supported
3204 W: http://sourceforge.net/projects/bonding/
3205 F: drivers/net/bonding/
3206 F: include/uapi/linux/if_bonding.h
3207
3208 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3209 M: Dan Robertson <dan@dlrobertson.com>
3210 L: linux-iio@vger.kernel.org
3211 S: Maintained
3212 F: Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3213 F: drivers/iio/accel/bma400*
3214
3215 BPF (Safe dynamic programs and tools)
3216 M: Alexei Starovoitov <ast@kernel.org>
3217 M: Daniel Borkmann <daniel@iogearbox.net>
3218 R: Martin KaFai Lau <kafai@fb.com>
3219 R: Song Liu <songliubraving@fb.com>
3220 R: Yonghong Song <yhs@fb.com>
3221 R: Andrii Nakryiko <andriin@fb.com>
3222 R: John Fastabend <john.fastabend@gmail.com>
3223 R: KP Singh <kpsingh@chromium.org>
3224 L: netdev@vger.kernel.org
3225 L: bpf@vger.kernel.org
3226 S: Supported
3227 Q: https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3228 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3229 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3230 F: Documentation/bpf/
3231 F: Documentation/networking/filter.rst
3232 F: arch/*/net/*
3233 F: include/linux/bpf*
3234 F: include/linux/filter.h
3235 F: include/trace/events/xdp.h
3236 F: include/uapi/linux/bpf*
3237 F: include/uapi/linux/filter.h
3238 F: kernel/bpf/
3239 F: kernel/trace/bpf_trace.c
3240 F: lib/test_bpf.c
3241 F: net/bpf/
3242 F: net/core/filter.c
3243 F: net/sched/act_bpf.c
3244 F: net/sched/cls_bpf.c
3245 F: samples/bpf/
3246 F: tools/bpf/
3247 F: tools/lib/bpf/
3248 F: tools/testing/selftests/bpf/
3249 N: bpf
3250 K: bpf
3251
3252 BPF JIT for ARM
3253 M: Shubham Bansal <illusionist.neo@gmail.com>
3254 L: netdev@vger.kernel.org
3255 L: bpf@vger.kernel.org
3256 S: Maintained
3257 F: arch/arm/net/
3258
3259 BPF JIT for ARM64
3260 M: Daniel Borkmann <daniel@iogearbox.net>
3261 M: Alexei Starovoitov <ast@kernel.org>
3262 M: Zi Shen Lim <zlim.lnx@gmail.com>
3263 L: netdev@vger.kernel.org
3264 L: bpf@vger.kernel.org
3265 S: Supported
3266 F: arch/arm64/net/
3267
3268 BPF JIT for MIPS (32-BIT AND 64-BIT)
3269 M: Paul Burton <paulburton@kernel.org>
3270 L: netdev@vger.kernel.org
3271 L: bpf@vger.kernel.org
3272 S: Maintained
3273 F: arch/mips/net/
3274
3275 BPF JIT for NFP NICs
3276 M: Jakub Kicinski <kuba@kernel.org>
3277 L: netdev@vger.kernel.org
3278 L: bpf@vger.kernel.org
3279 S: Supported
3280 F: drivers/net/ethernet/netronome/nfp/bpf/
3281
3282 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3283 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3284 M: Sandipan Das <sandipan@linux.ibm.com>
3285 L: netdev@vger.kernel.org
3286 L: bpf@vger.kernel.org
3287 S: Maintained
3288 F: arch/powerpc/net/
3289
3290 BPF JIT for RISC-V (32-bit)
3291 M: Luke Nelson <luke.r.nels@gmail.com>
3292 M: Xi Wang <xi.wang@gmail.com>
3293 L: netdev@vger.kernel.org
3294 L: bpf@vger.kernel.org
3295 S: Maintained
3296 F: arch/riscv/net/
3297 X: arch/riscv/net/bpf_jit_comp64.c
3298
3299 BPF JIT for RISC-V (64-bit)
3300 M: Björn Töpel <bjorn.topel@gmail.com>
3301 L: netdev@vger.kernel.org
3302 L: bpf@vger.kernel.org
3303 S: Maintained
3304 F: arch/riscv/net/
3305 X: arch/riscv/net/bpf_jit_comp32.c
3306
3307 BPF JIT for S390
3308 M: Ilya Leoshkevich <iii@linux.ibm.com>
3309 M: Heiko Carstens <heiko.carstens@de.ibm.com>
3310 M: Vasily Gorbik <gor@linux.ibm.com>
3311 L: netdev@vger.kernel.org
3312 L: bpf@vger.kernel.org
3313 S: Maintained
3314 F: arch/s390/net/
3315 X: arch/s390/net/pnet.c
3316
3317 BPF JIT for SPARC (32-BIT AND 64-BIT)
3318 M: David S. Miller <davem@davemloft.net>
3319 L: netdev@vger.kernel.org
3320 L: bpf@vger.kernel.org
3321 S: Maintained
3322 F: arch/sparc/net/
3323
3324 BPF JIT for X86 32-BIT
3325 M: Wang YanQing <udknight@gmail.com>
3326 L: netdev@vger.kernel.org
3327 L: bpf@vger.kernel.org
3328 S: Maintained
3329 F: arch/x86/net/bpf_jit_comp32.c
3330
3331 BPF JIT for X86 64-BIT
3332 M: Alexei Starovoitov <ast@kernel.org>
3333 M: Daniel Borkmann <daniel@iogearbox.net>
3334 L: netdev@vger.kernel.org
3335 L: bpf@vger.kernel.org
3336 S: Supported
3337 F: arch/x86/net/
3338 X: arch/x86/net/bpf_jit_comp32.c
3339
3340 BROADCOM B44 10/100 ETHERNET DRIVER
3341 M: Michael Chan <michael.chan@broadcom.com>
3342 L: netdev@vger.kernel.org
3343 S: Supported
3344 F: drivers/net/ethernet/broadcom/b44.*
3345
3346 BROADCOM B53 ETHERNET SWITCH DRIVER
3347 M: Florian Fainelli <f.fainelli@gmail.com>
3348 L: netdev@vger.kernel.org
3349 L: openwrt-devel@lists.openwrt.org (subscribers-only)
3350 S: Supported
3351 F: drivers/net/dsa/b53/*
3352 F: include/linux/platform_data/b53.h
3353
3354 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3355 M: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3356 L: bcm-kernel-feedback-list@broadcom.com
3357 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3358 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3359 S: Maintained
3360 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3361 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3362 F: drivers/pci/controller/pcie-brcmstb.c
3363 F: drivers/staging/vc04_services
3364 N: bcm2711
3365 N: bcm2835
3366
3367 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3368 M: Florian Fainelli <f.fainelli@gmail.com>
3369 M: Ray Jui <rjui@broadcom.com>
3370 M: Scott Branden <sbranden@broadcom.com>
3371 M: bcm-kernel-feedback-list@broadcom.com
3372 S: Maintained
3373 T: git git://github.com/broadcom/mach-bcm
3374 F: arch/arm/mach-bcm/
3375 N: bcm281*
3376 N: bcm113*
3377 N: bcm216*
3378 N: kona
3379
3380 BROADCOM BCM47XX MIPS ARCHITECTURE
3381 M: Hauke Mehrtens <hauke@hauke-m.de>
3382 M: Rafał Miłecki <zajec5@gmail.com>
3383 L: linux-mips@vger.kernel.org
3384 S: Maintained
3385 F: Documentation/devicetree/bindings/mips/brcm/
3386 F: arch/mips/bcm47xx/*
3387 F: arch/mips/include/asm/mach-bcm47xx/*
3388
3389 BROADCOM BCM5301X ARM ARCHITECTURE
3390 M: Hauke Mehrtens <hauke@hauke-m.de>
3391 M: Rafał Miłecki <zajec5@gmail.com>
3392 M: bcm-kernel-feedback-list@broadcom.com
3393 L: linux-arm-kernel@lists.infradead.org
3394 S: Maintained
3395 F: arch/arm/boot/dts/bcm470*
3396 F: arch/arm/boot/dts/bcm5301x*.dtsi
3397 F: arch/arm/boot/dts/bcm953012*
3398 F: arch/arm/mach-bcm/bcm_5301x.c
3399
3400 BROADCOM BCM53573 ARM ARCHITECTURE
3401 M: Rafał Miłecki <rafal@milecki.pl>
3402 L: bcm-kernel-feedback-list@broadcom.com
3403 L: linux-arm-kernel@lists.infradead.org
3404 S: Maintained
3405 F: arch/arm/boot/dts/bcm47189*
3406 F: arch/arm/boot/dts/bcm53573*
3407
3408 BROADCOM BCM63XX ARM ARCHITECTURE
3409 M: Florian Fainelli <f.fainelli@gmail.com>
3410 M: bcm-kernel-feedback-list@broadcom.com
3411 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3412 S: Maintained
3413 T: git git://github.com/broadcom/stblinux.git
3414 N: bcm63xx
3415
3416 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3417 M: Kevin Cernekee <cernekee@gmail.com>
3418 L: linux-usb@vger.kernel.org
3419 S: Maintained
3420 F: drivers/usb/gadget/udc/bcm63xx_udc.*
3421
3422 BROADCOM BCM7XXX ARM ARCHITECTURE
3423 M: Florian Fainelli <f.fainelli@gmail.com>
3424 M: bcm-kernel-feedback-list@broadcom.com
3425 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3426 S: Maintained
3427 T: git git://github.com/broadcom/stblinux.git
3428 F: Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3429 F: arch/arm/boot/dts/bcm7*.dts*
3430 F: arch/arm/include/asm/hardware/cache-b15-rac.h
3431 F: arch/arm/mach-bcm/*brcmstb*
3432 F: arch/arm/mm/cache-b15-rac.c
3433 F: drivers/bus/brcmstb_gisb.c
3434 F: drivers/pci/controller/pcie-brcmstb.c
3435 N: brcmstb
3436
3437 BROADCOM BMIPS CPUFREQ DRIVER
3438 M: Markus Mayer <mmayer@broadcom.com>
3439 M: bcm-kernel-feedback-list@broadcom.com
3440 L: linux-pm@vger.kernel.org
3441 S: Maintained
3442 F: drivers/cpufreq/bmips-cpufreq.c
3443
3444 BROADCOM BMIPS MIPS ARCHITECTURE
3445 M: Florian Fainelli <f.fainelli@gmail.com>
3446 L: bcm-kernel-feedback-list@broadcom.com
3447 L: linux-mips@vger.kernel.org
3448 S: Maintained
3449 T: git git://github.com/broadcom/stblinux.git
3450 F: arch/mips/bmips/*
3451 F: arch/mips/boot/dts/brcm/bcm*.dts*
3452 F: arch/mips/include/asm/mach-bmips/*
3453 F: arch/mips/kernel/*bmips*
3454 F: drivers/irqchip/irq-bcm63*
3455 F: drivers/irqchip/irq-bcm7*
3456 F: drivers/irqchip/irq-brcmstb*
3457 F: include/linux/bcm963xx_nvram.h
3458 F: include/linux/bcm963xx_tag.h
3459
3460 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3461 M: Rasesh Mody <rmody@marvell.com>
3462 M: GR-Linux-NIC-Dev@marvell.com
3463 L: netdev@vger.kernel.org
3464 S: Supported
3465 F: drivers/net/ethernet/broadcom/bnx2.*
3466 F: drivers/net/ethernet/broadcom/bnx2_*
3467
3468 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3469 M: QLogic-Storage-Upstream@qlogic.com
3470 L: linux-scsi@vger.kernel.org
3471 S: Supported
3472 F: drivers/scsi/bnx2fc/
3473
3474 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3475 M: QLogic-Storage-Upstream@qlogic.com
3476 L: linux-scsi@vger.kernel.org
3477 S: Supported
3478 F: drivers/scsi/bnx2i/
3479
3480 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3481 M: Ariel Elior <aelior@marvell.com>
3482 M: Sudarsana Kalluru <skalluru@marvell.com>
3483 M: GR-everest-linux-l2@marvell.com
3484 L: netdev@vger.kernel.org
3485 S: Supported
3486 F: drivers/net/ethernet/broadcom/bnx2x/
3487
3488 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3489 M: Michael Chan <michael.chan@broadcom.com>
3490 L: netdev@vger.kernel.org
3491 S: Supported
3492 F: drivers/net/ethernet/broadcom/bnxt/
3493
3494 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3495 M: Arend van Spriel <arend.vanspriel@broadcom.com>
3496 M: Franky Lin <franky.lin@broadcom.com>
3497 M: Hante Meuleman <hante.meuleman@broadcom.com>
3498 M: Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3499 M: Wright Feng <wright.feng@cypress.com>
3500 L: linux-wireless@vger.kernel.org
3501 L: brcm80211-dev-list.pdl@broadcom.com
3502 L: brcm80211-dev-list@cypress.com
3503 S: Supported
3504 F: drivers/net/wireless/broadcom/brcm80211/
3505
3506 BROADCOM BRCMSTB GPIO DRIVER
3507 M: Gregory Fong <gregory.0xf0@gmail.com>
3508 L: bcm-kernel-feedback-list@broadcom.com
3509 S: Supported
3510 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3511 F: drivers/gpio/gpio-brcmstb.c
3512
3513 BROADCOM BRCMSTB I2C DRIVER
3514 M: Kamal Dasu <kdasu.kdev@gmail.com>
3515 L: linux-i2c@vger.kernel.org
3516 L: bcm-kernel-feedback-list@broadcom.com
3517 S: Supported
3518 F: Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3519 F: drivers/i2c/busses/i2c-brcmstb.c
3520
3521 BROADCOM BRCMSTB USB EHCI DRIVER
3522 M: Al Cooper <alcooperx@gmail.com>
3523 L: linux-usb@vger.kernel.org
3524 L: bcm-kernel-feedback-list@broadcom.com
3525 S: Maintained
3526 F: Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3527 F: drivers/usb/host/ehci-brcm.*
3528
3529 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3530 M: Al Cooper <alcooperx@gmail.com>
3531 L: linux-kernel@vger.kernel.org
3532 L: bcm-kernel-feedback-list@broadcom.com
3533 S: Maintained
3534 F: drivers/phy/broadcom/phy-brcm-usb*
3535
3536 BROADCOM GENET ETHERNET DRIVER
3537 M: Doug Berger <opendmb@gmail.com>
3538 M: Florian Fainelli <f.fainelli@gmail.com>
3539 L: bcm-kernel-feedback-list@broadcom.com
3540 L: netdev@vger.kernel.org
3541 S: Supported
3542 F: drivers/net/ethernet/broadcom/genet/
3543
3544 BROADCOM IPROC ARM ARCHITECTURE
3545 M: Ray Jui <rjui@broadcom.com>
3546 M: Scott Branden <sbranden@broadcom.com>
3547 M: bcm-kernel-feedback-list@broadcom.com
3548 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3549 S: Maintained
3550 T: git git://github.com/broadcom/cygnus-linux.git
3551 F: arch/arm64/boot/dts/broadcom/northstar2/*
3552 F: arch/arm64/boot/dts/broadcom/stingray/*
3553 F: drivers/clk/bcm/clk-ns*
3554 F: drivers/clk/bcm/clk-sr*
3555 F: drivers/pinctrl/bcm/pinctrl-ns*
3556 F: include/dt-bindings/clock/bcm-sr*
3557 N: iproc
3558 N: cygnus
3559 N: bcm[-_]nsp
3560 N: bcm9113*
3561 N: bcm9583*
3562 N: bcm9585*
3563 N: bcm9586*
3564 N: bcm988312
3565 N: bcm113*
3566 N: bcm583*
3567 N: bcm585*
3568 N: bcm586*
3569 N: bcm88312
3570 N: hr2
3571 N: stingray
3572
3573 BROADCOM KONA GPIO DRIVER
3574 M: Ray Jui <rjui@broadcom.com>
3575 L: bcm-kernel-feedback-list@broadcom.com
3576 S: Supported
3577 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3578 F: drivers/gpio/gpio-bcm-kona.c
3579
3580 BROADCOM NETXTREME-E ROCE DRIVER
3581 M: Selvin Xavier <selvin.xavier@broadcom.com>
3582 M: Devesh Sharma <devesh.sharma@broadcom.com>
3583 M: Somnath Kotur <somnath.kotur@broadcom.com>
3584 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3585 L: linux-rdma@vger.kernel.org
3586 S: Supported
3587 W: http://www.broadcom.com
3588 F: drivers/infiniband/hw/bnxt_re/
3589 F: include/uapi/rdma/bnxt_re-abi.h
3590
3591 BROADCOM NVRAM DRIVER
3592 M: Rafał Miłecki <zajec5@gmail.com>
3593 L: linux-mips@vger.kernel.org
3594 S: Maintained
3595 F: drivers/firmware/broadcom/*
3596
3597 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3598 M: Rafał Miłecki <zajec5@gmail.com>
3599 L: linux-wireless@vger.kernel.org
3600 S: Maintained
3601 F: drivers/bcma/
3602 F: include/linux/bcma/
3603
3604 BROADCOM SPI DRIVER
3605 M: Kamal Dasu <kdasu.kdev@gmail.com>
3606 M: bcm-kernel-feedback-list@broadcom.com
3607 S: Maintained
3608 F: Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3609 F: drivers/spi/spi-bcm-qspi.*
3610 F: drivers/spi/spi-brcmstb-qspi.c
3611 F: drivers/spi/spi-iproc-qspi.c
3612
3613 BROADCOM STB AVS CPUFREQ DRIVER
3614 M: Markus Mayer <mmayer@broadcom.com>
3615 M: bcm-kernel-feedback-list@broadcom.com
3616 L: linux-pm@vger.kernel.org
3617 S: Maintained
3618 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3619 F: drivers/cpufreq/brcmstb*
3620
3621 BROADCOM STB AVS TMON DRIVER
3622 M: Markus Mayer <mmayer@broadcom.com>
3623 M: bcm-kernel-feedback-list@broadcom.com
3624 L: linux-pm@vger.kernel.org
3625 S: Maintained
3626 F: Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3627 F: drivers/thermal/broadcom/brcmstb*
3628
3629 BROADCOM STB DPFE DRIVER
3630 M: Markus Mayer <mmayer@broadcom.com>
3631 M: bcm-kernel-feedback-list@broadcom.com
3632 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3633 S: Maintained
3634 F: Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3635 F: drivers/memory/brcmstb_dpfe.c
3636
3637 BROADCOM STB NAND FLASH DRIVER
3638 M: Brian Norris <computersforpeace@gmail.com>
3639 M: Kamal Dasu <kdasu.kdev@gmail.com>
3640 L: linux-mtd@lists.infradead.org
3641 L: bcm-kernel-feedback-list@broadcom.com
3642 S: Maintained
3643 F: drivers/mtd/nand/raw/brcmnand/
3644
3645 BROADCOM SYSTEMPORT ETHERNET DRIVER
3646 M: Florian Fainelli <f.fainelli@gmail.com>
3647 L: bcm-kernel-feedback-list@broadcom.com
3648 L: netdev@vger.kernel.org
3649 S: Supported
3650 F: drivers/net/ethernet/broadcom/bcmsysport.*
3651
3652 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3653 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
3654 M: Prashant Sreedharan <prashant@broadcom.com>
3655 M: Michael Chan <mchan@broadcom.com>
3656 L: netdev@vger.kernel.org
3657 S: Supported
3658 F: drivers/net/ethernet/broadcom/tg3.*
3659
3660 BROCADE BFA FC SCSI DRIVER
3661 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3662 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3663 L: linux-scsi@vger.kernel.org
3664 S: Supported
3665 F: drivers/scsi/bfa/
3666
3667 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3668 M: Rasesh Mody <rmody@marvell.com>
3669 M: Sudarsana Kalluru <skalluru@marvell.com>
3670 M: GR-Linux-NIC-Dev@marvell.com
3671 L: netdev@vger.kernel.org
3672 S: Supported
3673 F: drivers/net/ethernet/brocade/bna/
3674
3675 BSG (block layer generic sg v4 driver)
3676 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3677 L: linux-scsi@vger.kernel.org
3678 S: Supported
3679 F: block/bsg.c
3680 F: include/linux/bsg.h
3681 F: include/uapi/linux/bsg.h
3682
3683 BT87X AUDIO DRIVER
3684 M: Clemens Ladisch <clemens@ladisch.de>
3685 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3686 S: Maintained
3687 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3688 F: Documentation/sound/cards/bt87x.rst
3689 F: sound/pci/bt87x.c
3690
3691 BT8XXGPIO DRIVER
3692 M: Michael Buesch <m@bues.ch>
3693 S: Maintained
3694 W: http://bu3sch.de/btgpio.php
3695 F: drivers/gpio/gpio-bt8xx.c
3696
3697 BTRFS FILE SYSTEM
3698 M: Chris Mason <clm@fb.com>
3699 M: Josef Bacik <josef@toxicpanda.com>
3700 M: David Sterba <dsterba@suse.com>
3701 L: linux-btrfs@vger.kernel.org
3702 S: Maintained
3703 W: http://btrfs.wiki.kernel.org/
3704 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
3705 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3706 F: Documentation/filesystems/btrfs.rst
3707 F: fs/btrfs/
3708 F: include/linux/btrfs*
3709 F: include/uapi/linux/btrfs*
3710
3711 BTTV VIDEO4LINUX DRIVER
3712 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3713 L: linux-media@vger.kernel.org
3714 S: Odd fixes
3715 W: https://linuxtv.org
3716 T: git git://linuxtv.org/media_tree.git
3717 F: Documentation/driver-api/media/drivers/bttv*
3718 F: drivers/media/pci/bt8xx/bttv*
3719
3720 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3721 M: Chanwoo Choi <cw00.choi@samsung.com>
3722 L: linux-pm@vger.kernel.org
3723 L: linux-samsung-soc@vger.kernel.org
3724 S: Maintained
3725 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3726 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3727 F: drivers/devfreq/exynos-bus.c
3728
3729 BUSLOGIC SCSI DRIVER
3730 M: Khalid Aziz <khalid@gonehiking.org>
3731 L: linux-scsi@vger.kernel.org
3732 S: Maintained
3733 F: drivers/scsi/BusLogic.*
3734 F: drivers/scsi/FlashPoint.*
3735
3736 C-MEDIA CMI8788 DRIVER
3737 M: Clemens Ladisch <clemens@ladisch.de>
3738 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3739 S: Maintained
3740 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3741 F: sound/pci/oxygen/
3742
3743 C-SKY ARCHITECTURE
3744 M: Guo Ren <guoren@kernel.org>
3745 L: linux-csky@vger.kernel.org
3746 S: Supported
3747 T: git https://github.com/c-sky/csky-linux.git
3748 F: Documentation/devicetree/bindings/csky/
3749 F: Documentation/devicetree/bindings/interrupt-controller/csky,*
3750 F: Documentation/devicetree/bindings/timer/csky,*
3751 F: arch/csky/
3752 F: drivers/clocksource/timer-gx6605s.c
3753 F: drivers/clocksource/timer-mp-csky.c
3754 F: drivers/irqchip/irq-csky-*
3755 N: csky
3756 K: csky
3757
3758 C6X ARCHITECTURE
3759 M: Mark Salter <msalter@redhat.com>
3760 M: Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3761 L: linux-c6x-dev@linux-c6x.org
3762 S: Maintained
3763 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
3764 F: arch/c6x/
3765
3766 CA8210 IEEE-802.15.4 RADIO DRIVER
3767 M: Harry Morris <h.morris@cascoda.com>
3768 L: linux-wpan@vger.kernel.org
3769 S: Maintained
3770 W: https://github.com/Cascoda/ca8210-linux.git
3771 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3772 F: drivers/net/ieee802154/ca8210.c
3773
3774 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3775 M: David Howells <dhowells@redhat.com>
3776 L: linux-cachefs@redhat.com (moderated for non-subscribers)
3777 S: Supported
3778 F: Documentation/filesystems/caching/cachefiles.rst
3779 F: fs/cachefiles/
3780
3781 CADENCE MIPI-CSI2 BRIDGES
3782 M: Maxime Ripard <mripard@kernel.org>
3783 L: linux-media@vger.kernel.org
3784 S: Maintained
3785 F: Documentation/devicetree/bindings/media/cdns,*.txt
3786 F: drivers/media/platform/cadence/cdns-csi2*
3787
3788 CADENCE NAND DRIVER
3789 L: linux-mtd@lists.infradead.org
3790 S: Orphan
3791 F: Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3792 F: drivers/mtd/nand/raw/cadence-nand-controller.c
3793
3794 CADET FM/AM RADIO RECEIVER DRIVER
3795 M: Hans Verkuil <hverkuil@xs4all.nl>
3796 L: linux-media@vger.kernel.org
3797 S: Maintained
3798 W: https://linuxtv.org
3799 T: git git://linuxtv.org/media_tree.git
3800 F: drivers/media/radio/radio-cadet*
3801
3802 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3803 M: Jonathan Corbet <corbet@lwn.net>
3804 L: linux-media@vger.kernel.org
3805 S: Maintained
3806 T: git git://linuxtv.org/media_tree.git
3807 F: Documentation/admin-guide/media/cafe_ccic*
3808 F: drivers/media/platform/marvell-ccic/
3809
3810 CAIF NETWORK LAYER
3811 L: netdev@vger.kernel.org
3812 S: Orphan
3813 F: Documentation/networking/caif/
3814 F: drivers/net/caif/
3815 F: include/net/caif/
3816 F: include/uapi/linux/caif/
3817 F: net/caif/
3818
3819 CAKE QDISC
3820 M: Toke Høiland-Jørgensen <toke@toke.dk>
3821 L: cake@lists.bufferbloat.net (moderated for non-subscribers)
3822 S: Maintained
3823 F: net/sched/sch_cake.c
3824
3825 CAN NETWORK DRIVERS
3826 M: Wolfgang Grandegger <wg@grandegger.com>
3827 M: Marc Kleine-Budde <mkl@pengutronix.de>
3828 L: linux-can@vger.kernel.org
3829 S: Maintained
3830 W: https://github.com/linux-can
3831 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3832 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3833 F: Documentation/devicetree/bindings/net/can/
3834 F: drivers/net/can/
3835 F: include/linux/can/dev.h
3836 F: include/linux/can/led.h
3837 F: include/linux/can/platform/
3838 F: include/linux/can/rx-offload.h
3839 F: include/uapi/linux/can/error.h
3840 F: include/uapi/linux/can/netlink.h
3841 F: include/uapi/linux/can/vxcan.h
3842
3843 CAN NETWORK LAYER
3844 M: Oliver Hartkopp <socketcan@hartkopp.net>
3845 M: Marc Kleine-Budde <mkl@pengutronix.de>
3846 L: linux-can@vger.kernel.org
3847 S: Maintained
3848 W: https://github.com/linux-can
3849 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3850 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3851 F: Documentation/networking/can.rst
3852 F: include/linux/can/core.h
3853 F: include/linux/can/skb.h
3854 F: include/net/netns/can.h
3855 F: include/uapi/linux/can.h
3856 F: include/uapi/linux/can/bcm.h
3857 F: include/uapi/linux/can/gw.h
3858 F: include/uapi/linux/can/raw.h
3859 F: net/can/
3860
3861 CAN-J1939 NETWORK LAYER
3862 M: Robin van der Gracht <robin@protonic.nl>
3863 M: Oleksij Rempel <o.rempel@pengutronix.de>
3864 R: Pengutronix Kernel Team <kernel@pengutronix.de>
3865 L: linux-can@vger.kernel.org
3866 S: Maintained
3867 F: Documentation/networking/j1939.rst
3868 F: include/uapi/linux/can/j1939.h
3869 F: net/can/j1939/
3870
3871 CAPABILITIES
3872 M: Serge Hallyn <serge@hallyn.com>
3873 L: linux-security-module@vger.kernel.org
3874 S: Supported
3875 F: include/linux/capability.h
3876 F: include/uapi/linux/capability.h
3877 F: kernel/capability.c
3878 F: security/commoncap.c
3879
3880 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3881 M: Kevin Tsai <ktsai@capellamicro.com>
3882 S: Maintained
3883 F: drivers/iio/light/cm*
3884
3885 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3886 M: Christian Lamparter <chunkeey@googlemail.com>
3887 L: linux-wireless@vger.kernel.org
3888 S: Maintained
3889 W: https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3890 F: drivers/net/wireless/ath/carl9170/
3891
3892 CAVIUM I2C DRIVER
3893 M: Robert Richter <rrichter@marvell.com>
3894 S: Supported
3895 W: http://www.marvell.com
3896 F: drivers/i2c/busses/i2c-octeon*
3897 F: drivers/i2c/busses/i2c-thunderx*
3898
3899 CAVIUM LIQUIDIO NETWORK DRIVER
3900 M: Derek Chickles <dchickles@marvell.com>
3901 M: Satanand Burla <sburla@marvell.com>
3902 M: Felix Manlunas <fmanlunas@marvell.com>
3903 L: netdev@vger.kernel.org
3904 S: Supported
3905 W: http://www.marvell.com
3906 F: drivers/net/ethernet/cavium/liquidio/
3907
3908 CAVIUM MMC DRIVER
3909 M: Robert Richter <rrichter@marvell.com>
3910 S: Supported
3911 W: http://www.marvell.com
3912 F: drivers/mmc/host/cavium*
3913
3914 CAVIUM OCTEON-TX CRYPTO DRIVER
3915 M: George Cherian <gcherian@marvell.com>
3916 L: linux-crypto@vger.kernel.org
3917 S: Supported
3918 W: http://www.marvell.com
3919 F: drivers/crypto/cavium/cpt/
3920
3921 CAVIUM THUNDERX2 ARM64 SOC
3922 M: Robert Richter <rrichter@marvell.com>
3923 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3924 S: Maintained
3925 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3926 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
3927
3928 CC2520 IEEE-802.15.4 RADIO DRIVER
3929 M: Varka Bhadram <varkabhadram@gmail.com>
3930 L: linux-wpan@vger.kernel.org
3931 S: Maintained
3932 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3933 F: drivers/net/ieee802154/cc2520.c
3934 F: include/linux/spi/cc2520.h
3935
3936 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3937 M: Gilad Ben-Yossef <gilad@benyossef.com>
3938 L: linux-crypto@vger.kernel.org
3939 S: Supported
3940 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3941 F: drivers/crypto/ccree/
3942
3943 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3944 M: Hadar Gat <hadar.gat@arm.com>
3945 L: linux-crypto@vger.kernel.org
3946 S: Supported
3947 F: drivers/char/hw_random/cctrng.c
3948 F: drivers/char/hw_random/cctrng.h
3949 F: Documentation/devicetree/bindings/rng/arm-cctrng.txt
3950 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3951
3952 CEC FRAMEWORK
3953 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
3954 L: linux-media@vger.kernel.org
3955 S: Supported
3956 W: http://linuxtv.org
3957 T: git git://linuxtv.org/media_tree.git
3958 F: Documentation/ABI/testing/debugfs-cec-error-inj
3959 F: Documentation/devicetree/bindings/media/cec.txt
3960 F: Documentation/driver-api/media/cec-core.rst
3961 F: Documentation/userspace-api/media/cec
3962 F: drivers/media/cec/
3963 F: drivers/media/rc/keymaps/rc-cec.c
3964 F: include/media/cec-notifier.h
3965 F: include/media/cec.h
3966 F: include/uapi/linux/cec-funcs.h
3967 F: include/uapi/linux/cec.h
3968
3969 CEC GPIO DRIVER
3970 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
3971 L: linux-media@vger.kernel.org
3972 S: Supported
3973 W: http://linuxtv.org
3974 T: git git://linuxtv.org/media_tree.git
3975 F: Documentation/devicetree/bindings/media/cec-gpio.txt
3976 F: drivers/media/platform/cec-gpio/
3977
3978 CELL BROADBAND ENGINE ARCHITECTURE
3979 M: Arnd Bergmann <arnd@arndb.de>
3980 L: linuxppc-dev@lists.ozlabs.org
3981 S: Supported
3982 W: http://www.ibm.com/developerworks/power/cell/
3983 F: arch/powerpc/include/asm/cell*.h
3984 F: arch/powerpc/include/asm/spu*.h
3985 F: arch/powerpc/include/uapi/asm/spu*.h
3986 F: arch/powerpc/oprofile/*cell*
3987 F: arch/powerpc/platforms/cell/
3988
3989 CELLWISE CW2015 BATTERY DRIVER
3990 M: Tobias Schrammm <t.schramm@manjaro.org>
3991 S: Maintained
3992 F: Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
3993 F: drivers/power/supply/cw2015_battery.c
3994
3995 CEPH COMMON CODE (LIBCEPH)
3996 M: Ilya Dryomov <idryomov@gmail.com>
3997 M: Jeff Layton <jlayton@kernel.org>
3998 L: ceph-devel@vger.kernel.org
3999 S: Supported
4000 W: http://ceph.com/
4001 T: git git://github.com/ceph/ceph-client.git
4002 F: include/linux/ceph/
4003 F: include/linux/crush/
4004 F: net/ceph/
4005
4006 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4007 M: Jeff Layton <jlayton@kernel.org>
4008 M: Ilya Dryomov <idryomov@gmail.com>
4009 L: ceph-devel@vger.kernel.org
4010 S: Supported
4011 W: http://ceph.com/
4012 T: git git://github.com/ceph/ceph-client.git
4013 F: Documentation/filesystems/ceph.rst
4014 F: fs/ceph/
4015
4016 CERTIFICATE HANDLING
4017 M: David Howells <dhowells@redhat.com>
4018 M: David Woodhouse <dwmw2@infradead.org>
4019 L: keyrings@vger.kernel.org
4020 S: Maintained
4021 F: Documentation/admin-guide/module-signing.rst
4022 F: certs/
4023 F: scripts/extract-cert.c
4024 F: scripts/sign-file.c
4025
4026 CFAG12864B LCD DRIVER
4027 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4028 S: Maintained
4029 F: drivers/auxdisplay/cfag12864b.c
4030 F: include/linux/cfag12864b.h
4031
4032 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4033 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4034 S: Maintained
4035 F: drivers/auxdisplay/cfag12864bfb.c
4036 F: include/linux/cfag12864b.h
4037
4038 CHAR and MISC DRIVERS
4039 M: Arnd Bergmann <arnd@arndb.de>
4040 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4041 S: Supported
4042 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4043 F: drivers/char/
4044 F: drivers/misc/
4045 F: include/linux/miscdevice.h
4046
4047 CHECKPATCH
4048 M: Andy Whitcroft <apw@canonical.com>
4049 M: Joe Perches <joe@perches.com>
4050 S: Maintained
4051 F: scripts/checkpatch.pl
4052
4053 CHINESE DOCUMENTATION
4054 M: Harry Wei <harryxiyou@gmail.com>
4055 M: Alex Shi <alex.shi@linux.alibaba.com>
4056 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4057 S: Maintained
4058 F: Documentation/translations/zh_CN/
4059
4060 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4061 M: Peter Chen <Peter.Chen@nxp.com>
4062 L: linux-usb@vger.kernel.org
4063 S: Maintained
4064 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4065 F: drivers/usb/chipidea/
4066
4067 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4068 M: Hans de Goede <hdegoede@redhat.com>
4069 L: linux-input@vger.kernel.org
4070 S: Maintained
4071 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4072 F: drivers/input/touchscreen/chipone_icn8318.c
4073
4074 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4075 M: Hans de Goede <hdegoede@redhat.com>
4076 L: linux-input@vger.kernel.org
4077 S: Maintained
4078 F: drivers/input/touchscreen/chipone_icn8505.c
4079
4080 CHROME HARDWARE PLATFORM SUPPORT
4081 M: Benson Leung <bleung@chromium.org>
4082 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4083 S: Maintained
4084 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4085 F: drivers/platform/chrome/
4086
4087 CHROMEOS EC CODEC DRIVER
4088 M: Cheng-Yi Chiang <cychiang@chromium.org>
4089 R: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4090 R: Guenter Roeck <groeck@chromium.org>
4091 S: Maintained
4092 F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4093 F: sound/soc/codecs/cros_ec_codec.*
4094
4095 CHROMEOS EC SUBDRIVERS
4096 M: Benson Leung <bleung@chromium.org>
4097 M: Enric Balletbo i Serra <enric.balletbo@collabora.com>
4098 R: Guenter Roeck <groeck@chromium.org>
4099 S: Maintained
4100 F: drivers/power/supply/cros_usbpd-charger.c
4101 N: cros_ec
4102 N: cros-ec
4103
4104 CHRONTEL CH7322 CEC DRIVER
4105 M: Jeff Chase <jnchase@google.com>
4106 L: linux-media@vger.kernel.org
4107 S: Maintained
4108 T: git git://linuxtv.org/media_tree.git
4109 F: Documentation/devicetree/bindings/media/i2c/chontel,ch7322.yaml
4110 F: drivers/media/cec/i2c/ch7322.c
4111
4112 CIRRUS LOGIC AUDIO CODEC DRIVERS
4113 M: James Schulman <james.schulman@cirrus.com>
4114 M: David Rhodes <david.rhodes@cirrus.com>
4115 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4116 S: Maintained
4117 F: sound/soc/codecs/cs*
4118
4119 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4120 M: Hartley Sweeten <hsweeten@visionengravers.com>
4121 L: netdev@vger.kernel.org
4122 S: Maintained
4123 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
4124
4125 CIRRUS LOGIC LOCHNAGAR DRIVER
4126 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4127 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4128 L: patches@opensource.cirrus.com
4129 S: Supported
4130 F: Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4131 F: Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4132 F: Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4133 F: Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4134 F: Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4135 F: Documentation/hwmon/lochnagar.rst
4136 F: drivers/clk/clk-lochnagar.c
4137 F: drivers/hwmon/lochnagar-hwmon.c
4138 F: drivers/mfd/lochnagar-i2c.c
4139 F: drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4140 F: drivers/regulator/lochnagar-regulator.c
4141 F: include/dt-bindings/clk/lochnagar.h
4142 F: include/dt-bindings/pinctrl/lochnagar.h
4143 F: include/linux/mfd/lochnagar*
4144 F: sound/soc/codecs/lochnagar-sc.c
4145
4146 CIRRUS LOGIC MADERA CODEC DRIVERS
4147 M: Charles Keepax <ckeepax@opensource.cirrus.com>
4148 M: Richard Fitzgerald <rf@opensource.cirrus.com>
4149 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4150 L: patches@opensource.cirrus.com
4151 S: Supported
4152 W: https://github.com/CirrusLogic/linux-drivers/wiki
4153 T: git https://github.com/CirrusLogic/linux-drivers.git
4154 F: Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4155 F: Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4156 F: Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4157 F: drivers/gpio/gpio-madera*
4158 F: drivers/irqchip/irq-madera*
4159 F: drivers/mfd/cs47l*
4160 F: drivers/mfd/madera*
4161 F: drivers/pinctrl/cirrus/*
4162 F: include/dt-bindings/sound/madera*
4163 F: include/linux/irqchip/irq-madera*
4164 F: include/linux/mfd/madera/*
4165 F: include/sound/madera*
4166 F: sound/soc/codecs/cs47l*
4167 F: sound/soc/codecs/madera*
4168
4169 CISCO FCOE HBA DRIVER
4170 M: Satish Kharat <satishkh@cisco.com>
4171 M: Sesidhar Baddela <sebaddel@cisco.com>
4172 M: Karan Tilak Kumar <kartilak@cisco.com>
4173 L: linux-scsi@vger.kernel.org
4174 S: Supported
4175 F: drivers/scsi/fnic/
4176
4177 CISCO SCSI HBA DRIVER
4178 M: Karan Tilak Kumar <kartilak@cisco.com>
4179 M: Sesidhar Baddela <sebaddel@cisco.com>
4180 L: linux-scsi@vger.kernel.org
4181 S: Supported
4182 F: drivers/scsi/snic/
4183
4184 CISCO VIC ETHERNET NIC DRIVER
4185 M: Christian Benvenuti <benve@cisco.com>
4186 M: Govindarajulu Varadarajan <_govind@gmx.com>
4187 S: Supported
4188 F: drivers/net/ethernet/cisco/enic/
4189
4190 CISCO VIC LOW LATENCY NIC DRIVER
4191 M: Christian Benvenuti <benve@cisco.com>
4192 M: Nelson Escobar <neescoba@cisco.com>
4193 M: Parvi Kaustubhi <pkaustub@cisco.com>
4194 S: Supported
4195 F: drivers/infiniband/hw/usnic/
4196
4197 CLANG-FORMAT FILE
4198 M: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4199 S: Maintained
4200 F: .clang-format
4201
4202 CLANG/LLVM BUILD SUPPORT
4203 L: clang-built-linux@googlegroups.com
4204 S: Supported
4205 W: https://clangbuiltlinux.github.io/
4206 B: https://github.com/ClangBuiltLinux/linux/issues
4207 C: irc://chat.freenode.net/clangbuiltlinux
4208 F: Documentation/kbuild/llvm.rst
4209 K: \b(?i:clang|llvm)\b
4210
4211 CLEANCACHE API
4212 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4213 L: linux-kernel@vger.kernel.org
4214 S: Maintained
4215 F: include/linux/cleancache.h
4216 F: mm/cleancache.c
4217
4218 CLK API
4219 M: Russell King <linux@armlinux.org.uk>
4220 L: linux-clk@vger.kernel.org
4221 S: Maintained
4222 F: include/linux/clk.h
4223
4224 CLOCKSOURCE, CLOCKEVENT DRIVERS
4225 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4226 M: Thomas Gleixner <tglx@linutronix.de>
4227 L: linux-kernel@vger.kernel.org
4228 S: Supported
4229 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4230 F: Documentation/devicetree/bindings/timer/
4231 F: drivers/clocksource/
4232
4233 CMPC ACPI DRIVER
4234 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4235 M: Daniel Oliveira Nascimento <don@syst.com.br>
4236 L: platform-driver-x86@vger.kernel.org
4237 S: Supported
4238 F: drivers/platform/x86/classmate-laptop.c
4239
4240 COBALT MEDIA DRIVER
4241 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
4242 L: linux-media@vger.kernel.org
4243 S: Supported
4244 W: https://linuxtv.org
4245 T: git git://linuxtv.org/media_tree.git
4246 F: drivers/media/pci/cobalt/
4247
4248 COCCINELLE/Semantic Patches (SmPL)
4249 M: Julia Lawall <Julia.Lawall@lip6.fr>
4250 M: Gilles Muller <Gilles.Muller@lip6.fr>
4251 M: Nicolas Palix <nicolas.palix@imag.fr>
4252 M: Michal Marek <michal.lkml@markovi.net>
4253 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
4254 S: Supported
4255 W: http://coccinelle.lip6.fr/
4256 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4257 F: Documentation/dev-tools/coccinelle.rst
4258 F: scripts/coccicheck
4259 F: scripts/coccinelle/
4260
4261 CODA FILE SYSTEM
4262 M: Jan Harkes <jaharkes@cs.cmu.edu>
4263 M: coda@cs.cmu.edu
4264 L: codalist@coda.cs.cmu.edu
4265 S: Maintained
4266 W: http://www.coda.cs.cmu.edu/
4267 F: Documentation/filesystems/coda.rst
4268 F: fs/coda/
4269 F: include/linux/coda*.h
4270 F: include/uapi/linux/coda*.h
4271
4272 CODA V4L2 MEM2MEM DRIVER
4273 M: Philipp Zabel <p.zabel@pengutronix.de>
4274 L: linux-media@vger.kernel.org
4275 S: Maintained
4276 F: Documentation/devicetree/bindings/media/coda.txt
4277 F: drivers/media/platform/coda/
4278
4279 CODE OF CONDUCT
4280 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4281 S: Supported
4282 F: Documentation/process/code-of-conduct-interpretation.rst
4283 F: Documentation/process/code-of-conduct.rst
4284
4285 COMMON CLK FRAMEWORK
4286 M: Michael Turquette <mturquette@baylibre.com>
4287 M: Stephen Boyd <sboyd@kernel.org>
4288 L: linux-clk@vger.kernel.org
4289 S: Maintained
4290 Q: http://patchwork.kernel.org/project/linux-clk/list/
4291 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4292 F: Documentation/devicetree/bindings/clock/
4293 F: drivers/clk/
4294 F: include/linux/clk-pr*
4295 F: include/linux/clk/
4296 F: include/linux/of_clk.h
4297 X: drivers/clk/clkdev.c
4298
4299 COMMON INTERNET FILE SYSTEM (CIFS)
4300 M: Steve French <sfrench@samba.org>
4301 L: linux-cifs@vger.kernel.org
4302 L: samba-technical@lists.samba.org (moderated for non-subscribers)
4303 S: Supported
4304 W: http://linux-cifs.samba.org/
4305 T: git git://git.samba.org/sfrench/cifs-2.6.git
4306 F: Documentation/admin-guide/cifs/
4307 F: fs/cifs/
4308
4309 COMPACTPCI HOTPLUG CORE
4310 M: Scott Murray <scott@spiteful.org>
4311 L: linux-pci@vger.kernel.org
4312 S: Maintained
4313 F: drivers/pci/hotplug/cpci_hotplug*
4314
4315 COMPACTPCI HOTPLUG GENERIC DRIVER
4316 M: Scott Murray <scott@spiteful.org>
4317 L: linux-pci@vger.kernel.org
4318 S: Maintained
4319 F: drivers/pci/hotplug/cpcihp_generic.c
4320
4321 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4322 M: Scott Murray <scott@spiteful.org>
4323 L: linux-pci@vger.kernel.org
4324 S: Maintained
4325 F: drivers/pci/hotplug/cpcihp_zt5550.*
4326
4327 COMPAL LAPTOP SUPPORT
4328 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4329 L: platform-driver-x86@vger.kernel.org
4330 S: Maintained
4331 F: drivers/platform/x86/compal-laptop.c
4332
4333 COMPILER ATTRIBUTES
4334 M: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4335 S: Maintained
4336 F: include/linux/compiler_attributes.h
4337
4338 CONEXANT ACCESSRUNNER USB DRIVER
4339 L: accessrunner-general@lists.sourceforge.net
4340 S: Orphan
4341 W: http://accessrunner.sourceforge.net/
4342 F: drivers/usb/atm/cxacru.c
4343
4344 CONFIGFS
4345 M: Joel Becker <jlbec@evilplan.org>
4346 M: Christoph Hellwig <hch@lst.de>
4347 S: Supported
4348 T: git git://git.infradead.org/users/hch/configfs.git
4349 F: fs/configfs/
4350 F: include/linux/configfs.h
4351
4352 CONNECTOR
4353 M: Evgeniy Polyakov <zbr@ioremap.net>
4354 L: netdev@vger.kernel.org
4355 S: Maintained
4356 F: drivers/connector/
4357
4358 CONTROL GROUP (CGROUP)
4359 M: Tejun Heo <tj@kernel.org>
4360 M: Li Zefan <lizefan@huawei.com>
4361 M: Johannes Weiner <hannes@cmpxchg.org>
4362 L: cgroups@vger.kernel.org
4363 S: Maintained
4364 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4365 F: Documentation/admin-guide/cgroup-v1/
4366 F: Documentation/admin-guide/cgroup-v2.rst
4367 F: include/linux/cgroup*
4368 F: kernel/cgroup/
4369
4370 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4371 M: Tejun Heo <tj@kernel.org>
4372 M: Jens Axboe <axboe@kernel.dk>
4373 L: cgroups@vger.kernel.org
4374 L: linux-block@vger.kernel.org
4375 T: git git://git.kernel.dk/linux-block
4376 F: Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4377 F: block/bfq-cgroup.c
4378 F: block/blk-cgroup.c
4379 F: block/blk-iolatency.c
4380 F: block/blk-throttle.c
4381 F: include/linux/blk-cgroup.h
4382
4383 CONTROL GROUP - CPUSET
4384 M: Li Zefan <lizefan@huawei.com>
4385 L: cgroups@vger.kernel.org
4386 S: Maintained
4387 W: http://www.bullopensource.org/cpuset/
4388 W: http://oss.sgi.com/projects/cpusets/
4389 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4390 F: Documentation/admin-guide/cgroup-v1/cpusets.rst
4391 F: include/linux/cpuset.h
4392 F: kernel/cgroup/cpuset.c
4393
4394 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4395 M: Johannes Weiner <hannes@cmpxchg.org>
4396 M: Michal Hocko <mhocko@kernel.org>
4397 M: Vladimir Davydov <vdavydov.dev@gmail.com>
4398 L: cgroups@vger.kernel.org
4399 L: linux-mm@kvack.org
4400 S: Maintained
4401 F: mm/memcontrol.c
4402 F: mm/swap_cgroup.c
4403
4404 CORETEMP HARDWARE MONITORING DRIVER
4405 M: Fenghua Yu <fenghua.yu@intel.com>
4406 L: linux-hwmon@vger.kernel.org
4407 S: Maintained
4408 F: Documentation/hwmon/coretemp.rst
4409 F: drivers/hwmon/coretemp.c
4410
4411 COSA/SRP SYNC SERIAL DRIVER
4412 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4413 S: Maintained
4414 W: http://www.fi.muni.cz/~kas/cosa/
4415 F: drivers/net/wan/cosa*
4416
4417 COUNTER SUBSYSTEM
4418 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4419 L: linux-iio@vger.kernel.org
4420 S: Maintained
4421 F: Documentation/ABI/testing/sysfs-bus-counter*
4422 F: Documentation/driver-api/generic-counter.rst
4423 F: drivers/counter/
4424 F: include/linux/counter.h
4425 F: include/linux/counter_enum.h
4426
4427 CPMAC ETHERNET DRIVER
4428 M: Florian Fainelli <f.fainelli@gmail.com>
4429 L: netdev@vger.kernel.org
4430 S: Maintained
4431 F: drivers/net/ethernet/ti/cpmac.c
4432
4433 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4434 M: Viresh Kumar <viresh.kumar@linaro.org>
4435 M: Sudeep Holla <sudeep.holla@arm.com>
4436 L: linux-pm@vger.kernel.org
4437 S: Maintained
4438 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4439 F: drivers/cpufreq/vexpress-spc-cpufreq.c
4440
4441 CPU FREQUENCY SCALING FRAMEWORK
4442 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4443 M: Viresh Kumar <viresh.kumar@linaro.org>
4444 L: linux-pm@vger.kernel.org
4445 S: Maintained
4446 B: https://bugzilla.kernel.org
4447 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4448 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4449 F: Documentation/admin-guide/pm/cpufreq.rst
4450 F: Documentation/admin-guide/pm/intel_pstate.rst
4451 F: Documentation/cpu-freq/
4452 F: Documentation/devicetree/bindings/cpufreq/
4453 F: drivers/cpufreq/
4454 F: include/linux/cpufreq.h
4455 F: include/linux/sched/cpufreq.h
4456 F: kernel/sched/cpufreq*.c
4457 F: tools/testing/selftests/cpufreq/
4458
4459 CPU IDLE TIME MANAGEMENT FRAMEWORK
4460 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4461 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4462 L: linux-pm@vger.kernel.org
4463 S: Maintained
4464 B: https://bugzilla.kernel.org
4465 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4466 F: Documentation/admin-guide/pm/cpuidle.rst
4467 F: Documentation/driver-api/pm/cpuidle.rst
4468 F: drivers/cpuidle/*
4469 F: include/linux/cpuidle.h
4470
4471 CPU POWER MONITORING SUBSYSTEM
4472 M: Thomas Renninger <trenn@suse.com>
4473 M: Shuah Khan <shuah@kernel.org>
4474 M: Shuah Khan <skhan@linuxfoundation.org>
4475 L: linux-pm@vger.kernel.org
4476 S: Maintained
4477 F: tools/power/cpupower/
4478
4479 CPUID/MSR DRIVER
4480 M: "H. Peter Anvin" <hpa@zytor.com>
4481 S: Maintained
4482 F: arch/x86/kernel/cpuid.c
4483 F: arch/x86/kernel/msr.c
4484
4485 CPUIDLE DRIVER - ARM BIG LITTLE
4486 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4487 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4488 L: linux-pm@vger.kernel.org
4489 L: linux-arm-kernel@lists.infradead.org
4490 S: Maintained
4491 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4492 F: drivers/cpuidle/cpuidle-big_little.c
4493
4494 CPUIDLE DRIVER - ARM EXYNOS
4495 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4496 M: Daniel Lezcano <daniel.lezcano@linaro.org>
4497 M: Kukjin Kim <kgene@kernel.org>
4498 L: linux-pm@vger.kernel.org
4499 L: linux-samsung-soc@vger.kernel.org
4500 S: Supported
4501 F: arch/arm/mach-exynos/pm.c
4502 F: drivers/cpuidle/cpuidle-exynos.c
4503
4504 CPUIDLE DRIVER - ARM PSCI
4505 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4506 M: Sudeep Holla <sudeep.holla@arm.com>
4507 L: linux-pm@vger.kernel.org
4508 L: linux-arm-kernel@lists.infradead.org
4509 S: Supported
4510 F: drivers/cpuidle/cpuidle-psci.c
4511
4512 CRAMFS FILESYSTEM
4513 M: Nicolas Pitre <nico@fluxnic.net>
4514 S: Maintained
4515 F: Documentation/filesystems/cramfs.rst
4516 F: fs/cramfs/
4517
4518 CREATIVE SB0540
4519 M: Bastien Nocera <hadess@hadess.net>
4520 L: linux-input@vger.kernel.org
4521 S: Maintained
4522 F: drivers/hid/hid-creative-sb0540.c
4523
4524 CRYPTO API
4525 M: Herbert Xu <herbert@gondor.apana.org.au>
4526 M: "David S. Miller" <davem@davemloft.net>
4527 L: linux-crypto@vger.kernel.org
4528 S: Maintained
4529 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4530 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4531 F: Documentation/crypto/
4532 F: Documentation/devicetree/bindings/crypto/
4533 F: arch/*/crypto/
4534 F: crypto/
4535 F: drivers/crypto/
4536 F: include/crypto/
4537 F: include/linux/crypto*
4538 F: lib/crypto/
4539
4540 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4541 M: Neil Horman <nhorman@tuxdriver.com>
4542 L: linux-crypto@vger.kernel.org
4543 S: Maintained
4544 F: crypto/ansi_cprng.c
4545 F: crypto/rng.c
4546
4547 CS3308 MEDIA DRIVER
4548 M: Hans Verkuil <hverkuil@xs4all.nl>
4549 L: linux-media@vger.kernel.org
4550 S: Odd Fixes
4551 W: http://linuxtv.org
4552 T: git git://linuxtv.org/media_tree.git
4553 F: drivers/media/i2c/cs3308.c
4554
4555 CS5535 Audio ALSA driver
4556 M: Jaya Kumar <jayakumar.alsa@gmail.com>
4557 S: Maintained
4558 F: sound/pci/cs5535audio/
4559
4560 CSI DRIVERS FOR ALLWINNER V3s
4561 M: Yong Deng <yong.deng@magewell.com>
4562 L: linux-media@vger.kernel.org
4563 S: Maintained
4564 T: git git://linuxtv.org/media_tree.git
4565 F: Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4566 F: drivers/media/platform/sunxi/sun6i-csi/
4567
4568 CW1200 WLAN driver
4569 M: Solomon Peachy <pizza@shaftnet.org>
4570 S: Maintained
4571 F: drivers/net/wireless/st/cw1200/
4572
4573 CX18 VIDEO4LINUX DRIVER
4574 M: Andy Walls <awalls@md.metrocast.net>
4575 L: linux-media@vger.kernel.org
4576 S: Maintained
4577 W: https://linuxtv.org
4578 T: git git://linuxtv.org/media_tree.git
4579 F: drivers/media/pci/cx18/
4580 F: include/uapi/linux/ivtv*
4581
4582 CX2341X MPEG ENCODER HELPER MODULE
4583 M: Hans Verkuil <hverkuil@xs4all.nl>
4584 L: linux-media@vger.kernel.org
4585 S: Maintained
4586 W: https://linuxtv.org
4587 T: git git://linuxtv.org/media_tree.git
4588 F: drivers/media/common/cx2341x*
4589 F: include/media/drv-intf/cx2341x.h
4590
4591 CX24120 MEDIA DRIVER
4592 M: Jemma Denson <jdenson@gmail.com>
4593 M: Patrick Boettcher <patrick.boettcher@posteo.de>
4594 L: linux-media@vger.kernel.org
4595 S: Maintained
4596 W: https://linuxtv.org
4597 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4598 F: drivers/media/dvb-frontends/cx24120*
4599
4600 CX88 VIDEO4LINUX DRIVER
4601 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4602 L: linux-media@vger.kernel.org
4603 S: Odd fixes
4604 W: https://linuxtv.org
4605 T: git git://linuxtv.org/media_tree.git
4606 F: Documentation/driver-api/media/drivers/cx88*
4607 F: drivers/media/pci/cx88/
4608
4609 CXD2820R MEDIA DRIVER
4610 M: Antti Palosaari <crope@iki.fi>
4611 L: linux-media@vger.kernel.org
4612 S: Maintained
4613 W: https://linuxtv.org
4614 W: http://palosaari.fi/linux/
4615 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4616 T: git git://linuxtv.org/anttip/media_tree.git
4617 F: drivers/media/dvb-frontends/cxd2820r*
4618
4619 CXGB3 ETHERNET DRIVER (CXGB3)
4620 M: Vishal Kulkarni <vishal@chelsio.com>
4621 L: netdev@vger.kernel.org
4622 S: Supported
4623 W: http://www.chelsio.com
4624 F: drivers/net/ethernet/chelsio/cxgb3/
4625
4626 CXGB3 ISCSI DRIVER (CXGB3I)
4627 M: Karen Xie <kxie@chelsio.com>
4628 L: linux-scsi@vger.kernel.org
4629 S: Supported
4630 W: http://www.chelsio.com
4631 F: drivers/scsi/cxgbi/cxgb3i
4632
4633 CXGB4 CRYPTO DRIVER (chcr)
4634 M: Ayush Sawal <ayush.sawal@chelsio.com>
4635 M: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4636 M: Rohit Maheshwari <rohitm@chelsio.com>
4637 L: linux-crypto@vger.kernel.org
4638 S: Supported
4639 W: http://www.chelsio.com
4640 F: drivers/crypto/chelsio
4641
4642 CXGB4 ETHERNET DRIVER (CXGB4)
4643 M: Vishal Kulkarni <vishal@chelsio.com>
4644 L: netdev@vger.kernel.org
4645 S: Supported
4646 W: http://www.chelsio.com
4647 F: drivers/net/ethernet/chelsio/cxgb4/
4648
4649 CXGB4 ISCSI DRIVER (CXGB4I)
4650 M: Karen Xie <kxie@chelsio.com>
4651 L: linux-scsi@vger.kernel.org
4652 S: Supported
4653 W: http://www.chelsio.com
4654 F: drivers/scsi/cxgbi/cxgb4i
4655
4656 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4657 M: Potnuri Bharat Teja <bharat@chelsio.com>
4658 L: linux-rdma@vger.kernel.org
4659 S: Supported
4660 W: http://www.openfabrics.org
4661 F: drivers/infiniband/hw/cxgb4/
4662 F: include/uapi/rdma/cxgb4-abi.h
4663
4664 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4665 M: Vishal Kulkarni <vishal@gmail.com>
4666 L: netdev@vger.kernel.org
4667 S: Supported
4668 W: http://www.chelsio.com
4669 F: drivers/net/ethernet/chelsio/cxgb4vf/
4670
4671 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4672 M: Frederic Barrat <fbarrat@linux.ibm.com>
4673 M: Andrew Donnellan <ajd@linux.ibm.com>
4674 L: linuxppc-dev@lists.ozlabs.org
4675 S: Supported
4676 F: Documentation/ABI/testing/sysfs-class-cxl
4677 F: Documentation/powerpc/cxl.rst
4678 F: arch/powerpc/platforms/powernv/pci-cxl.c
4679 F: drivers/misc/cxl/
4680 F: include/misc/cxl*
4681 F: include/uapi/misc/cxl.h
4682
4683 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4684 M: Manoj N. Kumar <manoj@linux.ibm.com>
4685 M: Matthew R. Ochs <mrochs@linux.ibm.com>
4686 M: Uma Krishnan <ukrishn@linux.ibm.com>
4687 L: linux-scsi@vger.kernel.org
4688 S: Supported
4689 F: Documentation/powerpc/cxlflash.rst
4690 F: drivers/scsi/cxlflash/
4691 F: include/uapi/scsi/cxlflash_ioctl.h
4692
4693 CYBERPRO FB DRIVER
4694 M: Russell King <linux@armlinux.org.uk>
4695 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4696 S: Maintained
4697 W: http://www.armlinux.org.uk/
4698 F: drivers/video/fbdev/cyber2000fb.*
4699
4700 CYCLADES ASYNC MUX DRIVER
4701 S: Orphan
4702 W: http://www.cyclades.com/
4703 F: drivers/tty/cyclades.c
4704 F: include/linux/cyclades.h
4705 F: include/uapi/linux/cyclades.h
4706
4707 CYCLADES PC300 DRIVER
4708 S: Orphan
4709 W: http://www.cyclades.com/
4710 F: drivers/net/wan/pc300*
4711
4712 CYPRESS_FIRMWARE MEDIA DRIVER
4713 M: Antti Palosaari <crope@iki.fi>
4714 L: linux-media@vger.kernel.org
4715 S: Maintained
4716 W: https://linuxtv.org
4717 W: http://palosaari.fi/linux/
4718 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4719 T: git git://linuxtv.org/anttip/media_tree.git
4720 F: drivers/media/common/cypress_firmware*
4721
4722 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4723 M: Linus Walleij <linus.walleij@linaro.org>
4724 L: linux-input@vger.kernel.org
4725 S: Maintained
4726 F: drivers/input/touchscreen/cy8ctma140.c
4727
4728 CYTTSP TOUCHSCREEN DRIVER
4729 M: Ferruh Yigit <fery@cypress.com>
4730 L: linux-input@vger.kernel.org
4731 S: Supported
4732 F: drivers/input/touchscreen/cyttsp*
4733 F: include/linux/input/cyttsp.h
4734
4735 D-LINK DIR-685 TOUCHKEYS DRIVER
4736 M: Linus Walleij <linus.walleij@linaro.org>
4737 L: linux-input@vger.kernel.org
4738 S: Supported
4739 F: drivers/input/keyboard/dlink-dir685-touchkeys.c
4740
4741 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4742 M: Joshua Kinard <kumba@gentoo.org>
4743 S: Maintained
4744 F: drivers/rtc/rtc-ds1685.c
4745 F: include/linux/rtc/ds1685.h
4746
4747 DAMA SLAVE for AX.25
4748 M: Joerg Reuter <jreuter@yaina.de>
4749 L: linux-hams@vger.kernel.org
4750 S: Maintained
4751 W: http://yaina.de/jreuter/
4752 W: http://www.qsl.net/dl1bke/
4753 F: net/ax25/af_ax25.c
4754 F: net/ax25/ax25_dev.c
4755 F: net/ax25/ax25_ds_*
4756 F: net/ax25/ax25_in.c
4757 F: net/ax25/ax25_out.c
4758 F: net/ax25/ax25_timer.c
4759 F: net/ax25/sysctl_net_ax25.c
4760
4761 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4762 L: netdev@vger.kernel.org
4763 S: Orphan
4764 F: Documentation/networking/device_drivers/dec/dmfe.rst
4765 F: drivers/net/ethernet/dec/tulip/dmfe.c
4766
4767 DC390/AM53C974 SCSI driver
4768 M: Hannes Reinecke <hare@suse.com>
4769 L: linux-scsi@vger.kernel.org
4770 S: Maintained
4771 F: drivers/scsi/am53c974.c
4772
4773 DC395x SCSI driver
4774 M: Oliver Neukum <oliver@neukum.org>
4775 M: Ali Akcaagac <aliakc@web.de>
4776 M: Jamie Lenehan <lenehan@twibble.org>
4777 L: dc395x@twibble.org
4778 S: Maintained
4779 W: http://twibble.org/dist/dc395x/
4780 W: http://lists.twibble.org/mailman/listinfo/dc395x/
4781 F: Documentation/scsi/dc395x.rst
4782 F: drivers/scsi/dc395x.*
4783
4784 DCCP PROTOCOL
4785 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
4786 L: dccp@vger.kernel.org
4787 S: Maintained
4788 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4789 F: include/linux/dccp.h
4790 F: include/linux/tfrc.h
4791 F: include/uapi/linux/dccp.h
4792 F: net/dccp/
4793
4794 DECnet NETWORK LAYER
4795 L: linux-decnet-user@lists.sourceforge.net
4796 S: Orphan
4797 W: http://linux-decnet.sourceforge.net
4798 F: Documentation/networking/decnet.rst
4799 F: net/decnet/
4800
4801 DECSTATION PLATFORM SUPPORT
4802 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4803 L: linux-mips@vger.kernel.org
4804 S: Maintained
4805 W: http://www.linux-mips.org/wiki/DECstation
4806 F: arch/mips/dec/
4807 F: arch/mips/include/asm/dec/
4808 F: arch/mips/include/asm/mach-dec/
4809
4810 DEFXX FDDI NETWORK DRIVER
4811 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4812 S: Maintained
4813 F: drivers/net/fddi/defxx.*
4814
4815 DEFZA FDDI NETWORK DRIVER
4816 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4817 S: Maintained
4818 F: drivers/net/fddi/defza.*
4819
4820 DEINTERLACE DRIVERS FOR ALLWINNER H3
4821 M: Jernej Skrabec <jernej.skrabec@siol.net>
4822 L: linux-media@vger.kernel.org
4823 S: Maintained
4824 T: git git://linuxtv.org/media_tree.git
4825 F: Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4826 F: drivers/media/platform/sunxi/sun8i-di/
4827
4828 DELL LAPTOP DRIVER
4829 M: Matthew Garrett <mjg59@srcf.ucam.org>
4830 M: Pali Rohár <pali@kernel.org>
4831 L: platform-driver-x86@vger.kernel.org
4832 S: Maintained
4833 F: drivers/platform/x86/dell-laptop.c
4834
4835 DELL LAPTOP FREEFALL DRIVER
4836 M: Pali Rohár <pali@kernel.org>
4837 S: Maintained
4838 F: drivers/platform/x86/dell-smo8800.c
4839
4840 DELL LAPTOP RBTN DRIVER
4841 M: Pali Rohár <pali@kernel.org>
4842 S: Maintained
4843 F: drivers/platform/x86/dell-rbtn.*
4844
4845 DELL LAPTOP SMM DRIVER
4846 M: Pali Rohár <pali@kernel.org>
4847 S: Maintained
4848 F: drivers/hwmon/dell-smm-hwmon.c
4849 F: include/uapi/linux/i8k.h
4850
4851 DELL REMOTE BIOS UPDATE DRIVER
4852 M: Stuart Hayes <stuart.w.hayes@gmail.com>
4853 L: platform-driver-x86@vger.kernel.org
4854 S: Maintained
4855 F: drivers/platform/x86/dell_rbu.c
4856
4857 DELL SMBIOS DRIVER
4858 M: Pali Rohár <pali@kernel.org>
4859 M: Mario Limonciello <mario.limonciello@dell.com>
4860 L: platform-driver-x86@vger.kernel.org
4861 S: Maintained
4862 F: drivers/platform/x86/dell-smbios.*
4863
4864 DELL SMBIOS SMM DRIVER
4865 M: Mario Limonciello <mario.limonciello@dell.com>
4866 L: platform-driver-x86@vger.kernel.org
4867 S: Maintained
4868 F: drivers/platform/x86/dell-smbios-smm.c
4869
4870 DELL SMBIOS WMI DRIVER
4871 M: Mario Limonciello <mario.limonciello@dell.com>
4872 L: platform-driver-x86@vger.kernel.org
4873 S: Maintained
4874 F: drivers/platform/x86/dell-smbios-wmi.c
4875 F: tools/wmi/dell-smbios-example.c
4876
4877 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4878 M: Stuart Hayes <stuart.w.hayes@gmail.com>
4879 L: platform-driver-x86@vger.kernel.org
4880 S: Maintained
4881 F: Documentation/driver-api/dcdbas.rst
4882 F: drivers/platform/x86/dcdbas.*
4883
4884 DELL WMI DESCRIPTOR DRIVER
4885 M: Mario Limonciello <mario.limonciello@dell.com>
4886 S: Maintained
4887 F: drivers/platform/x86/dell-wmi-descriptor.c
4888
4889 DELL WMI NOTIFICATIONS DRIVER
4890 M: Matthew Garrett <mjg59@srcf.ucam.org>
4891 M: Pali Rohár <pali@kernel.org>
4892 S: Maintained
4893 F: drivers/platform/x86/dell-wmi.c
4894
4895 DELTA ST MEDIA DRIVER
4896 M: Hugues Fruchet <hugues.fruchet@st.com>
4897 L: linux-media@vger.kernel.org
4898 S: Supported
4899 W: https://linuxtv.org
4900 T: git git://linuxtv.org/media_tree.git
4901 F: drivers/media/platform/sti/delta
4902
4903 DENALI NAND DRIVER
4904 M: Masahiro Yamada <yamada.masahiro@socionext.com>
4905 L: linux-mtd@lists.infradead.org
4906 S: Supported
4907 F: drivers/mtd/nand/raw/denali*
4908
4909 DESIGNWARE EDMA CORE IP DRIVER
4910 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4911 L: dmaengine@vger.kernel.org
4912 S: Maintained
4913 F: drivers/dma/dw-edma/
4914 F: include/linux/dma/edma.h
4915
4916 DESIGNWARE USB2 DRD IP DRIVER
4917 M: Minas Harutyunyan <hminas@synopsys.com>
4918 L: linux-usb@vger.kernel.org
4919 S: Maintained
4920 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4921 F: drivers/usb/dwc2/
4922
4923 DESIGNWARE USB3 DRD IP DRIVER
4924 M: Felipe Balbi <balbi@kernel.org>
4925 L: linux-usb@vger.kernel.org
4926 S: Maintained
4927 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4928 F: drivers/usb/dwc3/
4929
4930 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4931 M: Andreas Klinger <ak@it-klinger.de>
4932 L: linux-iio@vger.kernel.org
4933 S: Maintained
4934 F: Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4935 F: drivers/iio/proximity/srf*.c
4936
4937 DEVICE COREDUMP (DEV_COREDUMP)
4938 M: Johannes Berg <johannes@sipsolutions.net>
4939 L: linux-kernel@vger.kernel.org
4940 S: Maintained
4941 F: drivers/base/devcoredump.c
4942 F: include/linux/devcoredump.h
4943
4944 DEVICE DIRECT ACCESS (DAX)
4945 M: Dan Williams <dan.j.williams@intel.com>
4946 M: Vishal Verma <vishal.l.verma@intel.com>
4947 M: Dave Jiang <dave.jiang@intel.com>
4948 L: linux-nvdimm@lists.01.org
4949 S: Supported
4950 F: drivers/dax/
4951
4952 DEVICE FREQUENCY (DEVFREQ)
4953 M: MyungJoo Ham <myungjoo.ham@samsung.com>
4954 M: Kyungmin Park <kyungmin.park@samsung.com>
4955 M: Chanwoo Choi <cw00.choi@samsung.com>
4956 L: linux-pm@vger.kernel.org
4957 S: Maintained
4958 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4959 F: Documentation/devicetree/bindings/devfreq/
4960 F: drivers/devfreq/
4961 F: include/linux/devfreq.h
4962 F: include/trace/events/devfreq.h
4963
4964 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4965 M: Chanwoo Choi <cw00.choi@samsung.com>
4966 L: linux-pm@vger.kernel.org
4967 S: Supported
4968 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4969 F: Documentation/devicetree/bindings/devfreq/event/
4970 F: drivers/devfreq/devfreq-event.c
4971 F: drivers/devfreq/event/
4972 F: include/dt-bindings/pmu/exynos_ppmu.h
4973 F: include/linux/devfreq-event.h
4974
4975 DEVICE NUMBER REGISTRY
4976 M: Torben Mathiasen <device@lanana.org>
4977 S: Maintained
4978 W: http://lanana.org/docs/device-list/index.html
4979
4980 DEVICE-MAPPER (LVM)
4981 M: Alasdair Kergon <agk@redhat.com>
4982 M: Mike Snitzer <snitzer@redhat.com>
4983 M: dm-devel@redhat.com
4984 L: dm-devel@redhat.com
4985 S: Maintained
4986 W: http://sources.redhat.com/dm
4987 Q: http://patchwork.kernel.org/project/dm-devel/list/
4988 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4989 T: quilt http://people.redhat.com/agk/patches/linux/editing/
4990 F: Documentation/admin-guide/device-mapper/
4991 F: drivers/md/Kconfig
4992 F: drivers/md/Makefile
4993 F: drivers/md/dm*
4994 F: drivers/md/persistent-data/
4995 F: include/linux/device-mapper.h
4996 F: include/linux/dm-*.h
4997 F: include/uapi/linux/dm-*.h
4998
4999 DEVLINK
5000 M: Jiri Pirko <jiri@mellanox.com>
5001 L: netdev@vger.kernel.org
5002 S: Supported
5003 F: Documentation/networking/devlink
5004 F: include/net/devlink.h
5005 F: include/uapi/linux/devlink.h
5006 F: net/core/devlink.c
5007
5008 DIALOG SEMICONDUCTOR DRIVERS
5009 M: Support Opensource <support.opensource@diasemi.com>
5010 S: Supported
5011 W: http://www.dialog-semiconductor.com/products
5012 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
5013 F: Documentation/devicetree/bindings/mfd/da90*.txt
5014 F: Documentation/devicetree/bindings/regulator/da92*.txt
5015 F: Documentation/devicetree/bindings/regulator/slg51000.txt
5016 F: Documentation/devicetree/bindings/sound/da[79]*.txt
5017 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5018 F: Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5019 F: Documentation/hwmon/da90??.rst
5020 F: drivers/gpio/gpio-da90??.c
5021 F: drivers/hwmon/da90??-hwmon.c
5022 F: drivers/iio/adc/da91??-*.c
5023 F: drivers/input/misc/da90??_onkey.c
5024 F: drivers/input/touchscreen/da9052_tsi.c
5025 F: drivers/leds/leds-da90??.c
5026 F: drivers/mfd/da903x.c
5027 F: drivers/mfd/da90??-*.c
5028 F: drivers/mfd/da91??-*.c
5029 F: drivers/pinctrl/pinctrl-da90??.c
5030 F: drivers/power/supply/da9052-battery.c
5031 F: drivers/power/supply/da91??-*.c
5032 F: drivers/regulator/da903x.c
5033 F: drivers/regulator/da9???-regulator.[ch]
5034 F: drivers/regulator/slg51000-regulator.[ch]
5035 F: drivers/rtc/rtc-da90??.c
5036 F: drivers/thermal/da90??-thermal.c
5037 F: drivers/video/backlight/da90??_bl.c
5038 F: drivers/watchdog/da90??_wdt.c
5039 F: include/linux/mfd/da903x.h
5040 F: include/linux/mfd/da9052/
5041 F: include/linux/mfd/da9055/
5042 F: include/linux/mfd/da9062/
5043 F: include/linux/mfd/da9063/
5044 F: include/linux/mfd/da9150/
5045 F: include/linux/regulator/da9211.h
5046 F: include/sound/da[79]*.h
5047 F: sound/soc/codecs/da[79]*.[ch]
5048
5049 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5050 M: William Breathitt Gray <vilhelm.gray@gmail.com>
5051 L: linux-gpio@vger.kernel.org
5052 S: Maintained
5053 F: drivers/gpio/gpio-gpio-mm.c
5054
5055 DIOLAN U2C-12 I2C DRIVER
5056 M: Guenter Roeck <linux@roeck-us.net>
5057 L: linux-i2c@vger.kernel.org
5058 S: Maintained
5059 F: drivers/i2c/busses/i2c-diolan-u2c.c
5060
5061 DIRECTORY NOTIFICATION (DNOTIFY)
5062 M: Jan Kara <jack@suse.cz>
5063 R: Amir Goldstein <amir73il@gmail.com>
5064 L: linux-fsdevel@vger.kernel.org
5065 S: Maintained
5066 F: Documentation/filesystems/dnotify.rst
5067 F: fs/notify/dnotify/
5068 F: include/linux/dnotify.h
5069
5070 DISK GEOMETRY AND PARTITION HANDLING
5071 M: Andries Brouwer <aeb@cwi.nl>
5072 S: Maintained
5073 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5074 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5075 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5076
5077 DISKQUOTA
5078 M: Jan Kara <jack@suse.com>
5079 S: Maintained
5080 F: Documentation/filesystems/quota.rst
5081 F: fs/quota/
5082 F: include/linux/quota*.h
5083 F: include/uapi/linux/quota*.h
5084
5085 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5086 M: Bernie Thompson <bernie@plugable.com>
5087 L: linux-fbdev@vger.kernel.org
5088 S: Maintained
5089 W: http://plugable.com/category/projects/udlfb/
5090 F: Documentation/fb/udlfb.rst
5091 F: drivers/video/fbdev/udlfb.c
5092 F: include/video/udlfb.h
5093
5094 DISTRIBUTED LOCK MANAGER (DLM)
5095 M: Christine Caulfield <ccaulfie@redhat.com>
5096 M: David Teigland <teigland@redhat.com>
5097 L: cluster-devel@redhat.com
5098 S: Supported
5099 W: http://sources.redhat.com/cluster/
5100 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5101 F: fs/dlm/
5102
5103 DMA BUFFER SHARING FRAMEWORK
5104 M: Sumit Semwal <sumit.semwal@linaro.org>
5105 L: linux-media@vger.kernel.org
5106 L: dri-devel@lists.freedesktop.org
5107 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5108 S: Maintained
5109 T: git git://anongit.freedesktop.org/drm/drm-misc
5110 F: Documentation/driver-api/dma-buf.rst
5111 F: drivers/dma-buf/
5112 F: include/linux/*fence.h
5113 F: include/linux/dma-buf*
5114 F: include/linux/dma-resv.h
5115 K: \bdma_(?:buf|fence|resv)\b
5116
5117 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5118 M: Vinod Koul <vkoul@kernel.org>
5119 L: dmaengine@vger.kernel.org
5120 S: Maintained
5121 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5122 T: git git://git.infradead.org/users/vkoul/slave-dma.git
5123 F: Documentation/devicetree/bindings/dma/
5124 F: Documentation/driver-api/dmaengine/
5125 F: drivers/dma/
5126 F: include/linux/dmaengine.h
5127 F: include/linux/of_dma.h
5128
5129 DMA MAPPING HELPERS
5130 M: Christoph Hellwig <hch@lst.de>
5131 M: Marek Szyprowski <m.szyprowski@samsung.com>
5132 R: Robin Murphy <robin.murphy@arm.com>
5133 L: iommu@lists.linux-foundation.org
5134 S: Supported
5135 W: http://git.infradead.org/users/hch/dma-mapping.git
5136 T: git git://git.infradead.org/users/hch/dma-mapping.git
5137 F: include/asm-generic/dma-mapping.h
5138 F: include/linux/dma-direct.h
5139 F: include/linux/dma-mapping.h
5140 F: include/linux/dma-noncoherent.h
5141 F: kernel/dma/
5142
5143 DMA-BUF HEAPS FRAMEWORK
5144 M: Sumit Semwal <sumit.semwal@linaro.org>
5145 R: Andrew F. Davis <afd@ti.com>
5146 R: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5147 R: Liam Mark <lmark@codeaurora.org>
5148 R: Laura Abbott <labbott@redhat.com>
5149 R: Brian Starkey <Brian.Starkey@arm.com>
5150 R: John Stultz <john.stultz@linaro.org>
5151 L: linux-media@vger.kernel.org
5152 L: dri-devel@lists.freedesktop.org
5153 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5154 S: Maintained
5155 T: git git://anongit.freedesktop.org/drm/drm-misc
5156 F: drivers/dma-buf/dma-heap.c
5157 F: drivers/dma-buf/heaps/*
5158 F: include/linux/dma-heap.h
5159 F: include/uapi/linux/dma-heap.h
5160
5161 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5162 M: Lukasz Luba <lukasz.luba@arm.com>
5163 L: linux-pm@vger.kernel.org
5164 L: linux-samsung-soc@vger.kernel.org
5165 S: Maintained
5166 F: Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5167 F: drivers/memory/samsung/exynos5422-dmc.c
5168
5169 DME1737 HARDWARE MONITOR DRIVER
5170 M: Juerg Haefliger <juergh@gmail.com>
5171 L: linux-hwmon@vger.kernel.org
5172 S: Maintained
5173 F: Documentation/hwmon/dme1737.rst
5174 F: drivers/hwmon/dme1737.c
5175
5176 DMI/SMBIOS SUPPORT
5177 M: Jean Delvare <jdelvare@suse.com>
5178 S: Maintained
5179 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5180 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
5181 F: drivers/firmware/dmi-id.c
5182 F: drivers/firmware/dmi_scan.c
5183 F: include/linux/dmi.h
5184
5185 DOCUMENTATION
5186 M: Jonathan Corbet <corbet@lwn.net>
5187 L: linux-doc@vger.kernel.org
5188 S: Maintained
5189 T: git git://git.lwn.net/linux.git docs-next
5190 F: Documentation/
5191 F: scripts/documentation-file-ref-check
5192 F: scripts/kernel-doc
5193 F: scripts/sphinx-pre-install
5194 X: Documentation/ABI/
5195 X: Documentation/admin-guide/media/
5196 X: Documentation/devicetree/
5197 X: Documentation/driver-api/media/
5198 X: Documentation/firmware-guide/acpi/
5199 X: Documentation/i2c/
5200 X: Documentation/power/
5201 X: Documentation/spi/
5202 X: Documentation/userspace-api/media/
5203
5204 DOCUMENTATION SCRIPTS
5205 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5206 L: linux-doc@vger.kernel.org
5207 S: Maintained
5208 F: Documentation/sphinx/parse-headers.pl
5209 F: scripts/documentation-file-ref-check
5210 F: scripts/sphinx-pre-install
5211
5212 DOCUMENTATION/ITALIAN
5213 M: Federico Vaga <federico.vaga@vaga.pv.it>
5214 L: linux-doc@vger.kernel.org
5215 S: Maintained
5216 F: Documentation/translations/it_IT
5217
5218 DONGWOON DW9714 LENS VOICE COIL DRIVER
5219 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5220 L: linux-media@vger.kernel.org
5221 S: Maintained
5222 T: git git://linuxtv.org/media_tree.git
5223 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5224 F: drivers/media/i2c/dw9714.c
5225
5226 DONGWOON DW9807 LENS VOICE COIL DRIVER
5227 M: Sakari Ailus <sakari.ailus@linux.intel.com>
5228 L: linux-media@vger.kernel.org
5229 S: Maintained
5230 T: git git://linuxtv.org/media_tree.git
5231 F: Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5232 F: drivers/media/i2c/dw9807-vcm.c
5233
5234 DOUBLETALK DRIVER
5235 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
5236 L: blinux-list@redhat.com
5237 S: Maintained
5238 F: drivers/char/dtlk.c
5239 F: include/linux/dtlk.h
5240
5241 DPAA2 DATAPATH I/O (DPIO) DRIVER
5242 M: Roy Pledge <Roy.Pledge@nxp.com>
5243 L: linux-kernel@vger.kernel.org
5244 S: Maintained
5245 F: drivers/soc/fsl/dpio
5246
5247 DPAA2 ETHERNET DRIVER
5248 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5249 M: Ioana Radulescu <ruxandra.radulescu@nxp.com>
5250 L: netdev@vger.kernel.org
5251 S: Maintained
5252 F: Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5253 F: Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5254 F: drivers/net/ethernet/freescale/dpaa2/Kconfig
5255 F: drivers/net/ethernet/freescale/dpaa2/Makefile
5256 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5257 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5258 F: drivers/net/ethernet/freescale/dpaa2/dpkg.h
5259 F: drivers/net/ethernet/freescale/dpaa2/dpmac*
5260 F: drivers/net/ethernet/freescale/dpaa2/dpni*
5261
5262 DPAA2 ETHERNET SWITCH DRIVER
5263 M: Ioana Radulescu <ruxandra.radulescu@nxp.com>
5264 M: Ioana Ciornei <ioana.ciornei@nxp.com>
5265 L: linux-kernel@vger.kernel.org
5266 S: Maintained
5267 F: drivers/staging/fsl-dpaa2/ethsw
5268
5269 DPT_I2O SCSI RAID DRIVER
5270 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5271 L: linux-scsi@vger.kernel.org
5272 S: Maintained
5273 W: http://www.adaptec.com/
5274 F: drivers/scsi/dpt*
5275 F: drivers/scsi/dpt/
5276
5277 DRBD DRIVER
5278 M: Philipp Reisner <philipp.reisner@linbit.com>
5279 M: Lars Ellenberg <lars.ellenberg@linbit.com>
5280 L: drbd-dev@lists.linbit.com
5281 S: Supported
5282 W: http://www.drbd.org
5283 T: git git://git.linbit.com/linux-drbd.git
5284 T: git git://git.linbit.com/drbd-8.4.git
5285 F: Documentation/admin-guide/blockdev/
5286 F: drivers/block/drbd/
5287 F: lib/lru_cache.c
5288
5289 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5290 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5291 R: "Rafael J. Wysocki" <rafael@kernel.org>
5292 S: Supported
5293 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5294 F: Documentation/core-api/kobject.rst
5295 F: drivers/base/
5296 F: fs/debugfs/
5297 F: fs/sysfs/
5298 F: include/linux/debugfs.h
5299 F: include/linux/kobj*
5300 F: lib/kobj*
5301
5302 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5303 M: Kevin Hilman <khilman@kernel.org>
5304 M: Nishanth Menon <nm@ti.com>
5305 L: linux-pm@vger.kernel.org
5306 S: Maintained
5307 F: drivers/power/avs/
5308 F: include/linux/power/smartreflex.h
5309
5310 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5311 M: Maxime Ripard <mripard@kernel.org>
5312 M: Chen-Yu Tsai <wens@csie.org>
5313 R: Jernej Skrabec <jernej.skrabec@siol.net>
5314 L: dri-devel@lists.freedesktop.org
5315 S: Supported
5316 T: git git://anongit.freedesktop.org/drm/drm-misc
5317 F: drivers/gpu/drm/sun4i/sun8i*
5318
5319 DRM DRIVER FOR ARM PL111 CLCD
5320 M: Eric Anholt <eric@anholt.net>
5321 S: Supported
5322 T: git git://anongit.freedesktop.org/drm/drm-misc
5323 F: drivers/gpu/drm/pl111/
5324
5325 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5326 M: Linus Walleij <linus.walleij@linaro.org>
5327 S: Maintained
5328 T: git git://anongit.freedesktop.org/drm/drm-misc
5329 F: Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5330 F: drivers/gpu/drm/panel/panel-arm-versatile.c
5331
5332 DRM DRIVER FOR ASPEED BMC GFX
5333 M: Joel Stanley <joel@jms.id.au>
5334 L: linux-aspeed@lists.ozlabs.org
5335 S: Supported
5336 T: git git://anongit.freedesktop.org/drm/drm-misc
5337 F: Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5338 F: drivers/gpu/drm/aspeed/
5339
5340 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5341 M: Dave Airlie <airlied@redhat.com>
5342 S: Odd Fixes
5343 F: drivers/gpu/drm/ast/
5344
5345 DRM DRIVER FOR BOCHS VIRTUAL GPU
5346 M: Gerd Hoffmann <kraxel@redhat.com>
5347 L: virtualization@lists.linux-foundation.org
5348 S: Maintained
5349 T: git git://anongit.freedesktop.org/drm/drm-misc
5350 F: drivers/gpu/drm/bochs/
5351
5352 DRM DRIVER FOR BOE HIMAX8279D PANELS
5353 M: Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5354 S: Maintained
5355 F: Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5356 F: drivers/gpu/drm/panel/panel-boe-himax8279d.c
5357
5358 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5359 M: Linus Walleij <linus.walleij@linaro.org>
5360 S: Maintained
5361 T: git git://anongit.freedesktop.org/drm/drm-misc
5362 F: drivers/gpu/drm/tve200/
5363
5364 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5365 M: Icenowy Zheng <icenowy@aosc.io>
5366 S: Maintained
5367 F: Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5368 F: drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5369
5370 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5371 M: Jagan Teki <jagan@amarulasolutions.com>
5372 S: Maintained
5373 F: Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5374 F: drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5375
5376 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5377 M: Hans de Goede <hdegoede@redhat.com>
5378 S: Maintained
5379 T: git git://anongit.freedesktop.org/drm/drm-misc
5380 F: drivers/gpu/drm/tiny/gm12u320.c
5381
5382 DRM DRIVER FOR HX8357D PANELS
5383 M: Eric Anholt <eric@anholt.net>
5384 S: Maintained
5385 T: git git://anongit.freedesktop.org/drm/drm-misc
5386 F: Documentation/devicetree/bindings/display/himax,hx8357d.txt
5387 F: drivers/gpu/drm/tiny/hx8357d.c
5388
5389 DRM DRIVER FOR ILITEK ILI9225 PANELS
5390 M: David Lechner <david@lechnology.com>
5391 S: Maintained
5392 T: git git://anongit.freedesktop.org/drm/drm-misc
5393 F: Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5394 F: drivers/gpu/drm/tiny/ili9225.c
5395
5396 DRM DRIVER FOR ILITEK ILI9486 PANELS
5397 M: Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5398 S: Maintained
5399 T: git git://anongit.freedesktop.org/drm/drm-misc
5400 F: Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5401 F: drivers/gpu/drm/tiny/ili9486.c
5402
5403 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5404 S: Orphan / Obsolete
5405 F: drivers/gpu/drm/i810/
5406 F: include/uapi/drm/i810_drm.h
5407
5408 DRM DRIVER FOR LVDS PANELS
5409 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5410 L: dri-devel@lists.freedesktop.org
5411 T: git git://anongit.freedesktop.org/drm/drm-misc
5412 S: Maintained
5413 F: drivers/gpu/drm/panel/panel-lvds.c
5414 F: Documentation/devicetree/bindings/display/panel/lvds.yaml
5415
5416 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5417 S: Orphan / Obsolete
5418 F: drivers/gpu/drm/mga/
5419 F: include/uapi/drm/mga_drm.h
5420
5421 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5422 M: Dave Airlie <airlied@redhat.com>
5423 S: Odd Fixes
5424 F: drivers/gpu/drm/mgag200/
5425
5426 DRM DRIVER FOR MI0283QT
5427 M: Noralf Trønnes <noralf@tronnes.org>
5428 S: Maintained
5429 T: git git://anongit.freedesktop.org/drm/drm-misc
5430 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5431 F: drivers/gpu/drm/tiny/mi0283qt.c
5432
5433 DRM DRIVER FOR MSM ADRENO GPU
5434 M: Rob Clark <robdclark@gmail.com>
5435 M: Sean Paul <sean@poorly.run>
5436 L: linux-arm-msm@vger.kernel.org
5437 L: dri-devel@lists.freedesktop.org
5438 L: freedreno@lists.freedesktop.org
5439 S: Maintained
5440 T: git https://gitlab.freedesktop.org/drm/msm.git
5441 F: Documentation/devicetree/bindings/display/msm/
5442 F: drivers/gpu/drm/msm/
5443 F: include/uapi/drm/msm_drm.h
5444
5445 DRM DRIVER FOR NOVATEK NT35510 PANELS
5446 M: Linus Walleij <linus.walleij@linaro.org>
5447 S: Maintained
5448 T: git git://anongit.freedesktop.org/drm/drm-misc
5449 F: Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5450 F: drivers/gpu/drm/panel/panel-novatek-nt35510.c
5451
5452 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5453 M: Ben Skeggs <bskeggs@redhat.com>
5454 L: dri-devel@lists.freedesktop.org
5455 L: nouveau@lists.freedesktop.org
5456 S: Supported
5457 T: git git://github.com/skeggsb/linux
5458 F: drivers/gpu/drm/nouveau/
5459 F: include/uapi/drm/nouveau_drm.h
5460
5461 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5462 M: Stefan Mavrodiev <stefan@olimex.com>
5463 S: Maintained
5464 F: Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5465 F: drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5466
5467 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5468 M: Noralf Trønnes <noralf@tronnes.org>
5469 S: Maintained
5470 T: git git://anongit.freedesktop.org/drm/drm-misc
5471 F: Documentation/devicetree/bindings/display/repaper.txt
5472 F: drivers/gpu/drm/tiny/repaper.c
5473
5474 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5475 M: Dave Airlie <airlied@redhat.com>
5476 M: Gerd Hoffmann <kraxel@redhat.com>
5477 L: virtualization@lists.linux-foundation.org
5478 S: Obsolete
5479 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5480 T: git git://anongit.freedesktop.org/drm/drm-misc
5481 F: drivers/gpu/drm/tiny/cirrus.c
5482
5483 DRM DRIVER FOR QXL VIRTUAL GPU
5484 M: Dave Airlie <airlied@redhat.com>
5485 M: Gerd Hoffmann <kraxel@redhat.com>
5486 L: virtualization@lists.linux-foundation.org
5487 L: spice-devel@lists.freedesktop.org
5488 S: Maintained
5489 T: git git://anongit.freedesktop.org/drm/drm-misc
5490 F: drivers/gpu/drm/qxl/
5491 F: include/uapi/drm/qxl_drm.h
5492
5493 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5494 S: Orphan / Obsolete
5495 F: drivers/gpu/drm/r128/
5496 F: include/uapi/drm/r128_drm.h
5497
5498 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5499 M: Robert Chiras <robert.chiras@nxp.com>
5500 S: Maintained
5501 F: Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5502 F: drivers/gpu/drm/panel/panel-raydium-rm67191.c
5503
5504 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5505 M: Guido Günther <agx@sigxcpu.org>
5506 R: Purism Kernel Team <kernel@puri.sm>
5507 S: Maintained
5508 F: Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5509 F: drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5510
5511 DRM DRIVER FOR SAVAGE VIDEO CARDS
5512 S: Orphan / Obsolete
5513 F: drivers/gpu/drm/savage/
5514 F: include/uapi/drm/savage_drm.h
5515
5516 DRM DRIVER FOR SIS VIDEO CARDS
5517 S: Orphan / Obsolete
5518 F: drivers/gpu/drm/sis/
5519 F: include/uapi/drm/sis_drm.h
5520
5521 DRM DRIVER FOR SITRONIX ST7586 PANELS
5522 M: David Lechner <david@lechnology.com>
5523 S: Maintained
5524 T: git git://anongit.freedesktop.org/drm/drm-misc
5525 F: Documentation/devicetree/bindings/display/sitronix,st7586.txt
5526 F: drivers/gpu/drm/tiny/st7586.c
5527
5528 DRM DRIVER FOR SITRONIX ST7701 PANELS
5529 M: Jagan Teki <jagan@amarulasolutions.com>
5530 S: Maintained
5531 F: Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5532 F: drivers/gpu/drm/panel/panel-sitronix-st7701.c
5533
5534 DRM DRIVER FOR SITRONIX ST7735R PANELS
5535 M: David Lechner <david@lechnology.com>
5536 S: Maintained
5537 T: git git://anongit.freedesktop.org/drm/drm-misc
5538 F: Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5539 F: drivers/gpu/drm/tiny/st7735r.c
5540
5541 DRM DRIVER FOR SONY ACX424AKP PANELS
5542 M: Linus Walleij <linus.walleij@linaro.org>
5543 S: Maintained
5544 T: git git://anongit.freedesktop.org/drm/drm-misc
5545 F: drivers/gpu/drm/panel/panel-sony-acx424akp.c
5546
5547 DRM DRIVER FOR ST-ERICSSON MCDE
5548 M: Linus Walleij <linus.walleij@linaro.org>
5549 S: Maintained
5550 T: git git://anongit.freedesktop.org/drm/drm-misc
5551 F: Documentation/devicetree/bindings/display/ste,mcde.txt
5552 F: drivers/gpu/drm/mcde/
5553
5554 DRM DRIVER FOR TDFX VIDEO CARDS
5555 S: Orphan / Obsolete
5556 F: drivers/gpu/drm/tdfx/
5557
5558 DRM DRIVER FOR TPO TPG110 PANELS
5559 M: Linus Walleij <linus.walleij@linaro.org>
5560 S: Maintained
5561 T: git git://anongit.freedesktop.org/drm/drm-misc
5562 F: Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5563 F: drivers/gpu/drm/panel/panel-tpo-tpg110.c
5564
5565 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5566 M: Dave Airlie <airlied@redhat.com>
5567 R: Sean Paul <sean@poorly.run>
5568 L: dri-devel@lists.freedesktop.org
5569 S: Odd Fixes
5570 T: git git://anongit.freedesktop.org/drm/drm-misc
5571 F: drivers/gpu/drm/udl/
5572
5573 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5574 M: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5575 R: Haneen Mohammed <hamohammed.sa@gmail.com>
5576 R: Daniel Vetter <daniel@ffwll.ch>
5577 L: dri-devel@lists.freedesktop.org
5578 S: Maintained
5579 T: git git://anongit.freedesktop.org/drm/drm-misc
5580 F: Documentation/gpu/vkms.rst
5581 F: drivers/gpu/drm/vkms/
5582
5583 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5584 M: Hans de Goede <hdegoede@redhat.com>
5585 L: dri-devel@lists.freedesktop.org
5586 S: Maintained
5587 T: git git://anongit.freedesktop.org/drm/drm-misc
5588 F: drivers/gpu/drm/vboxvideo/
5589
5590 DRM DRIVER FOR VMWARE VIRTUAL GPU
5591 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5592 M: Roland Scheidegger <sroland@vmware.com>
5593 L: dri-devel@lists.freedesktop.org
5594 S: Supported
5595 T: git git://people.freedesktop.org/~sroland/linux
5596 F: drivers/gpu/drm/vmwgfx/
5597 F: include/uapi/drm/vmwgfx_drm.h
5598
5599 DRM DRIVERS
5600 M: David Airlie <airlied@linux.ie>
5601 M: Daniel Vetter <daniel@ffwll.ch>
5602 L: dri-devel@lists.freedesktop.org
5603 S: Maintained
5604 B: https://bugs.freedesktop.org/
5605 C: irc://chat.freenode.net/dri-devel
5606 T: git git://anongit.freedesktop.org/drm/drm
5607 F: Documentation/devicetree/bindings/display/
5608 F: Documentation/devicetree/bindings/gpu/
5609 F: Documentation/gpu/
5610 F: drivers/gpu/drm/
5611 F: drivers/gpu/vga/
5612 F: include/drm/
5613 F: include/linux/vga*
5614 F: include/uapi/drm/
5615
5616 DRM DRIVERS AND MISC GPU PATCHES
5617 M: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5618 M: Maxime Ripard <mripard@kernel.org>
5619 M: Thomas Zimmermann <tzimmermann@suse.de>
5620 S: Maintained
5621 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5622 T: git git://anongit.freedesktop.org/drm/drm-misc
5623 F: Documentation/gpu/
5624 F: drivers/gpu/drm/*
5625 F: drivers/gpu/vga/
5626 F: include/drm/drm*
5627 F: include/linux/vga*
5628 F: include/uapi/drm/drm*
5629
5630 DRM DRIVERS FOR ALLWINNER A10
5631 M: Maxime Ripard <mripard@kernel.org>
5632 M: Chen-Yu Tsai <wens@csie.org>
5633 L: dri-devel@lists.freedesktop.org
5634 S: Supported
5635 T: git git://anongit.freedesktop.org/drm/drm-misc
5636 F: Documentation/devicetree/bindings/display/allwinner*
5637 F: drivers/gpu/drm/sun4i/
5638
5639 DRM DRIVERS FOR AMLOGIC SOCS
5640 M: Neil Armstrong <narmstrong@baylibre.com>
5641 L: dri-devel@lists.freedesktop.org
5642 L: linux-amlogic@lists.infradead.org
5643 S: Supported
5644 W: http://linux-meson.com/
5645 T: git git://anongit.freedesktop.org/drm/drm-misc
5646 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5647 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5648 F: Documentation/gpu/meson.rst
5649 F: drivers/gpu/drm/meson/
5650
5651 DRM DRIVERS FOR ATMEL HLCDC
5652 M: Sam Ravnborg <sam@ravnborg.org>
5653 M: Boris Brezillon <bbrezillon@kernel.org>
5654 L: dri-devel@lists.freedesktop.org
5655 S: Supported
5656 T: git git://anongit.freedesktop.org/drm/drm-misc
5657 F: Documentation/devicetree/bindings/display/atmel/
5658 F: drivers/gpu/drm/atmel-hlcdc/
5659
5660 DRM DRIVERS FOR BRIDGE CHIPS
5661 M: Andrzej Hajda <a.hajda@samsung.com>
5662 M: Neil Armstrong <narmstrong@baylibre.com>
5663 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5664 R: Jonas Karlman <jonas@kwiboo.se>
5665 R: Jernej Skrabec <jernej.skrabec@siol.net>
5666 S: Maintained
5667 T: git git://anongit.freedesktop.org/drm/drm-misc
5668 F: drivers/gpu/drm/bridge/
5669
5670 DRM DRIVERS FOR EXYNOS
5671 M: Inki Dae <inki.dae@samsung.com>
5672 M: Joonyoung Shim <jy0922.shim@samsung.com>
5673 M: Seung-Woo Kim <sw0312.kim@samsung.com>
5674 M: Kyungmin Park <kyungmin.park@samsung.com>
5675 L: dri-devel@lists.freedesktop.org
5676 S: Supported
5677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5678 F: Documentation/devicetree/bindings/display/exynos/
5679 F: drivers/gpu/drm/exynos/
5680 F: include/uapi/drm/exynos_drm.h
5681
5682 DRM DRIVERS FOR FREESCALE DCU
5683 M: Stefan Agner <stefan@agner.ch>
5684 M: Alison Wang <alison.wang@nxp.com>
5685 L: dri-devel@lists.freedesktop.org
5686 S: Supported
5687 T: git git://anongit.freedesktop.org/drm/drm-misc
5688 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
5689 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
5690 F: drivers/gpu/drm/fsl-dcu/
5691
5692 DRM DRIVERS FOR FREESCALE IMX
5693 M: Philipp Zabel <p.zabel@pengutronix.de>
5694 L: dri-devel@lists.freedesktop.org
5695 S: Maintained
5696 F: Documentation/devicetree/bindings/display/imx/
5697 F: drivers/gpu/drm/imx/
5698 F: drivers/gpu/ipu-v3/
5699
5700 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5701 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5702 L: dri-devel@lists.freedesktop.org
5703 S: Maintained
5704 T: git git://github.com/patjak/drm-gma500
5705 F: drivers/gpu/drm/gma500/
5706
5707 DRM DRIVERS FOR HISILICON
5708 M: Xinliang Liu <xinliang.liu@linaro.org>
5709 M: Rongrong Zou <zourongrong@gmail.com>
5710 R: John Stultz <john.stultz@linaro.org>
5711 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
5712 R: Chen Feng <puck.chen@hisilicon.com>
5713 L: dri-devel@lists.freedesktop.org
5714 S: Maintained
5715 T: git git://anongit.freedesktop.org/drm/drm-misc
5716 F: Documentation/devicetree/bindings/display/hisilicon/
5717 F: drivers/gpu/drm/hisilicon/
5718
5719 DRM DRIVERS FOR LIMA
5720 M: Qiang Yu <yuq825@gmail.com>
5721 L: dri-devel@lists.freedesktop.org
5722 L: lima@lists.freedesktop.org (moderated for non-subscribers)
5723 S: Maintained
5724 T: git git://anongit.freedesktop.org/drm/drm-misc
5725 F: drivers/gpu/drm/lima/
5726 F: include/uapi/drm/lima_drm.h
5727
5728 DRM DRIVERS FOR MEDIATEK
5729 M: Chun-Kuang Hu <chunkuang.hu@kernel.org>
5730 M: Philipp Zabel <p.zabel@pengutronix.de>
5731 L: dri-devel@lists.freedesktop.org
5732 S: Supported
5733 F: Documentation/devicetree/bindings/display/mediatek/
5734 F: drivers/gpu/drm/mediatek/
5735
5736 DRM DRIVERS FOR NVIDIA TEGRA
5737 M: Thierry Reding <thierry.reding@gmail.com>
5738 L: dri-devel@lists.freedesktop.org
5739 L: linux-tegra@vger.kernel.org
5740 S: Supported
5741 T: git git://anongit.freedesktop.org/tegra/linux.git
5742 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5743 F: drivers/gpu/drm/tegra/
5744 F: drivers/gpu/host1x/
5745 F: include/linux/host1x.h
5746 F: include/uapi/drm/tegra_drm.h
5747
5748 DRM DRIVERS FOR RENESAS
5749 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5750 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5751 L: dri-devel@lists.freedesktop.org
5752 L: linux-renesas-soc@vger.kernel.org
5753 S: Supported
5754 T: git git://linuxtv.org/pinchartl/media drm/du/next
5755 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5756 F: Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5757 F: Documentation/devicetree/bindings/display/renesas,du.txt
5758 F: drivers/gpu/drm/rcar-du/
5759 F: drivers/gpu/drm/shmobile/
5760 F: include/linux/platform_data/shmob_drm.h
5761
5762 DRM DRIVERS FOR ROCKCHIP
5763 M: Sandy Huang <hjc@rock-chips.com>
5764 M: Heiko Stübner <heiko@sntech.de>
5765 L: dri-devel@lists.freedesktop.org
5766 S: Maintained
5767 T: git git://anongit.freedesktop.org/drm/drm-misc
5768 F: Documentation/devicetree/bindings/display/rockchip/
5769 F: drivers/gpu/drm/rockchip/
5770
5771 DRM DRIVERS FOR STI
5772 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5773 M: Vincent Abriou <vincent.abriou@st.com>
5774 L: dri-devel@lists.freedesktop.org
5775 S: Maintained
5776 T: git git://anongit.freedesktop.org/drm/drm-misc
5777 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
5778 F: drivers/gpu/drm/sti
5779
5780 DRM DRIVERS FOR STM
5781 M: Yannick Fertre <yannick.fertre@st.com>
5782 M: Philippe Cornu <philippe.cornu@st.com>
5783 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
5784 M: Vincent Abriou <vincent.abriou@st.com>
5785 L: dri-devel@lists.freedesktop.org
5786 S: Maintained
5787 T: git git://anongit.freedesktop.org/drm/drm-misc
5788 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5789 F: drivers/gpu/drm/stm
5790
5791 DRM DRIVERS FOR TI KEYSTONE
5792 M: Jyri Sarha <jsarha@ti.com>
5793 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
5794 L: dri-devel@lists.freedesktop.org
5795 S: Maintained
5796 T: git git://anongit.freedesktop.org/drm/drm-misc
5797 F: Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5798 F: Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5799 F: Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5800 F: drivers/gpu/drm/tidss/
5801
5802 DRM DRIVERS FOR TI LCDC
5803 M: Jyri Sarha <jsarha@ti.com>
5804 R: Tomi Valkeinen <tomi.valkeinen@ti.com>
5805 L: dri-devel@lists.freedesktop.org
5806 S: Maintained
5807 F: Documentation/devicetree/bindings/display/tilcdc/
5808 F: drivers/gpu/drm/tilcdc/
5809
5810 DRM DRIVERS FOR TI OMAP
5811 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
5812 L: dri-devel@lists.freedesktop.org
5813 S: Maintained
5814 F: Documentation/devicetree/bindings/display/ti/
5815 F: drivers/gpu/drm/omapdrm/
5816
5817 DRM DRIVERS FOR V3D
5818 M: Eric Anholt <eric@anholt.net>
5819 S: Supported
5820 T: git git://anongit.freedesktop.org/drm/drm-misc
5821 F: Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5822 F: drivers/gpu/drm/v3d/
5823 F: include/uapi/drm/v3d_drm.h
5824
5825 DRM DRIVERS FOR VC4
5826 M: Eric Anholt <eric@anholt.net>
5827 S: Supported
5828 T: git git://github.com/anholt/linux
5829 T: git git://anongit.freedesktop.org/drm/drm-misc
5830 F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5831 F: drivers/gpu/drm/vc4/
5832 F: include/uapi/drm/vc4_drm.h
5833
5834 DRM DRIVERS FOR VIVANTE GPU IP
5835 M: Lucas Stach <l.stach@pengutronix.de>
5836 R: Russell King <linux+etnaviv@armlinux.org.uk>
5837 R: Christian Gmeiner <christian.gmeiner@gmail.com>
5838 L: etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5839 L: dri-devel@lists.freedesktop.org
5840 S: Maintained
5841 F: Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5842 F: drivers/gpu/drm/etnaviv/
5843 F: include/uapi/drm/etnaviv_drm.h
5844
5845 DRM DRIVERS FOR XEN
5846 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5847 L: dri-devel@lists.freedesktop.org
5848 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
5849 S: Supported
5850 T: git git://anongit.freedesktop.org/drm/drm-misc
5851 F: Documentation/gpu/xen-front.rst
5852 F: drivers/gpu/drm/xen/
5853
5854 DRM DRIVERS FOR ZTE ZX
5855 M: Shawn Guo <shawnguo@kernel.org>
5856 L: dri-devel@lists.freedesktop.org
5857 S: Maintained
5858 T: git git://anongit.freedesktop.org/drm/drm-misc
5859 F: Documentation/devicetree/bindings/display/zte,vou.txt
5860 F: drivers/gpu/drm/zte/
5861
5862 DRM PANEL DRIVERS
5863 M: Thierry Reding <thierry.reding@gmail.com>
5864 R: Sam Ravnborg <sam@ravnborg.org>
5865 L: dri-devel@lists.freedesktop.org
5866 S: Maintained
5867 T: git git://anongit.freedesktop.org/drm/drm-misc
5868 F: Documentation/devicetree/bindings/display/panel/
5869 F: drivers/gpu/drm/drm_panel.c
5870 F: drivers/gpu/drm/panel/
5871 F: include/drm/drm_panel.h
5872
5873 DRM TTM SUBSYSTEM
5874 M: Christian Koenig <christian.koenig@amd.com>
5875 M: Huang Rui <ray.huang@amd.com>
5876 L: dri-devel@lists.freedesktop.org
5877 S: Maintained
5878 T: git git://people.freedesktop.org/~agd5f/linux
5879 F: drivers/gpu/drm/ttm/
5880 F: include/drm/ttm/
5881
5882 DSBR100 USB FM RADIO DRIVER
5883 M: Alexey Klimov <klimov.linux@gmail.com>
5884 L: linux-media@vger.kernel.org
5885 S: Maintained
5886 T: git git://linuxtv.org/media_tree.git
5887 F: drivers/media/radio/dsbr100.c
5888
5889 DT3155 MEDIA DRIVER
5890 M: Hans Verkuil <hverkuil@xs4all.nl>
5891 L: linux-media@vger.kernel.org
5892 S: Odd Fixes
5893 W: https://linuxtv.org
5894 T: git git://linuxtv.org/media_tree.git
5895 F: drivers/media/pci/dt3155/
5896
5897 DVB_USB_AF9015 MEDIA DRIVER
5898 M: Antti Palosaari <crope@iki.fi>
5899 L: linux-media@vger.kernel.org
5900 S: Maintained
5901 W: https://linuxtv.org
5902 W: http://palosaari.fi/linux/
5903 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5904 T: git git://linuxtv.org/anttip/media_tree.git
5905 F: drivers/media/usb/dvb-usb-v2/af9015*
5906
5907 DVB_USB_AF9035 MEDIA DRIVER
5908 M: Antti Palosaari <crope@iki.fi>
5909 L: linux-media@vger.kernel.org
5910 S: Maintained
5911 W: https://linuxtv.org
5912 W: http://palosaari.fi/linux/
5913 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5914 T: git git://linuxtv.org/anttip/media_tree.git
5915 F: drivers/media/usb/dvb-usb-v2/af9035*
5916
5917 DVB_USB_ANYSEE MEDIA DRIVER
5918 M: Antti Palosaari <crope@iki.fi>
5919 L: linux-media@vger.kernel.org
5920 S: Maintained
5921 W: https://linuxtv.org
5922 W: http://palosaari.fi/linux/
5923 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5924 T: git git://linuxtv.org/anttip/media_tree.git
5925 F: drivers/media/usb/dvb-usb-v2/anysee*
5926
5927 DVB_USB_AU6610 MEDIA DRIVER
5928 M: Antti Palosaari <crope@iki.fi>
5929 L: linux-media@vger.kernel.org
5930 S: Maintained
5931 W: https://linuxtv.org
5932 W: http://palosaari.fi/linux/
5933 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5934 T: git git://linuxtv.org/anttip/media_tree.git
5935 F: drivers/media/usb/dvb-usb-v2/au6610*
5936
5937 DVB_USB_CE6230 MEDIA DRIVER
5938 M: Antti Palosaari <crope@iki.fi>
5939 L: linux-media@vger.kernel.org
5940 S: Maintained
5941 W: https://linuxtv.org
5942 W: http://palosaari.fi/linux/
5943 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5944 T: git git://linuxtv.org/anttip/media_tree.git
5945 F: drivers/media/usb/dvb-usb-v2/ce6230*
5946
5947 DVB_USB_CXUSB MEDIA DRIVER
5948 M: Michael Krufky <mkrufky@linuxtv.org>
5949 L: linux-media@vger.kernel.org
5950 S: Maintained
5951 W: https://linuxtv.org
5952 W: http://github.com/mkrufky
5953 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5954 T: git git://linuxtv.org/media_tree.git
5955 F: drivers/media/usb/dvb-usb/cxusb*
5956
5957 DVB_USB_EC168 MEDIA DRIVER
5958 M: Antti Palosaari <crope@iki.fi>
5959 L: linux-media@vger.kernel.org
5960 S: Maintained
5961 W: https://linuxtv.org
5962 W: http://palosaari.fi/linux/
5963 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5964 T: git git://linuxtv.org/anttip/media_tree.git
5965 F: drivers/media/usb/dvb-usb-v2/ec168*
5966
5967 DVB_USB_GL861 MEDIA DRIVER
5968 M: Antti Palosaari <crope@iki.fi>
5969 L: linux-media@vger.kernel.org
5970 S: Maintained
5971 W: https://linuxtv.org
5972 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5973 T: git git://linuxtv.org/anttip/media_tree.git
5974 F: drivers/media/usb/dvb-usb-v2/gl861*
5975
5976 DVB_USB_MXL111SF MEDIA DRIVER
5977 M: Michael Krufky <mkrufky@linuxtv.org>
5978 L: linux-media@vger.kernel.org
5979 S: Maintained
5980 W: https://linuxtv.org
5981 W: http://github.com/mkrufky
5982 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5983 T: git git://linuxtv.org/mkrufky/mxl111sf.git
5984 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
5985
5986 DVB_USB_RTL28XXU MEDIA DRIVER
5987 M: Antti Palosaari <crope@iki.fi>
5988 L: linux-media@vger.kernel.org
5989 S: Maintained
5990 W: https://linuxtv.org
5991 W: http://palosaari.fi/linux/
5992 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5993 T: git git://linuxtv.org/anttip/media_tree.git
5994 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
5995
5996 DVB_USB_V2 MEDIA DRIVER
5997 M: Antti Palosaari <crope@iki.fi>
5998 L: linux-media@vger.kernel.org
5999 S: Maintained
6000 W: https://linuxtv.org
6001 W: http://palosaari.fi/linux/
6002 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6003 T: git git://linuxtv.org/anttip/media_tree.git
6004 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
6005 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
6006
6007 DYNAMIC DEBUG
6008 M: Jason Baron <jbaron@akamai.com>
6009 S: Maintained
6010 F: include/linux/dynamic_debug.h
6011 F: lib/dynamic_debug.c
6012
6013 DYNAMIC INTERRUPT MODERATION
6014 M: Tal Gilboa <talgi@mellanox.com>
6015 S: Maintained
6016 F: Documentation/networking/net_dim.rst
6017 F: include/linux/dim.h
6018 F: lib/dim/
6019
6020 DZ DECSTATION DZ11 SERIAL DRIVER
6021 M: "Maciej W. Rozycki" <macro@linux-mips.org>
6022 S: Maintained
6023 F: drivers/tty/serial/dz.*
6024
6025 E3X0 POWER BUTTON DRIVER
6026 M: Moritz Fischer <moritz.fischer@ettus.com>
6027 L: usrp-users@lists.ettus.com
6028 S: Supported
6029 W: http://www.ettus.com
6030 F: Documentation/devicetree/bindings/input/e3x0-button.txt
6031 F: drivers/input/misc/e3x0-button.c
6032
6033 E4000 MEDIA DRIVER
6034 M: Antti Palosaari <crope@iki.fi>
6035 L: linux-media@vger.kernel.org
6036 S: Maintained
6037 W: https://linuxtv.org
6038 W: http://palosaari.fi/linux/
6039 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6040 T: git git://linuxtv.org/anttip/media_tree.git
6041 F: drivers/media/tuners/e4000*
6042
6043 EARTH_PT1 MEDIA DRIVER
6044 M: Akihiro Tsukada <tskd08@gmail.com>
6045 L: linux-media@vger.kernel.org
6046 S: Odd Fixes
6047 F: drivers/media/pci/pt1/
6048
6049 EARTH_PT3 MEDIA DRIVER
6050 M: Akihiro Tsukada <tskd08@gmail.com>
6051 L: linux-media@vger.kernel.org
6052 S: Odd Fixes
6053 F: drivers/media/pci/pt3/
6054
6055 EC100 MEDIA DRIVER
6056 M: Antti Palosaari <crope@iki.fi>
6057 L: linux-media@vger.kernel.org
6058 S: Maintained
6059 W: https://linuxtv.org
6060 W: http://palosaari.fi/linux/
6061 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6062 T: git git://linuxtv.org/anttip/media_tree.git
6063 F: drivers/media/dvb-frontends/ec100*
6064
6065 ECRYPT FILE SYSTEM
6066 M: Tyler Hicks <code@tyhicks.com>
6067 L: ecryptfs@vger.kernel.org
6068 S: Odd Fixes
6069 W: http://ecryptfs.org
6070 W: https://launchpad.net/ecryptfs
6071 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6072 F: Documentation/filesystems/ecryptfs.rst
6073 F: fs/ecryptfs/
6074
6075 EDAC-AMD64
6076 M: Borislav Petkov <bp@alien8.de>
6077 L: linux-edac@vger.kernel.org
6078 S: Maintained
6079 F: drivers/edac/amd64_edac*
6080
6081 EDAC-ARMADA
6082 M: Jan Luebbe <jlu@pengutronix.de>
6083 L: linux-edac@vger.kernel.org
6084 S: Maintained
6085 F: drivers/edac/armada_xp_*
6086
6087 EDAC-AST2500
6088 M: Stefan Schaeckeler <sschaeck@cisco.com>
6089 S: Supported
6090 F: Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6091 F: drivers/edac/aspeed_edac.c
6092
6093 EDAC-BLUEFIELD
6094 M: Shravan Kumar Ramani <sramani@mellanox.com>
6095 S: Supported
6096 F: drivers/edac/bluefield_edac.c
6097
6098 EDAC-CALXEDA
6099 M: Robert Richter <rric@kernel.org>
6100 L: linux-edac@vger.kernel.org
6101 S: Maintained
6102 F: drivers/edac/highbank*
6103
6104 EDAC-CAVIUM OCTEON
6105 M: Ralf Baechle <ralf@linux-mips.org>
6106 M: Robert Richter <rrichter@marvell.com>
6107 L: linux-edac@vger.kernel.org
6108 L: linux-mips@vger.kernel.org
6109 S: Supported
6110 F: drivers/edac/octeon_edac*
6111
6112 EDAC-CAVIUM THUNDERX
6113 M: Robert Richter <rrichter@marvell.com>
6114 L: linux-edac@vger.kernel.org
6115 S: Supported
6116 F: drivers/edac/thunderx_edac*
6117
6118 EDAC-CORE
6119 M: Borislav Petkov <bp@alien8.de>
6120 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6121 M: Tony Luck <tony.luck@intel.com>
6122 R: James Morse <james.morse@arm.com>
6123 R: Robert Richter <rrichter@marvell.com>
6124 L: linux-edac@vger.kernel.org
6125 S: Supported
6126 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6127 F: Documentation/admin-guide/ras.rst
6128 F: Documentation/driver-api/edac.rst
6129 F: drivers/edac/
6130 F: include/linux/edac.h
6131
6132 EDAC-DMC520
6133 M: Lei Wang <lewan@microsoft.com>
6134 L: linux-edac@vger.kernel.org
6135 S: Supported
6136 F: drivers/edac/dmc520_edac.c
6137
6138 EDAC-E752X
6139 M: Mark Gross <mark.gross@intel.com>
6140 L: linux-edac@vger.kernel.org
6141 S: Maintained
6142 F: drivers/edac/e752x_edac.c
6143
6144 EDAC-E7XXX
6145 L: linux-edac@vger.kernel.org
6146 S: Maintained
6147 F: drivers/edac/e7xxx_edac.c
6148
6149 EDAC-FSL_DDR
6150 M: York Sun <york.sun@nxp.com>
6151 L: linux-edac@vger.kernel.org
6152 S: Maintained
6153 F: drivers/edac/fsl_ddr_edac.*
6154
6155 EDAC-GHES
6156 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6157 L: linux-edac@vger.kernel.org
6158 S: Maintained
6159 F: drivers/edac/ghes_edac.c
6160
6161 EDAC-I10NM
6162 M: Tony Luck <tony.luck@intel.com>
6163 L: linux-edac@vger.kernel.org
6164 S: Maintained
6165 F: drivers/edac/i10nm_base.c
6166
6167 EDAC-I3000
6168 L: linux-edac@vger.kernel.org
6169 S: Orphan
6170 F: drivers/edac/i3000_edac.c
6171
6172 EDAC-I5000
6173 L: linux-edac@vger.kernel.org
6174 S: Maintained
6175 F: drivers/edac/i5000_edac.c
6176
6177 EDAC-I5400
6178 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6179 L: linux-edac@vger.kernel.org
6180 S: Maintained
6181 F: drivers/edac/i5400_edac.c
6182
6183 EDAC-I7300
6184 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6185 L: linux-edac@vger.kernel.org
6186 S: Maintained
6187 F: drivers/edac/i7300_edac.c
6188
6189 EDAC-I7CORE
6190 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6191 L: linux-edac@vger.kernel.org
6192 S: Maintained
6193 F: drivers/edac/i7core_edac.c
6194
6195 EDAC-I82443BXGX
6196 M: Tim Small <tim@buttersideup.com>
6197 L: linux-edac@vger.kernel.org
6198 S: Maintained
6199 F: drivers/edac/i82443bxgx_edac.c
6200
6201 EDAC-I82975X
6202 M: "Arvind R." <arvino55@gmail.com>
6203 L: linux-edac@vger.kernel.org
6204 S: Maintained
6205 F: drivers/edac/i82975x_edac.c
6206
6207 EDAC-IE31200
6208 M: Jason Baron <jbaron@akamai.com>
6209 L: linux-edac@vger.kernel.org
6210 S: Maintained
6211 F: drivers/edac/ie31200_edac.c
6212
6213 EDAC-MPC85XX
6214 M: Johannes Thumshirn <morbidrsa@gmail.com>
6215 L: linux-edac@vger.kernel.org
6216 S: Maintained
6217 F: drivers/edac/mpc85xx_edac.[ch]
6218
6219 EDAC-PASEMI
6220 M: Egor Martovetsky <egor@pasemi.com>
6221 L: linux-edac@vger.kernel.org
6222 S: Maintained
6223 F: drivers/edac/pasemi_edac.c
6224
6225 EDAC-PND2
6226 M: Tony Luck <tony.luck@intel.com>
6227 L: linux-edac@vger.kernel.org
6228 S: Maintained
6229 F: drivers/edac/pnd2_edac.[ch]
6230
6231 EDAC-QCOM
6232 M: Channagoud Kadabi <ckadabi@codeaurora.org>
6233 M: Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6234 L: linux-arm-msm@vger.kernel.org
6235 L: linux-edac@vger.kernel.org
6236 S: Maintained
6237 F: drivers/edac/qcom_edac.c
6238
6239 EDAC-R82600
6240 M: Tim Small <tim@buttersideup.com>
6241 L: linux-edac@vger.kernel.org
6242 S: Maintained
6243 F: drivers/edac/r82600_edac.c
6244
6245 EDAC-SBRIDGE
6246 M: Tony Luck <tony.luck@intel.com>
6247 R: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6248 L: linux-edac@vger.kernel.org
6249 S: Maintained
6250 F: drivers/edac/sb_edac.c
6251
6252 EDAC-SIFIVE
6253 M: Yash Shah <yash.shah@sifive.com>
6254 L: linux-edac@vger.kernel.org
6255 S: Supported
6256 F: drivers/edac/sifive_edac.c
6257
6258 EDAC-SKYLAKE
6259 M: Tony Luck <tony.luck@intel.com>
6260 L: linux-edac@vger.kernel.org
6261 S: Maintained
6262 F: drivers/edac/skx_*.c
6263
6264 EDAC-TI
6265 M: Tero Kristo <t-kristo@ti.com>
6266 L: linux-edac@vger.kernel.org
6267 S: Maintained
6268 F: drivers/edac/ti_edac.c
6269
6270 EDIROL UA-101/UA-1000 DRIVER
6271 M: Clemens Ladisch <clemens@ladisch.de>
6272 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6273 S: Maintained
6274 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6275 F: sound/usb/misc/ua101.c
6276
6277 EFI TEST DRIVER
6278 M: Ivan Hu <ivan.hu@canonical.com>
6279 M: Ard Biesheuvel <ardb@kernel.org>
6280 L: linux-efi@vger.kernel.org
6281 S: Maintained
6282 F: drivers/firmware/efi/test/
6283
6284 EFI VARIABLE FILESYSTEM
6285 M: Matthew Garrett <matthew.garrett@nebula.com>
6286 M: Jeremy Kerr <jk@ozlabs.org>
6287 M: Ard Biesheuvel <ardb@kernel.org>
6288 L: linux-efi@vger.kernel.org
6289 S: Maintained
6290 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6291 F: fs/efivarfs/
6292
6293 EFIFB FRAMEBUFFER DRIVER
6294 M: Peter Jones <pjones@redhat.com>
6295 L: linux-fbdev@vger.kernel.org
6296 S: Maintained
6297 F: drivers/video/fbdev/efifb.c
6298
6299 EFS FILESYSTEM
6300 S: Orphan
6301 W: http://aeschi.ch.eu.org/efs/
6302 F: fs/efs/
6303
6304 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6305 M: Douglas Miller <dougmill@linux.ibm.com>
6306 L: netdev@vger.kernel.org
6307 S: Maintained
6308 F: drivers/net/ethernet/ibm/ehea/
6309
6310 EM28XX VIDEO4LINUX DRIVER
6311 M: Mauro Carvalho Chehab <mchehab@kernel.org>
6312 L: linux-media@vger.kernel.org
6313 S: Maintained
6314 W: https://linuxtv.org
6315 T: git git://linuxtv.org/media_tree.git
6316 F: Documentation/admin-guide/media/em28xx*
6317 F: drivers/media/usb/em28xx/
6318
6319 EMBEDDED LINUX
6320 M: Paul Gortmaker <paul.gortmaker@windriver.com>
6321 M: Matt Mackall <mpm@selenic.com>
6322 M: David Woodhouse <dwmw2@infradead.org>
6323 L: linux-embedded@vger.kernel.org
6324 S: Maintained
6325
6326 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6327 M: Adrian Hunter <adrian.hunter@intel.com>
6328 M: Ritesh Harjani <riteshh@codeaurora.org>
6329 M: Asutosh Das <asutoshd@codeaurora.org>
6330 L: linux-mmc@vger.kernel.org
6331 S: Maintained
6332 F: drivers/mmc/host/cqhci*
6333
6334 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6335 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6336 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
6337 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6338 L: linux-scsi@vger.kernel.org
6339 S: Supported
6340 W: http://www.broadcom.com
6341 F: drivers/scsi/be2iscsi/
6342
6343 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6344 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
6345 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6346 M: Somnath Kotur <somnath.kotur@broadcom.com>
6347 L: netdev@vger.kernel.org
6348 S: Supported
6349 W: http://www.emulex.com
6350 F: drivers/net/ethernet/emulex/benet/
6351
6352 EMULEX ONECONNECT ROCE DRIVER
6353 M: Selvin Xavier <selvin.xavier@broadcom.com>
6354 M: Devesh Sharma <devesh.sharma@broadcom.com>
6355 L: linux-rdma@vger.kernel.org
6356 S: Odd Fixes
6357 W: http://www.broadcom.com
6358 F: drivers/infiniband/hw/ocrdma/
6359 F: include/uapi/rdma/ocrdma-abi.h
6360
6361 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6362 M: James Smart <james.smart@broadcom.com>
6363 M: Dick Kennedy <dick.kennedy@broadcom.com>
6364 L: linux-scsi@vger.kernel.org
6365 S: Supported
6366 W: http://www.broadcom.com
6367 F: drivers/scsi/lpfc/
6368
6369 ENE CB710 FLASH CARD READER DRIVER
6370 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
6371 S: Maintained
6372 F: drivers/misc/cb710/
6373 F: drivers/mmc/host/cb710-mmc.*
6374 F: include/linux/cb710.h
6375
6376 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6377 M: Maxim Levitsky <maximlevitsky@gmail.com>
6378 S: Maintained
6379 F: drivers/media/rc/ene_ir.*
6380
6381 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6382 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
6383 L: linuxppc-dev@lists.ozlabs.org
6384 S: Maintained
6385 F: drivers/tty/ehv_bytechan.c
6386
6387 EPSON S1D13XXX FRAMEBUFFER DRIVER
6388 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
6389 S: Maintained
6390 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6391 F: drivers/video/fbdev/s1d13xxxfb.c
6392 F: include/video/s1d13xxxfb.h
6393
6394 EROFS FILE SYSTEM
6395 M: Gao Xiang <xiang@kernel.org>
6396 M: Chao Yu <yuchao0@huawei.com>
6397 L: linux-erofs@lists.ozlabs.org
6398 S: Maintained
6399 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6400 F: Documentation/filesystems/erofs.rst
6401 F: fs/erofs/
6402 F: include/trace/events/erofs.h
6403
6404 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6405 M: Jeff Layton <jlayton@kernel.org>
6406 S: Maintained
6407 F: include/linux/errseq.h
6408 F: lib/errseq.c
6409
6410 ET131X NETWORK DRIVER
6411 M: Mark Einon <mark.einon@gmail.com>
6412 S: Odd Fixes
6413 F: drivers/net/ethernet/agere/
6414
6415 ETHERNET BRIDGE
6416 M: Roopa Prabhu <roopa@cumulusnetworks.com>
6417 M: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6418 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
6419 L: netdev@vger.kernel.org
6420 S: Maintained
6421 W: http://www.linuxfoundation.org/en/Net:Bridge
6422 F: include/linux/netfilter_bridge/
6423 F: net/bridge/
6424
6425 ETHERNET PHY LIBRARY
6426 M: Andrew Lunn <andrew@lunn.ch>
6427 M: Florian Fainelli <f.fainelli@gmail.com>
6428 M: Heiner Kallweit <hkallweit1@gmail.com>
6429 R: Russell King <linux@armlinux.org.uk>
6430 L: netdev@vger.kernel.org
6431 S: Maintained
6432 F: Documentation/ABI/testing/sysfs-class-net-phydev
6433 F: Documentation/devicetree/bindings/net/ethernet-phy.yaml
6434 F: Documentation/devicetree/bindings/net/mdio*
6435 F: Documentation/devicetree/bindings/net/qca,ar803x.yaml
6436 F: Documentation/networking/phy.rst
6437 F: drivers/net/phy/
6438 F: drivers/of/of_mdio.c
6439 F: drivers/of/of_net.c
6440 F: include/dt-bindings/net/qca-ar803x.h
6441 F: include/linux/*mdio*.h
6442 F: include/linux/of_net.h
6443 F: include/linux/phy.h
6444 F: include/linux/phy_fixed.h
6445 F: include/linux/platform_data/mdio-bcm-unimac.h
6446 F: include/linux/platform_data/mdio-gpio.h
6447 F: include/trace/events/mdio.h
6448 F: include/uapi/linux/mdio.h
6449 F: include/uapi/linux/mii.h
6450
6451 EXFAT FILE SYSTEM
6452 M: Namjae Jeon <namjae.jeon@samsung.com>
6453 M: Sungjong Seo <sj1557.seo@samsung.com>
6454 L: linux-fsdevel@vger.kernel.org
6455 S: Maintained
6456 F: fs/exfat/
6457
6458 EXT2 FILE SYSTEM
6459 M: Jan Kara <jack@suse.com>
6460 L: linux-ext4@vger.kernel.org
6461 S: Maintained
6462 F: Documentation/filesystems/ext2.rst
6463 F: fs/ext2/
6464 F: include/linux/ext2*
6465
6466 EXT4 FILE SYSTEM
6467 M: "Theodore Ts'o" <tytso@mit.edu>
6468 M: Andreas Dilger <adilger.kernel@dilger.ca>
6469 L: linux-ext4@vger.kernel.org
6470 S: Maintained
6471 W: http://ext4.wiki.kernel.org
6472 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
6473 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6474 F: Documentation/filesystems/ext4/
6475 F: fs/ext4/
6476
6477 Extended Verification Module (EVM)
6478 M: Mimi Zohar <zohar@linux.ibm.com>
6479 L: linux-integrity@vger.kernel.org
6480 S: Supported
6481 F: security/integrity/evm/
6482
6483 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6484 M: Ard Biesheuvel <ardb@kernel.org>
6485 L: linux-efi@vger.kernel.org
6486 S: Maintained
6487 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6488 F: Documentation/admin-guide/efi-stub.rst
6489 F: arch/*/include/asm/efi.h
6490 F: arch/*/kernel/efi.c
6491 F: arch/arm/boot/compressed/efi-header.S
6492 F: arch/arm64/kernel/efi-entry.S
6493 F: arch/x86/platform/efi/
6494 F: drivers/firmware/efi/
6495 F: include/linux/efi*.h
6496
6497 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6498 M: MyungJoo Ham <myungjoo.ham@samsung.com>
6499 M: Chanwoo Choi <cw00.choi@samsung.com>
6500 L: linux-kernel@vger.kernel.org
6501 S: Maintained
6502 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6503 F: Documentation/devicetree/bindings/extcon/
6504 F: Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6505 F: drivers/extcon/
6506 F: include/linux/extcon.h
6507 F: include/linux/extcon/
6508
6509 EXTRA BOOT CONFIG
6510 M: Masami Hiramatsu <mhiramat@kernel.org>
6511 S: Maintained
6512 F: Documentation/admin-guide/bootconfig.rst
6513 F: fs/proc/bootconfig.c
6514 F: include/linux/bootconfig.h
6515 F: lib/bootconfig.c
6516 F: tools/bootconfig/*
6517
6518 EXYNOS DP DRIVER
6519 M: Jingoo Han <jingoohan1@gmail.com>
6520 L: dri-devel@lists.freedesktop.org
6521 S: Maintained
6522 F: drivers/gpu/drm/exynos/exynos_dp*
6523
6524 EXYNOS SYSMMU (IOMMU) driver
6525 M: Marek Szyprowski <m.szyprowski@samsung.com>
6526 L: iommu@lists.linux-foundation.org
6527 S: Maintained
6528 F: drivers/iommu/exynos-iommu.c
6529
6530 EZchip NPS platform support
6531 M: Vineet Gupta <vgupta@synopsys.com>
6532 M: Ofer Levi <oferle@mellanox.com>
6533 S: Supported
6534 F: arch/arc/boot/dts/eznps.dts
6535 F: arch/arc/plat-eznps
6536
6537 F2FS FILE SYSTEM
6538 M: Jaegeuk Kim <jaegeuk@kernel.org>
6539 M: Chao Yu <yuchao0@huawei.com>
6540 L: linux-f2fs-devel@lists.sourceforge.net
6541 S: Maintained
6542 W: https://f2fs.wiki.kernel.org/
6543 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6544 F: Documentation/ABI/testing/sysfs-fs-f2fs
6545 F: Documentation/filesystems/f2fs.rst
6546 F: fs/f2fs/
6547 F: include/linux/f2fs_fs.h
6548 F: include/trace/events/f2fs.h
6549
6550 F71805F HARDWARE MONITORING DRIVER
6551 M: Jean Delvare <jdelvare@suse.com>
6552 L: linux-hwmon@vger.kernel.org
6553 S: Maintained
6554 F: Documentation/hwmon/f71805f.rst
6555 F: drivers/hwmon/f71805f.c
6556
6557 FADDR2LINE
6558 M: Josh Poimboeuf <jpoimboe@redhat.com>
6559 S: Maintained
6560 F: scripts/faddr2line
6561
6562 FAILOVER MODULE
6563 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
6564 L: netdev@vger.kernel.org
6565 S: Supported
6566 F: Documentation/networking/failover.rst
6567 F: include/net/failover.h
6568 F: net/core/failover.c
6569
6570 FANOTIFY
6571 M: Jan Kara <jack@suse.cz>
6572 R: Amir Goldstein <amir73il@gmail.com>
6573 L: linux-fsdevel@vger.kernel.org
6574 S: Maintained
6575 F: fs/notify/fanotify/
6576 F: include/linux/fanotify.h
6577 F: include/uapi/linux/fanotify.h
6578
6579 FARSYNC SYNCHRONOUS DRIVER
6580 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
6581 S: Supported
6582 W: http://www.farsite.co.uk/
6583 F: drivers/net/wan/farsync.*
6584
6585 FAULT INJECTION SUPPORT
6586 M: Akinobu Mita <akinobu.mita@gmail.com>
6587 S: Supported
6588 F: Documentation/fault-injection/
6589 F: lib/fault-inject.c
6590
6591 FBTFT Framebuffer drivers
6592 L: dri-devel@lists.freedesktop.org
6593 L: linux-fbdev@vger.kernel.org
6594 S: Orphan
6595 F: drivers/staging/fbtft/
6596
6597 FC0011 TUNER DRIVER
6598 M: Michael Buesch <m@bues.ch>
6599 L: linux-media@vger.kernel.org
6600 S: Maintained
6601 F: drivers/media/tuners/fc0011.c
6602 F: drivers/media/tuners/fc0011.h
6603
6604 FC2580 MEDIA DRIVER
6605 M: Antti Palosaari <crope@iki.fi>
6606 L: linux-media@vger.kernel.org
6607 S: Maintained
6608 W: https://linuxtv.org
6609 W: http://palosaari.fi/linux/
6610 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6611 T: git git://linuxtv.org/anttip/media_tree.git
6612 F: drivers/media/tuners/fc2580*
6613
6614 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6615 M: Hannes Reinecke <hare@suse.de>
6616 L: linux-scsi@vger.kernel.org
6617 S: Supported
6618 W: www.Open-FCoE.org
6619 F: drivers/scsi/fcoe/
6620 F: drivers/scsi/libfc/
6621 F: include/scsi/fc/
6622 F: include/scsi/libfc.h
6623 F: include/scsi/libfcoe.h
6624 F: include/uapi/scsi/fc/
6625
6626 FILE LOCKING (flock() and fcntl()/lockf())
6627 M: Jeff Layton <jlayton@kernel.org>
6628 M: "J. Bruce Fields" <bfields@fieldses.org>
6629 L: linux-fsdevel@vger.kernel.org
6630 S: Maintained
6631 F: fs/fcntl.c
6632 F: fs/locks.c
6633 F: include/linux/fcntl.h
6634 F: include/uapi/linux/fcntl.h
6635
6636 FILESYSTEM DIRECT ACCESS (DAX)
6637 M: Dan Williams <dan.j.williams@intel.com>
6638 R: Matthew Wilcox <willy@infradead.org>
6639 R: Jan Kara <jack@suse.cz>
6640 L: linux-fsdevel@vger.kernel.org
6641 L: linux-nvdimm@lists.01.org
6642 S: Supported
6643 F: fs/dax.c
6644 F: include/linux/dax.h
6645 F: include/trace/events/fs_dax.h
6646
6647 FILESYSTEMS (VFS and infrastructure)
6648 M: Alexander Viro <viro@zeniv.linux.org.uk>
6649 L: linux-fsdevel@vger.kernel.org
6650 S: Maintained
6651 F: fs/*
6652 F: include/linux/fs.h
6653 F: include/linux/fs_types.h
6654 F: include/uapi/linux/fs.h
6655 F: include/uapi/linux/openat2.h
6656
6657 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6658 M: Riku Voipio <riku.voipio@iki.fi>
6659 L: linux-hwmon@vger.kernel.org
6660 S: Maintained
6661 F: drivers/hwmon/f75375s.c
6662 F: include/linux/f75375s.h
6663
6664 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6665 M: Clemens Ladisch <clemens@ladisch.de>
6666 M: Takashi Sakamoto <o-takashi@sakamocchi.jp>
6667 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6668 S: Maintained
6669 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6670 F: include/uapi/sound/firewire.h
6671 F: sound/firewire/
6672
6673 FIREWIRE MEDIA DRIVERS (firedtv)
6674 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
6675 L: linux-media@vger.kernel.org
6676 L: linux1394-devel@lists.sourceforge.net
6677 S: Maintained
6678 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6679 F: drivers/media/firewire/
6680
6681 FIREWIRE SBP-2 TARGET
6682 M: Chris Boot <bootc@bootc.net>
6683 L: linux-scsi@vger.kernel.org
6684 L: target-devel@vger.kernel.org
6685 L: linux1394-devel@lists.sourceforge.net
6686 S: Maintained
6687 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6688 F: drivers/target/sbp/
6689
6690 FIREWIRE SUBSYSTEM
6691 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
6692 L: linux1394-devel@lists.sourceforge.net
6693 S: Maintained
6694 W: http://ieee1394.wiki.kernel.org/
6695 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6696 F: drivers/firewire/
6697 F: include/linux/firewire.h
6698 F: include/uapi/linux/firewire*.h
6699 F: tools/firewire/
6700
6701 FIRMWARE LOADER (request_firmware)
6702 M: Luis Chamberlain <mcgrof@kernel.org>
6703 L: linux-kernel@vger.kernel.org
6704 S: Maintained
6705 F: Documentation/firmware_class/
6706 F: drivers/base/firmware_loader/
6707 F: include/linux/firmware.h
6708
6709 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6710 M: Joshua Morris <josh.h.morris@us.ibm.com>
6711 M: Philip Kelleher <pjk1939@linux.ibm.com>
6712 S: Maintained
6713 F: drivers/block/rsxx/
6714
6715 FLEXTIMER FTM-QUADDEC DRIVER
6716 M: Patrick Havelange <patrick.havelange@essensium.com>
6717 L: linux-iio@vger.kernel.org
6718 S: Maintained
6719 F: Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6720 F: Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6721 F: drivers/counter/ftm-quaddec.c
6722
6723 FLOPPY DRIVER
6724 M: Denis Efremov <efremov@linux.com>
6725 L: linux-block@vger.kernel.org
6726 S: Odd Fixes
6727 F: drivers/block/floppy.c
6728
6729 FLYSKY FSIA6B RC RECEIVER
6730 M: Markus Koch <markus@notsyncing.net>
6731 L: linux-input@vger.kernel.org
6732 S: Maintained
6733 F: drivers/input/joystick/fsia6b.c
6734
6735 FORCEDETH GIGABIT ETHERNET DRIVER
6736 M: Rain River <rain.1986.08.12@gmail.com>
6737 M: Zhu Yanjun <zyjzyj2000@gmail.com>
6738 L: netdev@vger.kernel.org
6739 S: Maintained
6740 F: drivers/net/ethernet/nvidia/*
6741
6742 FPGA DFL DRIVERS
6743 M: Wu Hao <hao.wu@intel.com>
6744 L: linux-fpga@vger.kernel.org
6745 S: Maintained
6746 F: Documentation/fpga/dfl.rst
6747 F: drivers/fpga/dfl*
6748 F: include/uapi/linux/fpga-dfl.h
6749
6750 FPGA MANAGER FRAMEWORK
6751 M: Moritz Fischer <mdf@kernel.org>
6752 L: linux-fpga@vger.kernel.org
6753 S: Maintained
6754 W: http://www.rocketboards.org
6755 Q: http://patchwork.kernel.org/project/linux-fpga/list/
6756 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6757 F: Documentation/devicetree/bindings/fpga/
6758 F: Documentation/driver-api/fpga/
6759 F: Documentation/fpga/
6760 F: drivers/fpga/
6761 F: include/linux/fpga/
6762
6763 FPU EMULATOR
6764 M: Bill Metzenthen <billm@melbpc.org.au>
6765 S: Maintained
6766 W: http://floatingpoint.sourceforge.net/emulator/index.html
6767 F: arch/x86/math-emu/
6768
6769 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6770 L: netdev@vger.kernel.org
6771 S: Orphan
6772 F: drivers/net/wan/dlci.c
6773 F: drivers/net/wan/sdla.c
6774
6775 FRAMEBUFFER LAYER
6776 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6777 L: dri-devel@lists.freedesktop.org
6778 L: linux-fbdev@vger.kernel.org
6779 S: Maintained
6780 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
6781 T: git git://anongit.freedesktop.org/drm/drm-misc
6782 F: Documentation/fb/
6783 F: drivers/video/
6784 F: include/linux/fb.h
6785 F: include/uapi/linux/fb.h
6786 F: include/uapi/video/
6787 F: include/video/
6788
6789 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6790 M: Horia Geantă <horia.geanta@nxp.com>
6791 M: Aymen Sghaier <aymen.sghaier@nxp.com>
6792 L: linux-crypto@vger.kernel.org
6793 S: Maintained
6794 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6795 F: drivers/crypto/caam/
6796
6797 FREESCALE COLDFIRE M5441X MMC DRIVER
6798 M: Angelo Dureghello <angelo.dureghello@timesys.com>
6799 L: linux-mmc@vger.kernel.org
6800 S: Maintained
6801 F: drivers/mmc/host/sdhci-esdhc-mcf.c
6802 F: include/linux/platform_data/mmc-esdhc-mcf.h
6803
6804 FREESCALE DIU FRAMEBUFFER DRIVER
6805 M: Timur Tabi <timur@kernel.org>
6806 L: linux-fbdev@vger.kernel.org
6807 S: Maintained
6808 F: drivers/video/fbdev/fsl-diu-fb.*
6809
6810 FREESCALE DMA DRIVER
6811 M: Li Yang <leoyang.li@nxp.com>
6812 M: Zhang Wei <zw@zh-kernel.org>
6813 L: linuxppc-dev@lists.ozlabs.org
6814 S: Maintained
6815 F: drivers/dma/fsldma.*
6816
6817 FREESCALE ENETC ETHERNET DRIVERS
6818 M: Claudiu Manoil <claudiu.manoil@nxp.com>
6819 L: netdev@vger.kernel.org
6820 S: Maintained
6821 F: drivers/net/ethernet/freescale/enetc/
6822
6823 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6824 M: Claudiu Manoil <claudiu.manoil@nxp.com>
6825 L: netdev@vger.kernel.org
6826 S: Maintained
6827 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6828 F: drivers/net/ethernet/freescale/gianfar*
6829
6830 FREESCALE GPMI NAND DRIVER
6831 M: Han Xu <han.xu@nxp.com>
6832 L: linux-mtd@lists.infradead.org
6833 S: Maintained
6834 F: drivers/mtd/nand/raw/gpmi-nand/*
6835
6836 FREESCALE I2C CPM DRIVER
6837 M: Jochen Friedrich <jochen@scram.de>
6838 L: linuxppc-dev@lists.ozlabs.org
6839 L: linux-i2c@vger.kernel.org
6840 S: Maintained
6841 F: drivers/i2c/busses/i2c-cpm.c
6842
6843 FREESCALE IMX / MXC FEC DRIVER
6844 M: Fugang Duan <fugang.duan@nxp.com>
6845 L: netdev@vger.kernel.org
6846 S: Maintained
6847 F: Documentation/devicetree/bindings/net/fsl-fec.txt
6848 F: drivers/net/ethernet/freescale/fec.h
6849 F: drivers/net/ethernet/freescale/fec_main.c
6850 F: drivers/net/ethernet/freescale/fec_ptp.c
6851
6852 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6853 M: Sascha Hauer <s.hauer@pengutronix.de>
6854 R: Pengutronix Kernel Team <kernel@pengutronix.de>
6855 L: linux-fbdev@vger.kernel.org
6856 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6857 S: Maintained
6858 F: drivers/video/fbdev/imxfb.c
6859 F: include/linux/platform_data/video-imxfb.h
6860
6861 FREESCALE IMX DDR PMU DRIVER
6862 M: Frank Li <Frank.li@nxp.com>
6863 L: linux-arm-kernel@lists.infradead.org
6864 S: Maintained
6865 F: Documentation/admin-guide/perf/imx-ddr.rst
6866 F: Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6867 F: drivers/perf/fsl_imx8_ddr_perf.c
6868
6869 FREESCALE IMX I2C DRIVER
6870 M: Oleksij Rempel <o.rempel@pengutronix.de>
6871 R: Pengutronix Kernel Team <kernel@pengutronix.de>
6872 L: linux-i2c@vger.kernel.org
6873 S: Maintained
6874 F: Documentation/devicetree/bindings/i2c/i2c-imx.txt
6875 F: drivers/i2c/busses/i2c-imx.c
6876
6877 FREESCALE IMX LPI2C DRIVER
6878 M: Dong Aisheng <aisheng.dong@nxp.com>
6879 L: linux-i2c@vger.kernel.org
6880 L: linux-imx@nxp.com
6881 S: Maintained
6882 F: Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6883 F: drivers/i2c/busses/i2c-imx-lpi2c.c
6884
6885 FREESCALE QORIQ DPAA ETHERNET DRIVER
6886 M: Madalin Bucur <madalin.bucur@nxp.com>
6887 L: netdev@vger.kernel.org
6888 S: Maintained
6889 F: drivers/net/ethernet/freescale/dpaa
6890
6891 FREESCALE QORIQ DPAA FMAN DRIVER
6892 M: Madalin Bucur <madalin.bucur@nxp.com>
6893 L: netdev@vger.kernel.org
6894 S: Maintained
6895 F: Documentation/devicetree/bindings/net/fsl-fman.txt
6896 F: drivers/net/ethernet/freescale/fman
6897
6898 FREESCALE QORIQ PTP CLOCK DRIVER
6899 M: Yangbo Lu <yangbo.lu@nxp.com>
6900 L: netdev@vger.kernel.org
6901 S: Maintained
6902 F: Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6903 F: drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6904 F: drivers/net/ethernet/freescale/dpaa2/dprtc*
6905 F: drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6906 F: drivers/ptp/ptp_qoriq.c
6907 F: drivers/ptp/ptp_qoriq_debugfs.c
6908 F: include/linux/fsl/ptp_qoriq.h
6909
6910 FREESCALE QUAD SPI DRIVER
6911 M: Han Xu <han.xu@nxp.com>
6912 L: linux-spi@vger.kernel.org
6913 S: Maintained
6914 F: drivers/spi/spi-fsl-qspi.c
6915
6916 FREESCALE QUICC ENGINE LIBRARY
6917 M: Qiang Zhao <qiang.zhao@nxp.com>
6918 L: linuxppc-dev@lists.ozlabs.org
6919 S: Maintained
6920 F: drivers/soc/fsl/qe/
6921 F: include/soc/fsl/*qe*.h
6922 F: include/soc/fsl/*ucc*.h
6923
6924 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6925 M: Li Yang <leoyang.li@nxp.com>
6926 L: netdev@vger.kernel.org
6927 L: linuxppc-dev@lists.ozlabs.org
6928 S: Maintained
6929 F: drivers/net/ethernet/freescale/ucc_geth*
6930
6931 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6932 M: Zhao Qiang <qiang.zhao@nxp.com>
6933 L: netdev@vger.kernel.org
6934 L: linuxppc-dev@lists.ozlabs.org
6935 S: Maintained
6936 F: drivers/net/wan/fsl_ucc_hdlc*
6937
6938 FREESCALE QUICC ENGINE UCC UART DRIVER
6939 M: Timur Tabi <timur@kernel.org>
6940 L: linuxppc-dev@lists.ozlabs.org
6941 S: Maintained
6942 F: drivers/tty/serial/ucc_uart.c
6943
6944 FREESCALE SOC DRIVERS
6945 M: Li Yang <leoyang.li@nxp.com>
6946 L: linuxppc-dev@lists.ozlabs.org
6947 L: linux-arm-kernel@lists.infradead.org
6948 S: Maintained
6949 F: Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6950 F: Documentation/devicetree/bindings/soc/fsl/
6951 F: drivers/soc/fsl/
6952 F: include/linux/fsl/
6953
6954 FREESCALE SOC FS_ENET DRIVER
6955 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
6956 L: linuxppc-dev@lists.ozlabs.org
6957 L: netdev@vger.kernel.org
6958 S: Maintained
6959 F: drivers/net/ethernet/freescale/fs_enet/
6960 F: include/linux/fs_enet_pd.h
6961
6962 FREESCALE SOC SOUND DRIVERS
6963 M: Timur Tabi <timur@kernel.org>
6964 M: Nicolin Chen <nicoleotsuka@gmail.com>
6965 M: Xiubo Li <Xiubo.Lee@gmail.com>
6966 R: Fabio Estevam <festevam@gmail.com>
6967 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6968 L: linuxppc-dev@lists.ozlabs.org
6969 S: Maintained
6970 F: sound/soc/fsl/fsl*
6971 F: sound/soc/fsl/imx*
6972 F: sound/soc/fsl/mpc8610_hpcd.c
6973
6974 FREESCALE USB PERIPHERAL DRIVERS
6975 M: Li Yang <leoyang.li@nxp.com>
6976 L: linux-usb@vger.kernel.org
6977 L: linuxppc-dev@lists.ozlabs.org
6978 S: Maintained
6979 F: drivers/usb/gadget/udc/fsl*
6980
6981 FREEVXFS FILESYSTEM
6982 M: Christoph Hellwig <hch@infradead.org>
6983 S: Maintained
6984 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
6985 F: fs/freevxfs/
6986
6987 FREEZER
6988 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
6989 M: Pavel Machek <pavel@ucw.cz>
6990 L: linux-pm@vger.kernel.org
6991 S: Supported
6992 F: Documentation/power/freezing-of-tasks.rst
6993 F: include/linux/freezer.h
6994 F: kernel/freezer.c
6995
6996 FRONTSWAP API
6997 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6998 L: linux-kernel@vger.kernel.org
6999 S: Maintained
7000 F: include/linux/frontswap.h
7001 F: mm/frontswap.c
7002
7003 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7004 M: David Howells <dhowells@redhat.com>
7005 L: linux-cachefs@redhat.com (moderated for non-subscribers)
7006 S: Supported
7007 F: Documentation/filesystems/caching/
7008 F: fs/fscache/
7009 F: include/linux/fscache*.h
7010
7011 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7012 M: Theodore Y. Ts'o <tytso@mit.edu>
7013 M: Jaegeuk Kim <jaegeuk@kernel.org>
7014 M: Eric Biggers <ebiggers@kernel.org>
7015 L: linux-fscrypt@vger.kernel.org
7016 S: Supported
7017 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7018 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7019 F: Documentation/filesystems/fscrypt.rst
7020 F: fs/crypto/
7021 F: include/linux/fscrypt*.h
7022 F: include/uapi/linux/fscrypt.h
7023
7024 FSI SUBSYSTEM
7025 M: Jeremy Kerr <jk@ozlabs.org>
7026 M: Joel Stanley <joel@jms.id.au>
7027 R: Alistar Popple <alistair@popple.id.au>
7028 R: Eddie James <eajames@linux.ibm.com>
7029 L: linux-fsi@lists.ozlabs.org
7030 S: Supported
7031 Q: http://patchwork.ozlabs.org/project/linux-fsi/list/
7032 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7033 F: drivers/fsi/
7034 F: include/linux/fsi*.h
7035 F: include/trace/events/fsi*.h
7036
7037 FSI-ATTACHED I2C DRIVER
7038 M: Eddie James <eajames@linux.ibm.com>
7039 L: linux-i2c@vger.kernel.org
7040 L: openbmc@lists.ozlabs.org (moderated for non-subscribers)
7041 S: Maintained
7042 F: Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7043 F: drivers/i2c/busses/i2c-fsi.c
7044
7045 FSI-ATTACHED SPI DRIVER
7046 M: Eddie James <eajames@linux.ibm.com>
7047 L: linux-spi@vger.kernel.org
7048 S: Maintained
7049 F: Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7050 F: drivers/spi/spi-fsi.c
7051
7052 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7053 M: Jan Kara <jack@suse.cz>
7054 R: Amir Goldstein <amir73il@gmail.com>
7055 L: linux-fsdevel@vger.kernel.org
7056 S: Maintained
7057 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7058 F: fs/notify/
7059 F: include/linux/fsnotify*.h
7060
7061 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7062 M: Eric Biggers <ebiggers@kernel.org>
7063 M: Theodore Y. Ts'o <tytso@mit.edu>
7064 L: linux-fscrypt@vger.kernel.org
7065 S: Supported
7066 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
7067 T: git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7068 F: Documentation/filesystems/fsverity.rst
7069 F: fs/verity/
7070 F: include/linux/fsverity.h
7071 F: include/uapi/linux/fsverity.h
7072
7073 FUJITSU LAPTOP EXTRAS
7074 M: Jonathan Woithe <jwoithe@just42.net>
7075 L: platform-driver-x86@vger.kernel.org
7076 S: Maintained
7077 F: drivers/platform/x86/fujitsu-laptop.c
7078
7079 FUJITSU M-5MO LS CAMERA ISP DRIVER
7080 M: Kyungmin Park <kyungmin.park@samsung.com>
7081 M: Heungjun Kim <riverful.kim@samsung.com>
7082 L: linux-media@vger.kernel.org
7083 S: Maintained
7084 F: drivers/media/i2c/m5mols/
7085 F: include/media/i2c/m5mols.h
7086
7087 FUJITSU TABLET EXTRAS
7088 M: Robert Gerlach <khnz@gmx.de>
7089 L: platform-driver-x86@vger.kernel.org
7090 S: Maintained
7091 F: drivers/platform/x86/fujitsu-tablet.c
7092
7093 FUSE: FILESYSTEM IN USERSPACE
7094 M: Miklos Szeredi <miklos@szeredi.hu>
7095 L: linux-fsdevel@vger.kernel.org
7096 S: Maintained
7097 W: http://fuse.sourceforge.net/
7098 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7099 F: Documentation/filesystems/fuse.rst
7100 F: fs/fuse/
7101 F: include/uapi/linux/fuse.h
7102
7103 FUTEX SUBSYSTEM
7104 M: Thomas Gleixner <tglx@linutronix.de>
7105 M: Ingo Molnar <mingo@redhat.com>
7106 R: Peter Zijlstra <peterz@infradead.org>
7107 R: Darren Hart <dvhart@infradead.org>
7108 L: linux-kernel@vger.kernel.org
7109 S: Maintained
7110 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7111 F: Documentation/locking/*futex*
7112 F: include/asm-generic/futex.h
7113 F: include/linux/futex.h
7114 F: include/uapi/linux/futex.h
7115 F: kernel/futex.c
7116 F: tools/perf/bench/futex*
7117 F: Documentation/locking/*futex*
7118
7119 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7120 M: Tim Harvey <tharvey@gateworks.com>
7121 M: Robert Jones <rjones@gateworks.com>
7122 S: Maintained
7123 F: Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7124 F: drivers/mfd/gateworks-gsc.c
7125 F: include/linux/mfd/gsc.h
7126 F: Documentation/hwmon/gsc-hwmon.rst
7127 F: drivers/hwmon/gsc-hwmon.c
7128 F: include/linux/platform_data/gsc_hwmon.h
7129
7130 GASKET DRIVER FRAMEWORK
7131 M: Rob Springer <rspringer@google.com>
7132 M: Todd Poynor <toddpoynor@google.com>
7133 M: Ben Chan <benchan@chromium.org>
7134 M: Richard Yeh <rcy@google.com>
7135 S: Maintained
7136 F: drivers/staging/gasket/
7137
7138 GCC PLUGINS
7139 M: Kees Cook <keescook@chromium.org>
7140 R: Emese Revfy <re.emese@gmail.com>
7141 L: kernel-hardening@lists.openwall.com
7142 S: Maintained
7143 F: Documentation/kbuild/gcc-plugins.rst
7144 F: scripts/Makefile.gcc-plugins
7145 F: scripts/gcc-plugin.sh
7146 F: scripts/gcc-plugins/
7147
7148 GCOV BASED KERNEL PROFILING
7149 M: Peter Oberparleiter <oberpar@linux.ibm.com>
7150 S: Maintained
7151 F: Documentation/dev-tools/gcov.rst
7152 F: kernel/gcov/
7153
7154 GDB KERNEL DEBUGGING HELPER SCRIPTS
7155 M: Jan Kiszka <jan.kiszka@siemens.com>
7156 M: Kieran Bingham <kbingham@kernel.org>
7157 S: Supported
7158 F: scripts/gdb/
7159
7160 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7161 M: Achim Leubner <achim_leubner@adaptec.com>
7162 L: linux-scsi@vger.kernel.org
7163 S: Supported
7164 W: http://www.icp-vortex.com/
7165 F: drivers/scsi/gdt*
7166
7167 GEMTEK FM RADIO RECEIVER DRIVER
7168 M: Hans Verkuil <hverkuil@xs4all.nl>
7169 L: linux-media@vger.kernel.org
7170 S: Maintained
7171 W: https://linuxtv.org
7172 T: git git://linuxtv.org/media_tree.git
7173 F: drivers/media/radio/radio-gemtek*
7174
7175 GENERIC ARCHITECTURE TOPOLOGY
7176 M: Sudeep Holla <sudeep.holla@arm.com>
7177 L: linux-kernel@vger.kernel.org
7178 S: Maintained
7179 F: drivers/base/arch_topology.c
7180 F: include/linux/arch_topology.h
7181
7182 GENERIC GPIO I2C DRIVER
7183 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7184 S: Supported
7185 F: drivers/i2c/busses/i2c-gpio.c
7186 F: include/linux/platform_data/i2c-gpio.h
7187
7188 GENERIC GPIO I2C MULTIPLEXER DRIVER
7189 M: Peter Korsgaard <peter.korsgaard@barco.com>
7190 L: linux-i2c@vger.kernel.org
7191 S: Supported
7192 F: Documentation/i2c/muxes/i2c-mux-gpio.rst
7193 F: drivers/i2c/muxes/i2c-mux-gpio.c
7194 F: include/linux/platform_data/i2c-mux-gpio.h
7195
7196 GENERIC HDLC (WAN) DRIVERS
7197 M: Krzysztof Halasa <khc@pm.waw.pl>
7198 S: Maintained
7199 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
7200 F: drivers/net/wan/c101.c
7201 F: drivers/net/wan/hd6457*
7202 F: drivers/net/wan/hdlc*
7203 F: drivers/net/wan/n2.c
7204 F: drivers/net/wan/pc300too.c
7205 F: drivers/net/wan/pci200syn.c
7206 F: drivers/net/wan/wanxl*
7207
7208 GENERIC INCLUDE/ASM HEADER FILES
7209 M: Arnd Bergmann <arnd@arndb.de>
7210 L: linux-arch@vger.kernel.org
7211 S: Maintained
7212 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7213 F: include/asm-generic/
7214 F: include/uapi/asm-generic/
7215
7216 GENERIC PHY FRAMEWORK
7217 M: Kishon Vijay Abraham I <kishon@ti.com>
7218 M: Vinod Koul <vkoul@kernel.org>
7219 L: linux-kernel@vger.kernel.org
7220 S: Supported
7221 T: git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7222 F: Documentation/devicetree/bindings/phy/
7223 F: drivers/phy/
7224 F: include/linux/phy/
7225
7226 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7227 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
7228 S: Supported
7229 F: drivers/i2c/muxes/i2c-demux-pinctrl.c
7230
7231 GENERIC PM DOMAINS
7232 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
7233 M: Kevin Hilman <khilman@kernel.org>
7234 M: Ulf Hansson <ulf.hansson@linaro.org>
7235 L: linux-pm@vger.kernel.org
7236 S: Supported
7237 F: Documentation/devicetree/bindings/power/power?domain*
7238 F: drivers/base/power/domain*.c
7239 F: include/linux/pm_domain.h
7240
7241 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7242 M: Eugen Hristev <eugen.hristev@microchip.com>
7243 L: linux-input@vger.kernel.org
7244 S: Maintained
7245 F: drivers/input/touchscreen/resistive-adc-touch.c
7246
7247 GENERIC UIO DRIVER FOR PCI DEVICES
7248 M: "Michael S. Tsirkin" <mst@redhat.com>
7249 L: kvm@vger.kernel.org
7250 S: Supported
7251 F: drivers/uio/uio_pci_generic.c
7252
7253 GENERIC VDSO LIBRARY
7254 M: Andy Lutomirski <luto@kernel.org>
7255 M: Thomas Gleixner <tglx@linutronix.de>
7256 M: Vincenzo Frascino <vincenzo.frascino@arm.com>
7257 L: linux-kernel@vger.kernel.org
7258 S: Maintained
7259 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7260 F: include/asm-generic/vdso/vsyscall.h
7261 F: include/vdso/
7262 F: kernel/time/vsyscall.c
7263 F: lib/vdso/
7264
7265 GENWQE (IBM Generic Workqueue Card)
7266 M: Frank Haverkamp <haver@linux.ibm.com>
7267 S: Supported
7268 F: drivers/misc/genwqe/
7269
7270 GET_MAINTAINER SCRIPT
7271 M: Joe Perches <joe@perches.com>
7272 S: Maintained
7273 F: scripts/get_maintainer.pl
7274
7275 GFS2 FILE SYSTEM
7276 M: Bob Peterson <rpeterso@redhat.com>
7277 M: Andreas Gruenbacher <agruenba@redhat.com>
7278 L: cluster-devel@redhat.com
7279 S: Supported
7280 W: http://sources.redhat.com/cluster/
7281 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7282 F: Documentation/filesystems/gfs2*
7283 F: fs/gfs2/
7284 F: include/uapi/linux/gfs2_ondisk.h
7285
7286 GNSS SUBSYSTEM
7287 M: Johan Hovold <johan@kernel.org>
7288 S: Maintained
7289 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7290 F: Documentation/ABI/testing/sysfs-class-gnss
7291 F: Documentation/devicetree/bindings/gnss/
7292 F: drivers/gnss/
7293 F: include/linux/gnss.h
7294
7295 GO7007 MPEG CODEC
7296 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
7297 L: linux-media@vger.kernel.org
7298 S: Maintained
7299 F: drivers/media/usb/go7007/
7300
7301 GOODIX TOUCHSCREEN
7302 M: Bastien Nocera <hadess@hadess.net>
7303 L: linux-input@vger.kernel.org
7304 S: Maintained
7305 F: drivers/input/touchscreen/goodix.c
7306
7307 GOOGLE ETHERNET DRIVERS
7308 M: Catherine Sullivan <csully@google.com>
7309 R: Sagi Shahar <sagis@google.com>
7310 R: Jon Olson <jonolson@google.com>
7311 L: netdev@vger.kernel.org
7312 S: Supported
7313 F: Documentation/networking/device_drivers/google/gve.rst
7314 F: drivers/net/ethernet/google
7315
7316 GPD POCKET FAN DRIVER
7317 M: Hans de Goede <hdegoede@redhat.com>
7318 L: platform-driver-x86@vger.kernel.org
7319 S: Maintained
7320 F: drivers/platform/x86/gpd-pocket-fan.c
7321
7322 GPIO ACPI SUPPORT
7323 M: Mika Westerberg <mika.westerberg@linux.intel.com>
7324 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7325 L: linux-gpio@vger.kernel.org
7326 L: linux-acpi@vger.kernel.org
7327 S: Maintained
7328 F: Documentation/firmware-guide/acpi/gpio-properties.rst
7329 F: drivers/gpio/gpiolib-acpi.c
7330 F: drivers/gpio/gpiolib-acpi.h
7331
7332 GPIO AGGREGATOR
7333 M: Geert Uytterhoeven <geert+renesas@glider.be>
7334 L: linux-gpio@vger.kernel.org
7335 S: Supported
7336 F: Documentation/admin-guide/gpio/gpio-aggregator.rst
7337 F: drivers/gpio/gpio-aggregator.c
7338
7339 GPIO IR Transmitter
7340 M: Sean Young <sean@mess.org>
7341 L: linux-media@vger.kernel.org
7342 S: Maintained
7343 F: drivers/media/rc/gpio-ir-tx.c
7344
7345 GPIO MOCKUP DRIVER
7346 M: Bamvor Jian Zhang <bamv2005@gmail.com>
7347 L: linux-gpio@vger.kernel.org
7348 S: Maintained
7349 F: drivers/gpio/gpio-mockup.c
7350 F: tools/testing/selftests/gpio/
7351
7352 GPIO REGMAP
7353 R: Michael Walle <michael@walle.cc>
7354 S: Maintained
7355 F: drivers/gpio/gpio-regmap.c
7356 F: include/linux/gpio/regmap.h
7357
7358 GPIO SUBSYSTEM
7359 M: Linus Walleij <linus.walleij@linaro.org>
7360 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
7361 L: linux-gpio@vger.kernel.org
7362 S: Maintained
7363 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7364 F: Documentation/ABI/obsolete/sysfs-gpio
7365 F: Documentation/ABI/testing/gpio-cdev
7366 F: Documentation/admin-guide/gpio/
7367 F: Documentation/devicetree/bindings/gpio/
7368 F: Documentation/driver-api/gpio/
7369 F: drivers/gpio/
7370 F: include/asm-generic/gpio.h
7371 F: include/linux/gpio.h
7372 F: include/linux/gpio/
7373 F: include/linux/of_gpio.h
7374 F: include/uapi/linux/gpio.h
7375 F: tools/gpio/
7376
7377 GRE DEMULTIPLEXER DRIVER
7378 M: Dmitry Kozlov <xeb@mail.ru>
7379 L: netdev@vger.kernel.org
7380 S: Maintained
7381 F: include/net/gre.h
7382 F: net/ipv4/gre_demux.c
7383 F: net/ipv4/gre_offload.c
7384
7385 GRETH 10/100/1G Ethernet MAC device driver
7386 M: Andreas Larsson <andreas@gaisler.com>
7387 L: netdev@vger.kernel.org
7388 S: Maintained
7389 F: drivers/net/ethernet/aeroflex/
7390
7391 GREYBUS AUDIO PROTOCOLS DRIVERS
7392 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
7393 M: Mark Greer <mgreer@animalcreek.com>
7394 S: Maintained
7395 F: drivers/staging/greybus/audio_apbridgea.c
7396 F: drivers/staging/greybus/audio_apbridgea.h
7397 F: drivers/staging/greybus/audio_codec.c
7398 F: drivers/staging/greybus/audio_codec.h
7399 F: drivers/staging/greybus/audio_gb.c
7400 F: drivers/staging/greybus/audio_manager.c
7401 F: drivers/staging/greybus/audio_manager.h
7402 F: drivers/staging/greybus/audio_manager_module.c
7403 F: drivers/staging/greybus/audio_manager_private.h
7404 F: drivers/staging/greybus/audio_manager_sysfs.c
7405 F: drivers/staging/greybus/audio_module.c
7406 F: drivers/staging/greybus/audio_topology.c
7407
7408 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7409 M: Viresh Kumar <vireshk@kernel.org>
7410 S: Maintained
7411 F: drivers/staging/greybus/authentication.c
7412 F: drivers/staging/greybus/bootrom.c
7413 F: drivers/staging/greybus/firmware.h
7414 F: drivers/staging/greybus/fw-core.c
7415 F: drivers/staging/greybus/fw-download.c
7416 F: drivers/staging/greybus/fw-management.c
7417 F: drivers/staging/greybus/greybus_authentication.h
7418 F: drivers/staging/greybus/greybus_firmware.h
7419 F: drivers/staging/greybus/hid.c
7420 F: drivers/staging/greybus/i2c.c
7421 F: drivers/staging/greybus/spi.c
7422 F: drivers/staging/greybus/spilib.c
7423 F: drivers/staging/greybus/spilib.h
7424
7425 GREYBUS LOOPBACK DRIVER
7426 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
7427 S: Maintained
7428 F: drivers/staging/greybus/loopback.c
7429
7430 GREYBUS PLATFORM DRIVERS
7431 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7432 S: Maintained
7433 F: drivers/staging/greybus/arche-apb-ctrl.c
7434 F: drivers/staging/greybus/arche-platform.c
7435 F: drivers/staging/greybus/arche_platform.h
7436
7437 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7438 M: Rui Miguel Silva <rmfrfs@gmail.com>
7439 S: Maintained
7440 F: drivers/staging/greybus/gpio.c
7441 F: drivers/staging/greybus/light.c
7442 F: drivers/staging/greybus/power_supply.c
7443 F: drivers/staging/greybus/sdio.c
7444 F: drivers/staging/greybus/spi.c
7445 F: drivers/staging/greybus/spilib.c
7446
7447 GREYBUS SUBSYSTEM
7448 M: Johan Hovold <johan@kernel.org>
7449 M: Alex Elder <elder@kernel.org>
7450 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7451 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
7452 S: Maintained
7453 F: drivers/greybus/
7454 F: drivers/staging/greybus/
7455 F: include/linux/greybus.h
7456 F: include/linux/greybus/
7457
7458 GREYBUS UART PROTOCOLS DRIVERS
7459 M: David Lin <dtwlin@gmail.com>
7460 S: Maintained
7461 F: drivers/staging/greybus/log.c
7462 F: drivers/staging/greybus/uart.c
7463
7464 GS1662 VIDEO SERIALIZER
7465 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7466 L: linux-media@vger.kernel.org
7467 S: Maintained
7468 T: git git://linuxtv.org/media_tree.git
7469 F: drivers/media/spi/gs1662.c
7470
7471 GSPCA FINEPIX SUBDRIVER
7472 M: Frank Zago <frank@zago.net>
7473 L: linux-media@vger.kernel.org
7474 S: Maintained
7475 T: git git://linuxtv.org/media_tree.git
7476 F: drivers/media/usb/gspca/finepix.c
7477
7478 GSPCA GL860 SUBDRIVER
7479 M: Olivier Lorin <o.lorin@laposte.net>
7480 L: linux-media@vger.kernel.org
7481 S: Maintained
7482 T: git git://linuxtv.org/media_tree.git
7483 F: drivers/media/usb/gspca/gl860/
7484
7485 GSPCA M5602 SUBDRIVER
7486 M: Erik Andren <erik.andren@gmail.com>
7487 L: linux-media@vger.kernel.org
7488 S: Maintained
7489 T: git git://linuxtv.org/media_tree.git
7490 F: drivers/media/usb/gspca/m5602/
7491
7492 GSPCA PAC207 SONIXB SUBDRIVER
7493 M: Hans Verkuil <hverkuil@xs4all.nl>
7494 L: linux-media@vger.kernel.org
7495 S: Odd Fixes
7496 T: git git://linuxtv.org/media_tree.git
7497 F: drivers/media/usb/gspca/pac207.c
7498
7499 GSPCA SN9C20X SUBDRIVER
7500 M: Brian Johnson <brijohn@gmail.com>
7501 L: linux-media@vger.kernel.org
7502 S: Maintained
7503 T: git git://linuxtv.org/media_tree.git
7504 F: drivers/media/usb/gspca/sn9c20x.c
7505
7506 GSPCA T613 SUBDRIVER
7507 M: Leandro Costantino <lcostantino@gmail.com>
7508 L: linux-media@vger.kernel.org
7509 S: Maintained
7510 T: git git://linuxtv.org/media_tree.git
7511 F: drivers/media/usb/gspca/t613.c
7512
7513 GSPCA USB WEBCAM DRIVER
7514 M: Hans Verkuil <hverkuil@xs4all.nl>
7515 L: linux-media@vger.kernel.org
7516 S: Odd Fixes
7517 T: git git://linuxtv.org/media_tree.git
7518 F: drivers/media/usb/gspca/
7519
7520 GTP (GPRS Tunneling Protocol)
7521 M: Pablo Neira Ayuso <pablo@netfilter.org>
7522 M: Harald Welte <laforge@gnumonks.org>
7523 L: osmocom-net-gprs@lists.osmocom.org
7524 S: Maintained
7525 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7526 F: drivers/net/gtp.c
7527
7528 GUID PARTITION TABLE (GPT)
7529 M: Davidlohr Bueso <dave@stgolabs.net>
7530 L: linux-efi@vger.kernel.org
7531 S: Maintained
7532 F: block/partitions/efi.*
7533
7534 H8/300 ARCHITECTURE
7535 M: Yoshinori Sato <ysato@users.sourceforge.jp>
7536 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7537 S: Maintained
7538 W: http://uclinux-h8.sourceforge.jp
7539 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7540 F: arch/h8300/
7541 F: drivers/clk/h8300/
7542 F: drivers/clocksource/h8300_*.c
7543 F: drivers/irqchip/irq-renesas-h8*.c
7544
7545 HABANALABS PCI DRIVER
7546 M: Oded Gabbay <oded.gabbay@gmail.com>
7547 S: Supported
7548 T: git https://github.com/HabanaAI/linux.git
7549 F: Documentation/ABI/testing/debugfs-driver-habanalabs
7550 F: Documentation/ABI/testing/sysfs-driver-habanalabs
7551 F: drivers/misc/habanalabs/
7552 F: include/uapi/misc/habanalabs.h
7553
7554 HACKRF MEDIA DRIVER
7555 M: Antti Palosaari <crope@iki.fi>
7556 L: linux-media@vger.kernel.org
7557 S: Maintained
7558 W: https://linuxtv.org
7559 W: http://palosaari.fi/linux/
7560 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7561 T: git git://linuxtv.org/anttip/media_tree.git
7562 F: drivers/media/usb/hackrf/
7563
7564 HANTRO VPU CODEC DRIVER
7565 M: Ezequiel Garcia <ezequiel@collabora.com>
7566 M: Philipp Zabel <p.zabel@pengutronix.de>
7567 L: linux-media@vger.kernel.org
7568 L: linux-rockchip@lists.infradead.org
7569 S: Maintained
7570 F: Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7571 F: Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7572 F: drivers/staging/media/hantro/
7573
7574 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7575 M: Frank Seidel <frank@f-seidel.de>
7576 L: platform-driver-x86@vger.kernel.org
7577 S: Maintained
7578 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7579 F: drivers/platform/x86/hdaps.c
7580
7581 HARDWARE MONITORING
7582 M: Jean Delvare <jdelvare@suse.com>
7583 M: Guenter Roeck <linux@roeck-us.net>
7584 L: linux-hwmon@vger.kernel.org
7585 S: Maintained
7586 W: http://hwmon.wiki.kernel.org/
7587 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7588 F: Documentation/devicetree/bindings/hwmon/
7589 F: Documentation/hwmon/
7590 F: drivers/hwmon/
7591 F: include/linux/hwmon*.h
7592 F: include/trace/events/hwmon*.h
7593
7594 HARDWARE RANDOM NUMBER GENERATOR CORE
7595 M: Matt Mackall <mpm@selenic.com>
7596 M: Herbert Xu <herbert@gondor.apana.org.au>
7597 L: linux-crypto@vger.kernel.org
7598 S: Odd fixes
7599 F: Documentation/admin-guide/hw_random.rst
7600 F: Documentation/devicetree/bindings/rng/
7601 F: drivers/char/hw_random/
7602 F: include/linux/hw_random.h
7603
7604 HARDWARE SPINLOCK CORE
7605 M: Ohad Ben-Cohen <ohad@wizery.com>
7606 M: Bjorn Andersson <bjorn.andersson@linaro.org>
7607 R: Baolin Wang <baolin.wang7@gmail.com>
7608 L: linux-remoteproc@vger.kernel.org
7609 S: Maintained
7610 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7611 F: Documentation/devicetree/bindings/hwlock/
7612 F: Documentation/locking/hwspinlock.rst
7613 F: drivers/hwspinlock/
7614 F: include/linux/hwspinlock.h
7615
7616 HARDWARE TRACING FACILITIES
7617 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
7618 S: Maintained
7619 F: drivers/hwtracing/
7620
7621 HARMONY SOUND DRIVER
7622 L: linux-parisc@vger.kernel.org
7623 S: Maintained
7624 F: sound/parisc/harmony.*
7625
7626 HDPVR USB VIDEO ENCODER DRIVER
7627 M: Hans Verkuil <hverkuil@xs4all.nl>
7628 L: linux-media@vger.kernel.org
7629 S: Odd Fixes
7630 W: https://linuxtv.org
7631 T: git git://linuxtv.org/media_tree.git
7632 F: drivers/media/usb/hdpvr/
7633
7634 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7635 M: Jerry Hoemann <jerry.hoemann@hpe.com>
7636 S: Supported
7637 F: Documentation/watchdog/hpwdt.rst
7638 F: drivers/watchdog/hpwdt.c
7639
7640 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7641 M: Don Brace <don.brace@microsemi.com>
7642 L: esc.storagedev@microsemi.com
7643 L: linux-scsi@vger.kernel.org
7644 S: Supported
7645 F: Documentation/scsi/hpsa.rst
7646 F: drivers/scsi/hpsa*.[ch]
7647 F: include/linux/cciss*.h
7648 F: include/uapi/linux/cciss*.h
7649
7650 HFI1 DRIVER
7651 M: Mike Marciniszyn <mike.marciniszyn@intel.com>
7652 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
7653 L: linux-rdma@vger.kernel.org
7654 S: Supported
7655 F: drivers/infiniband/hw/hfi1
7656
7657 HFS FILESYSTEM
7658 L: linux-fsdevel@vger.kernel.org
7659 S: Orphan
7660 F: Documentation/filesystems/hfs.rst
7661 F: fs/hfs/
7662
7663 HFSPLUS FILESYSTEM
7664 L: linux-fsdevel@vger.kernel.org
7665 S: Orphan
7666 F: Documentation/filesystems/hfsplus.rst
7667 F: fs/hfsplus/
7668
7669 HGA FRAMEBUFFER DRIVER
7670 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7671 L: linux-nvidia@lists.surfsouth.com
7672 S: Maintained
7673 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7674 F: drivers/video/fbdev/hgafb.c
7675
7676 HIBERNATION (aka Software Suspend, aka swsusp)
7677 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
7678 M: Pavel Machek <pavel@ucw.cz>
7679 L: linux-pm@vger.kernel.org
7680 S: Supported
7681 B: https://bugzilla.kernel.org
7682 F: arch/*/include/asm/suspend*.h
7683 F: arch/x86/power/
7684 F: drivers/base/power/
7685 F: include/linux/freezer.h
7686 F: include/linux/pm.h
7687 F: include/linux/suspend.h
7688 F: kernel/power/
7689
7690 HID CORE LAYER
7691 M: Jiri Kosina <jikos@kernel.org>
7692 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
7693 L: linux-input@vger.kernel.org
7694 S: Maintained
7695 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7696 F: drivers/hid/
7697 F: include/linux/hid*
7698 F: include/uapi/linux/hid*
7699
7700 HID SENSOR HUB DRIVERS
7701 M: Jiri Kosina <jikos@kernel.org>
7702 M: Jonathan Cameron <jic23@kernel.org>
7703 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7704 L: linux-input@vger.kernel.org
7705 L: linux-iio@vger.kernel.org
7706 S: Maintained
7707 F: Documentation/hid/hid-sensor*
7708 F: drivers/hid/hid-sensor-*
7709 F: drivers/iio/*/hid-*
7710 F: include/linux/hid-sensor-*
7711
7712 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7713 M: Thomas Gleixner <tglx@linutronix.de>
7714 L: linux-kernel@vger.kernel.org
7715 S: Maintained
7716 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7717 F: Documentation/timers/
7718 F: include/linux/clockchips.h
7719 F: include/linux/hrtimer.h
7720 F: kernel/time/clockevents.c
7721 F: kernel/time/hrtimer.c
7722 F: kernel/time/timer_*.c
7723
7724 HIGH-SPEED SCC DRIVER FOR AX.25
7725 L: linux-hams@vger.kernel.org
7726 S: Orphan
7727 F: drivers/net/hamradio/dmascc.c
7728 F: drivers/net/hamradio/scc.c
7729
7730 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7731 M: HighPoint Linux Team <linux@highpoint-tech.com>
7732 S: Supported
7733 W: http://www.highpoint-tech.com
7734 F: Documentation/scsi/hptiop.rst
7735 F: drivers/scsi/hptiop.c
7736
7737 HIPPI
7738 M: Jes Sorensen <jes@trained-monkey.org>
7739 L: linux-hippi@sunsite.dk
7740 S: Maintained
7741 F: drivers/net/hippi/
7742 F: include/linux/hippidevice.h
7743 F: include/uapi/linux/if_hippi.h
7744 F: net/802/hippi.c
7745
7746 HISILICON DMA DRIVER
7747 M: Zhou Wang <wangzhou1@hisilicon.com>
7748 L: dmaengine@vger.kernel.org
7749 S: Maintained
7750 F: drivers/dma/hisi_dma.c
7751
7752 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7753 M: Zaibo Xu <xuzaibo@huawei.com>
7754 L: linux-crypto@vger.kernel.org
7755 S: Maintained
7756 F: Documentation/ABI/testing/debugfs-hisi-hpre
7757 F: drivers/crypto/hisilicon/hpre/hpre.h
7758 F: drivers/crypto/hisilicon/hpre/hpre_crypto.c
7759 F: drivers/crypto/hisilicon/hpre/hpre_main.c
7760
7761 HISILICON LPC BUS DRIVER
7762 M: john.garry@huawei.com
7763 S: Maintained
7764 W: http://www.hisilicon.com
7765 F: Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7766 F: drivers/bus/hisi_lpc.c
7767
7768 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7769 M: Yisen Zhuang <yisen.zhuang@huawei.com>
7770 M: Salil Mehta <salil.mehta@huawei.com>
7771 L: netdev@vger.kernel.org
7772 S: Maintained
7773 W: http://www.hisilicon.com
7774 F: drivers/net/ethernet/hisilicon/hns3/
7775
7776 HISILICON NETWORK SUBSYSTEM DRIVER
7777 M: Yisen Zhuang <yisen.zhuang@huawei.com>
7778 M: Salil Mehta <salil.mehta@huawei.com>
7779 L: netdev@vger.kernel.org
7780 S: Maintained
7781 W: http://www.hisilicon.com
7782 F: Documentation/devicetree/bindings/net/hisilicon*.txt
7783 F: drivers/net/ethernet/hisilicon/
7784
7785 HISILICON PMU DRIVER
7786 M: Shaokun Zhang <zhangshaokun@hisilicon.com>
7787 S: Supported
7788 W: http://www.hisilicon.com
7789 F: Documentation/admin-guide/perf/hisi-pmu.rst
7790 F: drivers/perf/hisilicon
7791
7792 HISILICON QM AND ZIP Controller DRIVER
7793 M: Zhou Wang <wangzhou1@hisilicon.com>
7794 L: linux-crypto@vger.kernel.org
7795 S: Maintained
7796 F: Documentation/ABI/testing/debugfs-hisi-zip
7797 F: drivers/crypto/hisilicon/qm.c
7798 F: drivers/crypto/hisilicon/qm.h
7799 F: drivers/crypto/hisilicon/sgl.c
7800 F: drivers/crypto/hisilicon/zip/
7801
7802 HISILICON ROCE DRIVER
7803 M: Lijun Ou <oulijun@huawei.com>
7804 M: Wei Hu(Xavier) <huwei87@hisilicon.com>
7805 M: Weihang Li <liweihang@huawei.com>
7806 L: linux-rdma@vger.kernel.org
7807 S: Maintained
7808 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7809 F: drivers/infiniband/hw/hns/
7810
7811 HISILICON SAS Controller
7812 M: John Garry <john.garry@huawei.com>
7813 S: Supported
7814 W: http://www.hisilicon.com
7815 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7816 F: drivers/scsi/hisi_sas/
7817
7818 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7819 M: Zaibo Xu <xuzaibo@huawei.com>
7820 L: linux-crypto@vger.kernel.org
7821 S: Maintained
7822 F: Documentation/ABI/testing/debugfs-hisi-sec
7823 F: drivers/crypto/hisilicon/sec2/sec.h
7824 F: drivers/crypto/hisilicon/sec2/sec_crypto.c
7825 F: drivers/crypto/hisilicon/sec2/sec_crypto.h
7826 F: drivers/crypto/hisilicon/sec2/sec_main.c
7827
7828 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7829 M: Zaibo Xu <xuzaibo@huawei.com>
7830 S: Maintained
7831 F: drivers/char/hw_random/hisi-trng-v2.c
7832
7833 HISILICON V3XX SPI NOR FLASH Controller Driver
7834 M: John Garry <john.garry@huawei.com>
7835 S: Maintained
7836 W: http://www.hisilicon.com
7837 F: drivers/spi/spi-hisi-sfc-v3xx.c
7838
7839 HMM - Heterogeneous Memory Management
7840 M: Jérôme Glisse <jglisse@redhat.com>
7841 L: linux-mm@kvack.org
7842 S: Maintained
7843 F: Documentation/vm/hmm.rst
7844 F: include/linux/hmm*
7845 F: lib/test_hmm*
7846 F: mm/hmm*
7847 F: tools/testing/selftests/vm/*hmm*
7848
7849 HOST AP DRIVER
7850 M: Jouni Malinen <j@w1.fi>
7851 L: linux-wireless@vger.kernel.org
7852 S: Obsolete
7853 W: http://w1.fi/hostap-driver.html
7854 F: drivers/net/wireless/intersil/hostap/
7855
7856 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7857 L: platform-driver-x86@vger.kernel.org
7858 S: Orphan
7859 F: drivers/platform/x86/tc1100-wmi.c
7860
7861 HPET: High Precision Event Timers driver
7862 M: Clemens Ladisch <clemens@ladisch.de>
7863 S: Maintained
7864 F: Documentation/timers/hpet.rst
7865 F: drivers/char/hpet.c
7866 F: include/linux/hpet.h
7867 F: include/uapi/linux/hpet.h
7868
7869 HPET: x86
7870 S: Orphan
7871 F: arch/x86/include/asm/hpet.h
7872 F: arch/x86/kernel/hpet.c
7873
7874 HPFS FILESYSTEM
7875 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7876 S: Maintained
7877 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7878 F: fs/hpfs/
7879
7880 HSI SUBSYSTEM
7881 M: Sebastian Reichel <sre@kernel.org>
7882 S: Maintained
7883 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7884 F: Documentation/ABI/testing/sysfs-bus-hsi
7885 F: Documentation/driver-api/hsi.rst
7886 F: drivers/hsi/
7887 F: include/linux/hsi/
7888 F: include/uapi/linux/hsi/
7889
7890 HSO 3G MODEM DRIVER
7891 L: linux-usb@vger.kernel.org
7892 S: Orphan
7893 F: drivers/net/usb/hso.c
7894
7895 HSR NETWORK PROTOCOL
7896 L: netdev@vger.kernel.org
7897 S: Orphan
7898 F: net/hsr/
7899
7900 HT16K33 LED CONTROLLER DRIVER
7901 M: Robin van der Gracht <robin@protonic.nl>
7902 S: Maintained
7903 F: Documentation/devicetree/bindings/display/ht16k33.txt
7904 F: drivers/auxdisplay/ht16k33.c
7905
7906 HTCPEN TOUCHSCREEN DRIVER
7907 M: Pau Oliva Fora <pof@eslack.org>
7908 L: linux-input@vger.kernel.org
7909 S: Maintained
7910 F: drivers/input/touchscreen/htcpen.c
7911
7912 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7913 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7914 L: linux-iio@vger.kernel.org
7915 S: Maintained
7916 W: http://www.st.com/
7917 F: Documentation/devicetree/bindings/iio/humidity/hts221.txt
7918 F: drivers/iio/humidity/hts221*
7919
7920 HUAWEI ETHERNET DRIVER
7921 M: Bin Luo <luobin9@huawei.com>
7922 L: netdev@vger.kernel.org
7923 S: Supported
7924 F: Documentation/networking/hinic.rst
7925 F: drivers/net/ethernet/huawei/hinic/
7926
7927 HUGETLB FILESYSTEM
7928 M: Mike Kravetz <mike.kravetz@oracle.com>
7929 L: linux-mm@kvack.org
7930 S: Maintained
7931 F: Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7932 F: Documentation/admin-guide/mm/hugetlbpage.rst
7933 F: Documentation/vm/hugetlbfs_reserv.rst
7934 F: fs/hugetlbfs/
7935 F: include/linux/hugetlb.h
7936 F: mm/hugetlb.c
7937
7938 HVA ST MEDIA DRIVER
7939 M: Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7940 L: linux-media@vger.kernel.org
7941 S: Supported
7942 W: https://linuxtv.org
7943 T: git git://linuxtv.org/media_tree.git
7944 F: drivers/media/platform/sti/hva
7945
7946 HWPOISON MEMORY FAILURE HANDLING
7947 M: Naoya Horiguchi <naoya.horiguchi@nec.com>
7948 L: linux-mm@kvack.org
7949 S: Maintained
7950 F: mm/hwpoison-inject.c
7951 F: mm/memory-failure.c
7952
7953 HYGON PROCESSOR SUPPORT
7954 M: Pu Wen <puwen@hygon.cn>
7955 L: linux-kernel@vger.kernel.org
7956 S: Maintained
7957 F: arch/x86/kernel/cpu/hygon.c
7958
7959 HYNIX HI556 SENSOR DRIVER
7960 M: Shawn Tu <shawnx.tu@intel.com>
7961 L: linux-media@vger.kernel.org
7962 S: Maintained
7963 T: git git://linuxtv.org/media_tree.git
7964 F: drivers/media/i2c/hi556.c
7965
7966 Hyper-V CORE AND DRIVERS
7967 M: "K. Y. Srinivasan" <kys@microsoft.com>
7968 M: Haiyang Zhang <haiyangz@microsoft.com>
7969 M: Stephen Hemminger <sthemmin@microsoft.com>
7970 M: Wei Liu <wei.liu@kernel.org>
7971 L: linux-hyperv@vger.kernel.org
7972 S: Supported
7973 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7974 F: Documentation/ABI/stable/sysfs-bus-vmbus
7975 F: Documentation/ABI/testing/debugfs-hyperv
7976 F: Documentation/networking/device_drivers/microsoft/netvsc.rst
7977 F: arch/x86/hyperv
7978 F: arch/x86/include/asm/hyperv-tlfs.h
7979 F: arch/x86/include/asm/mshyperv.h
7980 F: arch/x86/include/asm/trace/hyperv.h
7981 F: arch/x86/kernel/cpu/mshyperv.c
7982 F: drivers/clocksource/hyperv_timer.c
7983 F: drivers/hid/hid-hyperv.c
7984 F: drivers/hv/
7985 F: drivers/input/serio/hyperv-keyboard.c
7986 F: drivers/iommu/hyperv-iommu.c
7987 F: drivers/net/hyperv/
7988 F: drivers/pci/controller/pci-hyperv-intf.c
7989 F: drivers/pci/controller/pci-hyperv.c
7990 F: drivers/scsi/storvsc_drv.c
7991 F: drivers/uio/uio_hv_generic.c
7992 F: drivers/video/fbdev/hyperv_fb.c
7993 F: include/asm-generic/hyperv-tlfs.h
7994 F: include/asm-generic/mshyperv.h
7995 F: include/clocksource/hyperv_timer.h
7996 F: include/linux/hyperv.h
7997 F: include/uapi/linux/hyperv.h
7998 F: net/vmw_vsock/hyperv_transport.c
7999 F: tools/hv/
8000
8001 HYPERBUS SUPPORT
8002 M: Vignesh Raghavendra <vigneshr@ti.com>
8003 L: linux-mtd@lists.infradead.org
8004 S: Supported
8005 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8006 C: irc://irc.oftc.net/mtd
8007 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8008 F: Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8009 F: Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8010 F: drivers/mtd/hyperbus/
8011 F: include/linux/mtd/hyperbus.h
8012
8013 HYPERVISOR VIRTUAL CONSOLE DRIVER
8014 L: linuxppc-dev@lists.ozlabs.org
8015 S: Odd Fixes
8016 F: drivers/tty/hvc/
8017
8018 I2C ACPI SUPPORT
8019 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8020 L: linux-i2c@vger.kernel.org
8021 L: linux-acpi@vger.kernel.org
8022 S: Maintained
8023 F: drivers/i2c/i2c-core-acpi.c
8024
8025 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8026 M: Ajay Gupta <ajayg@nvidia.com>
8027 L: linux-i2c@vger.kernel.org
8028 S: Maintained
8029 F: Documentation/i2c/busses/i2c-nvidia-gpu.rst
8030 F: drivers/i2c/busses/i2c-nvidia-gpu.c
8031
8032 I2C MUXES
8033 M: Peter Rosin <peda@axentia.se>
8034 L: linux-i2c@vger.kernel.org
8035 S: Maintained
8036 F: Documentation/devicetree/bindings/i2c/i2c-arb*
8037 F: Documentation/devicetree/bindings/i2c/i2c-gate*
8038 F: Documentation/devicetree/bindings/i2c/i2c-mux*
8039 F: Documentation/i2c/i2c-topology.rst
8040 F: Documentation/i2c/muxes/
8041 F: drivers/i2c/i2c-mux.c
8042 F: drivers/i2c/muxes/
8043 F: include/linux/i2c-mux.h
8044
8045 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8046 M: Gregory CLEMENT <gregory.clement@bootlin.com>
8047 L: linux-i2c@vger.kernel.org
8048 S: Maintained
8049 F: Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8050 F: drivers/i2c/busses/i2c-mv64xxx.c
8051
8052 I2C OVER PARALLEL PORT
8053 M: Jean Delvare <jdelvare@suse.com>
8054 L: linux-i2c@vger.kernel.org
8055 S: Maintained
8056 F: Documentation/i2c/busses/i2c-parport.rst
8057 F: drivers/i2c/busses/i2c-parport.c
8058
8059 I2C SUBSYSTEM
8060 M: Wolfram Sang <wsa@kernel.org>
8061 L: linux-i2c@vger.kernel.org
8062 S: Maintained
8063 W: https://i2c.wiki.kernel.org/
8064 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8065 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8066 F: Documentation/devicetree/bindings/i2c/i2c.txt
8067 F: Documentation/i2c/
8068 F: drivers/i2c/*
8069 F: include/linux/i2c-dev.h
8070 F: include/linux/i2c-smbus.h
8071 F: include/linux/i2c.h
8072 F: include/uapi/linux/i2c-*.h
8073 F: include/uapi/linux/i2c.h
8074
8075 I2C SUBSYSTEM HOST DRIVERS
8076 L: linux-i2c@vger.kernel.org
8077 S: Odd Fixes
8078 W: https://i2c.wiki.kernel.org/
8079 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
8080 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8081 F: Documentation/devicetree/bindings/i2c/
8082 F: drivers/i2c/algos/
8083 F: drivers/i2c/busses/
8084
8085 I2C-TAOS-EVM DRIVER
8086 M: Jean Delvare <jdelvare@suse.com>
8087 L: linux-i2c@vger.kernel.org
8088 S: Maintained
8089 F: Documentation/i2c/busses/i2c-taos-evm.rst
8090 F: drivers/i2c/busses/i2c-taos-evm.c
8091
8092 I2C-TINY-USB DRIVER
8093 M: Till Harbaum <till@harbaum.org>
8094 L: linux-i2c@vger.kernel.org
8095 S: Maintained
8096 W: http://www.harbaum.org/till/i2c_tiny_usb
8097 F: drivers/i2c/busses/i2c-tiny-usb.c
8098
8099 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8100 M: Jean Delvare <jdelvare@suse.com>
8101 L: linux-i2c@vger.kernel.org
8102 S: Maintained
8103 F: Documentation/i2c/busses/i2c-ali1535.rst
8104 F: Documentation/i2c/busses/i2c-ali1563.rst
8105 F: Documentation/i2c/busses/i2c-ali15x3.rst
8106 F: Documentation/i2c/busses/i2c-amd756.rst
8107 F: Documentation/i2c/busses/i2c-amd8111.rst
8108 F: Documentation/i2c/busses/i2c-i801.rst
8109 F: Documentation/i2c/busses/i2c-nforce2.rst
8110 F: Documentation/i2c/busses/i2c-piix4.rst
8111 F: Documentation/i2c/busses/i2c-sis5595.rst
8112 F: Documentation/i2c/busses/i2c-sis630.rst
8113 F: Documentation/i2c/busses/i2c-sis96x.rst
8114 F: Documentation/i2c/busses/i2c-via.rst
8115 F: Documentation/i2c/busses/i2c-viapro.rst
8116 F: drivers/i2c/busses/i2c-ali1535.c
8117 F: drivers/i2c/busses/i2c-ali1563.c
8118 F: drivers/i2c/busses/i2c-ali15x3.c
8119 F: drivers/i2c/busses/i2c-amd756-s4882.c
8120 F: drivers/i2c/busses/i2c-amd756.c
8121 F: drivers/i2c/busses/i2c-amd8111.c
8122 F: drivers/i2c/busses/i2c-i801.c
8123 F: drivers/i2c/busses/i2c-isch.c
8124 F: drivers/i2c/busses/i2c-nforce2-s4985.c
8125 F: drivers/i2c/busses/i2c-nforce2.c
8126 F: drivers/i2c/busses/i2c-piix4.c
8127 F: drivers/i2c/busses/i2c-sis5595.c
8128 F: drivers/i2c/busses/i2c-sis630.c
8129 F: drivers/i2c/busses/i2c-sis96x.c
8130 F: drivers/i2c/busses/i2c-via.c
8131 F: drivers/i2c/busses/i2c-viapro.c
8132
8133 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8134 M: Hans de Goede <hdegoede@redhat.com>
8135 L: linux-i2c@vger.kernel.org
8136 S: Maintained
8137 F: drivers/i2c/busses/i2c-cht-wc.c
8138
8139 I2C/SMBUS ISMT DRIVER
8140 M: Seth Heasley <seth.heasley@intel.com>
8141 M: Neil Horman <nhorman@tuxdriver.com>
8142 L: linux-i2c@vger.kernel.org
8143 F: Documentation/i2c/busses/i2c-ismt.rst
8144 F: drivers/i2c/busses/i2c-ismt.c
8145
8146 I2C/SMBUS STUB DRIVER
8147 M: Jean Delvare <jdelvare@suse.com>
8148 L: linux-i2c@vger.kernel.org
8149 S: Maintained
8150 F: drivers/i2c/i2c-stub.c
8151
8152 I3C DRIVER FOR CADENCE I3C MASTER IP
8153 M: Przemysław Gaj <pgaj@cadence.com>
8154 S: Maintained
8155 F: Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8156 F: drivers/i3c/master/i3c-master-cdns.c
8157
8158 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8159 M: Vitor Soares <vitor.soares@synopsys.com>
8160 S: Maintained
8161 F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8162 F: drivers/i3c/master/dw*
8163
8164 I3C SUBSYSTEM
8165 M: Boris Brezillon <bbrezillon@kernel.org>
8166 L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
8167 S: Maintained
8168 C: irc://chat.freenode.net/linux-i3c
8169 T: git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8170 F: Documentation/ABI/testing/sysfs-bus-i3c
8171 F: Documentation/devicetree/bindings/i3c/
8172 F: Documentation/driver-api/i3c
8173 F: drivers/i3c/
8174 F: include/linux/i3c/
8175
8176 IA64 (Itanium) PLATFORM
8177 M: Tony Luck <tony.luck@intel.com>
8178 M: Fenghua Yu <fenghua.yu@intel.com>
8179 L: linux-ia64@vger.kernel.org
8180 S: Maintained
8181 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8182 F: Documentation/ia64/
8183 F: arch/ia64/
8184
8185 IBM Power 842 compression accelerator
8186 M: Haren Myneni <haren@us.ibm.com>
8187 S: Supported
8188 F: crypto/842.c
8189 F: drivers/crypto/nx/Kconfig
8190 F: drivers/crypto/nx/Makefile
8191 F: drivers/crypto/nx/nx-842*
8192 F: include/linux/sw842.h
8193 F: lib/842/
8194
8195 IBM Power in-Nest Crypto Acceleration
8196 M: Breno Leitão <leitao@debian.org>
8197 M: Nayna Jain <nayna@linux.ibm.com>
8198 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8199 L: linux-crypto@vger.kernel.org
8200 S: Supported
8201 F: drivers/crypto/nx/Kconfig
8202 F: drivers/crypto/nx/Makefile
8203 F: drivers/crypto/nx/nx-aes*
8204 F: drivers/crypto/nx/nx-sha*
8205 F: drivers/crypto/nx/nx.*
8206 F: drivers/crypto/nx/nx_csbcpb.h
8207 F: drivers/crypto/nx/nx_debugfs.c
8208
8209 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8210 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8211 L: linux-pci@vger.kernel.org
8212 L: linuxppc-dev@lists.ozlabs.org
8213 S: Supported
8214 F: drivers/pci/hotplug/rpadlpar*
8215
8216 IBM Power Linux RAID adapter
8217 M: Brian King <brking@us.ibm.com>
8218 S: Supported
8219 F: drivers/scsi/ipr.*
8220
8221 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8222 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8223 L: linux-pci@vger.kernel.org
8224 L: linuxppc-dev@lists.ozlabs.org
8225 S: Supported
8226 F: drivers/pci/hotplug/rpaphp*
8227
8228 IBM Power SRIOV Virtual NIC Device Driver
8229 M: Thomas Falcon <tlfalcon@linux.ibm.com>
8230 M: John Allen <jallen@linux.ibm.com>
8231 L: netdev@vger.kernel.org
8232 S: Supported
8233 F: drivers/net/ethernet/ibm/ibmvnic.*
8234
8235 IBM Power Virtual Accelerator Switchboard
8236 M: Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8237 L: linuxppc-dev@lists.ozlabs.org
8238 S: Supported
8239 F: arch/powerpc/include/asm/vas.h
8240 F: arch/powerpc/platforms/powernv/copy-paste.h
8241 F: arch/powerpc/platforms/powernv/vas*
8242
8243 IBM Power Virtual Ethernet Device Driver
8244 M: Thomas Falcon <tlfalcon@linux.ibm.com>
8245 L: netdev@vger.kernel.org
8246 S: Supported
8247 F: drivers/net/ethernet/ibm/ibmveth.*
8248
8249 IBM Power Virtual FC Device Drivers
8250 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8251 L: linux-scsi@vger.kernel.org
8252 S: Supported
8253 F: drivers/scsi/ibmvscsi/ibmvfc*
8254
8255 IBM Power Virtual Management Channel Driver
8256 M: Steven Royer <seroyer@linux.ibm.com>
8257 S: Supported
8258 F: drivers/misc/ibmvmc.*
8259
8260 IBM Power Virtual SCSI Device Drivers
8261 M: Tyrel Datwyler <tyreld@linux.ibm.com>
8262 L: linux-scsi@vger.kernel.org
8263 S: Supported
8264 F: drivers/scsi/ibmvscsi/ibmvscsi*
8265 F: include/scsi/viosrp.h
8266
8267 IBM Power Virtual SCSI Device Target Driver
8268 M: Michael Cyr <mikecyr@linux.ibm.com>
8269 L: linux-scsi@vger.kernel.org
8270 L: target-devel@vger.kernel.org
8271 S: Supported
8272 F: drivers/scsi/ibmvscsi_tgt/
8273
8274 IBM Power VMX Cryptographic instructions
8275 M: Breno Leitão <leitao@debian.org>
8276 M: Nayna Jain <nayna@linux.ibm.com>
8277 M: Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8278 L: linux-crypto@vger.kernel.org
8279 S: Supported
8280 F: drivers/crypto/vmx/Kconfig
8281 F: drivers/crypto/vmx/Makefile
8282 F: drivers/crypto/vmx/aes*
8283 F: drivers/crypto/vmx/ghash*
8284 F: drivers/crypto/vmx/ppc-xlate.pl
8285 F: drivers/crypto/vmx/vmx.c
8286
8287 IBM ServeRAID RAID DRIVER
8288 S: Orphan
8289 F: drivers/scsi/ips.*
8290
8291 ICH LPC AND GPIO DRIVER
8292 M: Peter Tyser <ptyser@xes-inc.com>
8293 S: Maintained
8294 F: drivers/gpio/gpio-ich.c
8295 F: drivers/mfd/lpc_ich.c
8296
8297 ICY I2C DRIVER
8298 M: Max Staudt <max@enpas.org>
8299 L: linux-i2c@vger.kernel.org
8300 S: Maintained
8301 F: drivers/i2c/busses/i2c-icy.c
8302
8303 IDE SUBSYSTEM
8304 M: "David S. Miller" <davem@davemloft.net>
8305 L: linux-ide@vger.kernel.org
8306 S: Maintained
8307 Q: http://patchwork.ozlabs.org/project/linux-ide/list/
8308 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8309 F: Documentation/ide/
8310 F: drivers/ide/
8311 F: include/linux/ide.h
8312
8313 IDE/ATAPI DRIVERS
8314 M: Borislav Petkov <bp@alien8.de>
8315 L: linux-ide@vger.kernel.org
8316 S: Maintained
8317 F: Documentation/cdrom/ide-cd.rst
8318 F: drivers/ide/ide-cd*
8319
8320 IDEAPAD LAPTOP EXTRAS DRIVER
8321 M: Ike Panhc <ike.pan@canonical.com>
8322 L: platform-driver-x86@vger.kernel.org
8323 S: Maintained
8324 W: http://launchpad.net/ideapad-laptop
8325 F: drivers/platform/x86/ideapad-laptop.c
8326
8327 IDEAPAD LAPTOP SLIDEBAR DRIVER
8328 M: Andrey Moiseev <o2g.org.ru@gmail.com>
8329 L: linux-input@vger.kernel.org
8330 S: Maintained
8331 W: https://github.com/o2genum/ideapad-slidebar
8332 F: drivers/input/misc/ideapad_slidebar.c
8333
8334 IDT VersaClock 5 CLOCK DRIVER
8335 M: Marek Vasut <marek.vasut@gmail.com>
8336 S: Maintained
8337 F: drivers/clk/clk-versaclock5.c
8338
8339 IEEE 802.15.4 SUBSYSTEM
8340 M: Alexander Aring <alex.aring@gmail.com>
8341 M: Stefan Schmidt <stefan@datenfreihafen.org>
8342 L: linux-wpan@vger.kernel.org
8343 S: Maintained
8344 W: http://wpan.cakelab.org/
8345 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8346 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8347 F: Documentation/networking/ieee802154.rst
8348 F: drivers/net/ieee802154/
8349 F: include/linux/ieee802154.h
8350 F: include/linux/nl802154.h
8351 F: include/net/af_ieee802154.h
8352 F: include/net/cfg802154.h
8353 F: include/net/ieee802154_netdev.h
8354 F: include/net/mac802154.h
8355 F: include/net/nl802154.h
8356 F: net/ieee802154/
8357 F: net/mac802154/
8358
8359 IFE PROTOCOL
8360 M: Yotam Gigi <yotam.gi@gmail.com>
8361 M: Jamal Hadi Salim <jhs@mojatatu.com>
8362 F: include/net/ife.h
8363 F: include/uapi/linux/ife.h
8364 F: net/ife
8365
8366 IGORPLUG-USB IR RECEIVER
8367 M: Sean Young <sean@mess.org>
8368 L: linux-media@vger.kernel.org
8369 S: Maintained
8370 F: drivers/media/rc/igorplugusb.c
8371
8372 IGUANAWORKS USB IR TRANSCEIVER
8373 M: Sean Young <sean@mess.org>
8374 L: linux-media@vger.kernel.org
8375 S: Maintained
8376 F: drivers/media/rc/iguanair.c
8377
8378 IIO DIGITAL POTENTIOMETER DAC
8379 M: Peter Rosin <peda@axentia.se>
8380 L: linux-iio@vger.kernel.org
8381 S: Maintained
8382 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8383 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8384 F: drivers/iio/dac/dpot-dac.c
8385
8386 IIO ENVELOPE DETECTOR
8387 M: Peter Rosin <peda@axentia.se>
8388 L: linux-iio@vger.kernel.org
8389 S: Maintained
8390 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8391 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8392 F: drivers/iio/adc/envelope-detector.c
8393
8394 IIO MULTIPLEXER
8395 M: Peter Rosin <peda@axentia.se>
8396 L: linux-iio@vger.kernel.org
8397 S: Maintained
8398 F: Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8399 F: drivers/iio/multiplexer/iio-mux.c
8400
8401 IIO SUBSYSTEM AND DRIVERS
8402 M: Jonathan Cameron <jic23@kernel.org>
8403 R: Hartmut Knaack <knaack.h@gmx.de>
8404 R: Lars-Peter Clausen <lars@metafoo.de>
8405 R: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8406 L: linux-iio@vger.kernel.org
8407 S: Maintained
8408 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8409 F: Documentation/ABI/testing/configfs-iio*
8410 F: Documentation/ABI/testing/sysfs-bus-iio*
8411 F: Documentation/devicetree/bindings/iio/
8412 F: drivers/iio/
8413 F: drivers/staging/iio/
8414 F: include/linux/iio/
8415 F: tools/iio/
8416
8417 IIO UNIT CONVERTER
8418 M: Peter Rosin <peda@axentia.se>
8419 L: linux-iio@vger.kernel.org
8420 S: Maintained
8421 F: Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8422 F: Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8423 F: Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8424 F: drivers/iio/afe/iio-rescale.c
8425
8426 IKANOS/ADI EAGLE ADSL USB DRIVER
8427 M: Matthieu Castet <castet.matthieu@free.fr>
8428 M: Stanislaw Gruszka <stf_xl@wp.pl>
8429 S: Maintained
8430 F: drivers/usb/atm/ueagle-atm.c
8431
8432 IMGTEC ASCII LCD DRIVER
8433 M: Paul Burton <paulburton@kernel.org>
8434 S: Maintained
8435 F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8436 F: drivers/auxdisplay/img-ascii-lcd.c
8437
8438 IMGTEC IR DECODER DRIVER
8439 S: Orphan
8440 F: drivers/media/rc/img-ir/
8441
8442 IMON SOUNDGRAPH USB IR RECEIVER
8443 M: Sean Young <sean@mess.org>
8444 L: linux-media@vger.kernel.org
8445 S: Maintained
8446 F: drivers/media/rc/imon.c
8447 F: drivers/media/rc/imon_raw.c
8448
8449 IMS TWINTURBO FRAMEBUFFER DRIVER
8450 L: linux-fbdev@vger.kernel.org
8451 S: Orphan
8452 F: drivers/video/fbdev/imsttfb.c
8453
8454 INA209 HARDWARE MONITOR DRIVER
8455 M: Guenter Roeck <linux@roeck-us.net>
8456 L: linux-hwmon@vger.kernel.org
8457 S: Maintained
8458 F: Documentation/devicetree/bindings/hwmon/ina2xx.txt
8459 F: Documentation/hwmon/ina209.rst
8460 F: drivers/hwmon/ina209.c
8461
8462 INA2XX HARDWARE MONITOR DRIVER
8463 M: Guenter Roeck <linux@roeck-us.net>
8464 L: linux-hwmon@vger.kernel.org
8465 S: Maintained
8466 F: Documentation/hwmon/ina2xx.rst
8467 F: drivers/hwmon/ina2xx.c
8468 F: include/linux/platform_data/ina2xx.h
8469
8470 INDUSTRY PACK SUBSYSTEM (IPACK)
8471 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8472 M: Jens Taprogge <jens.taprogge@taprogge.org>
8473 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8474 L: industrypack-devel@lists.sourceforge.net
8475 S: Maintained
8476 W: http://industrypack.sourceforge.net
8477 F: drivers/ipack/
8478
8479 INFINEON DPS310 Driver
8480 M: Eddie James <eajames@linux.ibm.com>
8481 L: linux-iio@vger.kernel.org
8482 S: Maintained
8483 F: drivers/iio/pressure/dps310.c
8484
8485 INFINIBAND SUBSYSTEM
8486 M: Doug Ledford <dledford@redhat.com>
8487 M: Jason Gunthorpe <jgg@mellanox.com>
8488 L: linux-rdma@vger.kernel.org
8489 S: Supported
8490 W: https://github.com/linux-rdma/rdma-core
8491 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8492 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8493 F: Documentation/devicetree/bindings/infiniband/
8494 F: Documentation/infiniband/
8495 F: drivers/infiniband/
8496 F: include/rdma/
8497 F: include/trace/events/ib_mad.h
8498 F: include/trace/events/ib_umad.h
8499 F: include/uapi/linux/if_infiniband.h
8500 F: include/uapi/rdma/
8501 F: samples/bpf/ibumad_kern.c
8502 F: samples/bpf/ibumad_user.c
8503
8504 INGENIC JZ4780 DMA Driver
8505 M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8506 S: Maintained
8507 F: drivers/dma/dma-jz4780.c
8508
8509 INGENIC JZ4780 NAND DRIVER
8510 M: Harvey Hunt <harveyhuntnexus@gmail.com>
8511 L: linux-mtd@lists.infradead.org
8512 S: Maintained
8513 F: drivers/mtd/nand/raw/ingenic/
8514
8515 INGENIC JZ47xx SoCs
8516 M: Paul Cercueil <paul@crapouillou.net>
8517 S: Maintained
8518 F: arch/mips/boot/dts/ingenic/
8519 F: arch/mips/include/asm/mach-jz4740/
8520 F: arch/mips/jz4740/
8521 F: drivers/clk/ingenic/
8522 F: drivers/dma/dma-jz4780.c
8523 F: drivers/gpu/drm/ingenic/
8524 F: drivers/i2c/busses/i2c-jz4780.c
8525 F: drivers/iio/adc/ingenic-adc.c
8526 F: drivers/irqchip/irq-ingenic.c
8527 F: drivers/memory/jz4780-nemc.c
8528 F: drivers/mmc/host/jz4740_mmc.c
8529 F: drivers/mtd/nand/raw/ingenic/
8530 F: drivers/pinctrl/pinctrl-ingenic.c
8531 F: drivers/power/supply/ingenic-battery.c
8532 F: drivers/pwm/pwm-jz4740.c
8533 F: drivers/remoteproc/ingenic_rproc.c
8534 F: drivers/rtc/rtc-jz4740.c
8535 F: drivers/tty/serial/8250/8250_ingenic.c
8536 F: drivers/usb/musb/jz4740.c
8537 F: drivers/watchdog/jz4740_wdt.c
8538 F: include/dt-bindings/iio/adc/ingenic,adc.h
8539 F: include/linux/mfd/ingenic-tcu.h
8540 F: sound/soc/codecs/jz47*
8541 F: sound/soc/jz4740/
8542
8543 INOTIFY
8544 M: Jan Kara <jack@suse.cz>
8545 R: Amir Goldstein <amir73il@gmail.com>
8546 L: linux-fsdevel@vger.kernel.org
8547 S: Maintained
8548 F: Documentation/filesystems/inotify.rst
8549 F: fs/notify/inotify/
8550 F: include/linux/inotify.h
8551 F: include/uapi/linux/inotify.h
8552
8553 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8554 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
8555 L: linux-input@vger.kernel.org
8556 S: Maintained
8557 Q: http://patchwork.kernel.org/project/linux-input/list/
8558 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8559 F: Documentation/devicetree/bindings/input/
8560 F: Documentation/devicetree/bindings/serio/
8561 F: Documentation/input/
8562 F: drivers/input/
8563 F: include/linux/input.h
8564 F: include/linux/input/
8565 F: include/uapi/linux/input-event-codes.h
8566 F: include/uapi/linux/input.h
8567
8568 INPUT MULTITOUCH (MT) PROTOCOL
8569 M: Henrik Rydberg <rydberg@bitmath.org>
8570 L: linux-input@vger.kernel.org
8571 S: Odd fixes
8572 F: Documentation/input/multi-touch-protocol.rst
8573 F: drivers/input/input-mt.c
8574 K: \b(ABS|SYN)_MT_
8575
8576 INSIDE SECURE CRYPTO DRIVER
8577 M: Antoine Tenart <antoine.tenart@bootlin.com>
8578 L: linux-crypto@vger.kernel.org
8579 S: Maintained
8580 F: drivers/crypto/inside-secure/
8581
8582 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8583 M: Mimi Zohar <zohar@linux.ibm.com>
8584 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8585 L: linux-integrity@vger.kernel.org
8586 S: Supported
8587 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8588 F: security/integrity/ima/
8589
8590 INTEL 810/815 FRAMEBUFFER DRIVER
8591 M: Antonino Daplas <adaplas@gmail.com>
8592 L: linux-fbdev@vger.kernel.org
8593 S: Maintained
8594 F: drivers/video/fbdev/i810/
8595
8596 INTEL ASoC DRIVERS
8597 M: Cezary Rojewski <cezary.rojewski@intel.com>
8598 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8599 M: Liam Girdwood <liam.r.girdwood@linux.intel.com>
8600 M: Jie Yang <yang.jie@linux.intel.com>
8601 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8602 S: Supported
8603 F: sound/soc/intel/
8604
8605 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8606 M: Hans de Goede <hdegoede@redhat.com>
8607 L: platform-driver-x86@vger.kernel.org
8608 S: Maintained
8609 F: drivers/platform/x86/intel_atomisp2_pm.c
8610
8611 INTEL BROXTON PMC DRIVER
8612 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8613 M: Zha Qipeng <qipeng.zha@intel.com>
8614 S: Maintained
8615 F: drivers/mfd/intel_pmc_bxt.c
8616 F: include/linux/mfd/intel_pmc_bxt.h
8617
8618 INTEL C600 SERIES SAS CONTROLLER DRIVER
8619 M: Intel SCU Linux support <intel-linux-scu@intel.com>
8620 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8621 L: linux-scsi@vger.kernel.org
8622 S: Supported
8623 T: git git://git.code.sf.net/p/intel-sas/isci
8624 F: drivers/scsi/isci/
8625
8626 INTEL CPU family model numbers
8627 M: Tony Luck <tony.luck@intel.com>
8628 M: x86@kernel.org
8629 L: linux-kernel@vger.kernel.org
8630 S: Supported
8631 F: arch/x86/include/asm/intel-family.h
8632
8633 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8634 M: Jani Nikula <jani.nikula@linux.intel.com>
8635 M: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8636 M: Rodrigo Vivi <rodrigo.vivi@intel.com>
8637 L: intel-gfx@lists.freedesktop.org
8638 S: Supported
8639 W: https://01.org/linuxgraphics/
8640 Q: http://patchwork.freedesktop.org/project/intel-gfx/
8641 B: https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8642 C: irc://chat.freenode.net/intel-gfx
8643 T: git git://anongit.freedesktop.org/drm-intel
8644 F: Documentation/gpu/i915.rst
8645 F: drivers/gpu/drm/i915/
8646 F: include/drm/i915*
8647 F: include/uapi/drm/i915_drm.h
8648
8649 INTEL ETHERNET DRIVERS
8650 M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8651 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8652 S: Supported
8653 W: http://www.intel.com/support/feedback.htm
8654 W: http://e1000.sourceforge.net/
8655 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8656 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8657 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8658 F: Documentation/networking/device_drivers/intel/e100.rst
8659 F: Documentation/networking/device_drivers/intel/e1000.rst
8660 F: Documentation/networking/device_drivers/intel/e1000e.rst
8661 F: Documentation/networking/device_drivers/intel/fm10k.rst
8662 F: Documentation/networking/device_drivers/intel/i40e.rst
8663 F: Documentation/networking/device_drivers/intel/iavf.rst
8664 F: Documentation/networking/device_drivers/intel/ice.rst
8665 F: Documentation/networking/device_drivers/intel/igb.rst
8666 F: Documentation/networking/device_drivers/intel/igbvf.rst
8667 F: Documentation/networking/device_drivers/intel/ixgb.rst
8668 F: Documentation/networking/device_drivers/intel/ixgbe.rst
8669 F: Documentation/networking/device_drivers/intel/ixgbevf.rst
8670 F: drivers/net/ethernet/intel/
8671 F: drivers/net/ethernet/intel/*/
8672 F: include/linux/avf/virtchnl.h
8673
8674 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8675 M: Maik Broemme <mbroemme@libmpq.org>
8676 L: linux-fbdev@vger.kernel.org
8677 S: Maintained
8678 F: Documentation/fb/intelfb.rst
8679 F: drivers/video/fbdev/intelfb/
8680
8681 INTEL GPIO DRIVERS
8682 M: Andy Shevchenko <andy@kernel.org>
8683 L: linux-gpio@vger.kernel.org
8684 S: Maintained
8685 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8686 F: drivers/gpio/gpio-ich.c
8687 F: drivers/gpio/gpio-intel-mid.c
8688 F: drivers/gpio/gpio-merrifield.c
8689 F: drivers/gpio/gpio-ml-ioh.c
8690 F: drivers/gpio/gpio-pch.c
8691 F: drivers/gpio/gpio-sch.c
8692 F: drivers/gpio/gpio-sodaville.c
8693
8694 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8695 M: Zhenyu Wang <zhenyuw@linux.intel.com>
8696 M: Zhi Wang <zhi.a.wang@intel.com>
8697 L: intel-gvt-dev@lists.freedesktop.org
8698 L: intel-gfx@lists.freedesktop.org
8699 S: Supported
8700 W: https://01.org/igvt-g
8701 T: git https://github.com/intel/gvt-linux.git
8702 F: drivers/gpu/drm/i915/gvt/
8703
8704 INTEL HID EVENT DRIVER
8705 M: Alex Hung <alex.hung@canonical.com>
8706 L: platform-driver-x86@vger.kernel.org
8707 S: Maintained
8708 F: drivers/platform/x86/intel-hid.c
8709
8710 INTEL I/OAT DMA DRIVER
8711 M: Dave Jiang <dave.jiang@intel.com>
8712 R: Dan Williams <dan.j.williams@intel.com>
8713 L: dmaengine@vger.kernel.org
8714 S: Supported
8715 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
8716 F: drivers/dma/ioat*
8717
8718 INTEL IADX DRIVER
8719 M: Dave Jiang <dave.jiang@intel.com>
8720 L: dmaengine@vger.kernel.org
8721 S: Supported
8722 F: drivers/dma/idxd/*
8723 F: include/uapi/linux/idxd.h
8724
8725 INTEL IDLE DRIVER
8726 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
8727 M: Len Brown <lenb@kernel.org>
8728 L: linux-pm@vger.kernel.org
8729 S: Supported
8730 B: https://bugzilla.kernel.org
8731 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8732 F: drivers/idle/intel_idle.c
8733
8734 INTEL INTEGRATED SENSOR HUB DRIVER
8735 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8736 M: Jiri Kosina <jikos@kernel.org>
8737 L: linux-input@vger.kernel.org
8738 S: Maintained
8739 F: drivers/hid/intel-ish-hid/
8740
8741 INTEL IOMMU (VT-d)
8742 M: David Woodhouse <dwmw2@infradead.org>
8743 M: Lu Baolu <baolu.lu@linux.intel.com>
8744 L: iommu@lists.linux-foundation.org
8745 S: Supported
8746 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8747 F: drivers/iommu/intel/
8748 F: include/linux/intel-iommu.h
8749 F: include/linux/intel-svm.h
8750
8751 INTEL IOP-ADMA DMA DRIVER
8752 R: Dan Williams <dan.j.williams@intel.com>
8753 S: Odd fixes
8754 F: drivers/dma/iop-adma.c
8755
8756 INTEL IPU3 CSI-2 CIO2 DRIVER
8757 M: Yong Zhi <yong.zhi@intel.com>
8758 M: Sakari Ailus <sakari.ailus@linux.intel.com>
8759 M: Bingbu Cao <bingbu.cao@intel.com>
8760 R: Tian Shu Qiu <tian.shu.qiu@intel.com>
8761 L: linux-media@vger.kernel.org
8762 S: Maintained
8763 F: Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8764 F: drivers/media/pci/intel/ipu3/
8765
8766 INTEL IPU3 CSI-2 IMGU DRIVER
8767 M: Sakari Ailus <sakari.ailus@linux.intel.com>
8768 R: Bingbu Cao <bingbu.cao@intel.com>
8769 R: Tian Shu Qiu <tian.shu.qiu@intel.com>
8770 L: linux-media@vger.kernel.org
8771 S: Maintained
8772 F: Documentation/admin-guide/media/ipu3.rst
8773 F: Documentation/admin-guide/media/ipu3_rcb.svg
8774 F: Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8775 F: drivers/staging/media/ipu3/
8776
8777 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8778 M: Krzysztof Halasa <khalasa@piap.pl>
8779 S: Maintained
8780 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
8781 F: drivers/net/wan/ixp4xx_hss.c
8782 F: drivers/soc/ixp4xx/ixp4xx-npe.c
8783 F: drivers/soc/ixp4xx/ixp4xx-qmgr.c
8784 F: include/linux/soc/ixp4xx/npe.h
8785 F: include/linux/soc/ixp4xx/qmgr.h
8786
8787 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8788 M: Deepak Saxena <dsaxena@plexity.net>
8789 S: Maintained
8790 F: drivers/char/hw_random/ixp4xx-rng.c
8791
8792 INTEL MANAGEMENT ENGINE (mei)
8793 M: Tomas Winkler <tomas.winkler@intel.com>
8794 L: linux-kernel@vger.kernel.org
8795 S: Supported
8796 F: Documentation/driver-api/mei/*
8797 F: drivers/misc/mei/*
8798 F: drivers/watchdog/mei_wdt.c
8799 F: include/linux/mei_cl_bus.h
8800 F: include/uapi/linux/mei.h
8801 F: samples/mei/*
8802
8803 INTEL MENLOW THERMAL DRIVER
8804 M: Sujith Thomas <sujith.thomas@intel.com>
8805 L: platform-driver-x86@vger.kernel.org
8806 S: Supported
8807 W: https://01.org/linux-acpi
8808 F: drivers/platform/x86/intel_menlow.c
8809
8810 INTEL MIC DRIVERS (mic)
8811 M: Sudeep Dutt <sudeep.dutt@intel.com>
8812 M: Ashutosh Dixit <ashutosh.dixit@intel.com>
8813 S: Supported
8814 W: https://github.com/sudeepdutt/mic
8815 W: http://software.intel.com/en-us/mic-developer
8816 F: Documentation/misc-devices/mic/
8817 F: drivers/dma/mic_x100_dma.c
8818 F: drivers/dma/mic_x100_dma.h
8819 F: drivers/misc/mic/
8820 F: include/linux/mic_bus.h
8821 F: include/linux/scif.h
8822 F: include/uapi/linux/mic_common.h
8823 F: include/uapi/linux/mic_ioctl.h
8824 F: include/uapi/linux/scif_ioctl.h
8825
8826 INTEL P-Unit IPC DRIVER
8827 M: Zha Qipeng <qipeng.zha@intel.com>
8828 L: platform-driver-x86@vger.kernel.org
8829 S: Maintained
8830 F: arch/x86/include/asm/intel_punit_ipc.h
8831 F: drivers/platform/x86/intel_punit_ipc.c
8832
8833 INTEL PMC CORE DRIVER
8834 M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8835 M: Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8836 L: platform-driver-x86@vger.kernel.org
8837 S: Maintained
8838 F: drivers/platform/x86/intel_pmc_core*
8839
8840 INTEL PMIC GPIO DRIVERS
8841 M: Andy Shevchenko <andy@kernel.org>
8842 S: Maintained
8843 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8844 F: drivers/gpio/gpio-*cove.c
8845 F: drivers/gpio/gpio-msic.c
8846
8847 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8848 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8849 S: Maintained
8850 F: drivers/mfd/intel_msic.c
8851 F: drivers/mfd/intel_soc_pmic*
8852 F: include/linux/mfd/intel_msic.h
8853 F: include/linux/mfd/intel_soc_pmic*
8854
8855 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8856 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
8857 L: linux-wireless@vger.kernel.org
8858 S: Maintained
8859 F: Documentation/networking/device_drivers/intel/ipw2100.rst
8860 F: Documentation/networking/device_drivers/intel/ipw2200.rst
8861 F: drivers/net/wireless/intel/ipw2x00/
8862
8863 INTEL PSTATE DRIVER
8864 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8865 M: Len Brown <lenb@kernel.org>
8866 L: linux-pm@vger.kernel.org
8867 S: Supported
8868 F: drivers/cpufreq/intel_pstate.c
8869
8870 INTEL RDMA RNIC DRIVER
8871 M: Faisal Latif <faisal.latif@intel.com>
8872 M: Shiraz Saleem <shiraz.saleem@intel.com>
8873 L: linux-rdma@vger.kernel.org
8874 S: Supported
8875 F: drivers/infiniband/hw/i40iw/
8876 F: include/uapi/rdma/i40iw-abi.h
8877
8878 INTEL SCU DRIVERS
8879 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8880 S: Maintained
8881 F: arch/x86/include/asm/intel_scu_ipc.h
8882 F: drivers/platform/x86/intel_scu_*
8883
8884 INTEL SPEED SELECT TECHNOLOGY
8885 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8886 L: platform-driver-x86@vger.kernel.org
8887 S: Maintained
8888 F: drivers/platform/x86/intel_speed_select_if/
8889 F: include/uapi/linux/isst_if.h
8890 F: tools/power/x86/intel-speed-select/
8891
8892 INTEL STRATIX10 FIRMWARE DRIVERS
8893 M: Richard Gong <richard.gong@linux.intel.com>
8894 L: linux-kernel@vger.kernel.org
8895 S: Maintained
8896 F: Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8897 F: Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8898 F: drivers/firmware/stratix10-rsu.c
8899 F: drivers/firmware/stratix10-svc.c
8900 F: include/linux/firmware/intel/stratix10-smc.h
8901 F: include/linux/firmware/intel/stratix10-svc-client.h
8902
8903 INTEL TELEMETRY DRIVER
8904 M: Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8905 M: "David E. Box" <david.e.box@linux.intel.com>
8906 L: platform-driver-x86@vger.kernel.org
8907 S: Maintained
8908 F: arch/x86/include/asm/intel_telemetry.h
8909 F: drivers/platform/x86/intel_telemetry*
8910
8911 INTEL UNCORE FREQUENCY CONTROL
8912 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8913 L: platform-driver-x86@vger.kernel.org
8914 S: Maintained
8915 F: drivers/platform/x86/intel-uncore-frequency.c
8916
8917 INTEL VIRTUAL BUTTON DRIVER
8918 M: AceLan Kao <acelan.kao@canonical.com>
8919 L: platform-driver-x86@vger.kernel.org
8920 S: Maintained
8921 F: drivers/platform/x86/intel-vbtn.c
8922
8923 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8924 M: Stanislaw Gruszka <stf_xl@wp.pl>
8925 L: linux-wireless@vger.kernel.org
8926 S: Supported
8927 F: drivers/net/wireless/intel/iwlegacy/
8928
8929 INTEL WIRELESS WIFI LINK (iwlwifi)
8930 M: Johannes Berg <johannes.berg@intel.com>
8931 M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8932 M: Luca Coelho <luciano.coelho@intel.com>
8933 M: Intel Linux Wireless <linuxwifi@intel.com>
8934 L: linux-wireless@vger.kernel.org
8935 S: Supported
8936 W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8937 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8938 F: drivers/net/wireless/intel/iwlwifi/
8939
8940 INTEL WIRELESS WIMAX CONNECTION 2400
8941 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8942 M: linux-wimax@intel.com
8943 L: wimax@linuxwimax.org (subscribers-only)
8944 S: Supported
8945 W: http://linuxwimax.org
8946 F: Documentation/admin-guide/wimax/i2400m.rst
8947 F: drivers/net/wimax/i2400m/
8948 F: include/uapi/linux/wimax/i2400m.h
8949
8950 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
8951 M: Jithu Joseph <jithu.joseph@intel.com>
8952 R: Maurice Ma <maurice.ma@intel.com>
8953 S: Maintained
8954 W: https://slimbootloader.github.io/security/firmware-update.html
8955 F: drivers/platform/x86/intel-wmi-sbl-fw-update.c
8956
8957 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8958 M: Mario Limonciello <mario.limonciello@dell.com>
8959 S: Maintained
8960 F: drivers/platform/x86/intel-wmi-thunderbolt.c
8961
8962 INTEL(R) TRACE HUB
8963 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
8964 S: Supported
8965 F: Documentation/trace/intel_th.rst
8966 F: drivers/hwtracing/intel_th/
8967 F: include/linux/intel_th.h
8968
8969 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8970 M: Ning Sun <ning.sun@intel.com>
8971 L: tboot-devel@lists.sourceforge.net
8972 S: Supported
8973 W: http://tboot.sourceforge.net
8974 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8975 F: Documentation/x86/intel_txt.rst
8976 F: arch/x86/kernel/tboot.c
8977 F: include/linux/tboot.h
8978
8979 INTERCONNECT API
8980 M: Georgi Djakov <georgi.djakov@linaro.org>
8981 L: linux-pm@vger.kernel.org
8982 S: Maintained
8983 F: Documentation/devicetree/bindings/interconnect/
8984 F: Documentation/driver-api/interconnect.rst
8985 F: drivers/interconnect/
8986 F: include/dt-bindings/interconnect/
8987 F: include/linux/interconnect-provider.h
8988 F: include/linux/interconnect.h
8989
8990 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8991 M: Linus Walleij <linus.walleij@linaro.org>
8992 L: linux-iio@vger.kernel.org
8993 S: Maintained
8994 F: Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8995 F: drivers/iio/gyro/mpu3050*
8996
8997 IOC3 ETHERNET DRIVER
8998 M: Ralf Baechle <ralf@linux-mips.org>
8999 L: linux-mips@vger.kernel.org
9000 S: Maintained
9001 F: drivers/net/ethernet/sgi/ioc3-eth.c
9002
9003 IOMAP FILESYSTEM LIBRARY
9004 M: Christoph Hellwig <hch@infradead.org>
9005 M: Darrick J. Wong <darrick.wong@oracle.com>
9006 M: linux-xfs@vger.kernel.org
9007 M: linux-fsdevel@vger.kernel.org
9008 L: linux-xfs@vger.kernel.org
9009 L: linux-fsdevel@vger.kernel.org
9010 S: Supported
9011 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9012 F: fs/iomap/
9013 F: include/linux/iomap.h
9014
9015 IOMMU DRIVERS
9016 M: Joerg Roedel <joro@8bytes.org>
9017 L: iommu@lists.linux-foundation.org
9018 S: Maintained
9019 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9020 F: Documentation/devicetree/bindings/iommu/
9021 F: drivers/iommu/
9022 F: include/linux/iommu.h
9023 F: include/linux/iova.h
9024 F: include/linux/of_iommu.h
9025
9026 IO_URING
9027 M: Jens Axboe <axboe@kernel.dk>
9028 L: io-uring@vger.kernel.org
9029 S: Maintained
9030 T: git git://git.kernel.dk/linux-block
9031 T: git git://git.kernel.dk/liburing
9032 F: fs/io-wq.c
9033 F: fs/io-wq.h
9034 F: fs/io_uring.c
9035 F: include/uapi/linux/io_uring.h
9036
9037 IPMI SUBSYSTEM
9038 M: Corey Minyard <minyard@acm.org>
9039 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9040 S: Supported
9041 W: http://openipmi.sourceforge.net/
9042 F: Documentation/driver-api/ipmi.rst
9043 F: Documentation/devicetree/bindings/ipmi/
9044 F: drivers/char/ipmi/
9045 F: include/linux/ipmi*
9046 F: include/uapi/linux/ipmi*
9047
9048 IPS SCSI RAID DRIVER
9049 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9050 L: linux-scsi@vger.kernel.org
9051 S: Maintained
9052 W: http://www.adaptec.com/
9053 F: drivers/scsi/ips*
9054
9055 IPVS
9056 M: Wensong Zhang <wensong@linux-vs.org>
9057 M: Simon Horman <horms@verge.net.au>
9058 M: Julian Anastasov <ja@ssi.bg>
9059 L: netdev@vger.kernel.org
9060 L: lvs-devel@vger.kernel.org
9061 S: Maintained
9062 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9063 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9064 F: Documentation/networking/ipvs-sysctl.rst
9065 F: include/net/ip_vs.h
9066 F: include/uapi/linux/ip_vs.h
9067 F: net/netfilter/ipvs/
9068
9069 IPWIRELESS DRIVER
9070 M: Jiri Kosina <jikos@kernel.org>
9071 M: David Sterba <dsterba@suse.com>
9072 S: Odd Fixes
9073 F: drivers/tty/ipwireless/
9074
9075 IPX NETWORK LAYER
9076 L: netdev@vger.kernel.org
9077 S: Obsolete
9078 F: include/uapi/linux/ipx.h
9079
9080 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9081 M: Marc Zyngier <maz@kernel.org>
9082 S: Maintained
9083 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9084 F: Documentation/core-api/irq/irq-domain.rst
9085 F: include/linux/irqdomain.h
9086 F: kernel/irq/irqdomain.c
9087 F: kernel/irq/msi.c
9088
9089 IRQ SUBSYSTEM
9090 M: Thomas Gleixner <tglx@linutronix.de>
9091 L: linux-kernel@vger.kernel.org
9092 S: Maintained
9093 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9094 F: kernel/irq/
9095
9096 IRQCHIP DRIVERS
9097 M: Thomas Gleixner <tglx@linutronix.de>
9098 M: Jason Cooper <jason@lakedaemon.net>
9099 M: Marc Zyngier <maz@kernel.org>
9100 L: linux-kernel@vger.kernel.org
9101 S: Maintained
9102 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9103 F: Documentation/devicetree/bindings/interrupt-controller/
9104 F: drivers/irqchip/
9105
9106 ISA
9107 M: William Breathitt Gray <vilhelm.gray@gmail.com>
9108 S: Maintained
9109 F: Documentation/driver-api/isa.rst
9110 F: drivers/base/isa.c
9111 F: include/linux/isa.h
9112
9113 ISA RADIO MODULE
9114 M: Hans Verkuil <hverkuil@xs4all.nl>
9115 L: linux-media@vger.kernel.org
9116 S: Maintained
9117 W: https://linuxtv.org
9118 T: git git://linuxtv.org/media_tree.git
9119 F: drivers/media/radio/radio-isa*
9120
9121 ISAPNP
9122 M: Jaroslav Kysela <perex@perex.cz>
9123 S: Maintained
9124 F: Documentation/driver-api/isapnp.rst
9125 F: drivers/pnp/isapnp/
9126 F: include/linux/isapnp.h
9127
9128 ISCSI
9129 M: Lee Duncan <lduncan@suse.com>
9130 M: Chris Leech <cleech@redhat.com>
9131 L: open-iscsi@googlegroups.com
9132 L: linux-scsi@vger.kernel.org
9133 S: Maintained
9134 W: www.open-iscsi.com
9135 F: drivers/scsi/*iscsi*
9136 F: include/scsi/*iscsi*
9137
9138 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9139 M: Peter Jones <pjones@redhat.com>
9140 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
9141 S: Maintained
9142 F: drivers/firmware/iscsi_ibft*
9143
9144 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9145 M: Sagi Grimberg <sagi@grimberg.me>
9146 M: Max Gurtovoy <maxg@mellanox.com>
9147 L: linux-rdma@vger.kernel.org
9148 S: Supported
9149 W: http://www.openfabrics.org
9150 W: www.open-iscsi.org
9151 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9152 F: drivers/infiniband/ulp/iser/
9153
9154 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9155 M: Sagi Grimberg <sagi@grimberg.me>
9156 L: linux-rdma@vger.kernel.org
9157 L: target-devel@vger.kernel.org
9158 S: Supported
9159 W: http://www.linux-iscsi.org
9160 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9161 F: drivers/infiniband/ulp/isert
9162
9163 ISDN/CMTP OVER BLUETOOTH
9164 M: Karsten Keil <isdn@linux-pingi.de>
9165 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9166 L: netdev@vger.kernel.org
9167 S: Odd Fixes
9168 W: http://www.isdn4linux.de
9169 F: Documentation/isdn/
9170 F: drivers/isdn/capi/
9171 F: include/linux/isdn/
9172 F: include/uapi/linux/isdn/
9173 F: net/bluetooth/cmtp/
9174
9175 ISDN/mISDN SUBSYSTEM
9176 M: Karsten Keil <isdn@linux-pingi.de>
9177 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
9178 L: netdev@vger.kernel.org
9179 S: Maintained
9180 W: http://www.isdn4linux.de
9181 F: drivers/isdn/Kconfig
9182 F: drivers/isdn/Makefile
9183 F: drivers/isdn/hardware/
9184 F: drivers/isdn/mISDN/
9185
9186 IT87 HARDWARE MONITORING DRIVER
9187 M: Jean Delvare <jdelvare@suse.com>
9188 L: linux-hwmon@vger.kernel.org
9189 S: Maintained
9190 F: Documentation/hwmon/it87.rst
9191 F: drivers/hwmon/it87.c
9192
9193 IT913X MEDIA DRIVER
9194 M: Antti Palosaari <crope@iki.fi>
9195 L: linux-media@vger.kernel.org
9196 S: Maintained
9197 W: https://linuxtv.org
9198 W: http://palosaari.fi/linux/
9199 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9200 T: git git://linuxtv.org/anttip/media_tree.git
9201 F: drivers/media/tuners/it913x*
9202
9203 IVTV VIDEO4LINUX DRIVER
9204 M: Andy Walls <awalls@md.metrocast.net>
9205 L: linux-media@vger.kernel.org
9206 S: Maintained
9207 W: https://linuxtv.org
9208 T: git git://linuxtv.org/media_tree.git
9209 F: Documentation/admin-guide/media/ivtv*
9210 F: drivers/media/pci/ivtv/
9211 F: include/uapi/linux/ivtv*
9212
9213 IX2505V MEDIA DRIVER
9214 M: Malcolm Priestley <tvboxspy@gmail.com>
9215 L: linux-media@vger.kernel.org
9216 S: Maintained
9217 W: https://linuxtv.org
9218 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9219 F: drivers/media/dvb-frontends/ix2505v*
9220
9221 JAILHOUSE HYPERVISOR INTERFACE
9222 M: Jan Kiszka <jan.kiszka@siemens.com>
9223 L: jailhouse-dev@googlegroups.com
9224 S: Maintained
9225 F: arch/x86/include/asm/jailhouse_para.h
9226 F: arch/x86/kernel/jailhouse.c
9227
9228 JC42.4 TEMPERATURE SENSOR DRIVER
9229 M: Guenter Roeck <linux@roeck-us.net>
9230 L: linux-hwmon@vger.kernel.org
9231 S: Maintained
9232 F: Documentation/hwmon/jc42.rst
9233 F: drivers/hwmon/jc42.c
9234
9235 JFS FILESYSTEM
9236 M: Dave Kleikamp <shaggy@kernel.org>
9237 L: jfs-discussion@lists.sourceforge.net
9238 S: Maintained
9239 W: http://jfs.sourceforge.net/
9240 T: git git://github.com/kleikamp/linux-shaggy.git
9241 F: Documentation/admin-guide/jfs.rst
9242 F: fs/jfs/
9243
9244 JME NETWORK DRIVER
9245 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
9246 L: netdev@vger.kernel.org
9247 S: Maintained
9248 F: drivers/net/ethernet/jme.*
9249
9250 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9251 M: David Woodhouse <dwmw2@infradead.org>
9252 M: Richard Weinberger <richard@nod.at>
9253 L: linux-mtd@lists.infradead.org
9254 S: Odd Fixes
9255 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
9256 T: git git://git.infradead.org/ubifs-2.6.git
9257 F: fs/jffs2/
9258 F: include/uapi/linux/jffs2.h
9259
9260 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9261 M: "Theodore Ts'o" <tytso@mit.edu>
9262 M: Jan Kara <jack@suse.com>
9263 L: linux-ext4@vger.kernel.org
9264 S: Maintained
9265 F: fs/jbd2/
9266 F: include/linux/jbd2.h
9267
9268 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9269 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9270 L: linux-media@vger.kernel.org
9271 S: Maintained
9272 F: drivers/media/platform/rcar_jpu.c
9273
9274 JSM Neo PCI based serial card
9275 L: linux-serial@vger.kernel.org
9276 S: Orphan
9277 F: drivers/tty/serial/jsm/
9278
9279 K10TEMP HARDWARE MONITORING DRIVER
9280 M: Clemens Ladisch <clemens@ladisch.de>
9281 L: linux-hwmon@vger.kernel.org
9282 S: Maintained
9283 F: Documentation/hwmon/k10temp.rst
9284 F: drivers/hwmon/k10temp.c
9285
9286 K8TEMP HARDWARE MONITORING DRIVER
9287 M: Rudolf Marek <r.marek@assembler.cz>
9288 L: linux-hwmon@vger.kernel.org
9289 S: Maintained
9290 F: Documentation/hwmon/k8temp.rst
9291 F: drivers/hwmon/k8temp.c
9292
9293 KASAN
9294 M: Andrey Ryabinin <aryabinin@virtuozzo.com>
9295 R: Alexander Potapenko <glider@google.com>
9296 R: Dmitry Vyukov <dvyukov@google.com>
9297 L: kasan-dev@googlegroups.com
9298 S: Maintained
9299 F: Documentation/dev-tools/kasan.rst
9300 F: arch/*/include/asm/kasan.h
9301 F: arch/*/mm/kasan_init*
9302 F: include/linux/kasan*.h
9303 F: lib/test_kasan.c
9304 F: mm/kasan/
9305 F: scripts/Makefile.kasan
9306
9307 KCONFIG
9308 M: Masahiro Yamada <masahiroy@kernel.org>
9309 L: linux-kbuild@vger.kernel.org
9310 S: Maintained
9311 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9312 F: Documentation/kbuild/kconfig*
9313 F: scripts/Kconfig.include
9314 F: scripts/kconfig/
9315
9316 KCSAN
9317 M: Marco Elver <elver@google.com>
9318 R: Dmitry Vyukov <dvyukov@google.com>
9319 L: kasan-dev@googlegroups.com
9320 S: Maintained
9321 F: Documentation/dev-tools/kcsan.rst
9322 F: include/linux/kcsan*.h
9323 F: kernel/kcsan/
9324 F: lib/Kconfig.kcsan
9325 F: scripts/Makefile.kcsan
9326
9327 KDUMP
9328 M: Dave Young <dyoung@redhat.com>
9329 M: Baoquan He <bhe@redhat.com>
9330 R: Vivek Goyal <vgoyal@redhat.com>
9331 L: kexec@lists.infradead.org
9332 S: Maintained
9333 W: http://lse.sourceforge.net/kdump/
9334 F: Documentation/admin-guide/kdump/
9335 F: fs/proc/vmcore.c
9336 F: include/linux/crash_core.h
9337 F: include/linux/crash_dump.h
9338 F: include/uapi/linux/vmcore.h
9339 F: kernel/crash_*.c
9340
9341 KEENE FM RADIO TRANSMITTER DRIVER
9342 M: Hans Verkuil <hverkuil@xs4all.nl>
9343 L: linux-media@vger.kernel.org
9344 S: Maintained
9345 W: https://linuxtv.org
9346 T: git git://linuxtv.org/media_tree.git
9347 F: drivers/media/radio/radio-keene*
9348
9349 KERNEL AUTOMOUNTER
9350 M: Ian Kent <raven@themaw.net>
9351 L: autofs@vger.kernel.org
9352 S: Maintained
9353 F: fs/autofs/
9354
9355 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9356 M: Masahiro Yamada <masahiroy@kernel.org>
9357 M: Michal Marek <michal.lkml@markovi.net>
9358 L: linux-kbuild@vger.kernel.org
9359 S: Maintained
9360 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9361 F: Documentation/kbuild/
9362 F: Makefile
9363 F: scripts/*vmlinux*
9364 F: scripts/Kbuild*
9365 F: scripts/Makefile*
9366 F: scripts/basic/
9367 F: scripts/mk*
9368 F: scripts/mod/
9369 F: scripts/package/
9370
9371 KERNEL JANITORS
9372 L: kernel-janitors@vger.kernel.org
9373 S: Odd Fixes
9374 W: http://kernelnewbies.org/KernelJanitors
9375
9376 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9377 M: "J. Bruce Fields" <bfields@fieldses.org>
9378 M: Chuck Lever <chuck.lever@oracle.com>
9379 L: linux-nfs@vger.kernel.org
9380 S: Supported
9381 W: http://nfs.sourceforge.net/
9382 T: git git://linux-nfs.org/~bfields/linux.git
9383 F: fs/lockd/
9384 F: fs/nfs_common/
9385 F: fs/nfsd/
9386 F: include/linux/lockd/
9387 F: include/linux/sunrpc/
9388 F: include/uapi/linux/nfsd/
9389 F: include/uapi/linux/sunrpc/
9390 F: net/sunrpc/
9391
9392 KERNEL SELFTEST FRAMEWORK
9393 M: Shuah Khan <shuah@kernel.org>
9394 M: Shuah Khan <skhan@linuxfoundation.org>
9395 L: linux-kselftest@vger.kernel.org
9396 S: Maintained
9397 Q: https://patchwork.kernel.org/project/linux-kselftest/list/
9398 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9399 F: Documentation/dev-tools/kselftest*
9400 F: tools/testing/selftests/
9401
9402 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9403 M: Brendan Higgins <brendanhiggins@google.com>
9404 L: linux-kselftest@vger.kernel.org
9405 L: kunit-dev@googlegroups.com
9406 S: Maintained
9407 W: https://google.github.io/kunit-docs/third_party/kernel/docs/
9408 F: Documentation/dev-tools/kunit/
9409 F: include/kunit/
9410 F: lib/kunit/
9411 F: tools/testing/kunit/
9412
9413 KERNEL USERMODE HELPER
9414 M: Luis Chamberlain <mcgrof@kernel.org>
9415 L: linux-kernel@vger.kernel.org
9416 S: Maintained
9417 F: include/linux/umh.h
9418 F: kernel/umh.c
9419
9420 KERNEL VIRTUAL MACHINE (KVM)
9421 M: Paolo Bonzini <pbonzini@redhat.com>
9422 L: kvm@vger.kernel.org
9423 S: Supported
9424 W: http://www.linux-kvm.org
9425 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9426 F: Documentation/virt/kvm/
9427 F: include/asm-generic/kvm*
9428 F: include/kvm/iodev.h
9429 F: include/linux/kvm*
9430 F: include/trace/events/kvm.h
9431 F: include/uapi/asm-generic/kvm*
9432 F: include/uapi/linux/kvm*
9433 F: tools/kvm/
9434 F: tools/testing/selftests/kvm/
9435 F: virt/kvm/*
9436
9437 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9438 M: Marc Zyngier <maz@kernel.org>
9439 R: James Morse <james.morse@arm.com>
9440 R: Julien Thierry <julien.thierry.kdev@gmail.com>
9441 R: Suzuki K Poulose <suzuki.poulose@arm.com>
9442 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9443 L: kvmarm@lists.cs.columbia.edu
9444 S: Maintained
9445 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9446 F: arch/arm64/include/asm/kvm*
9447 F: arch/arm64/include/uapi/asm/kvm*
9448 F: arch/arm64/kvm/
9449 F: include/kvm/arm_*
9450
9451 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9452 L: linux-mips@vger.kernel.org
9453 L: kvm@vger.kernel.org
9454 S: Orphan
9455 F: arch/mips/include/asm/kvm*
9456 F: arch/mips/include/uapi/asm/kvm*
9457 F: arch/mips/kvm/
9458
9459 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9460 M: Paul Mackerras <paulus@ozlabs.org>
9461 L: kvm-ppc@vger.kernel.org
9462 S: Supported
9463 W: http://www.linux-kvm.org/
9464 T: git git://github.com/agraf/linux-2.6.git
9465 F: arch/powerpc/include/asm/kvm*
9466 F: arch/powerpc/include/uapi/asm/kvm*
9467 F: arch/powerpc/kernel/kvm*
9468 F: arch/powerpc/kvm/
9469
9470 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9471 M: Christian Borntraeger <borntraeger@de.ibm.com>
9472 M: Janosch Frank <frankja@linux.ibm.com>
9473 R: David Hildenbrand <david@redhat.com>
9474 R: Cornelia Huck <cohuck@redhat.com>
9475 R: Claudio Imbrenda <imbrenda@linux.ibm.com>
9476 L: kvm@vger.kernel.org
9477 S: Supported
9478 W: http://www.ibm.com/developerworks/linux/linux390/
9479 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9480 F: Documentation/virt/kvm/s390*
9481 F: arch/s390/include/asm/gmap.h
9482 F: arch/s390/include/asm/kvm*
9483 F: arch/s390/include/uapi/asm/kvm*
9484 F: arch/s390/kvm/
9485 F: arch/s390/mm/gmap.c
9486 F: tools/testing/selftests/kvm/*/s390x/
9487 F: tools/testing/selftests/kvm/s390x/
9488
9489 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9490 M: Paolo Bonzini <pbonzini@redhat.com>
9491 R: Sean Christopherson <sean.j.christopherson@intel.com>
9492 R: Vitaly Kuznetsov <vkuznets@redhat.com>
9493 R: Wanpeng Li <wanpengli@tencent.com>
9494 R: Jim Mattson <jmattson@google.com>
9495 R: Joerg Roedel <joro@8bytes.org>
9496 L: kvm@vger.kernel.org
9497 S: Supported
9498 W: http://www.linux-kvm.org
9499 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9500 F: arch/x86/include/asm/kvm*
9501 F: arch/x86/include/asm/pvclock-abi.h
9502 F: arch/x86/include/asm/svm.h
9503 F: arch/x86/include/asm/vmx*.h
9504 F: arch/x86/include/uapi/asm/kvm*
9505 F: arch/x86/include/uapi/asm/svm.h
9506 F: arch/x86/include/uapi/asm/vmx.h
9507 F: arch/x86/kernel/kvm.c
9508 F: arch/x86/kernel/kvmclock.c
9509 F: arch/x86/kvm/
9510 F: arch/x86/kvm/*/
9511
9512 KERNFS
9513 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9514 M: Tejun Heo <tj@kernel.org>
9515 S: Supported
9516 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9517 F: fs/kernfs/
9518 F: include/linux/kernfs.h
9519
9520 KEXEC
9521 M: Eric Biederman <ebiederm@xmission.com>
9522 L: kexec@lists.infradead.org
9523 S: Maintained
9524 W: http://kernel.org/pub/linux/utils/kernel/kexec/
9525 F: include/linux/kexec.h
9526 F: include/uapi/linux/kexec.h
9527 F: kernel/kexec*
9528
9529 KEYS-ENCRYPTED
9530 M: Mimi Zohar <zohar@linux.ibm.com>
9531 L: linux-integrity@vger.kernel.org
9532 L: keyrings@vger.kernel.org
9533 S: Supported
9534 F: Documentation/security/keys/trusted-encrypted.rst
9535 F: include/keys/encrypted-type.h
9536 F: security/keys/encrypted-keys/
9537
9538 KEYS-TRUSTED
9539 M: James Bottomley <jejb@linux.ibm.com>
9540 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9541 M: Mimi Zohar <zohar@linux.ibm.com>
9542 L: linux-integrity@vger.kernel.org
9543 L: keyrings@vger.kernel.org
9544 S: Supported
9545 F: Documentation/security/keys/trusted-encrypted.rst
9546 F: include/keys/trusted-type.h
9547 F: include/keys/trusted_tpm.h
9548 F: security/keys/trusted-keys/
9549
9550 KEYS/KEYRINGS
9551 M: David Howells <dhowells@redhat.com>
9552 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9553 L: keyrings@vger.kernel.org
9554 S: Maintained
9555 F: Documentation/security/keys/core.rst
9556 F: include/keys/
9557 F: include/linux/key-type.h
9558 F: include/linux/key.h
9559 F: include/linux/keyctl.h
9560 F: include/uapi/linux/keyctl.h
9561 F: security/keys/
9562
9563 KFIFO
9564 M: Stefani Seibold <stefani@seibold.net>
9565 S: Maintained
9566 F: include/linux/kfifo.h
9567 F: lib/kfifo.c
9568 F: samples/kfifo/
9569
9570 KGDB / KDB /debug_core
9571 M: Jason Wessel <jason.wessel@windriver.com>
9572 M: Daniel Thompson <daniel.thompson@linaro.org>
9573 R: Douglas Anderson <dianders@chromium.org>
9574 L: kgdb-bugreport@lists.sourceforge.net
9575 S: Maintained
9576 W: http://kgdb.wiki.kernel.org/
9577 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9578 F: Documentation/dev-tools/kgdb.rst
9579 F: drivers/misc/kgdbts.c
9580 F: drivers/tty/serial/kgdboc.c
9581 F: include/linux/kdb.h
9582 F: include/linux/kgdb.h
9583 F: kernel/debug/
9584
9585 KMEMLEAK
9586 M: Catalin Marinas <catalin.marinas@arm.com>
9587 S: Maintained
9588 F: Documentation/dev-tools/kmemleak.rst
9589 F: include/linux/kmemleak.h
9590 F: mm/kmemleak-test.c
9591 F: mm/kmemleak.c
9592
9593 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9594 M: Luis Chamberlain <mcgrof@kernel.org>
9595 L: linux-kernel@vger.kernel.org
9596 S: Maintained
9597 F: include/linux/kmod.h
9598 F: kernel/kmod.c
9599 F: lib/test_kmod.c
9600 F: tools/testing/selftests/kmod/
9601
9602 KPROBES
9603 M: Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9604 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9605 M: "David S. Miller" <davem@davemloft.net>
9606 M: Masami Hiramatsu <mhiramat@kernel.org>
9607 S: Maintained
9608 F: Documentation/kprobes.txt
9609 F: include/asm-generic/kprobes.h
9610 F: include/linux/kprobes.h
9611 F: kernel/kprobes.c
9612
9613 KS0108 LCD CONTROLLER DRIVER
9614 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9615 S: Maintained
9616 F: Documentation/admin-guide/auxdisplay/ks0108.rst
9617 F: drivers/auxdisplay/ks0108.c
9618 F: include/linux/ks0108.h
9619
9620 L3MDEV
9621 M: David Ahern <dsahern@kernel.org>
9622 L: netdev@vger.kernel.org
9623 S: Maintained
9624 F: include/net/l3mdev.h
9625 F: net/l3mdev
9626
9627 L7 BPF FRAMEWORK
9628 M: John Fastabend <john.fastabend@gmail.com>
9629 M: Daniel Borkmann <daniel@iogearbox.net>
9630 M: Jakub Sitnicki <jakub@cloudflare.com>
9631 M: Lorenz Bauer <lmb@cloudflare.com>
9632 L: netdev@vger.kernel.org
9633 L: bpf@vger.kernel.org
9634 S: Maintained
9635 F: include/linux/skmsg.h
9636 F: net/core/skmsg.c
9637 F: net/core/sock_map.c
9638 F: net/ipv4/tcp_bpf.c
9639 F: net/ipv4/udp_bpf.c
9640
9641 LANTIQ / INTEL Ethernet drivers
9642 M: Hauke Mehrtens <hauke@hauke-m.de>
9643 L: netdev@vger.kernel.org
9644 S: Maintained
9645 F: drivers/net/dsa/lantiq_gswip.c
9646 F: drivers/net/dsa/lantiq_pce.h
9647 F: drivers/net/ethernet/lantiq_xrx200.c
9648 F: net/dsa/tag_gswip.c
9649
9650 LANTIQ MIPS ARCHITECTURE
9651 M: John Crispin <john@phrozen.org>
9652 L: linux-mips@vger.kernel.org
9653 S: Maintained
9654 F: arch/mips/lantiq
9655 F: drivers/soc/lantiq
9656
9657 LAPB module
9658 L: linux-x25@vger.kernel.org
9659 S: Orphan
9660 F: Documentation/networking/lapb-module.rst
9661 F: include/*/lapb.h
9662 F: net/lapb/
9663
9664 LASI 53c700 driver for PARISC
9665 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9666 L: linux-scsi@vger.kernel.org
9667 S: Maintained
9668 F: Documentation/scsi/53c700.rst
9669 F: drivers/scsi/53c700*
9670
9671 LEAKING_ADDRESSES
9672 M: Tobin C. Harding <me@tobin.cc>
9673 M: Tycho Andersen <tycho@tycho.ws>
9674 L: kernel-hardening@lists.openwall.com
9675 S: Maintained
9676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9677 F: scripts/leaking_addresses.pl
9678
9679 LED SUBSYSTEM
9680 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
9681 M: Pavel Machek <pavel@ucw.cz>
9682 R: Dan Murphy <dmurphy@ti.com>
9683 L: linux-leds@vger.kernel.org
9684 S: Maintained
9685 T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9686 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9687 F: Documentation/devicetree/bindings/leds/
9688 F: drivers/leds/
9689 F: include/linux/leds.h
9690
9691 LEGACY EEPROM DRIVER
9692 M: Jean Delvare <jdelvare@suse.com>
9693 S: Maintained
9694 F: Documentation/misc-devices/eeprom.rst
9695 F: drivers/misc/eeprom/eeprom.c
9696
9697 LEGO MINDSTORMS EV3
9698 R: David Lechner <david@lechnology.com>
9699 S: Maintained
9700 F: Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9701 F: arch/arm/boot/dts/da850-lego-ev3.dts
9702 F: drivers/power/supply/lego_ev3_battery.c
9703
9704 LEGO USB Tower driver
9705 M: Juergen Stuber <starblue@users.sourceforge.net>
9706 L: legousb-devel@lists.sourceforge.net
9707 S: Maintained
9708 W: http://legousb.sourceforge.net/
9709 F: drivers/usb/misc/legousbtower.c
9710
9711 LG LAPTOP EXTRAS
9712 M: Matan Ziv-Av <matan@svgalib.org>
9713 L: platform-driver-x86@vger.kernel.org
9714 S: Maintained
9715 F: Documentation/ABI/testing/sysfs-platform-lg-laptop
9716 F: Documentation/admin-guide/laptops/lg-laptop.rst
9717 F: drivers/platform/x86/lg-laptop.c
9718
9719 LG2160 MEDIA DRIVER
9720 M: Michael Krufky <mkrufky@linuxtv.org>
9721 L: linux-media@vger.kernel.org
9722 S: Maintained
9723 W: https://linuxtv.org
9724 W: http://github.com/mkrufky
9725 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9726 T: git git://linuxtv.org/mkrufky/tuners.git
9727 F: drivers/media/dvb-frontends/lg2160.*
9728
9729 LGDT3305 MEDIA DRIVER
9730 M: Michael Krufky <mkrufky@linuxtv.org>
9731 L: linux-media@vger.kernel.org
9732 S: Maintained
9733 W: https://linuxtv.org
9734 W: http://github.com/mkrufky
9735 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9736 T: git git://linuxtv.org/mkrufky/tuners.git
9737 F: drivers/media/dvb-frontends/lgdt3305.*
9738
9739 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9740 M: Viresh Kumar <vireshk@kernel.org>
9741 L: linux-ide@vger.kernel.org
9742 S: Maintained
9743 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9744 F: drivers/ata/pata_arasan_cf.c
9745 F: include/linux/pata_arasan_cf_data.h
9746
9747 LIBATA PATA DRIVERS
9748 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9749 M: Jens Axboe <axboe@kernel.dk>
9750 L: linux-ide@vger.kernel.org
9751 S: Maintained
9752 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9753 F: drivers/ata/ata_generic.c
9754 F: drivers/ata/pata_*.c
9755
9756 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9757 M: Linus Walleij <linus.walleij@linaro.org>
9758 L: linux-ide@vger.kernel.org
9759 S: Maintained
9760 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9761 F: drivers/ata/pata_ftide010.c
9762 F: drivers/ata/sata_gemini.c
9763 F: drivers/ata/sata_gemini.h
9764
9765 LIBATA SATA AHCI PLATFORM devices support
9766 M: Hans de Goede <hdegoede@redhat.com>
9767 M: Jens Axboe <axboe@kernel.dk>
9768 L: linux-ide@vger.kernel.org
9769 S: Maintained
9770 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9771 F: drivers/ata/ahci_platform.c
9772 F: drivers/ata/libahci_platform.c
9773 F: include/linux/ahci_platform.h
9774
9775 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9776 M: Mikael Pettersson <mikpelinux@gmail.com>
9777 L: linux-ide@vger.kernel.org
9778 S: Maintained
9779 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9780 F: drivers/ata/sata_promise.*
9781
9782 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9783 M: Jens Axboe <axboe@kernel.dk>
9784 L: linux-ide@vger.kernel.org
9785 S: Maintained
9786 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9787 F: Documentation/devicetree/bindings/ata/
9788 F: drivers/ata/
9789 F: include/linux/ata.h
9790 F: include/linux/libata.h
9791
9792 LIBLOCKDEP
9793 M: Sasha Levin <alexander.levin@microsoft.com>
9794 S: Maintained
9795 F: tools/lib/lockdep/
9796
9797 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9798 M: Dan Williams <dan.j.williams@intel.com>
9799 M: Vishal Verma <vishal.l.verma@intel.com>
9800 M: Dave Jiang <dave.jiang@intel.com>
9801 L: linux-nvdimm@lists.01.org
9802 S: Supported
9803 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
9804 P: Documentation/nvdimm/maintainer-entry-profile.rst
9805 F: drivers/nvdimm/blk.c
9806 F: drivers/nvdimm/region_devs.c
9807
9808 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9809 M: Vishal Verma <vishal.l.verma@intel.com>
9810 M: Dan Williams <dan.j.williams@intel.com>
9811 M: Dave Jiang <dave.jiang@intel.com>
9812 L: linux-nvdimm@lists.01.org
9813 S: Supported
9814 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
9815 P: Documentation/nvdimm/maintainer-entry-profile.rst
9816 F: drivers/nvdimm/btt*
9817
9818 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9819 M: Dan Williams <dan.j.williams@intel.com>
9820 M: Vishal Verma <vishal.l.verma@intel.com>
9821 M: Dave Jiang <dave.jiang@intel.com>
9822 L: linux-nvdimm@lists.01.org
9823 S: Supported
9824 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
9825 P: Documentation/nvdimm/maintainer-entry-profile.rst
9826 F: drivers/nvdimm/pmem*
9827
9828 LIBNVDIMM: DEVICETREE BINDINGS
9829 M: Oliver O'Halloran <oohall@gmail.com>
9830 L: linux-nvdimm@lists.01.org
9831 S: Supported
9832 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
9833 F: Documentation/devicetree/bindings/pmem/pmem-region.txt
9834 F: drivers/nvdimm/of_pmem.c
9835
9836 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9837 M: Dan Williams <dan.j.williams@intel.com>
9838 M: Vishal Verma <vishal.l.verma@intel.com>
9839 M: Dave Jiang <dave.jiang@intel.com>
9840 M: Ira Weiny <ira.weiny@intel.com>
9841 L: linux-nvdimm@lists.01.org
9842 S: Supported
9843 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
9844 P: Documentation/nvdimm/maintainer-entry-profile.rst
9845 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9846 F: drivers/acpi/nfit/*
9847 F: drivers/nvdimm/*
9848 F: include/linux/libnvdimm.h
9849 F: include/linux/nd.h
9850 F: include/uapi/linux/ndctl.h
9851 F: tools/testing/nvdimm/
9852
9853 LICENSES and SPDX stuff
9854 M: Thomas Gleixner <tglx@linutronix.de>
9855 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9856 L: linux-spdx@vger.kernel.org
9857 S: Maintained
9858 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9859 F: COPYING
9860 F: Documentation/process/license-rules.rst
9861 F: LICENSES/
9862 F: scripts/spdxcheck-test.sh
9863 F: scripts/spdxcheck.py
9864
9865 LIGHTNVM PLATFORM SUPPORT
9866 M: Matias Bjorling <mb@lightnvm.io>
9867 L: linux-block@vger.kernel.org
9868 S: Maintained
9869 W: http://github/OpenChannelSSD
9870 F: drivers/lightnvm/
9871 F: include/linux/lightnvm.h
9872 F: include/uapi/linux/lightnvm.h
9873
9874 LINEAR RANGES HELPERS
9875 M: Mark Brown <broonie@kernel.org>
9876 R: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
9877 F: lib/linear_ranges.c
9878 F: lib/test_linear_ranges.c
9879 F: include/linux/linear_range.h
9880
9881 LINUX FOR POWER MACINTOSH
9882 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
9883 L: linuxppc-dev@lists.ozlabs.org
9884 S: Odd Fixes
9885 F: arch/powerpc/platforms/powermac/
9886 F: drivers/macintosh/
9887
9888 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9889 M: Michael Ellerman <mpe@ellerman.id.au>
9890 R: Benjamin Herrenschmidt <benh@kernel.crashing.org>
9891 R: Paul Mackerras <paulus@samba.org>
9892 L: linuxppc-dev@lists.ozlabs.org
9893 S: Supported
9894 W: https://github.com/linuxppc/wiki/wiki
9895 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9896 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9897 F: Documentation/ABI/stable/sysfs-firmware-opal-*
9898 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
9899 F: Documentation/devicetree/bindings/powerpc/
9900 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
9901 F: Documentation/powerpc/
9902 F: arch/powerpc/
9903 F: drivers/*/*/*pasemi*
9904 F: drivers/*/*pasemi*
9905 F: drivers/char/tpm/tpm_ibmvtpm*
9906 F: drivers/crypto/nx/
9907 F: drivers/crypto/vmx/
9908 F: drivers/i2c/busses/i2c-opal.c
9909 F: drivers/net/ethernet/ibm/ibmveth.*
9910 F: drivers/net/ethernet/ibm/ibmvnic.*
9911 F: drivers/pci/hotplug/pnv_php.c
9912 F: drivers/pci/hotplug/rpa*
9913 F: drivers/rtc/rtc-opal.c
9914 F: drivers/scsi/ibmvscsi/
9915 F: drivers/tty/hvc/hvc_opal.c
9916 F: drivers/watchdog/wdrtas.c
9917 F: tools/testing/selftests/powerpc
9918 N: /pmac
9919 N: powermac
9920 N: powernv
9921 N: [^a-z0-9]ps3
9922 N: pseries
9923
9924 LINUX FOR POWERPC EMBEDDED MPC5XXX
9925 M: Anatolij Gustschin <agust@denx.de>
9926 L: linuxppc-dev@lists.ozlabs.org
9927 S: Odd Fixes
9928 F: arch/powerpc/platforms/512x/
9929 F: arch/powerpc/platforms/52xx/
9930
9931 LINUX FOR POWERPC EMBEDDED PPC4XX
9932 L: linuxppc-dev@lists.ozlabs.org
9933 S: Orphan
9934 F: arch/powerpc/platforms/40x/
9935 F: arch/powerpc/platforms/44x/
9936
9937 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9938 M: Scott Wood <oss@buserror.net>
9939 L: linuxppc-dev@lists.ozlabs.org
9940 S: Odd fixes
9941 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9942 F: Documentation/devicetree/bindings/powerpc/fsl/
9943 F: arch/powerpc/platforms/83xx/
9944 F: arch/powerpc/platforms/85xx/
9945
9946 LINUX FOR POWERPC EMBEDDED PPC8XX
9947 M: Christophe Leroy <christophe.leroy@csgroup.eu>
9948 L: linuxppc-dev@lists.ozlabs.org
9949 S: Maintained
9950 F: arch/powerpc/platforms/8xx/
9951
9952 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9953 M: Kees Cook <keescook@chromium.org>
9954 S: Maintained
9955 F: drivers/misc/lkdtm/*
9956 F: tools/testing/selftests/lkdtm/*
9957
9958 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9959 M: Alan Stern <stern@rowland.harvard.edu>
9960 M: Andrea Parri <parri.andrea@gmail.com>
9961 M: Will Deacon <will@kernel.org>
9962 M: Peter Zijlstra <peterz@infradead.org>
9963 M: Boqun Feng <boqun.feng@gmail.com>
9964 M: Nicholas Piggin <npiggin@gmail.com>
9965 M: David Howells <dhowells@redhat.com>
9966 M: Jade Alglave <j.alglave@ucl.ac.uk>
9967 M: Luc Maranget <luc.maranget@inria.fr>
9968 M: "Paul E. McKenney" <paulmck@kernel.org>
9969 R: Akira Yokosawa <akiyks@gmail.com>
9970 R: Daniel Lustig <dlustig@nvidia.com>
9971 L: linux-kernel@vger.kernel.org
9972 L: linux-arch@vger.kernel.org
9973 S: Supported
9974 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9975 F: Documentation/atomic_bitops.txt
9976 F: Documentation/atomic_t.txt
9977 F: Documentation/core-api/atomic_ops.rst
9978 F: Documentation/core-api/refcount-vs-atomic.rst
9979 F: Documentation/memory-barriers.txt
9980 F: tools/memory-model/
9981
9982 LIS3LV02D ACCELEROMETER DRIVER
9983 M: Eric Piel <eric.piel@tremplin-utc.net>
9984 S: Maintained
9985 F: Documentation/misc-devices/lis3lv02d.rst
9986 F: drivers/misc/lis3lv02d/
9987 F: drivers/platform/x86/hp_accel.c
9988
9989 LIST KUNIT TEST
9990 M: David Gow <davidgow@google.com>
9991 L: linux-kselftest@vger.kernel.org
9992 L: kunit-dev@googlegroups.com
9993 S: Maintained
9994 F: lib/list-test.c
9995
9996 LIVE PATCHING
9997 M: Josh Poimboeuf <jpoimboe@redhat.com>
9998 M: Jiri Kosina <jikos@kernel.org>
9999 M: Miroslav Benes <mbenes@suse.cz>
10000 M: Petr Mladek <pmladek@suse.com>
10001 R: Joe Lawrence <joe.lawrence@redhat.com>
10002 L: live-patching@vger.kernel.org
10003 S: Maintained
10004 T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10005 F: Documentation/ABI/testing/sysfs-kernel-livepatch
10006 F: Documentation/livepatch/
10007 F: arch/powerpc/include/asm/livepatch.h
10008 F: arch/s390/include/asm/livepatch.h
10009 F: arch/x86/include/asm/livepatch.h
10010 F: include/linux/livepatch.h
10011 F: kernel/livepatch/
10012 F: lib/livepatch/
10013 F: samples/livepatch/
10014 F: tools/testing/selftests/livepatch/
10015
10016 LLC (802.2)
10017 L: netdev@vger.kernel.org
10018 S: Odd fixes
10019 F: include/linux/llc.h
10020 F: include/net/llc*
10021 F: include/uapi/linux/llc.h
10022 F: net/llc/
10023
10024 LM73 HARDWARE MONITOR DRIVER
10025 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
10026 L: linux-hwmon@vger.kernel.org
10027 S: Maintained
10028 F: drivers/hwmon/lm73.c
10029
10030 LM78 HARDWARE MONITOR DRIVER
10031 M: Jean Delvare <jdelvare@suse.com>
10032 L: linux-hwmon@vger.kernel.org
10033 S: Maintained
10034 F: Documentation/hwmon/lm78.rst
10035 F: drivers/hwmon/lm78.c
10036
10037 LM83 HARDWARE MONITOR DRIVER
10038 M: Jean Delvare <jdelvare@suse.com>
10039 L: linux-hwmon@vger.kernel.org
10040 S: Maintained
10041 F: Documentation/hwmon/lm83.rst
10042 F: drivers/hwmon/lm83.c
10043
10044 LM90 HARDWARE MONITOR DRIVER
10045 M: Jean Delvare <jdelvare@suse.com>
10046 L: linux-hwmon@vger.kernel.org
10047 S: Maintained
10048 F: Documentation/devicetree/bindings/hwmon/lm90.txt
10049 F: Documentation/hwmon/lm90.rst
10050 F: drivers/hwmon/lm90.c
10051 F: include/dt-bindings/thermal/lm90.h
10052
10053 LM95234 HARDWARE MONITOR DRIVER
10054 M: Guenter Roeck <linux@roeck-us.net>
10055 L: linux-hwmon@vger.kernel.org
10056 S: Maintained
10057 F: Documentation/hwmon/lm95234.rst
10058 F: drivers/hwmon/lm95234.c
10059
10060 LME2510 MEDIA DRIVER
10061 M: Malcolm Priestley <tvboxspy@gmail.com>
10062 L: linux-media@vger.kernel.org
10063 S: Maintained
10064 W: https://linuxtv.org
10065 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10066 F: drivers/media/usb/dvb-usb-v2/lmedm04*
10067
10068 LOADPIN SECURITY MODULE
10069 M: Kees Cook <keescook@chromium.org>
10070 S: Supported
10071 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10072 F: Documentation/admin-guide/LSM/LoadPin.rst
10073 F: security/loadpin/
10074
10075 LOCKING PRIMITIVES
10076 M: Peter Zijlstra <peterz@infradead.org>
10077 M: Ingo Molnar <mingo@redhat.com>
10078 M: Will Deacon <will@kernel.org>
10079 L: linux-kernel@vger.kernel.org
10080 S: Maintained
10081 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10082 F: Documentation/locking/
10083 F: arch/*/include/asm/spinlock*.h
10084 F: include/linux/lockdep.h
10085 F: include/linux/mutex*.h
10086 F: include/linux/rwlock*.h
10087 F: include/linux/rwsem*.h
10088 F: include/linux/seqlock.h
10089 F: include/linux/spinlock*.h
10090 F: kernel/locking/
10091 F: lib/locking*.[ch]
10092 X: kernel/locking/locktorture.c
10093
10094 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10095 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
10096 L: linux-ntfs-dev@lists.sourceforge.net
10097 S: Maintained
10098 W: http://www.linux-ntfs.org/content/view/19/37/
10099 F: Documentation/admin-guide/ldm.rst
10100 F: block/partitions/ldm.*
10101
10102 LOGITECH HID GAMING KEYBOARDS
10103 M: Hans de Goede <hdegoede@redhat.com>
10104 L: linux-input@vger.kernel.org
10105 S: Maintained
10106 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10107 F: drivers/hid/hid-lg-g15.c
10108
10109 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10110 M: Sathya Prakash <sathya.prakash@broadcom.com>
10111 M: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10112 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10113 L: MPT-FusionLinux.pdl@broadcom.com
10114 L: linux-scsi@vger.kernel.org
10115 S: Supported
10116 W: http://www.avagotech.com/support/
10117 F: drivers/message/fusion/
10118 F: drivers/scsi/mpt3sas/
10119
10120 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10121 M: Matthew Wilcox <willy@infradead.org>
10122 L: linux-scsi@vger.kernel.org
10123 S: Maintained
10124 F: drivers/scsi/sym53c8xx_2/
10125
10126 LTC1660 DAC DRIVER
10127 M: Marcus Folkesson <marcus.folkesson@gmail.com>
10128 L: linux-iio@vger.kernel.org
10129 S: Maintained
10130 F: Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10131 F: drivers/iio/dac/ltc1660.c
10132
10133 LTC2947 HARDWARE MONITOR DRIVER
10134 M: Nuno Sá <nuno.sa@analog.com>
10135 L: linux-hwmon@vger.kernel.org
10136 S: Supported
10137 W: http://ez.analog.com/community/linux-device-drivers
10138 F: Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10139 F: drivers/hwmon/ltc2947-core.c
10140 F: drivers/hwmon/ltc2947-i2c.c
10141 F: drivers/hwmon/ltc2947-spi.c
10142 F: drivers/hwmon/ltc2947.h
10143
10144 LTC2983 IIO TEMPERATURE DRIVER
10145 M: Nuno Sá <nuno.sa@analog.com>
10146 L: linux-iio@vger.kernel.org
10147 S: Supported
10148 W: http://ez.analog.com/community/linux-device-drivers
10149 F: Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10150 F: drivers/iio/temperature/ltc2983.c
10151
10152 LTC4261 HARDWARE MONITOR DRIVER
10153 M: Guenter Roeck <linux@roeck-us.net>
10154 L: linux-hwmon@vger.kernel.org
10155 S: Maintained
10156 F: Documentation/hwmon/ltc4261.rst
10157 F: drivers/hwmon/ltc4261.c
10158
10159 LTC4306 I2C MULTIPLEXER DRIVER
10160 M: Michael Hennerich <michael.hennerich@analog.com>
10161 L: linux-i2c@vger.kernel.org
10162 S: Supported
10163 W: http://ez.analog.com/community/linux-device-drivers
10164 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10165 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
10166
10167 LTP (Linux Test Project)
10168 M: Mike Frysinger <vapier@gentoo.org>
10169 M: Cyril Hrubis <chrubis@suse.cz>
10170 M: Wanlong Gao <wanlong.gao@gmail.com>
10171 M: Jan Stancek <jstancek@redhat.com>
10172 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10173 M: Alexey Kodanev <alexey.kodanev@oracle.com>
10174 L: ltp@lists.linux.it (subscribers-only)
10175 S: Maintained
10176 W: http://linux-test-project.github.io/
10177 T: git git://github.com/linux-test-project/ltp.git
10178
10179 M68K ARCHITECTURE
10180 M: Geert Uytterhoeven <geert@linux-m68k.org>
10181 L: linux-m68k@lists.linux-m68k.org
10182 S: Maintained
10183 W: http://www.linux-m68k.org/
10184 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10185 F: arch/m68k/
10186 F: drivers/zorro/
10187
10188 M68K ON APPLE MACINTOSH
10189 M: Joshua Thompson <funaho@jurai.org>
10190 L: linux-m68k@lists.linux-m68k.org
10191 S: Maintained
10192 W: http://www.mac.linux-m68k.org/
10193 F: arch/m68k/mac/
10194
10195 M68K ON HP9000/300
10196 M: Philip Blundell <philb@gnu.org>
10197 S: Maintained
10198 W: http://www.tazenda.demon.co.uk/phil/linux-hp
10199 F: arch/m68k/hp300/
10200
10201 M88DS3103 MEDIA DRIVER
10202 M: Antti Palosaari <crope@iki.fi>
10203 L: linux-media@vger.kernel.org
10204 S: Maintained
10205 W: https://linuxtv.org
10206 W: http://palosaari.fi/linux/
10207 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10208 T: git git://linuxtv.org/anttip/media_tree.git
10209 F: drivers/media/dvb-frontends/m88ds3103*
10210
10211 M88RS2000 MEDIA DRIVER
10212 M: Malcolm Priestley <tvboxspy@gmail.com>
10213 L: linux-media@vger.kernel.org
10214 S: Maintained
10215 W: https://linuxtv.org
10216 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10217 F: drivers/media/dvb-frontends/m88rs2000*
10218
10219 MA901 MASTERKIT USB FM RADIO DRIVER
10220 M: Alexey Klimov <klimov.linux@gmail.com>
10221 L: linux-media@vger.kernel.org
10222 S: Maintained
10223 T: git git://linuxtv.org/media_tree.git
10224 F: drivers/media/radio/radio-ma901.c
10225
10226 MAC80211
10227 M: Johannes Berg <johannes@sipsolutions.net>
10228 L: linux-wireless@vger.kernel.org
10229 S: Maintained
10230 W: https://wireless.wiki.kernel.org/
10231 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10232 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10233 F: Documentation/networking/mac80211-injection.rst
10234 F: Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10235 F: drivers/net/wireless/mac80211_hwsim.[ch]
10236 F: include/net/mac80211.h
10237 F: net/mac80211/
10238
10239 MAILBOX API
10240 M: Jassi Brar <jassisinghbrar@gmail.com>
10241 L: linux-kernel@vger.kernel.org
10242 S: Maintained
10243 F: drivers/mailbox/
10244 F: include/linux/mailbox_client.h
10245 F: include/linux/mailbox_controller.h
10246
10247 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10248 M: Michael Kerrisk <mtk.manpages@gmail.com>
10249 L: linux-man@vger.kernel.org
10250 S: Maintained
10251 W: http://www.kernel.org/doc/man-pages
10252
10253 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10254 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
10255 L: linux-mips@vger.kernel.org
10256 S: Maintained
10257 F: arch/mips/boot/dts/img/pistachio_marduk.dts
10258
10259 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10260 M: Andrew Lunn <andrew@lunn.ch>
10261 M: Vivien Didelot <vivien.didelot@gmail.com>
10262 L: netdev@vger.kernel.org
10263 S: Maintained
10264 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
10265 F: Documentation/networking/devlink/mv88e6xxx.rst
10266 F: drivers/net/dsa/mv88e6xxx/
10267 F: include/linux/platform_data/mv88e6xxx.h
10268
10269 MARVELL ARMADA 3700 PHY DRIVERS
10270 M: Miquel Raynal <miquel.raynal@bootlin.com>
10271 S: Maintained
10272 F: Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10273 F: Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10274 F: drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10275 F: drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10276
10277 MARVELL ARMADA DRM SUPPORT
10278 M: Russell King <linux@armlinux.org.uk>
10279 S: Maintained
10280 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10281 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10282 F: Documentation/devicetree/bindings/display/armada/
10283 F: drivers/gpu/drm/armada/
10284 F: include/uapi/drm/armada_drm.h
10285
10286 MARVELL CRYPTO DRIVER
10287 M: Boris Brezillon <bbrezillon@kernel.org>
10288 M: Arnaud Ebalard <arno@natisbad.org>
10289 M: Srujana Challa <schalla@marvell.com>
10290 L: linux-crypto@vger.kernel.org
10291 S: Maintained
10292 F: drivers/crypto/marvell/
10293
10294 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10295 M: Mirko Lindner <mlindner@marvell.com>
10296 M: Stephen Hemminger <stephen@networkplumber.org>
10297 L: netdev@vger.kernel.org
10298 S: Maintained
10299 F: drivers/net/ethernet/marvell/sk*
10300
10301 MARVELL LIBERTAS WIRELESS DRIVER
10302 L: libertas-dev@lists.infradead.org
10303 S: Orphan
10304 F: drivers/net/wireless/marvell/libertas/
10305
10306 MARVELL MACCHIATOBIN SUPPORT
10307 M: Russell King <linux@armlinux.org.uk>
10308 L: linux-arm-kernel@lists.infradead.org
10309 S: Maintained
10310 F: arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10311
10312 MARVELL MV643XX ETHERNET DRIVER
10313 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10314 L: netdev@vger.kernel.org
10315 S: Maintained
10316 F: drivers/net/ethernet/marvell/mv643xx_eth.*
10317 F: include/linux/mv643xx.h
10318
10319 MARVELL MV88X3310 PHY DRIVER
10320 M: Russell King <linux@armlinux.org.uk>
10321 L: netdev@vger.kernel.org
10322 S: Maintained
10323 F: drivers/net/phy/marvell10g.c
10324
10325 MARVELL MVEBU THERMAL DRIVER
10326 M: Miquel Raynal <miquel.raynal@bootlin.com>
10327 S: Maintained
10328 F: drivers/thermal/armada_thermal.c
10329
10330 MARVELL MVNETA ETHERNET DRIVER
10331 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10332 L: netdev@vger.kernel.org
10333 S: Maintained
10334 F: drivers/net/ethernet/marvell/mvneta.*
10335
10336 MARVELL MWIFIEX WIRELESS DRIVER
10337 M: Amitkumar Karwar <amitkarwar@gmail.com>
10338 M: Ganapathi Bhat <ganapathi.bhat@nxp.com>
10339 M: Xinming Hu <huxinming820@gmail.com>
10340 L: linux-wireless@vger.kernel.org
10341 S: Maintained
10342 F: drivers/net/wireless/marvell/mwifiex/
10343
10344 MARVELL MWL8K WIRELESS DRIVER
10345 M: Lennert Buytenhek <buytenh@wantstofly.org>
10346 L: linux-wireless@vger.kernel.org
10347 S: Odd Fixes
10348 F: drivers/net/wireless/marvell/mwl8k.c
10349
10350 MARVELL NAND CONTROLLER DRIVER
10351 M: Miquel Raynal <miquel.raynal@bootlin.com>
10352 L: linux-mtd@lists.infradead.org
10353 S: Maintained
10354 F: Documentation/devicetree/bindings/mtd/marvell-nand.txt
10355 F: drivers/mtd/nand/raw/marvell_nand.c
10356
10357 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10358 M: Sunil Goutham <sgoutham@marvell.com>
10359 M: Geetha sowjanya <gakula@marvell.com>
10360 M: Subbaraya Sundeep <sbhatta@marvell.com>
10361 M: hariprasad <hkelam@marvell.com>
10362 L: netdev@vger.kernel.org
10363 S: Supported
10364 F: drivers/net/ethernet/marvell/octeontx2/nic/
10365
10366 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10367 M: Sunil Goutham <sgoutham@marvell.com>
10368 M: Linu Cherian <lcherian@marvell.com>
10369 M: Geetha sowjanya <gakula@marvell.com>
10370 M: Jerin Jacob <jerinj@marvell.com>
10371 L: netdev@vger.kernel.org
10372 S: Supported
10373 F: Documentation/networking/device_drivers/marvell/octeontx2.rst
10374 F: drivers/net/ethernet/marvell/octeontx2/af/
10375
10376 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10377 M: Nicolas Pitre <nico@fluxnic.net>
10378 S: Odd Fixes
10379 F: drivers/mmc/host/mvsdio.*
10380
10381 MARVELL USB MDIO CONTROLLER DRIVER
10382 M: Tobias Waldekranz <tobias@waldekranz.com>
10383 L: netdev@vger.kernel.org
10384 S: Maintained
10385 F: Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10386 F: drivers/net/phy/mdio-mvusb.c
10387
10388 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10389 M: Hu Ziji <huziji@marvell.com>
10390 L: linux-mmc@vger.kernel.org
10391 S: Supported
10392 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10393 F: drivers/mmc/host/sdhci-xenon*
10394
10395 MATROX FRAMEBUFFER DRIVER
10396 L: linux-fbdev@vger.kernel.org
10397 S: Orphan
10398 F: drivers/video/fbdev/matrox/matroxfb_*
10399 F: include/uapi/linux/matroxfb.h
10400
10401 MAX16065 HARDWARE MONITOR DRIVER
10402 M: Guenter Roeck <linux@roeck-us.net>
10403 L: linux-hwmon@vger.kernel.org
10404 S: Maintained
10405 F: Documentation/hwmon/max16065.rst
10406 F: drivers/hwmon/max16065.c
10407
10408 MAX2175 SDR TUNER DRIVER
10409 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
10410 L: linux-media@vger.kernel.org
10411 S: Maintained
10412 T: git git://linuxtv.org/media_tree.git
10413 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
10414 F: Documentation/userspace-api/media/drivers/max2175.rst
10415 F: drivers/media/i2c/max2175*
10416 F: include/uapi/linux/max2175.h
10417
10418 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10419 L: linux-hwmon@vger.kernel.org
10420 S: Orphan
10421 F: Documentation/hwmon/max6650.rst
10422 F: drivers/hwmon/max6650.c
10423
10424 MAX6697 HARDWARE MONITOR DRIVER
10425 M: Guenter Roeck <linux@roeck-us.net>
10426 L: linux-hwmon@vger.kernel.org
10427 S: Maintained
10428 F: Documentation/devicetree/bindings/hwmon/max6697.txt
10429 F: Documentation/hwmon/max6697.rst
10430 F: drivers/hwmon/max6697.c
10431 F: include/linux/platform_data/max6697.h
10432
10433 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10434 M: Peter Rosin <peda@axentia.se>
10435 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10436 S: Maintained
10437 F: Documentation/devicetree/bindings/sound/max9860.txt
10438 F: sound/soc/codecs/max9860.*
10439
10440 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10441 M: Andreas Klinger <ak@it-klinger.de>
10442 L: linux-iio@vger.kernel.org
10443 S: Maintained
10444 F: Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10445 F: drivers/iio/proximity/mb1232.c
10446
10447 MAXIM MAX77650 PMIC MFD DRIVER
10448 M: Bartosz Golaszewski <bgolaszewski@baylibre.com>
10449 L: linux-kernel@vger.kernel.org
10450 S: Maintained
10451 F: Documentation/devicetree/bindings/*/*max77650.yaml
10452 F: Documentation/devicetree/bindings/*/max77650*.yaml
10453 F: drivers/gpio/gpio-max77650.c
10454 F: drivers/input/misc/max77650-onkey.c
10455 F: drivers/leds/leds-max77650.c
10456 F: drivers/mfd/max77650.c
10457 F: drivers/power/supply/max77650-charger.c
10458 F: drivers/regulator/max77650-regulator.c
10459 F: include/linux/mfd/max77650.h
10460
10461 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10462 M: Javier Martinez Canillas <javier@dowhile0.org>
10463 L: linux-kernel@vger.kernel.org
10464 S: Supported
10465 F: Documentation/devicetree/bindings/*/*max77802.txt
10466 F: drivers/regulator/max77802-regulator.c
10467 F: include/dt-bindings/*/*max77802.h
10468
10469 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10470 M: Krzysztof Kozlowski <krzk@kernel.org>
10471 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10472 L: linux-pm@vger.kernel.org
10473 S: Supported
10474 F: drivers/power/supply/max14577_charger.c
10475 F: drivers/power/supply/max77693_charger.c
10476
10477 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10478 M: Chanwoo Choi <cw00.choi@samsung.com>
10479 M: Krzysztof Kozlowski <krzk@kernel.org>
10480 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10481 L: linux-kernel@vger.kernel.org
10482 S: Supported
10483 F: Documentation/devicetree/bindings/*/max77686.txt
10484 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
10485 F: Documentation/devicetree/bindings/mfd/max14577.txt
10486 F: Documentation/devicetree/bindings/mfd/max77693.txt
10487 F: drivers/*/max14577*.c
10488 F: drivers/*/max77686*.c
10489 F: drivers/*/max77693*.c
10490 F: drivers/clk/clk-max77686.c
10491 F: drivers/extcon/extcon-max14577.c
10492 F: drivers/extcon/extcon-max77693.c
10493 F: drivers/rtc/rtc-max77686.c
10494 F: include/linux/mfd/max14577*.h
10495 F: include/linux/mfd/max77686*.h
10496 F: include/linux/mfd/max77693*.h
10497
10498 MAXIRADIO FM RADIO RECEIVER DRIVER
10499 M: Hans Verkuil <hverkuil@xs4all.nl>
10500 L: linux-media@vger.kernel.org
10501 S: Maintained
10502 W: https://linuxtv.org
10503 T: git git://linuxtv.org/media_tree.git
10504 F: drivers/media/radio/radio-maxiradio*
10505
10506 MCAN MMIO DEVICE DRIVER
10507 M: Dan Murphy <dmurphy@ti.com>
10508 M: Sriram Dash <sriram.dash@samsung.com>
10509 L: linux-can@vger.kernel.org
10510 S: Maintained
10511 F: Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10512 F: drivers/net/can/m_can/m_can.c
10513 F: drivers/net/can/m_can/m_can.h
10514 F: drivers/net/can/m_can/m_can_platform.c
10515
10516 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10517 M: Rishi Gupta <gupt21@gmail.com>
10518 L: linux-i2c@vger.kernel.org
10519 L: linux-input@vger.kernel.org
10520 S: Maintained
10521 F: drivers/hid/hid-mcp2221.c
10522
10523 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10524 M: Peter Rosin <peda@axentia.se>
10525 L: linux-iio@vger.kernel.org
10526 S: Maintained
10527 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10528 F: drivers/iio/potentiometer/mcp4018.c
10529 F: drivers/iio/potentiometer/mcp4531.c
10530
10531 MCR20A IEEE-802.15.4 RADIO DRIVER
10532 M: Xue Liu <liuxuenetmail@gmail.com>
10533 L: linux-wpan@vger.kernel.org
10534 S: Maintained
10535 W: https://github.com/xueliu/mcr20a-linux
10536 F: Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10537 F: drivers/net/ieee802154/mcr20a.c
10538 F: drivers/net/ieee802154/mcr20a.h
10539
10540 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10541 M: William Breathitt Gray <vilhelm.gray@gmail.com>
10542 L: linux-iio@vger.kernel.org
10543 S: Maintained
10544 F: drivers/iio/dac/cio-dac.c
10545
10546 MEDIA CONTROLLER FRAMEWORK
10547 M: Sakari Ailus <sakari.ailus@linux.intel.com>
10548 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10549 L: linux-media@vger.kernel.org
10550 S: Supported
10551 W: https://www.linuxtv.org
10552 T: git git://linuxtv.org/media_tree.git
10553 F: drivers/media/mc/
10554 F: include/media/media-*.h
10555 F: include/uapi/linux/media.h
10556
10557 MEDIA DRIVER FOR FREESCALE IMX PXP
10558 M: Philipp Zabel <p.zabel@pengutronix.de>
10559 L: linux-media@vger.kernel.org
10560 S: Maintained
10561 T: git git://linuxtv.org/media_tree.git
10562 F: drivers/media/platform/imx-pxp.[ch]
10563
10564 MEDIA DRIVERS FOR ASCOT2E
10565 M: Sergey Kozlov <serjk@netup.ru>
10566 M: Abylay Ospan <aospan@netup.ru>
10567 L: linux-media@vger.kernel.org
10568 S: Supported
10569 W: https://linuxtv.org
10570 W: http://netup.tv/
10571 T: git git://linuxtv.org/media_tree.git
10572 F: drivers/media/dvb-frontends/ascot2e*
10573
10574 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10575 M: Jasmin Jessich <jasmin@anw.at>
10576 L: linux-media@vger.kernel.org
10577 S: Maintained
10578 W: https://linuxtv.org
10579 T: git git://linuxtv.org/media_tree.git
10580 F: drivers/media/dvb-frontends/cxd2099*
10581
10582 MEDIA DRIVERS FOR CXD2841ER
10583 M: Sergey Kozlov <serjk@netup.ru>
10584 M: Abylay Ospan <aospan@netup.ru>
10585 L: linux-media@vger.kernel.org
10586 S: Supported
10587 W: https://linuxtv.org
10588 W: http://netup.tv/
10589 T: git git://linuxtv.org/media_tree.git
10590 F: drivers/media/dvb-frontends/cxd2841er*
10591
10592 MEDIA DRIVERS FOR CXD2880
10593 M: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10594 L: linux-media@vger.kernel.org
10595 S: Supported
10596 W: http://linuxtv.org/
10597 T: git git://linuxtv.org/media_tree.git
10598 F: drivers/media/dvb-frontends/cxd2880/*
10599 F: drivers/media/spi/cxd2880*
10600
10601 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10602 L: linux-media@vger.kernel.org
10603 S: Orphan
10604 W: https://linuxtv.org
10605 T: git git://linuxtv.org/media_tree.git
10606 F: drivers/media/pci/ddbridge/*
10607
10608 MEDIA DRIVERS FOR FREESCALE IMX
10609 M: Steve Longerbeam <slongerbeam@gmail.com>
10610 M: Philipp Zabel <p.zabel@pengutronix.de>
10611 L: linux-media@vger.kernel.org
10612 S: Maintained
10613 T: git git://linuxtv.org/media_tree.git
10614 F: Documentation/admin-guide/media/imx.rst
10615 F: Documentation/devicetree/bindings/media/imx.txt
10616 F: drivers/staging/media/imx/
10617 F: include/linux/imx-media.h
10618 F: include/media/imx.h
10619
10620 MEDIA DRIVERS FOR FREESCALE IMX7
10621 M: Rui Miguel Silva <rmfrfs@gmail.com>
10622 L: linux-media@vger.kernel.org
10623 S: Maintained
10624 T: git git://linuxtv.org/media_tree.git
10625 F: Documentation/admin-guide/media/imx7.rst
10626 F: Documentation/devicetree/bindings/media/imx7-csi.txt
10627 F: Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10628 F: drivers/staging/media/imx/imx7-media-csi.c
10629 F: drivers/staging/media/imx/imx7-mipi-csis.c
10630
10631 MEDIA DRIVERS FOR HELENE
10632 M: Abylay Ospan <aospan@netup.ru>
10633 L: linux-media@vger.kernel.org
10634 S: Supported
10635 W: https://linuxtv.org
10636 W: http://netup.tv/
10637 T: git git://linuxtv.org/media_tree.git
10638 F: drivers/media/dvb-frontends/helene*
10639
10640 MEDIA DRIVERS FOR HORUS3A
10641 M: Sergey Kozlov <serjk@netup.ru>
10642 M: Abylay Ospan <aospan@netup.ru>
10643 L: linux-media@vger.kernel.org
10644 S: Supported
10645 W: https://linuxtv.org
10646 W: http://netup.tv/
10647 T: git git://linuxtv.org/media_tree.git
10648 F: drivers/media/dvb-frontends/horus3a*
10649
10650 MEDIA DRIVERS FOR LNBH25
10651 M: Sergey Kozlov <serjk@netup.ru>
10652 M: Abylay Ospan <aospan@netup.ru>
10653 L: linux-media@vger.kernel.org
10654 S: Supported
10655 W: https://linuxtv.org
10656 W: http://netup.tv/
10657 T: git git://linuxtv.org/media_tree.git
10658 F: drivers/media/dvb-frontends/lnbh25*
10659
10660 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10661 L: linux-media@vger.kernel.org
10662 S: Orphan
10663 W: https://linuxtv.org
10664 T: git git://linuxtv.org/media_tree.git
10665 F: drivers/media/dvb-frontends/mxl5xx*
10666
10667 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10668 M: Sergey Kozlov <serjk@netup.ru>
10669 M: Abylay Ospan <aospan@netup.ru>
10670 L: linux-media@vger.kernel.org
10671 S: Supported
10672 W: https://linuxtv.org
10673 W: http://netup.tv/
10674 T: git git://linuxtv.org/media_tree.git
10675 F: drivers/media/pci/netup_unidvb/*
10676
10677 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10678 M: Dmitry Osipenko <digetx@gmail.com>
10679 L: linux-media@vger.kernel.org
10680 L: linux-tegra@vger.kernel.org
10681 S: Maintained
10682 T: git git://linuxtv.org/media_tree.git
10683 F: Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10684 F: drivers/staging/media/tegra-vde/
10685
10686 MEDIA DRIVERS FOR RENESAS - CEU
10687 M: Jacopo Mondi <jacopo@jmondi.org>
10688 L: linux-media@vger.kernel.org
10689 L: linux-renesas-soc@vger.kernel.org
10690 S: Supported
10691 T: git git://linuxtv.org/media_tree.git
10692 F: Documentation/devicetree/bindings/media/renesas,ceu.yaml
10693 F: drivers/media/platform/renesas-ceu.c
10694 F: include/media/drv-intf/renesas-ceu.h
10695
10696 MEDIA DRIVERS FOR RENESAS - DRIF
10697 M: Ramesh Shanmugasundaram <rashanmu@gmail.com>
10698 L: linux-media@vger.kernel.org
10699 L: linux-renesas-soc@vger.kernel.org
10700 S: Supported
10701 T: git git://linuxtv.org/media_tree.git
10702 F: Documentation/devicetree/bindings/media/renesas,drif.txt
10703 F: drivers/media/platform/rcar_drif.c
10704
10705 MEDIA DRIVERS FOR RENESAS - FCP
10706 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10707 L: linux-media@vger.kernel.org
10708 L: linux-renesas-soc@vger.kernel.org
10709 S: Supported
10710 T: git git://linuxtv.org/media_tree.git
10711 F: Documentation/devicetree/bindings/media/renesas,fcp.txt
10712 F: drivers/media/platform/rcar-fcp.c
10713 F: include/media/rcar-fcp.h
10714
10715 MEDIA DRIVERS FOR RENESAS - FDP1
10716 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10717 L: linux-media@vger.kernel.org
10718 L: linux-renesas-soc@vger.kernel.org
10719 S: Supported
10720 T: git git://linuxtv.org/media_tree.git
10721 F: Documentation/devicetree/bindings/media/renesas,fdp1.txt
10722 F: drivers/media/platform/rcar_fdp1.c
10723
10724 MEDIA DRIVERS FOR RENESAS - VIN
10725 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
10726 L: linux-media@vger.kernel.org
10727 L: linux-renesas-soc@vger.kernel.org
10728 S: Supported
10729 T: git git://linuxtv.org/media_tree.git
10730 F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
10731 F: Documentation/devicetree/bindings/media/renesas,vin.yaml
10732 F: drivers/media/platform/rcar-vin/
10733
10734 MEDIA DRIVERS FOR RENESAS - VSP1
10735 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10736 M: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10737 L: linux-media@vger.kernel.org
10738 L: linux-renesas-soc@vger.kernel.org
10739 S: Supported
10740 T: git git://linuxtv.org/media_tree.git
10741 F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
10742 F: drivers/media/platform/vsp1/
10743
10744 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10745 L: linux-media@vger.kernel.org
10746 S: Orphan
10747 W: https://linuxtv.org
10748 T: git git://linuxtv.org/media_tree.git
10749 F: drivers/media/dvb-frontends/stv0910*
10750
10751 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10752 L: linux-media@vger.kernel.org
10753 S: Orphan
10754 W: https://linuxtv.org
10755 T: git git://linuxtv.org/media_tree.git
10756 F: drivers/media/dvb-frontends/stv6111*
10757
10758 MEDIA DRIVERS FOR STM32 - DCMI
10759 M: Hugues Fruchet <hugues.fruchet@st.com>
10760 L: linux-media@vger.kernel.org
10761 S: Supported
10762 T: git git://linuxtv.org/media_tree.git
10763 F: Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10764 F: drivers/media/platform/stm32/stm32-dcmi.c
10765
10766 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10767 M: Mauro Carvalho Chehab <mchehab@kernel.org>
10768 L: linux-media@vger.kernel.org
10769 S: Maintained
10770 W: https://linuxtv.org
10771 Q: http://patchwork.kernel.org/project/linux-media/list/
10772 T: git git://linuxtv.org/media_tree.git
10773 F: Documentation/admin-guide/media/
10774 F: Documentation/devicetree/bindings/media/
10775 F: Documentation/driver-api/media/
10776 F: Documentation/userspace-api/media/
10777 F: drivers/media/
10778 F: drivers/staging/media/
10779 F: include/linux/platform_data/media/
10780 F: include/media/
10781 F: include/uapi/linux/dvb/
10782 F: include/uapi/linux/ivtv*
10783 F: include/uapi/linux/media.h
10784 F: include/uapi/linux/meye.h
10785 F: include/uapi/linux/uvcvideo.h
10786 F: include/uapi/linux/v4l2-*
10787 F: include/uapi/linux/videodev2.h
10788
10789 MEDIATEK BLUETOOTH DRIVER
10790 M: Sean Wang <sean.wang@mediatek.com>
10791 L: linux-bluetooth@vger.kernel.org
10792 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10793 S: Maintained
10794 F: Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10795 F: drivers/bluetooth/btmtkuart.c
10796
10797 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10798 M: Sean Wang <sean.wang@mediatek.com>
10799 L: linux-pm@vger.kernel.org
10800 S: Maintained
10801 F: Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10802 F: drivers/power/reset/mt6323-poweroff.c
10803
10804 MEDIATEK CIR DRIVER
10805 M: Sean Wang <sean.wang@mediatek.com>
10806 S: Maintained
10807 F: drivers/media/rc/mtk-cir.c
10808
10809 MEDIATEK DMA DRIVER
10810 M: Sean Wang <sean.wang@mediatek.com>
10811 L: dmaengine@vger.kernel.org
10812 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10813 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10814 S: Maintained
10815 F: Documentation/devicetree/bindings/dma/mtk-*
10816 F: drivers/dma/mediatek/
10817
10818 MEDIATEK ETHERNET DRIVER
10819 M: Felix Fietkau <nbd@openwrt.org>
10820 M: John Crispin <john@phrozen.org>
10821 M: Sean Wang <sean.wang@mediatek.com>
10822 M: Mark Lee <Mark-MC.Lee@mediatek.com>
10823 L: netdev@vger.kernel.org
10824 S: Maintained
10825 F: drivers/net/ethernet/mediatek/
10826
10827 MEDIATEK I2C CONTROLLER DRIVER
10828 M: Qii Wang <qii.wang@mediatek.com>
10829 L: linux-i2c@vger.kernel.org
10830 S: Maintained
10831 F: Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
10832 F: drivers/i2c/busses/i2c-mt65xx.c
10833
10834 MEDIATEK JPEG DRIVER
10835 M: Rick Chang <rick.chang@mediatek.com>
10836 M: Bin Liu <bin.liu@mediatek.com>
10837 S: Supported
10838 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10839 F: drivers/media/platform/mtk-jpeg/
10840
10841 MEDIATEK MDP DRIVER
10842 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10843 M: Houlong Wei <houlong.wei@mediatek.com>
10844 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10845 S: Supported
10846 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
10847 F: drivers/media/platform/mtk-mdp/
10848 F: drivers/media/platform/mtk-vpu/
10849
10850 MEDIATEK MEDIA DRIVER
10851 M: Tiffany Lin <tiffany.lin@mediatek.com>
10852 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10853 S: Supported
10854 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10855 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
10856 F: drivers/media/platform/mtk-vcodec/
10857 F: drivers/media/platform/mtk-vpu/
10858
10859 MEDIATEK MMC/SD/SDIO DRIVER
10860 M: Chaotian Jing <chaotian.jing@mediatek.com>
10861 S: Maintained
10862 F: Documentation/devicetree/bindings/mmc/mtk-sd.txt
10863 F: drivers/mmc/host/mtk-sd.c
10864
10865 MEDIATEK MT76 WIRELESS LAN DRIVER
10866 M: Felix Fietkau <nbd@nbd.name>
10867 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10868 R: Ryder Lee <ryder.lee@mediatek.com>
10869 L: linux-wireless@vger.kernel.org
10870 S: Maintained
10871 F: drivers/net/wireless/mediatek/mt76/
10872
10873 MEDIATEK MT7601U WIRELESS LAN DRIVER
10874 M: Jakub Kicinski <kubakici@wp.pl>
10875 L: linux-wireless@vger.kernel.org
10876 S: Maintained
10877 F: drivers/net/wireless/mediatek/mt7601u/
10878
10879 MEDIATEK MT7621/28/88 I2C DRIVER
10880 M: Stefan Roese <sr@denx.de>
10881 L: linux-i2c@vger.kernel.org
10882 S: Maintained
10883 F: Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10884 F: drivers/i2c/busses/i2c-mt7621.c
10885
10886 MEDIATEK NAND CONTROLLER DRIVER
10887 L: linux-mtd@lists.infradead.org
10888 S: Orphan
10889 F: Documentation/devicetree/bindings/mtd/mtk-nand.txt
10890 F: drivers/mtd/nand/raw/mtk_*
10891
10892 MEDIATEK PMIC LED DRIVER
10893 M: Sean Wang <sean.wang@mediatek.com>
10894 S: Maintained
10895 F: Documentation/devicetree/bindings/leds/leds-mt6323.txt
10896 F: drivers/leds/leds-mt6323.c
10897
10898 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10899 M: Sean Wang <sean.wang@mediatek.com>
10900 S: Maintained
10901 F: drivers/char/hw_random/mtk-rng.c
10902
10903 MEDIATEK SWITCH DRIVER
10904 M: Sean Wang <sean.wang@mediatek.com>
10905 L: netdev@vger.kernel.org
10906 S: Maintained
10907 F: drivers/net/dsa/mt7530.*
10908 F: net/dsa/tag_mtk.c
10909
10910 MEDIATEK USB3 DRD IP DRIVER
10911 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
10912 L: linux-usb@vger.kernel.org (moderated for non-subscribers)
10913 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10914 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10915 S: Maintained
10916 F: drivers/usb/mtu3/
10917
10918 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10919 M: Peter Senna Tschudin <peter.senna@gmail.com>
10920 M: Martin Donnelly <martin.donnelly@ge.com>
10921 M: Martyn Welch <martyn.welch@collabora.co.uk>
10922 S: Maintained
10923 F: Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10924 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10925
10926 MEGARAID SCSI/SAS DRIVERS
10927 M: Kashyap Desai <kashyap.desai@broadcom.com>
10928 M: Sumit Saxena <sumit.saxena@broadcom.com>
10929 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10930 L: megaraidlinux.pdl@broadcom.com
10931 L: linux-scsi@vger.kernel.org
10932 S: Maintained
10933 W: http://www.avagotech.com/support/
10934 F: Documentation/scsi/megaraid.rst
10935 F: drivers/scsi/megaraid.*
10936 F: drivers/scsi/megaraid/
10937
10938 MELEXIS MLX90614 DRIVER
10939 M: Crt Mori <cmo@melexis.com>
10940 L: linux-iio@vger.kernel.org
10941 S: Supported
10942 W: http://www.melexis.com
10943 F: drivers/iio/temperature/mlx90614.c
10944
10945 MELEXIS MLX90632 DRIVER
10946 M: Crt Mori <cmo@melexis.com>
10947 L: linux-iio@vger.kernel.org
10948 S: Supported
10949 W: http://www.melexis.com
10950 F: drivers/iio/temperature/mlx90632.c
10951
10952 MELFAS MIP4 TOUCHSCREEN DRIVER
10953 M: Sangwon Jee <jeesw@melfas.com>
10954 S: Supported
10955 W: http://www.melfas.com
10956 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10957 F: drivers/input/touchscreen/melfas_mip4.c
10958
10959 MELLANOX ETHERNET DRIVER (mlx4_en)
10960 M: Tariq Toukan <tariqt@mellanox.com>
10961 L: netdev@vger.kernel.org
10962 S: Supported
10963 W: http://www.mellanox.com
10964 Q: http://patchwork.ozlabs.org/project/netdev/list/
10965 F: drivers/net/ethernet/mellanox/mlx4/en_*
10966
10967 MELLANOX ETHERNET DRIVER (mlx5e)
10968 M: Saeed Mahameed <saeedm@mellanox.com>
10969 L: netdev@vger.kernel.org
10970 S: Supported
10971 W: http://www.mellanox.com
10972 Q: http://patchwork.ozlabs.org/project/netdev/list/
10973 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
10974
10975 MELLANOX ETHERNET INNOVA DRIVERS
10976 R: Boris Pismenny <borisp@mellanox.com>
10977 L: netdev@vger.kernel.org
10978 S: Supported
10979 W: http://www.mellanox.com
10980 Q: http://patchwork.ozlabs.org/project/netdev/list/
10981 F: drivers/net/ethernet/mellanox/mlx5/core/accel/*
10982 F: drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10983 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10984 F: include/linux/mlx5/mlx5_ifc_fpga.h
10985
10986 MELLANOX ETHERNET SWITCH DRIVERS
10987 M: Jiri Pirko <jiri@mellanox.com>
10988 M: Ido Schimmel <idosch@mellanox.com>
10989 L: netdev@vger.kernel.org
10990 S: Supported
10991 W: http://www.mellanox.com
10992 Q: http://patchwork.ozlabs.org/project/netdev/list/
10993 F: drivers/net/ethernet/mellanox/mlxsw/
10994 F: tools/testing/selftests/drivers/net/mlxsw/
10995
10996 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10997 M: mlxsw@mellanox.com
10998 L: netdev@vger.kernel.org
10999 S: Supported
11000 W: http://www.mellanox.com
11001 Q: http://patchwork.ozlabs.org/project/netdev/list/
11002 F: drivers/net/ethernet/mellanox/mlxfw/
11003
11004 MELLANOX HARDWARE PLATFORM SUPPORT
11005 M: Andy Shevchenko <andy@infradead.org>
11006 M: Darren Hart <dvhart@infradead.org>
11007 M: Vadim Pasternak <vadimp@mellanox.com>
11008 L: platform-driver-x86@vger.kernel.org
11009 S: Supported
11010 F: Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11011 F: drivers/platform/mellanox/
11012 F: include/linux/platform_data/mlxreg.h
11013
11014 MELLANOX MLX4 core VPI driver
11015 M: Tariq Toukan <tariqt@mellanox.com>
11016 L: netdev@vger.kernel.org
11017 L: linux-rdma@vger.kernel.org
11018 S: Supported
11019 W: http://www.mellanox.com
11020 Q: http://patchwork.ozlabs.org/project/netdev/list/
11021 F: drivers/net/ethernet/mellanox/mlx4/
11022 F: include/linux/mlx4/
11023
11024 MELLANOX MLX4 IB driver
11025 M: Yishai Hadas <yishaih@mellanox.com>
11026 L: linux-rdma@vger.kernel.org
11027 S: Supported
11028 W: http://www.mellanox.com
11029 Q: http://patchwork.kernel.org/project/linux-rdma/list/
11030 F: drivers/infiniband/hw/mlx4/
11031 F: include/linux/mlx4/
11032 F: include/uapi/rdma/mlx4-abi.h
11033
11034 MELLANOX MLX5 core VPI driver
11035 M: Saeed Mahameed <saeedm@mellanox.com>
11036 M: Leon Romanovsky <leonro@mellanox.com>
11037 L: netdev@vger.kernel.org
11038 L: linux-rdma@vger.kernel.org
11039 S: Supported
11040 W: http://www.mellanox.com
11041 Q: http://patchwork.ozlabs.org/project/netdev/list/
11042 F: Documentation/networking/device_drivers/mellanox/
11043 F: drivers/net/ethernet/mellanox/mlx5/core/
11044 F: include/linux/mlx5/
11045
11046 MELLANOX MLX5 IB driver
11047 M: Leon Romanovsky <leonro@mellanox.com>
11048 L: linux-rdma@vger.kernel.org
11049 S: Supported
11050 W: http://www.mellanox.com
11051 Q: http://patchwork.kernel.org/project/linux-rdma/list/
11052 F: drivers/infiniband/hw/mlx5/
11053 F: include/linux/mlx5/
11054 F: include/uapi/rdma/mlx5-abi.h
11055
11056 MELLANOX MLXCPLD I2C AND MUX DRIVER
11057 M: Vadim Pasternak <vadimp@mellanox.com>
11058 M: Michael Shych <michaelsh@mellanox.com>
11059 L: linux-i2c@vger.kernel.org
11060 S: Supported
11061 F: Documentation/i2c/busses/i2c-mlxcpld.rst
11062 F: drivers/i2c/busses/i2c-mlxcpld.c
11063 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
11064
11065 MELLANOX MLXCPLD LED DRIVER
11066 M: Vadim Pasternak <vadimp@mellanox.com>
11067 L: linux-leds@vger.kernel.org
11068 S: Supported
11069 F: Documentation/leds/leds-mlxcpld.rst
11070 F: drivers/leds/leds-mlxcpld.c
11071 F: drivers/leds/leds-mlxreg.c
11072
11073 MELLANOX PLATFORM DRIVER
11074 M: Vadim Pasternak <vadimp@mellanox.com>
11075 L: platform-driver-x86@vger.kernel.org
11076 S: Supported
11077 F: drivers/platform/x86/mlx-platform.c
11078
11079 MEMBARRIER SUPPORT
11080 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11081 M: "Paul E. McKenney" <paulmck@kernel.org>
11082 L: linux-kernel@vger.kernel.org
11083 S: Supported
11084 F: arch/powerpc/include/asm/membarrier.h
11085 F: include/uapi/linux/membarrier.h
11086 F: kernel/sched/membarrier.c
11087
11088 MEMBLOCK
11089 M: Mike Rapoport <rppt@linux.ibm.com>
11090 L: linux-mm@kvack.org
11091 S: Maintained
11092 F: Documentation/core-api/boot-time-mm.rst
11093 F: include/linux/memblock.h
11094 F: mm/memblock.c
11095
11096 MEMORY MANAGEMENT
11097 M: Andrew Morton <akpm@linux-foundation.org>
11098 L: linux-mm@kvack.org
11099 S: Maintained
11100 W: http://www.linux-mm.org
11101 T: quilt https://ozlabs.org/~akpm/mmotm/
11102 T: quilt https://ozlabs.org/~akpm/mmots/
11103 T: git git://github.com/hnaz/linux-mm.git
11104 F: include/linux/gfp.h
11105 F: include/linux/memory_hotplug.h
11106 F: include/linux/mm.h
11107 F: include/linux/mmzone.h
11108 F: include/linux/vmalloc.h
11109 F: mm/
11110
11111 MEMORY TECHNOLOGY DEVICES (MTD)
11112 M: Miquel Raynal <miquel.raynal@bootlin.com>
11113 M: Richard Weinberger <richard@nod.at>
11114 M: Vignesh Raghavendra <vigneshr@ti.com>
11115 L: linux-mtd@lists.infradead.org
11116 S: Maintained
11117 W: http://www.linux-mtd.infradead.org/
11118 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
11119 C: irc://irc.oftc.net/mtd
11120 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11121 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11122 F: Documentation/devicetree/bindings/mtd/
11123 F: drivers/mtd/
11124 F: include/linux/mtd/
11125 F: include/uapi/mtd/
11126
11127 MEN A21 WATCHDOG DRIVER
11128 M: Johannes Thumshirn <morbidrsa@gmail.com>
11129 L: linux-watchdog@vger.kernel.org
11130 S: Maintained
11131 F: drivers/watchdog/mena21_wdt.c
11132
11133 MEN CHAMELEON BUS (mcb)
11134 M: Johannes Thumshirn <morbidrsa@gmail.com>
11135 S: Maintained
11136 F: Documentation/driver-api/men-chameleon-bus.rst
11137 F: drivers/mcb/
11138 F: include/linux/mcb.h
11139
11140 MEN F21BMC (Board Management Controller)
11141 M: Andreas Werner <andreas.werner@men.de>
11142 S: Supported
11143 F: Documentation/hwmon/menf21bmc.rst
11144 F: drivers/hwmon/menf21bmc_hwmon.c
11145 F: drivers/leds/leds-menf21bmc.c
11146 F: drivers/mfd/menf21bmc.c
11147 F: drivers/watchdog/menf21bmc_wdt.c
11148
11149 MEN Z069 WATCHDOG DRIVER
11150 M: Johannes Thumshirn <jth@kernel.org>
11151 L: linux-watchdog@vger.kernel.org
11152 S: Maintained
11153 F: drivers/watchdog/menz69_wdt.c
11154
11155 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11156 M: Neil Armstrong <narmstrong@baylibre.com>
11157 L: linux-media@vger.kernel.org
11158 L: linux-amlogic@lists.infradead.org
11159 S: Supported
11160 W: http://linux-meson.com/
11161 T: git git://linuxtv.org/media_tree.git
11162 F: Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11163 F: drivers/media/platform/meson/ao-cec-g12a.c
11164 F: drivers/media/platform/meson/ao-cec.c
11165
11166 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11167 M: Liang Yang <liang.yang@amlogic.com>
11168 L: linux-mtd@lists.infradead.org
11169 S: Maintained
11170 F: Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11171 F: drivers/mtd/nand/raw/meson_*
11172
11173 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11174 M: Maxime Jourdan <mjourdan@baylibre.com>
11175 M: Neil Armstrong <narmstrong@baylibre.com>
11176 L: linux-media@vger.kernel.org
11177 L: linux-amlogic@lists.infradead.org
11178 S: Supported
11179 T: git git://linuxtv.org/media_tree.git
11180 F: Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11181 F: drivers/staging/media/meson/vdec/
11182
11183 METHODE UDPU SUPPORT
11184 M: Vladimir Vid <vladimir.vid@sartura.hr>
11185 S: Maintained
11186 F: arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11187
11188 MHI BUS
11189 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11190 M: Hemant Kumar <hemantk@codeaurora.org>
11191 L: linux-arm-msm@vger.kernel.org
11192 S: Maintained
11193 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11194 F: Documentation/mhi/
11195 F: drivers/bus/mhi/
11196 F: include/linux/mhi.h
11197
11198 MICROBLAZE ARCHITECTURE
11199 M: Michal Simek <monstr@monstr.eu>
11200 S: Supported
11201 W: http://www.monstr.eu/fdt/
11202 T: git git://git.monstr.eu/linux-2.6-microblaze.git
11203 F: arch/microblaze/
11204
11205 MICROCHIP AT91 SERIAL DRIVER
11206 M: Richard Genoud <richard.genoud@gmail.com>
11207 S: Maintained
11208 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
11209 F: drivers/tty/serial/atmel_serial.c
11210 F: drivers/tty/serial/atmel_serial.h
11211
11212 MICROCHIP AT91 USART MFD DRIVER
11213 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
11214 L: linux-kernel@vger.kernel.org
11215 S: Supported
11216 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
11217 F: drivers/mfd/at91-usart.c
11218 F: include/dt-bindings/mfd/at91-usart.h
11219
11220 MICROCHIP AT91 USART SPI DRIVER
11221 M: Radu Pirea <radu_nicolae.pirea@upb.ro>
11222 L: linux-spi@vger.kernel.org
11223 S: Supported
11224 F: Documentation/devicetree/bindings/mfd/atmel-usart.txt
11225 F: drivers/spi/spi-at91-usart.c
11226
11227 MICROCHIP AUDIO ASOC DRIVERS
11228 M: Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11229 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11230 S: Supported
11231 F: sound/soc/atmel
11232
11233 MICROCHIP DMA DRIVER
11234 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11235 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11236 L: dmaengine@vger.kernel.org
11237 S: Supported
11238 F: Documentation/devicetree/bindings/dma/atmel-dma.txt
11239 F: drivers/dma/at_hdmac.c
11240 F: drivers/dma/at_hdmac_regs.h
11241 F: include/dt-bindings/dma/at91.h
11242 F: include/linux/platform_data/dma-atmel.h
11243
11244 MICROCHIP ECC DRIVER
11245 M: Tudor Ambarus <tudor.ambarus@microchip.com>
11246 L: linux-crypto@vger.kernel.org
11247 S: Maintained
11248 F: drivers/crypto/atmel-ecc.*
11249
11250 MICROCHIP I2C DRIVER
11251 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11252 L: linux-i2c@vger.kernel.org
11253 S: Supported
11254 F: drivers/i2c/busses/i2c-at91-*.c
11255 F: drivers/i2c/busses/i2c-at91.h
11256
11257 MICROCHIP ISC DRIVER
11258 M: Eugen Hristev <eugen.hristev@microchip.com>
11259 L: linux-media@vger.kernel.org
11260 S: Supported
11261 F: Documentation/devicetree/bindings/media/atmel-isc.txt
11262 F: drivers/media/platform/atmel/atmel-isc-base.c
11263 F: drivers/media/platform/atmel/atmel-isc-regs.h
11264 F: drivers/media/platform/atmel/atmel-isc.h
11265 F: drivers/media/platform/atmel/atmel-sama5d2-isc.c
11266 F: include/linux/atmel-isc-media.h
11267
11268 MICROCHIP ISI DRIVER
11269 M: Eugen Hristev <eugen.hristev@microchip.com>
11270 L: linux-media@vger.kernel.org
11271 S: Supported
11272 F: drivers/media/platform/atmel/atmel-isi.c
11273 F: drivers/media/platform/atmel/atmel-isi.h
11274
11275 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11276 M: Woojung Huh <woojung.huh@microchip.com>
11277 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11278 L: netdev@vger.kernel.org
11279 S: Maintained
11280 F: Documentation/devicetree/bindings/net/dsa/ksz.txt
11281 F: drivers/net/dsa/microchip/*
11282 F: include/linux/platform_data/microchip-ksz.h
11283 F: net/dsa/tag_ksz.c
11284
11285 MICROCHIP LAN743X ETHERNET DRIVER
11286 M: Bryan Whitehead <bryan.whitehead@microchip.com>
11287 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11288 L: netdev@vger.kernel.org
11289 S: Maintained
11290 F: drivers/net/ethernet/microchip/lan743x_*
11291
11292 MICROCHIP LCDFB DRIVER
11293 M: Nicolas Ferre <nicolas.ferre@microchip.com>
11294 L: linux-fbdev@vger.kernel.org
11295 S: Maintained
11296 F: drivers/video/fbdev/atmel_lcdfb.c
11297 F: include/video/atmel_lcdc.h
11298
11299 MICROCHIP MCP16502 PMIC DRIVER
11300 M: Andrei Stefanescu <andrei.stefanescu@microchip.com>
11301 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11302 S: Maintained
11303 F: Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11304 F: drivers/regulator/mcp16502.c
11305
11306 MICROCHIP MCP3911 ADC DRIVER
11307 M: Marcus Folkesson <marcus.folkesson@gmail.com>
11308 M: Kent Gustavsson <kent@minoris.se>
11309 L: linux-iio@vger.kernel.org
11310 S: Supported
11311 F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11312 F: drivers/iio/adc/mcp3911.c
11313
11314 MICROCHIP MMC/SD/SDIO MCI DRIVER
11315 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11316 S: Maintained
11317 F: drivers/mmc/host/atmel-mci.c
11318
11319 MICROCHIP NAND DRIVER
11320 M: Tudor Ambarus <tudor.ambarus@microchip.com>
11321 L: linux-mtd@lists.infradead.org
11322 S: Supported
11323 F: Documentation/devicetree/bindings/mtd/atmel-nand.txt
11324 F: drivers/mtd/nand/raw/atmel/*
11325
11326 MICROCHIP PWM DRIVER
11327 M: Claudiu Beznea <claudiu.beznea@microchip.com>
11328 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11329 L: linux-pwm@vger.kernel.org
11330 S: Supported
11331 F: Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11332 F: drivers/pwm/pwm-atmel.c
11333
11334 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11335 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11336 M: Eugen Hristev <eugen.hristev@microchip.com>
11337 L: linux-iio@vger.kernel.org
11338 S: Supported
11339 F: Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11340 F: drivers/iio/adc/at91-sama5d2_adc.c
11341 F: include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11342
11343 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11344 M: Nicolas Ferre <nicolas.ferre@microchip.com>
11345 S: Supported
11346 F: drivers/power/reset/at91-sama5d2_shdwc.c
11347
11348 MICROCHIP SPI DRIVER
11349 M: Nicolas Ferre <nicolas.ferre@microchip.com>
11350 S: Supported
11351 F: drivers/spi/spi-atmel.*
11352
11353 MICROCHIP SSC DRIVER
11354 M: Nicolas Ferre <nicolas.ferre@microchip.com>
11355 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11356 S: Supported
11357 F: drivers/misc/atmel-ssc.c
11358 F: include/linux/atmel-ssc.h
11359
11360 MICROCHIP USB251XB DRIVER
11361 M: Richard Leitner <richard.leitner@skidata.com>
11362 L: linux-usb@vger.kernel.org
11363 S: Maintained
11364 F: Documentation/devicetree/bindings/usb/usb251xb.txt
11365 F: drivers/usb/misc/usb251xb.c
11366
11367 MICROCHIP USBA UDC DRIVER
11368 M: Cristian Birsan <cristian.birsan@microchip.com>
11369 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11370 S: Supported
11371 F: drivers/usb/gadget/udc/atmel_usba_udc.*
11372
11373 MICROCHIP XDMA DRIVER
11374 M: Ludovic Desroches <ludovic.desroches@microchip.com>
11375 L: linux-arm-kernel@lists.infradead.org
11376 L: dmaengine@vger.kernel.org
11377 S: Supported
11378 F: drivers/dma/at_xdmac.c
11379
11380 MICROSEMI ETHERNET SWITCH DRIVER
11381 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
11382 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11383 L: netdev@vger.kernel.org
11384 S: Supported
11385 F: drivers/net/ethernet/mscc/
11386 F: include/soc/mscc/ocelot*
11387
11388 MICROSEMI MIPS SOCS
11389 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
11390 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11391 L: linux-mips@vger.kernel.org
11392 S: Supported
11393 F: Documentation/devicetree/bindings/mips/mscc.txt
11394 F: arch/mips/boot/dts/mscc/
11395 F: arch/mips/configs/generic/board-ocelot.config
11396 F: arch/mips/generic/board-ocelot.c
11397
11398 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11399 M: Don Brace <don.brace@microsemi.com>
11400 L: esc.storagedev@microsemi.com
11401 L: linux-scsi@vger.kernel.org
11402 S: Supported
11403 F: Documentation/scsi/smartpqi.rst
11404 F: drivers/scsi/smartpqi/Kconfig
11405 F: drivers/scsi/smartpqi/Makefile
11406 F: drivers/scsi/smartpqi/smartpqi*.[ch]
11407 F: include/linux/cciss*.h
11408 F: include/uapi/linux/cciss*.h
11409
11410 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11411 M: Chen Yu <yu.c.chen@intel.com>
11412 L: platform-driver-x86@vger.kernel.org
11413 S: Supported
11414 F: drivers/platform/x86/surfacepro3_button.c
11415
11416 MICROTEK X6 SCANNER
11417 M: Oliver Neukum <oliver@neukum.org>
11418 S: Maintained
11419 F: drivers/usb/image/microtek.*
11420
11421 MIPS
11422 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11423 L: linux-mips@vger.kernel.org
11424 S: Maintained
11425 W: http://www.linux-mips.org/
11426 Q: https://patchwork.kernel.org/project/linux-mips/list/
11427 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11428 F: Documentation/devicetree/bindings/mips/
11429 F: Documentation/mips/
11430 F: arch/mips/
11431 F: drivers/platform/mips/
11432
11433 MIPS BOSTON DEVELOPMENT BOARD
11434 M: Paul Burton <paulburton@kernel.org>
11435 L: linux-mips@vger.kernel.org
11436 S: Maintained
11437 F: Documentation/devicetree/bindings/clock/img,boston-clock.txt
11438 F: arch/mips/boot/dts/img/boston.dts
11439 F: arch/mips/configs/generic/board-boston.config
11440 F: drivers/clk/imgtec/clk-boston.c
11441 F: include/dt-bindings/clock/boston-clock.h
11442
11443 MIPS GENERIC PLATFORM
11444 M: Paul Burton <paulburton@kernel.org>
11445 L: linux-mips@vger.kernel.org
11446 S: Supported
11447 F: Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11448 F: arch/mips/generic/
11449 F: arch/mips/tools/generic-board-config.sh
11450
11451 MIPS RINT INSTRUCTION EMULATION
11452 M: Aleksandar Markovic <aleksandar.markovic@mips.com>
11453 L: linux-mips@vger.kernel.org
11454 S: Supported
11455 F: arch/mips/math-emu/dp_rint.c
11456 F: arch/mips/math-emu/sp_rint.c
11457
11458 MIPS/LOONGSON1 ARCHITECTURE
11459 M: Keguang Zhang <keguang.zhang@gmail.com>
11460 L: linux-mips@vger.kernel.org
11461 S: Maintained
11462 F: arch/mips/include/asm/mach-loongson32/
11463 F: arch/mips/loongson32/
11464 F: drivers/*/*/*loongson1*
11465 F: drivers/*/*loongson1*
11466
11467 MIPS/LOONGSON2EF ARCHITECTURE
11468 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
11469 L: linux-mips@vger.kernel.org
11470 S: Maintained
11471 F: arch/mips/include/asm/mach-loongson2ef/
11472 F: arch/mips/loongson2ef/
11473 F: drivers/*/*/*loongson2*
11474 F: drivers/*/*loongson2*
11475
11476 MIPS/LOONGSON64 ARCHITECTURE
11477 M: Huacai Chen <chenhc@lemote.com>
11478 M: Jiaxun Yang <jiaxun.yang@flygoat.com>
11479 L: linux-mips@vger.kernel.org
11480 S: Maintained
11481 F: arch/mips/include/asm/mach-loongson64/
11482 F: arch/mips/loongson64/
11483 F: drivers/*/*/*loongson3*
11484 F: drivers/*/*loongson3*
11485 F: drivers/irqchip/irq-loongson*
11486 F: drivers/platform/mips/cpu_hwmon.c
11487
11488 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11489 M: Hans Verkuil <hverkuil@xs4all.nl>
11490 L: linux-media@vger.kernel.org
11491 S: Odd Fixes
11492 W: https://linuxtv.org
11493 T: git git://linuxtv.org/media_tree.git
11494 F: drivers/media/radio/radio-miropcm20*
11495
11496 MMP SUPPORT
11497 R: Lubomir Rintel <lkundrak@v3.sk>
11498 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11499 S: Odd Fixes
11500 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11501 F: arch/arm/boot/dts/mmp*
11502 F: arch/arm/mach-mmp/
11503 F: linux/soc/mmp/
11504
11505 MMP USB PHY DRIVERS
11506 R: Lubomir Rintel <lkundrak@v3.sk>
11507 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11508 S: Maintained
11509 F: drivers/phy/marvell/phy-mmp3-usb.c
11510 F: drivers/phy/marvell/phy-pxa-usb.c
11511
11512 MMU GATHER AND TLB INVALIDATION
11513 M: Will Deacon <will@kernel.org>
11514 M: "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11515 M: Andrew Morton <akpm@linux-foundation.org>
11516 M: Nick Piggin <npiggin@gmail.com>
11517 M: Peter Zijlstra <peterz@infradead.org>
11518 L: linux-arch@vger.kernel.org
11519 L: linux-mm@kvack.org
11520 S: Maintained
11521 F: arch/*/include/asm/tlb.h
11522 F: include/asm-generic/tlb.h
11523 F: mm/mmu_gather.c
11524
11525 MN88472 MEDIA DRIVER
11526 M: Antti Palosaari <crope@iki.fi>
11527 L: linux-media@vger.kernel.org
11528 S: Maintained
11529 W: https://linuxtv.org
11530 W: http://palosaari.fi/linux/
11531 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11532 F: drivers/media/dvb-frontends/mn88472*
11533
11534 MN88473 MEDIA DRIVER
11535 M: Antti Palosaari <crope@iki.fi>
11536 L: linux-media@vger.kernel.org
11537 S: Maintained
11538 W: https://linuxtv.org
11539 W: http://palosaari.fi/linux/
11540 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11541 F: drivers/media/dvb-frontends/mn88473*
11542
11543 MODULE SUPPORT
11544 M: Jessica Yu <jeyu@kernel.org>
11545 S: Maintained
11546 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11547 F: include/linux/module.h
11548 F: kernel/module.c
11549
11550 MONOLITHIC POWER SYSTEM PMIC DRIVER
11551 M: Saravanan Sekar <sravanhome@gmail.com>
11552 S: Maintained
11553 F: Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11554 F: Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11555 F: drivers/iio/adc/mp2629_adc.c
11556 F: drivers/mfd/mp2629.c
11557 F: drivers/power/supply/mp2629_charger.c
11558 F: drivers/regulator/mp5416.c
11559 F: drivers/regulator/mpq7920.c
11560 F: drivers/regulator/mpq7920.h
11561 F: include/linux/mfd/mp2629.h
11562
11563 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11564 S: Orphan
11565 W: http://popies.net/meye/
11566 F: Documentation/userspace-api/media/drivers/meye*
11567 F: drivers/media/pci/meye/
11568 F: include/uapi/linux/meye.h
11569
11570 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11571 M: Jiri Slaby <jirislaby@gmail.com>
11572 S: Maintained
11573 F: Documentation/driver-api/serial/moxa-smartio.rst
11574 F: drivers/tty/mxser.*
11575
11576 MR800 AVERMEDIA USB FM RADIO DRIVER
11577 M: Alexey Klimov <klimov.linux@gmail.com>
11578 L: linux-media@vger.kernel.org
11579 S: Maintained
11580 T: git git://linuxtv.org/media_tree.git
11581 F: drivers/media/radio/radio-mr800.c
11582
11583 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11584 M: Alan Ott <alan@signal11.us>
11585 L: linux-wpan@vger.kernel.org
11586 S: Maintained
11587 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11588 F: drivers/net/ieee802154/mrf24j40.c
11589
11590 MSI LAPTOP SUPPORT
11591 M: "Lee, Chun-Yi" <jlee@suse.com>
11592 L: platform-driver-x86@vger.kernel.org
11593 S: Maintained
11594 F: drivers/platform/x86/msi-laptop.c
11595
11596 MSI WMI SUPPORT
11597 L: platform-driver-x86@vger.kernel.org
11598 S: Orphan
11599 F: drivers/platform/x86/msi-wmi.c
11600
11601 MSI001 MEDIA DRIVER
11602 M: Antti Palosaari <crope@iki.fi>
11603 L: linux-media@vger.kernel.org
11604 S: Maintained
11605 W: https://linuxtv.org
11606 W: http://palosaari.fi/linux/
11607 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11608 T: git git://linuxtv.org/anttip/media_tree.git
11609 F: drivers/media/tuners/msi001*
11610
11611 MSI2500 MEDIA DRIVER
11612 M: Antti Palosaari <crope@iki.fi>
11613 L: linux-media@vger.kernel.org
11614 S: Maintained
11615 W: https://linuxtv.org
11616 W: http://palosaari.fi/linux/
11617 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11618 T: git git://linuxtv.org/anttip/media_tree.git
11619 F: drivers/media/usb/msi2500/
11620
11621 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11622 M: Robert Jarzmik <robert.jarzmik@free.fr>
11623 L: linux-mtd@lists.infradead.org
11624 S: Maintained
11625 F: drivers/mtd/devices/docg3*
11626
11627 MT9M032 APTINA SENSOR DRIVER
11628 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11629 L: linux-media@vger.kernel.org
11630 S: Maintained
11631 T: git git://linuxtv.org/media_tree.git
11632 F: drivers/media/i2c/mt9m032.c
11633 F: include/media/i2c/mt9m032.h
11634
11635 MT9P031 APTINA CAMERA SENSOR
11636 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11637 L: linux-media@vger.kernel.org
11638 S: Maintained
11639 T: git git://linuxtv.org/media_tree.git
11640 F: drivers/media/i2c/mt9p031.c
11641 F: include/media/i2c/mt9p031.h
11642
11643 MT9T001 APTINA CAMERA SENSOR
11644 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11645 L: linux-media@vger.kernel.org
11646 S: Maintained
11647 T: git git://linuxtv.org/media_tree.git
11648 F: drivers/media/i2c/mt9t001.c
11649 F: include/media/i2c/mt9t001.h
11650
11651 MT9T112 APTINA CAMERA SENSOR
11652 M: Jacopo Mondi <jacopo@jmondi.org>
11653 L: linux-media@vger.kernel.org
11654 S: Odd Fixes
11655 T: git git://linuxtv.org/media_tree.git
11656 F: drivers/media/i2c/mt9t112.c
11657 F: include/media/i2c/mt9t112.h
11658
11659 MT9V032 APTINA CAMERA SENSOR
11660 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11661 L: linux-media@vger.kernel.org
11662 S: Maintained
11663 T: git git://linuxtv.org/media_tree.git
11664 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11665 F: drivers/media/i2c/mt9v032.c
11666 F: include/media/i2c/mt9v032.h
11667
11668 MT9V111 APTINA CAMERA SENSOR
11669 M: Jacopo Mondi <jacopo@jmondi.org>
11670 L: linux-media@vger.kernel.org
11671 S: Maintained
11672 T: git git://linuxtv.org/media_tree.git
11673 F: Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11674 F: drivers/media/i2c/mt9v111.c
11675
11676 MULTIFUNCTION DEVICES (MFD)
11677 M: Lee Jones <lee.jones@linaro.org>
11678 S: Supported
11679 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11680 F: Documentation/devicetree/bindings/mfd/
11681 F: drivers/mfd/
11682 F: include/dt-bindings/mfd/
11683 F: include/linux/mfd/
11684
11685 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11686 S: Orphan
11687 F: drivers/mmc/host/mmc_spi.c
11688 F: include/linux/spi/mmc_spi.h
11689
11690 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11691 M: Ulf Hansson <ulf.hansson@linaro.org>
11692 L: linux-mmc@vger.kernel.org
11693 S: Maintained
11694 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11695 F: Documentation/devicetree/bindings/mmc/
11696 F: drivers/mmc/
11697 F: include/linux/mmc/
11698 F: include/uapi/linux/mmc/
11699
11700 MULTIPLEXER SUBSYSTEM
11701 M: Peter Rosin <peda@axentia.se>
11702 S: Maintained
11703 F: Documentation/ABI/testing/sysfs-class-mux*
11704 F: Documentation/devicetree/bindings/mux/
11705 F: drivers/mux/
11706 F: include/dt-bindings/mux/
11707 F: include/linux/mux/
11708
11709 MULTITECH MULTIPORT CARD (ISICOM)
11710 S: Orphan
11711 F: drivers/tty/isicom.c
11712 F: include/linux/isicom.h
11713
11714 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11715 M: Bin Liu <b-liu@ti.com>
11716 L: linux-usb@vger.kernel.org
11717 S: Maintained
11718 F: drivers/usb/musb/
11719
11720 MXL301RF MEDIA DRIVER
11721 M: Akihiro Tsukada <tskd08@gmail.com>
11722 L: linux-media@vger.kernel.org
11723 S: Odd Fixes
11724 F: drivers/media/tuners/mxl301rf*
11725
11726 MXL5007T MEDIA DRIVER
11727 M: Michael Krufky <mkrufky@linuxtv.org>
11728 L: linux-media@vger.kernel.org
11729 S: Maintained
11730 W: https://linuxtv.org
11731 W: http://github.com/mkrufky
11732 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11733 T: git git://linuxtv.org/mkrufky/tuners.git
11734 F: drivers/media/tuners/mxl5007t.*
11735
11736 MXSFB DRM DRIVER
11737 M: Marek Vasut <marex@denx.de>
11738 M: Stefan Agner <stefan@agner.ch>
11739 L: dri-devel@lists.freedesktop.org
11740 S: Supported
11741 T: git git://anongit.freedesktop.org/drm/drm-misc
11742 F: Documentation/devicetree/bindings/display/mxsfb.txt
11743 F: drivers/gpu/drm/mxsfb/
11744
11745 MYLEX DAC960 PCI RAID Controller
11746 M: Hannes Reinecke <hare@kernel.org>
11747 L: linux-scsi@vger.kernel.org
11748 S: Supported
11749 F: drivers/scsi/myrb.*
11750 F: drivers/scsi/myrs.*
11751
11752 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11753 M: Chris Lee <christopher.lee@cspi.com>
11754 L: netdev@vger.kernel.org
11755 S: Supported
11756 W: https://www.cspi.com/ethernet-products/support/downloads/
11757 F: drivers/net/ethernet/myricom/myri10ge/
11758
11759 NAND FLASH SUBSYSTEM
11760 M: Miquel Raynal <miquel.raynal@bootlin.com>
11761 R: Richard Weinberger <richard@nod.at>
11762 L: linux-mtd@lists.infradead.org
11763 S: Maintained
11764 W: http://www.linux-mtd.infradead.org/
11765 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
11766 C: irc://irc.oftc.net/mtd
11767 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11768 F: drivers/mtd/nand/
11769 F: include/linux/mtd/*nand*.h
11770
11771 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11772 M: Daniel Mack <zonque@gmail.com>
11773 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11774 S: Maintained
11775 W: http://www.native-instruments.com
11776 F: sound/usb/caiaq/
11777
11778 NATSEMI ETHERNET DRIVER (DP8381x)
11779 S: Orphan
11780 F: drivers/net/ethernet/natsemi/natsemi.c
11781
11782 NCR 5380 SCSI DRIVERS
11783 M: Finn Thain <fthain@telegraphics.com.au>
11784 M: Michael Schmitz <schmitzmic@gmail.com>
11785 L: linux-scsi@vger.kernel.org
11786 S: Maintained
11787 F: Documentation/scsi/g_NCR5380.rst
11788 F: drivers/scsi/NCR5380.*
11789 F: drivers/scsi/arm/cumana_1.c
11790 F: drivers/scsi/arm/oak.c
11791 F: drivers/scsi/atari_scsi.*
11792 F: drivers/scsi/dmx3191d.c
11793 F: drivers/scsi/g_NCR5380.*
11794 F: drivers/scsi/mac_scsi.*
11795 F: drivers/scsi/sun3_scsi.*
11796 F: drivers/scsi/sun3_scsi_vme.c
11797
11798 NCSI LIBRARY
11799 M: Samuel Mendoza-Jonas <sam@mendozajonas.com>
11800 S: Maintained
11801 F: net/ncsi/
11802
11803 NCT6775 HARDWARE MONITOR DRIVER
11804 M: Guenter Roeck <linux@roeck-us.net>
11805 L: linux-hwmon@vger.kernel.org
11806 S: Maintained
11807 F: Documentation/hwmon/nct6775.rst
11808 F: drivers/hwmon/nct6775.c
11809
11810 NETDEVSIM
11811 M: Jakub Kicinski <kuba@kernel.org>
11812 S: Maintained
11813 F: drivers/net/netdevsim/*
11814
11815 NETEM NETWORK EMULATOR
11816 M: Stephen Hemminger <stephen@networkplumber.org>
11817 L: netdev@vger.kernel.org
11818 S: Maintained
11819 F: net/sched/sch_netem.c
11820
11821 NETERION 10GbE DRIVERS (s2io/vxge)
11822 M: Jon Mason <jdmason@kudzu.us>
11823 L: netdev@vger.kernel.org
11824 S: Supported
11825 F: Documentation/networking/device_drivers/neterion/s2io.rst
11826 F: Documentation/networking/device_drivers/neterion/vxge.rst
11827 F: drivers/net/ethernet/neterion/
11828
11829 NETFILTER
11830 M: Pablo Neira Ayuso <pablo@netfilter.org>
11831 M: Jozsef Kadlecsik <kadlec@netfilter.org>
11832 M: Florian Westphal <fw@strlen.de>
11833 L: netfilter-devel@vger.kernel.org
11834 L: coreteam@netfilter.org
11835 S: Maintained
11836 W: http://www.netfilter.org/
11837 W: http://www.iptables.org/
11838 W: http://www.nftables.org/
11839 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
11840 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11841 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11842 F: include/linux/netfilter*
11843 F: include/linux/netfilter/
11844 F: include/net/netfilter/
11845 F: include/uapi/linux/netfilter*
11846 F: include/uapi/linux/netfilter/
11847 F: net/*/netfilter.c
11848 F: net/*/netfilter/
11849 F: net/bridge/br_netfilter*.c
11850 F: net/netfilter/
11851
11852 NETROM NETWORK LAYER
11853 M: Ralf Baechle <ralf@linux-mips.org>
11854 L: linux-hams@vger.kernel.org
11855 S: Maintained
11856 W: http://www.linux-ax25.org/
11857 F: include/net/netrom.h
11858 F: include/uapi/linux/netrom.h
11859 F: net/netrom/
11860
11861 NETRONOME ETHERNET DRIVERS
11862 M: Jakub Kicinski <kuba@kernel.org>
11863 L: oss-drivers@netronome.com
11864 S: Maintained
11865 F: drivers/net/ethernet/netronome/
11866
11867 NETWORK BLOCK DEVICE (NBD)
11868 M: Josef Bacik <josef@toxicpanda.com>
11869 L: linux-block@vger.kernel.org
11870 L: nbd@other.debian.org
11871 S: Maintained
11872 F: Documentation/admin-guide/blockdev/nbd.rst
11873 F: drivers/block/nbd.c
11874 F: include/trace/events/nbd.h
11875 F: include/uapi/linux/nbd.h
11876
11877 NETWORK DROP MONITOR
11878 M: Neil Horman <nhorman@tuxdriver.com>
11879 L: netdev@vger.kernel.org
11880 S: Maintained
11881 W: https://fedorahosted.org/dropwatch/
11882 F: include/net/drop_monitor.h
11883 F: include/uapi/linux/net_dropmon.h
11884 F: net/core/drop_monitor.c
11885
11886 NETWORKING DRIVERS
11887 M: "David S. Miller" <davem@davemloft.net>
11888 M: Jakub Kicinski <kuba@kernel.org>
11889 L: netdev@vger.kernel.org
11890 S: Maintained
11891 W: http://www.linuxfoundation.org/en/Net
11892 Q: http://patchwork.ozlabs.org/project/netdev/list/
11893 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11894 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11895 F: Documentation/devicetree/bindings/net/
11896 F: drivers/net/
11897 F: include/linux/etherdevice.h
11898 F: include/linux/fcdevice.h
11899 F: include/linux/fddidevice.h
11900 F: include/linux/hippidevice.h
11901 F: include/linux/if_*
11902 F: include/linux/inetdevice.h
11903 F: include/linux/netdevice.h
11904 F: include/uapi/linux/if_*
11905 F: include/uapi/linux/netdevice.h
11906
11907 NETWORKING DRIVERS (WIRELESS)
11908 M: Kalle Valo <kvalo@codeaurora.org>
11909 L: linux-wireless@vger.kernel.org
11910 S: Maintained
11911 Q: http://patchwork.kernel.org/project/linux-wireless/list/
11912 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11913 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11914 F: Documentation/devicetree/bindings/net/wireless/
11915 F: drivers/net/wireless/
11916
11917 NETWORKING [DSA]
11918 M: Andrew Lunn <andrew@lunn.ch>
11919 M: Vivien Didelot <vivien.didelot@gmail.com>
11920 M: Florian Fainelli <f.fainelli@gmail.com>
11921 S: Maintained
11922 F: Documentation/devicetree/bindings/net/dsa/
11923 F: drivers/net/dsa/
11924 F: include/linux/dsa/
11925 F: include/linux/platform_data/dsa.h
11926 F: include/net/dsa.h
11927 F: net/dsa/
11928
11929 NETWORKING [GENERAL]
11930 M: "David S. Miller" <davem@davemloft.net>
11931 M: Jakub Kicinski <kuba@kernel.org>
11932 L: netdev@vger.kernel.org
11933 S: Maintained
11934 W: http://www.linuxfoundation.org/en/Net
11935 Q: http://patchwork.ozlabs.org/project/netdev/list/
11936 B: mailto:netdev@vger.kernel.org
11937 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11938 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11939 F: Documentation/networking/
11940 F: include/linux/in.h
11941 F: include/linux/net.h
11942 F: include/linux/netdevice.h
11943 F: include/net/
11944 F: include/uapi/linux/in.h
11945 F: include/uapi/linux/net.h
11946 F: include/uapi/linux/net_namespace.h
11947 F: include/uapi/linux/netdevice.h
11948 F: lib/net_utils.c
11949 F: lib/random32.c
11950 F: net/
11951 F: tools/testing/selftests/net/
11952
11953 NETWORKING [IPSEC]
11954 M: Steffen Klassert <steffen.klassert@secunet.com>
11955 M: Herbert Xu <herbert@gondor.apana.org.au>
11956 M: "David S. Miller" <davem@davemloft.net>
11957 L: netdev@vger.kernel.org
11958 S: Maintained
11959 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11960 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11961 F: include/net/xfrm.h
11962 F: include/uapi/linux/xfrm.h
11963 F: net/ipv4/ah4.c
11964 F: net/ipv4/esp4*
11965 F: net/ipv4/ip_vti.c
11966 F: net/ipv4/ipcomp.c
11967 F: net/ipv4/xfrm*
11968 F: net/ipv6/ah6.c
11969 F: net/ipv6/esp6*
11970 F: net/ipv6/ip6_vti.c
11971 F: net/ipv6/ipcomp6.c
11972 F: net/ipv6/xfrm*
11973 F: net/key/
11974 F: net/xfrm/
11975
11976 NETWORKING [IPv4/IPv6]
11977 M: "David S. Miller" <davem@davemloft.net>
11978 M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11979 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11980 L: netdev@vger.kernel.org
11981 S: Maintained
11982 T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11983 F: arch/x86/net/*
11984 F: include/net/ip*
11985 F: net/ipv4/
11986 F: net/ipv6/
11987
11988 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11989 M: Paul Moore <paul@paul-moore.com>
11990 L: netdev@vger.kernel.org
11991 L: linux-security-module@vger.kernel.org
11992 S: Maintained
11993 W: https://github.com/netlabel
11994 F: Documentation/netlabel/
11995 F: include/net/calipso.h
11996 F: include/net/cipso_ipv4.h
11997 F: include/net/netlabel.h
11998 F: include/uapi/linux/netfilter/xt_CONNSECMARK.h
11999 F: include/uapi/linux/netfilter/xt_SECMARK.h
12000 F: net/ipv4/cipso_ipv4.c
12001 F: net/ipv6/calipso.c
12002 F: net/netfilter/xt_CONNSECMARK.c
12003 F: net/netfilter/xt_SECMARK.c
12004 F: net/netlabel/
12005
12006 NETWORKING [MPTCP]
12007 M: Mat Martineau <mathew.j.martineau@linux.intel.com>
12008 M: Matthieu Baerts <matthieu.baerts@tessares.net>
12009 L: netdev@vger.kernel.org
12010 L: mptcp@lists.01.org
12011 S: Maintained
12012 W: https://github.com/multipath-tcp/mptcp_net-next/wiki
12013 B: https://github.com/multipath-tcp/mptcp_net-next/issues
12014 F: include/net/mptcp.h
12015 F: include/uapi/linux/mptcp.h
12016 F: net/mptcp/
12017 F: tools/testing/selftests/net/mptcp/
12018
12019 NETWORKING [TCP]
12020 M: Eric Dumazet <edumazet@google.com>
12021 L: netdev@vger.kernel.org
12022 S: Maintained
12023 F: include/linux/tcp.h
12024 F: include/net/tcp.h
12025 F: include/trace/events/tcp.h
12026 F: include/uapi/linux/tcp.h
12027 F: net/ipv4/syncookies.c
12028 F: net/ipv4/tcp*.c
12029 F: net/ipv6/syncookies.c
12030 F: net/ipv6/tcp*.c
12031
12032 NETWORKING [TLS]
12033 M: Boris Pismenny <borisp@mellanox.com>
12034 M: Aviad Yehezkel <aviadye@mellanox.com>
12035 M: John Fastabend <john.fastabend@gmail.com>
12036 M: Daniel Borkmann <daniel@iogearbox.net>
12037 M: Jakub Kicinski <kuba@kernel.org>
12038 L: netdev@vger.kernel.org
12039 S: Maintained
12040 F: include/net/tls.h
12041 F: include/uapi/linux/tls.h
12042 F: net/tls/*
12043
12044 NETWORKING [WIRELESS]
12045 L: linux-wireless@vger.kernel.org
12046 Q: http://patchwork.kernel.org/project/linux-wireless/list/
12047
12048 NETXEN (1/10) GbE SUPPORT
12049 M: Manish Chopra <manishc@marvell.com>
12050 M: Rahul Verma <rahulv@marvell.com>
12051 M: GR-Linux-NIC-Dev@marvell.com
12052 L: netdev@vger.kernel.org
12053 S: Supported
12054 F: drivers/net/ethernet/qlogic/netxen/
12055
12056 NET_FAILOVER MODULE
12057 M: Sridhar Samudrala <sridhar.samudrala@intel.com>
12058 L: netdev@vger.kernel.org
12059 S: Supported
12060 F: Documentation/networking/net_failover.rst
12061 F: drivers/net/net_failover.c
12062 F: include/net/net_failover.h
12063
12064 NEXTHOP
12065 M: David Ahern <dsahern@kernel.org>
12066 L: netdev@vger.kernel.org
12067 S: Maintained
12068 F: include/net/netns/nexthop.h
12069 F: include/net/nexthop.h
12070 F: include/uapi/linux/nexthop.h
12071 F: net/ipv4/nexthop.c
12072
12073 NFC SUBSYSTEM
12074 L: netdev@vger.kernel.org
12075 S: Orphan
12076 F: Documentation/devicetree/bindings/net/nfc/
12077 F: drivers/nfc/
12078 F: include/linux/platform_data/nfcmrvl.h
12079 F: include/net/nfc/
12080 F: include/uapi/linux/nfc.h
12081 F: net/nfc/
12082
12083 NFS, SUNRPC, AND LOCKD CLIENTS
12084 M: Trond Myklebust <trond.myklebust@hammerspace.com>
12085 M: Anna Schumaker <anna.schumaker@netapp.com>
12086 L: linux-nfs@vger.kernel.org
12087 S: Maintained
12088 W: http://client.linux-nfs.org
12089 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12090 F: fs/lockd/
12091 F: fs/nfs/
12092 F: fs/nfs_common/
12093 F: include/linux/lockd/
12094 F: include/linux/nfs*
12095 F: include/linux/sunrpc/
12096 F: include/uapi/linux/nfs*
12097 F: include/uapi/linux/sunrpc/
12098 F: net/sunrpc/
12099
12100 NILFS2 FILESYSTEM
12101 M: Ryusuke Konishi <konishi.ryusuke@gmail.com>
12102 L: linux-nilfs@vger.kernel.org
12103 S: Supported
12104 W: https://nilfs.sourceforge.io/
12105 W: https://nilfs.osdn.jp/
12106 T: git git://github.com/konis/nilfs2.git
12107 F: Documentation/filesystems/nilfs2.rst
12108 F: fs/nilfs2/
12109 F: include/trace/events/nilfs2.h
12110 F: include/uapi/linux/nilfs2_api.h
12111 F: include/uapi/linux/nilfs2_ondisk.h
12112
12113 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12114 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12115 S: Maintained
12116 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12117 F: Documentation/scsi/NinjaSCSI.rst
12118 F: drivers/scsi/pcmcia/nsp_*
12119
12120 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12121 M: GOTO Masanori <gotom@debian.or.jp>
12122 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12123 S: Maintained
12124 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12125 F: Documentation/scsi/NinjaSCSI.rst
12126 F: drivers/scsi/nsp32*
12127
12128 NIOS2 ARCHITECTURE
12129 M: Ley Foon Tan <ley.foon.tan@intel.com>
12130 S: Maintained
12131 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12132 F: arch/nios2/
12133
12134 NOHZ, DYNTICKS SUPPORT
12135 M: Frederic Weisbecker <fweisbec@gmail.com>
12136 M: Thomas Gleixner <tglx@linutronix.de>
12137 M: Ingo Molnar <mingo@kernel.org>
12138 L: linux-kernel@vger.kernel.org
12139 S: Maintained
12140 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12141 F: include/linux/sched/nohz.h
12142 F: include/linux/tick.h
12143 F: kernel/time/tick*.*
12144
12145 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12146 M: Pavel Machek <pavel@ucw.cz>
12147 M: Sakari Ailus <sakari.ailus@iki.fi>
12148 L: linux-media@vger.kernel.org
12149 S: Maintained
12150 F: drivers/media/i2c/ad5820.c
12151 F: drivers/media/i2c/et8ek8
12152
12153 NOKIA N900 POWER SUPPLY DRIVERS
12154 R: Pali Rohár <pali@kernel.org>
12155 F: drivers/power/supply/bq2415x_charger.c
12156 F: drivers/power/supply/bq27xxx_battery.c
12157 F: drivers/power/supply/bq27xxx_battery_i2c.c
12158 F: drivers/power/supply/isp1704_charger.c
12159 F: drivers/power/supply/rx51_battery.c
12160 F: include/linux/power/bq2415x_charger.h
12161 F: include/linux/power/bq27xxx_battery.h
12162
12163 NOLIBC HEADER FILE
12164 M: Willy Tarreau <w@1wt.eu>
12165 S: Maintained
12166 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12167 F: tools/include/nolibc/
12168
12169 NSDEPS
12170 M: Matthias Maennich <maennich@google.com>
12171 S: Maintained
12172 F: Documentation/core-api/symbol-namespaces.rst
12173 F: scripts/nsdeps
12174
12175 NTB AMD DRIVER
12176 M: Sanjay R Mehta <sanju.mehta@amd.com>
12177 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12178 L: linux-ntb@googlegroups.com
12179 S: Supported
12180 F: drivers/ntb/hw/amd/
12181
12182 NTB DRIVER CORE
12183 M: Jon Mason <jdmason@kudzu.us>
12184 M: Dave Jiang <dave.jiang@intel.com>
12185 M: Allen Hubbe <allenbh@gmail.com>
12186 L: linux-ntb@googlegroups.com
12187 S: Supported
12188 W: https://github.com/jonmason/ntb/wiki
12189 T: git git://github.com/jonmason/ntb.git
12190 F: drivers/net/ntb_netdev.c
12191 F: drivers/ntb/
12192 F: include/linux/ntb.h
12193 F: include/linux/ntb_transport.h
12194 F: tools/testing/selftests/ntb/
12195
12196 NTB IDT DRIVER
12197 M: Serge Semin <fancer.lancer@gmail.com>
12198 L: linux-ntb@googlegroups.com
12199 S: Supported
12200 F: drivers/ntb/hw/idt/
12201
12202 NTB INTEL DRIVER
12203 M: Dave Jiang <dave.jiang@intel.com>
12204 L: linux-ntb@googlegroups.com
12205 S: Supported
12206 W: https://github.com/davejiang/linux/wiki
12207 T: git https://github.com/davejiang/linux.git
12208 F: drivers/ntb/hw/intel/
12209
12210 NTFS FILESYSTEM
12211 M: Anton Altaparmakov <anton@tuxera.com>
12212 L: linux-ntfs-dev@lists.sourceforge.net
12213 S: Supported
12214 W: http://www.tuxera.com/
12215 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12216 F: Documentation/filesystems/ntfs.rst
12217 F: fs/ntfs/
12218
12219 NUBUS SUBSYSTEM
12220 M: Finn Thain <fthain@telegraphics.com.au>
12221 L: linux-m68k@lists.linux-m68k.org
12222 S: Maintained
12223 F: arch/*/include/asm/nubus.h
12224 F: drivers/nubus/
12225 F: include/linux/nubus.h
12226 F: include/uapi/linux/nubus.h
12227
12228 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12229 M: Antonino Daplas <adaplas@gmail.com>
12230 L: linux-fbdev@vger.kernel.org
12231 S: Maintained
12232 F: drivers/video/fbdev/nvidia/
12233 F: drivers/video/fbdev/riva/
12234
12235 NVM EXPRESS DRIVER
12236 M: Keith Busch <kbusch@kernel.org>
12237 M: Jens Axboe <axboe@fb.com>
12238 M: Christoph Hellwig <hch@lst.de>
12239 M: Sagi Grimberg <sagi@grimberg.me>
12240 L: linux-nvme@lists.infradead.org
12241 S: Supported
12242 W: http://git.infradead.org/nvme.git
12243 T: git://git.infradead.org/nvme.git
12244 F: drivers/nvme/host/
12245 F: include/linux/nvme.h
12246 F: include/uapi/linux/nvme_ioctl.h
12247
12248 NVM EXPRESS FC TRANSPORT DRIVERS
12249 M: James Smart <james.smart@broadcom.com>
12250 L: linux-nvme@lists.infradead.org
12251 S: Supported
12252 F: drivers/nvme/host/fc.c
12253 F: drivers/nvme/target/fc.c
12254 F: drivers/nvme/target/fcloop.c
12255 F: include/linux/nvme-fc-driver.h
12256 F: include/linux/nvme-fc.h
12257
12258 NVM EXPRESS TARGET DRIVER
12259 M: Christoph Hellwig <hch@lst.de>
12260 M: Sagi Grimberg <sagi@grimberg.me>
12261 M: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12262 L: linux-nvme@lists.infradead.org
12263 S: Supported
12264 W: http://git.infradead.org/nvme.git
12265 T: git://git.infradead.org/nvme.git
12266 F: drivers/nvme/target/
12267
12268 NVMEM FRAMEWORK
12269 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12270 S: Maintained
12271 F: Documentation/ABI/stable/sysfs-bus-nvmem
12272 F: Documentation/devicetree/bindings/nvmem/
12273 F: drivers/nvmem/
12274 F: include/linux/nvmem-consumer.h
12275 F: include/linux/nvmem-provider.h
12276
12277 NXP FSPI DRIVER
12278 M: Ashish Kumar <ashish.kumar@nxp.com>
12279 R: Yogesh Gaur <yogeshgaur.83@gmail.com>
12280 L: linux-spi@vger.kernel.org
12281 S: Maintained
12282 F: Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12283 F: drivers/spi/spi-nxp-fspi.c
12284
12285 NXP FXAS21002C DRIVER
12286 M: Rui Miguel Silva <rmfrfs@gmail.com>
12287 L: linux-iio@vger.kernel.org
12288 S: Maintained
12289 F: Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12290 F: drivers/iio/gyro/fxas21002c.h
12291 F: drivers/iio/gyro/fxas21002c_core.c
12292 F: drivers/iio/gyro/fxas21002c_i2c.c
12293 F: drivers/iio/gyro/fxas21002c_spi.c
12294
12295 NXP SGTL5000 DRIVER
12296 M: Fabio Estevam <festevam@gmail.com>
12297 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12298 S: Maintained
12299 F: Documentation/devicetree/bindings/sound/sgtl5000.txt
12300 F: sound/soc/codecs/sgtl5000*
12301
12302 NXP SJA1105 ETHERNET SWITCH DRIVER
12303 M: Vladimir Oltean <olteanv@gmail.com>
12304 L: linux-kernel@vger.kernel.org
12305 S: Maintained
12306 F: drivers/net/dsa/sja1105
12307
12308 NXP TDA998X DRM DRIVER
12309 M: Russell King <linux@armlinux.org.uk>
12310 S: Maintained
12311 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12312 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12313 F: drivers/gpu/drm/i2c/tda998x_drv.c
12314 F: include/drm/i2c/tda998x.h
12315 F: include/dt-bindings/display/tda998x.h
12316 K: "nxp,tda998x"
12317
12318 NXP TFA9879 DRIVER
12319 M: Peter Rosin <peda@axentia.se>
12320 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12321 S: Maintained
12322 F: Documentation/devicetree/bindings/sound/tfa9879.txt
12323 F: sound/soc/codecs/tfa9879*
12324
12325 NXP-NCI NFC DRIVER
12326 M: Clément Perrochaud <clement.perrochaud@effinnov.com>
12327 R: Charles Gorand <charles.gorand@effinnov.com>
12328 L: linux-nfc@lists.01.org (moderated for non-subscribers)
12329 S: Supported
12330 F: drivers/nfc/nxp-nci
12331
12332 OBJAGG
12333 M: Jiri Pirko <jiri@mellanox.com>
12334 L: netdev@vger.kernel.org
12335 S: Supported
12336 F: include/linux/objagg.h
12337 F: lib/objagg.c
12338 F: lib/test_objagg.c
12339
12340 OBJTOOL
12341 M: Josh Poimboeuf <jpoimboe@redhat.com>
12342 M: Peter Zijlstra <peterz@infradead.org>
12343 S: Supported
12344 F: tools/objtool/
12345
12346 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12347 M: Frederic Barrat <fbarrat@linux.ibm.com>
12348 M: Andrew Donnellan <ajd@linux.ibm.com>
12349 L: linuxppc-dev@lists.ozlabs.org
12350 S: Supported
12351 F: Documentation/userspace-api/accelerators/ocxl.rst
12352 F: arch/powerpc/include/asm/pnv-ocxl.h
12353 F: arch/powerpc/platforms/powernv/ocxl.c
12354 F: drivers/misc/ocxl/
12355 F: include/misc/ocxl*
12356 F: include/uapi/misc/ocxl.h
12357
12358 OMAP AUDIO SUPPORT
12359 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
12360 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
12361 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12362 L: linux-omap@vger.kernel.org
12363 S: Maintained
12364 F: sound/soc/ti/n810.c
12365 F: sound/soc/ti/omap*
12366 F: sound/soc/ti/rx51.c
12367 F: sound/soc/ti/sdma-pcm.*
12368
12369 OMAP CLOCK FRAMEWORK SUPPORT
12370 M: Paul Walmsley <paul@pwsan.com>
12371 L: linux-omap@vger.kernel.org
12372 S: Maintained
12373 F: arch/arm/*omap*/*clock*
12374
12375 OMAP DEVICE TREE SUPPORT
12376 M: Benoît Cousson <bcousson@baylibre.com>
12377 M: Tony Lindgren <tony@atomide.com>
12378 L: linux-omap@vger.kernel.org
12379 L: devicetree@vger.kernel.org
12380 S: Maintained
12381 F: arch/arm/boot/dts/*am3*
12382 F: arch/arm/boot/dts/*am4*
12383 F: arch/arm/boot/dts/*am5*
12384 F: arch/arm/boot/dts/*dra7*
12385 F: arch/arm/boot/dts/*omap*
12386 F: arch/arm/boot/dts/logicpd-som-lv*
12387 F: arch/arm/boot/dts/logicpd-torpedo*
12388
12389 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12390 L: linux-omap@vger.kernel.org
12391 L: linux-fbdev@vger.kernel.org
12392 S: Orphan
12393 F: Documentation/arm/omap/dss.rst
12394 F: drivers/video/fbdev/omap2/
12395
12396 OMAP FRAMEBUFFER SUPPORT
12397 L: linux-fbdev@vger.kernel.org
12398 L: linux-omap@vger.kernel.org
12399 S: Orphan
12400 F: drivers/video/fbdev/omap/
12401
12402 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12403 M: Roger Quadros <rogerq@ti.com>
12404 M: Tony Lindgren <tony@atomide.com>
12405 L: linux-omap@vger.kernel.org
12406 S: Maintained
12407 F: arch/arm/mach-omap2/*gpmc*
12408 F: drivers/memory/omap-gpmc.c
12409
12410 OMAP GPIO DRIVER
12411 M: Grygorii Strashko <grygorii.strashko@ti.com>
12412 M: Santosh Shilimkar <ssantosh@kernel.org>
12413 M: Kevin Hilman <khilman@kernel.org>
12414 L: linux-omap@vger.kernel.org
12415 S: Maintained
12416 F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
12417 F: drivers/gpio/gpio-omap.c
12418
12419 OMAP HARDWARE SPINLOCK SUPPORT
12420 M: Ohad Ben-Cohen <ohad@wizery.com>
12421 L: linux-omap@vger.kernel.org
12422 S: Maintained
12423 F: drivers/hwspinlock/omap_hwspinlock.c
12424
12425 OMAP HS MMC SUPPORT
12426 L: linux-mmc@vger.kernel.org
12427 L: linux-omap@vger.kernel.org
12428 S: Orphan
12429 F: drivers/mmc/host/omap_hsmmc.c
12430
12431 OMAP HWMOD DATA
12432 M: Paul Walmsley <paul@pwsan.com>
12433 L: linux-omap@vger.kernel.org
12434 S: Maintained
12435 F: arch/arm/mach-omap2/omap_hwmod*data*
12436
12437 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12438 M: Benoît Cousson <bcousson@baylibre.com>
12439 L: linux-omap@vger.kernel.org
12440 S: Maintained
12441 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12442
12443 OMAP HWMOD SUPPORT
12444 M: Benoît Cousson <bcousson@baylibre.com>
12445 M: Paul Walmsley <paul@pwsan.com>
12446 L: linux-omap@vger.kernel.org
12447 S: Maintained
12448 F: arch/arm/mach-omap2/omap_hwmod.*
12449
12450 OMAP I2C DRIVER
12451 M: Vignesh R <vigneshr@ti.com>
12452 L: linux-omap@vger.kernel.org
12453 L: linux-i2c@vger.kernel.org
12454 S: Maintained
12455 F: Documentation/devicetree/bindings/i2c/i2c-omap.txt
12456 F: drivers/i2c/busses/i2c-omap.c
12457
12458 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12459 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12460 L: linux-media@vger.kernel.org
12461 S: Maintained
12462 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
12463 F: drivers/media/platform/omap3isp/
12464 F: drivers/staging/media/omap4iss/
12465
12466 OMAP MMC SUPPORT
12467 M: Aaro Koskinen <aaro.koskinen@iki.fi>
12468 L: linux-omap@vger.kernel.org
12469 S: Odd Fixes
12470 F: drivers/mmc/host/omap.c
12471
12472 OMAP POWER MANAGEMENT SUPPORT
12473 M: Kevin Hilman <khilman@kernel.org>
12474 L: linux-omap@vger.kernel.org
12475 S: Maintained
12476 F: arch/arm/*omap*/*pm*
12477 F: drivers/cpufreq/omap-cpufreq.c
12478
12479 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12480 M: Rajendra Nayak <rnayak@codeaurora.org>
12481 M: Paul Walmsley <paul@pwsan.com>
12482 L: linux-omap@vger.kernel.org
12483 S: Maintained
12484 F: arch/arm/mach-omap2/prm*
12485
12486 OMAP RANDOM NUMBER GENERATOR SUPPORT
12487 M: Deepak Saxena <dsaxena@plexity.net>
12488 S: Maintained
12489 F: drivers/char/hw_random/omap-rng.c
12490
12491 OMAP USB SUPPORT
12492 L: linux-usb@vger.kernel.org
12493 L: linux-omap@vger.kernel.org
12494 S: Orphan
12495 F: arch/arm/*omap*/usb*
12496 F: drivers/usb/*/*omap*
12497
12498 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12499 M: Mark Jackson <mpfj@newflow.co.uk>
12500 L: linux-omap@vger.kernel.org
12501 S: Maintained
12502 F: arch/arm/boot/dts/am335x-nano.dts
12503
12504 OMAP1 SUPPORT
12505 M: Aaro Koskinen <aaro.koskinen@iki.fi>
12506 M: Tony Lindgren <tony@atomide.com>
12507 L: linux-omap@vger.kernel.org
12508 S: Maintained
12509 Q: http://patchwork.kernel.org/project/linux-omap/list/
12510 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12511 F: arch/arm/configs/omap1_defconfig
12512 F: arch/arm/mach-omap1/
12513 F: arch/arm/plat-omap/
12514 F: drivers/i2c/busses/i2c-omap.c
12515 F: include/linux/platform_data/ams-delta-fiq.h
12516 F: include/linux/platform_data/i2c-omap.h
12517
12518 OMAP2+ SUPPORT
12519 M: Tony Lindgren <tony@atomide.com>
12520 L: linux-omap@vger.kernel.org
12521 S: Maintained
12522 W: http://www.muru.com/linux/omap/
12523 W: http://linux.omap.com/
12524 Q: http://patchwork.kernel.org/project/linux-omap/list/
12525 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12526 F: arch/arm/configs/omap2plus_defconfig
12527 F: arch/arm/mach-omap2/
12528 F: arch/arm/plat-omap/
12529 F: drivers/bus/ti-sysc.c
12530 F: drivers/i2c/busses/i2c-omap.c
12531 F: drivers/irqchip/irq-omap-intc.c
12532 F: drivers/mfd/*omap*.c
12533 F: drivers/mfd/menelaus.c
12534 F: drivers/mfd/palmas.c
12535 F: drivers/mfd/tps65217.c
12536 F: drivers/mfd/tps65218.c
12537 F: drivers/mfd/tps65910.c
12538 F: drivers/mfd/twl-core.[ch]
12539 F: drivers/mfd/twl4030*.c
12540 F: drivers/mfd/twl6030*.c
12541 F: drivers/mfd/twl6040*.c
12542 F: drivers/regulator/palmas-regulator*.c
12543 F: drivers/regulator/pbias-regulator.c
12544 F: drivers/regulator/tps65217-regulator.c
12545 F: drivers/regulator/tps65218-regulator.c
12546 F: drivers/regulator/tps65910-regulator.c
12547 F: drivers/regulator/twl-regulator.c
12548 F: drivers/regulator/twl6030-regulator.c
12549 F: include/linux/platform_data/i2c-omap.h
12550 F: include/linux/platform_data/ti-sysc.h
12551
12552 OMFS FILESYSTEM
12553 M: Bob Copeland <me@bobcopeland.com>
12554 L: linux-karma-devel@lists.sourceforge.net
12555 S: Maintained
12556 F: Documentation/filesystems/omfs.rst
12557 F: fs/omfs/
12558
12559 OMNIKEY CARDMAN 4000 DRIVER
12560 M: Harald Welte <laforge@gnumonks.org>
12561 S: Maintained
12562 F: drivers/char/pcmcia/cm4000_cs.c
12563 F: include/linux/cm4000_cs.h
12564 F: include/uapi/linux/cm4000_cs.h
12565
12566 OMNIKEY CARDMAN 4040 DRIVER
12567 M: Harald Welte <laforge@gnumonks.org>
12568 S: Maintained
12569 F: drivers/char/pcmcia/cm4040_cs.*
12570
12571 OMNIVISION OV13858 SENSOR DRIVER
12572 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12573 L: linux-media@vger.kernel.org
12574 S: Maintained
12575 T: git git://linuxtv.org/media_tree.git
12576 F: drivers/media/i2c/ov13858.c
12577
12578 OMNIVISION OV2680 SENSOR DRIVER
12579 M: Rui Miguel Silva <rmfrfs@gmail.com>
12580 L: linux-media@vger.kernel.org
12581 S: Maintained
12582 T: git git://linuxtv.org/media_tree.git
12583 F: Documentation/devicetree/bindings/media/i2c/ov2680.txt
12584 F: drivers/media/i2c/ov2680.c
12585
12586 OMNIVISION OV2685 SENSOR DRIVER
12587 M: Shunqian Zheng <zhengsq@rock-chips.com>
12588 L: linux-media@vger.kernel.org
12589 S: Maintained
12590 T: git git://linuxtv.org/media_tree.git
12591 F: drivers/media/i2c/ov2685.c
12592
12593 OMNIVISION OV2740 SENSOR DRIVER
12594 M: Tianshu Qiu <tian.shu.qiua@intel.com>
12595 R: Shawn Tu <shawnx.tu@intel.com>
12596 R: Bingbu Cao <bingbu.cao@intel.com>
12597 L: linux-media@vger.kernel.org
12598 S: Maintained
12599 T: git git://linuxtv.org/media_tree.git
12600 F: drivers/media/i2c/ov2740.c
12601
12602 OMNIVISION OV5640 SENSOR DRIVER
12603 M: Steve Longerbeam <slongerbeam@gmail.com>
12604 L: linux-media@vger.kernel.org
12605 S: Maintained
12606 T: git git://linuxtv.org/media_tree.git
12607 F: drivers/media/i2c/ov5640.c
12608
12609 OMNIVISION OV5647 SENSOR DRIVER
12610 M: Luis Oliveira <lolivei@synopsys.com>
12611 L: linux-media@vger.kernel.org
12612 S: Maintained
12613 T: git git://linuxtv.org/media_tree.git
12614 F: drivers/media/i2c/ov5647.c
12615
12616 OMNIVISION OV5670 SENSOR DRIVER
12617 M: Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12618 M: Hyungwoo Yang <hyungwoo.yang@intel.com>
12619 L: linux-media@vger.kernel.org
12620 S: Maintained
12621 T: git git://linuxtv.org/media_tree.git
12622 F: drivers/media/i2c/ov5670.c
12623
12624 OMNIVISION OV5675 SENSOR DRIVER
12625 M: Shawn Tu <shawnx.tu@intel.com>
12626 L: linux-media@vger.kernel.org
12627 S: Maintained
12628 T: git git://linuxtv.org/media_tree.git
12629 F: drivers/media/i2c/ov5675.c
12630
12631 OMNIVISION OV5695 SENSOR DRIVER
12632 M: Shunqian Zheng <zhengsq@rock-chips.com>
12633 L: linux-media@vger.kernel.org
12634 S: Maintained
12635 T: git git://linuxtv.org/media_tree.git
12636 F: drivers/media/i2c/ov5695.c
12637
12638 OMNIVISION OV7670 SENSOR DRIVER
12639 M: Jonathan Corbet <corbet@lwn.net>
12640 L: linux-media@vger.kernel.org
12641 S: Maintained
12642 T: git git://linuxtv.org/media_tree.git
12643 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
12644 F: drivers/media/i2c/ov7670.c
12645
12646 OMNIVISION OV772x SENSOR DRIVER
12647 M: Jacopo Mondi <jacopo@jmondi.org>
12648 L: linux-media@vger.kernel.org
12649 S: Odd fixes
12650 T: git git://linuxtv.org/media_tree.git
12651 F: Documentation/devicetree/bindings/media/i2c/ov772x.txt
12652 F: drivers/media/i2c/ov772x.c
12653 F: include/media/i2c/ov772x.h
12654
12655 OMNIVISION OV7740 SENSOR DRIVER
12656 M: Wenyou Yang <wenyou.yang@microchip.com>
12657 L: linux-media@vger.kernel.org
12658 S: Maintained
12659 T: git git://linuxtv.org/media_tree.git
12660 F: Documentation/devicetree/bindings/media/i2c/ov7740.txt
12661 F: drivers/media/i2c/ov7740.c
12662
12663 OMNIVISION OV8856 SENSOR DRIVER
12664 M: Dongchun Zhu <dongchun.zhu@mediatek.com>
12665 L: linux-media@vger.kernel.org
12666 S: Maintained
12667 T: git git://linuxtv.org/media_tree.git
12668 F: Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12669 F: drivers/media/i2c/ov8856.c
12670
12671 OMNIVISION OV9640 SENSOR DRIVER
12672 M: Petr Cvek <petrcvekcz@gmail.com>
12673 L: linux-media@vger.kernel.org
12674 S: Maintained
12675 F: drivers/media/i2c/ov9640.*
12676
12677 OMNIVISION OV9650 SENSOR DRIVER
12678 M: Sakari Ailus <sakari.ailus@linux.intel.com>
12679 R: Akinobu Mita <akinobu.mita@gmail.com>
12680 R: Sylwester Nawrocki <s.nawrocki@samsung.com>
12681 L: linux-media@vger.kernel.org
12682 S: Maintained
12683 T: git git://linuxtv.org/media_tree.git
12684 F: Documentation/devicetree/bindings/media/i2c/ov9650.txt
12685 F: drivers/media/i2c/ov9650.c
12686
12687 ONENAND FLASH DRIVER
12688 M: Kyungmin Park <kyungmin.park@samsung.com>
12689 L: linux-mtd@lists.infradead.org
12690 S: Maintained
12691 F: drivers/mtd/nand/onenand/
12692 F: include/linux/mtd/onenand*.h
12693
12694 ONION OMEGA2+ BOARD
12695 M: Harvey Hunt <harveyhuntnexus@gmail.com>
12696 L: linux-mips@vger.kernel.org
12697 S: Maintained
12698 F: arch/mips/boot/dts/ralink/omega2p.dts
12699
12700 OP-TEE DRIVER
12701 M: Jens Wiklander <jens.wiklander@linaro.org>
12702 L: tee-dev@lists.linaro.org
12703 S: Maintained
12704 F: drivers/tee/optee/
12705
12706 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12707 M: Sumit Garg <sumit.garg@linaro.org>
12708 L: tee-dev@lists.linaro.org
12709 S: Maintained
12710 F: drivers/char/hw_random/optee-rng.c
12711
12712 OPA-VNIC DRIVER
12713 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
12714 M: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12715 L: linux-rdma@vger.kernel.org
12716 S: Supported
12717 F: drivers/infiniband/ulp/opa_vnic
12718
12719 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12720 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12721 M: Frank Rowand <frowand.list@gmail.com>
12722 L: devicetree@vger.kernel.org
12723 S: Maintained
12724 F: Documentation/devicetree/dynamic-resolution-notes.rst
12725 F: Documentation/devicetree/overlay-notes.rst
12726 F: drivers/of/overlay.c
12727 F: drivers/of/resolver.c
12728 K: of_overlay_notifier_
12729
12730 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12731 M: Rob Herring <robh+dt@kernel.org>
12732 M: Frank Rowand <frowand.list@gmail.com>
12733 L: devicetree@vger.kernel.org
12734 S: Maintained
12735 W: http://www.devicetree.org/
12736 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12737 F: Documentation/ABI/testing/sysfs-firmware-ofw
12738 F: drivers/of/
12739 F: include/linux/of*.h
12740 F: scripts/dtc/
12741
12742 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12743 M: Rob Herring <robh+dt@kernel.org>
12744 L: devicetree@vger.kernel.org
12745 S: Maintained
12746 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12747 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12748 F: Documentation/devicetree/
12749 F: arch/*/boot/dts/
12750 F: include/dt-bindings/
12751
12752 OPENCORES I2C BUS DRIVER
12753 M: Peter Korsgaard <peter@korsgaard.com>
12754 M: Andrew Lunn <andrew@lunn.ch>
12755 L: linux-i2c@vger.kernel.org
12756 S: Maintained
12757 F: Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12758 F: Documentation/i2c/busses/i2c-ocores.rst
12759 F: drivers/i2c/busses/i2c-ocores.c
12760 F: include/linux/platform_data/i2c-ocores.h
12761
12762 OPENRISC ARCHITECTURE
12763 M: Jonas Bonn <jonas@southpole.se>
12764 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12765 M: Stafford Horne <shorne@gmail.com>
12766 L: openrisc@lists.librecores.org
12767 S: Maintained
12768 W: http://openrisc.io
12769 T: git git://github.com/openrisc/linux.git
12770 F: Documentation/devicetree/bindings/openrisc/
12771 F: Documentation/openrisc/
12772 F: arch/openrisc/
12773 F: drivers/irqchip/irq-ompic.c
12774 F: drivers/irqchip/irq-or1k-*
12775
12776 OPENVSWITCH
12777 M: Pravin B Shelar <pshelar@ovn.org>
12778 L: netdev@vger.kernel.org
12779 L: dev@openvswitch.org
12780 S: Maintained
12781 W: http://openvswitch.org
12782 F: include/uapi/linux/openvswitch.h
12783 F: net/openvswitch/
12784
12785 OPERATING PERFORMANCE POINTS (OPP)
12786 M: Viresh Kumar <vireshk@kernel.org>
12787 M: Nishanth Menon <nm@ti.com>
12788 M: Stephen Boyd <sboyd@kernel.org>
12789 L: linux-pm@vger.kernel.org
12790 S: Maintained
12791 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12792 F: Documentation/devicetree/bindings/opp/
12793 F: Documentation/power/opp.rst
12794 F: drivers/opp/
12795 F: include/linux/pm_opp.h
12796
12797 OPL4 DRIVER
12798 M: Clemens Ladisch <clemens@ladisch.de>
12799 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12800 S: Maintained
12801 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12802 F: sound/drivers/opl4/
12803
12804 OPROFILE
12805 M: Robert Richter <rric@kernel.org>
12806 L: oprofile-list@lists.sf.net
12807 S: Maintained
12808 F: arch/*/include/asm/oprofile*.h
12809 F: arch/*/oprofile/
12810 F: drivers/oprofile/
12811 F: include/linux/oprofile.h
12812
12813 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12814 M: Mark Fasheh <mark@fasheh.com>
12815 M: Joel Becker <jlbec@evilplan.org>
12816 M: Joseph Qi <joseph.qi@linux.alibaba.com>
12817 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12818 S: Supported
12819 W: http://ocfs2.wiki.kernel.org
12820 F: Documentation/filesystems/dlmfs.rst
12821 F: Documentation/filesystems/ocfs2.rst
12822 F: fs/ocfs2/
12823
12824 ORANGEFS FILESYSTEM
12825 M: Mike Marshall <hubcap@omnibond.com>
12826 R: Martin Brandenburg <martin@omnibond.com>
12827 L: devel@lists.orangefs.org
12828 S: Supported
12829 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12830 F: Documentation/filesystems/orangefs.rst
12831 F: fs/orangefs/
12832
12833 ORINOCO DRIVER
12834 L: linux-wireless@vger.kernel.org
12835 S: Orphan
12836 W: https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
12837 W: http://www.nongnu.org/orinoco/
12838 F: drivers/net/wireless/intersil/orinoco/
12839
12840 OV2659 OMNIVISION SENSOR DRIVER
12841 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12842 L: linux-media@vger.kernel.org
12843 S: Maintained
12844 W: https://linuxtv.org
12845 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12846 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12847 F: drivers/media/i2c/ov2659.c
12848 F: include/media/i2c/ov2659.h
12849
12850 OVERLAY FILESYSTEM
12851 M: Miklos Szeredi <miklos@szeredi.hu>
12852 L: linux-unionfs@vger.kernel.org
12853 S: Supported
12854 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12855 F: Documentation/filesystems/overlayfs.rst
12856 F: fs/overlayfs/
12857
12858 P54 WIRELESS DRIVER
12859 M: Christian Lamparter <chunkeey@googlemail.com>
12860 L: linux-wireless@vger.kernel.org
12861 S: Maintained
12862 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
12863 F: drivers/net/wireless/intersil/p54/
12864
12865 PACKING
12866 M: Vladimir Oltean <olteanv@gmail.com>
12867 L: netdev@vger.kernel.org
12868 S: Supported
12869 F: Documentation/core-api/packing.rst
12870 F: include/linux/packing.h
12871 F: lib/packing.c
12872
12873 PADATA PARALLEL EXECUTION MECHANISM
12874 M: Steffen Klassert <steffen.klassert@secunet.com>
12875 L: linux-crypto@vger.kernel.org
12876 S: Maintained
12877 F: Documentation/core-api/padata.rst
12878 F: include/linux/padata.h
12879 F: kernel/padata.c
12880
12881 PAGE POOL
12882 M: Jesper Dangaard Brouer <hawk@kernel.org>
12883 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
12884 L: netdev@vger.kernel.org
12885 S: Supported
12886 F: include/net/page_pool.h
12887 F: net/core/page_pool.c
12888
12889 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12890 M: Harald Welte <laforge@gnumonks.org>
12891 L: platform-driver-x86@vger.kernel.org
12892 S: Maintained
12893 F: drivers/platform/x86/panasonic-laptop.c
12894
12895 PARALLAX PING IIO SENSOR DRIVER
12896 M: Andreas Klinger <ak@it-klinger.de>
12897 L: linux-iio@vger.kernel.org
12898 S: Maintained
12899 F: Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12900 F: drivers/iio/proximity/ping.c
12901
12902 PARALLEL LCD/KEYPAD PANEL DRIVER
12903 M: Willy Tarreau <willy@haproxy.com>
12904 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12905 S: Odd Fixes
12906 F: Documentation/admin-guide/lcd-panel-cgram.rst
12907 F: drivers/auxdisplay/panel.c
12908
12909 PARALLEL PORT SUBSYSTEM
12910 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12911 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12912 L: linux-parport@lists.infradead.org (subscribers-only)
12913 S: Maintained
12914 F: Documentation/driver-api/parport*.rst
12915 F: drivers/char/ppdev.c
12916 F: drivers/parport/
12917 F: include/linux/parport*.h
12918 F: include/uapi/linux/ppdev.h
12919
12920 PARAVIRT_OPS INTERFACE
12921 M: Juergen Gross <jgross@suse.com>
12922 M: Deep Shah <sdeep@vmware.com>
12923 M: "VMware, Inc." <pv-drivers@vmware.com>
12924 L: virtualization@lists.linux-foundation.org
12925 S: Supported
12926 F: Documentation/virt/paravirt_ops.rst
12927 F: arch/*/include/asm/paravirt*.h
12928 F: arch/*/kernel/paravirt*
12929 F: include/linux/hypervisor.h
12930
12931 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12932 M: Tim Waugh <tim@cyberelk.net>
12933 L: linux-parport@lists.infradead.org (subscribers-only)
12934 S: Maintained
12935 F: Documentation/admin-guide/blockdev/paride.rst
12936 F: drivers/block/paride/
12937
12938 PARISC ARCHITECTURE
12939 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12940 M: Helge Deller <deller@gmx.de>
12941 L: linux-parisc@vger.kernel.org
12942 S: Maintained
12943 W: https://parisc.wiki.kernel.org
12944 Q: http://patchwork.kernel.org/project/linux-parisc/list/
12945 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12946 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12947 F: Documentation/parisc/
12948 F: arch/parisc/
12949 F: drivers/char/agp/parisc-agp.c
12950 F: drivers/input/misc/hp_sdc_rtc.c
12951 F: drivers/input/serio/gscps2.c
12952 F: drivers/input/serio/hp_sdc*
12953 F: drivers/parisc/
12954 F: drivers/parport/parport_gsc.*
12955 F: drivers/tty/serial/8250/8250_gsc.c
12956 F: drivers/video/console/sti*
12957 F: drivers/video/fbdev/sti*
12958 F: drivers/video/logo/logo_parisc*
12959 F: include/linux/hp_sdc.h
12960
12961 PARMAN
12962 M: Jiri Pirko <jiri@mellanox.com>
12963 L: netdev@vger.kernel.org
12964 S: Supported
12965 F: include/linux/parman.h
12966 F: lib/parman.c
12967 F: lib/test_parman.c
12968
12969 PC ENGINES APU BOARD DRIVER
12970 M: Enrico Weigelt, metux IT consult <info@metux.net>
12971 S: Maintained
12972 F: drivers/platform/x86/pcengines-apuv2.c
12973
12974 PC87360 HARDWARE MONITORING DRIVER
12975 M: Jim Cromie <jim.cromie@gmail.com>
12976 L: linux-hwmon@vger.kernel.org
12977 S: Maintained
12978 F: Documentation/hwmon/pc87360.rst
12979 F: drivers/hwmon/pc87360.c
12980
12981 PC8736x GPIO DRIVER
12982 M: Jim Cromie <jim.cromie@gmail.com>
12983 S: Maintained
12984 F: drivers/char/pc8736x_gpio.c
12985
12986 PC87427 HARDWARE MONITORING DRIVER
12987 M: Jean Delvare <jdelvare@suse.com>
12988 L: linux-hwmon@vger.kernel.org
12989 S: Maintained
12990 F: Documentation/hwmon/pc87427.rst
12991 F: drivers/hwmon/pc87427.c
12992
12993 PCA9532 LED DRIVER
12994 M: Riku Voipio <riku.voipio@iki.fi>
12995 S: Maintained
12996 F: drivers/leds/leds-pca9532.c
12997 F: include/linux/leds-pca9532.h
12998
12999 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13000 M: Guenter Roeck <linux@roeck-us.net>
13001 L: linux-i2c@vger.kernel.org
13002 S: Maintained
13003 F: drivers/i2c/muxes/i2c-mux-pca9541.c
13004
13005 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13006 M: Khalid Aziz <khalid@gonehiking.org>
13007 S: Maintained
13008 F: drivers/firmware/pcdp.*
13009
13010 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13011 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13012 L: linux-pci@vger.kernel.org
13013 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13014 S: Maintained
13015 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
13016 F: drivers/pci/controller/pci-aardvark.c
13017
13018 PCI DRIVER FOR ALTERA PCIE IP
13019 M: Ley Foon Tan <ley.foon.tan@intel.com>
13020 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
13021 L: linux-pci@vger.kernel.org
13022 S: Supported
13023 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
13024 F: drivers/pci/controller/pcie-altera.c
13025
13026 PCI DRIVER FOR APPLIEDMICRO XGENE
13027 M: Toan Le <toan@os.amperecomputing.com>
13028 L: linux-pci@vger.kernel.org
13029 L: linux-arm-kernel@lists.infradead.org
13030 S: Maintained
13031 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
13032 F: drivers/pci/controller/pci-xgene.c
13033
13034 PCI DRIVER FOR ARM VERSATILE PLATFORM
13035 M: Rob Herring <robh@kernel.org>
13036 L: linux-pci@vger.kernel.org
13037 L: linux-arm-kernel@lists.infradead.org
13038 S: Maintained
13039 F: Documentation/devicetree/bindings/pci/versatile.yaml
13040 F: drivers/pci/controller/pci-versatile.c
13041
13042 PCI DRIVER FOR ARMADA 8K
13043 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13044 L: linux-pci@vger.kernel.org
13045 L: linux-arm-kernel@lists.infradead.org
13046 S: Maintained
13047 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
13048 F: drivers/pci/controller/dwc/pcie-armada8k.c
13049
13050 PCI DRIVER FOR CADENCE PCIE IP
13051 M: Tom Joseph <tjoseph@cadence.com>
13052 L: linux-pci@vger.kernel.org
13053 S: Maintained
13054 F: Documentation/devicetree/bindings/pci/cdns,*
13055 F: drivers/pci/controller/cadence/
13056
13057 PCI DRIVER FOR FREESCALE LAYERSCAPE
13058 M: Minghuan Lian <minghuan.Lian@nxp.com>
13059 M: Mingkai Hu <mingkai.hu@nxp.com>
13060 M: Roy Zang <roy.zang@nxp.com>
13061 L: linuxppc-dev@lists.ozlabs.org
13062 L: linux-pci@vger.kernel.org
13063 L: linux-arm-kernel@lists.infradead.org
13064 S: Maintained
13065 F: drivers/pci/controller/dwc/*layerscape*
13066
13067 PCI DRIVER FOR GENERIC OF HOSTS
13068 M: Will Deacon <will@kernel.org>
13069 L: linux-pci@vger.kernel.org
13070 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13071 S: Maintained
13072 F: Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13073 F: drivers/pci/controller/pci-host-common.c
13074 F: drivers/pci/controller/pci-host-generic.c
13075
13076 PCI DRIVER FOR IMX6
13077 M: Richard Zhu <hongxing.zhu@nxp.com>
13078 M: Lucas Stach <l.stach@pengutronix.de>
13079 L: linux-pci@vger.kernel.org
13080 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13081 S: Maintained
13082 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13083 F: drivers/pci/controller/dwc/*imx6*
13084
13085 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13086 M: Jonathan Derrick <jonathan.derrick@intel.com>
13087 L: linux-pci@vger.kernel.org
13088 S: Supported
13089 F: drivers/pci/controller/vmd.c
13090
13091 PCI DRIVER FOR MICROSEMI SWITCHTEC
13092 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13093 M: Logan Gunthorpe <logang@deltatee.com>
13094 L: linux-pci@vger.kernel.org
13095 S: Maintained
13096 F: Documentation/ABI/testing/sysfs-class-switchtec
13097 F: Documentation/driver-api/switchtec.rst
13098 F: drivers/ntb/hw/mscc/
13099 F: drivers/pci/switch/switchtec*
13100 F: include/linux/switchtec.h
13101 F: include/uapi/linux/switchtec_ioctl.h
13102
13103 PCI DRIVER FOR MOBIVEIL PCIE IP
13104 M: Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13105 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13106 L: linux-pci@vger.kernel.org
13107 S: Supported
13108 F: Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13109 F: drivers/pci/controller/mobiveil/pcie-mobiveil*
13110
13111 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13112 M: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13113 M: Jason Cooper <jason@lakedaemon.net>
13114 L: linux-pci@vger.kernel.org
13115 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13116 S: Maintained
13117 F: drivers/pci/controller/*mvebu*
13118
13119 PCI DRIVER FOR NVIDIA TEGRA
13120 M: Thierry Reding <thierry.reding@gmail.com>
13121 L: linux-tegra@vger.kernel.org
13122 L: linux-pci@vger.kernel.org
13123 S: Supported
13124 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13125 F: drivers/pci/controller/pci-tegra.c
13126
13127 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13128 M: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13129 L: linux-pci@vger.kernel.org
13130 L: linux-arm-kernel@lists.infradead.org
13131 S: Maintained
13132 F: Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13133 F: drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13134
13135 PCI DRIVER FOR RENESAS R-CAR
13136 M: Marek Vasut <marek.vasut+renesas@gmail.com>
13137 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13138 L: linux-pci@vger.kernel.org
13139 L: linux-renesas-soc@vger.kernel.org
13140 S: Maintained
13141 F: Documentation/devicetree/bindings/pci/*rcar*
13142 F: drivers/pci/controller/*rcar*
13143
13144 PCI DRIVER FOR SAMSUNG EXYNOS
13145 M: Jingoo Han <jingoohan1@gmail.com>
13146 L: linux-pci@vger.kernel.org
13147 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13148 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13149 S: Maintained
13150 F: drivers/pci/controller/dwc/pci-exynos.c
13151
13152 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13153 M: Jingoo Han <jingoohan1@gmail.com>
13154 M: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13155 L: linux-pci@vger.kernel.org
13156 S: Maintained
13157 F: Documentation/devicetree/bindings/pci/designware-pcie.txt
13158 F: drivers/pci/controller/dwc/*designware*
13159
13160 PCI DRIVER FOR TI DRA7XX
13161 M: Kishon Vijay Abraham I <kishon@ti.com>
13162 L: linux-omap@vger.kernel.org
13163 L: linux-pci@vger.kernel.org
13164 S: Supported
13165 F: Documentation/devicetree/bindings/pci/ti-pci.txt
13166 F: drivers/pci/controller/dwc/pci-dra7xx.c
13167
13168 PCI DRIVER FOR TI KEYSTONE
13169 M: Murali Karicheri <m-karicheri2@ti.com>
13170 L: linux-pci@vger.kernel.org
13171 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13172 S: Maintained
13173 F: drivers/pci/controller/dwc/pci-keystone.c
13174
13175 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13176 M: Linus Walleij <linus.walleij@linaro.org>
13177 L: linux-pci@vger.kernel.org
13178 S: Maintained
13179 F: Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13180 F: drivers/pci/controller/pci-v3-semi.c
13181
13182 PCI ENDPOINT SUBSYSTEM
13183 M: Kishon Vijay Abraham I <kishon@ti.com>
13184 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13185 L: linux-pci@vger.kernel.org
13186 S: Supported
13187 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13188 F: drivers/misc/pci_endpoint_test.c
13189 F: drivers/pci/endpoint/
13190 F: tools/pci/
13191
13192 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13193 M: Russell Currey <ruscur@russell.cc>
13194 M: Sam Bobroff <sbobroff@linux.ibm.com>
13195 M: Oliver O'Halloran <oohall@gmail.com>
13196 L: linuxppc-dev@lists.ozlabs.org
13197 S: Supported
13198 F: Documentation/PCI/pci-error-recovery.rst
13199 F: Documentation/powerpc/eeh-pci-error-recovery.rst
13200 F: arch/powerpc/include/*/eeh*.h
13201 F: arch/powerpc/kernel/eeh*.c
13202 F: arch/powerpc/platforms/*/eeh*.c
13203 F: drivers/pci/pcie/aer.c
13204 F: drivers/pci/pcie/dpc.c
13205 F: drivers/pci/pcie/err.c
13206
13207 PCI ERROR RECOVERY
13208 M: Linas Vepstas <linasvepstas@gmail.com>
13209 L: linux-pci@vger.kernel.org
13210 S: Supported
13211 F: Documentation/PCI/pci-error-recovery.rst
13212
13213 PCI MSI DRIVER FOR ALTERA MSI IP
13214 M: Ley Foon Tan <ley.foon.tan@intel.com>
13215 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
13216 L: linux-pci@vger.kernel.org
13217 S: Supported
13218 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13219 F: drivers/pci/controller/pcie-altera-msi.c
13220
13221 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13222 M: Toan Le <toan@os.amperecomputing.com>
13223 L: linux-pci@vger.kernel.org
13224 L: linux-arm-kernel@lists.infradead.org
13225 S: Maintained
13226 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13227 F: drivers/pci/controller/pci-xgene-msi.c
13228
13229 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13230 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13231 R: Rob Herring <robh@kernel.org>
13232 L: linux-pci@vger.kernel.org
13233 S: Supported
13234 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
13235 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13236 F: drivers/pci/controller/
13237
13238 PCI SUBSYSTEM
13239 M: Bjorn Helgaas <bhelgaas@google.com>
13240 L: linux-pci@vger.kernel.org
13241 S: Supported
13242 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
13243 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13244 F: Documentation/PCI/
13245 F: Documentation/devicetree/bindings/pci/
13246 F: arch/x86/kernel/early-quirks.c
13247 F: arch/x86/kernel/quirks.c
13248 F: arch/x86/pci/
13249 F: drivers/acpi/pci*
13250 F: drivers/pci/
13251 F: include/asm-generic/pci*
13252 F: include/linux/of_pci.h
13253 F: include/linux/pci*
13254 F: include/uapi/linux/pci*
13255 F: lib/pci*
13256
13257 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13258 M: Jonathan Chocron <jonnyc@amazon.com>
13259 L: linux-pci@vger.kernel.org
13260 S: Maintained
13261 F: Documentation/devicetree/bindings/pci/pcie-al.txt
13262 F: drivers/pci/controller/dwc/pcie-al.c
13263
13264 PCIE DRIVER FOR AMLOGIC MESON
13265 M: Yue Wang <yue.wang@Amlogic.com>
13266 L: linux-pci@vger.kernel.org
13267 L: linux-amlogic@lists.infradead.org
13268 S: Maintained
13269 F: drivers/pci/controller/dwc/pci-meson.c
13270
13271 PCIE DRIVER FOR AXIS ARTPEC
13272 M: Jesper Nilsson <jesper.nilsson@axis.com>
13273 L: linux-arm-kernel@axis.com
13274 L: linux-pci@vger.kernel.org
13275 S: Maintained
13276 F: Documentation/devicetree/bindings/pci/axis,artpec*
13277 F: drivers/pci/controller/dwc/*artpec*
13278
13279 PCIE DRIVER FOR CAVIUM THUNDERX
13280 M: Robert Richter <rrichter@marvell.com>
13281 L: linux-pci@vger.kernel.org
13282 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13283 S: Supported
13284 F: drivers/pci/controller/pci-thunder-*
13285
13286 PCIE DRIVER FOR HISILICON
13287 M: Zhou Wang <wangzhou1@hisilicon.com>
13288 L: linux-pci@vger.kernel.org
13289 S: Maintained
13290 F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13291 F: drivers/pci/controller/dwc/pcie-hisi.c
13292
13293 PCIE DRIVER FOR HISILICON KIRIN
13294 M: Xiaowei Song <songxiaowei@hisilicon.com>
13295 M: Binghui Wang <wangbinghui@hisilicon.com>
13296 L: linux-pci@vger.kernel.org
13297 S: Maintained
13298 F: Documentation/devicetree/bindings/pci/kirin-pcie.txt
13299 F: drivers/pci/controller/dwc/pcie-kirin.c
13300
13301 PCIE DRIVER FOR HISILICON STB
13302 M: Shawn Guo <shawn.guo@linaro.org>
13303 L: linux-pci@vger.kernel.org
13304 S: Maintained
13305 F: Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13306 F: drivers/pci/controller/dwc/pcie-histb.c
13307
13308 PCIE DRIVER FOR MEDIATEK
13309 M: Ryder Lee <ryder.lee@mediatek.com>
13310 L: linux-pci@vger.kernel.org
13311 L: linux-mediatek@lists.infradead.org
13312 S: Supported
13313 F: Documentation/devicetree/bindings/pci/mediatek*
13314 F: drivers/pci/controller/*mediatek*
13315
13316 PCIE DRIVER FOR QUALCOMM MSM
13317 M: Stanimir Varbanov <svarbanov@mm-sol.com>
13318 L: linux-pci@vger.kernel.org
13319 L: linux-arm-msm@vger.kernel.org
13320 S: Maintained
13321 F: drivers/pci/controller/dwc/*qcom*
13322
13323 PCIE DRIVER FOR ROCKCHIP
13324 M: Shawn Lin <shawn.lin@rock-chips.com>
13325 L: linux-pci@vger.kernel.org
13326 L: linux-rockchip@lists.infradead.org
13327 S: Maintained
13328 F: Documentation/devicetree/bindings/pci/rockchip-pcie*
13329 F: drivers/pci/controller/pcie-rockchip*
13330
13331 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13332 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13333 L: linux-pci@vger.kernel.org
13334 S: Maintained
13335 F: Documentation/devicetree/bindings/pci/uniphier-pcie*
13336 F: drivers/pci/controller/dwc/pcie-uniphier*
13337
13338 PCIE DRIVER FOR ST SPEAR13XX
13339 M: Pratyush Anand <pratyush.anand@gmail.com>
13340 L: linux-pci@vger.kernel.org
13341 S: Maintained
13342 F: drivers/pci/controller/dwc/*spear*
13343
13344 PCMCIA SUBSYSTEM
13345 M: Dominik Brodowski <linux@dominikbrodowski.net>
13346 S: Odd Fixes
13347 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13348 F: Documentation/pcmcia/
13349 F: drivers/pcmcia/
13350 F: include/pcmcia/
13351 F: tools/pcmcia/
13352
13353 PCNET32 NETWORK DRIVER
13354 M: Don Fry <pcnet32@frontier.com>
13355 L: netdev@vger.kernel.org
13356 S: Maintained
13357 F: drivers/net/ethernet/amd/pcnet32.c
13358
13359 PCRYPT PARALLEL CRYPTO ENGINE
13360 M: Steffen Klassert <steffen.klassert@secunet.com>
13361 L: linux-crypto@vger.kernel.org
13362 S: Maintained
13363 F: crypto/pcrypt.c
13364 F: include/crypto/pcrypt.h
13365
13366 PEAQ WMI HOTKEYS DRIVER
13367 M: Hans de Goede <hdegoede@redhat.com>
13368 L: platform-driver-x86@vger.kernel.org
13369 S: Maintained
13370 F: drivers/platform/x86/peaq-wmi.c
13371
13372 PENSANDO ETHERNET DRIVERS
13373 M: Shannon Nelson <snelson@pensando.io>
13374 M: Pensando Drivers <drivers@pensando.io>
13375 L: netdev@vger.kernel.org
13376 S: Supported
13377 F: Documentation/networking/device_drivers/pensando/ionic.rst
13378 F: drivers/net/ethernet/pensando/
13379
13380 PER-CPU MEMORY ALLOCATOR
13381 M: Dennis Zhou <dennis@kernel.org>
13382 M: Tejun Heo <tj@kernel.org>
13383 M: Christoph Lameter <cl@linux.com>
13384 S: Maintained
13385 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13386 F: arch/*/include/asm/percpu.h
13387 F: include/linux/percpu*.h
13388 F: mm/percpu*.c
13389
13390 PER-TASK DELAY ACCOUNTING
13391 M: Balbir Singh <bsingharora@gmail.com>
13392 S: Maintained
13393 F: include/linux/delayacct.h
13394 F: kernel/delayacct.c
13395
13396 PERFORMANCE EVENTS SUBSYSTEM
13397 M: Peter Zijlstra <peterz@infradead.org>
13398 M: Ingo Molnar <mingo@redhat.com>
13399 M: Arnaldo Carvalho de Melo <acme@kernel.org>
13400 R: Mark Rutland <mark.rutland@arm.com>
13401 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
13402 R: Jiri Olsa <jolsa@redhat.com>
13403 R: Namhyung Kim <namhyung@kernel.org>
13404 L: linux-kernel@vger.kernel.org
13405 S: Supported
13406 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13407 F: arch/*/events/*
13408 F: arch/*/events/*/*
13409 F: arch/*/include/asm/perf_event.h
13410 F: arch/*/kernel/*/*/perf_event*.c
13411 F: arch/*/kernel/*/perf_event*.c
13412 F: arch/*/kernel/perf_callchain.c
13413 F: arch/*/kernel/perf_event*.c
13414 F: include/linux/perf_event.h
13415 F: include/uapi/linux/perf_event.h
13416 F: kernel/events/*
13417 F: tools/perf/
13418
13419 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13420 R: John Garry <john.garry@huawei.com>
13421 R: Will Deacon <will@kernel.org>
13422 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13423 S: Supported
13424 F: tools/perf/pmu-events/arch/arm64/
13425
13426 PERSONALITY HANDLING
13427 M: Christoph Hellwig <hch@infradead.org>
13428 L: linux-abi-devel@lists.sourceforge.net
13429 S: Maintained
13430 F: include/linux/personality.h
13431 F: include/uapi/linux/personality.h
13432
13433 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13434 M: Marcus Folkesson <marcus.folkesson@gmail.com>
13435 L: linux-input@vger.kernel.org
13436 S: Maintained
13437 F: Documentation/input/devices/pxrc.rst
13438 F: drivers/input/joystick/pxrc.c
13439
13440 PHONET PROTOCOL
13441 M: Remi Denis-Courmont <courmisch@gmail.com>
13442 S: Supported
13443 F: Documentation/networking/phonet.rst
13444 F: include/linux/phonet.h
13445 F: include/net/phonet/
13446 F: include/uapi/linux/phonet.h
13447 F: net/phonet/
13448
13449 PHRAM MTD DRIVER
13450 M: Joern Engel <joern@lazybastard.org>
13451 L: linux-mtd@lists.infradead.org
13452 S: Maintained
13453 F: drivers/mtd/devices/phram.c
13454
13455 PICOLCD HID DRIVER
13456 M: Bruno Prémont <bonbons@linux-vserver.org>
13457 L: linux-input@vger.kernel.org
13458 S: Maintained
13459 F: drivers/hid/hid-picolcd*
13460
13461 PICOXCELL SUPPORT
13462 M: Jamie Iles <jamie@jamieiles.com>
13463 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13464 S: Supported
13465 T: git git://github.com/jamieiles/linux-2.6-ji.git
13466 F: arch/arm/boot/dts/picoxcell*
13467 F: arch/arm/mach-picoxcell/
13468 F: drivers/crypto/picoxcell*
13469
13470 PIDFD API
13471 M: Christian Brauner <christian@brauner.io>
13472 L: linux-kernel@vger.kernel.org
13473 S: Maintained
13474 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13475 F: samples/pidfd/
13476 F: tools/testing/selftests/clone3/
13477 F: tools/testing/selftests/pid_namespace/
13478 F: tools/testing/selftests/pidfd/
13479 K: (?i)pidfd
13480 K: (?i)clone3
13481 K: \b(clone_args|kernel_clone_args)\b
13482
13483 PIN CONTROL SUBSYSTEM
13484 M: Linus Walleij <linus.walleij@linaro.org>
13485 L: linux-gpio@vger.kernel.org
13486 S: Maintained
13487 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13488 F: Documentation/devicetree/bindings/pinctrl/
13489 F: Documentation/driver-api/pinctl.rst
13490 F: drivers/pinctrl/
13491 F: include/linux/pinctrl/
13492
13493 PIN CONTROLLER - FREESCALE
13494 M: Dong Aisheng <aisheng.dong@nxp.com>
13495 M: Fabio Estevam <festevam@gmail.com>
13496 M: Shawn Guo <shawnguo@kernel.org>
13497 M: Stefan Agner <stefan@agner.ch>
13498 R: Pengutronix Kernel Team <kernel@pengutronix.de>
13499 L: linux-gpio@vger.kernel.org
13500 S: Maintained
13501 F: Documentation/devicetree/bindings/pinctrl/fsl,*
13502 F: drivers/pinctrl/freescale/
13503
13504 PIN CONTROLLER - INTEL
13505 M: Mika Westerberg <mika.westerberg@linux.intel.com>
13506 M: Andy Shevchenko <andy@kernel.org>
13507 S: Maintained
13508 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13509 F: drivers/pinctrl/intel/
13510
13511 PIN CONTROLLER - MEDIATEK
13512 M: Sean Wang <sean.wang@kernel.org>
13513 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13514 S: Maintained
13515 F: Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13516 F: Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13517 F: drivers/pinctrl/mediatek/
13518
13519 PIN CONTROLLER - MICROCHIP AT91
13520 M: Ludovic Desroches <ludovic.desroches@microchip.com>
13521 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13522 L: linux-gpio@vger.kernel.org
13523 S: Supported
13524 F: drivers/gpio/gpio-sama5d2-piobu.c
13525 F: drivers/pinctrl/pinctrl-at91*
13526
13527 PIN CONTROLLER - QUALCOMM
13528 M: Bjorn Andersson <bjorn.andersson@linaro.org>
13529 L: linux-arm-msm@vger.kernel.org
13530 S: Maintained
13531 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13532 F: drivers/pinctrl/qcom/
13533
13534 PIN CONTROLLER - RENESAS
13535 M: Geert Uytterhoeven <geert+renesas@glider.be>
13536 L: linux-renesas-soc@vger.kernel.org
13537 S: Supported
13538 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13539 F: Documentation/devicetree/bindings/pinctrl/renesas,*
13540 F: drivers/pinctrl/pinctrl-rz*
13541 F: drivers/pinctrl/sh-pfc/
13542
13543 PIN CONTROLLER - SAMSUNG
13544 M: Tomasz Figa <tomasz.figa@gmail.com>
13545 M: Krzysztof Kozlowski <krzk@kernel.org>
13546 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
13547 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13548 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13549 S: Maintained
13550 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
13551 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13552 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13553 F: drivers/pinctrl/samsung/
13554 F: include/dt-bindings/pinctrl/samsung.h
13555
13556 PIN CONTROLLER - SINGLE
13557 M: Tony Lindgren <tony@atomide.com>
13558 M: Haojian Zhuang <haojian.zhuang@linaro.org>
13559 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13560 L: linux-omap@vger.kernel.org
13561 S: Maintained
13562 F: drivers/pinctrl/pinctrl-single.c
13563
13564 PIN CONTROLLER - ST SPEAR
13565 M: Viresh Kumar <vireshk@kernel.org>
13566 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13567 S: Maintained
13568 W: http://www.st.com/spear
13569 F: drivers/pinctrl/spear/
13570
13571 PISTACHIO SOC SUPPORT
13572 M: James Hartley <james.hartley@sondrel.com>
13573 L: linux-mips@vger.kernel.org
13574 S: Odd Fixes
13575 F: arch/mips/boot/dts/img/pistachio*
13576 F: arch/mips/configs/pistachio*_defconfig
13577 F: arch/mips/include/asm/mach-pistachio/
13578 F: arch/mips/pistachio/
13579
13580 PKTCDVD DRIVER
13581 M: linux-block@vger.kernel.org
13582 S: Orphan
13583 F: drivers/block/pktcdvd.c
13584 F: include/linux/pktcdvd.h
13585 F: include/uapi/linux/pktcdvd.h
13586
13587 PKUNITY SOC DRIVERS
13588 M: Guan Xuetao <gxt@pku.edu.cn>
13589 S: Maintained
13590 W: http://mprc.pku.edu.cn/~guanxuetao/linux
13591 T: git git://github.com/gxt/linux.git
13592 F: drivers/i2c/busses/i2c-puv3.c
13593 F: drivers/input/serio/i8042-unicore32io.h
13594 F: drivers/rtc/rtc-puv3.c
13595 F: drivers/video/fbdev/fb-puv3.c
13596
13597 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13598 M: Tomasz Duszynski <tduszyns@gmail.com>
13599 S: Maintained
13600 F: Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13601 F: drivers/iio/chemical/pms7003.c
13602
13603 PLX DMA DRIVER
13604 M: Logan Gunthorpe <logang@deltatee.com>
13605 S: Maintained
13606 F: drivers/dma/plx_dma.c
13607
13608 PM-GRAPH UTILITY
13609 M: "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13610 L: linux-pm@vger.kernel.org
13611 S: Supported
13612 W: https://01.org/pm-graph
13613 B: https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13614 T: git git://github.com/intel/pm-graph
13615 F: tools/power/pm-graph
13616
13617 PMBUS HARDWARE MONITORING DRIVERS
13618 M: Guenter Roeck <linux@roeck-us.net>
13619 L: linux-hwmon@vger.kernel.org
13620 S: Maintained
13621 W: http://hwmon.wiki.kernel.org/
13622 W: http://www.roeck-us.net/linux/drivers/
13623 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13624 F: Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13625 F: Documentation/devicetree/bindings/hwmon/ltc2978.txt
13626 F: Documentation/devicetree/bindings/hwmon/max31785.txt
13627 F: Documentation/hwmon/adm1275.rst
13628 F: Documentation/hwmon/ibm-cffps.rst
13629 F: Documentation/hwmon/ir35221.rst
13630 F: Documentation/hwmon/lm25066.rst
13631 F: Documentation/hwmon/ltc2978.rst
13632 F: Documentation/hwmon/ltc3815.rst
13633 F: Documentation/hwmon/max16064.rst
13634 F: Documentation/hwmon/max20751.rst
13635 F: Documentation/hwmon/max31785.rst
13636 F: Documentation/hwmon/max34440.rst
13637 F: Documentation/hwmon/max8688.rst
13638 F: Documentation/hwmon/pmbus-core.rst
13639 F: Documentation/hwmon/pmbus.rst
13640 F: Documentation/hwmon/tps40422.rst
13641 F: Documentation/hwmon/ucd9000.rst
13642 F: Documentation/hwmon/ucd9200.rst
13643 F: Documentation/hwmon/zl6100.rst
13644 F: drivers/hwmon/pmbus/
13645 F: include/linux/pmbus.h
13646
13647 PMC SIERRA MaxRAID DRIVER
13648 L: linux-scsi@vger.kernel.org
13649 S: Orphan
13650 W: http://www.pmc-sierra.com/
13651 F: drivers/scsi/pmcraid.*
13652
13653 PMC SIERRA PM8001 DRIVER
13654 M: Jack Wang <jinpu.wang@cloud.ionos.com>
13655 L: linux-scsi@vger.kernel.org
13656 S: Supported
13657 F: drivers/scsi/pm8001/
13658
13659 PNI RM3100 IIO DRIVER
13660 M: Song Qiang <songqiang1304521@gmail.com>
13661 L: linux-iio@vger.kernel.org
13662 S: Maintained
13663 F: Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13664 F: drivers/iio/magnetometer/rm3100*
13665
13666 PNP SUPPORT
13667 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13668 L: linux-acpi@vger.kernel.org
13669 S: Maintained
13670 F: drivers/pnp/
13671 F: include/linux/pnp.h
13672
13673 POSIX CLOCKS and TIMERS
13674 M: Thomas Gleixner <tglx@linutronix.de>
13675 L: linux-kernel@vger.kernel.org
13676 S: Maintained
13677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13678 F: fs/timerfd.c
13679 F: include/linux/time_namespace.h
13680 F: include/linux/timer*
13681 F: kernel/time/*timer*
13682 F: kernel/time/namespace.c
13683
13684 POWER MANAGEMENT CORE
13685 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
13686 L: linux-pm@vger.kernel.org
13687 S: Supported
13688 B: https://bugzilla.kernel.org
13689 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13690 F: drivers/base/power/
13691 F: drivers/powercap/
13692 F: include/linux/intel_rapl.h
13693 F: include/linux/pm.h
13694 F: include/linux/pm_*
13695 F: include/linux/powercap.h
13696 F: kernel/configs/nopm.config
13697
13698 POWER STATE COORDINATION INTERFACE (PSCI)
13699 M: Mark Rutland <mark.rutland@arm.com>
13700 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13701 L: linux-arm-kernel@lists.infradead.org
13702 S: Maintained
13703 F: drivers/firmware/psci/
13704 F: include/linux/psci.h
13705 F: include/uapi/linux/psci.h
13706
13707 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13708 M: Sebastian Reichel <sre@kernel.org>
13709 L: linux-pm@vger.kernel.org
13710 S: Maintained
13711 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13712 F: Documentation/ABI/testing/sysfs-class-power
13713 F: Documentation/devicetree/bindings/power/supply/
13714 F: drivers/power/supply/
13715 F: include/linux/power_supply.h
13716
13717 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13718 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13719 L: linuxppc-dev@lists.ozlabs.org
13720 S: Maintained
13721 F: drivers/char/powernv-op-panel.c
13722
13723 PPP OVER ATM (RFC 2364)
13724 M: Mitchell Blank Jr <mitch@sfgoth.com>
13725 S: Maintained
13726 F: include/uapi/linux/atmppp.h
13727 F: net/atm/pppoatm.c
13728
13729 PPP OVER ETHERNET
13730 M: Michal Ostrowski <mostrows@earthlink.net>
13731 S: Maintained
13732 F: drivers/net/ppp/pppoe.c
13733 F: drivers/net/ppp/pppox.c
13734
13735 PPP OVER L2TP
13736 M: James Chapman <jchapman@katalix.com>
13737 S: Maintained
13738 F: include/linux/if_pppol2tp.h
13739 F: include/uapi/linux/if_pppol2tp.h
13740 F: net/l2tp/l2tp_ppp.c
13741
13742 PPP PROTOCOL DRIVERS AND COMPRESSORS
13743 M: Paul Mackerras <paulus@samba.org>
13744 L: linux-ppp@vger.kernel.org
13745 S: Maintained
13746 F: drivers/net/ppp/ppp_*
13747
13748 PPS SUPPORT
13749 M: Rodolfo Giometti <giometti@enneenne.com>
13750 L: linuxpps@ml.enneenne.com (subscribers-only)
13751 S: Maintained
13752 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
13753 F: Documentation/ABI/testing/sysfs-pps
13754 F: Documentation/devicetree/bindings/pps/pps-gpio.txt
13755 F: Documentation/driver-api/pps.rst
13756 F: drivers/pps/
13757 F: include/linux/pps*.h
13758 F: include/uapi/linux/pps.h
13759
13760 PPTP DRIVER
13761 M: Dmitry Kozlov <xeb@mail.ru>
13762 L: netdev@vger.kernel.org
13763 S: Maintained
13764 W: http://sourceforge.net/projects/accel-pptp
13765 F: drivers/net/ppp/pptp.c
13766
13767 PRESSURE STALL INFORMATION (PSI)
13768 M: Johannes Weiner <hannes@cmpxchg.org>
13769 S: Maintained
13770 F: include/linux/psi*
13771 F: kernel/sched/psi.c
13772
13773 PRINTK
13774 M: Petr Mladek <pmladek@suse.com>
13775 M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13776 R: Steven Rostedt <rostedt@goodmis.org>
13777 S: Maintained
13778 F: include/linux/printk.h
13779 F: kernel/printk/
13780
13781 PRISM54 WIRELESS DRIVER
13782 M: Luis Chamberlain <mcgrof@kernel.org>
13783 L: linux-wireless@vger.kernel.org
13784 S: Obsolete
13785 W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
13786 F: drivers/net/wireless/intersil/prism54/
13787
13788 PROC FILESYSTEM
13789 R: Alexey Dobriyan <adobriyan@gmail.com>
13790 L: linux-kernel@vger.kernel.org
13791 L: linux-fsdevel@vger.kernel.org
13792 S: Maintained
13793 F: Documentation/filesystems/proc.rst
13794 F: fs/proc/
13795 F: include/linux/proc_fs.h
13796 F: tools/testing/selftests/proc/
13797
13798 PROC SYSCTL
13799 M: Luis Chamberlain <mcgrof@kernel.org>
13800 M: Kees Cook <keescook@chromium.org>
13801 M: Iurii Zaikin <yzaikin@google.com>
13802 L: linux-kernel@vger.kernel.org
13803 L: linux-fsdevel@vger.kernel.org
13804 S: Maintained
13805 F: fs/proc/proc_sysctl.c
13806 F: include/linux/sysctl.h
13807 F: kernel/sysctl-test.c
13808 F: kernel/sysctl.c
13809 F: tools/testing/selftests/sysctl/
13810
13811 PS3 NETWORK SUPPORT
13812 M: Geoff Levand <geoff@infradead.org>
13813 L: netdev@vger.kernel.org
13814 L: linuxppc-dev@lists.ozlabs.org
13815 S: Maintained
13816 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
13817
13818 PS3 PLATFORM SUPPORT
13819 M: Geoff Levand <geoff@infradead.org>
13820 L: linuxppc-dev@lists.ozlabs.org
13821 S: Maintained
13822 F: arch/powerpc/boot/ps3*
13823 F: arch/powerpc/include/asm/lv1call.h
13824 F: arch/powerpc/include/asm/ps3*.h
13825 F: arch/powerpc/platforms/ps3/
13826 F: drivers/*/ps3*
13827 F: drivers/ps3/
13828 F: drivers/rtc/rtc-ps3.c
13829 F: drivers/usb/host/*ps3.c
13830 F: sound/ppc/snd_ps3*
13831
13832 PS3VRAM DRIVER
13833 M: Jim Paris <jim@jtan.com>
13834 M: Geoff Levand <geoff@infradead.org>
13835 L: linuxppc-dev@lists.ozlabs.org
13836 S: Maintained
13837 F: drivers/block/ps3vram.c
13838
13839 PSAMPLE PACKET SAMPLING SUPPORT
13840 M: Yotam Gigi <yotam.gi@gmail.com>
13841 S: Maintained
13842 F: include/net/psample.h
13843 F: include/uapi/linux/psample.h
13844 F: net/psample
13845
13846 PSTORE FILESYSTEM
13847 M: Kees Cook <keescook@chromium.org>
13848 M: Anton Vorontsov <anton@enomsg.org>
13849 M: Colin Cross <ccross@android.com>
13850 M: Tony Luck <tony.luck@intel.com>
13851 S: Maintained
13852 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13853 F: Documentation/admin-guide/ramoops.rst
13854 F: Documentation/admin-guide/pstore-blk.rst
13855 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13856 F: drivers/acpi/apei/erst.c
13857 F: drivers/firmware/efi/efi-pstore.c
13858 F: fs/pstore/
13859 F: include/linux/pstore*
13860 K: \b(pstore|ramoops)
13861
13862 PTP HARDWARE CLOCK SUPPORT
13863 M: Richard Cochran <richardcochran@gmail.com>
13864 L: netdev@vger.kernel.org
13865 S: Maintained
13866 W: http://linuxptp.sourceforge.net/
13867 F: Documentation/ABI/testing/sysfs-ptp
13868 F: Documentation/driver-api/ptp.rst
13869 F: drivers/net/phy/dp83640*
13870 F: drivers/ptp/*
13871 F: include/linux/ptp_cl*
13872
13873 PTRACE SUPPORT
13874 M: Oleg Nesterov <oleg@redhat.com>
13875 S: Maintained
13876 F: arch/*/*/ptrace*.c
13877 F: arch/*/include/asm/ptrace*.h
13878 F: arch/*/ptrace*.c
13879 F: include/asm-generic/syscall.h
13880 F: include/linux/ptrace.h
13881 F: include/linux/regset.h
13882 F: include/linux/tracehook.h
13883 F: include/uapi/linux/ptrace.h
13884 F: include/uapi/linux/ptrace.h
13885 F: kernel/ptrace.c
13886
13887 PULSE8-CEC DRIVER
13888 M: Hans Verkuil <hverkuil@xs4all.nl>
13889 L: linux-media@vger.kernel.org
13890 S: Maintained
13891 T: git git://linuxtv.org/media_tree.git
13892 F: Documentation/admin-guide/media/pulse8-cec.rst
13893 F: drivers/media/cec/usb/pulse8/
13894
13895 PVRUSB2 VIDEO4LINUX DRIVER
13896 M: Mike Isely <isely@pobox.com>
13897 L: pvrusb2@isely.net (subscribers-only)
13898 L: linux-media@vger.kernel.org
13899 S: Maintained
13900 W: http://www.isely.net/pvrusb2/
13901 T: git git://linuxtv.org/media_tree.git
13902 F: Documentation/driver-api/media/drivers/pvrusb2*
13903 F: drivers/media/usb/pvrusb2/
13904
13905 PWC WEBCAM DRIVER
13906 M: Hans Verkuil <hverkuil@xs4all.nl>
13907 L: linux-media@vger.kernel.org
13908 S: Odd Fixes
13909 T: git git://linuxtv.org/media_tree.git
13910 F: drivers/media/usb/pwc/*
13911 F: include/trace/events/pwc.h
13912
13913 PWM FAN DRIVER
13914 M: Kamil Debski <kamil@wypas.org>
13915 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13916 L: linux-hwmon@vger.kernel.org
13917 S: Supported
13918 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13919 F: Documentation/hwmon/pwm-fan.rst
13920 F: drivers/hwmon/pwm-fan.c
13921
13922 PWM IR Transmitter
13923 M: Sean Young <sean@mess.org>
13924 L: linux-media@vger.kernel.org
13925 S: Maintained
13926 F: drivers/media/rc/pwm-ir-tx.c
13927
13928 PWM SUBSYSTEM
13929 M: Thierry Reding <thierry.reding@gmail.com>
13930 R: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13931 M: Lee Jones <lee.jones@linaro.org>
13932 L: linux-pwm@vger.kernel.org
13933 S: Maintained
13934 Q: https://patchwork.ozlabs.org/project/linux-pwm/list/
13935 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13936 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13937 F: Documentation/devicetree/bindings/pwm/
13938 F: Documentation/driver-api/pwm.rst
13939 F: drivers/gpio/gpio-mvebu.c
13940 F: drivers/pwm/
13941 F: drivers/video/backlight/pwm_bl.c
13942 F: include/linux/pwm.h
13943 F: include/linux/pwm_backlight.h
13944 K: pwm_(config|apply_state|ops)
13945
13946 PXA GPIO DRIVER
13947 M: Robert Jarzmik <robert.jarzmik@free.fr>
13948 L: linux-gpio@vger.kernel.org
13949 S: Maintained
13950 F: drivers/gpio/gpio-pxa.c
13951
13952 PXA MMCI DRIVER
13953 S: Orphan
13954
13955 PXA RTC DRIVER
13956 M: Robert Jarzmik <robert.jarzmik@free.fr>
13957 L: linux-rtc@vger.kernel.org
13958 S: Maintained
13959
13960 PXA2xx/PXA3xx SUPPORT
13961 M: Daniel Mack <daniel@zonque.org>
13962 M: Haojian Zhuang <haojian.zhuang@gmail.com>
13963 M: Robert Jarzmik <robert.jarzmik@free.fr>
13964 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13965 S: Maintained
13966 T: git git://github.com/hzhuang1/linux.git
13967 T: git git://github.com/rjarzmik/linux.git
13968 F: arch/arm/boot/dts/pxa*
13969 F: arch/arm/mach-pxa/
13970 F: drivers/dma/pxa*
13971 F: drivers/pcmcia/pxa2xx*
13972 F: drivers/pinctrl/pxa/
13973 F: drivers/spi/spi-pxa2xx*
13974 F: drivers/usb/gadget/udc/pxa2*
13975 F: include/sound/pxa2xx-lib.h
13976 F: sound/arm/pxa*
13977 F: sound/soc/pxa/
13978
13979 QAT DRIVER
13980 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13981 L: qat-linux@intel.com
13982 S: Supported
13983 F: drivers/crypto/qat/
13984
13985 QCOM AUDIO (ASoC) DRIVERS
13986 M: Patrick Lai <plai@codeaurora.org>
13987 M: Banajit Goswami <bgoswami@codeaurora.org>
13988 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13989 S: Supported
13990 F: sound/soc/qcom/
13991
13992 QCOM IPA DRIVER
13993 M: Alex Elder <elder@kernel.org>
13994 L: netdev@vger.kernel.org
13995 S: Supported
13996 F: drivers/net/ipa/
13997
13998 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13999 M: Gabriel Somlo <somlo@cmu.edu>
14000 M: "Michael S. Tsirkin" <mst@redhat.com>
14001 L: qemu-devel@nongnu.org
14002 S: Maintained
14003 F: drivers/firmware/qemu_fw_cfg.c
14004 F: include/uapi/linux/qemu_fw_cfg.h
14005
14006 QIB DRIVER
14007 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
14008 M: Mike Marciniszyn <mike.marciniszyn@intel.com>
14009 L: linux-rdma@vger.kernel.org
14010 S: Supported
14011 F: drivers/infiniband/hw/qib/
14012
14013 QLOGIC QL41xxx FCOE DRIVER
14014 M: QLogic-Storage-Upstream@cavium.com
14015 L: linux-scsi@vger.kernel.org
14016 S: Supported
14017 F: drivers/scsi/qedf/
14018
14019 QLOGIC QL41xxx ISCSI DRIVER
14020 M: QLogic-Storage-Upstream@cavium.com
14021 L: linux-scsi@vger.kernel.org
14022 S: Supported
14023 F: drivers/scsi/qedi/
14024
14025 QLOGIC QL4xxx ETHERNET DRIVER
14026 M: Ariel Elior <aelior@marvell.com>
14027 M: GR-everest-linux-l2@marvell.com
14028 L: netdev@vger.kernel.org
14029 S: Supported
14030 F: drivers/net/ethernet/qlogic/qed/
14031 F: drivers/net/ethernet/qlogic/qede/
14032 F: include/linux/qed/
14033
14034 QLOGIC QL4xxx RDMA DRIVER
14035 M: Michal Kalderon <mkalderon@marvell.com>
14036 M: Ariel Elior <aelior@marvell.com>
14037 L: linux-rdma@vger.kernel.org
14038 S: Supported
14039 F: drivers/infiniband/hw/qedr/
14040 F: include/uapi/rdma/qedr-abi.h
14041
14042 QLOGIC QLA1280 SCSI DRIVER
14043 M: Michael Reed <mdr@sgi.com>
14044 L: linux-scsi@vger.kernel.org
14045 S: Maintained
14046 F: drivers/scsi/qla1280.[ch]
14047
14048 QLOGIC QLA2XXX FC-SCSI DRIVER
14049 M: Nilesh Javali <njavali@marvell.com>
14050 M: GR-QLogic-Storage-Upstream@marvell.com
14051 L: linux-scsi@vger.kernel.org
14052 S: Supported
14053 F: Documentation/scsi/LICENSE.qla2xxx
14054 F: drivers/scsi/qla2xxx/
14055
14056 QLOGIC QLA3XXX NETWORK DRIVER
14057 M: GR-Linux-NIC-Dev@marvell.com
14058 L: netdev@vger.kernel.org
14059 S: Supported
14060 F: Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
14061 F: drivers/net/ethernet/qlogic/qla3xxx.*
14062
14063 QLOGIC QLA4XXX iSCSI DRIVER
14064 M: QLogic-Storage-Upstream@qlogic.com
14065 L: linux-scsi@vger.kernel.org
14066 S: Supported
14067 F: Documentation/scsi/LICENSE.qla4xxx
14068 F: drivers/scsi/qla4xxx/
14069
14070 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14071 M: Shahed Shaikh <shshaikh@marvell.com>
14072 M: Manish Chopra <manishc@marvell.com>
14073 M: GR-Linux-NIC-Dev@marvell.com
14074 L: netdev@vger.kernel.org
14075 S: Supported
14076 F: drivers/net/ethernet/qlogic/qlcnic/
14077
14078 QLOGIC QLGE 10Gb ETHERNET DRIVER
14079 M: Manish Chopra <manishc@marvell.com>
14080 M: GR-Linux-NIC-Dev@marvell.com
14081 L: netdev@vger.kernel.org
14082 S: Supported
14083 F: drivers/staging/qlge/
14084
14085 QM1D1B0004 MEDIA DRIVER
14086 M: Akihiro Tsukada <tskd08@gmail.com>
14087 L: linux-media@vger.kernel.org
14088 S: Odd Fixes
14089 F: drivers/media/tuners/qm1d1b0004*
14090
14091 QM1D1C0042 MEDIA DRIVER
14092 M: Akihiro Tsukada <tskd08@gmail.com>
14093 L: linux-media@vger.kernel.org
14094 S: Odd Fixes
14095 F: drivers/media/tuners/qm1d1c0042*
14096
14097 QNX4 FILESYSTEM
14098 M: Anders Larsen <al@alarsen.net>
14099 S: Maintained
14100 W: http://www.alarsen.net/linux/qnx4fs/
14101 F: fs/qnx4/
14102 F: include/uapi/linux/qnx4_fs.h
14103 F: include/uapi/linux/qnxtypes.h
14104
14105 QORIQ DPAA2 FSL-MC BUS DRIVER
14106 M: Stuart Yoder <stuyoder@gmail.com>
14107 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
14108 L: linux-kernel@vger.kernel.org
14109 S: Maintained
14110 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14111 F: Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
14112 F: drivers/bus/fsl-mc/
14113
14114 QT1010 MEDIA DRIVER
14115 M: Antti Palosaari <crope@iki.fi>
14116 L: linux-media@vger.kernel.org
14117 S: Maintained
14118 W: https://linuxtv.org
14119 W: http://palosaari.fi/linux/
14120 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14121 T: git git://linuxtv.org/anttip/media_tree.git
14122 F: drivers/media/tuners/qt1010*
14123
14124 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14125 M: Kalle Valo <kvalo@codeaurora.org>
14126 L: ath10k@lists.infradead.org
14127 S: Supported
14128 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14129 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14130 F: drivers/net/wireless/ath/ath10k/
14131
14132 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14133 M: Kalle Valo <kvalo@codeaurora.org>
14134 L: ath11k@lists.infradead.org
14135 S: Supported
14136 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14137 F: drivers/net/wireless/ath/ath11k/
14138
14139 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14140 M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14141 L: linux-wireless@vger.kernel.org
14142 S: Supported
14143 W: https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14144 F: drivers/net/wireless/ath/ath9k/
14145
14146 QUALCOMM CAMERA SUBSYSTEM DRIVER
14147 M: Todor Tomov <todor.too@gmail.com>
14148 L: linux-media@vger.kernel.org
14149 S: Maintained
14150 F: Documentation/admin-guide/media/qcom_camss.rst
14151 F: Documentation/devicetree/bindings/media/qcom,camss.txt
14152 F: drivers/media/platform/qcom/camss/
14153
14154 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14155 M: Niklas Cassel <nks@flawful.org>
14156 L: linux-pm@vger.kernel.org
14157 L: linux-arm-msm@vger.kernel.org
14158 S: Maintained
14159 F: Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14160 F: drivers/power/avs/qcom-cpr.c
14161
14162 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14163 M: Ilia Lin <ilia.lin@kernel.org>
14164 L: linux-pm@vger.kernel.org
14165 S: Maintained
14166 F: Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14167 F: drivers/cpufreq/qcom-cpufreq-nvmem.c
14168
14169 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14170 M: Timur Tabi <timur@kernel.org>
14171 L: netdev@vger.kernel.org
14172 S: Maintained
14173 F: drivers/net/ethernet/qualcomm/emac/
14174
14175 QUALCOMM ETHQOS ETHERNET DRIVER
14176 M: Vinod Koul <vkoul@kernel.org>
14177 L: netdev@vger.kernel.org
14178 S: Maintained
14179 F: Documentation/devicetree/bindings/net/qcom,ethqos.txt
14180 F: drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14181
14182 QUALCOMM GENERIC INTERFACE I2C DRIVER
14183 M: Alok Chauhan <alokc@codeaurora.org>
14184 L: linux-i2c@vger.kernel.org
14185 L: linux-arm-msm@vger.kernel.org
14186 S: Supported
14187 F: drivers/i2c/busses/i2c-qcom-geni.c
14188
14189 QUALCOMM HEXAGON ARCHITECTURE
14190 M: Brian Cain <bcain@codeaurora.org>
14191 L: linux-hexagon@vger.kernel.org
14192 S: Supported
14193 F: arch/hexagon/
14194
14195 QUALCOMM HIDMA DRIVER
14196 M: Sinan Kaya <okaya@kernel.org>
14197 L: linux-arm-kernel@lists.infradead.org
14198 L: linux-arm-msm@vger.kernel.org
14199 L: dmaengine@vger.kernel.org
14200 S: Supported
14201 F: drivers/dma/qcom/hidma*
14202
14203 QUALCOMM IOMMU
14204 M: Rob Clark <robdclark@gmail.com>
14205 L: iommu@lists.linux-foundation.org
14206 L: linux-arm-msm@vger.kernel.org
14207 S: Maintained
14208 F: drivers/iommu/qcom_iommu.c
14209
14210 QUALCOMM IPCC MAILBOX DRIVER
14211 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14212 L: linux-arm-msm@vger.kernel.org
14213 S: Supported
14214 F: Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14215 F: drivers/mailbox/qcom-ipcc.c
14216 F: include/dt-bindings/mailbox/qcom-ipcc.h
14217
14218 QUALCOMM RMNET DRIVER
14219 M: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14220 M: Sean Tranchetti <stranche@codeaurora.org>
14221 L: netdev@vger.kernel.org
14222 S: Maintained
14223 F: Documentation/networking/device_drivers/qualcomm/rmnet.rst
14224 F: drivers/net/ethernet/qualcomm/rmnet/
14225 F: include/linux/if_rmnet.h
14226
14227 QUALCOMM TSENS THERMAL DRIVER
14228 M: Amit Kucheria <amit.kucheria@linaro.org>
14229 L: linux-pm@vger.kernel.org
14230 L: linux-arm-msm@vger.kernel.org
14231 S: Maintained
14232 F: Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14233 F: drivers/thermal/qcom/
14234
14235 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14236 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
14237 L: linux-media@vger.kernel.org
14238 L: linux-arm-msm@vger.kernel.org
14239 S: Maintained
14240 T: git git://linuxtv.org/media_tree.git
14241 F: Documentation/devicetree/bindings/media/*venus*
14242 F: drivers/media/platform/qcom/venus/
14243
14244 QUALCOMM WCN36XX WIRELESS DRIVER
14245 M: Kalle Valo <kvalo@codeaurora.org>
14246 L: wcn36xx@lists.infradead.org
14247 S: Supported
14248 W: https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14249 T: git git://github.com/KrasnikovEugene/wcn36xx.git
14250 F: drivers/net/wireless/ath/wcn36xx/
14251
14252 QUANTENNA QTNFMAC WIRELESS DRIVER
14253 M: Igor Mitsyanko <imitsyanko@quantenna.com>
14254 R: Sergey Matyukevich <geomatsi@gmail.com>
14255 L: linux-wireless@vger.kernel.org
14256 S: Maintained
14257 F: drivers/net/wireless/quantenna
14258
14259 RADEON and AMDGPU DRM DRIVERS
14260 M: Alex Deucher <alexander.deucher@amd.com>
14261 M: Christian König <christian.koenig@amd.com>
14262 L: amd-gfx@lists.freedesktop.org
14263 S: Supported
14264 T: git git://people.freedesktop.org/~agd5f/linux
14265 F: drivers/gpu/drm/amd/
14266 F: drivers/gpu/drm/radeon/
14267 F: include/uapi/drm/amdgpu_drm.h
14268 F: include/uapi/drm/radeon_drm.h
14269
14270 RADEON FRAMEBUFFER DISPLAY DRIVER
14271 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
14272 L: linux-fbdev@vger.kernel.org
14273 S: Maintained
14274 F: drivers/video/fbdev/aty/radeon*
14275 F: include/uapi/linux/radeonfb.h
14276
14277 RADIOSHARK RADIO DRIVER
14278 M: Hans Verkuil <hverkuil@xs4all.nl>
14279 L: linux-media@vger.kernel.org
14280 S: Maintained
14281 T: git git://linuxtv.org/media_tree.git
14282 F: drivers/media/radio/radio-shark.c
14283
14284 RADIOSHARK2 RADIO DRIVER
14285 M: Hans Verkuil <hverkuil@xs4all.nl>
14286 L: linux-media@vger.kernel.org
14287 S: Maintained
14288 T: git git://linuxtv.org/media_tree.git
14289 F: drivers/media/radio/radio-shark2.c
14290 F: drivers/media/radio/radio-tea5777.c
14291
14292 RADOS BLOCK DEVICE (RBD)
14293 M: Ilya Dryomov <idryomov@gmail.com>
14294 R: Dongsheng Yang <dongsheng.yang@easystack.cn>
14295 L: ceph-devel@vger.kernel.org
14296 S: Supported
14297 W: http://ceph.com/
14298 T: git git://github.com/ceph/ceph-client.git
14299 F: Documentation/ABI/testing/sysfs-bus-rbd
14300 F: drivers/block/rbd.c
14301 F: drivers/block/rbd_types.h
14302
14303 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14304 M: Paul Mackerras <paulus@samba.org>
14305 L: linux-fbdev@vger.kernel.org
14306 S: Maintained
14307 F: drivers/video/fbdev/aty/aty128fb.c
14308
14309 RAINSHADOW-CEC DRIVER
14310 M: Hans Verkuil <hverkuil@xs4all.nl>
14311 L: linux-media@vger.kernel.org
14312 S: Maintained
14313 T: git git://linuxtv.org/media_tree.git
14314 F: drivers/media/cec/usb/rainshadow/
14315
14316 RALINK MIPS ARCHITECTURE
14317 M: John Crispin <john@phrozen.org>
14318 L: linux-mips@vger.kernel.org
14319 S: Maintained
14320 F: arch/mips/ralink
14321
14322 RALINK RT2X00 WIRELESS LAN DRIVER
14323 M: Stanislaw Gruszka <stf_xl@wp.pl>
14324 M: Helmut Schaa <helmut.schaa@googlemail.com>
14325 L: linux-wireless@vger.kernel.org
14326 S: Maintained
14327 F: drivers/net/wireless/ralink/rt2x00/
14328
14329 RAMDISK RAM BLOCK DEVICE DRIVER
14330 M: Jens Axboe <axboe@kernel.dk>
14331 S: Maintained
14332 F: Documentation/admin-guide/blockdev/ramdisk.rst
14333 F: drivers/block/brd.c
14334
14335 RANCHU VIRTUAL BOARD FOR MIPS
14336 M: Miodrag Dinic <miodrag.dinic@mips.com>
14337 L: linux-mips@vger.kernel.org
14338 S: Supported
14339 F: arch/mips/configs/generic/board-ranchu.config
14340 F: arch/mips/generic/board-ranchu.c
14341
14342 RANDOM NUMBER DRIVER
14343 M: "Theodore Ts'o" <tytso@mit.edu>
14344 S: Maintained
14345 F: drivers/char/random.c
14346
14347 RAPIDIO SUBSYSTEM
14348 M: Matt Porter <mporter@kernel.crashing.org>
14349 M: Alexandre Bounine <alex.bou9@gmail.com>
14350 S: Maintained
14351 F: drivers/rapidio/
14352
14353 RAS INFRASTRUCTURE
14354 M: Tony Luck <tony.luck@intel.com>
14355 M: Borislav Petkov <bp@alien8.de>
14356 L: linux-edac@vger.kernel.org
14357 S: Maintained
14358 F: Documentation/admin-guide/ras.rst
14359 F: drivers/ras/
14360 F: include/linux/ras.h
14361 F: include/ras/ras_event.h
14362
14363 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14364 L: linux-wireless@vger.kernel.org
14365 S: Orphan
14366 F: drivers/net/wireless/ray*
14367
14368 RC-CORE / LIRC FRAMEWORK
14369 M: Sean Young <sean@mess.org>
14370 L: linux-media@vger.kernel.org
14371 S: Maintained
14372 W: http://linuxtv.org
14373 T: git git://linuxtv.org/media_tree.git
14374 F: Documentation/driver-api/media/rc-core.rst
14375 F: Documentation/userspace-api/media/rc/
14376 F: drivers/media/rc/
14377 F: include/media/rc-map.h
14378 F: include/media/rc-core.h
14379 F: include/uapi/linux/lirc.h
14380
14381 RCMM REMOTE CONTROLS DECODER
14382 M: Patrick Lerda <patrick9876@free.fr>
14383 S: Maintained
14384 F: drivers/media/rc/ir-rcmm-decoder.c
14385
14386 RCUTORTURE TEST FRAMEWORK
14387 M: "Paul E. McKenney" <paulmck@kernel.org>
14388 M: Josh Triplett <josh@joshtriplett.org>
14389 R: Steven Rostedt <rostedt@goodmis.org>
14390 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14391 R: Lai Jiangshan <jiangshanlai@gmail.com>
14392 L: rcu@vger.kernel.org
14393 S: Supported
14394 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14395 F: tools/testing/selftests/rcutorture
14396
14397 RDC R-321X SoC
14398 M: Florian Fainelli <florian@openwrt.org>
14399 S: Maintained
14400
14401 RDC R6040 FAST ETHERNET DRIVER
14402 M: Florian Fainelli <f.fainelli@gmail.com>
14403 L: netdev@vger.kernel.org
14404 S: Maintained
14405 F: drivers/net/ethernet/rdc/r6040.c
14406
14407 RDMAVT - RDMA verbs software
14408 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
14409 M: Mike Marciniszyn <mike.marciniszyn@intel.com>
14410 L: linux-rdma@vger.kernel.org
14411 S: Supported
14412 F: drivers/infiniband/sw/rdmavt
14413
14414 RDS - RELIABLE DATAGRAM SOCKETS
14415 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
14416 L: netdev@vger.kernel.org
14417 L: linux-rdma@vger.kernel.org
14418 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
14419 S: Supported
14420 W: https://oss.oracle.com/projects/rds/
14421 F: Documentation/networking/rds.rst
14422 F: net/rds/
14423
14424 RDT - RESOURCE ALLOCATION
14425 M: Fenghua Yu <fenghua.yu@intel.com>
14426 M: Reinette Chatre <reinette.chatre@intel.com>
14427 L: linux-kernel@vger.kernel.org
14428 S: Supported
14429 F: Documentation/x86/resctrl*
14430 F: arch/x86/include/asm/resctrl.h
14431 F: arch/x86/kernel/cpu/resctrl/
14432 F: tools/testing/selftests/resctrl/
14433
14434 READ-COPY UPDATE (RCU)
14435 M: "Paul E. McKenney" <paulmck@kernel.org>
14436 M: Josh Triplett <josh@joshtriplett.org>
14437 R: Steven Rostedt <rostedt@goodmis.org>
14438 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14439 R: Lai Jiangshan <jiangshanlai@gmail.com>
14440 R: Joel Fernandes <joel@joelfernandes.org>
14441 L: rcu@vger.kernel.org
14442 S: Supported
14443 W: http://www.rdrop.com/users/paulmck/RCU/
14444 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14445 F: Documentation/RCU/
14446 F: include/linux/rcu*
14447 F: kernel/rcu/
14448 X: Documentation/RCU/torture.txt
14449 X: include/linux/srcu*.h
14450 X: kernel/rcu/srcu*.c
14451
14452 REAL TIME CLOCK (RTC) SUBSYSTEM
14453 M: Alessandro Zummo <a.zummo@towertech.it>
14454 M: Alexandre Belloni <alexandre.belloni@bootlin.com>
14455 L: linux-rtc@vger.kernel.org
14456 S: Maintained
14457 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
14458 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14459 F: Documentation/admin-guide/rtc.rst
14460 F: Documentation/devicetree/bindings/rtc/
14461 F: drivers/rtc/
14462 F: include/linux/platform_data/rtc-*
14463 F: include/linux/rtc.h
14464 F: include/linux/rtc/
14465 F: include/uapi/linux/rtc.h
14466 F: tools/testing/selftests/rtc/
14467
14468 REALTEK AUDIO CODECS
14469 M: Oder Chiou <oder_chiou@realtek.com>
14470 S: Maintained
14471 F: include/sound/rt*.h
14472 F: sound/soc/codecs/rt*
14473
14474 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14475 M: Linus Walleij <linus.walleij@linaro.org>
14476 S: Maintained
14477 F: Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14478 F: drivers/net/dsa/realtek-smi*
14479 F: drivers/net/dsa/rtl83*
14480
14481 REALTEK WIRELESS DRIVER (rtlwifi family)
14482 M: Ping-Ke Shih <pkshih@realtek.com>
14483 L: linux-wireless@vger.kernel.org
14484 S: Maintained
14485 W: https://wireless.wiki.kernel.org/
14486 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14487 F: drivers/net/wireless/realtek/rtlwifi/
14488
14489 REALTEK WIRELESS DRIVER (rtw88)
14490 M: Yan-Hsuan Chuang <yhchuang@realtek.com>
14491 L: linux-wireless@vger.kernel.org
14492 S: Maintained
14493 F: drivers/net/wireless/realtek/rtw88/
14494
14495 REDPINE WIRELESS DRIVER
14496 M: Amitkumar Karwar <amitkarwar@gmail.com>
14497 M: Siva Rebbagondla <siva8118@gmail.com>
14498 L: linux-wireless@vger.kernel.org
14499 S: Maintained
14500 F: drivers/net/wireless/rsi/
14501
14502 REGISTER MAP ABSTRACTION
14503 M: Mark Brown <broonie@kernel.org>
14504 L: linux-kernel@vger.kernel.org
14505 S: Supported
14506 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14507 F: Documentation/devicetree/bindings/regmap/
14508 F: drivers/base/regmap/
14509 F: include/linux/regmap.h
14510
14511 REISERFS FILE SYSTEM
14512 L: reiserfs-devel@vger.kernel.org
14513 S: Supported
14514 F: fs/reiserfs/
14515
14516 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14517 M: Ohad Ben-Cohen <ohad@wizery.com>
14518 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14519 L: linux-remoteproc@vger.kernel.org
14520 S: Maintained
14521 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14522 F: Documentation/ABI/testing/sysfs-class-remoteproc
14523 F: Documentation/devicetree/bindings/remoteproc/
14524 F: Documentation/remoteproc.txt
14525 F: drivers/remoteproc/
14526 F: include/linux/remoteproc.h
14527 F: include/linux/remoteproc/
14528
14529 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14530 M: Ohad Ben-Cohen <ohad@wizery.com>
14531 M: Bjorn Andersson <bjorn.andersson@linaro.org>
14532 L: linux-remoteproc@vger.kernel.org
14533 S: Maintained
14534 T: git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14535 F: Documentation/ABI/testing/sysfs-bus-rpmsg
14536 F: Documentation/rpmsg.txt
14537 F: drivers/rpmsg/
14538 F: include/linux/rpmsg.h
14539 F: include/linux/rpmsg/
14540 F: include/uapi/linux/rpmsg.h
14541 F: samples/rpmsg/
14542
14543 RENESAS CLOCK DRIVERS
14544 M: Geert Uytterhoeven <geert+renesas@glider.be>
14545 L: linux-renesas-soc@vger.kernel.org
14546 S: Supported
14547 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14548 F: Documentation/devicetree/bindings/clock/renesas,*
14549 F: drivers/clk/renesas/
14550
14551 RENESAS EMEV2 I2C DRIVER
14552 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
14553 S: Supported
14554 F: Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14555 F: drivers/i2c/busses/i2c-emev2.c
14556
14557 RENESAS ETHERNET DRIVERS
14558 R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
14559 L: netdev@vger.kernel.org
14560 L: linux-renesas-soc@vger.kernel.org
14561 F: Documentation/devicetree/bindings/net/renesas,*.txt
14562 F: Documentation/devicetree/bindings/net/renesas,*.yaml
14563 F: drivers/net/ethernet/renesas/
14564 F: include/linux/sh_eth.h
14565
14566 RENESAS R-CAR GYROADC DRIVER
14567 M: Marek Vasut <marek.vasut@gmail.com>
14568 L: linux-iio@vger.kernel.org
14569 S: Supported
14570 F: Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14571 F: drivers/iio/adc/rcar-gyroadc.c
14572
14573 RENESAS R-CAR I2C DRIVERS
14574 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
14575 S: Supported
14576 F: Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14577 F: Documentation/devicetree/bindings/i2c/renesas,iic.txt
14578 F: drivers/i2c/busses/i2c-rcar.c
14579 F: drivers/i2c/busses/i2c-sh_mobile.c
14580
14581 RENESAS R-CAR THERMAL DRIVERS
14582 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
14583 L: linux-renesas-soc@vger.kernel.org
14584 S: Supported
14585 F: Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt
14586 F: Documentation/devicetree/bindings/thermal/rcar-thermal.txt
14587 F: drivers/thermal/rcar_gen3_thermal.c
14588 F: drivers/thermal/rcar_thermal.c
14589
14590 RENESAS RIIC DRIVER
14591 M: Chris Brandt <chris.brandt@renesas.com>
14592 S: Supported
14593 F: Documentation/devicetree/bindings/i2c/renesas,riic.txt
14594 F: drivers/i2c/busses/i2c-riic.c
14595
14596 RENESAS USB PHY DRIVER
14597 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14598 L: linux-renesas-soc@vger.kernel.org
14599 S: Maintained
14600 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
14601
14602 RESET CONTROLLER FRAMEWORK
14603 M: Philipp Zabel <p.zabel@pengutronix.de>
14604 S: Maintained
14605 T: git git://git.pengutronix.de/git/pza/linux
14606 F: Documentation/devicetree/bindings/reset/
14607 F: drivers/reset/
14608 F: include/dt-bindings/reset/
14609 F: include/linux/reset-controller.h
14610 F: include/linux/reset.h
14611 F: include/linux/reset/
14612 K: \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14613
14614 RESTARTABLE SEQUENCES SUPPORT
14615 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14616 M: Peter Zijlstra <peterz@infradead.org>
14617 M: "Paul E. McKenney" <paulmck@kernel.org>
14618 M: Boqun Feng <boqun.feng@gmail.com>
14619 L: linux-kernel@vger.kernel.org
14620 S: Supported
14621 F: include/trace/events/rseq.h
14622 F: include/uapi/linux/rseq.h
14623 F: kernel/rseq.c
14624 F: tools/testing/selftests/rseq/
14625
14626 RFKILL
14627 M: Johannes Berg <johannes@sipsolutions.net>
14628 L: linux-wireless@vger.kernel.org
14629 S: Maintained
14630 W: https://wireless.wiki.kernel.org/
14631 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14632 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14633 F: Documentation/ABI/stable/sysfs-class-rfkill
14634 F: Documentation/driver-api/rfkill.rst
14635 F: include/linux/rfkill.h
14636 F: include/uapi/linux/rfkill.h
14637 F: net/rfkill/
14638
14639 RHASHTABLE
14640 M: Thomas Graf <tgraf@suug.ch>
14641 M: Herbert Xu <herbert@gondor.apana.org.au>
14642 L: netdev@vger.kernel.org
14643 S: Maintained
14644 F: include/linux/rhashtable-types.h
14645 F: include/linux/rhashtable.h
14646 F: lib/rhashtable.c
14647 F: lib/test_rhashtable.c
14648
14649 RICOH R5C592 MEMORYSTICK DRIVER
14650 M: Maxim Levitsky <maximlevitsky@gmail.com>
14651 S: Maintained
14652 F: drivers/memstick/host/r592.*
14653
14654 RICOH SMARTMEDIA/XD DRIVER
14655 M: Maxim Levitsky <maximlevitsky@gmail.com>
14656 S: Maintained
14657 F: drivers/mtd/nand/raw/r852.c
14658 F: drivers/mtd/nand/raw/r852.h
14659
14660 RISC-V ARCHITECTURE
14661 M: Paul Walmsley <paul.walmsley@sifive.com>
14662 M: Palmer Dabbelt <palmer@dabbelt.com>
14663 M: Albert Ou <aou@eecs.berkeley.edu>
14664 L: linux-riscv@lists.infradead.org
14665 S: Supported
14666 P: Documentation/riscv/patch-acceptance.rst
14667 T: git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14668 F: arch/riscv/
14669 N: riscv
14670 K: riscv
14671
14672 RNBD BLOCK DRIVERS
14673 M: Danil Kipnis <danil.kipnis@cloud.ionos.com>
14674 M: Jack Wang <jinpu.wang@cloud.ionos.com>
14675 L: linux-block@vger.kernel.org
14676 S: Maintained
14677 F: drivers/block/rnbd/
14678
14679 ROCCAT DRIVERS
14680 M: Stefan Achatz <erazor_de@users.sourceforge.net>
14681 S: Maintained
14682 W: http://sourceforge.net/projects/roccat/
14683 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
14684 F: drivers/hid/hid-roccat*
14685 F: include/linux/hid-roccat*
14686
14687 ROCKCHIP ISP V1 DRIVER
14688 M: Helen Koike <helen.koike@collabora.com>
14689 L: linux-media@vger.kernel.org
14690 S: Maintained
14691 F: drivers/staging/media/rkisp1/
14692
14693 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14694 M: Jacob Chen <jacob-chen@iotwrt.com>
14695 M: Ezequiel Garcia <ezequiel@collabora.com>
14696 L: linux-media@vger.kernel.org
14697 L: linux-rockchip@lists.infradead.org
14698 S: Maintained
14699 F: Documentation/devicetree/bindings/media/rockchip-rga.yaml
14700 F: drivers/media/platform/rockchip/rga/
14701
14702 ROCKCHIP VIDEO DECODER DRIVER
14703 M: Ezequiel Garcia <ezequiel@collabora.com>
14704 L: linux-media@vger.kernel.org
14705 L: linux-rockchip@lists.infradead.org
14706 S: Maintained
14707 F: Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14708 F: drivers/staging/media/rkvdec/
14709
14710 ROCKER DRIVER
14711 M: Jiri Pirko <jiri@resnulli.us>
14712 L: netdev@vger.kernel.org
14713 S: Supported
14714 F: drivers/net/ethernet/rocker/
14715
14716 ROCKETPORT DRIVER
14717 S: Maintained
14718 W: http://www.comtrol.com
14719 F: Documentation/driver-api/serial/rocket.rst
14720 F: drivers/tty/rocket*
14721
14722 ROCKETPORT EXPRESS/INFINITY DRIVER
14723 M: Kevin Cernekee <cernekee@gmail.com>
14724 L: linux-serial@vger.kernel.org
14725 S: Odd Fixes
14726 F: drivers/tty/serial/rp2.*
14727
14728 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14729 M: Tomasz Duszynski <tduszyns@gmail.com>
14730 S: Maintained
14731 F: Documentation/devicetree/bindings/iio/light/bh1750.yaml
14732 F: drivers/iio/light/bh1750.c
14733
14734 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14735 M: Marek Vasut <marek.vasut+renesas@gmail.com>
14736 L: linux-kernel@vger.kernel.org
14737 L: linux-renesas-soc@vger.kernel.org
14738 S: Supported
14739 F: Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14740 F: drivers/gpio/gpio-bd9571mwv.c
14741 F: drivers/mfd/bd9571mwv.c
14742 F: drivers/regulator/bd9571mwv-regulator.c
14743 F: include/linux/mfd/bd9571mwv.h
14744
14745 ROSE NETWORK LAYER
14746 M: Ralf Baechle <ralf@linux-mips.org>
14747 L: linux-hams@vger.kernel.org
14748 S: Maintained
14749 W: http://www.linux-ax25.org/
14750 F: include/net/rose.h
14751 F: include/uapi/linux/rose.h
14752 F: net/rose/
14753
14754 ROTATION DRIVER FOR ALLWINNER A83T
14755 M: Jernej Skrabec <jernej.skrabec@siol.net>
14756 L: linux-media@vger.kernel.org
14757 S: Maintained
14758 T: git git://linuxtv.org/media_tree.git
14759 F: Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14760 F: drivers/media/platform/sunxi/sun8i-rotate/
14761
14762 RTL2830 MEDIA DRIVER
14763 M: Antti Palosaari <crope@iki.fi>
14764 L: linux-media@vger.kernel.org
14765 S: Maintained
14766 W: https://linuxtv.org
14767 W: http://palosaari.fi/linux/
14768 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14769 T: git git://linuxtv.org/anttip/media_tree.git
14770 F: drivers/media/dvb-frontends/rtl2830*
14771
14772 RTL2832 MEDIA DRIVER
14773 M: Antti Palosaari <crope@iki.fi>
14774 L: linux-media@vger.kernel.org
14775 S: Maintained
14776 W: https://linuxtv.org
14777 W: http://palosaari.fi/linux/
14778 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14779 T: git git://linuxtv.org/anttip/media_tree.git
14780 F: drivers/media/dvb-frontends/rtl2832*
14781
14782 RTL2832_SDR MEDIA DRIVER
14783 M: Antti Palosaari <crope@iki.fi>
14784 L: linux-media@vger.kernel.org
14785 S: Maintained
14786 W: https://linuxtv.org
14787 W: http://palosaari.fi/linux/
14788 Q: http://patchwork.linuxtv.org/project/linux-media/list/
14789 T: git git://linuxtv.org/anttip/media_tree.git
14790 F: drivers/media/dvb-frontends/rtl2832_sdr*
14791
14792 RTL8180 WIRELESS DRIVER
14793 L: linux-wireless@vger.kernel.org
14794 S: Orphan
14795 W: https://wireless.wiki.kernel.org/
14796 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14797 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
14798
14799 RTL8187 WIRELESS DRIVER
14800 M: Herton Ronaldo Krzesinski <herton@canonical.com>
14801 M: Hin-Tak Leung <htl10@users.sourceforge.net>
14802 M: Larry Finger <Larry.Finger@lwfinger.net>
14803 L: linux-wireless@vger.kernel.org
14804 S: Maintained
14805 W: https://wireless.wiki.kernel.org/
14806 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14807 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
14808
14809 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14810 M: Jes Sorensen <Jes.Sorensen@gmail.com>
14811 L: linux-wireless@vger.kernel.org
14812 S: Maintained
14813 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14814 F: drivers/net/wireless/realtek/rtl8xxxu/
14815
14816 RTRS TRANSPORT DRIVERS
14817 M: Danil Kipnis <danil.kipnis@cloud.ionos.com>
14818 M: Jack Wang <jinpu.wang@cloud.ionos.com>
14819 L: linux-rdma@vger.kernel.org
14820 S: Maintained
14821 F: drivers/infiniband/ulp/rtrs/
14822
14823 RXRPC SOCKETS (AF_RXRPC)
14824 M: David Howells <dhowells@redhat.com>
14825 L: linux-afs@lists.infradead.org
14826 S: Supported
14827 W: https://www.infradead.org/~dhowells/kafs/
14828 F: Documentation/networking/rxrpc.rst
14829 F: include/keys/rxrpc-type.h
14830 F: include/net/af_rxrpc.h
14831 F: include/trace/events/rxrpc.h
14832 F: include/uapi/linux/rxrpc.h
14833 F: net/rxrpc/
14834
14835 S3 SAVAGE FRAMEBUFFER DRIVER
14836 M: Antonino Daplas <adaplas@gmail.com>
14837 L: linux-fbdev@vger.kernel.org
14838 S: Maintained
14839 F: drivers/video/fbdev/savage/
14840
14841 S390
14842 M: Heiko Carstens <heiko.carstens@de.ibm.com>
14843 M: Vasily Gorbik <gor@linux.ibm.com>
14844 M: Christian Borntraeger <borntraeger@de.ibm.com>
14845 L: linux-s390@vger.kernel.org
14846 S: Supported
14847 W: http://www.ibm.com/developerworks/linux/linux390/
14848 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14849 F: Documentation/driver-api/s390-drivers.rst
14850 F: Documentation/s390/
14851 F: arch/s390/
14852 F: drivers/s390/
14853
14854 S390 COMMON I/O LAYER
14855 M: Vineeth Vijayan <vneethv@linux.ibm.com>
14856 M: Peter Oberparleiter <oberpar@linux.ibm.com>
14857 L: linux-s390@vger.kernel.org
14858 S: Supported
14859 W: http://www.ibm.com/developerworks/linux/linux390/
14860 F: drivers/s390/cio/
14861
14862 S390 DASD DRIVER
14863 M: Stefan Haberland <sth@linux.ibm.com>
14864 M: Jan Hoeppner <hoeppner@linux.ibm.com>
14865 L: linux-s390@vger.kernel.org
14866 S: Supported
14867 W: http://www.ibm.com/developerworks/linux/linux390/
14868 F: block/partitions/ibm.c
14869 F: drivers/s390/block/dasd*
14870 F: include/linux/dasd_mod.h
14871
14872 S390 IOMMU (PCI)
14873 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
14874 L: linux-s390@vger.kernel.org
14875 S: Supported
14876 W: http://www.ibm.com/developerworks/linux/linux390/
14877 F: drivers/iommu/s390-iommu.c
14878
14879 S390 IUCV NETWORK LAYER
14880 M: Julian Wiedmann <jwi@linux.ibm.com>
14881 M: Karsten Graul <kgraul@linux.ibm.com>
14882 M: Ursula Braun <ubraun@linux.ibm.com>
14883 L: linux-s390@vger.kernel.org
14884 S: Supported
14885 W: http://www.ibm.com/developerworks/linux/linux390/
14886 F: drivers/s390/net/*iucv*
14887 F: include/net/iucv/
14888 F: net/iucv/
14889
14890 S390 NETWORK DRIVERS
14891 M: Julian Wiedmann <jwi@linux.ibm.com>
14892 M: Karsten Graul <kgraul@linux.ibm.com>
14893 M: Ursula Braun <ubraun@linux.ibm.com>
14894 L: linux-s390@vger.kernel.org
14895 S: Supported
14896 W: http://www.ibm.com/developerworks/linux/linux390/
14897 F: drivers/s390/net/
14898
14899 S390 PCI SUBSYSTEM
14900 M: Niklas Schnelle <schnelle@linux.ibm.com>
14901 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
14902 L: linux-s390@vger.kernel.org
14903 S: Supported
14904 W: http://www.ibm.com/developerworks/linux/linux390/
14905 F: arch/s390/pci/
14906 F: drivers/pci/hotplug/s390_pci_hpc.c
14907 F: Documentation/s390/pci.rst
14908
14909 S390 VFIO AP DRIVER
14910 M: Tony Krowiak <akrowiak@linux.ibm.com>
14911 M: Pierre Morel <pmorel@linux.ibm.com>
14912 M: Halil Pasic <pasic@linux.ibm.com>
14913 L: linux-s390@vger.kernel.org
14914 S: Supported
14915 W: http://www.ibm.com/developerworks/linux/linux390/
14916 F: Documentation/s390/vfio-ap.rst
14917 F: drivers/s390/crypto/vfio_ap_drv.c
14918 F: drivers/s390/crypto/vfio_ap_ops.c
14919 F: drivers/s390/crypto/vfio_ap_private.h
14920
14921 S390 VFIO-CCW DRIVER
14922 M: Cornelia Huck <cohuck@redhat.com>
14923 M: Eric Farman <farman@linux.ibm.com>
14924 R: Halil Pasic <pasic@linux.ibm.com>
14925 L: linux-s390@vger.kernel.org
14926 L: kvm@vger.kernel.org
14927 S: Supported
14928 F: Documentation/s390/vfio-ccw.rst
14929 F: drivers/s390/cio/vfio_ccw*
14930 F: include/uapi/linux/vfio_ccw.h
14931
14932 S390 ZCRYPT DRIVER
14933 M: Harald Freudenberger <freude@linux.ibm.com>
14934 L: linux-s390@vger.kernel.org
14935 S: Supported
14936 W: http://www.ibm.com/developerworks/linux/linux390/
14937 F: drivers/s390/crypto/
14938
14939 S390 ZFCP DRIVER
14940 M: Steffen Maier <maier@linux.ibm.com>
14941 M: Benjamin Block <bblock@linux.ibm.com>
14942 L: linux-s390@vger.kernel.org
14943 S: Supported
14944 W: http://www.ibm.com/developerworks/linux/linux390/
14945 F: drivers/s390/scsi/zfcp_*
14946
14947 S3C24XX SD/MMC Driver
14948 M: Ben Dooks <ben-linux@fluff.org>
14949 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14950 S: Supported
14951 F: drivers/mmc/host/s3cmci.*
14952
14953 SAA6588 RDS RECEIVER DRIVER
14954 M: Hans Verkuil <hverkuil@xs4all.nl>
14955 L: linux-media@vger.kernel.org
14956 S: Odd Fixes
14957 W: https://linuxtv.org
14958 T: git git://linuxtv.org/media_tree.git
14959 F: drivers/media/i2c/saa6588*
14960
14961 SAA7134 VIDEO4LINUX DRIVER
14962 M: Mauro Carvalho Chehab <mchehab@kernel.org>
14963 L: linux-media@vger.kernel.org
14964 S: Odd fixes
14965 W: https://linuxtv.org
14966 T: git git://linuxtv.org/media_tree.git
14967 F: Documentation/driver-api/media/drivers/saa7134*
14968 F: drivers/media/pci/saa7134/
14969
14970 SAA7146 VIDEO4LINUX-2 DRIVER
14971 M: Hans Verkuil <hverkuil@xs4all.nl>
14972 L: linux-media@vger.kernel.org
14973 S: Maintained
14974 T: git git://linuxtv.org/media_tree.git
14975 F: drivers/media/common/saa7146/
14976 F: drivers/media/pci/saa7146/
14977 F: include/media/drv-intf/saa7146*
14978
14979 SAFESETID SECURITY MODULE
14980 M: Micah Morton <mortonm@chromium.org>
14981 S: Supported
14982 F: Documentation/admin-guide/LSM/SafeSetID.rst
14983 F: security/safesetid/
14984
14985 SAMSUNG AUDIO (ASoC) DRIVERS
14986 M: Krzysztof Kozlowski <krzk@kernel.org>
14987 M: Sangbeom Kim <sbkim73@samsung.com>
14988 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
14989 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
14990 S: Supported
14991 F: Documentation/devicetree/bindings/sound/samsung*
14992 F: sound/soc/samsung/
14993
14994 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14995 M: Krzysztof Kozlowski <krzk@kernel.org>
14996 L: linux-crypto@vger.kernel.org
14997 L: linux-samsung-soc@vger.kernel.org
14998 S: Maintained
14999 F: Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15000 F: drivers/crypto/exynos-rng.c
15001
15002 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15003 M: Łukasz Stelmach <l.stelmach@samsung.com>
15004 L: linux-samsung-soc@vger.kernel.org
15005 S: Maintained
15006 F: Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15007 F: drivers/char/hw_random/exynos-trng.c
15008
15009 SAMSUNG FRAMEBUFFER DRIVER
15010 M: Jingoo Han <jingoohan1@gmail.com>
15011 L: linux-fbdev@vger.kernel.org
15012 S: Maintained
15013 F: drivers/video/fbdev/s3c-fb.c
15014
15015 SAMSUNG LAPTOP DRIVER
15016 M: Corentin Chary <corentin.chary@gmail.com>
15017 L: platform-driver-x86@vger.kernel.org
15018 S: Maintained
15019 F: drivers/platform/x86/samsung-laptop.c
15020
15021 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15022 M: Sangbeom Kim <sbkim73@samsung.com>
15023 M: Krzysztof Kozlowski <krzk@kernel.org>
15024 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15025 L: linux-kernel@vger.kernel.org
15026 L: linux-samsung-soc@vger.kernel.org
15027 S: Supported
15028 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15029 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15030 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15031 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15032 F: drivers/clk/clk-s2mps11.c
15033 F: drivers/mfd/sec*.c
15034 F: drivers/regulator/s2m*.c
15035 F: drivers/regulator/s5m*.c
15036 F: drivers/rtc/rtc-s5m.c
15037 F: include/linux/mfd/samsung/
15038
15039 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15040 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15041 L: linux-media@vger.kernel.org
15042 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15043 S: Maintained
15044 F: drivers/media/platform/s3c-camif/
15045 F: include/media/drv-intf/s3c_camif.h
15046
15047 SAMSUNG S3FWRN5 NFC DRIVER
15048 M: Robert Baldyga <r.baldyga@samsung.com>
15049 M: Krzysztof Opasiak <k.opasiak@samsung.com>
15050 L: linux-nfc@lists.01.org (moderated for non-subscribers)
15051 S: Supported
15052 F: drivers/nfc/s3fwrn5
15053
15054 SAMSUNG S5C73M3 CAMERA DRIVER
15055 M: Kyungmin Park <kyungmin.park@samsung.com>
15056 M: Andrzej Hajda <a.hajda@samsung.com>
15057 L: linux-media@vger.kernel.org
15058 S: Supported
15059 F: drivers/media/i2c/s5c73m3/*
15060
15061 SAMSUNG S5K5BAF CAMERA DRIVER
15062 M: Kyungmin Park <kyungmin.park@samsung.com>
15063 M: Andrzej Hajda <a.hajda@samsung.com>
15064 L: linux-media@vger.kernel.org
15065 S: Supported
15066 F: drivers/media/i2c/s5k5baf.c
15067
15068 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15069 M: Krzysztof Kozlowski <krzk@kernel.org>
15070 M: Vladimir Zapolskiy <vz@mleia.com>
15071 M: Kamil Konieczny <k.konieczny@samsung.com>
15072 L: linux-crypto@vger.kernel.org
15073 L: linux-samsung-soc@vger.kernel.org
15074 S: Maintained
15075 F: Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15076 F: Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15077 F: drivers/crypto/s5p-sss.c
15078
15079 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15080 M: Kyungmin Park <kyungmin.park@samsung.com>
15081 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
15082 L: linux-media@vger.kernel.org
15083 S: Supported
15084 Q: https://patchwork.linuxtv.org/project/linux-media/list/
15085 F: drivers/media/platform/exynos4-is/
15086
15087 SAMSUNG SOC CLOCK DRIVERS
15088 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
15089 M: Tomasz Figa <tomasz.figa@gmail.com>
15090 M: Chanwoo Choi <cw00.choi@samsung.com>
15091 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15092 S: Supported
15093 T: git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15094 F: Documentation/devicetree/bindings/clock/exynos*.txt
15095 F: Documentation/devicetree/bindings/clock/samsung,s3c*
15096 F: Documentation/devicetree/bindings/clock/samsung,s5p*
15097 F: drivers/clk/samsung/
15098 F: include/dt-bindings/clock/exynos*.h
15099
15100 SAMSUNG SPI DRIVERS
15101 M: Kukjin Kim <kgene@kernel.org>
15102 M: Krzysztof Kozlowski <krzk@kernel.org>
15103 M: Andi Shyti <andi@etezian.org>
15104 L: linux-spi@vger.kernel.org
15105 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15106 S: Maintained
15107 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
15108 F: drivers/spi/spi-s3c*
15109 F: include/linux/platform_data/spi-s3c64xx.h
15110
15111 SAMSUNG SXGBE DRIVERS
15112 M: Byungho An <bh74.an@samsung.com>
15113 L: netdev@vger.kernel.org
15114 S: Supported
15115 F: drivers/net/ethernet/samsung/sxgbe/
15116
15117 SAMSUNG THERMAL DRIVER
15118 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15119 L: linux-pm@vger.kernel.org
15120 L: linux-samsung-soc@vger.kernel.org
15121 S: Supported
15122 T: git https://github.com/lmajewski/linux-samsung-thermal.git
15123 F: drivers/thermal/samsung/
15124
15125 SAMSUNG USB2 PHY DRIVER
15126 M: Kamil Debski <kamil@wypas.org>
15127 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
15128 L: linux-kernel@vger.kernel.org
15129 S: Supported
15130 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
15131 F: Documentation/driver-api/phy/samsung-usb2.rst
15132 F: drivers/phy/samsung/phy-exynos4210-usb2.c
15133 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
15134 F: drivers/phy/samsung/phy-exynos5250-usb2.c
15135 F: drivers/phy/samsung/phy-s5pv210-usb2.c
15136 F: drivers/phy/samsung/phy-samsung-usb2.c
15137 F: drivers/phy/samsung/phy-samsung-usb2.h
15138
15139 SC1200 WDT DRIVER
15140 M: Zwane Mwaikambo <zwanem@gmail.com>
15141 S: Maintained
15142 F: drivers/watchdog/sc1200wdt.c
15143
15144 SCHEDULER
15145 M: Ingo Molnar <mingo@redhat.com>
15146 M: Peter Zijlstra <peterz@infradead.org>
15147 M: Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15148 M: Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15149 R: Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15150 R: Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15151 R: Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15152 R: Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15153 L: linux-kernel@vger.kernel.org
15154 S: Maintained
15155 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15156 F: include/linux/preempt.h
15157 F: include/linux/sched.h
15158 F: include/linux/wait.h
15159 F: include/uapi/linux/sched.h
15160 F: kernel/sched/
15161
15162 SCR24X CHIP CARD INTERFACE DRIVER
15163 M: Lubomir Rintel <lkundrak@v3.sk>
15164 S: Supported
15165 F: drivers/char/pcmcia/scr24x_cs.c
15166
15167 SCSI CDROM DRIVER
15168 M: Jens Axboe <axboe@kernel.dk>
15169 L: linux-scsi@vger.kernel.org
15170 S: Maintained
15171 W: http://www.kernel.dk
15172 F: drivers/scsi/sr*
15173
15174 SCSI RDMA PROTOCOL (SRP) INITIATOR
15175 M: Bart Van Assche <bvanassche@acm.org>
15176 L: linux-rdma@vger.kernel.org
15177 S: Supported
15178 Q: http://patchwork.kernel.org/project/linux-rdma/list/
15179 F: drivers/infiniband/ulp/srp/
15180 F: include/scsi/srp.h
15181
15182 SCSI RDMA PROTOCOL (SRP) TARGET
15183 M: Bart Van Assche <bvanassche@acm.org>
15184 L: linux-rdma@vger.kernel.org
15185 L: target-devel@vger.kernel.org
15186 S: Supported
15187 Q: http://patchwork.kernel.org/project/linux-rdma/list/
15188 F: drivers/infiniband/ulp/srpt/
15189
15190 SCSI SG DRIVER
15191 M: Doug Gilbert <dgilbert@interlog.com>
15192 L: linux-scsi@vger.kernel.org
15193 S: Maintained
15194 W: http://sg.danny.cz/sg
15195 F: Documentation/scsi/scsi-generic.rst
15196 F: drivers/scsi/sg.c
15197 F: include/scsi/sg.h
15198
15199 SCSI SUBSYSTEM
15200 M: "James E.J. Bottomley" <jejb@linux.ibm.com>
15201 M: "Martin K. Petersen" <martin.petersen@oracle.com>
15202 L: linux-scsi@vger.kernel.org
15203 S: Maintained
15204 Q: https://patchwork.kernel.org/project/linux-scsi/list/
15205 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15206 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15207 F: Documentation/devicetree/bindings/scsi/
15208 F: drivers/scsi/
15209 F: include/scsi/
15210
15211 SCSI TAPE DRIVER
15212 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15213 L: linux-scsi@vger.kernel.org
15214 S: Maintained
15215 F: Documentation/scsi/st.rst
15216 F: drivers/scsi/st.*
15217 F: drivers/scsi/st_*.h
15218
15219 SCSI TARGET SUBSYSTEM
15220 M: "Martin K. Petersen" <martin.petersen@oracle.com>
15221 L: linux-scsi@vger.kernel.org
15222 L: target-devel@vger.kernel.org
15223 S: Supported
15224 W: http://www.linux-iscsi.org
15225 Q: https://patchwork.kernel.org/project/target-devel/list/
15226 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15227 F: Documentation/target/
15228 F: drivers/target/
15229 F: include/target/
15230
15231 SCTP PROTOCOL
15232 M: Vlad Yasevich <vyasevich@gmail.com>
15233 M: Neil Horman <nhorman@tuxdriver.com>
15234 M: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15235 L: linux-sctp@vger.kernel.org
15236 S: Maintained
15237 W: http://lksctp.sourceforge.net
15238 F: Documentation/networking/sctp.rst
15239 F: include/linux/sctp.h
15240 F: include/net/sctp/
15241 F: include/uapi/linux/sctp.h
15242 F: net/sctp/
15243
15244 SCx200 CPU SUPPORT
15245 M: Jim Cromie <jim.cromie@gmail.com>
15246 S: Odd Fixes
15247 F: Documentation/i2c/busses/scx200_acb.rst
15248 F: arch/x86/platform/scx200/
15249 F: drivers/i2c/busses/scx200*
15250 F: drivers/mtd/maps/scx200_docflash.c
15251 F: drivers/watchdog/scx200_wdt.c
15252 F: include/linux/scx200.h
15253
15254 SCx200 GPIO DRIVER
15255 M: Jim Cromie <jim.cromie@gmail.com>
15256 S: Maintained
15257 F: drivers/char/scx200_gpio.c
15258 F: include/linux/scx200_gpio.h
15259
15260 SCx200 HRT CLOCKSOURCE DRIVER
15261 M: Jim Cromie <jim.cromie@gmail.com>
15262 S: Maintained
15263 F: drivers/clocksource/scx200_hrt.c
15264
15265 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15266 M: Sascha Sommer <saschasommer@freenet.de>
15267 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15268 S: Maintained
15269 F: drivers/mmc/host/sdricoh_cs.c
15270
15271 SECO BOARDS CEC DRIVER
15272 M: Ettore Chimenti <ek5.chimenti@gmail.com>
15273 S: Maintained
15274 F: drivers/media/platform/seco-cec/seco-cec.c
15275 F: drivers/media/platform/seco-cec/seco-cec.h
15276
15277 SECURE COMPUTING
15278 M: Kees Cook <keescook@chromium.org>
15279 R: Andy Lutomirski <luto@amacapital.net>
15280 R: Will Drewry <wad@chromium.org>
15281 S: Supported
15282 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15283 F: Documentation/userspace-api/seccomp_filter.rst
15284 F: include/linux/seccomp.h
15285 F: include/uapi/linux/seccomp.h
15286 F: kernel/seccomp.c
15287 F: tools/testing/selftests/kselftest_harness.h
15288 F: tools/testing/selftests/seccomp/*
15289 K: \bsecure_computing
15290 K: \bTIF_SECCOMP\b
15291
15292 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15293 M: Al Cooper <alcooperx@gmail.com>
15294 L: linux-mmc@vger.kernel.org
15295 L: bcm-kernel-feedback-list@broadcom.com
15296 S: Maintained
15297 F: drivers/mmc/host/sdhci-brcmstb*
15298
15299 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15300 M: Adrian Hunter <adrian.hunter@intel.com>
15301 L: linux-mmc@vger.kernel.org
15302 S: Maintained
15303 F: drivers/mmc/host/sdhci*
15304 F: include/linux/mmc/sdhci*
15305
15306 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15307 M: Ludovic Desroches <ludovic.desroches@microchip.com>
15308 L: linux-mmc@vger.kernel.org
15309 S: Supported
15310 F: drivers/mmc/host/sdhci-of-at91.c
15311
15312 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15313 M: Ben Dooks <ben-linux@fluff.org>
15314 M: Jaehoon Chung <jh80.chung@samsung.com>
15315 L: linux-mmc@vger.kernel.org
15316 S: Maintained
15317 F: drivers/mmc/host/sdhci-s3c*
15318
15319 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15320 M: Viresh Kumar <vireshk@kernel.org>
15321 L: linux-mmc@vger.kernel.org
15322 S: Maintained
15323 F: drivers/mmc/host/sdhci-spear.c
15324
15325 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15326 M: Kishon Vijay Abraham I <kishon@ti.com>
15327 L: linux-mmc@vger.kernel.org
15328 S: Maintained
15329 F: drivers/mmc/host/sdhci-omap.c
15330
15331 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15332 M: Jonathan Derrick <jonathan.derrick@intel.com>
15333 M: Revanth Rajashekar <revanth.rajashekar@intel.com>
15334 L: linux-block@vger.kernel.org
15335 S: Supported
15336 F: block/opal_proto.h
15337 F: block/sed*
15338 F: include/linux/sed*
15339 F: include/uapi/linux/sed*
15340
15341 SECURITY CONTACT
15342 M: Security Officers <security@kernel.org>
15343 S: Supported
15344
15345 SECURITY SUBSYSTEM
15346 M: James Morris <jmorris@namei.org>
15347 M: "Serge E. Hallyn" <serge@hallyn.com>
15348 L: linux-security-module@vger.kernel.org (suggested Cc:)
15349 S: Supported
15350 W: http://kernsec.org/
15351 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15352 F: security/
15353 X: security/selinux/
15354
15355 SELINUX SECURITY MODULE
15356 M: Paul Moore <paul@paul-moore.com>
15357 M: Stephen Smalley <stephen.smalley.work@gmail.com>
15358 M: Eric Paris <eparis@parisplace.org>
15359 L: selinux@vger.kernel.org
15360 S: Supported
15361 W: https://selinuxproject.org
15362 W: https://github.com/SELinuxProject
15363 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15364 F: Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15365 F: Documentation/ABI/obsolete/sysfs-selinux-disable
15366 F: Documentation/admin-guide/LSM/SELinux.rst
15367 F: include/uapi/linux/selinux_netlink.h
15368 F: scripts/selinux/
15369 F: security/selinux/
15370
15371 SENSABLE PHANTOM
15372 M: Jiri Slaby <jirislaby@gmail.com>
15373 S: Maintained
15374 F: drivers/misc/phantom.c
15375 F: include/uapi/linux/phantom.h
15376
15377 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15378 M: Tomasz Duszynski <tduszyns@gmail.com>
15379 S: Maintained
15380 F: Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15381 F: drivers/iio/chemical/sps30.c
15382
15383 SERIAL DEVICE BUS
15384 M: Rob Herring <robh@kernel.org>
15385 L: linux-serial@vger.kernel.org
15386 S: Maintained
15387 F: Documentation/devicetree/bindings/serial/serial.yaml
15388 F: drivers/tty/serdev/
15389 F: include/linux/serdev.h
15390
15391 SERIAL DRIVERS
15392 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15393 L: linux-serial@vger.kernel.org
15394 S: Maintained
15395 F: Documentation/devicetree/bindings/serial/
15396 F: drivers/tty/serial/
15397
15398 SERIAL IR RECEIVER
15399 M: Sean Young <sean@mess.org>
15400 L: linux-media@vger.kernel.org
15401 S: Maintained
15402 F: drivers/media/rc/serial_ir.c
15403
15404 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15405 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15406 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15407 S: Maintained
15408 F: Documentation/devicetree/bindings/slimbus/
15409 F: drivers/slimbus/
15410 F: include/linux/slimbus.h
15411
15412 SFC NETWORK DRIVER
15413 M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15414 M: Edward Cree <ecree@solarflare.com>
15415 M: Martin Habets <mhabets@solarflare.com>
15416 L: netdev@vger.kernel.org
15417 S: Supported
15418 F: drivers/net/ethernet/sfc/
15419
15420 SFF/SFP/SFP+ MODULE SUPPORT
15421 M: Russell King <linux@armlinux.org.uk>
15422 L: netdev@vger.kernel.org
15423 S: Maintained
15424 F: drivers/net/phy/phylink.c
15425 F: drivers/net/phy/sfp*
15426 F: include/linux/phylink.h
15427 F: include/linux/sfp.h
15428 K: phylink
15429
15430 SGI GRU DRIVER
15431 M: Dimitri Sivanich <sivanich@sgi.com>
15432 S: Maintained
15433 F: drivers/misc/sgi-gru/
15434
15435 SGI XP/XPC/XPNET DRIVER
15436 M: Cliff Whickman <cpw@sgi.com>
15437 M: Robin Holt <robinmholt@gmail.com>
15438 S: Maintained
15439 F: drivers/misc/sgi-xp/
15440
15441 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15442 M: Ursula Braun <ubraun@linux.ibm.com>
15443 M: Karsten Graul <kgraul@linux.ibm.com>
15444 L: linux-s390@vger.kernel.org
15445 S: Supported
15446 W: http://www.ibm.com/developerworks/linux/linux390/
15447 F: net/smc/
15448
15449 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15450 M: Linus Walleij <linus.walleij@linaro.org>
15451 L: linux-iio@vger.kernel.org
15452 S: Maintained
15453 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15454 F: Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15455 F: drivers/iio/light/gp2ap002.c
15456
15457 SHARP RJ54N1CB0C SENSOR DRIVER
15458 M: Jacopo Mondi <jacopo@jmondi.org>
15459 L: linux-media@vger.kernel.org
15460 S: Odd fixes
15461 T: git git://linuxtv.org/media_tree.git
15462 F: drivers/media/i2c/rj54n1cb0c.c
15463 F: include/media/i2c/rj54n1cb0c.h
15464
15465 SH_VOU V4L2 OUTPUT DRIVER
15466 L: linux-media@vger.kernel.org
15467 S: Orphan
15468 F: drivers/media/platform/sh_vou.c
15469 F: include/media/drv-intf/sh_vou.h
15470
15471 SI2157 MEDIA DRIVER
15472 M: Antti Palosaari <crope@iki.fi>
15473 L: linux-media@vger.kernel.org
15474 S: Maintained
15475 W: https://linuxtv.org
15476 W: http://palosaari.fi/linux/
15477 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15478 T: git git://linuxtv.org/anttip/media_tree.git
15479 F: drivers/media/tuners/si2157*
15480
15481 SI2165 MEDIA DRIVER
15482 M: Matthias Schwarzott <zzam@gentoo.org>
15483 L: linux-media@vger.kernel.org
15484 S: Maintained
15485 W: https://linuxtv.org
15486 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15487 F: drivers/media/dvb-frontends/si2165*
15488
15489 SI2168 MEDIA DRIVER
15490 M: Antti Palosaari <crope@iki.fi>
15491 L: linux-media@vger.kernel.org
15492 S: Maintained
15493 W: https://linuxtv.org
15494 W: http://palosaari.fi/linux/
15495 Q: http://patchwork.linuxtv.org/project/linux-media/list/
15496 T: git git://linuxtv.org/anttip/media_tree.git
15497 F: drivers/media/dvb-frontends/si2168*
15498
15499 SI470X FM RADIO RECEIVER I2C DRIVER
15500 M: Hans Verkuil <hverkuil@xs4all.nl>
15501 L: linux-media@vger.kernel.org
15502 S: Odd Fixes
15503 W: https://linuxtv.org
15504 T: git git://linuxtv.org/media_tree.git
15505 F: drivers/media/radio/si470x/radio-si470x-i2c.c
15506
15507 SI470X FM RADIO RECEIVER USB DRIVER
15508 M: Hans Verkuil <hverkuil@xs4all.nl>
15509 L: linux-media@vger.kernel.org
15510 S: Maintained
15511 W: https://linuxtv.org
15512 T: git git://linuxtv.org/media_tree.git
15513 F: drivers/media/radio/si470x/radio-si470x-common.c
15514 F: drivers/media/radio/si470x/radio-si470x-usb.c
15515 F: drivers/media/radio/si470x/radio-si470x.h
15516
15517 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15518 M: Eduardo Valentin <edubezval@gmail.com>
15519 L: linux-media@vger.kernel.org
15520 S: Odd Fixes
15521 W: https://linuxtv.org
15522 T: git git://linuxtv.org/media_tree.git
15523 F: drivers/media/radio/si4713/si4713.?
15524
15525 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15526 M: Eduardo Valentin <edubezval@gmail.com>
15527 L: linux-media@vger.kernel.org
15528 S: Odd Fixes
15529 W: https://linuxtv.org
15530 T: git git://linuxtv.org/media_tree.git
15531 F: drivers/media/radio/si4713/radio-platform-si4713.c
15532
15533 SI4713 FM RADIO TRANSMITTER USB DRIVER
15534 M: Hans Verkuil <hverkuil@xs4all.nl>
15535 L: linux-media@vger.kernel.org
15536 S: Maintained
15537 W: https://linuxtv.org
15538 T: git git://linuxtv.org/media_tree.git
15539 F: drivers/media/radio/si4713/radio-usb-si4713.c
15540
15541 SIANO DVB DRIVER
15542 M: Mauro Carvalho Chehab <mchehab@kernel.org>
15543 L: linux-media@vger.kernel.org
15544 S: Odd fixes
15545 W: https://linuxtv.org
15546 T: git git://linuxtv.org/media_tree.git
15547 F: drivers/media/common/siano/
15548 F: drivers/media/mmc/siano/
15549 F: drivers/media/usb/siano/
15550 F: drivers/media/usb/siano/
15551
15552 SIFIVE DRIVERS
15553 M: Palmer Dabbelt <palmer@dabbelt.com>
15554 M: Paul Walmsley <paul.walmsley@sifive.com>
15555 L: linux-riscv@lists.infradead.org
15556 S: Supported
15557 T: git git://github.com/sifive/riscv-linux.git
15558 N: sifive
15559 K: [^@]sifive
15560
15561 SIFIVE FU540 SYSTEM-ON-CHIP
15562 M: Paul Walmsley <paul.walmsley@sifive.com>
15563 M: Palmer Dabbelt <palmer@dabbelt.com>
15564 L: linux-riscv@lists.infradead.org
15565 S: Supported
15566 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15567 N: fu540
15568 K: fu540
15569
15570 SIFIVE PDMA DRIVER
15571 M: Green Wan <green.wan@sifive.com>
15572 S: Maintained
15573 F: Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15574 F: drivers/dma/sf-pdma/
15575
15576 SILEAD TOUCHSCREEN DRIVER
15577 M: Hans de Goede <hdegoede@redhat.com>
15578 L: linux-input@vger.kernel.org
15579 L: platform-driver-x86@vger.kernel.org
15580 S: Maintained
15581 F: drivers/input/touchscreen/silead.c
15582 F: drivers/platform/x86/touchscreen_dmi.c
15583
15584 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15585 M: Jérôme Pouiller <jerome.pouiller@silabs.com>
15586 S: Supported
15587 F: drivers/staging/wfx/
15588
15589 SILICON MOTION SM712 FRAME BUFFER DRIVER
15590 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15591 M: Teddy Wang <teddy.wang@siliconmotion.com>
15592 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15593 L: linux-fbdev@vger.kernel.org
15594 S: Maintained
15595 F: Documentation/fb/sm712fb.rst
15596 F: drivers/video/fbdev/sm712*
15597
15598 SIMPLE FIRMWARE INTERFACE (SFI)
15599 S: Obsolete
15600 W: http://simplefirmware.org/
15601 F: arch/x86/platform/sfi/
15602 F: drivers/sfi/
15603 F: include/linux/sfi*.h
15604
15605 SIMPLEFB FB DRIVER
15606 M: Hans de Goede <hdegoede@redhat.com>
15607 L: linux-fbdev@vger.kernel.org
15608 S: Maintained
15609 F: Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15610 F: drivers/video/fbdev/simplefb.c
15611 F: include/linux/platform_data/simplefb.h
15612
15613 SIMTEC EB110ATX (Chalice CATS)
15614 M: Vincent Sanders <vince@simtec.co.uk>
15615 M: Simtec Linux Team <linux@simtec.co.uk>
15616 S: Supported
15617 W: http://www.simtec.co.uk/products/EB110ATX/
15618
15619 SIMTEC EB2410ITX (BAST)
15620 M: Vincent Sanders <vince@simtec.co.uk>
15621 M: Simtec Linux Team <linux@simtec.co.uk>
15622 S: Supported
15623 W: http://www.simtec.co.uk/products/EB2410ITX/
15624 F: arch/arm/mach-s3c24xx/bast-ide.c
15625 F: arch/arm/mach-s3c24xx/bast-irq.c
15626 F: arch/arm/mach-s3c24xx/mach-bast.c
15627
15628 SIOX
15629 M: Thorsten Scherer <t.scherer@eckelmann.de>
15630 M: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15631 R: Pengutronix Kernel Team <kernel@pengutronix.de>
15632 S: Supported
15633 F: drivers/gpio/gpio-siox.c
15634 F: drivers/siox/*
15635 F: include/trace/events/siox.h
15636
15637 SIPHASH PRF ROUTINES
15638 M: Jason A. Donenfeld <Jason@zx2c4.com>
15639 S: Maintained
15640 F: include/linux/siphash.h
15641 F: lib/siphash.c
15642 F: lib/test_siphash.c
15643
15644 SIS 190 ETHERNET DRIVER
15645 M: Francois Romieu <romieu@fr.zoreil.com>
15646 L: netdev@vger.kernel.org
15647 S: Maintained
15648 F: drivers/net/ethernet/sis/sis190.c
15649
15650 SIS 900/7016 FAST ETHERNET DRIVER
15651 M: Daniele Venzano <venza@brownhat.org>
15652 L: netdev@vger.kernel.org
15653 S: Maintained
15654 W: http://www.brownhat.org/sis900.html
15655 F: drivers/net/ethernet/sis/sis900.*
15656
15657 SIS FRAMEBUFFER DRIVER
15658 M: Thomas Winischhofer <thomas@winischhofer.net>
15659 S: Maintained
15660 W: http://www.winischhofer.net/linuxsisvga.shtml
15661 F: Documentation/fb/sisfb.rst
15662 F: drivers/video/fbdev/sis/
15663 F: include/video/sisfb.h
15664
15665 SIS USB2VGA DRIVER
15666 M: Thomas Winischhofer <thomas@winischhofer.net>
15667 S: Maintained
15668 W: http://www.winischhofer.at/linuxsisusbvga.shtml
15669 F: drivers/usb/misc/sisusbvga/
15670
15671 SLAB ALLOCATOR
15672 M: Christoph Lameter <cl@linux.com>
15673 M: Pekka Enberg <penberg@kernel.org>
15674 M: David Rientjes <rientjes@google.com>
15675 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
15676 M: Andrew Morton <akpm@linux-foundation.org>
15677 L: linux-mm@kvack.org
15678 S: Maintained
15679 F: include/linux/sl?b*.h
15680 F: mm/sl?b*
15681
15682 SLEEPABLE READ-COPY UPDATE (SRCU)
15683 M: Lai Jiangshan <jiangshanlai@gmail.com>
15684 M: "Paul E. McKenney" <paulmck@kernel.org>
15685 M: Josh Triplett <josh@joshtriplett.org>
15686 R: Steven Rostedt <rostedt@goodmis.org>
15687 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15688 L: rcu@vger.kernel.org
15689 S: Supported
15690 W: http://www.rdrop.com/users/paulmck/RCU/
15691 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15692 F: include/linux/srcu*.h
15693 F: kernel/rcu/srcu*.c
15694
15695 SMACK SECURITY MODULE
15696 M: Casey Schaufler <casey@schaufler-ca.com>
15697 L: linux-security-module@vger.kernel.org
15698 S: Maintained
15699 W: http://schaufler-ca.com
15700 T: git git://github.com/cschaufler/smack-next
15701 F: Documentation/admin-guide/LSM/Smack.rst
15702 F: security/smack/
15703
15704 SMC91x ETHERNET DRIVER
15705 M: Nicolas Pitre <nico@fluxnic.net>
15706 S: Odd Fixes
15707 F: drivers/net/ethernet/smsc/smc91x.*
15708
15709 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15710 M: Mark Rutland <mark.rutland@arm.com>
15711 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15712 M: Sudeep Holla <sudeep.holla@arm.com>
15713 L: linux-arm-kernel@lists.infradead.org
15714 S: Maintained
15715 F: drivers/firmware/smccc/
15716 F: include/linux/arm-smccc.h
15717
15718 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15719 M: Sakari Ailus <sakari.ailus@linux.intel.com>
15720 L: linux-media@vger.kernel.org
15721 S: Maintained
15722 F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15723 F: drivers/media/i2c/smiapp-pll.c
15724 F: drivers/media/i2c/smiapp-pll.h
15725 F: drivers/media/i2c/smiapp/
15726 F: include/uapi/linux/smiapp.h
15727
15728 SMM665 HARDWARE MONITOR DRIVER
15729 M: Guenter Roeck <linux@roeck-us.net>
15730 L: linux-hwmon@vger.kernel.org
15731 S: Maintained
15732 F: Documentation/hwmon/smm665.rst
15733 F: drivers/hwmon/smm665.c
15734
15735 SMSC EMC2103 HARDWARE MONITOR DRIVER
15736 M: Steve Glendinning <steve.glendinning@shawell.net>
15737 L: linux-hwmon@vger.kernel.org
15738 S: Maintained
15739 F: Documentation/hwmon/emc2103.rst
15740 F: drivers/hwmon/emc2103.c
15741
15742 SMSC SCH5627 HARDWARE MONITOR DRIVER
15743 M: Hans de Goede <hdegoede@redhat.com>
15744 L: linux-hwmon@vger.kernel.org
15745 S: Supported
15746 F: Documentation/hwmon/sch5627.rst
15747 F: drivers/hwmon/sch5627.c
15748
15749 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15750 M: Steve Glendinning <steve.glendinning@shawell.net>
15751 L: linux-fbdev@vger.kernel.org
15752 S: Maintained
15753 F: drivers/video/fbdev/smscufx.c
15754
15755 SMSC47B397 HARDWARE MONITOR DRIVER
15756 M: Jean Delvare <jdelvare@suse.com>
15757 L: linux-hwmon@vger.kernel.org
15758 S: Maintained
15759 F: Documentation/hwmon/smsc47b397.rst
15760 F: drivers/hwmon/smsc47b397.c
15761
15762 SMSC911x ETHERNET DRIVER
15763 M: Steve Glendinning <steve.glendinning@shawell.net>
15764 L: netdev@vger.kernel.org
15765 S: Maintained
15766 F: drivers/net/ethernet/smsc/smsc911x.*
15767 F: include/linux/smsc911x.h
15768
15769 SMSC9420 PCI ETHERNET DRIVER
15770 M: Steve Glendinning <steve.glendinning@shawell.net>
15771 L: netdev@vger.kernel.org
15772 S: Maintained
15773 F: drivers/net/ethernet/smsc/smsc9420.*
15774
15775 SOCIONEXT (SNI) AVE NETWORK DRIVER
15776 M: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15777 L: netdev@vger.kernel.org
15778 S: Maintained
15779 F: Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
15780 F: drivers/net/ethernet/socionext/sni_ave.c
15781
15782 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15783 M: Jassi Brar <jaswinder.singh@linaro.org>
15784 M: Ilias Apalodimas <ilias.apalodimas@linaro.org>
15785 L: netdev@vger.kernel.org
15786 S: Maintained
15787 F: Documentation/devicetree/bindings/net/socionext-netsec.txt
15788 F: drivers/net/ethernet/socionext/netsec.c
15789
15790 SOCIONEXT (SNI) Synquacer SPI DRIVER
15791 M: Masahisa Kojima <masahisa.kojima@linaro.org>
15792 M: Jassi Brar <jaswinder.singh@linaro.org>
15793 L: linux-spi@vger.kernel.org
15794 S: Maintained
15795 F: Documentation/devicetree/bindings/spi/spi-synquacer.txt
15796 F: drivers/spi/spi-synquacer.c
15797
15798 SOCIONEXT SYNQUACER I2C DRIVER
15799 M: Ard Biesheuvel <ardb@kernel.org>
15800 L: linux-i2c@vger.kernel.org
15801 S: Maintained
15802 F: Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15803 F: drivers/i2c/busses/i2c-synquacer.c
15804
15805 SOCIONEXT UNIPHIER SOUND DRIVER
15806 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15807 S: Orphan
15808 F: sound/soc/uniphier/
15809
15810 SOEKRIS NET48XX LED SUPPORT
15811 M: Chris Boot <bootc@bootc.net>
15812 S: Maintained
15813 F: drivers/leds/leds-net48xx.c
15814
15815 SOFT-IWARP DRIVER (siw)
15816 M: Bernard Metzler <bmt@zurich.ibm.com>
15817 L: linux-rdma@vger.kernel.org
15818 S: Supported
15819 F: drivers/infiniband/sw/siw/
15820 F: include/uapi/rdma/siw-abi.h
15821
15822 SOFT-ROCE DRIVER (rxe)
15823 M: Zhu Yanjun <yanjunz@mellanox.com>
15824 L: linux-rdma@vger.kernel.org
15825 S: Supported
15826 F: drivers/infiniband/sw/rxe/
15827 F: include/uapi/rdma/rdma_user_rxe.h
15828
15829 SOFTLOGIC 6x10 MPEG CODEC
15830 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15831 M: Anton Sviridenko <anton@corp.bluecherry.net>
15832 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15833 M: Andrey Utkin <andrey_utkin@fastmail.com>
15834 M: Ismael Luceno <ismael@iodev.co.uk>
15835 L: linux-media@vger.kernel.org
15836 S: Supported
15837 F: drivers/media/pci/solo6x10/
15838
15839 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15840 M: James Morse <james.morse@arm.com>
15841 L: linux-arm-kernel@lists.infradead.org
15842 S: Maintained
15843 F: Documentation/devicetree/bindings/arm/firmware/sdei.txt
15844 F: drivers/firmware/arm_sdei.c
15845 F: include/linux/arm_sdei.h
15846 F: include/uapi/linux/arm_sdei.h
15847
15848 SOFTWARE RAID (Multiple Disks) SUPPORT
15849 M: Song Liu <song@kernel.org>
15850 L: linux-raid@vger.kernel.org
15851 S: Supported
15852 T: git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15853 F: drivers/md/Kconfig
15854 F: drivers/md/Makefile
15855 F: drivers/md/md*
15856 F: drivers/md/raid*
15857 F: include/linux/raid/
15858 F: include/uapi/linux/raid/
15859
15860 SOLIDRUN CLEARFOG SUPPORT
15861 M: Russell King <linux@armlinux.org.uk>
15862 S: Maintained
15863 F: arch/arm/boot/dts/armada-388-clearfog*
15864 F: arch/arm/boot/dts/armada-38x-solidrun-*
15865
15866 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15867 M: Russell King <linux@armlinux.org.uk>
15868 S: Maintained
15869 F: arch/arm/boot/dts/imx6*-cubox-i*
15870 F: arch/arm/boot/dts/imx6*-hummingboard*
15871 F: arch/arm/boot/dts/imx6*-sr-*
15872
15873 SONIC NETWORK DRIVER
15874 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15875 L: netdev@vger.kernel.org
15876 S: Maintained
15877 F: drivers/net/ethernet/natsemi/sonic.*
15878
15879 SONICS SILICON BACKPLANE DRIVER (SSB)
15880 M: Michael Buesch <m@bues.ch>
15881 L: linux-wireless@vger.kernel.org
15882 S: Maintained
15883 F: drivers/ssb/
15884 F: include/linux/ssb/
15885
15886 SONY IMX214 SENSOR DRIVER
15887 M: Ricardo Ribalda <ribalda@kernel.org>
15888 L: linux-media@vger.kernel.org
15889 S: Maintained
15890 T: git git://linuxtv.org/media_tree.git
15891 F: Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15892 F: drivers/media/i2c/imx214.c
15893
15894 SONY IMX219 SENSOR DRIVER
15895 M: Dave Stevenson <dave.stevenson@raspberrypi.com>
15896 L: linux-media@vger.kernel.org
15897 S: Maintained
15898 T: git git://linuxtv.org/media_tree.git
15899 F: Documentation/devicetree/bindings/media/i2c/imx219.yaml
15900 F: drivers/media/i2c/imx219.c
15901
15902 SONY IMX258 SENSOR DRIVER
15903 M: Sakari Ailus <sakari.ailus@linux.intel.com>
15904 L: linux-media@vger.kernel.org
15905 S: Maintained
15906 T: git git://linuxtv.org/media_tree.git
15907 F: drivers/media/i2c/imx258.c
15908
15909 SONY IMX274 SENSOR DRIVER
15910 M: Leon Luo <leonl@leopardimaging.com>
15911 L: linux-media@vger.kernel.org
15912 S: Maintained
15913 T: git git://linuxtv.org/media_tree.git
15914 F: Documentation/devicetree/bindings/media/i2c/imx274.txt
15915 F: drivers/media/i2c/imx274.c
15916
15917 SONY IMX290 SENSOR DRIVER
15918 M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15919 L: linux-media@vger.kernel.org
15920 S: Maintained
15921 T: git git://linuxtv.org/media_tree.git
15922 F: Documentation/devicetree/bindings/media/i2c/imx290.txt
15923 F: drivers/media/i2c/imx290.c
15924
15925 SONY IMX319 SENSOR DRIVER
15926 M: Bingbu Cao <bingbu.cao@intel.com>
15927 L: linux-media@vger.kernel.org
15928 S: Maintained
15929 T: git git://linuxtv.org/media_tree.git
15930 F: drivers/media/i2c/imx319.c
15931
15932 SONY IMX355 SENSOR DRIVER
15933 M: Tianshu Qiu <tian.shu.qiu@intel.com>
15934 L: linux-media@vger.kernel.org
15935 S: Maintained
15936 T: git git://linuxtv.org/media_tree.git
15937 F: drivers/media/i2c/imx355.c
15938
15939 SONY MEMORYSTICK SUBSYSTEM
15940 M: Maxim Levitsky <maximlevitsky@gmail.com>
15941 M: Alex Dubov <oakad@yahoo.com>
15942 M: Ulf Hansson <ulf.hansson@linaro.org>
15943 L: linux-mmc@vger.kernel.org
15944 S: Maintained
15945 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15946 F: drivers/memstick/
15947 F: include/linux/memstick.h
15948
15949 SONY VAIO CONTROL DEVICE DRIVER
15950 M: Mattia Dongili <malattia@linux.it>
15951 L: platform-driver-x86@vger.kernel.org
15952 S: Maintained
15953 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15954 F: Documentation/admin-guide/laptops/sony-laptop.rst
15955 F: drivers/char/sonypi.c
15956 F: drivers/platform/x86/sony-laptop.c
15957 F: include/linux/sony-laptop.h
15958
15959 SOUND
15960 M: Jaroslav Kysela <perex@perex.cz>
15961 M: Takashi Iwai <tiwai@suse.com>
15962 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15963 S: Maintained
15964 W: http://www.alsa-project.org/
15965 Q: http://patchwork.kernel.org/project/alsa-devel/list/
15966 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15967 F: Documentation/sound/
15968 F: include/sound/
15969 F: include/uapi/sound/
15970 F: sound/
15971
15972 SOUND - COMPRESSED AUDIO
15973 M: Vinod Koul <vkoul@kernel.org>
15974 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15975 S: Supported
15976 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15977 F: Documentation/sound/designs/compress-offload.rst
15978 F: include/sound/compress_driver.h
15979 F: include/uapi/sound/compress_*
15980 F: sound/core/compress_offload.c
15981 F: sound/soc/soc-compress.c
15982
15983 SOUND - DMAENGINE HELPERS
15984 M: Lars-Peter Clausen <lars@metafoo.de>
15985 S: Supported
15986 F: include/sound/dmaengine_pcm.h
15987 F: sound/core/pcm_dmaengine.c
15988 F: sound/soc/soc-generic-dmaengine-pcm.c
15989
15990 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15991 M: Liam Girdwood <lgirdwood@gmail.com>
15992 M: Mark Brown <broonie@kernel.org>
15993 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
15994 S: Supported
15995 W: http://alsa-project.org/main/index.php/ASoC
15996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15997 F: Documentation/devicetree/bindings/sound/
15998 F: Documentation/sound/soc/
15999 F: include/dt-bindings/sound/
16000 F: include/sound/soc*
16001 F: sound/soc/
16002
16003 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16004 M: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16005 M: Liam Girdwood <lgirdwood@gmail.com>
16006 M: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16007 M: Kai Vehmanen <kai.vehmanen@linux.intel.com>
16008 M: Daniel Baluta <daniel.baluta@nxp.com>
16009 L: sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16010 S: Supported
16011 W: https://github.com/thesofproject/linux/
16012 F: sound/soc/sof/
16013
16014 SOUNDWIRE SUBSYSTEM
16015 M: Vinod Koul <vkoul@kernel.org>
16016 M: Sanyog Kale <sanyog.r.kale@intel.com>
16017 R: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16018 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16019 S: Supported
16020 F: Documentation/driver-api/soundwire/
16021 F: drivers/soundwire/
16022 F: include/linux/soundwire/
16023
16024 SP2 MEDIA DRIVER
16025 M: Olli Salonen <olli.salonen@iki.fi>
16026 L: linux-media@vger.kernel.org
16027 S: Maintained
16028 W: https://linuxtv.org
16029 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16030 F: drivers/media/dvb-frontends/sp2*
16031
16032 SPARC + UltraSPARC (sparc/sparc64)
16033 M: "David S. Miller" <davem@davemloft.net>
16034 L: sparclinux@vger.kernel.org
16035 S: Maintained
16036 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
16037 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16038 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16039 F: arch/sparc/
16040 F: drivers/sbus/
16041
16042 SPARC SERIAL DRIVERS
16043 M: "David S. Miller" <davem@davemloft.net>
16044 L: sparclinux@vger.kernel.org
16045 S: Maintained
16046 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16047 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16048 F: drivers/tty/serial/suncore.c
16049 F: drivers/tty/serial/sunhv.c
16050 F: drivers/tty/serial/sunsab.c
16051 F: drivers/tty/serial/sunsab.h
16052 F: drivers/tty/serial/sunsu.c
16053 F: drivers/tty/serial/sunzilog.c
16054 F: drivers/tty/serial/sunzilog.h
16055 F: drivers/tty/vcc.c
16056 F: include/linux/sunserialcore.h
16057
16058 SPARSE CHECKER
16059 M: "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16060 L: linux-sparse@vger.kernel.org
16061 S: Maintained
16062 W: https://sparse.wiki.kernel.org/
16063 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16064 F: include/linux/compiler.h
16065
16066 SPEAR CLOCK FRAMEWORK SUPPORT
16067 M: Viresh Kumar <vireshk@kernel.org>
16068 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16069 S: Maintained
16070 W: http://www.st.com/spear
16071 F: drivers/clk/spear/
16072
16073 SPEAR PLATFORM SUPPORT
16074 M: Viresh Kumar <vireshk@kernel.org>
16075 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16076 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16077 S: Maintained
16078 W: http://www.st.com/spear
16079 F: arch/arm/boot/dts/spear*
16080 F: arch/arm/mach-spear/
16081
16082 SPI NOR SUBSYSTEM
16083 M: Tudor Ambarus <tudor.ambarus@microchip.com>
16084 L: linux-mtd@lists.infradead.org
16085 S: Maintained
16086 W: http://www.linux-mtd.infradead.org/
16087 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
16088 C: irc://irc.oftc.net/mtd
16089 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16090 F: drivers/mtd/spi-nor/
16091 F: include/linux/mtd/spi-nor.h
16092
16093 SPI SUBSYSTEM
16094 M: Mark Brown <broonie@kernel.org>
16095 L: linux-spi@vger.kernel.org
16096 S: Maintained
16097 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
16098 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16099 F: Documentation/devicetree/bindings/spi/
16100 F: Documentation/spi/
16101 F: drivers/spi/
16102 F: include/linux/spi/
16103 F: include/uapi/linux/spi/
16104 F: tools/spi/
16105
16106 SPIDERNET NETWORK DRIVER for CELL
16107 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16108 L: netdev@vger.kernel.org
16109 S: Supported
16110 F: Documentation/networking/device_drivers/toshiba/spider_net.rst
16111 F: drivers/net/ethernet/toshiba/spider_net*
16112
16113 SPMI SUBSYSTEM
16114 R: Stephen Boyd <sboyd@kernel.org>
16115 L: linux-arm-msm@vger.kernel.org
16116 F: Documentation/devicetree/bindings/spmi/
16117 F: drivers/spmi/
16118 F: include/dt-bindings/spmi/spmi.h
16119 F: include/linux/spmi.h
16120 F: include/trace/events/spmi.h
16121
16122 SPU FILE SYSTEM
16123 M: Jeremy Kerr <jk@ozlabs.org>
16124 L: linuxppc-dev@lists.ozlabs.org
16125 S: Supported
16126 W: http://www.ibm.com/developerworks/power/cell/
16127 F: Documentation/filesystems/spufs/spufs.rst
16128 F: arch/powerpc/platforms/cell/spufs/
16129
16130 SQUASHFS FILE SYSTEM
16131 M: Phillip Lougher <phillip@squashfs.org.uk>
16132 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
16133 S: Maintained
16134 W: http://squashfs.org.uk
16135 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16136 F: Documentation/filesystems/squashfs.rst
16137 F: fs/squashfs/
16138
16139 SRM (Alpha) environment access
16140 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
16141 S: Maintained
16142 F: arch/alpha/kernel/srm_env.c
16143
16144 ST LSM6DSx IMU IIO DRIVER
16145 M: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16146 L: linux-iio@vger.kernel.org
16147 S: Maintained
16148 W: http://www.st.com/
16149 F: Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16150 F: drivers/iio/imu/st_lsm6dsx/
16151
16152 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16153 M: Mickael Guene <mickael.guene@st.com>
16154 L: linux-media@vger.kernel.org
16155 S: Maintained
16156 T: git git://linuxtv.org/media_tree.git
16157 F: Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16158 F: drivers/media/i2c/st-mipid02.c
16159
16160 ST STM32 I2C/SMBUS DRIVER
16161 M: Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16162 L: linux-i2c@vger.kernel.org
16163 S: Maintained
16164 F: drivers/i2c/busses/i2c-stm32*
16165
16166 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16167 M: Song Qiang <songqiang1304521@gmail.com>
16168 L: linux-iio@vger.kernel.org
16169 S: Maintained
16170 F: Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16171 F: drivers/iio/proximity/vl53l0x-i2c.c
16172
16173 STABLE BRANCH
16174 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16175 M: Sasha Levin <sashal@kernel.org>
16176 L: stable@vger.kernel.org
16177 S: Supported
16178 F: Documentation/process/stable-kernel-rules.rst
16179
16180 STAGING - ATOMISP DRIVER
16181 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16182 R: Sakari Ailus <sakari.ailus@linux.intel.com>
16183 L: linux-media@vger.kernel.org
16184 S: Maintained
16185 F: drivers/staging/media/atomisp/
16186
16187 STAGING - COMEDI
16188 M: Ian Abbott <abbotti@mev.co.uk>
16189 M: H Hartley Sweeten <hsweeten@visionengravers.com>
16190 S: Odd Fixes
16191 F: drivers/staging/comedi/
16192
16193 STAGING - FIELDBUS SUBSYSTEM
16194 M: Sven Van Asbroeck <TheSven73@gmail.com>
16195 S: Maintained
16196 F: drivers/staging/fieldbus/*
16197 F: drivers/staging/fieldbus/Documentation/
16198
16199 STAGING - HMS ANYBUS-S BUS
16200 M: Sven Van Asbroeck <TheSven73@gmail.com>
16201 S: Maintained
16202 F: drivers/staging/fieldbus/anybuss/
16203
16204 STAGING - INDUSTRIAL IO
16205 M: Jonathan Cameron <jic23@kernel.org>
16206 L: linux-iio@vger.kernel.org
16207 S: Odd Fixes
16208 F: Documentation/devicetree/bindings/staging/iio/
16209 F: drivers/staging/iio/
16210
16211 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16212 M: Marc Dietrich <marvin24@gmx.de>
16213 L: ac100@lists.launchpad.net (moderated for non-subscribers)
16214 L: linux-tegra@vger.kernel.org
16215 S: Maintained
16216 F: drivers/staging/nvec/
16217
16218 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16219 M: Jens Frederich <jfrederich@gmail.com>
16220 M: Daniel Drake <dsd@laptop.org>
16221 M: Jon Nettleton <jon.nettleton@gmail.com>
16222 S: Maintained
16223 W: http://wiki.laptop.org/go/DCON
16224 F: drivers/staging/olpc_dcon/
16225
16226 STAGING - REALTEK RTL8188EU DRIVERS
16227 M: Larry Finger <Larry.Finger@lwfinger.net>
16228 S: Odd Fixes
16229 F: drivers/staging/rtl8188eu/
16230
16231 STAGING - REALTEK RTL8712U DRIVERS
16232 M: Larry Finger <Larry.Finger@lwfinger.net>
16233 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16234 S: Odd Fixes
16235 F: drivers/staging/rtl8712/
16236
16237 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16238 M: Michael Hennerich <michael.hennerich@analog.com>
16239 M: Beniamin Bia <beniamin.bia@analog.com>
16240 L: linux-fbdev@vger.kernel.org
16241 S: Supported
16242 F: Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16243 F: drivers/staging/fbtft/fb_seps525.c
16244
16245 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16246 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16247 M: Teddy Wang <teddy.wang@siliconmotion.com>
16248 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16249 L: linux-fbdev@vger.kernel.org
16250 S: Maintained
16251 F: drivers/staging/sm750fb/
16252
16253 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16254 M: William Hubbs <w.d.hubbs@gmail.com>
16255 M: Chris Brannon <chris@the-brannons.com>
16256 M: Kirk Reiser <kirk@reisers.ca>
16257 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
16258 L: speakup@linux-speakup.org
16259 S: Odd Fixes
16260 W: http://www.linux-speakup.org/
16261 F: drivers/staging/speakup/
16262
16263 STAGING - VIA VT665X DRIVERS
16264 M: Forest Bond <forest@alittletooquiet.net>
16265 S: Odd Fixes
16266 F: drivers/staging/vt665?/
16267
16268 STAGING - WILC1000 WIFI DRIVER
16269 M: Adham Abozaeid <adham.abozaeid@microchip.com>
16270 M: Ajay Singh <ajay.kathat@microchip.com>
16271 L: linux-wireless@vger.kernel.org
16272 S: Supported
16273 F: drivers/staging/wilc1000/
16274
16275 STAGING SUBSYSTEM
16276 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16277 L: devel@driverdev.osuosl.org
16278 S: Supported
16279 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16280 F: drivers/staging/
16281
16282 STARFIRE/DURALAN NETWORK DRIVER
16283 M: Ion Badulescu <ionut@badula.org>
16284 S: Odd Fixes
16285 F: drivers/net/ethernet/adaptec/starfire*
16286
16287 STEC S1220 SKD DRIVER
16288 M: Damien Le Moal <Damien.LeMoal@wdc.com>
16289 L: linux-block@vger.kernel.org
16290 S: Maintained
16291 F: drivers/block/skd*[ch]
16292
16293 STI AUDIO (ASoC) DRIVERS
16294 M: Arnaud Pouliquen <arnaud.pouliquen@st.com>
16295 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16296 S: Maintained
16297 F: Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16298 F: sound/soc/sti/
16299
16300 STI CEC DRIVER
16301 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
16302 S: Maintained
16303 F: Documentation/devicetree/bindings/media/stih-cec.txt
16304 F: drivers/media/platform/sti/cec/
16305
16306 STK1160 USB VIDEO CAPTURE DRIVER
16307 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16308 L: linux-media@vger.kernel.org
16309 S: Maintained
16310 T: git git://linuxtv.org/media_tree.git
16311 F: drivers/media/usb/stk1160/
16312
16313 STM32 AUDIO (ASoC) DRIVERS
16314 M: Olivier Moysan <olivier.moysan@st.com>
16315 M: Arnaud Pouliquen <arnaud.pouliquen@st.com>
16316 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16317 S: Maintained
16318 F: Documentation/devicetree/bindings/sound/st,stm32-*.txt
16319 F: sound/soc/stm/
16320
16321 STM32 TIMER/LPTIMER DRIVERS
16322 M: Fabrice Gasnier <fabrice.gasnier@st.com>
16323 S: Maintained
16324 F: Documentation/ABI/testing/*timer-stm32
16325 F: Documentation/devicetree/bindings/*/*stm32-*timer*
16326 F: drivers/*/stm32-*timer*
16327 F: drivers/pwm/pwm-stm32*
16328 F: include/linux/*/stm32-*tim*
16329
16330 STMMAC ETHERNET DRIVER
16331 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
16332 M: Alexandre Torgue <alexandre.torgue@st.com>
16333 M: Jose Abreu <joabreu@synopsys.com>
16334 L: netdev@vger.kernel.org
16335 S: Supported
16336 W: http://www.stlinux.com
16337 F: Documentation/networking/device_drivers/stmicro/
16338 F: drivers/net/ethernet/stmicro/stmmac/
16339
16340 SUN3/3X
16341 M: Sam Creasey <sammy@sammy.net>
16342 S: Maintained
16343 W: http://sammy.net/sun3/
16344 F: arch/m68k/include/asm/sun3*
16345 F: arch/m68k/kernel/*sun3*
16346 F: arch/m68k/sun3*/
16347 F: drivers/net/ethernet/i825xx/sun3*
16348
16349 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16350 M: Hans de Goede <hdegoede@redhat.com>
16351 L: linux-input@vger.kernel.org
16352 S: Maintained
16353 F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16354 F: drivers/input/keyboard/sun4i-lradc-keys.c
16355
16356 SUNDANCE NETWORK DRIVER
16357 M: Denis Kirjanov <kda@linux-powerpc.org>
16358 L: netdev@vger.kernel.org
16359 S: Maintained
16360 F: drivers/net/ethernet/dlink/sundance.c
16361
16362 SUPERH
16363 M: Yoshinori Sato <ysato@users.sourceforge.jp>
16364 M: Rich Felker <dalias@libc.org>
16365 L: linux-sh@vger.kernel.org
16366 S: Maintained
16367 Q: http://patchwork.kernel.org/project/linux-sh/list/
16368 F: Documentation/sh/
16369 F: arch/sh/
16370 F: drivers/sh/
16371
16372 SUSPEND TO RAM
16373 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
16374 M: Len Brown <len.brown@intel.com>
16375 M: Pavel Machek <pavel@ucw.cz>
16376 L: linux-pm@vger.kernel.org
16377 S: Supported
16378 B: https://bugzilla.kernel.org
16379 F: Documentation/power/
16380 F: arch/x86/kernel/acpi/
16381 F: drivers/base/power/
16382 F: include/linux/freezer.h
16383 F: include/linux/pm.h
16384 F: include/linux/suspend.h
16385 F: kernel/power/
16386
16387 SVGA HANDLING
16388 M: Martin Mares <mj@ucw.cz>
16389 L: linux-video@atrey.karlin.mff.cuni.cz
16390 S: Maintained
16391 F: Documentation/admin-guide/svga.rst
16392 F: arch/x86/boot/video*
16393
16394 SWIOTLB SUBSYSTEM
16395 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16396 L: iommu@lists.linux-foundation.org
16397 S: Supported
16398 T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16399 F: arch/*/kernel/pci-swiotlb.c
16400 F: include/linux/swiotlb.h
16401 F: kernel/dma/swiotlb.c
16402
16403 SWITCHDEV
16404 M: Jiri Pirko <jiri@resnulli.us>
16405 M: Ivan Vecera <ivecera@redhat.com>
16406 L: netdev@vger.kernel.org
16407 S: Supported
16408 F: include/net/switchdev.h
16409 F: net/switchdev/
16410
16411 SY8106A REGULATOR DRIVER
16412 M: Icenowy Zheng <icenowy@aosc.io>
16413 S: Maintained
16414 F: Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16415 F: drivers/regulator/sy8106a-regulator.c
16416
16417 SYNC FILE FRAMEWORK
16418 M: Sumit Semwal <sumit.semwal@linaro.org>
16419 R: Gustavo Padovan <gustavo@padovan.org>
16420 L: linux-media@vger.kernel.org
16421 L: dri-devel@lists.freedesktop.org
16422 S: Maintained
16423 T: git git://anongit.freedesktop.org/drm/drm-misc
16424 F: Documentation/driver-api/sync_file.rst
16425 F: drivers/dma-buf/dma-fence*
16426 F: drivers/dma-buf/sw_sync.c
16427 F: drivers/dma-buf/sync_*
16428 F: include/linux/sync_file.h
16429 F: include/uapi/linux/sync_file.h
16430
16431 SYNOPSYS ARC ARCHITECTURE
16432 M: Vineet Gupta <vgupta@synopsys.com>
16433 L: linux-snps-arc@lists.infradead.org
16434 S: Supported
16435 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16436 F: Documentation/devicetree/bindings/arc/*
16437 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16438 F: arch/arc/
16439 F: drivers/clocksource/arc_timer.c
16440 F: drivers/tty/serial/arc_uart.c
16441
16442 SYNOPSYS ARC HSDK SDP pll clock driver
16443 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16444 S: Supported
16445 F: Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16446 F: drivers/clk/clk-hsdk-pll.c
16447
16448 SYNOPSYS ARC SDP clock driver
16449 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16450 S: Supported
16451 F: Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16452 F: drivers/clk/axs10x/*
16453
16454 SYNOPSYS ARC SDP platform support
16455 M: Alexey Brodkin <abrodkin@synopsys.com>
16456 S: Supported
16457 F: Documentation/devicetree/bindings/arc/axs10*
16458 F: arch/arc/boot/dts/ax*
16459 F: arch/arc/plat-axs10x
16460
16461 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16462 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16463 S: Supported
16464 F: Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16465 F: drivers/reset/reset-axs10x.c
16466
16467 SYNOPSYS CREG GPIO DRIVER
16468 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16469 S: Maintained
16470 F: Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16471 F: drivers/gpio/gpio-creg-snps.c
16472
16473 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16474 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16475 S: Maintained
16476 F: drivers/tty/serial/8250/8250_dw.c
16477 F: drivers/tty/serial/8250/8250_dwlib.*
16478 F: drivers/tty/serial/8250/8250_lpss.c
16479
16480 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16481 M: Hoan Tran <hoan@os.amperecomputing.com>
16482 M: Serge Semin <fancer.lancer@gmail.com>
16483 L: linux-gpio@vger.kernel.org
16484 S: Maintained
16485 F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16486 F: drivers/gpio/gpio-dwapb.c
16487
16488 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16489 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16490 S: Maintained
16491 F: Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16492 F: drivers/dma/dw-axi-dmac/
16493
16494 SYNOPSYS DESIGNWARE DMAC DRIVER
16495 M: Viresh Kumar <vireshk@kernel.org>
16496 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16497 S: Maintained
16498 F: Documentation/devicetree/bindings/dma/snps-dma.txt
16499 F: drivers/dma/dw/
16500 F: include/dt-bindings/dma/dw-dmac.h
16501 F: include/linux/dma/dw.h
16502 F: include/linux/platform_data/dma-dw.h
16503
16504 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16505 M: Jose Abreu <Jose.Abreu@synopsys.com>
16506 L: netdev@vger.kernel.org
16507 S: Supported
16508 F: drivers/net/ethernet/synopsys/
16509
16510 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16511 M: Jose Abreu <Jose.Abreu@synopsys.com>
16512 L: netdev@vger.kernel.org
16513 S: Supported
16514 F: drivers/net/phy/mdio-xpcs.c
16515 F: include/linux/mdio-xpcs.h
16516
16517 SYNOPSYS DESIGNWARE I2C DRIVER
16518 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
16519 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16520 R: Mika Westerberg <mika.westerberg@linux.intel.com>
16521 L: linux-i2c@vger.kernel.org
16522 S: Maintained
16523 F: drivers/i2c/busses/i2c-designware-*
16524 F: include/linux/platform_data/i2c-designware.h
16525
16526 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16527 M: Jaehoon Chung <jh80.chung@samsung.com>
16528 L: linux-mmc@vger.kernel.org
16529 S: Maintained
16530 F: drivers/mmc/host/dw_mmc*
16531
16532 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16533 M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16534 S: Supported
16535 F: Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16536 F: drivers/reset/reset-hsdk.c
16537 F: include/dt-bindings/reset/snps,hsdk-reset.h
16538
16539 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16540 M: Prabu Thangamuthu <prabu.t@synopsys.com>
16541 M: Manjunath M B <manjumb@synopsys.com>
16542 L: linux-mmc@vger.kernel.org
16543 S: Maintained
16544 F: drivers/mmc/host/sdhci-pci-dwc-mshc.c
16545
16546 SYSTEM CONFIGURATION (SYSCON)
16547 M: Lee Jones <lee.jones@linaro.org>
16548 M: Arnd Bergmann <arnd@arndb.de>
16549 S: Supported
16550 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16551 F: drivers/mfd/syscon.c
16552
16553 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16554 M: Sudeep Holla <sudeep.holla@arm.com>
16555 L: linux-arm-kernel@lists.infradead.org
16556 S: Maintained
16557 F: Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16558 F: drivers/clk/clk-sc[mp]i.c
16559 F: drivers/cpufreq/sc[mp]i-cpufreq.c
16560 F: drivers/firmware/arm_scmi/
16561 F: drivers/firmware/arm_scpi.c
16562 F: drivers/reset/reset-scmi.c
16563 F: include/linux/sc[mp]i_protocol.h
16564 F: include/trace/events/scmi.h
16565
16566 SYSTEM RESET/SHUTDOWN DRIVERS
16567 M: Sebastian Reichel <sre@kernel.org>
16568 L: linux-pm@vger.kernel.org
16569 S: Maintained
16570 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16571 F: Documentation/devicetree/bindings/power/reset/
16572 F: drivers/power/reset/
16573
16574 SYSTEM TRACE MODULE CLASS
16575 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
16576 S: Maintained
16577 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16578 F: Documentation/trace/stm.rst
16579 F: drivers/hwtracing/stm/
16580 F: include/linux/stm.h
16581 F: include/uapi/linux/stm.h
16582
16583 SYSTEM76 ACPI DRIVER
16584 M: Jeremy Soller <jeremy@system76.com>
16585 M: System76 Product Development <productdev@system76.com>
16586 L: platform-driver-x86@vger.kernel.org
16587 S: Maintained
16588 F: drivers/platform/x86/system76_acpi.c
16589
16590 SYSV FILESYSTEM
16591 M: Christoph Hellwig <hch@infradead.org>
16592 S: Maintained
16593 F: Documentation/filesystems/sysv-fs.rst
16594 F: fs/sysv/
16595 F: include/linux/sysv_fs.h
16596
16597 TASKSTATS STATISTICS INTERFACE
16598 M: Balbir Singh <bsingharora@gmail.com>
16599 S: Maintained
16600 F: Documentation/accounting/taskstats*
16601 F: include/linux/taskstats*
16602 F: kernel/taskstats.c
16603
16604 TC subsystem
16605 M: Jamal Hadi Salim <jhs@mojatatu.com>
16606 M: Cong Wang <xiyou.wangcong@gmail.com>
16607 M: Jiri Pirko <jiri@resnulli.us>
16608 L: netdev@vger.kernel.org
16609 S: Maintained
16610 F: include/net/pkt_cls.h
16611 F: include/net/pkt_sched.h
16612 F: include/net/tc_act/
16613 F: include/uapi/linux/pkt_cls.h
16614 F: include/uapi/linux/pkt_sched.h
16615 F: include/uapi/linux/tc_act/
16616 F: include/uapi/linux/tc_ematch/
16617 F: net/sched/
16618
16619 TC90522 MEDIA DRIVER
16620 M: Akihiro Tsukada <tskd08@gmail.com>
16621 L: linux-media@vger.kernel.org
16622 S: Odd Fixes
16623 F: drivers/media/dvb-frontends/tc90522*
16624
16625 TCP LOW PRIORITY MODULE
16626 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16627 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16628 S: Maintained
16629 W: http://tcp-lp-mod.sourceforge.net/
16630 F: net/ipv4/tcp_lp.c
16631
16632 TDA10071 MEDIA DRIVER
16633 M: Antti Palosaari <crope@iki.fi>
16634 L: linux-media@vger.kernel.org
16635 S: Maintained
16636 W: https://linuxtv.org
16637 W: http://palosaari.fi/linux/
16638 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16639 T: git git://linuxtv.org/anttip/media_tree.git
16640 F: drivers/media/dvb-frontends/tda10071*
16641
16642 TDA18212 MEDIA DRIVER
16643 M: Antti Palosaari <crope@iki.fi>
16644 L: linux-media@vger.kernel.org
16645 S: Maintained
16646 W: https://linuxtv.org
16647 W: http://palosaari.fi/linux/
16648 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16649 T: git git://linuxtv.org/anttip/media_tree.git
16650 F: drivers/media/tuners/tda18212*
16651
16652 TDA18218 MEDIA DRIVER
16653 M: Antti Palosaari <crope@iki.fi>
16654 L: linux-media@vger.kernel.org
16655 S: Maintained
16656 W: https://linuxtv.org
16657 W: http://palosaari.fi/linux/
16658 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16659 T: git git://linuxtv.org/anttip/media_tree.git
16660 F: drivers/media/tuners/tda18218*
16661
16662 TDA18250 MEDIA DRIVER
16663 M: Olli Salonen <olli.salonen@iki.fi>
16664 L: linux-media@vger.kernel.org
16665 S: Maintained
16666 W: https://linuxtv.org
16667 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16668 T: git git://linuxtv.org/media_tree.git
16669 F: drivers/media/tuners/tda18250*
16670
16671 TDA18271 MEDIA DRIVER
16672 M: Michael Krufky <mkrufky@linuxtv.org>
16673 L: linux-media@vger.kernel.org
16674 S: Maintained
16675 W: https://linuxtv.org
16676 W: http://github.com/mkrufky
16677 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16678 T: git git://linuxtv.org/mkrufky/tuners.git
16679 F: drivers/media/tuners/tda18271*
16680
16681 TDA1997x MEDIA DRIVER
16682 M: Tim Harvey <tharvey@gateworks.com>
16683 L: linux-media@vger.kernel.org
16684 S: Maintained
16685 W: https://linuxtv.org
16686 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16687 F: drivers/media/i2c/tda1997x.*
16688
16689 TDA827x MEDIA DRIVER
16690 M: Michael Krufky <mkrufky@linuxtv.org>
16691 L: linux-media@vger.kernel.org
16692 S: Maintained
16693 W: https://linuxtv.org
16694 W: http://github.com/mkrufky
16695 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16696 T: git git://linuxtv.org/mkrufky/tuners.git
16697 F: drivers/media/tuners/tda8290.*
16698
16699 TDA8290 MEDIA DRIVER
16700 M: Michael Krufky <mkrufky@linuxtv.org>
16701 L: linux-media@vger.kernel.org
16702 S: Maintained
16703 W: https://linuxtv.org
16704 W: http://github.com/mkrufky
16705 Q: http://patchwork.linuxtv.org/project/linux-media/list/
16706 T: git git://linuxtv.org/mkrufky/tuners.git
16707 F: drivers/media/tuners/tda8290.*
16708
16709 TDA9840 MEDIA DRIVER
16710 M: Hans Verkuil <hverkuil@xs4all.nl>
16711 L: linux-media@vger.kernel.org
16712 S: Maintained
16713 W: https://linuxtv.org
16714 T: git git://linuxtv.org/media_tree.git
16715 F: drivers/media/i2c/tda9840*
16716
16717 TEA5761 TUNER DRIVER
16718 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16719 L: linux-media@vger.kernel.org
16720 S: Odd fixes
16721 W: https://linuxtv.org
16722 T: git git://linuxtv.org/media_tree.git
16723 F: drivers/media/tuners/tea5761.*
16724
16725 TEA5767 TUNER DRIVER
16726 M: Mauro Carvalho Chehab <mchehab@kernel.org>
16727 L: linux-media@vger.kernel.org
16728 S: Maintained
16729 W: https://linuxtv.org
16730 T: git git://linuxtv.org/media_tree.git
16731 F: drivers/media/tuners/tea5767.*
16732
16733 TEA6415C MEDIA DRIVER
16734 M: Hans Verkuil <hverkuil@xs4all.nl>
16735 L: linux-media@vger.kernel.org
16736 S: Maintained
16737 W: https://linuxtv.org
16738 T: git git://linuxtv.org/media_tree.git
16739 F: drivers/media/i2c/tea6415c*
16740
16741 TEA6420 MEDIA DRIVER
16742 M: Hans Verkuil <hverkuil@xs4all.nl>
16743 L: linux-media@vger.kernel.org
16744 S: Maintained
16745 W: https://linuxtv.org
16746 T: git git://linuxtv.org/media_tree.git
16747 F: drivers/media/i2c/tea6420*
16748
16749 TEAM DRIVER
16750 M: Jiri Pirko <jiri@resnulli.us>
16751 L: netdev@vger.kernel.org
16752 S: Supported
16753 F: drivers/net/team/
16754 F: include/linux/if_team.h
16755 F: include/uapi/linux/if_team.h
16756
16757 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16758 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16759 S: Maintained
16760 F: arch/x86/platform/ts5500/
16761
16762 TECHNOTREND USB IR RECEIVER
16763 M: Sean Young <sean@mess.org>
16764 L: linux-media@vger.kernel.org
16765 S: Maintained
16766 F: drivers/media/rc/ttusbir.c
16767
16768 TECHWELL TW9910 VIDEO DECODER
16769 L: linux-media@vger.kernel.org
16770 S: Orphan
16771 F: drivers/media/i2c/tw9910.c
16772 F: include/media/i2c/tw9910.h
16773
16774 TEE SUBSYSTEM
16775 M: Jens Wiklander <jens.wiklander@linaro.org>
16776 L: tee-dev@lists.linaro.org
16777 S: Maintained
16778 F: Documentation/tee.txt
16779 F: drivers/tee/
16780 F: include/linux/tee_drv.h
16781 F: include/uapi/linux/tee.h
16782
16783 TEGRA ARCHITECTURE SUPPORT
16784 M: Thierry Reding <thierry.reding@gmail.com>
16785 M: Jonathan Hunter <jonathanh@nvidia.com>
16786 L: linux-tegra@vger.kernel.org
16787 S: Supported
16788 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
16789 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16790 N: [^a-z]tegra
16791
16792 TEGRA CLOCK DRIVER
16793 M: Peter De Schrijver <pdeschrijver@nvidia.com>
16794 M: Prashant Gaikwad <pgaikwad@nvidia.com>
16795 S: Supported
16796 F: drivers/clk/tegra/
16797
16798 TEGRA DMA DRIVERS
16799 M: Laxman Dewangan <ldewangan@nvidia.com>
16800 M: Jon Hunter <jonathanh@nvidia.com>
16801 S: Supported
16802 F: drivers/dma/tegra*
16803
16804 TEGRA I2C DRIVER
16805 M: Laxman Dewangan <ldewangan@nvidia.com>
16806 R: Dmitry Osipenko <digetx@gmail.com>
16807 S: Supported
16808 F: drivers/i2c/busses/i2c-tegra.c
16809
16810 TEGRA IOMMU DRIVERS
16811 M: Thierry Reding <thierry.reding@gmail.com>
16812 L: linux-tegra@vger.kernel.org
16813 S: Supported
16814 F: drivers/iommu/tegra*
16815
16816 TEGRA KBC DRIVER
16817 M: Laxman Dewangan <ldewangan@nvidia.com>
16818 S: Supported
16819 F: drivers/input/keyboard/tegra-kbc.c
16820
16821 TEGRA NAND DRIVER
16822 M: Stefan Agner <stefan@agner.ch>
16823 M: Lucas Stach <dev@lynxeye.de>
16824 S: Maintained
16825 F: Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16826 F: drivers/mtd/nand/raw/tegra_nand.c
16827
16828 TEGRA PWM DRIVER
16829 M: Thierry Reding <thierry.reding@gmail.com>
16830 S: Supported
16831 F: drivers/pwm/pwm-tegra.c
16832
16833 TEGRA SERIAL DRIVER
16834 M: Laxman Dewangan <ldewangan@nvidia.com>
16835 S: Supported
16836 F: drivers/tty/serial/serial-tegra.c
16837
16838 TEGRA SPI DRIVER
16839 M: Laxman Dewangan <ldewangan@nvidia.com>
16840 S: Supported
16841 F: drivers/spi/spi-tegra*
16842
16843 TEGRA VIDEO DRIVER
16844 M: Thierry Reding <thierry.reding@gmail.com>
16845 M: Jonathan Hunter <jonathanh@nvidia.com>
16846 M: Sowjanya Komatineni <skomatineni@nvidia.com>
16847 L: linux-media@vger.kernel.org
16848 L: linux-tegra@vger.kernel.org
16849 S: Maintained
16850 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
16851 F: drivers/staging/media/tegra-video/
16852
16853 TEGRA XUSB PADCTL DRIVER
16854 M: JC Kuo <jckuo@nvidia.com>
16855 S: Supported
16856 F: drivers/phy/tegra/xusb*
16857
16858 TEHUTI ETHERNET DRIVER
16859 M: Andy Gospodarek <andy@greyhouse.net>
16860 L: netdev@vger.kernel.org
16861 S: Supported
16862 F: drivers/net/ethernet/tehuti/*
16863
16864 TELECOM CLOCK DRIVER FOR MCPL0010
16865 M: Mark Gross <mark.gross@intel.com>
16866 S: Supported
16867 F: drivers/char/tlclk.c
16868
16869 TEMPO SEMICONDUCTOR DRIVERS
16870 M: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16871 S: Maintained
16872 F: Documentation/devicetree/bindings/sound/tscs*.txt
16873 F: sound/soc/codecs/tscs*.c
16874 F: sound/soc/codecs/tscs*.h
16875
16876 TENSILICA XTENSA PORT (xtensa)
16877 M: Chris Zankel <chris@zankel.net>
16878 M: Max Filippov <jcmvbkbc@gmail.com>
16879 L: linux-xtensa@linux-xtensa.org
16880 S: Maintained
16881 T: git git://github.com/czankel/xtensa-linux.git
16882 F: arch/xtensa/
16883 F: drivers/irqchip/irq-xtensa-*
16884
16885 TEXAS INSTRUMENTS ASoC DRIVERS
16886 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
16887 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
16888 S: Maintained
16889 F: sound/soc/ti/
16890
16891 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16892 M: Ricardo Ribalda <ribalda@kernel.org>
16893 L: linux-iio@vger.kernel.org
16894 S: Supported
16895 F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16896 F: drivers/iio/dac/ti-dac7612.c
16897
16898 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16899 M: Nishanth Menon <nm@ti.com>
16900 M: Tero Kristo <t-kristo@ti.com>
16901 M: Santosh Shilimkar <ssantosh@kernel.org>
16902 L: linux-arm-kernel@lists.infradead.org
16903 S: Maintained
16904 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16905 F: Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16906 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16907 F: Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16908 F: Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16909 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16910 F: drivers/clk/keystone/sci-clk.c
16911 F: drivers/firmware/ti_sci*
16912 F: drivers/irqchip/irq-ti-sci-inta.c
16913 F: drivers/irqchip/irq-ti-sci-intr.c
16914 F: drivers/reset/reset-ti-sci.c
16915 F: drivers/soc/ti/ti_sci_inta_msi.c
16916 F: drivers/soc/ti/ti_sci_pm_domains.c
16917 F: include/dt-bindings/soc/ti,sci_pm_domain.h
16918 F: include/linux/soc/ti/ti_sci_inta_msi.h
16919 F: include/linux/soc/ti/ti_sci_protocol.h
16920
16921 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16922 M: Hans Verkuil <hverkuil@xs4all.nl>
16923 L: linux-media@vger.kernel.org
16924 S: Maintained
16925 W: https://linuxtv.org
16926 T: git git://linuxtv.org/media_tree.git
16927 F: drivers/media/radio/radio-raremono.c
16928
16929 THERMAL
16930 M: Zhang Rui <rui.zhang@intel.com>
16931 M: Daniel Lezcano <daniel.lezcano@linaro.org>
16932 R: Amit Kucheria <amit.kucheria@verdurent.com>
16933 L: linux-pm@vger.kernel.org
16934 S: Supported
16935 Q: https://patchwork.kernel.org/project/linux-pm/list/
16936 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16937 F: Documentation/devicetree/bindings/thermal/
16938 F: drivers/thermal/
16939 F: include/linux/cpu_cooling.h
16940 F: include/linux/thermal.h
16941 F: include/uapi/linux/thermal.h
16942
16943 THERMAL DRIVER FOR AMLOGIC SOCS
16944 M: Guillaume La Roque <glaroque@baylibre.com>
16945 L: linux-pm@vger.kernel.org
16946 L: linux-amlogic@lists.infradead.org
16947 S: Supported
16948 W: http://linux-meson.com/
16949 F: Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16950 F: drivers/thermal/amlogic_thermal.c
16951
16952 THERMAL/CPU_COOLING
16953 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
16954 M: Daniel Lezcano <daniel.lezcano@linaro.org>
16955 M: Viresh Kumar <viresh.kumar@linaro.org>
16956 M: Javi Merino <javi.merino@kernel.org>
16957 L: linux-pm@vger.kernel.org
16958 S: Supported
16959 F: Documentation/driver-api/thermal/cpu-cooling-api.rst
16960 F: Documentation/driver-api/thermal/cpu-idle-cooling.rst
16961 F: drivers/thermal/cpufreq_cooling.c
16962 F: drivers/thermal/cpuidle_cooling.c
16963 F: include/linux/cpu_cooling.h
16964
16965 THINKPAD ACPI EXTRAS DRIVER
16966 M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16967 L: ibm-acpi-devel@lists.sourceforge.net
16968 L: platform-driver-x86@vger.kernel.org
16969 S: Maintained
16970 W: http://ibm-acpi.sourceforge.net
16971 W: http://thinkwiki.org/wiki/Ibm-acpi
16972 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16973 F: drivers/platform/x86/thinkpad_acpi.c
16974
16975 THUNDERBOLT DRIVER
16976 M: Andreas Noever <andreas.noever@gmail.com>
16977 M: Michael Jamet <michael.jamet@intel.com>
16978 M: Mika Westerberg <mika.westerberg@linux.intel.com>
16979 M: Yehezkel Bernat <YehezkelShB@gmail.com>
16980 L: linux-usb@vger.kernel.org
16981 S: Maintained
16982 T: git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16983 F: Documentation/admin-guide/thunderbolt.rst
16984 F: drivers/thunderbolt/
16985 F: include/linux/thunderbolt.h
16986
16987 THUNDERBOLT NETWORK DRIVER
16988 M: Michael Jamet <michael.jamet@intel.com>
16989 M: Mika Westerberg <mika.westerberg@linux.intel.com>
16990 M: Yehezkel Bernat <YehezkelShB@gmail.com>
16991 L: netdev@vger.kernel.org
16992 S: Maintained
16993 F: drivers/net/thunderbolt.c
16994
16995 THUNDERX GPIO DRIVER
16996 M: Robert Richter <rrichter@marvell.com>
16997 S: Maintained
16998 F: drivers/gpio/gpio-thunderx.c
16999
17000 TI AM437X VPFE DRIVER
17001 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17002 L: linux-media@vger.kernel.org
17003 S: Maintained
17004 W: https://linuxtv.org
17005 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17006 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17007 F: drivers/media/platform/am437x/
17008
17009 TI BANDGAP AND THERMAL DRIVER
17010 M: Eduardo Valentin <edubezval@gmail.com>
17011 M: Keerthy <j-keerthy@ti.com>
17012 L: linux-pm@vger.kernel.org
17013 L: linux-omap@vger.kernel.org
17014 S: Maintained
17015 F: drivers/thermal/ti-soc-thermal/
17016
17017 TI BQ27XXX POWER SUPPLY DRIVER
17018 R: Andrew F. Davis <afd@ti.com>
17019 F: drivers/power/supply/bq27xxx_battery.c
17020 F: drivers/power/supply/bq27xxx_battery_i2c.c
17021 F: include/linux/power/bq27xxx_battery.h
17022
17023 TI CDCE706 CLOCK DRIVER
17024 M: Max Filippov <jcmvbkbc@gmail.com>
17025 S: Maintained
17026 F: drivers/clk/clk-cdce706.c
17027
17028 TI CLOCK DRIVER
17029 M: Tero Kristo <t-kristo@ti.com>
17030 L: linux-omap@vger.kernel.org
17031 S: Maintained
17032 F: drivers/clk/ti/
17033 F: include/linux/clk/ti.h
17034
17035 TI DAVINCI MACHINE SUPPORT
17036 M: Sekhar Nori <nsekhar@ti.com>
17037 R: Bartosz Golaszewski <bgolaszewski@baylibre.com>
17038 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17039 S: Supported
17040 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17041 F: Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17042 F: arch/arm/boot/dts/da850*
17043 F: arch/arm/mach-davinci/
17044 F: drivers/i2c/busses/i2c-davinci.c
17045
17046 TI DAVINCI SERIES CLOCK DRIVER
17047 M: David Lechner <david@lechnology.com>
17048 R: Sekhar Nori <nsekhar@ti.com>
17049 S: Maintained
17050 F: Documentation/devicetree/bindings/clock/ti/davinci/
17051 F: drivers/clk/davinci/
17052
17053 TI DAVINCI SERIES GPIO DRIVER
17054 M: Keerthy <j-keerthy@ti.com>
17055 L: linux-gpio@vger.kernel.org
17056 S: Maintained
17057 F: Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17058 F: drivers/gpio/gpio-davinci.c
17059
17060 TI DAVINCI SERIES MEDIA DRIVER
17061 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17062 L: linux-media@vger.kernel.org
17063 S: Maintained
17064 W: https://linuxtv.org
17065 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17066 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17067 F: drivers/media/platform/davinci/
17068 F: include/media/davinci/
17069
17070 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17071 R: David Lechner <david@lechnology.com>
17072 L: linux-iio@vger.kernel.org
17073 F: Documentation/devicetree/bindings/counter/ti-eqep.yaml
17074 F: drivers/counter/ti-eqep.c
17075
17076 TI ETHERNET SWITCH DRIVER (CPSW)
17077 R: Grygorii Strashko <grygorii.strashko@ti.com>
17078 L: linux-omap@vger.kernel.org
17079 L: netdev@vger.kernel.org
17080 S: Maintained
17081 F: drivers/net/ethernet/ti/cpsw*
17082 F: drivers/net/ethernet/ti/davinci*
17083
17084 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17085 M: Alex Dubov <oakad@yahoo.com>
17086 S: Maintained
17087 W: http://tifmxx.berlios.de/
17088 F: drivers/memstick/host/tifm_ms.c
17089 F: drivers/misc/tifm*
17090 F: drivers/mmc/host/tifm_sd.c
17091 F: include/linux/tifm.h
17092
17093 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17094 M: Santosh Shilimkar <ssantosh@kernel.org>
17095 L: linux-kernel@vger.kernel.org
17096 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17097 S: Maintained
17098 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17099 F: drivers/soc/ti/*
17100
17101 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17102 M: M R Swami Reddy <mr.swami.reddy@ti.com>
17103 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17104 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17105 S: Maintained
17106 F: sound/soc/codecs/isabelle*
17107 F: sound/soc/codecs/lm49453*
17108
17109 TI LP855x BACKLIGHT DRIVER
17110 M: Milo Kim <milo.kim@ti.com>
17111 S: Maintained
17112 F: Documentation/driver-api/backlight/lp855x-driver.rst
17113 F: drivers/video/backlight/lp855x_bl.c
17114 F: include/linux/platform_data/lp855x.h
17115
17116 TI LP8727 CHARGER DRIVER
17117 M: Milo Kim <milo.kim@ti.com>
17118 S: Maintained
17119 F: drivers/power/supply/lp8727_charger.c
17120 F: include/linux/platform_data/lp8727.h
17121
17122 TI LP8788 MFD DRIVER
17123 M: Milo Kim <milo.kim@ti.com>
17124 S: Maintained
17125 F: drivers/iio/adc/lp8788_adc.c
17126 F: drivers/leds/leds-lp8788.c
17127 F: drivers/mfd/lp8788*.c
17128 F: drivers/power/supply/lp8788-charger.c
17129 F: drivers/regulator/lp8788-*.c
17130 F: include/linux/mfd/lp8788*.h
17131
17132 TI NETCP ETHERNET DRIVER
17133 M: Wingman Kwok <w-kwok2@ti.com>
17134 M: Murali Karicheri <m-karicheri2@ti.com>
17135 L: netdev@vger.kernel.org
17136 S: Maintained
17137 F: drivers/net/ethernet/ti/netcp*
17138
17139 TI PCM3060 ASoC CODEC DRIVER
17140 M: Kirill Marinushkin <kmarinushkin@birdec.com>
17141 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17142 S: Maintained
17143 F: Documentation/devicetree/bindings/sound/pcm3060.txt
17144 F: sound/soc/codecs/pcm3060*
17145
17146 TI TAS571X FAMILY ASoC CODEC DRIVER
17147 M: Kevin Cernekee <cernekee@chromium.org>
17148 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17149 S: Odd Fixes
17150 F: sound/soc/codecs/tas571x*
17151
17152 TI TCAN4X5X DEVICE DRIVER
17153 M: Dan Murphy <dmurphy@ti.com>
17154 L: linux-can@vger.kernel.org
17155 S: Maintained
17156 F: Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17157 F: drivers/net/can/m_can/tcan4x5x.c
17158
17159 TI TRF7970A NFC DRIVER
17160 M: Mark Greer <mgreer@animalcreek.com>
17161 L: linux-wireless@vger.kernel.org
17162 L: linux-nfc@lists.01.org (moderated for non-subscribers)
17163 S: Supported
17164 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17165 F: drivers/nfc/trf7970a.c
17166
17167 TI TWL4030 SERIES SOC CODEC DRIVER
17168 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
17169 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17170 S: Maintained
17171 F: sound/soc/codecs/twl4030*
17172
17173 TI VPE/CAL DRIVERS
17174 M: Benoit Parrot <bparrot@ti.com>
17175 L: linux-media@vger.kernel.org
17176 S: Maintained
17177 W: http://linuxtv.org/
17178 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17179 F: Documentation/devicetree/bindings/media/ti,cal.yaml
17180 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
17181 F: drivers/media/platform/ti-vpe/
17182
17183 TI WILINK WIRELESS DRIVERS
17184 L: linux-wireless@vger.kernel.org
17185 S: Orphan
17186 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17187 W: https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17188 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17189 F: drivers/net/wireless/ti/
17190 F: include/linux/wl12xx.h
17191
17192 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17193 M: John Stultz <john.stultz@linaro.org>
17194 M: Thomas Gleixner <tglx@linutronix.de>
17195 R: Stephen Boyd <sboyd@kernel.org>
17196 L: linux-kernel@vger.kernel.org
17197 S: Supported
17198 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17199 F: include/linux/clocksource.h
17200 F: include/linux/time.h
17201 F: include/linux/timex.h
17202 F: include/uapi/linux/time.h
17203 F: include/uapi/linux/timex.h
17204 F: kernel/time/alarmtimer.c
17205 F: kernel/time/clocksource.c
17206 F: kernel/time/ntp.c
17207 F: kernel/time/time*.c
17208 F: tools/testing/selftests/timers/
17209
17210 TIPC NETWORK LAYER
17211 M: Jon Maloy <jmaloy@redhat.com>
17212 M: Ying Xue <ying.xue@windriver.com>
17213 L: netdev@vger.kernel.org (core kernel code)
17214 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17215 S: Maintained
17216 W: http://tipc.sourceforge.net/
17217 F: include/uapi/linux/tipc*.h
17218 F: net/tipc/
17219
17220 TLAN NETWORK DRIVER
17221 M: Samuel Chessman <chessman@tux.org>
17222 L: tlan-devel@lists.sourceforge.net (subscribers-only)
17223 S: Maintained
17224 W: http://sourceforge.net/projects/tlan/
17225 F: Documentation/networking/device_drivers/ti/tlan.rst
17226 F: drivers/net/ethernet/ti/tlan.*
17227
17228 TM6000 VIDEO4LINUX DRIVER
17229 M: Mauro Carvalho Chehab <mchehab@kernel.org>
17230 L: linux-media@vger.kernel.org
17231 S: Odd fixes
17232 W: https://linuxtv.org
17233 T: git git://linuxtv.org/media_tree.git
17234 F: Documentation/admin-guide/media/tm6000*
17235 F: drivers/media/usb/tm6000/
17236
17237 TMIO/SDHI MMC DRIVER
17238 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
17239 L: linux-mmc@vger.kernel.org
17240 S: Supported
17241 F: drivers/mmc/host/renesas_sdhi*
17242 F: drivers/mmc/host/tmio_mmc*
17243 F: include/linux/mfd/tmio.h
17244
17245 TMP401 HARDWARE MONITOR DRIVER
17246 M: Guenter Roeck <linux@roeck-us.net>
17247 L: linux-hwmon@vger.kernel.org
17248 S: Maintained
17249 F: Documentation/hwmon/tmp401.rst
17250 F: drivers/hwmon/tmp401.c
17251
17252 TMP513 HARDWARE MONITOR DRIVER
17253 M: Eric Tremblay <etremblay@distech-controls.com>
17254 L: linux-hwmon@vger.kernel.org
17255 S: Maintained
17256 F: Documentation/hwmon/tmp513.rst
17257 F: drivers/hwmon/tmp513.c
17258
17259 TMPFS (SHMEM FILESYSTEM)
17260 M: Hugh Dickins <hughd@google.com>
17261 L: linux-mm@kvack.org
17262 S: Maintained
17263 F: include/linux/shmem_fs.h
17264 F: mm/shmem.c
17265
17266 TOMOYO SECURITY MODULE
17267 M: Kentaro Takeda <takedakn@nttdata.co.jp>
17268 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17269 L: tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17270 L: tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17271 L: tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17272 L: tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17273 S: Maintained
17274 W: https://tomoyo.osdn.jp/
17275 F: security/tomoyo/
17276
17277 TOPSTAR LAPTOP EXTRAS DRIVER
17278 M: Herton Ronaldo Krzesinski <herton@canonical.com>
17279 L: platform-driver-x86@vger.kernel.org
17280 S: Maintained
17281 F: drivers/platform/x86/topstar-laptop.c
17282
17283 TORTURE-TEST MODULES
17284 M: Davidlohr Bueso <dave@stgolabs.net>
17285 M: "Paul E. McKenney" <paulmck@kernel.org>
17286 M: Josh Triplett <josh@joshtriplett.org>
17287 L: linux-kernel@vger.kernel.org
17288 S: Supported
17289 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17290 F: Documentation/RCU/torture.txt
17291 F: kernel/locking/locktorture.c
17292 F: kernel/rcu/rcuperf.c
17293 F: kernel/rcu/rcutorture.c
17294 F: kernel/torture.c
17295
17296 TOSHIBA ACPI EXTRAS DRIVER
17297 M: Azael Avalos <coproscefalo@gmail.com>
17298 L: platform-driver-x86@vger.kernel.org
17299 S: Maintained
17300 F: drivers/platform/x86/toshiba_acpi.c
17301
17302 TOSHIBA BLUETOOTH DRIVER
17303 M: Azael Avalos <coproscefalo@gmail.com>
17304 L: platform-driver-x86@vger.kernel.org
17305 S: Maintained
17306 F: drivers/platform/x86/toshiba_bluetooth.c
17307
17308 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17309 M: Azael Avalos <coproscefalo@gmail.com>
17310 L: platform-driver-x86@vger.kernel.org
17311 S: Maintained
17312 F: drivers/platform/x86/toshiba_haps.c
17313
17314 TOSHIBA SMM DRIVER
17315 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
17316 S: Maintained
17317 W: http://www.buzzard.org.uk/toshiba/
17318 F: drivers/char/toshiba.c
17319 F: include/linux/toshiba.h
17320 F: include/uapi/linux/toshiba.h
17321
17322 TOSHIBA TC358743 DRIVER
17323 M: Mats Randgaard <matrandg@cisco.com>
17324 L: linux-media@vger.kernel.org
17325 S: Maintained
17326 F: drivers/media/i2c/tc358743*
17327 F: include/media/i2c/tc358743.h
17328
17329 TOSHIBA WMI HOTKEYS DRIVER
17330 M: Azael Avalos <coproscefalo@gmail.com>
17331 L: platform-driver-x86@vger.kernel.org
17332 S: Maintained
17333 F: drivers/platform/x86/toshiba-wmi.c
17334
17335 TPM DEVICE DRIVER
17336 M: Peter Huewe <peterhuewe@gmx.de>
17337 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17338 R: Jason Gunthorpe <jgg@ziepe.ca>
17339 L: linux-integrity@vger.kernel.org
17340 S: Maintained
17341 W: https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17342 Q: https://patchwork.kernel.org/project/linux-integrity/list/
17343 T: git git://git.infradead.org/users/jjs/linux-tpmdd.git
17344 F: drivers/char/tpm/
17345
17346 TRACING
17347 M: Steven Rostedt <rostedt@goodmis.org>
17348 M: Ingo Molnar <mingo@redhat.com>
17349 S: Maintained
17350 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17351 F: Documentation/trace/ftrace.rst
17352 F: arch/*/*/*/ftrace.h
17353 F: arch/*/kernel/ftrace.c
17354 F: include/*/ftrace.h
17355 F: include/linux/trace*.h
17356 F: include/trace/
17357 F: kernel/trace/
17358 F: tools/testing/selftests/ftrace/
17359
17360 TRACING MMIO ACCESSES (MMIOTRACE)
17361 M: Steven Rostedt <rostedt@goodmis.org>
17362 M: Ingo Molnar <mingo@kernel.org>
17363 R: Karol Herbst <karolherbst@gmail.com>
17364 R: Pekka Paalanen <ppaalanen@gmail.com>
17365 L: linux-kernel@vger.kernel.org
17366 L: nouveau@lists.freedesktop.org
17367 S: Maintained
17368 F: arch/x86/mm/kmmio.c
17369 F: arch/x86/mm/mmio-mod.c
17370 F: arch/x86/mm/testmmiotrace.c
17371 F: include/linux/mmiotrace.h
17372 F: kernel/trace/trace_mmiotrace.c
17373
17374 TRIVIAL PATCHES
17375 M: Jiri Kosina <trivial@kernel.org>
17376 S: Maintained
17377 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17378 K: ^Subject:.*(?i)trivial
17379
17380 TTY LAYER
17381 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17382 M: Jiri Slaby <jslaby@suse.com>
17383 S: Supported
17384 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17385 F: Documentation/driver-api/serial/
17386 F: drivers/tty/
17387 F: drivers/tty/serial/serial_core.c
17388 F: include/linux/serial.h
17389 F: include/linux/serial_core.h
17390 F: include/linux/tty.h
17391 F: include/uapi/linux/serial.h
17392 F: include/uapi/linux/serial_core.h
17393 F: include/uapi/linux/tty.h
17394
17395 TUA9001 MEDIA DRIVER
17396 M: Antti Palosaari <crope@iki.fi>
17397 L: linux-media@vger.kernel.org
17398 S: Maintained
17399 W: https://linuxtv.org
17400 W: http://palosaari.fi/linux/
17401 Q: http://patchwork.linuxtv.org/project/linux-media/list/
17402 T: git git://linuxtv.org/anttip/media_tree.git
17403 F: drivers/media/tuners/tua9001*
17404
17405 TULIP NETWORK DRIVERS
17406 L: netdev@vger.kernel.org
17407 L: linux-parisc@vger.kernel.org
17408 S: Orphan
17409 F: drivers/net/ethernet/dec/tulip/
17410
17411 TUN/TAP driver
17412 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
17413 S: Maintained
17414 W: http://vtun.sourceforge.net/tun
17415 F: Documentation/networking/tuntap.rst
17416 F: arch/um/os-Linux/drivers/
17417
17418 TURBOCHANNEL SUBSYSTEM
17419 M: "Maciej W. Rozycki" <macro@linux-mips.org>
17420 M: Ralf Baechle <ralf@linux-mips.org>
17421 L: linux-mips@vger.kernel.org
17422 S: Maintained
17423 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
17424 F: drivers/tc/
17425 F: include/linux/tc.h
17426
17427 TURBOSTAT UTILITY
17428 M: "Len Brown" <lenb@kernel.org>
17429 L: linux-pm@vger.kernel.org
17430 S: Supported
17431 Q: https://patchwork.kernel.org/project/linux-pm/list/
17432 B: https://bugzilla.kernel.org
17433 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17434 F: tools/power/x86/turbostat/
17435
17436 TW5864 VIDEO4LINUX DRIVER
17437 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17438 M: Anton Sviridenko <anton@corp.bluecherry.net>
17439 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17440 M: Andrey Utkin <andrey_utkin@fastmail.com>
17441 L: linux-media@vger.kernel.org
17442 S: Supported
17443 F: drivers/media/pci/tw5864/
17444
17445 TW68 VIDEO4LINUX DRIVER
17446 M: Hans Verkuil <hverkuil@xs4all.nl>
17447 L: linux-media@vger.kernel.org
17448 S: Odd Fixes
17449 W: https://linuxtv.org
17450 T: git git://linuxtv.org/media_tree.git
17451 F: drivers/media/pci/tw68/
17452
17453 TW686X VIDEO4LINUX DRIVER
17454 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17455 L: linux-media@vger.kernel.org
17456 S: Maintained
17457 W: http://linuxtv.org
17458 T: git git://linuxtv.org/media_tree.git
17459 F: drivers/media/pci/tw686x/
17460
17461 UACCE ACCELERATOR FRAMEWORK
17462 M: Zhangfei Gao <zhangfei.gao@linaro.org>
17463 M: Zhou Wang <wangzhou1@hisilicon.com>
17464 L: linux-accelerators@lists.ozlabs.org
17465 L: linux-kernel@vger.kernel.org
17466 S: Maintained
17467 F: Documentation/ABI/testing/sysfs-driver-uacce
17468 F: Documentation/misc-devices/uacce.rst
17469 F: drivers/misc/uacce/
17470 F: include/linux/uacce.h
17471 F: include/uapi/misc/uacce/
17472
17473 UBI FILE SYSTEM (UBIFS)
17474 M: Richard Weinberger <richard@nod.at>
17475 L: linux-mtd@lists.infradead.org
17476 S: Supported
17477 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
17478 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17479 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17480 F: Documentation/filesystems/ubifs.rst
17481 F: fs/ubifs/
17482
17483 UCLINUX (M68KNOMMU AND COLDFIRE)
17484 M: Greg Ungerer <gerg@linux-m68k.org>
17485 L: linux-m68k@lists.linux-m68k.org
17486 L: uclinux-dev@uclinux.org (subscribers-only)
17487 S: Maintained
17488 W: http://www.linux-m68k.org/
17489 W: http://www.uclinux.org/
17490 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17491 F: arch/m68k/*/*_no.*
17492 F: arch/m68k/68*/
17493 F: arch/m68k/coldfire/
17494 F: arch/m68k/include/asm/*_no.*
17495
17496 UDF FILESYSTEM
17497 M: Jan Kara <jack@suse.com>
17498 S: Maintained
17499 F: Documentation/filesystems/udf.rst
17500 F: fs/udf/
17501
17502 UDRAW TABLET
17503 M: Bastien Nocera <hadess@hadess.net>
17504 L: linux-input@vger.kernel.org
17505 S: Maintained
17506 F: drivers/hid/hid-udraw-ps3.c
17507
17508 UFS FILESYSTEM
17509 M: Evgeniy Dushistov <dushistov@mail.ru>
17510 S: Maintained
17511 F: Documentation/admin-guide/ufs.rst
17512 F: fs/ufs/
17513
17514 UHID USERSPACE HID IO DRIVER
17515 M: David Herrmann <dh.herrmann@googlemail.com>
17516 L: linux-input@vger.kernel.org
17517 S: Maintained
17518 F: drivers/hid/uhid.c
17519 F: include/uapi/linux/uhid.h
17520
17521 ULPI BUS
17522 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17523 L: linux-usb@vger.kernel.org
17524 S: Maintained
17525 F: drivers/usb/common/ulpi.c
17526 F: include/linux/ulpi/
17527
17528 UNICODE SUBSYSTEM
17529 M: Gabriel Krisman Bertazi <krisman@collabora.com>
17530 L: linux-fsdevel@vger.kernel.org
17531 S: Supported
17532 F: fs/unicode/
17533
17534 UNICORE32 ARCHITECTURE
17535 M: Guan Xuetao <gxt@pku.edu.cn>
17536 S: Maintained
17537 W: http://mprc.pku.edu.cn/~guanxuetao/linux
17538 T: git git://github.com/gxt/linux.git
17539 F: arch/unicore32/
17540
17541 UNIFDEF
17542 M: Tony Finch <dot@dotat.at>
17543 S: Maintained
17544 W: http://dotat.at/prog/unifdef
17545 F: scripts/unifdef.c
17546
17547 UNIFORM CDROM DRIVER
17548 M: Jens Axboe <axboe@kernel.dk>
17549 S: Maintained
17550 W: http://www.kernel.dk
17551 F: Documentation/cdrom/
17552 F: drivers/cdrom/cdrom.c
17553 F: include/linux/cdrom.h
17554 F: include/uapi/linux/cdrom.h
17555
17556 UNISYS S-PAR DRIVERS
17557 M: David Kershner <david.kershner@unisys.com>
17558 L: sparmaintainer@unisys.com (Unisys internal)
17559 S: Supported
17560 F: drivers/staging/unisys/
17561 F: drivers/visorbus/
17562 F: include/linux/visorbus.h
17563
17564 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17565 R: Alim Akhtar <alim.akhtar@samsung.com>
17566 R: Avri Altman <avri.altman@wdc.com>
17567 L: linux-scsi@vger.kernel.org
17568 S: Supported
17569 F: Documentation/scsi/ufs.rst
17570 F: drivers/scsi/ufs/
17571
17572 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17573 M: Pedro Sousa <pedrom.sousa@synopsys.com>
17574 L: linux-scsi@vger.kernel.org
17575 S: Supported
17576 F: drivers/scsi/ufs/*dwc*
17577
17578 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17579 M: Stanley Chu <stanley.chu@mediatek.com>
17580 L: linux-scsi@vger.kernel.org
17581 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17582 S: Maintained
17583 F: drivers/scsi/ufs/ufs-mediatek*
17584
17585 UNSORTED BLOCK IMAGES (UBI)
17586 M: Richard Weinberger <richard@nod.at>
17587 L: linux-mtd@lists.infradead.org
17588 S: Supported
17589 W: http://www.linux-mtd.infradead.org/
17590 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17591 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17592 F: drivers/mtd/ubi/
17593 F: include/linux/mtd/ubi.h
17594 F: include/uapi/mtd/ubi-user.h
17595
17596 USB "USBNET" DRIVER FRAMEWORK
17597 M: Oliver Neukum <oneukum@suse.com>
17598 L: netdev@vger.kernel.org
17599 S: Maintained
17600 W: http://www.linux-usb.org/usbnet
17601 F: drivers/net/usb/usbnet.c
17602 F: include/linux/usb/usbnet.h
17603
17604 USB ACM DRIVER
17605 M: Oliver Neukum <oneukum@suse.com>
17606 L: linux-usb@vger.kernel.org
17607 S: Maintained
17608 F: Documentation/usb/acm.rst
17609 F: drivers/usb/class/cdc-acm.*
17610
17611 USB APPLE MFI FASTCHARGE DRIVER
17612 M: Bastien Nocera <hadess@hadess.net>
17613 L: linux-usb@vger.kernel.org
17614 S: Maintained
17615 F: drivers/usb/misc/apple-mfi-fastcharge.c
17616
17617 USB AR5523 WIRELESS DRIVER
17618 M: Pontus Fuchs <pontus.fuchs@gmail.com>
17619 L: linux-wireless@vger.kernel.org
17620 S: Maintained
17621 F: drivers/net/wireless/ath/ar5523/
17622
17623 USB ATTACHED SCSI
17624 M: Oliver Neukum <oneukum@suse.com>
17625 L: linux-usb@vger.kernel.org
17626 L: linux-scsi@vger.kernel.org
17627 S: Maintained
17628 F: drivers/usb/storage/uas.c
17629
17630 USB CDC ETHERNET DRIVER
17631 M: Oliver Neukum <oliver@neukum.org>
17632 L: linux-usb@vger.kernel.org
17633 S: Maintained
17634 F: drivers/net/usb/cdc_*.c
17635 F: include/uapi/linux/usb/cdc.h
17636
17637 USB CHAOSKEY DRIVER
17638 M: Keith Packard <keithp@keithp.com>
17639 L: linux-usb@vger.kernel.org
17640 S: Maintained
17641 F: drivers/usb/misc/chaoskey.c
17642
17643 USB CYPRESS C67X00 DRIVER
17644 M: Peter Korsgaard <jacmet@sunsite.dk>
17645 L: linux-usb@vger.kernel.org
17646 S: Maintained
17647 F: drivers/usb/c67x00/
17648
17649 USB DAVICOM DM9601 DRIVER
17650 M: Peter Korsgaard <jacmet@sunsite.dk>
17651 L: netdev@vger.kernel.org
17652 S: Maintained
17653 W: http://www.linux-usb.org/usbnet
17654 F: drivers/net/usb/dm9601.c
17655
17656 USB EHCI DRIVER
17657 M: Alan Stern <stern@rowland.harvard.edu>
17658 L: linux-usb@vger.kernel.org
17659 S: Maintained
17660 F: Documentation/usb/ehci.rst
17661 F: drivers/usb/host/ehci*
17662
17663 USB GADGET/PERIPHERAL SUBSYSTEM
17664 M: Felipe Balbi <balbi@kernel.org>
17665 L: linux-usb@vger.kernel.org
17666 S: Maintained
17667 W: http://www.linux-usb.org/gadget
17668 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17669 F: drivers/usb/gadget/
17670 F: include/linux/usb/gadget*
17671
17672 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17673 M: Jiri Kosina <jikos@kernel.org>
17674 M: Benjamin Tissoires <benjamin.tissoires@redhat.com>
17675 L: linux-usb@vger.kernel.org
17676 S: Maintained
17677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17678 F: Documentation/hid/hiddev.rst
17679 F: drivers/hid/usbhid/
17680
17681 USB INTEL XHCI ROLE MUX DRIVER
17682 M: Hans de Goede <hdegoede@redhat.com>
17683 L: linux-usb@vger.kernel.org
17684 S: Maintained
17685 F: drivers/usb/roles/intel-xhci-usb-role-switch.c
17686
17687 USB IP DRIVER FOR HISILICON KIRIN
17688 M: Yu Chen <chenyu56@huawei.com>
17689 M: Binghui Wang <wangbinghui@hisilicon.com>
17690 L: linux-usb@vger.kernel.org
17691 S: Maintained
17692 F: Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17693 F: drivers/phy/hisilicon/phy-hi3660-usb3.c
17694
17695 USB ISP116X DRIVER
17696 M: Olav Kongas <ok@artecdesign.ee>
17697 L: linux-usb@vger.kernel.org
17698 S: Maintained
17699 F: drivers/usb/host/isp116x*
17700 F: include/linux/usb/isp116x.h
17701
17702 USB LAN78XX ETHERNET DRIVER
17703 M: Woojung Huh <woojung.huh@microchip.com>
17704 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17705 L: netdev@vger.kernel.org
17706 S: Maintained
17707 F: Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17708 F: drivers/net/usb/lan78xx.*
17709 F: include/dt-bindings/net/microchip-lan78xx.h
17710
17711 USB MASS STORAGE DRIVER
17712 M: Alan Stern <stern@rowland.harvard.edu>
17713 L: linux-usb@vger.kernel.org
17714 L: usb-storage@lists.one-eyed-alien.net
17715 S: Maintained
17716 F: drivers/usb/storage/
17717
17718 USB MIDI DRIVER
17719 M: Clemens Ladisch <clemens@ladisch.de>
17720 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
17721 S: Maintained
17722 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17723 F: sound/usb/midi.*
17724
17725 USB NETWORKING DRIVERS
17726 L: linux-usb@vger.kernel.org
17727 S: Odd Fixes
17728 F: drivers/net/usb/
17729
17730 USB OHCI DRIVER
17731 M: Alan Stern <stern@rowland.harvard.edu>
17732 L: linux-usb@vger.kernel.org
17733 S: Maintained
17734 F: Documentation/usb/ohci.rst
17735 F: drivers/usb/host/ohci*
17736
17737 USB OTG FSM (Finite State Machine)
17738 M: Peter Chen <Peter.Chen@nxp.com>
17739 L: linux-usb@vger.kernel.org
17740 S: Maintained
17741 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17742 F: drivers/usb/common/usb-otg-fsm.c
17743
17744 USB OVER IP DRIVER
17745 M: Valentina Manea <valentina.manea.m@gmail.com>
17746 M: Shuah Khan <shuah@kernel.org>
17747 M: Shuah Khan <skhan@linuxfoundation.org>
17748 L: linux-usb@vger.kernel.org
17749 S: Maintained
17750 F: Documentation/usb/usbip_protocol.rst
17751 F: drivers/usb/usbip/
17752 F: tools/testing/selftests/drivers/usb/usbip/
17753 F: tools/usb/usbip/
17754
17755 USB PEGASUS DRIVER
17756 M: Petko Manolov <petkan@nucleusys.com>
17757 L: linux-usb@vger.kernel.org
17758 L: netdev@vger.kernel.org
17759 S: Maintained
17760 W: https://github.com/petkan/pegasus
17761 T: git git://github.com/petkan/pegasus.git
17762 F: drivers/net/usb/pegasus.*
17763
17764 USB PHY LAYER
17765 M: Felipe Balbi <balbi@kernel.org>
17766 L: linux-usb@vger.kernel.org
17767 S: Maintained
17768 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17769 F: drivers/usb/phy/
17770
17771 USB PRINTER DRIVER (usblp)
17772 M: Pete Zaitcev <zaitcev@redhat.com>
17773 L: linux-usb@vger.kernel.org
17774 S: Supported
17775 F: drivers/usb/class/usblp.c
17776
17777 USB QMI WWAN NETWORK DRIVER
17778 M: Bjørn Mork <bjorn@mork.no>
17779 L: netdev@vger.kernel.org
17780 S: Maintained
17781 F: Documentation/ABI/testing/sysfs-class-net-qmi
17782 F: drivers/net/usb/qmi_wwan.c
17783
17784 USB RTL8150 DRIVER
17785 M: Petko Manolov <petkan@nucleusys.com>
17786 L: linux-usb@vger.kernel.org
17787 L: netdev@vger.kernel.org
17788 S: Maintained
17789 W: https://github.com/petkan/rtl8150
17790 T: git git://github.com/petkan/rtl8150.git
17791 F: drivers/net/usb/rtl8150.c
17792
17793 USB SERIAL SUBSYSTEM
17794 M: Johan Hovold <johan@kernel.org>
17795 L: linux-usb@vger.kernel.org
17796 S: Maintained
17797 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17798 F: Documentation/usb/usb-serial.rst
17799 F: drivers/usb/serial/
17800 F: include/linux/usb/serial.h
17801
17802 USB SMSC75XX ETHERNET DRIVER
17803 M: Steve Glendinning <steve.glendinning@shawell.net>
17804 L: netdev@vger.kernel.org
17805 S: Maintained
17806 F: drivers/net/usb/smsc75xx.*
17807
17808 USB SMSC95XX ETHERNET DRIVER
17809 M: Steve Glendinning <steve.glendinning@shawell.net>
17810 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17811 L: netdev@vger.kernel.org
17812 S: Maintained
17813 F: drivers/net/usb/smsc95xx.*
17814
17815 USB SUBSYSTEM
17816 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17817 L: linux-usb@vger.kernel.org
17818 S: Supported
17819 W: http://www.linux-usb.org
17820 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17821 F: Documentation/devicetree/bindings/usb/
17822 F: Documentation/usb/
17823 F: drivers/usb/
17824 F: include/linux/usb.h
17825 F: include/linux/usb/
17826
17827 USB TYPEC BUS FOR ALTERNATE MODES
17828 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17829 L: linux-usb@vger.kernel.org
17830 S: Maintained
17831 F: Documentation/ABI/testing/sysfs-bus-typec
17832 F: Documentation/driver-api/usb/typec_bus.rst
17833 F: drivers/usb/typec/altmodes/
17834 F: include/linux/usb/typec_altmode.h
17835
17836 USB TYPEC CLASS
17837 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17838 L: linux-usb@vger.kernel.org
17839 S: Maintained
17840 F: Documentation/ABI/testing/sysfs-class-typec
17841 F: Documentation/driver-api/usb/typec.rst
17842 F: drivers/usb/typec/
17843 F: include/linux/usb/typec.h
17844
17845 USB TYPEC INTEL PMC MUX DRIVER
17846 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
17847 L: linux-usb@vger.kernel.org
17848 S: Maintained
17849 F: Documentation/firmware-guide/acpi/intel-pmc-mux.rst
17850 F: drivers/usb/typec/mux/intel_pmc_mux.c
17851
17852 USB TYPEC PI3USB30532 MUX DRIVER
17853 M: Hans de Goede <hdegoede@redhat.com>
17854 L: linux-usb@vger.kernel.org
17855 S: Maintained
17856 F: drivers/usb/typec/mux/pi3usb30532.c
17857
17858 USB TYPEC PORT CONTROLLER DRIVERS
17859 M: Guenter Roeck <linux@roeck-us.net>
17860 L: linux-usb@vger.kernel.org
17861 S: Maintained
17862 F: drivers/usb/typec/tcpm/
17863
17864 USB UHCI DRIVER
17865 M: Alan Stern <stern@rowland.harvard.edu>
17866 L: linux-usb@vger.kernel.org
17867 S: Maintained
17868 F: drivers/usb/host/uhci*
17869
17870 USB VIDEO CLASS
17871 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17872 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17873 L: linux-media@vger.kernel.org
17874 S: Maintained
17875 W: http://www.ideasonboard.org/uvc/
17876 T: git git://linuxtv.org/media_tree.git
17877 F: drivers/media/usb/uvc/
17878 F: include/uapi/linux/uvcvideo.h
17879
17880 USB VISION DRIVER
17881 M: Hans Verkuil <hverkuil@xs4all.nl>
17882 L: linux-media@vger.kernel.org
17883 S: Odd Fixes
17884 W: https://linuxtv.org
17885 T: git git://linuxtv.org/media_tree.git
17886 F: drivers/staging/media/usbvision/
17887
17888 USB WEBCAM GADGET
17889 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17890 L: linux-usb@vger.kernel.org
17891 S: Maintained
17892 F: drivers/usb/gadget/function/*uvc*
17893 F: drivers/usb/gadget/legacy/webcam.c
17894 F: include/uapi/linux/usb/g_uvc.h
17895
17896 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17897 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
17898 L: linux-wireless@vger.kernel.org
17899 S: Maintained
17900 F: drivers/net/wireless/rndis_wlan.c
17901
17902 USB XHCI DRIVER
17903 M: Mathias Nyman <mathias.nyman@intel.com>
17904 L: linux-usb@vger.kernel.org
17905 S: Supported
17906 F: drivers/usb/host/pci-quirks*
17907 F: drivers/usb/host/xhci*
17908
17909 USB ZD1201 DRIVER
17910 L: linux-wireless@vger.kernel.org
17911 S: Orphan
17912 W: http://linux-lc100020.sourceforge.net
17913 F: drivers/net/wireless/zydas/zd1201.*
17914
17915 USB ZR364XX DRIVER
17916 M: Antoine Jacquet <royale@zerezo.com>
17917 L: linux-usb@vger.kernel.org
17918 L: linux-media@vger.kernel.org
17919 S: Maintained
17920 W: http://royale.zerezo.com/zr364xx/
17921 T: git git://linuxtv.org/media_tree.git
17922 F: Documentation/admin-guide/media/zr364xx*
17923 F: drivers/media/usb/zr364xx/
17924
17925 USER-MODE LINUX (UML)
17926 M: Jeff Dike <jdike@addtoit.com>
17927 M: Richard Weinberger <richard@nod.at>
17928 M: Anton Ivanov <anton.ivanov@cambridgegreys.com>
17929 L: linux-um@lists.infradead.org
17930 S: Maintained
17931 W: http://user-mode-linux.sourceforge.net
17932 Q: https://patchwork.ozlabs.org/project/linux-um/list/
17933 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17934 F: Documentation/virt/uml/
17935 F: arch/um/
17936 F: arch/x86/um/
17937 F: fs/hostfs/
17938
17939 USERSPACE COPYIN/COPYOUT (UIOVEC)
17940 M: Alexander Viro <viro@zeniv.linux.org.uk>
17941 S: Maintained
17942 F: include/linux/uio.h
17943 F: lib/iov_iter.c
17944
17945 USERSPACE DMA BUFFER DRIVER
17946 M: Gerd Hoffmann <kraxel@redhat.com>
17947 L: dri-devel@lists.freedesktop.org
17948 S: Maintained
17949 T: git git://anongit.freedesktop.org/drm/drm-misc
17950 F: drivers/dma-buf/udmabuf.c
17951 F: include/uapi/linux/udmabuf.h
17952
17953 USERSPACE I/O (UIO)
17954 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17955 S: Maintained
17956 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17957 F: Documentation/driver-api/uio-howto.rst
17958 F: drivers/uio/
17959 F: include/linux/uio_driver.h
17960
17961 UTIL-LINUX PACKAGE
17962 M: Karel Zak <kzak@redhat.com>
17963 L: util-linux@vger.kernel.org
17964 S: Maintained
17965 W: http://en.wikipedia.org/wiki/Util-linux
17966 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17967
17968 UUID HELPERS
17969 M: Christoph Hellwig <hch@lst.de>
17970 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17971 L: linux-kernel@vger.kernel.org
17972 S: Maintained
17973 T: git git://git.infradead.org/users/hch/uuid.git
17974 F: include/linux/uuid.h
17975 F: include/uapi/linux/uuid.h
17976 F: lib/test_uuid.c
17977 F: lib/uuid.c
17978
17979 UVESAFB DRIVER
17980 M: Michal Januszewski <spock@gentoo.org>
17981 L: linux-fbdev@vger.kernel.org
17982 S: Maintained
17983 W: https://github.com/mjanusz/v86d
17984 F: Documentation/fb/uvesafb.rst
17985 F: drivers/video/fbdev/uvesafb.*
17986
17987 Ux500 CLOCK DRIVERS
17988 M: Ulf Hansson <ulf.hansson@linaro.org>
17989 L: linux-clk@vger.kernel.org
17990 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17991 S: Maintained
17992 F: drivers/clk/ux500/
17993
17994 VF610 NAND DRIVER
17995 M: Stefan Agner <stefan@agner.ch>
17996 L: linux-mtd@lists.infradead.org
17997 S: Supported
17998 F: drivers/mtd/nand/raw/vf610_nfc.c
17999
18000 VFAT/FAT/MSDOS FILESYSTEM
18001 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18002 S: Maintained
18003 F: Documentation/filesystems/vfat.rst
18004 F: fs/fat/
18005
18006 VFIO DRIVER
18007 M: Alex Williamson <alex.williamson@redhat.com>
18008 R: Cornelia Huck <cohuck@redhat.com>
18009 L: kvm@vger.kernel.org
18010 S: Maintained
18011 T: git git://github.com/awilliam/linux-vfio.git
18012 F: Documentation/driver-api/vfio.rst
18013 F: drivers/vfio/
18014 F: include/linux/vfio.h
18015 F: include/uapi/linux/vfio.h
18016
18017 VFIO MEDIATED DEVICE DRIVERS
18018 M: Kirti Wankhede <kwankhede@nvidia.com>
18019 L: kvm@vger.kernel.org
18020 S: Maintained
18021 F: Documentation/driver-api/vfio-mediated-device.rst
18022 F: drivers/vfio/mdev/
18023 F: include/linux/mdev.h
18024 F: samples/vfio-mdev/
18025
18026 VFIO PLATFORM DRIVER
18027 M: Eric Auger <eric.auger@redhat.com>
18028 L: kvm@vger.kernel.org
18029 S: Maintained
18030 F: drivers/vfio/platform/
18031
18032 VGA_SWITCHEROO
18033 R: Lukas Wunner <lukas@wunner.de>
18034 S: Maintained
18035 T: git git://anongit.freedesktop.org/drm/drm-misc
18036 F: Documentation/gpu/vga-switcheroo.rst
18037 F: drivers/gpu/vga/vga_switcheroo.c
18038 F: include/linux/vga_switcheroo.h
18039
18040 VIA RHINE NETWORK DRIVER
18041 S: Orphan
18042 F: drivers/net/ethernet/via/via-rhine.c
18043
18044 VIA SD/MMC CARD CONTROLLER DRIVER
18045 M: Bruce Chang <brucechang@via.com.tw>
18046 M: Harald Welte <HaraldWelte@viatech.com>
18047 S: Maintained
18048 F: drivers/mmc/host/via-sdmmc.c
18049
18050 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18051 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18052 L: linux-fbdev@vger.kernel.org
18053 S: Maintained
18054 F: drivers/video/fbdev/via/
18055 F: include/linux/via-core.h
18056 F: include/linux/via-gpio.h
18057 F: include/linux/via_i2c.h
18058
18059 VIA VELOCITY NETWORK DRIVER
18060 M: Francois Romieu <romieu@fr.zoreil.com>
18061 L: netdev@vger.kernel.org
18062 S: Maintained
18063 F: drivers/net/ethernet/via/via-velocity.*
18064
18065 VICODEC VIRTUAL CODEC DRIVER
18066 M: Hans Verkuil <hverkuil-cisco@xs4all.nl>
18067 L: linux-media@vger.kernel.org
18068 S: Maintained
18069 W: https://linuxtv.org
18070 T: git git://linuxtv.org/media_tree.git
18071 F: drivers/media/test-drivers/vicodec/*
18072
18073 VIDEO I2C POLLING DRIVER
18074 M: Matt Ranostay <matt.ranostay@konsulko.com>
18075 L: linux-media@vger.kernel.org
18076 S: Maintained
18077 F: drivers/media/i2c/video-i2c.c
18078
18079 VIDEO MULTIPLEXER DRIVER
18080 M: Philipp Zabel <p.zabel@pengutronix.de>
18081 L: linux-media@vger.kernel.org
18082 S: Maintained
18083 F: drivers/media/platform/video-mux.c
18084
18085 VIDEOBUF2 FRAMEWORK
18086 M: Pawel Osciak <pawel@osciak.com>
18087 M: Marek Szyprowski <m.szyprowski@samsung.com>
18088 M: Kyungmin Park <kyungmin.park@samsung.com>
18089 R: Tomasz Figa <tfiga@chromium.org>
18090 L: linux-media@vger.kernel.org
18091 S: Maintained
18092 F: drivers/media/common/videobuf2/*
18093 F: include/media/videobuf2-*
18094
18095 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18096 M: Helen Koike <helen.koike@collabora.com>
18097 R: Shuah Khan <skhan@linuxfoundation.org>
18098 L: linux-media@vger.kernel.org
18099 S: Maintained
18100 W: https://linuxtv.org
18101 T: git git://linuxtv.org/media_tree.git
18102 F: drivers/media/test-drivers/vimc/*
18103
18104 VIRT LIB
18105 M: Alex Williamson <alex.williamson@redhat.com>
18106 M: Paolo Bonzini <pbonzini@redhat.com>
18107 L: kvm@vger.kernel.org
18108 S: Supported
18109 F: virt/lib/
18110
18111 VIRTIO AND VHOST VSOCK DRIVER
18112 M: Stefan Hajnoczi <stefanha@redhat.com>
18113 M: Stefano Garzarella <sgarzare@redhat.com>
18114 L: kvm@vger.kernel.org
18115 L: virtualization@lists.linux-foundation.org
18116 L: netdev@vger.kernel.org
18117 S: Maintained
18118 F: drivers/net/vsockmon.c
18119 F: drivers/vhost/vsock.c
18120 F: include/linux/virtio_vsock.h
18121 F: include/uapi/linux/virtio_vsock.h
18122 F: include/uapi/linux/vm_sockets_diag.h
18123 F: include/uapi/linux/vsockmon.h
18124 F: net/vmw_vsock/af_vsock_tap.c
18125 F: net/vmw_vsock/diag.c
18126 F: net/vmw_vsock/virtio_transport.c
18127 F: net/vmw_vsock/virtio_transport_common.c
18128 F: net/vmw_vsock/vsock_loopback.c
18129 F: tools/testing/vsock/
18130
18131 VIRTIO BLOCK AND SCSI DRIVERS
18132 M: "Michael S. Tsirkin" <mst@redhat.com>
18133 M: Jason Wang <jasowang@redhat.com>
18134 R: Paolo Bonzini <pbonzini@redhat.com>
18135 R: Stefan Hajnoczi <stefanha@redhat.com>
18136 L: virtualization@lists.linux-foundation.org
18137 S: Maintained
18138 F: drivers/block/virtio_blk.c
18139 F: drivers/scsi/virtio_scsi.c
18140 F: drivers/vhost/scsi.c
18141 F: include/uapi/linux/virtio_blk.h
18142 F: include/uapi/linux/virtio_scsi.h
18143
18144 VIRTIO CONSOLE DRIVER
18145 M: Amit Shah <amit@kernel.org>
18146 L: virtualization@lists.linux-foundation.org
18147 S: Maintained
18148 F: drivers/char/virtio_console.c
18149 F: include/linux/virtio_console.h
18150 F: include/uapi/linux/virtio_console.h
18151
18152 VIRTIO CORE AND NET DRIVERS
18153 M: "Michael S. Tsirkin" <mst@redhat.com>
18154 M: Jason Wang <jasowang@redhat.com>
18155 L: virtualization@lists.linux-foundation.org
18156 S: Maintained
18157 F: Documentation/devicetree/bindings/virtio/
18158 F: drivers/block/virtio_blk.c
18159 F: drivers/crypto/virtio/
18160 F: drivers/net/virtio_net.c
18161 F: drivers/vdpa/
18162 F: drivers/virtio/
18163 F: include/linux/vdpa.h
18164 F: include/linux/virtio*.h
18165 F: include/uapi/linux/virtio_*.h
18166 F: tools/virtio/
18167
18168 VIRTIO BALLOON
18169 M: "Michael S. Tsirkin" <mst@redhat.com>
18170 M: David Hildenbrand <david@redhat.com>
18171 L: virtualization@lists.linux-foundation.org
18172 S: Maintained
18173 F: drivers/virtio/virtio_balloon.c
18174 F: include/uapi/linux/virtio_balloon.h
18175 F: include/linux/balloon_compaction.h
18176 F: mm/balloon_compaction.c
18177
18178 VIRTIO CRYPTO DRIVER
18179 M: Gonglei <arei.gonglei@huawei.com>
18180 L: virtualization@lists.linux-foundation.org
18181 L: linux-crypto@vger.kernel.org
18182 S: Maintained
18183 F: drivers/crypto/virtio/
18184 F: include/uapi/linux/virtio_crypto.h
18185
18186 VIRTIO DRIVERS FOR S390
18187 M: Cornelia Huck <cohuck@redhat.com>
18188 M: Halil Pasic <pasic@linux.ibm.com>
18189 L: linux-s390@vger.kernel.org
18190 L: virtualization@lists.linux-foundation.org
18191 L: kvm@vger.kernel.org
18192 S: Supported
18193 F: arch/s390/include/uapi/asm/virtio-ccw.h
18194 F: drivers/s390/virtio/
18195
18196 VIRTIO FILE SYSTEM
18197 M: Vivek Goyal <vgoyal@redhat.com>
18198 M: Stefan Hajnoczi <stefanha@redhat.com>
18199 M: Miklos Szeredi <miklos@szeredi.hu>
18200 L: virtualization@lists.linux-foundation.org
18201 L: linux-fsdevel@vger.kernel.org
18202 S: Supported
18203 W: https://virtio-fs.gitlab.io/
18204 F: Documentation/filesystems/virtiofs.rst
18205 F: fs/fuse/virtio_fs.c
18206 F: include/uapi/linux/virtio_fs.h
18207
18208 VIRTIO GPU DRIVER
18209 M: David Airlie <airlied@linux.ie>
18210 M: Gerd Hoffmann <kraxel@redhat.com>
18211 L: dri-devel@lists.freedesktop.org
18212 L: virtualization@lists.linux-foundation.org
18213 S: Maintained
18214 T: git git://anongit.freedesktop.org/drm/drm-misc
18215 F: drivers/gpu/drm/virtio/
18216 F: include/uapi/linux/virtio_gpu.h
18217
18218 VIRTIO HOST (VHOST)
18219 M: "Michael S. Tsirkin" <mst@redhat.com>
18220 M: Jason Wang <jasowang@redhat.com>
18221 L: kvm@vger.kernel.org
18222 L: virtualization@lists.linux-foundation.org
18223 L: netdev@vger.kernel.org
18224 S: Maintained
18225 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18226 F: drivers/vhost/
18227 F: include/linux/vhost_iotlb.h
18228 F: include/uapi/linux/vhost.h
18229
18230 VIRTIO INPUT DRIVER
18231 M: Gerd Hoffmann <kraxel@redhat.com>
18232 S: Maintained
18233 F: drivers/virtio/virtio_input.c
18234 F: include/uapi/linux/virtio_input.h
18235
18236 VIRTIO IOMMU DRIVER
18237 M: Jean-Philippe Brucker <jean-philippe@linaro.org>
18238 L: virtualization@lists.linux-foundation.org
18239 S: Maintained
18240 F: drivers/iommu/virtio-iommu.c
18241 F: include/uapi/linux/virtio_iommu.h
18242
18243 VIRTIO MEM DRIVER
18244 M: David Hildenbrand <david@redhat.com>
18245 L: virtualization@lists.linux-foundation.org
18246 S: Maintained
18247 F: drivers/virtio/virtio_mem.c
18248 F: include/uapi/linux/virtio_mem.h
18249
18250 VIRTUAL BOX GUEST DEVICE DRIVER
18251 M: Hans de Goede <hdegoede@redhat.com>
18252 M: Arnd Bergmann <arnd@arndb.de>
18253 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18254 S: Maintained
18255 F: drivers/virt/vboxguest/
18256 F: include/linux/vbox_utils.h
18257 F: include/uapi/linux/vbox*.h
18258
18259 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18260 M: Hans de Goede <hdegoede@redhat.com>
18261 L: linux-fsdevel@vger.kernel.org
18262 S: Maintained
18263 F: fs/vboxsf/*
18264
18265 VIRTUAL SERIO DEVICE DRIVER
18266 M: Stephen Chandler Paul <thatslyude@gmail.com>
18267 S: Maintained
18268 F: drivers/input/serio/userio.c
18269 F: include/uapi/linux/userio.h
18270
18271 VITESSE FELIX ETHERNET SWITCH DRIVER
18272 M: Vladimir Oltean <vladimir.oltean@nxp.com>
18273 M: Claudiu Manoil <claudiu.manoil@nxp.com>
18274 L: netdev@vger.kernel.org
18275 S: Maintained
18276 F: drivers/net/dsa/ocelot/*
18277 F: net/dsa/tag_ocelot.c
18278
18279 VIVID VIRTUAL VIDEO DRIVER
18280 M: Hans Verkuil <hverkuil@xs4all.nl>
18281 L: linux-media@vger.kernel.org
18282 S: Maintained
18283 W: https://linuxtv.org
18284 T: git git://linuxtv.org/media_tree.git
18285 F: drivers/media/test-drivers/vivid/*
18286
18287 VLYNQ BUS
18288 M: Florian Fainelli <f.fainelli@gmail.com>
18289 L: openwrt-devel@lists.openwrt.org (subscribers-only)
18290 S: Maintained
18291 F: drivers/vlynq/vlynq.c
18292 F: include/linux/vlynq.h
18293
18294 VME SUBSYSTEM
18295 M: Martyn Welch <martyn@welchs.me.uk>
18296 M: Manohar Vanga <manohar.vanga@gmail.com>
18297 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18298 L: devel@driverdev.osuosl.org
18299 S: Maintained
18300 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18301 F: Documentation/driver-api/vme.rst
18302 F: drivers/staging/vme/
18303 F: drivers/vme/
18304 F: include/linux/vme*
18305
18306 VMWARE BALLOON DRIVER
18307 M: Nadav Amit <namit@vmware.com>
18308 M: "VMware, Inc." <pv-drivers@vmware.com>
18309 L: linux-kernel@vger.kernel.org
18310 S: Maintained
18311 F: drivers/misc/vmw_balloon.c
18312
18313 VMWARE HYPERVISOR INTERFACE
18314 M: Deep Shah <sdeep@vmware.com>
18315 M: "VMware, Inc." <pv-drivers@vmware.com>
18316 L: virtualization@lists.linux-foundation.org
18317 S: Supported
18318 F: arch/x86/include/asm/vmware.h
18319 F: arch/x86/kernel/cpu/vmware.c
18320
18321 VMWARE PVRDMA DRIVER
18322 M: Adit Ranadive <aditr@vmware.com>
18323 M: VMware PV-Drivers <pv-drivers@vmware.com>
18324 L: linux-rdma@vger.kernel.org
18325 S: Maintained
18326 F: drivers/infiniband/hw/vmw_pvrdma/
18327
18328 VMware PVSCSI driver
18329 M: Jim Gill <jgill@vmware.com>
18330 M: VMware PV-Drivers <pv-drivers@vmware.com>
18331 L: linux-scsi@vger.kernel.org
18332 S: Maintained
18333 F: drivers/scsi/vmw_pvscsi.c
18334 F: drivers/scsi/vmw_pvscsi.h
18335
18336 VMWARE VIRTUAL PTP CLOCK DRIVER
18337 M: Vivek Thampi <vithampi@vmware.com>
18338 M: "VMware, Inc." <pv-drivers@vmware.com>
18339 L: netdev@vger.kernel.org
18340 S: Supported
18341 F: drivers/ptp/ptp_vmw.c
18342
18343 VMWARE VMMOUSE SUBDRIVER
18344 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18345 M: "VMware, Inc." <pv-drivers@vmware.com>
18346 L: linux-input@vger.kernel.org
18347 S: Maintained
18348 F: drivers/input/mouse/vmmouse.c
18349 F: drivers/input/mouse/vmmouse.h
18350
18351 VMWARE VMXNET3 ETHERNET DRIVER
18352 M: Ronak Doshi <doshir@vmware.com>
18353 M: "VMware, Inc." <pv-drivers@vmware.com>
18354 L: netdev@vger.kernel.org
18355 S: Maintained
18356 F: drivers/net/vmxnet3/
18357
18358 VOCORE VOCORE2 BOARD
18359 M: Harvey Hunt <harveyhuntnexus@gmail.com>
18360 L: linux-mips@vger.kernel.org
18361 S: Maintained
18362 F: arch/mips/boot/dts/ralink/vocore2.dts
18363
18364 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18365 M: Liam Girdwood <lgirdwood@gmail.com>
18366 M: Mark Brown <broonie@kernel.org>
18367 L: linux-kernel@vger.kernel.org
18368 S: Supported
18369 W: http://www.slimlogic.co.uk/?p=48
18370 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18371 F: Documentation/devicetree/bindings/regulator/
18372 F: Documentation/power/regulator/
18373 F: drivers/regulator/
18374 F: include/dt-bindings/regulator/
18375 F: include/linux/regulator/
18376 K: regulator_get_optional
18377
18378 VRF
18379 M: David Ahern <dsahern@kernel.org>
18380 M: Shrijeet Mukherjee <shrijeet@gmail.com>
18381 L: netdev@vger.kernel.org
18382 S: Maintained
18383 F: Documentation/networking/vrf.rst
18384 F: drivers/net/vrf.c
18385
18386 VSPRINTF
18387 M: Petr Mladek <pmladek@suse.com>
18388 M: Steven Rostedt <rostedt@goodmis.org>
18389 M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18390 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18391 R: Rasmus Villemoes <linux@rasmusvillemoes.dk>
18392 S: Maintained
18393 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18394 F: Documentation/core-api/printk-formats.rst
18395 F: lib/test_printf.c
18396 F: lib/vsprintf.c
18397
18398 VT1211 HARDWARE MONITOR DRIVER
18399 M: Juerg Haefliger <juergh@gmail.com>
18400 L: linux-hwmon@vger.kernel.org
18401 S: Maintained
18402 F: Documentation/hwmon/vt1211.rst
18403 F: drivers/hwmon/vt1211.c
18404
18405 VT8231 HARDWARE MONITOR DRIVER
18406 M: Roger Lucas <vt8231@hiddenengine.co.uk>
18407 L: linux-hwmon@vger.kernel.org
18408 S: Maintained
18409 F: drivers/hwmon/vt8231.c
18410
18411 VUB300 USB to SDIO/SD/MMC bridge chip
18412 L: linux-mmc@vger.kernel.org
18413 S: Orphan
18414 F: drivers/mmc/host/vub300.c
18415
18416 W1 DALLAS'S 1-WIRE BUS
18417 M: Evgeniy Polyakov <zbr@ioremap.net>
18418 S: Maintained
18419 F: Documentation/devicetree/bindings/w1/
18420 F: Documentation/w1/
18421 F: drivers/w1/
18422 F: include/linux/w1.h
18423
18424 W83791D HARDWARE MONITORING DRIVER
18425 M: Marc Hulsman <m.hulsman@tudelft.nl>
18426 L: linux-hwmon@vger.kernel.org
18427 S: Maintained
18428 F: Documentation/hwmon/w83791d.rst
18429 F: drivers/hwmon/w83791d.c
18430
18431 W83793 HARDWARE MONITORING DRIVER
18432 M: Rudolf Marek <r.marek@assembler.cz>
18433 L: linux-hwmon@vger.kernel.org
18434 S: Maintained
18435 F: Documentation/hwmon/w83793.rst
18436 F: drivers/hwmon/w83793.c
18437
18438 W83795 HARDWARE MONITORING DRIVER
18439 M: Jean Delvare <jdelvare@suse.com>
18440 L: linux-hwmon@vger.kernel.org
18441 S: Maintained
18442 F: drivers/hwmon/w83795.c
18443
18444 W83L51xD SD/MMC CARD INTERFACE DRIVER
18445 M: Pierre Ossman <pierre@ossman.eu>
18446 S: Maintained
18447 F: drivers/mmc/host/wbsd.*
18448
18449 WACOM PROTOCOL 4 SERIAL TABLETS
18450 M: Julian Squires <julian@cipht.net>
18451 M: Hans de Goede <hdegoede@redhat.com>
18452 L: linux-input@vger.kernel.org
18453 S: Maintained
18454 F: drivers/input/tablet/wacom_serial4.c
18455
18456 WATCHDOG DEVICE DRIVERS
18457 M: Wim Van Sebroeck <wim@linux-watchdog.org>
18458 M: Guenter Roeck <linux@roeck-us.net>
18459 L: linux-watchdog@vger.kernel.org
18460 S: Maintained
18461 W: http://www.linux-watchdog.org/
18462 T: git git://www.linux-watchdog.org/linux-watchdog.git
18463 F: Documentation/devicetree/bindings/watchdog/
18464 F: Documentation/watchdog/
18465 F: drivers/watchdog/
18466 F: include/linux/watchdog.h
18467 F: include/uapi/linux/watchdog.h
18468
18469 WHISKEYCOVE PMIC GPIO DRIVER
18470 M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18471 L: linux-gpio@vger.kernel.org
18472 S: Maintained
18473 F: drivers/gpio/gpio-wcove.c
18474
18475 WHWAVE RTC DRIVER
18476 M: Dianlong Li <long17.cool@163.com>
18477 L: linux-rtc@vger.kernel.org
18478 S: Maintained
18479 F: drivers/rtc/rtc-sd3078.c
18480
18481 WIIMOTE HID DRIVER
18482 M: David Herrmann <dh.herrmann@googlemail.com>
18483 L: linux-input@vger.kernel.org
18484 S: Maintained
18485 F: drivers/hid/hid-wiimote*
18486
18487 WILOCITY WIL6210 WIRELESS DRIVER
18488 M: Maya Erez <merez@codeaurora.org>
18489 L: linux-wireless@vger.kernel.org
18490 L: wil6210@qti.qualcomm.com
18491 S: Supported
18492 W: https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18493 F: drivers/net/wireless/ath/wil6210/
18494
18495 WIMAX STACK
18496 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18497 M: linux-wimax@intel.com
18498 L: wimax@linuxwimax.org (subscribers-only)
18499 S: Supported
18500 W: http://linuxwimax.org
18501 F: Documentation/admin-guide/wimax/wimax.rst
18502 F: include/linux/wimax/debug.h
18503 F: include/net/wimax.h
18504 F: include/uapi/linux/wimax.h
18505 F: net/wimax/
18506
18507 WINBOND CIR DRIVER
18508 M: David Härdeman <david@hardeman.nu>
18509 S: Maintained
18510 F: drivers/media/rc/winbond-cir.c
18511
18512 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18513 M: William Breathitt Gray <vilhelm.gray@gmail.com>
18514 L: linux-watchdog@vger.kernel.org
18515 S: Maintained
18516 F: drivers/watchdog/ebc-c384_wdt.c
18517
18518 WINSYSTEMS WS16C48 GPIO DRIVER
18519 M: William Breathitt Gray <vilhelm.gray@gmail.com>
18520 L: linux-gpio@vger.kernel.org
18521 S: Maintained
18522 F: drivers/gpio/gpio-ws16c48.c
18523
18524 WIREGUARD SECURE NETWORK TUNNEL
18525 M: Jason A. Donenfeld <Jason@zx2c4.com>
18526 L: wireguard@lists.zx2c4.com
18527 L: netdev@vger.kernel.org
18528 S: Maintained
18529 F: drivers/net/wireguard/
18530 F: tools/testing/selftests/wireguard/
18531
18532 WISTRON LAPTOP BUTTON DRIVER
18533 M: Miloslav Trmac <mitr@volny.cz>
18534 S: Maintained
18535 F: drivers/input/misc/wistron_btns.c
18536
18537 WL3501 WIRELESS PCMCIA CARD DRIVER
18538 L: linux-wireless@vger.kernel.org
18539 S: Odd fixes
18540 F: drivers/net/wireless/wl3501*
18541
18542 WOLFSON MICROELECTRONICS DRIVERS
18543 L: patches@opensource.cirrus.com
18544 S: Supported
18545 W: https://github.com/CirrusLogic/linux-drivers/wiki
18546 T: git https://github.com/CirrusLogic/linux-drivers.git
18547 F: Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18548 F: Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18549 F: Documentation/devicetree/bindings/mfd/wm831x.txt
18550 F: Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18551 F: Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18552 F: Documentation/hwmon/wm83??.rst
18553 F: arch/arm/mach-s3c64xx/mach-crag6410*
18554 F: drivers/clk/clk-wm83*.c
18555 F: drivers/extcon/extcon-arizona.c
18556 F: drivers/gpio/gpio-*wm*.c
18557 F: drivers/gpio/gpio-arizona.c
18558 F: drivers/hwmon/wm83??-hwmon.c
18559 F: drivers/input/misc/wm831x-on.c
18560 F: drivers/input/touchscreen/wm831x-ts.c
18561 F: drivers/input/touchscreen/wm97*.c
18562 F: drivers/leds/leds-wm83*.c
18563 F: drivers/mfd/arizona*
18564 F: drivers/mfd/cs47l24*
18565 F: drivers/mfd/wm*.c
18566 F: drivers/power/supply/wm83*.c
18567 F: drivers/regulator/arizona*
18568 F: drivers/regulator/wm8*.c
18569 F: drivers/rtc/rtc-wm83*.c
18570 F: drivers/video/backlight/wm83*_bl.c
18571 F: drivers/watchdog/wm83*_wdt.c
18572 F: include/linux/mfd/arizona/
18573 F: include/linux/mfd/wm831x/
18574 F: include/linux/mfd/wm8350/
18575 F: include/linux/mfd/wm8400*
18576 F: include/linux/regulator/arizona*
18577 F: include/linux/wm97xx.h
18578 F: include/sound/wm????.h
18579 F: sound/soc/codecs/arizona.?
18580 F: sound/soc/codecs/cs47l24*
18581 F: sound/soc/codecs/wm*
18582
18583 WORKQUEUE
18584 M: Tejun Heo <tj@kernel.org>
18585 R: Lai Jiangshan <jiangshanlai@gmail.com>
18586 S: Maintained
18587 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18588 F: Documentation/core-api/workqueue.rst
18589 F: include/linux/workqueue.h
18590 F: kernel/workqueue.c
18591
18592 X-POWERS AXP288 PMIC DRIVERS
18593 M: Hans de Goede <hdegoede@redhat.com>
18594 S: Maintained
18595 F: drivers/acpi/pmic/intel_pmic_xpower.c
18596 N: axp288
18597
18598 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18599 M: Chen-Yu Tsai <wens@csie.org>
18600 L: linux-kernel@vger.kernel.org
18601 S: Maintained
18602 N: axp[128]
18603
18604 X.25 NETWORK LAYER
18605 M: Andrew Hendry <andrew.hendry@gmail.com>
18606 L: linux-x25@vger.kernel.org
18607 S: Odd Fixes
18608 F: Documentation/networking/x25*
18609 F: include/net/x25*
18610 F: net/x25/
18611
18612 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18613 M: Thomas Gleixner <tglx@linutronix.de>
18614 M: Ingo Molnar <mingo@redhat.com>
18615 M: Borislav Petkov <bp@alien8.de>
18616 M: x86@kernel.org
18617 R: "H. Peter Anvin" <hpa@zytor.com>
18618 L: linux-kernel@vger.kernel.org
18619 S: Maintained
18620 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18621 F: Documentation/devicetree/bindings/x86/
18622 F: Documentation/x86/
18623 F: arch/x86/
18624
18625 X86 ENTRY CODE
18626 M: Andy Lutomirski <luto@kernel.org>
18627 L: linux-kernel@vger.kernel.org
18628 S: Maintained
18629 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18630 F: arch/x86/entry/
18631
18632 X86 MCE INFRASTRUCTURE
18633 M: Tony Luck <tony.luck@intel.com>
18634 M: Borislav Petkov <bp@alien8.de>
18635 L: linux-edac@vger.kernel.org
18636 S: Maintained
18637 F: arch/x86/kernel/cpu/mce/*
18638
18639 X86 MICROCODE UPDATE SUPPORT
18640 M: Borislav Petkov <bp@alien8.de>
18641 S: Maintained
18642 F: arch/x86/kernel/cpu/microcode/*
18643
18644 X86 MM
18645 M: Dave Hansen <dave.hansen@linux.intel.com>
18646 M: Andy Lutomirski <luto@kernel.org>
18647 M: Peter Zijlstra <peterz@infradead.org>
18648 L: linux-kernel@vger.kernel.org
18649 S: Maintained
18650 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18651 F: arch/x86/mm/
18652
18653 X86 PLATFORM DRIVERS
18654 M: Darren Hart <dvhart@infradead.org>
18655 M: Andy Shevchenko <andy@infradead.org>
18656 L: platform-driver-x86@vger.kernel.org
18657 S: Odd Fixes
18658 T: git git://git.infradead.org/linux-platform-drivers-x86.git
18659 F: drivers/platform/olpc/
18660 F: drivers/platform/x86/
18661
18662 X86 PLATFORM DRIVERS - ARCH
18663 R: Darren Hart <dvhart@infradead.org>
18664 R: Andy Shevchenko <andy@infradead.org>
18665 L: platform-driver-x86@vger.kernel.org
18666 L: x86@kernel.org
18667 S: Maintained
18668 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18669 F: arch/x86/platform
18670
18671 X86 VDSO
18672 M: Andy Lutomirski <luto@kernel.org>
18673 L: linux-kernel@vger.kernel.org
18674 S: Maintained
18675 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18676 F: arch/x86/entry/vdso/
18677
18678 XARRAY
18679 M: Matthew Wilcox <willy@infradead.org>
18680 L: linux-fsdevel@vger.kernel.org
18681 S: Supported
18682 F: Documentation/core-api/xarray.rst
18683 F: include/linux/idr.h
18684 F: include/linux/xarray.h
18685 F: lib/idr.c
18686 F: lib/xarray.c
18687 F: tools/testing/radix-tree
18688
18689 XBOX DVD IR REMOTE
18690 M: Benjamin Valentin <benpicco@googlemail.com>
18691 S: Maintained
18692 F: drivers/media/rc/keymaps/rc-xbox-dvd.c
18693 F: drivers/media/rc/xbox_remote.c
18694
18695 XC2028/3028 TUNER DRIVER
18696 M: Mauro Carvalho Chehab <mchehab@kernel.org>
18697 L: linux-media@vger.kernel.org
18698 S: Maintained
18699 W: https://linuxtv.org
18700 T: git git://linuxtv.org/media_tree.git
18701 F: drivers/media/tuners/tuner-xc2028.*
18702
18703 XDP (eXpress Data Path)
18704 M: Alexei Starovoitov <ast@kernel.org>
18705 M: Daniel Borkmann <daniel@iogearbox.net>
18706 M: David S. Miller <davem@davemloft.net>
18707 M: Jakub Kicinski <kuba@kernel.org>
18708 M: Jesper Dangaard Brouer <hawk@kernel.org>
18709 M: John Fastabend <john.fastabend@gmail.com>
18710 L: netdev@vger.kernel.org
18711 L: bpf@vger.kernel.org
18712 S: Supported
18713 F: include/net/xdp.h
18714 F: include/trace/events/xdp.h
18715 F: kernel/bpf/cpumap.c
18716 F: kernel/bpf/devmap.c
18717 F: net/core/xdp.c
18718 N: xdp
18719 K: xdp
18720
18721 XDP SOCKETS (AF_XDP)
18722 M: Björn Töpel <bjorn.topel@intel.com>
18723 M: Magnus Karlsson <magnus.karlsson@intel.com>
18724 R: Jonathan Lemon <jonathan.lemon@gmail.com>
18725 L: netdev@vger.kernel.org
18726 L: bpf@vger.kernel.org
18727 S: Maintained
18728 F: include/net/xdp_sock*
18729 F: include/net/xsk_buff_pool.h
18730 F: include/uapi/linux/if_xdp.h
18731 F: net/xdp/
18732 F: samples/bpf/xdpsock*
18733 F: tools/lib/bpf/xsk*
18734
18735 XEN BLOCK SUBSYSTEM
18736 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18737 M: Roger Pau Monné <roger.pau@citrix.com>
18738 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18739 S: Supported
18740 F: drivers/block/xen*
18741 F: drivers/block/xen-blkback/*
18742
18743 XEN HYPERVISOR ARM
18744 M: Stefano Stabellini <sstabellini@kernel.org>
18745 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18746 S: Maintained
18747 F: arch/arm/include/asm/xen/
18748 F: arch/arm/xen/
18749
18750 XEN HYPERVISOR ARM64
18751 M: Stefano Stabellini <sstabellini@kernel.org>
18752 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18753 S: Maintained
18754 F: arch/arm64/include/asm/xen/
18755 F: arch/arm64/xen/
18756
18757 XEN HYPERVISOR INTERFACE
18758 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
18759 M: Juergen Gross <jgross@suse.com>
18760 R: Stefano Stabellini <sstabellini@kernel.org>
18761 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18762 S: Supported
18763 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18764 F: Documentation/ABI/stable/sysfs-hypervisor-xen
18765 F: Documentation/ABI/testing/sysfs-hypervisor-xen
18766 F: arch/x86/include/asm/pvclock-abi.h
18767 F: arch/x86/include/asm/xen/
18768 F: arch/x86/platform/pvh/
18769 F: arch/x86/xen/
18770 F: drivers/*/xen-*front.c
18771 F: drivers/xen/
18772 F: include/uapi/xen/
18773 F: include/xen/
18774
18775 XEN NETWORK BACKEND DRIVER
18776 M: Wei Liu <wei.liu@kernel.org>
18777 M: Paul Durrant <paul@xen.org>
18778 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18779 L: netdev@vger.kernel.org
18780 S: Supported
18781 F: drivers/net/xen-netback/*
18782
18783 XEN PCI SUBSYSTEM
18784 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18785 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18786 S: Supported
18787 F: arch/x86/pci/*xen*
18788 F: drivers/pci/*xen*
18789
18790 XEN PVSCSI DRIVERS
18791 M: Juergen Gross <jgross@suse.com>
18792 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18793 L: linux-scsi@vger.kernel.org
18794 S: Supported
18795 F: drivers/scsi/xen-scsifront.c
18796 F: drivers/xen/xen-scsiback.c
18797 F: include/xen/interface/io/vscsiif.h
18798
18799 XEN SOUND FRONTEND DRIVER
18800 M: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18801 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18802 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
18803 S: Supported
18804 F: sound/xen/*
18805
18806 XEN SWIOTLB SUBSYSTEM
18807 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18808 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
18809 L: iommu@lists.linux-foundation.org
18810 S: Supported
18811 F: arch/x86/xen/*swiotlb*
18812 F: drivers/xen/*swiotlb*
18813
18814 XFS FILESYSTEM
18815 M: Darrick J. Wong <darrick.wong@oracle.com>
18816 M: linux-xfs@vger.kernel.org
18817 L: linux-xfs@vger.kernel.org
18818 S: Supported
18819 W: http://xfs.org/
18820 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18821 F: Documentation/ABI/testing/sysfs-fs-xfs
18822 F: Documentation/admin-guide/xfs.rst
18823 F: Documentation/filesystems/xfs-delayed-logging-design.rst
18824 F: Documentation/filesystems/xfs-self-describing-metadata.rst
18825 F: fs/xfs/
18826 F: include/uapi/linux/dqblk_xfs.h
18827 F: include/uapi/linux/fsmap.h
18828
18829 XILINX AXI ETHERNET DRIVER
18830 M: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18831 S: Maintained
18832 F: drivers/net/ethernet/xilinx/xilinx_axienet*
18833
18834 XILINX CAN DRIVER
18835 M: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18836 R: Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18837 L: linux-can@vger.kernel.org
18838 S: Maintained
18839 F: Documentation/devicetree/bindings/net/can/xilinx_can.txt
18840 F: drivers/net/can/xilinx_can.c
18841
18842 XILINX SD-FEC IP CORES
18843 M: Derek Kiernan <derek.kiernan@xilinx.com>
18844 M: Dragan Cvetic <dragan.cvetic@xilinx.com>
18845 S: Maintained
18846 F: Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18847 F: Documentation/misc-devices/xilinx_sdfec.rst
18848 F: drivers/misc/Kconfig
18849 F: drivers/misc/Makefile
18850 F: drivers/misc/xilinx_sdfec.c
18851 F: include/uapi/misc/xilinx_sdfec.h
18852
18853 XILINX UARTLITE SERIAL DRIVER
18854 M: Peter Korsgaard <jacmet@sunsite.dk>
18855 L: linux-serial@vger.kernel.org
18856 S: Maintained
18857 F: drivers/tty/serial/uartlite.c
18858
18859 XILINX VIDEO IP CORES
18860 M: Hyun Kwon <hyun.kwon@xilinx.com>
18861 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18862 L: linux-media@vger.kernel.org
18863 S: Supported
18864 T: git git://linuxtv.org/media_tree.git
18865 F: Documentation/devicetree/bindings/media/xilinx/
18866 F: drivers/media/platform/xilinx/
18867 F: include/uapi/linux/xilinx-v4l2-controls.h
18868
18869 XILLYBUS DRIVER
18870 M: Eli Billauer <eli.billauer@gmail.com>
18871 L: linux-kernel@vger.kernel.org
18872 S: Supported
18873 F: drivers/char/xillybus/
18874
18875 XLP9XX I2C DRIVER
18876 M: George Cherian <gcherian@marvell.com>
18877 L: linux-i2c@vger.kernel.org
18878 S: Supported
18879 W: http://www.marvell.com
18880 F: Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18881 F: drivers/i2c/busses/i2c-xlp9xx.c
18882
18883 XRA1403 GPIO EXPANDER
18884 M: Nandor Han <nandor.han@ge.com>
18885 M: Semi Malinen <semi.malinen@ge.com>
18886 L: linux-gpio@vger.kernel.org
18887 S: Maintained
18888 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18889 F: drivers/gpio/gpio-xra1403.c
18890
18891 XTENSA XTFPGA PLATFORM SUPPORT
18892 M: Max Filippov <jcmvbkbc@gmail.com>
18893 L: linux-xtensa@linux-xtensa.org
18894 S: Maintained
18895 F: drivers/spi/spi-xtensa-xtfpga.c
18896 F: sound/soc/xtensa/xtfpga-i2s.c
18897
18898 YAM DRIVER FOR AX.25
18899 M: Jean-Paul Roubelat <jpr@f6fbb.org>
18900 L: linux-hams@vger.kernel.org
18901 S: Maintained
18902 F: drivers/net/hamradio/yam*
18903 F: include/linux/yam.h
18904
18905 YAMA SECURITY MODULE
18906 M: Kees Cook <keescook@chromium.org>
18907 S: Supported
18908 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18909 F: Documentation/admin-guide/LSM/Yama.rst
18910 F: security/yama/
18911
18912 YEALINK PHONE DRIVER
18913 M: Henk Vergonet <Henk.Vergonet@gmail.com>
18914 L: usbb2k-api-dev@nongnu.org
18915 S: Maintained
18916 F: Documentation/input/devices/yealink.rst
18917 F: drivers/input/misc/yealink.*
18918
18919 Z8530 DRIVER FOR AX.25
18920 M: Joerg Reuter <jreuter@yaina.de>
18921 L: linux-hams@vger.kernel.org
18922 S: Maintained
18923 W: http://yaina.de/jreuter/
18924 W: http://www.qsl.net/dl1bke/
18925 F: Documentation/networking/z8530drv.rst
18926 F: drivers/net/hamradio/*scc.c
18927 F: drivers/net/hamradio/z8530.h
18928
18929 ZBUD COMPRESSED PAGE ALLOCATOR
18930 M: Seth Jennings <sjenning@redhat.com>
18931 M: Dan Streetman <ddstreet@ieee.org>
18932 L: linux-mm@kvack.org
18933 S: Maintained
18934 F: include/linux/zbud.h
18935 F: mm/zbud.c
18936
18937 ZD1211RW WIRELESS DRIVER
18938 M: Daniel Drake <dsd@gentoo.org>
18939 M: Ulrich Kunitz <kune@deine-taler.de>
18940 L: linux-wireless@vger.kernel.org
18941 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
18942 S: Maintained
18943 W: http://zd1211.ath.cx/wiki/DriverRewrite
18944 F: drivers/net/wireless/zydas/zd1211rw/
18945
18946 ZD1301 MEDIA DRIVER
18947 M: Antti Palosaari <crope@iki.fi>
18948 L: linux-media@vger.kernel.org
18949 S: Maintained
18950 W: https://linuxtv.org/
18951 W: http://palosaari.fi/linux/
18952 Q: https://patchwork.linuxtv.org/project/linux-media/list/
18953 F: drivers/media/usb/dvb-usb-v2/zd1301*
18954
18955 ZD1301_DEMOD MEDIA DRIVER
18956 M: Antti Palosaari <crope@iki.fi>
18957 L: linux-media@vger.kernel.org
18958 S: Maintained
18959 W: https://linuxtv.org/
18960 W: http://palosaari.fi/linux/
18961 Q: https://patchwork.linuxtv.org/project/linux-media/list/
18962 F: drivers/media/dvb-frontends/zd1301_demod*
18963
18964 ZHAOXIN PROCESSOR SUPPORT
18965 M: Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18966 L: linux-kernel@vger.kernel.org
18967 S: Maintained
18968 F: arch/x86/kernel/cpu/zhaoxin.c
18969
18970 ZONEFS FILESYSTEM
18971 M: Damien Le Moal <damien.lemoal@wdc.com>
18972 M: Naohiro Aota <naohiro.aota@wdc.com>
18973 R: Johannes Thumshirn <jth@kernel.org>
18974 L: linux-fsdevel@vger.kernel.org
18975 S: Maintained
18976 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18977 F: Documentation/filesystems/zonefs.rst
18978 F: fs/zonefs/
18979
18980 ZPOOL COMPRESSED PAGE STORAGE API
18981 M: Dan Streetman <ddstreet@ieee.org>
18982 L: linux-mm@kvack.org
18983 S: Maintained
18984 F: include/linux/zpool.h
18985 F: mm/zpool.c
18986
18987 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18988 M: Minchan Kim <minchan@kernel.org>
18989 M: Nitin Gupta <ngupta@vflare.org>
18990 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18991 L: linux-kernel@vger.kernel.org
18992 S: Maintained
18993 F: Documentation/admin-guide/blockdev/zram.rst
18994 F: drivers/block/zram/
18995
18996 ZS DECSTATION Z85C30 SERIAL DRIVER
18997 M: "Maciej W. Rozycki" <macro@linux-mips.org>
18998 S: Maintained
18999 F: drivers/tty/serial/zs.*
19000
19001 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19002 M: Minchan Kim <minchan@kernel.org>
19003 M: Nitin Gupta <ngupta@vflare.org>
19004 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19005 L: linux-mm@kvack.org
19006 S: Maintained
19007 F: Documentation/vm/zsmalloc.rst
19008 F: include/linux/zsmalloc.h
19009 F: mm/zsmalloc.c
19010
19011 ZSWAP COMPRESSED SWAP CACHING
19012 M: Seth Jennings <sjenning@redhat.com>
19013 M: Dan Streetman <ddstreet@ieee.org>
19014 M: Vitaly Wool <vitaly.wool@konsulko.com>
19015 L: linux-mm@kvack.org
19016 S: Maintained
19017 F: mm/zswap.c
19018
19019 THE REST
19020 M: Linus Torvalds <torvalds@linux-foundation.org>
19021 L: linux-kernel@vger.kernel.org
19022 S: Buried alive in reporters
19023 Q: http://patchwork.kernel.org/project/LKML/list/
19024 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19025 F: *
19026 F: */